:root {
  color-scheme: light;
  --black: #080908;
  --ink: #151714;
  --panel: #f6ffd1;
  --panel-2: #eaff8a;
  --white: #ffffff;
  --cream: #f8ffd6;
  --soft: #eaf878;
  --muted: #566035;
  --line: rgba(8, 9, 8, 0.13);
  --lime: #dfff21;
  --yellow: #f4ff55;
  --orange: #f05a2a;
  --red: #e84b25;
  --green: #2fd463;
  --cyan: #66e9f4;
  --magenta: #d95ef0;
  --page-bg: #c9ff10;
  --soft-shadow: 0 18px 42px rgba(53, 105, 0, 0.18);
  --hard-shadow: 0 5px 0 rgba(8, 9, 8, 0.82);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #d8ff39;
  color: var(--black);
  font-family:
    "TikTok Sans Text",
    "TikTok Sans",
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}

body,
button,
a {
  overflow-wrap: anywhere;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: 0;
  color: inherit;
  font: inherit;
}

[hidden] {
  display: none !important;
}

.hero {
  min-height: 78vh;
  padding: 24px clamp(18px, 4vw, 56px) 56px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.42), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.04));
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto auto -18% -12%;
  width: min(58vw, 720px);
  height: min(54vw, 620px);
  background:
    radial-gradient(circle at 54% 46%, rgba(255, 122, 32, 0.26), transparent 45%),
    radial-gradient(circle at 35% 68%, rgba(44, 220, 102, 0.35), transparent 42%);
  opacity: 0.7;
  border-radius: 42% 58% 52% 48%;
  filter: blur(10px);
  pointer-events: none;
}

.topbar,
.hero-grid,
main,
.footer {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.brand,
.hero-actions,
.card-top {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--black);
}

.brand-title-logo {
  display: block;
  height: auto;
  max-width: min(58vw, 240px);
  width: 220px;
}

.brand-logo {
  align-items: center;
  display: flex;
  height: 42px;
  justify-content: center;
  width: 74px;
}

.brand-logo img {
  display: block;
  height: 28px;
  object-fit: contain;
  width: 68px;
}

.brand-mark {
  display: grid;
  width: 56px;
  height: 48px;
  place-items: center;
  background: var(--lime);
  color: var(--black);
  border: 3px solid var(--white);
  border-radius: 14px;
  box-shadow: 0 5px 0 var(--orange);
  font-size: 15px;
  line-height: 1;
  white-space: nowrap;
}

.hero-grid {
  display: grid;
  align-items: center;
  min-height: calc(84vh - 72px);
  position: relative;
  z-index: 1;
}

.hero-copy {
  max-width: 860px;
}

.eyebrow {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  margin: 0 0 12px;
  text-transform: none;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  overflow-wrap: normal;
  word-break: normal;
}

h1 {
  color: var(--black);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.96;
  margin-bottom: 26px;
  max-width: 780px;
  text-transform: none;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-reward-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.reward-cta {
  align-items: center;
  background: var(--orange);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 0 5px 0 #9c2e13;
  color: var(--white);
  cursor: pointer;
  display: inline-flex;
  font-weight: 900;
  min-height: 50px;
  padding: 0 24px;
}

.warmup-cta {
  background: rgba(255, 253, 232, 0.92);
  box-shadow: 0 5px 0 rgba(8, 9, 8, 0.28);
  color: var(--black);
}

.hero-journey-map {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 820px;
  position: relative;
}

.hero-journey-map::before {
  content: none;
}

.journey-map-step {
  align-items: center;
  background: rgba(255, 250, 209, 0.92);
  border: 2px solid rgba(8, 9, 8, 0.86);
  border-radius: 22px;
  box-shadow: 0 4px 0 rgba(8, 9, 8, 0.68);
  cursor: pointer;
  display: flex;
  gap: 12px;
  min-height: 82px;
  padding: 14px;
  text-align: left;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.journey-map-step:hover,
.journey-map-step.is-active {
  background:
    radial-gradient(circle at 88% 0, rgba(255, 255, 255, 0.7), transparent 10rem),
    linear-gradient(135deg, #fffce4 0%, #eefcb8 58%, #d7ff41 100%);
  border-color: rgba(8, 9, 8, 0.54);
  box-shadow: 0 7px 0 rgba(150, 176, 20, 0.48);
  color: var(--black);
  transform: translateY(-2px);
}

.journey-map-step.is-locked {
  background: rgba(231, 236, 225, 0.86);
  border-color: rgba(8, 9, 8, 0.24);
  box-shadow: 0 3px 0 rgba(8, 9, 8, 0.26);
  color: rgba(21, 23, 20, 0.54);
  cursor: not-allowed;
  filter: grayscale(0.35);
}

.journey-map-step.is-locked:hover {
  background: rgba(231, 236, 225, 0.86);
  color: rgba(21, 23, 20, 0.54);
  transform: none;
}

.journey-map-step.is-locked .step-index {
  background: #d9e1d1;
  color: rgba(21, 23, 20, 0.58);
}

.lock-index svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.6;
  width: 21px;
}

.journey-map-step.is-locked .step-copy::after {
  content: "Coming soon";
  background: rgba(8, 9, 8, 0.12);
  border-radius: 999px;
  color: rgba(21, 23, 20, 0.62);
  font-size: 12px;
  font-weight: 900;
  justify-self: start;
  margin-top: 6px;
  padding: 4px 9px;
}

.step-index {
  background: var(--lime);
  border: 2px solid var(--black);
  border-radius: 999px;
  color: var(--black);
  display: grid;
  flex: 0 0 42px;
  font-size: 13px;
  font-weight: 900;
  height: 42px;
  place-items: center;
}

.step-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.step-copy strong {
  font-size: 16px;
  font-weight: 900;
  text-transform: none;
}

.step-copy small {
  font-size: 13px;
  font-weight: 800;
}

.step-copy em {
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.step-action {
  align-self: start;
  background: var(--orange);
  border-radius: 999px;
  box-shadow: 0 2px 0 #9c2e13;
  color: var(--white);
  display: inline-flex;
  margin-top: 7px;
  padding: 5px 10px;
}

.primary-cta,
.secondary-cta {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-weight: 900;
  min-height: 48px;
  padding: 0 24px;
  text-transform: none;
}

.primary-cta {
  background: var(--orange);
  color: var(--white);
  cursor: pointer;
  box-shadow: 0 5px 0 #9c2e13;
}

.secondary-cta {
  background: var(--yellow);
  border: 2px solid var(--black);
  color: var(--black);
  box-shadow: 0 5px 0 var(--black);
}

.card-top {
  gap: 10px;
  color: var(--lime);
  font-weight: 900;
  text-transform: none;
}

.live-dot {
  width: 12px;
  height: 12px;
  background: var(--green);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(0, 224, 96, 0.16);
}

.timeline-mini {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.timeline-row {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: center;
  background: #f5ffc9;
  border: 2px solid rgba(0, 0, 0, 0.92);
  border-radius: 18px;
  color: var(--black);
  padding: 12px;
}

.timeline-index {
  color: var(--black);
  background: var(--yellow);
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 14px;
  display: grid;
  font-weight: 900;
  height: 36px;
  place-items: center;
}

.timeline-row strong,
.timeline-row span:last-child {
  display: block;
}

.timeline-row span:last-child {
  color: #5d6231;
  font-size: 13px;
  margin-top: 2px;
}

main {
  display: grid;
  gap: 24px;
  padding: 34px clamp(18px, 4vw, 56px) 72px;
}

.playbook-page,
.points-section,
.rally-section,
.strategy-section,
.region-section,
.leon-section {
  background:
    radial-gradient(circle at 95% 0, rgba(255, 255, 255, 0.44), transparent 18rem),
    var(--cream);
  border: 2px solid rgba(8, 9, 8, 0.32);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  color: var(--black);
  overflow: hidden;
}

.rewards-page {
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 126, 58, 0.14), transparent 24rem),
    radial-gradient(circle at 16% 80%, rgba(216, 255, 35, 0.24), transparent 24rem),
    linear-gradient(135deg, rgba(255, 254, 242, 0.98), rgba(248, 244, 218, 0.98));
  border: 2px solid rgba(8, 9, 8, 0.32);
  border-radius: 28px;
  box-shadow: var(--soft-shadow);
  color: var(--black);
  margin-bottom: 26px;
  overflow: hidden;
  padding: clamp(18px, 4vw, 44px);
}

.rewards-topline {
  align-items: center;
  display: flex;
  gap: 14px;
  justify-content: space-between;
  margin-bottom: 24px;
}

.rewards-topline span {
  color: #4c5425;
  font-weight: 900;
}

.rewards-heading {
  margin-bottom: 22px;
}

.rewards-heading h2 {
  color: var(--black);
  font-size: clamp(58px, 10vw, 116px);
  line-height: 0.9;
  margin: 0 0 12px;
}

.rewards-heading p:last-child {
  color: #4c5425;
  font-size: clamp(17px, 2vw, 24px);
  font-weight: 750;
  max-width: 760px;
}

.reward-wall {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  perspective: 1200px;
}

.reward-card {
  aspect-ratio: 1.04;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  min-height: 150px;
  padding: 0;
  perspective: 900px;
  position: relative;
  transform-style: preserve-3d;
}

.reward-card-face {
  align-items: center;
  backface-visibility: hidden;
  border: 1px solid rgba(8, 9, 8, 0.14);
  border-radius: 18px;
  display: flex;
  font-weight: 950;
  inset: 0;
  justify-content: center;
  overflow: hidden;
  padding: 18px;
  position: absolute;
  text-align: center;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reward-card-front {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.72), transparent 10rem),
    linear-gradient(135deg, #fffce4 0%, #eefcb8 54%, #d7ff41 100%);
  box-shadow: 0 8px 22px rgba(72, 86, 18, 0.12);
  color: var(--black);
  font-size: clamp(18px, 2.2vw, 30px);
}

.reward-card-back {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 126, 58, 0.14), transparent 9rem),
    linear-gradient(135deg, #fffef2 0%, #f3f6d8 100%);
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  transform: rotateY(180deg);
}

.reward-card-back img {
  border-radius: 14px;
  display: block;
  max-height: 68%;
  max-width: 92%;
  object-fit: contain;
}

.reward-card-back small {
  color: rgba(8, 9, 8, 0.52);
  display: block;
  font-size: clamp(10px, 1.1vw, 13px);
  font-weight: 750;
  line-height: 1.25;
  max-width: 92%;
}

.reward-card.is-flipped .reward-card-front,
.reward-card:hover .reward-card-front {
  transform: rotateY(180deg);
}

.reward-card.is-flipped .reward-card-back,
.reward-card:hover .reward-card-back {
  transform: rotateY(360deg);
}

.rewards-more {
  color: #4c5425;
  font-size: clamp(20px, 3vw, 32px);
  margin: 18px 0 0;
}

.section-heading {
  padding: clamp(24px, 4vw, 42px);
}

.section-heading h2,
.region-copy h2,
.leon-card h2 {
  font-size: clamp(28px, 4.6vw, 52px);
  line-height: 1.02;
  margin-bottom: 12px;
  max-width: 860px;
  text-transform: none;
}

.section-heading p:last-child,
.region-copy p,
.leon-card p {
  color: #4c5425;
  font-size: 18px;
  max-width: 720px;
}

.section-heading.compact {
  padding-bottom: 18px;
}

.playbook-doorway {
  border-top: 1px solid rgba(8, 9, 8, 0.12);
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: clamp(18px, 4vw, 34px);
}

.doorway-card {
  background: #fffad1;
  border: 2px solid rgba(8, 9, 8, 0.32);
  border-radius: 22px;
  box-shadow: 0 8px 22px rgba(48, 82, 0, 0.12);
  cursor: pointer;
  display: grid;
  gap: 8px;
  min-height: 168px;
  padding: 18px;
  text-align: left;
  transition: transform 160ms ease, background 160ms ease;
}

.doorway-card:hover,
.doorway-card.is-active {
  background: var(--lime);
  transform: translateY(-2px);
}

.doorway-card span {
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 900;
  line-height: 1;
  text-transform: none;
}

.doorway-card strong {
  color: #394200;
  font-size: 15px;
}

.doorway-card small {
  align-self: end;
  background: var(--orange);
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  justify-self: start;
  padding: 8px 12px;
  text-transform: none;
}

.playbook-topline {
  align-items: center;
  background: var(--orange);
  color: var(--white);
  display: flex;
  justify-content: space-between;
  gap: 14px;
  padding: 14px clamp(18px, 4vw, 34px);
}

.back-button {
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(8, 9, 8, 0.18);
  border-radius: 999px;
  color: var(--black);
  cursor: pointer;
  font-weight: 900;
  padding: 8px 16px;
  text-transform: none;
}

.playbook-topline span {
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
  text-transform: none;
}

.playbook-hero {
  align-items: center;
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr) 280px;
  padding: clamp(24px, 4vw, 42px);
}

.playbook-hero h2 {
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.95;
  margin-bottom: 12px;
  text-transform: none;
}

.playbook-hero p {
  color: #4c5425;
  font-size: 18px;
  margin: 0;
  max-width: 620px;
}

.unlock-card {
  background: var(--orange);
  border: 2px solid rgba(8, 9, 8, 0.24);
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(240, 90, 42, 0.22);
  color: var(--white);
  display: grid;
  gap: 8px;
  padding: 18px;
}

.unlock-card span,
.unlock-card small {
  font-size: 12px;
  font-weight: 900;
  text-transform: none;
}

.unlock-card strong {
  font-size: 25px;
  line-height: 1.08;
  text-transform: none;
}

.timeline-intro {
  background: rgba(255, 250, 209, 0.54);
  border-top: 1px solid rgba(8, 9, 8, 0.12);
  padding: clamp(22px, 4vw, 38px);
}

.timeline-intro h3 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1;
  margin: 0 0 14px;
  text-transform: none;
}

.timeline-intro p:last-child {
  color: #3f4a16;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0;
  max-width: 880px;
}

.calendar-layout {
  border-top: 1px solid rgba(8, 9, 8, 0.12);
  display: block;
  padding: clamp(18px, 4vw, 34px);
}

.calendar-list {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
  overflow-x: auto;
  padding: 0 0 6px;
  -webkit-overflow-scrolling: touch;
}

.calendar-day {
  align-items: center;
  background: rgba(255, 253, 239, 0.76);
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  flex: 0 0 auto;
  gap: 8px;
  min-height: 42px;
  padding: 8px 14px;
  text-align: center;
}

.calendar-day.is-active {
  background: var(--orange);
  border-color: rgba(8, 9, 8, 0.18);
  box-shadow: 0 7px 18px rgba(240, 90, 42, 0.18);
  color: var(--white);
}

.calendar-day span {
  color: inherit;
  font-size: 11px;
  font-weight: 800;
  opacity: 0.68;
  text-transform: none;
}

.calendar-day strong {
  font-size: 14px;
  line-height: 1;
  text-transform: none;
}

.calendar-day small {
  display: none;
}

.day-card-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.day-card {
  background:
    radial-gradient(circle at 92% 10%, rgba(255, 255, 255, 0.5), transparent 16rem),
    #eaffb9;
  border: 2px solid rgba(8, 9, 8, 0.22);
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(48, 82, 0, 0.16);
  color: var(--black);
  display: grid;
  gap: 16px;
  padding: 20px;
}

.day-card.is-dark {
  background:
    radial-gradient(circle at 100% 0, rgba(217, 94, 240, 0.18), transparent 18rem),
    #f3ffd1;
  color: var(--black);
}

.day-card.is-active {
  border-color: rgba(8, 9, 8, 0.72);
  box-shadow: 0 0 0 4px rgba(102, 233, 244, 0.75), 0 16px 30px rgba(48, 82, 0, 0.18);
}

.day-card-top {
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.day-card-top span {
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  opacity: 0.68;
  text-transform: none;
}

.day-card-top strong {
  background: #10120e;
  border-radius: 999px;
  color: var(--white);
  font-size: 13px;
  font-weight: 900;
  padding: 8px 14px;
  text-transform: none;
}

.day-card.is-dark .day-card-top strong {
  background: #10120e;
  color: var(--black);
  color: var(--lime);
}

.day-card h3 {
  font-size: clamp(34px, 4.8vw, 54px);
  line-height: 0.98;
  margin: 0;
  text-transform: none;
}

.mini-task-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.mini-task {
  align-items: center;
  background: #10120e;
  border: 1px solid rgba(8, 9, 8, 0.85);
  border-radius: 16px;
  color: var(--white);
  display: grid;
  gap: 2px 10px;
  grid-template-columns: 1fr auto;
  min-height: 74px;
  padding: 12px 14px;
}

.day-card.is-dark .mini-task {
  background: #10120e;
  border-color: rgba(8, 9, 8, 0.85);
}

.mini-task span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 11px;
  font-weight: 900;
  grid-column: 1 / -1;
  text-transform: none;
}

.mini-task strong {
  font-size: 15px;
  line-height: 1.05;
}

.mini-task em {
  font-style: normal;
  font-weight: 900;
}

.day-note {
  background: var(--cyan);
  border-radius: 18px;
  color: var(--black);
  font-weight: 800;
  margin: 0;
  padding: 16px;
}

.day-card.is-dark .day-note {
  background: #ed8bff;
}

.day-detail {
  background:
    radial-gradient(circle at 100% 0, rgba(240, 90, 36, 0.22), transparent 18rem),
    #fffad1;
  display: none;
  padding: clamp(22px, 4vw, 38px);
}

.day-detail h3 {
  font-size: clamp(30px, 5vw, 58px);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: none;
}

.day-target {
  background: #10120e;
  border-radius: 999px;
  color: var(--lime);
  display: inline-flex;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 10px 16px;
  text-transform: none;
}

.task-list {
  display: grid;
  gap: 10px;
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
}

.task-list li {
  margin: 0;
}

.task-row {
  align-items: center;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(8, 9, 8, 0.22);
  border-radius: 16px;
  cursor: pointer;
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr auto;
  padding: 12px 14px;
  text-align: left;
  transition:
    background 160ms ease,
    border-color 160ms ease,
    transform 160ms ease;
  width: 100%;
}

.task-row:hover,
.task-row.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  transform: translateY(-1px);
}

.task-row span {
  font-weight: 850;
}

.task-row strong {
  background: var(--orange);
  border: 1px solid rgba(8, 9, 8, 0.22);
  border-radius: 999px;
  color: var(--white);
  font-size: 12px;
  padding: 7px 10px;
  text-transform: none;
  white-space: nowrap;
}

.modal-open {
  overflow: hidden;
}

.task-modal {
  align-items: center;
  display: grid;
  inset: 0;
  justify-items: center;
  padding: 18px;
  position: fixed;
  z-index: 20;
}

.task-modal-backdrop {
  background: rgba(9, 10, 6, 0.42);
  backdrop-filter: blur(3px);
  cursor: pointer;
  inset: 0;
  position: absolute;
}

.task-modal-panel {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 126, 58, 0.15), transparent 18rem),
    radial-gradient(circle at 8% 8%, rgba(216, 255, 35, 0.2), transparent 20rem),
    linear-gradient(135deg, rgba(255, 254, 242, 0.98), rgba(248, 244, 218, 0.98));
  border: 2px solid rgba(8, 9, 8, 0.42);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(58, 76, 8, 0.28);
  color: var(--black);
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1.1fr) minmax(180px, 0.9fr);
  max-height: min(86vh, 820px);
  max-width: 920px;
  overflow: auto;
  padding: 24px;
  position: relative;
  width: min(100%, 920px);
}

.task-modal-panel.has-no-media {
  grid-template-columns: 1fr;
  max-width: 760px;
}

.task-modal-close {
  align-items: center;
  background: rgba(255, 253, 236, 0.96);
  border: 2px solid rgba(8, 9, 8, 0.68);
  border-radius: 999px;
  box-shadow: 0 3px 0 rgba(8, 9, 8, 0.22);
  color: rgba(8, 9, 8, 0.72);
  cursor: pointer;
  display: flex;
  font-size: 26px;
  font-weight: 900;
  height: 40px;
  justify-content: center;
  line-height: 1;
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  z-index: 1;
}

.task-tip-copy h3,
.task-tip-copy h4 {
  color: var(--black);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
  margin: 0 46px 16px 0;
}

.task-tip-copy dl {
  display: grid;
  gap: 12px;
  margin: 0;
}

.task-tip-copy div {
  background: rgba(255, 253, 238, 0.9);
  border: 1px solid rgba(8, 9, 8, 0.13);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(72, 86, 18, 0.08);
  padding: 16px;
}

.task-tip-copy div:last-child:not([hidden]) {
  background: linear-gradient(135deg, #ff9651, #ff7130);
  border-color: rgba(8, 9, 8, 0.16);
  color: var(--black);
}

.task-tip-copy dt {
  color: rgba(8, 9, 8, 0.58);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  text-transform: none;
}

.task-tip-copy dd {
  color: rgba(8, 9, 8, 0.86);
  font-weight: 650;
  line-height: 1.42;
  margin: 0;
}

.task-tip-media {
  align-items: center;
  background:
    radial-gradient(circle at 80% 12%, rgba(255, 126, 58, 0.14), transparent 10rem),
    linear-gradient(135deg, rgba(255, 255, 251, 0.92), rgba(245, 250, 209, 0.92));
  border: 1px solid rgba(8, 9, 8, 0.14);
  border-radius: 20px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  display: flex;
  justify-content: center;
  margin: 0;
  min-height: 260px;
  overflow: auto;
}

.task-tip-images {
  display: grid;
  gap: 12px;
  max-height: 520px;
  overflow: auto;
  padding: 10px;
  width: 100%;
}

.task-tip-images img {
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: 14px;
  box-shadow: 0 12px 28px rgba(72, 86, 18, 0.14);
  display: block;
  max-height: 330px;
  max-width: 100%;
  object-fit: contain;
  place-self: center;
}

.event-modal-panel {
  grid-template-columns: 1fr;
  max-width: 980px;
}

.event-modal-copy {
  padding-right: 46px;
}

.event-modal-copy p:last-child {
  color: #4c5425;
  font-size: 18px;
  font-weight: 650;
  line-height: 1.38;
  margin: 0;
  max-width: 680px;
}

.event-step-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.event-step-card {
  background: rgba(255, 253, 238, 0.9);
  border: 1px solid rgba(8, 9, 8, 0.14);
  border-radius: 20px;
  box-shadow: 0 10px 24px rgba(72, 86, 18, 0.08);
  display: grid;
  gap: 10px;
  padding: 14px;
}

.event-step-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 950;
}

.event-step-card strong {
  color: var(--black);
  font-size: 18px;
  line-height: 1.1;
}

.event-step-card img {
  align-self: end;
  border: 1px solid rgba(8, 9, 8, 0.12);
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(72, 86, 18, 0.14);
  display: block;
  max-height: 360px;
  max-width: 100%;
  object-fit: contain;
  place-self: center;
}

.pro-tip {
  background: var(--black);
  border: 1px solid rgba(8, 9, 8, 0.22);
  border-radius: 16px;
  color: var(--white);
  margin: 0;
  padding: 14px;
}

.pro-tip strong {
  color: var(--orange);
  display: block;
  font-size: 12px;
  text-transform: none;
}

.journey-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  border-top: 3px solid var(--black);
}

.selector-panel {
  background: #efff4c;
  border-right: 3px solid var(--black);
  display: grid;
  gap: 28px;
  align-content: start;
  padding: 22px;
}

.panel-label {
  color: #475000;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 10px;
  text-transform: none;
}

.stage-tabs,
.status-buttons,
.rally-tabs {
  display: grid;
  gap: 10px;
}

.stage-tab,
.status-button,
.rally-tab {
  background: #fffad1;
  border: 1px solid rgba(8, 9, 8, 0.24);
  border-radius: 16px;
  color: var(--black);
  cursor: pointer;
  text-align: left;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.stage-tab:hover,
.status-button:hover,
.rally-tab:hover {
  transform: translateY(-1px);
}

.stage-tab {
  padding: 14px;
}

.stage-tab span,
.stage-tab small {
  display: block;
}

.stage-tab span {
  font-weight: 900;
  text-transform: none;
}

.stage-tab small {
  color: #65652d;
  margin-top: 3px;
}

.status-button {
  padding: 12px 14px;
}

.stage-tab.is-active,
.status-button.is-active,
.rally-tab.is-active {
  background: var(--lime);
  border-color: var(--black);
  color: var(--black);
  box-shadow: 0 4px 12px rgba(48, 82, 0, 0.14);
}

.journey-output {
  padding: 24px;
}

.output-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.output-header h3 {
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.08;
  margin: 0;
}

.status-pill,
.priority {
  background: var(--orange);
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 999px;
  color: var(--white);
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  height: fit-content;
  padding: 8px 12px;
  text-transform: none;
  white-space: nowrap;
}

.action-grid,
.points-grid,
.strategy-grid,
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.action-card,
.point-card,
.strategy-card,
.faq-card {
  background: #fffad1;
  border: 1px solid rgba(8, 9, 8, 0.2);
  border-radius: 18px;
  box-shadow: 0 10px 22px rgba(48, 82, 0, 0.12);
  color: var(--black);
  min-width: 0;
  padding: 18px;
}

.action-card {
  border-top: 7px solid var(--green);
}

.action-card h4 {
  font-size: 24px;
  line-height: 1.1;
  margin: 18px 0;
  text-transform: none;
}

dl,
dd {
  margin: 0;
}

.action-card dl {
  display: grid;
  gap: 13px;
}

.action-card dt {
  color: var(--orange);
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 3px;
  text-transform: none;
}

.action-card dd {
  color: #101111;
  line-height: 1.38;
}

.points-grid,
.strategy-grid,
.faq-grid {
  padding: 0 clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
}

.point-icon {
  align-items: center;
  background: var(--lime);
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 14px;
  color: var(--black);
  display: inline-flex;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.point-icon svg {
  fill: none;
  height: 26px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  width: 26px;
}

.point-card h3,
.strategy-card h3 {
  font-size: 22px;
  margin: 16px 0 8px;
  text-transform: none;
}

.point-card strong {
  color: var(--orange);
  display: block;
  font-size: 20px;
  margin-bottom: 10px;
}

.point-card p,
.strategy-card p,
.faq-card p {
  color: #4c5425;
  line-height: 1.42;
  margin-bottom: 0;
}

.rally-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 18px;
  padding: 0 clamp(24px, 4vw, 42px) clamp(24px, 4vw, 42px);
}

.rally-visual {
  background:
    radial-gradient(circle at 82% 20%, rgba(64, 226, 107, 0.75), transparent 10rem),
    linear-gradient(180deg, #0a0a0a 0 48%, #e8ff35 48% 100%);
  border: 2px solid rgba(8, 9, 8, 0.32);
  border-radius: 24px;
  display: grid;
  min-height: 360px;
  overflow: hidden;
  place-items: center;
  position: relative;
}

.rally-visual img {
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.55));
  max-width: min(72%, 360px);
}

.rally-trigger {
  background: var(--lime);
  border: 1px solid rgba(8, 9, 8, 0.35);
  border-radius: 16px;
  bottom: 22px;
  box-shadow: 0 5px 0 var(--orange);
  color: var(--black);
  left: 22px;
  padding: 12px 14px;
  position: absolute;
  text-transform: none;
}

.rally-trigger span,
.rally-trigger strong {
  display: block;
}

.rally-trigger span {
  font-size: 12px;
  font-weight: 900;
}

.rally-panel {
  display: grid;
  gap: 14px;
}

.rally-tabs {
  grid-template-columns: repeat(4, 1fr);
}

.rally-tab {
  min-height: 54px;
  text-align: center;
}

.rally-detail {
  background: #fffad1;
  border: 1px solid rgba(8, 9, 8, 0.22);
  border-radius: 22px;
  min-height: 290px;
  padding: clamp(24px, 4vw, 42px);
}

.rally-detail h3 {
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  margin-bottom: 16px;
  text-transform: none;
}

.rally-reward {
  background: var(--orange);
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 999px;
  display: inline-flex;
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 18px;
  padding: 10px 14px;
  text-transform: none;
}

.fine-print {
  color: #59602d;
  font-size: 14px;
}

.strategy-card {
  border-left: 7px solid var(--orange);
}

.strategy-card span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  text-transform: none;
}

.strategy-card strong {
  border-top: 2px solid rgba(0, 0, 0, 0.16);
  color: var(--black);
  display: block;
  margin-top: 18px;
  padding-top: 14px;
}

.region-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.region-copy {
  padding: clamp(24px, 4vw, 42px);
}

.region-board {
  background: #efff4c;
  border-left: 3px solid var(--black);
  display: grid;
  gap: 12px;
  padding: clamp(24px, 4vw, 42px);
}

.region-row {
  align-items: center;
  background: #fffad1;
  border: 1px solid rgba(8, 9, 8, 0.2);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 14px;
  min-height: 72px;
  padding: 12px;
}

.region-row span {
  border: 1px solid rgba(8, 9, 8, 0.28);
  border-radius: 14px;
  display: grid;
  font-weight: 900;
  height: 40px;
  place-items: center;
}

.region-row.hot span {
  background: var(--orange);
}

.region-row.lime span {
  background: var(--lime);
  color: var(--black);
}

.region-row.gold span {
  background: var(--yellow);
  color: var(--black);
}

.region-row strong {
  font-size: 22px;
  text-transform: none;
}

.region-row em {
  color: var(--orange);
  font-style: normal;
  font-weight: 900;
}

.leon-card {
  align-items: center;
  display: grid;
  grid-template-columns: 1fr 180px;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
}

.leon-card img {
  max-width: 180px;
  width: 100%;
}

.faq-card {
  padding: 0;
}

.faq-card summary {
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
  list-style: none;
  padding: 18px;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card summary::after {
  color: var(--lime);
  content: "+";
  float: right;
}

.faq-card[open] summary::after {
  content: "-";
}

.faq-card p {
  border-top: 2px solid rgba(0, 0, 0, 0.15);
  padding: 0 18px 18px;
}

.footer {
  align-items: center;
  color: #262900;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 clamp(18px, 4vw, 56px) 40px;
}

.footer a {
  color: var(--orange);
  font-weight: 900;
}

.footer-top-button {
  align-items: center;
  background: var(--orange);
  border: 2px solid var(--black);
  border-radius: 999px;
  box-shadow: 0 5px 0 #9c2e13;
  color: var(--white) !important;
  display: inline-flex;
  min-height: 48px;
  padding: 0 22px;
  text-decoration: none;
}

.footer-top-button:hover {
  transform: translateY(-1px);
}

.footer-event-button {
  background: rgba(255, 253, 232, 0.94);
  box-shadow: 0 5px 0 rgba(8, 9, 8, 0.36);
  color: var(--black) !important;
}

/* Softer playbook theme */
body {
  background: #d8ff39;
}

main,
.footer {
  background: #d8ff39;
}

.hero {
  min-height: 64vh;
  background:
    radial-gradient(circle at 72% 24%, rgba(255, 245, 219, 0.8), transparent 18rem),
    linear-gradient(135deg, rgba(255, 253, 232, 0.78), rgba(250, 255, 206, 0.35));
}

.hero::after {
  opacity: 0.28;
}

.playbook-page,
.timeline-intro,
.day-card,
.day-card.is-dark,
.day-detail {
  background:
    radial-gradient(circle at 86% 0, rgba(255, 255, 255, 0.65), transparent 18rem),
    linear-gradient(135deg, #fffdf0 0%, #f7ffd7 100%);
}

.playbook-page {
  border-color: rgba(8, 9, 8, 0.2);
  box-shadow: 0 18px 42px rgba(82, 108, 0, 0.14);
}

.playbook-topline {
  background: #f57a3f;
  color: var(--white);
}

.unlock-card {
  background: linear-gradient(135deg, #f57a3f 0%, #f05a2a 100%);
  box-shadow: 0 14px 34px rgba(240, 90, 42, 0.18);
}

.day-card {
  border-color: rgba(8, 9, 8, 0.14);
  border-left: 6px solid #f57a3f;
  box-shadow: 0 14px 34px rgba(82, 108, 0, 0.12);
}

.day-card.is-active {
  border-color: rgba(240, 90, 42, 0.55);
  box-shadow: 0 0 0 3px rgba(240, 90, 42, 0.18), 0 16px 30px rgba(82, 108, 0, 0.14);
}

.day-card-top strong,
.day-card.is-dark .day-card-top strong,
.day-target {
  background: #f57a3f;
  box-shadow: 0 8px 18px rgba(240, 90, 42, 0.18);
  color: var(--white);
}

.mini-task,
.day-card.is-dark .mini-task,
.task-row {
  background: rgba(255, 254, 246, 0.92);
  border-color: rgba(8, 9, 8, 0.12);
  color: var(--black);
}

.mini-task span {
  color: rgba(21, 23, 20, 0.45);
}

.mini-task em {
  color: var(--orange);
}

.task-row:hover,
.task-row.is-active {
  background: #fff9e8;
  border-color: rgba(240, 90, 42, 0.42);
  box-shadow: inset 4px 0 0 #f57a3f;
  color: var(--black);
}

.day-note,
.day-card.is-dark .day-note,
.pro-tip {
  background: rgba(255, 250, 209, 0.78);
  border: 1px solid rgba(8, 9, 8, 0.1);
  color: #2d3415;
}

.pro-tip strong {
  color: var(--orange);
}

.timeline-intro {
  border-top-color: rgba(8, 9, 8, 0.09);
}

@media (max-width: 940px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .rally-layout,
  .region-section,
  .leon-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-top: 56px;
  }

  .region-board {
    border-left: 0;
    border-right: 0;
  }

  .action-grid,
  .points-grid,
  .strategy-grid,
  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .playbook-hero {
    grid-template-columns: 1fr;
  }

  .day-card-grid {
    grid-template-columns: 1fr;
  }

  .reward-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .reward-card {
    min-height: 132px;
  }
}

@media (max-width: 640px) {
  .hero {
    padding-top: 18px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-reward-cta {
    margin-top: 18px;
  }

  .reward-cta {
    justify-content: center;
    width: 100%;
  }

  .brand {
    font-size: 14px;
  }

  .brand-title-logo {
    max-width: 72vw;
    width: 190px;
  }

  .brand-logo {
    width: 60px;
  }

  .brand-logo img {
    height: 23px;
    width: 58px;
  }

  .hero-journey-map {
    grid-template-columns: 1fr;
  }

  .hero-journey-map::before {
    bottom: 38px;
    height: auto;
    left: 35px;
    right: auto;
    top: 38px;
    width: 4px;
  }

  .journey-map-step {
    min-height: 68px;
    padding: 12px;
  }

  .primary-cta,
  .secondary-cta {
    justify-content: center;
    width: 100%;
  }

  .stage-card {
    padding: 16px;
  }

  main {
    padding-left: 14px;
    padding-right: 14px;
  }

  .action-grid,
  .points-grid,
  .strategy-grid,
  .faq-grid,
  .rally-tabs {
    grid-template-columns: 1fr;
  }

  .playbook-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .doorway-card {
    min-height: 132px;
  }

  .unlock-card strong {
    font-size: 23px;
  }

  .timeline-intro {
    padding: 20px 16px;
  }

  .timeline-intro p:last-child {
    font-size: 14px;
  }

  .rewards-page {
    border-radius: 22px;
    padding: 18px;
  }

  .rewards-topline {
    align-items: flex-start;
    flex-direction: column;
  }

  .reward-wall {
    gap: 10px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reward-card {
    min-height: 118px;
  }

  .reward-card-face {
    border-radius: 10px;
    padding: 12px;
  }

  .reward-card-front {
    font-size: 17px;
  }

  .reward-card-back {
    gap: 6px;
    padding: 9px;
  }

  .reward-card-back img {
    max-height: 62%;
  }

  .reward-card-back small {
    font-size: 10px;
  }

  .calendar-layout {
    padding: 0;
  }

  .calendar-list {
    background: rgba(248, 255, 214, 0.94);
    border-bottom: 1px solid rgba(8, 9, 8, 0.14);
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 14px 16px;
    position: sticky;
    top: 0;
    z-index: 4;
    -webkit-overflow-scrolling: touch;
  }

  .calendar-day {
    box-shadow: none;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 12px;
  }

  .calendar-day strong {
    font-size: 14px;
  }

  .day-card-grid {
    display: none;
  }

  .day-detail {
    display: block;
  }

  .task-row {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .task-row strong {
    justify-self: start;
    white-space: normal;
  }

  .task-modal-panel {
    grid-template-columns: 1fr;
    max-height: 88vh;
    padding: 14px;
  }

  .task-tip-copy h3,
  .task-tip-copy h4 {
    font-size: 24px;
  }

  .task-tip-media {
    min-height: 190px;
  }

  .task-tip-images {
    max-height: 320px;
  }

  .task-tip-images img {
    max-height: 240px;
  }

  .event-step-grid {
    gap: 8px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .event-step-card {
    border-radius: 14px;
    gap: 6px;
    padding: 8px;
  }

  .event-step-card span {
    font-size: 11px;
  }

  .event-step-card strong {
    font-size: 12px;
  }

  .event-step-card img {
    border-radius: 12px;
    max-height: 170px;
  }

  .points-grid,
  .strategy-grid,
  .faq-grid,
  .rally-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .region-row {
    grid-template-columns: 38px 1fr;
  }

  .region-row em {
    grid-column: 2;
  }

  .leon-card img {
    justify-self: start;
    max-width: 130px;
  }

  .footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }
}
