/* ============================ RESET & BASE ============================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
blockquote,
fieldset,
legend,
dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  background: none;
  border: 0;
  cursor: pointer;
}

/* ============================ SILVER NOTE DESIGN SYSTEM ============================ */
:root {
  --primary: #C6A15A;
  --primary-dark: #A88035;
  --primary-soft: #F6EAD0;
  --accent: #0FA678;
  --accent-soft: #E6F7F2;
  --accent-dark: #097353;
  --secondary: #D76B35;
  --navy: #1F4A43;
  --navy-2: #1F4A43;
  --background: #F3F0E8;
  --surface: #FFFFFF;
  --border: #DED6C7;
  --border-dark: #2E4A3D;
  --text: #16251D;
  --muted: #677468;
  --muted-light: #9A9F93;
  --ease: cubic-bezier(.22, .61, .36, 1);
  
  --sq-light: #E6D4B7;
  --sq-dark: #7D5639;

  --wrap: 1280px;
  --gut: clamp(20px, 5vw, 48px);
  --sec-y: clamp(82px, 12vw, 150px);
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
}

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: clamp(15.5px, 1.02vw, 17px);
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

main,
header,
footer {
  position: relative;
  z-index: 1;
}

/* A mounted game overlay must share the header's stacking context. */
main { z-index: auto; }

h1,
h2 {
  font-family: 'Instrument Serif', serif;
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0;
  color: var(--navy);
  text-wrap: balance;
}

h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
  color: var(--navy);
  text-wrap: balance;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s;
}

a:hover {
  color: var(--primary-dark);
}

:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

::selection {
  background: var(--navy);
  color: #fff;
}

.wrap {
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.sec {
  padding-block: var(--sec-y);
}

.eyebrow {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.eyebrow::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
  max-width: 160px;
}

.lede {
  color: var(--muted);
  font-size: 1.08em;
  max-width: 62ch;
  line-height: 1.65;
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: .95em;
  letter-spacing: -.01em;
  transition: transform .22s var(--ease), background-color .22s, border-color .22s, box-shadow .22s;
  white-space: nowrap;
  min-height: 48px;
  border: 1.5px solid transparent;
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 14px 30px -14px rgba(43, 92, 230, 0.65);
}

.btn--primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  box-shadow: 0 18px 36px -14px rgba(43, 92, 230, 0.8);
  color: #fff;
}

.btn--accent {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 14px 30px -14px rgba(15, 166, 120, 0.65);
}

.btn--accent:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  box-shadow: 0 18px 36px -14px rgba(15, 166, 120, 0.8);
  color: #fff;
}

.btn--secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--navy);
  background: rgba(14, 35, 64, 0.04);
  color: var(--navy);
}

.btn--outline-white {
  background: rgba(255, 255, 255, 0.08);
  color: #FFFFFF !important;
  border: 1.5px solid rgba(255, 255, 255, 0.4) !important;
  backdrop-filter: blur(8px);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #FFFFFF !important;
  transform: translateY(-2px);
}

.btn--wa {
  background: #1FA855;
  color: #fff;
  border-color: #1FA855;
  box-shadow: 0 12px 28px -14px rgba(31, 168, 85, .8);
}

.btn--wa:hover {
  background: #24BC60;
  border-color: #24BC60;
  color: #fff;
}

.hero .btn--wa,
.offer-strip__lead .btn--wa,
.callout-dark .btn--wa {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--navy);
  box-shadow: 0 18px 40px -18px rgba(198, 161, 90, .72);
}

.hero .btn--wa:hover,
.offer-strip__lead .btn--wa:hover,
.callout-dark .btn--wa:hover {
  background: #D4B16D;
  border-color: #D4B16D;
  color: var(--navy);
}

.btn--wide {
  width: 100%;
}

/* ============================ HEADER / NAV ============================ */
.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--navy);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  transition: background-color .3s, border-color .3s, box-shadow .3s;
}

.header.is-stuck {
  background: var(--navy);
  box-shadow: 0 10px 30px -15px rgba(0, 0, 0, 0.4);
}

.header__in {
  display: flex;
  align-items: center;
  gap: 26px;
  height: 74px;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: var(--gut);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-right: auto;
  font-weight: 800;
  font-size: 18px;
  color: #F6F0E4;
}

.brand__icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  flex: none;
  overflow: hidden;
  box-shadow: 0 14px 30px -20px rgba(198, 161, 90, .85);
}

.brand__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__txt {
  font-size: 0.98em;
  line-height: 1.25;
}

.brand__txt b {
  font-weight: 800;
  display: block;
}

.brand__txt span {
  color: rgba(246, 240, 228, .62);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
}

.nav {
  display: flex;
  gap: 32px;
  font-size: .94em;
  font-weight: 600;
  color: var(--muted);
}

.nav a {
  color: rgba(246, 240, 228, .68);
  transition: color .2s;
  position: relative;
  padding: 6px 0;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease);
}

.nav a:hover {
  color: #fff;
}

.nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header .btn {
  padding: 11px 20px;
  font-size: .9em;
  min-height: 42px;
}

@media(max-width:920px) {
  .nav {
    display: none;
  }
}

@media(max-width:540px) {
  .header__cta {
    display: none;
  }
}

/* ============================ HERO SECTION (NEW LAYOUT) ============================ */
.hero {
  max-width: none;
  padding: clamp(34px, 5vw, 70px) var(--gut) clamp(38px, 5vw, 66px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), transparent 50%),
    var(--navy);
  color: #F6F0E4;
}

/* ============================ AUDIENCE TOGGLE (junior / adult paths) ============================
   Blocks marked [data-aud-show] are swapped by the toggle. Without JS the junior copy stays
   visible and the adult copy stays hidden, so the page never renders both at once. */
[hidden] { display: none !important; }

.cross-link {
  font-size: .9em;
  margin-top: 18px;
}

.cross-link a {
  color: var(--primary);
  text-decoration: none;
}

.cross-link a:hover {
  color: var(--primary-dark);
}

.aud__lab-dot {
  color: var(--primary);
  margin-right: 9px;
}

.aud__lab {
  color: rgba(246, 240, 228, .72);
  font-size: .96em;
  line-height: 1.55;
  max-width: 48ch;
  margin-bottom: 14px;
}

.aud {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .06);
  border-radius: 999px;
  margin-bottom: clamp(16px, 2.2vw, 22px);
  max-width: 100%;
}

.aud__opt {
  flex: 1 1 auto;
  min-height: 44px;
  padding: 10px 20px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(246, 240, 228, .78);
  font: inherit;
  font-size: .9rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color .2s, color .2s;
}

.aud__opt:hover { color: #fff; }

.aud__opt[aria-pressed="true"] {
  background: var(--primary);
  color: var(--navy);
}

.aud__opt:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

/* On phones the control goes full-width so both targets stay thumb-sized */
@media(max-width:560px) {
  .aud {
    display: flex;
    width: 100%;
  }

  .aud__opt {
    padding: 10px 6px;
    font-size: .82rem;
  }
}

.hero__badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--primary-soft);
  border: 1px solid rgba(43, 92, 230, 0.25);
  border-radius: 999px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.hero__badge-pill::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(38px, 7vw, 94px);
  align-items: center;
  max-width: 960px;
  margin-inline: auto;
}

.hero__grid>* {
  min-width: 0;
}

@media(max-width:1040px) {
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.hero h1 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  /* Tuned for the longer credential-led headline: smaller step and a wider
     measure, so it lands in 3-4 lines on mobile instead of seven. */
  font-size: clamp(2.05rem, 4.6vw, 3.9rem);
  font-weight: 800;
  margin-bottom: 26px;
  max-width: 19ch;
  line-height: .98;
  letter-spacing: 0;
  color: #F6F0E4;
}

.hero h1 em {
  font-style: italic;
  color: var(--primary);
}

.hero__sub {
  max-width: 52ch;
  margin-bottom: 36px;
}

/* Gold rule under "free" so the eye catches it without shouting. */
.u-free {
  color: #F6F0E4;
  text-decoration: underline;
  text-decoration-color: var(--primary);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.hero__sub p {
  color: rgba(246, 240, 228, .78);
  font-size: clamp(1.02rem, 1.25vw, 1.15rem);
  line-height: 1.5;
  margin-bottom: 10px;
}

.hero__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
  align-items: center;
}

@media(max-width:560px) {
  .hero__cta-group {
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .hero__cta-group .btn {
    width: 100%;
    min-width: 0;
    padding: 14px 16px;
    font-size: .94em;
    white-space: normal;
    text-align: center;
    gap: 6px;
  }

  .hero__cta-group .btn svg {
    width: 16px;
    height: 16px;
    flex: none;
  }
}

.hero__microtag {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(246, 240, 228, .8);
  font-weight: 700;
}

/* Separate the promise from the mechanics, but only just: the trailing full stop
   and the uppercase letter-spacing already do most of the work. */
.hero__microtag strong {
  color: rgba(246, 240, 228, .85);
  margin-right: 5px;
}

/* Wrap as a whole phrase rather than breaking after the hyphen in "20-second". */
.hero__microtag span {
  white-space: nowrap;
}

.hero__microtag strong {
  color: #F6F0E4;
}

/* ============================ LOW-FRICTION OFFER STRIP ============================ */
.offer-strip {
  padding-block: clamp(58px, 7vw, 92px) clamp(70px, 9vw, 118px);
}

.offer-strip__in {
  display: grid;
  grid-template-columns: 1.02fr 1.3fr;
  gap: clamp(22px, 3vw, 34px);
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 24px 60px -42px rgba(14, 35, 64, .42);
}

.offer-strip__lead {
  background: var(--navy);
  color: #fff;
  padding: clamp(24px, 3.4vw, 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.offer-strip__lead .eyebrow {
  color: var(--accent);
  margin-bottom: 16px;
}

.offer-strip__lead .eyebrow::after {
  background: rgba(255, 255, 255, .18);
}

.offer-strip__lead h2 {
  color: #fff;
  font-size: clamp(2rem, 4.2vw, 3.15rem);
  margin-bottom: 14px;
}

.offer-strip__lead p {
  color: #B2C4DD;
  max-width: 50ch;
  line-height: 1.65;
  margin-bottom: 24px;
}

.offer-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.offer-step {
  background: var(--surface);
  padding: clamp(22px, 2.5vw, 32px);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.offer-step__num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 12px;
}

.offer-step h3 {
  font-size: 1.12rem;
  margin-bottom: 16px;
  letter-spacing: -.02em;
}

.offer-step p {
  color: var(--muted);
  font-size: .93em;
  line-height: 1.72;
}

.offer-step strong {
  color: var(--navy);
  font-weight: 800;
}

@media(max-width:980px) {
  .offer-strip__in {
    grid-template-columns: 1fr;
  }
}

@media(max-width:700px) {
  .offer-strip__grid {
    grid-template-columns: 1fr;
  }
}

/* ============================ FOUNDER SECTION ============================ */
.founder {
  padding-block: clamp(82px, 10vw, 132px);
  background: #F8F3E8;
  border-top: 1px solid var(--border);
}

.founder__grid {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
}

.founder__photo {
  width: min(280px, 100%);
  aspect-ratio: 1;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(15, 33, 24, .14);
  background: var(--navy);
  box-shadow: 0 32px 80px -48px rgba(15, 33, 24, .58);
}

.founder__photo img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.96) contrast(1.02);
}

.founder__body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.35rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0;
  max-width: 13ch;
  margin-bottom: 28px;
}

.founder__body p {
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.84;
  max-width: 62ch;
  margin-bottom: 22px;
}

.founder__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  margin-top: clamp(24px, 3vw, 34px);
}

.founder__fact {
  background: #fff;
  padding: 18px 20px;
}

.founder__fact b {
  display: block;
  color: var(--navy);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 4px;
}

.founder__fact span {
  display: block;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 700;
}

/* Odd number of tiles: let the last one span the row rather than leave a gap. */
.founder__fact:last-child:nth-child(odd) {
  grid-column: 1 / -1;
}

@media(max-width:860px) {
  .founder__grid {
    grid-template-columns: 1fr;
  }

  .founder__photo {
    width: min(220px, 100%);
    margin-inline: auto;
  }
}

@media(max-width:560px) {
  .founder__facts {
    grid-template-columns: 1fr;
  }
}

/* ============================ METHOD & PILLARS ============================ */
.why__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: start;
}

@media(max-width:900px) {
  .why__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.why h2 {
  font-size: clamp(1.95rem, 4.1vw, 3rem);
  margin-bottom: 0;
}

.why__body {
  margin-top: clamp(18px, 2vw, 26px);
}

.why__body p {
  color: var(--text);
  font-size: 1.08em;
  margin-bottom: 24px;
  max-width: 58ch;
  line-height: 1.86;
}

.why__body p:last-child {
  margin-bottom: 0;
}

.why__body strong {
  color: var(--navy);
  font-weight: 700;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-top: clamp(52px, 7vw, 84px);
  overflow: hidden;
}

@media(max-width:820px) {
  .pillars {
    grid-template-columns: 1fr;
  }
}

.pillar {
  background: var(--surface);
  padding: clamp(24px, 3vw, 32px);
}

.pillar__gl {
  font-family: 'JetBrains Mono', monospace;
  font-size: 28px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 14px;
  line-height: 1;
}

.pillar h3 {
  font-size: 1.18rem;
  margin-bottom: 15px;
}

.pillar p {
  color: var(--muted);
  font-size: .94em;
  line-height: 1.72;
}

/* ==================== SIGNATURE: ANNOTATED BOARD ==================== */
.study {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(14px, 2vw, 22px);
  box-shadow: 0 28px 60px -40px rgba(14, 35, 64, .35);
}

.study__head {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 2px 4px 14px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.study__head b {
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
}

.study__head span {
  margin-left: auto;
  text-transform: none;
  letter-spacing: normal;
}

.board {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(8, 1fr);
  aspect-ratio: 1;
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  border: 1px solid #8a7458;
  box-shadow: 0 18px 40px -28px rgba(43, 38, 34, .55);
}

.sq {
  position: relative;
  display: grid;
  place-items: center;
  min-width: 0;
  min-height: 0;
}

.sq--l { background: var(--sq-light); }
.sq--d { background: var(--sq-dark); }

.sq.is-from::after,
.sq.is-to::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #45C49C;
  opacity: .54;
  animation: flash .5s var(--ease);
}

.sq.is-to::after { opacity: .62; }

.sq.is-candidate::after {
  content: "";
  position: absolute;
  inset: 12%;
  border: 3px solid rgba(215, 107, 53, .78);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.board-arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}

.board-arrow > path {
  fill: none;
  stroke: rgba(245, 184, 46, .9);
  stroke-width: 2.6;
  stroke-linecap: round;
  filter: drop-shadow(0 2px 3px rgba(15, 33, 24, .32));
}

.hero-board .board-arrow > path {
  stroke-width: 2.9;
}

.board-brilliancy {
  position: absolute;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #36C9A3;
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  z-index: 5;
  transform: translate(-50%, -50%);
  box-shadow: 0 6px 18px -10px rgba(15, 33, 24, .8);
}

.hero-board .board-brilliancy {
  width: 30px;
  height: 30px;
  font-size: 18px;
}

@keyframes flash {
  from { opacity: .6; }
}

.sq.is-mate::after {
  background: #D7443F;
  opacity: .45;
}

.pc {
  width: 82%;
  height: 82%;
  display: block;
  overflow: visible;
  user-select: none;
  pointer-events: none;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: transform .2s var(--ease);
}

.pc--w {
  fill: #FCF9F2;
  stroke: #2A2521;
  stroke-width: 1.25;
}

.pc--b {
  fill: #221F1B;
  stroke: #221F1B;
  stroke-width: 1.25;
}

.pc .hl {
  fill: none;
  stroke-width: 1.1;
}

.pc--w .hl { stroke: #2A2521; }
.pc--b .hl { stroke: rgba(236, 227, 208, .42); }

.study__wrap {
  position: relative;
}

.study__badge {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(.9);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  color: #fff;
  background: var(--secondary);
  padding: 12px 26px;
  border-radius: var(--r-sm);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, .9);
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s, transform .45s var(--ease);
}

.study__badge.is-on {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.annot {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 4px 4px;
  min-height: 96px;
}

.annot__mv {
  font-family: 'JetBrains Mono', monospace;
  font-size: 15px;
  font-weight: 700;
  color: var(--secondary);
  flex: none;
  padding-top: 1px;
  min-width: 74px;
  font-variant-numeric: tabular-nums;
}

.annot__txt {
  font-size: .95em;
  color: var(--navy);
  line-height: 1.5;
}

.annot__txt.is-quiet {
  color: var(--muted);
}

.study__foot {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 13px;
  margin-top: 4px;
}

.study__replay {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color .2s;
}

.study__replay:hover {
  color: var(--primary);
}

.study__tick {
  margin-left: auto;
  display: flex;
  gap: 5px;
}

.study__tick i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #CBD6E6;
  transition: background-color .3s;
}

.study__tick i.is-on {
  background: var(--primary);
}

/* ==================== TESTIMONIAL CAROUSEL WITH SCREENSHOTS ==================== */
.car {
  margin-top: clamp(26px, 3.5vw, 42px);
}

.reviewcard {
  display: block;
  max-width: 860px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(24px, 3.5vw, 38px);
  box-shadow: 0 24px 50px -36px rgba(14, 35, 64, .25);
}

.reviewcard__src {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.reviewcard__src .wa-c { color: #1FA855; }
.reviewcard__src .tg-c { color: #2AABEE; }

.reviewcard__body {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: center;
}

@media(max-width:768px) {
  .reviewcard__body {
    grid-template-columns: 1fr;
  }
}

.reviewcard blockquote {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 1.7rem);
  font-weight: 700;
  line-height: 1.36;
  margin-bottom: clamp(16px, 2vw, 24px);
  color: var(--navy);
}

.reviewcard__img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 24px -10px rgba(14, 35, 64, 0.2);
  cursor: pointer;
  transition: transform 0.2s var(--ease), box-shadow 0.2s;
}

.reviewcard__img:hover {
  transform: scale(1.03);
  box-shadow: 0 14px 30px -10px rgba(14, 35, 64, 0.3);
}

.reviewcard__who {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
  margin-top: 16px;
}

.reviewcard__who b {
  display: block;
  font-size: .95em;
  font-weight: 700;
}

.reviewcard__who span {
  display: block;
  color: var(--muted);
  font-size: .84em;
}

.reviewcard__win {
  margin-left: auto;
  flex: none !important;
  color: var(--accent) !important;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px !important;
  font-weight: 700;
  text-align: right;
  letter-spacing: .02em;
}

.car__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
}

.car__btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  display: grid;
  place-items: center;
  color: var(--navy);
  transition: border-color .18s, color .18s, background-color .18s;
}

.car__btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-soft);
}

.car__dots {
  display: flex;
  gap: 7px;
}

.car__dots button {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #CBD6E6;
  transition: background-color .2s, transform .2s;
}

.car__dots button[aria-current="true"] {
  background: var(--primary);
  transform: scale(1.3);
}

.car__count {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 12px;
  letter-spacing: .04em;
}

.results__cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(22px, 3vw, 30px);
}

/* ============================ PRICING (MATCHING SCREENSHOT LAYOUT) ============================ */
.pricing__head {
  max-width: 780px;
  margin: 0 auto clamp(32px, 5vw, 48px);
  text-align: center;
}

.pricing__head .eyebrow {
  justify-content: center;
}

.pricing__head .eyebrow::after {
  display: none;
}

.pricing__head .lede {
  margin: 14px auto 0;
}

.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
  align-items: stretch;
}

@media(max-width:1040px) {
  .plans {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.plan {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: clamp(26px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  background: var(--surface);
}

/* Featured Dark Card */
.plan--hero {
  border: 1px solid var(--navy-2) !important;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 28px 60px -20px rgba(14, 35, 64, 0.5) !important;
}

.plan--hero h3,
.plan--hero .plan__px b,
.plan--hero li {
  color: #fff !important;
}

.plan--hero .plan__ph,
.plan--hero .plan__for,
.plan--hero .plan__px i,
.plan--hero .plan__nocard {
  color: #B2C4DD !important;
}

.plan__nocard {
  text-align: center;
  font-size: .8em;
  color: var(--muted);
  margin-top: 10px;
}

.plan--hero li svg {
  color: var(--accent) !important;
}

.plan__top-tags {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 16px;
}

.plan__ph {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.plan__status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  border-radius: 6px;
  padding: 4px 8px;
}

.plan__status--default {
  color: var(--accent);
  border: 1px solid rgba(15, 166, 120, .36);
  background: rgba(15, 166, 120, .08);
}

.plan__status--orange {
  color: #FF9F68;
  background: rgba(215, 107, 53, 0.18);
  border: 1px solid rgba(215, 107, 53, 0.4);
}

.plan__status--red {
  color: #FF4D4D;
  background: rgba(220, 38, 38, 0.12);
  border: 1px solid rgba(220, 38, 38, 0.4);
}

.plan h3 {
  font-size: clamp(1.4rem, 2.4vw, 1.75rem);
  margin-bottom: 8px;
}

.plan__for {
  color: var(--muted);
  font-size: .93em;
  margin-bottom: 20px;
  min-height: 3.8em;
}

.plan__px {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 6px;
}

.plan__px b {
  font-size: clamp(2.8rem, 5.4vw, 3.8rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.045em;
}

.plan__px i {
  font-style: normal;
  color: var(--muted);
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 600;
}

.plan__subpx {
  font-size: 0.9em;
  color: var(--muted);
  margin-bottom: 16px;
  font-weight: 600;
}

/* Outcome metric strip — the headline result each plan is sold on */
.plan__gain {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  border: 1px solid rgba(15, 166, 120, .3);
  background: rgba(15, 166, 120, .06);
  border-radius: 10px;
  padding: 12px 14px;
  margin: 14px 0 22px;
}

.plan__gain b [data-price] {
  margin-left: 5px;
}

.plan__gain b {
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.02em;
  color: var(--accent-dark);
}

.plan__gain span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
}

.plan--hero .plan__gain {
  border-color: rgba(15, 166, 120, .5);
  background: rgba(15, 166, 120, .14);
}

.plan--hero .plan__gain b {
  color: #3FD6A4;
}

.plan--hero .plan__gain span {
  color: #B2C4DD !important;
}

/* Optional split-payment note, sits right under the outcome metric strip */
.plan__split {
  font-size: .82em;
  color: var(--muted);
  margin: -14px 0 18px;
}

.plan--hero .plan__split {
  color: #B2C4DD;
}

/* "Everything above, plus:" divider inside a feature list */
.plan li.plan__more--top {
  border-top: 0;
  padding-top: 0;
  margin-bottom: 2px;
}

.plan li.plan__more {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--border);
  padding-top: 14px;
  margin-top: 2px;
}

.plan--hero li.plan__more {
  color: #B2C4DD !important;
  border-top-color: var(--border-dark);
}

.plan ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}

.plan li {
  display: flex;
  gap: 12px;
  font-size: .94em;
  color: var(--navy);
  line-height: 1.45;
}

.plan li svg {
  flex: none;
  margin-top: 4px;
  color: var(--accent);
}

.plan--alt li svg {
  color: var(--primary);
}

.px__note {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted);
  text-align: center;
  margin-top: clamp(20px, 2.6vw, 28px);
  letter-spacing: .02em;
}

/* ============================ STUDENT RATING CHARTS ============================ */
.rgrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
  margin-bottom: clamp(30px, 4vw, 44px);
}

@media(max-width:860px) {
  .rgrid { grid-template-columns: 1fr; }
}

.rcard {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(18px, 2.2vw, 26px);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.rcard__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.rcard__name {
  display: block;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}

.rcard__meta {
  display: block;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.rcard__gain {
  flex: none;
  text-align: right;
}

.rcard__gain b {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-dark);
  line-height: 1;
  letter-spacing: -.02em;
}

.rcard__gain span,
.rcard__stats span {
  display: block;
  margin-top: 5px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9.5px;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.rcard__chart {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-sm);
  border: 1px solid var(--border);
}

.rcard__note {
  font-size: .87em;
  line-height: 1.55;
  color: var(--muted);
  margin-top: -4px;
}

.rcard__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  text-align: center;
}

.rcard__stats b {
  display: block;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -.02em;
}

/* ============================ FIT CHECKER / QUIZ ============================ */
.fit {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.fit__hd {
  text-align: center;
  max-width: 62ch;
  margin: 0 auto clamp(32px, 4.5vw, 48px);
}

.fit__hd .eyebrow {
  justify-content: center;
}

.fit__hd .eyebrow::after {
  display: none;
}

.fit__hd h2 {
  font-size: clamp(1.95rem, 4.3vw, 3rem);
  margin-bottom: 16px;
}

.fit__hd p {
  color: var(--muted);
}

.quiz {
  max-width: 780px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--background);
  padding: clamp(22px, 3.4vw, 40px);
}

.quiz__bar {
  display: flex;
  gap: 6px;
  margin-bottom: clamp(22px, 3vw, 30px);
}

.quiz__bar i {
  flex: 1;
  height: 4px;
  border-radius: 2px;
  background: var(--border);
  transition: background-color .4s var(--ease);
}

.quiz__bar i.is-done {
  background: var(--primary);
}

.quiz__q {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 12px;
  font-weight: 700;
}

.quiz h3 {
  font-size: clamp(1.3rem, 2.7vw, 1.72rem);
  margin-bottom: clamp(20px, 2.6vw, 26px);
}

.quiz__opts {
  display: grid;
  gap: 10px;
}

.opt {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 15px 18px;
  font-size: .97em;
  min-height: 52px;
  background: #fff;
  transition: border-color .18s, background-color .18s, transform .18s var(--ease);
}

.opt:hover {
  border-color: var(--primary);
  background: var(--primary-soft);
  transform: translateX(3px);
}

.opt__k {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--primary);
  flex: none;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  border-radius: 4px;
}

.quiz__back {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 22px;
  transition: color .2s;
}

.quiz__back:hover {
  color: var(--navy);
}

.quiz__back[hidden] {
  display: none;
}

.evalbar {
  height: 8px;
  border-radius: 5px;
  background: var(--border);
  overflow: hidden;
  margin-bottom: 9px;
}

.evalbar i {
  display: block;
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 1.1s var(--ease);
}

.eval__row {
  display: flex;
  justify-content: space-between;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.eval__row b {
  color: var(--accent);
  font-weight: 700;
}

.res h3 {
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  margin-bottom: 14px;
}

.res__p {
  color: var(--muted);
  margin-bottom: 24px;
  line-height: 1.6;
}

.res__list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 28px;
  border-top: 1px solid var(--border);
  padding-top: 22px;
}

.res__list li {
  display: flex;
  gap: 12px;
  font-size: .95em;
  line-height: 1.45;
}

.res__list svg {
  flex: none;
  margin-top: 4px;
  color: var(--accent);
}

.res__rec {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  background: #fff;
  padding: 20px 22px;
  margin-bottom: 24px;
}

.res__rec span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 700;
}

.res__rec b {
  display: block;
  font-size: 1.28rem;
  font-weight: 800;
  margin: 8px 0 5px;
  letter-spacing: -.02em;
}

.res__rec p {
  color: var(--muted);
  font-size: .91em;
}

.res__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.res__cta .btn {
  flex: 1;
  min-width: 190px;
}

/* ============================ FAQ ============================ */
.faq {
  max-width: 820px;
  margin-inline: auto;
}

.faq__i {
  border-bottom: 1px solid var(--border);
}

.faq__i:first-of-type {
  border-top: 1px solid var(--border);
}

.faq summary {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-size: 1.05em;
  font-weight: 700;
  letter-spacing: -.012em;
  list-style: none;
}

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

.faq summary::after {
  content: "+";
  margin-left: auto;
  flex: none;
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
  color: var(--primary);
  line-height: 1;
  transition: transform .28s var(--ease);
}

.faq__i[open] summary::after {
  transform: rotate(45deg);
}

.faq__q {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11.5px;
  color: var(--muted);
  flex: none;
  padding-top: 5px;
  font-weight: 700;
}

.faq__a {
  color: var(--muted);
  padding: 0 0 24px 40px;
  font-size: .96em;
  max-width: 66ch;
  line-height: 1.65;
}

@media(max-width:560px) {
  .faq__a {
    padding-left: 0;
  }
}

/* ============================ NEW FULL-WIDTH DARK CALLOUT (REPLACES FORM) ============================ */
.callout-dark {
  background: var(--navy);
  color: #fff;
  padding-block: clamp(64px, 10vw, 120px);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}

.callout-dark__in {
  max-width: 760px;
  margin-inline: auto;
}

.callout-dark .eyebrow {
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.callout-dark .eyebrow::after {
  display: none;
}

.callout-dark h2 {
  font-size: clamp(2.4rem, 5.4vw, 4.2rem);
  color: #fff;
  margin-bottom: 18px;
  line-height: 1.06;
}

.callout-dark p {
  color: #B2C4DD;
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  line-height: 1.65;
  margin-bottom: 32px;
}

.callout-dark__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.callout-dark__meta {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #6C84A3;
  font-weight: 700;
}

/* ============================ FOOTER ============================ */
.foot {
  border-top: 1px solid rgba(255, 255, 255, .1);
  background: var(--navy);
  padding-block: clamp(24px, 3vw, 36px);
}

.foot__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: #6C84A3;
  letter-spacing: .04em;
}

.foot__right {
  margin-left: auto;
}

.foot__link {
  color: #B2C4DD;
  text-decoration: none;
}

.foot__link:hover {
  color: #fff;
}

/* ============================ WHATSAPP WIDGET ============================ */
.wa {
  position: fixed;
  right: clamp(16px, 3vw, 26px);
  bottom: clamp(16px, 3vw, 26px);
  z-index: 80;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  pointer-events: none;
}

.wa__panel {
  width: min(324px, calc(100vw - 32px));
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  backdrop-filter: blur(20px);
  box-shadow: 0 34px 70px -24px rgba(14, 35, 64, .5);
  overflow: hidden;
  transform-origin: bottom right;
  opacity: 0;
  transform: translateY(10px) scale(.95);
  pointer-events: none;
  transition: opacity .24s var(--ease), transform .28s var(--ease);
}

.wa.is-open .wa__panel {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}

.wa__hd {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px 18px;
  background: #1FA855;
}

.wa__hd .brand__icon {
  color: #fff;
  background: transparent;
  width: 32px;
  height: 32px;
  font-size: 20px;
}

.wa__hd b {
  display: block;
  font-size: .93em;
  font-weight: 700;
  color: #fff;
  letter-spacing: -.01em;
}

.wa__hd span {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  color: rgba(255, 255, 255, .82);
  display: flex;
  align-items: center;
  gap: 6px;
}

.wa__hd span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #5BE58A;
}

.wa__bd {
  padding: 18px;
}

.wa__bd>p {
  font-size: .9em;
  color: var(--muted);
  margin-bottom: 14px;
  line-height: 1.5;
}

.wa__opts {
  display: grid;
  gap: 8px;
}

.wa__opt {
  display: block;
  width: 100%;
  text-align: left;
  font-size: .89em;
  border: 1px solid var(--border);
  border-radius: var(--r-sm);
  padding: 11px 14px;
  transition: border-color .18s, background-color .18s;
}

.wa__opt:hover {
  border-color: rgba(31, 168, 85, .6);
  background: rgba(31, 168, 85, .09);
}

.wa__fine {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
  letter-spacing: .04em;
}

.wa__fab {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #1FA855;
  color: #fff;
  display: grid;
  place-items: center;
  flex: none;
  box-shadow: 0 16px 34px -12px rgba(31, 168, 85, .75);
  transition: transform .24s var(--ease), background-color .2s;
  pointer-events: auto;
}

.wa__fab:hover {
  transform: scale(1.07);
  background: #24BC60;
}

.wa__fab svg:last-child { display: none; }
.wa.is-open .wa__fab svg:first-child { display: none; }
.wa.is-open .wa__fab svg:last-child { display: block; }

.wa__ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #1FA855;
  animation: ping 2.4s var(--ease) infinite;
  pointer-events: none;
}

.wa.is-open .wa__ping,
.wa.is-touched .wa__ping { display: none; }

@keyframes ping {
  0% { transform: scale(1); opacity: .7; }
  70%, 100% { transform: scale(1.55); opacity: 0; }
}

.wa__fabwrap { position: relative; }

/* Reveal animations */
.rev { opacity: 1; }

.rev.is-in {
  opacity: 1;
  transform: none;
}

@media(prefers-reduced-motion:reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .rev { opacity: 1; transform: none; }
}

.skip {
  position: absolute;
  top: -60px;
  left: var(--gut);
  z-index: 99;
  background: var(--primary);
  color: #fff;
  padding: 11px 18px;
  border-radius: 0 0 var(--r-sm) var(--r-sm);
  font-weight: 700;
  font-size: .9em;
  transition: top .2s;
}

.skip:focus { top: 0; }

/* Lightbox */
.lb {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  background: rgba(14, 35, 64, .92);
  backdrop-filter: blur(6px);
  padding: clamp(16px, 4vw, 48px);
}

.lb.is-open {
  display: grid;
  place-items: center;
}

.lb img {
  max-width: min(720px, 100%);
  max-height: 88vh;
  width: auto;
  border-radius: var(--r-md);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
}

.lb__x {
  position: absolute;
  top: clamp(12px, 3vw, 26px);
  right: clamp(12px, 3vw, 26px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .2s;
  cursor: pointer;
}

.lb__x:hover { background: rgba(255, 255, 255, .26); }

/* ============================ GM GAME EMBED ============================ */
.gmgame__in {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.gmgame__in .lede {
  margin: 12px auto 0;
}

.gmgame__in .eyebrow {
  justify-content: center;
}

.gmgame__in .eyebrow::after {
  display: none;
}

.gmgame__board {
  position: relative;
  margin-top: clamp(26px, 3.4vw, 38px);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--surface);
  /* chess.com posts its real height after load; this avoids a collapsed box
     in the meantime and a layout jump when the message arrives. */
  min-height: 460px;
}

.gmgame__board iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  /* touch-action alone does not help over the board itself: chess.com's own
     script calls preventDefault on touchmove there for its own drag/zoom
     handling, which wins over anything we set on our side of the iframe
     boundary. touch-action still helps in the parts of the embed that don't
     capture the gesture themselves, so it stays as a first line of defence. */
  touch-action: pan-y;
}

/* Opt-in chip for touch devices, see the media query below. Hidden by default
   (source order matters here: this rule must stay ahead of that media query
   so its display:inline-flex can win on touch, not get shadowed by this). */
.gmgame__tap {
  display: none;
  align-items: center;
  gap: 6px;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  border: none;
  border-radius: 999px;
  padding: 9px 14px;
  background: var(--navy);
  color: #F6F0E4;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  box-shadow: 0 12px 28px -14px rgba(14, 35, 64, .6);
}

/* On phones and tablets (no hover, coarse pointer = finger, not mouse), a thumb
   swiping anywhere on the embed — board included — should always scroll the
   page, permanently, so the iframe stays pointer-events:none there rather
   than relying on touch-action alone. There is deliberately no in-place
   "activate" state to fall back into a scroll trap: .gmgame__tap instead
   opens the same iframe in the .gmModal below, which is always interactive.
   Desktop/mouse users are unaffected and keep full inline interaction. */
@media (hover: none) and (pointer: coarse) {
  .gmgame__board iframe {
    pointer-events: none;
  }
  .gmModal.is-open iframe { pointer-events: auto; }

  .gmgame__tap {
    display: inline-flex;
  }
}

/* Full-screen modal the game embed moves into once a visitor taps the chip
   above. Mirrors the .lb screenshot lightbox — a modal is the right place
   for the embed's own drag/scroll handling to win, since nobody is trying
   to scroll past a modal the way they are trying to scroll past a section
   of the page. */
.gmModal { display: block; }
.gmModal:not(.is-open) .gmModal__stage { width: 100%; max-height: none; overflow: visible; border-radius: 0; box-shadow: none; }
.gmModal:not(.is-open) .gmModal__x { display: none; }

.gmModal.is-open {
  position: fixed; inset: 0; z-index: 120; background: rgba(14,35,64,.92); padding: 64px 16px 16px;
  display: grid;
  place-items: center;
}

.gmModal__stage {
  width: min(720px, 100%);
  max-height: calc(100dvh - 80px);
  overflow: auto;
  overscroll-behavior: contain;
  border-radius: var(--r-lg);
  box-shadow: 0 40px 90px -30px rgba(0, 0, 0, .8);
}

.gmModal__stage iframe {
  display: block;
  width: 100%;
  min-height: 460px;
  border: none;
}

.gmModal__x {
  position: absolute;
  top: clamp(12px, 3vw, 26px);
  right: clamp(12px, 3vw, 26px);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .2s;
  cursor: pointer;
}

.gmModal__x:hover { background: rgba(255, 255, 255, .26); }

/* ============================ HERO BADGE + TICKS ============================ */
.hero__microtag span {
  margin-right: 16px;
  white-space: nowrap;
}

/* ============================ PROOF CARDS ============================ */
.bombshell {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  margin-bottom: clamp(28px, 3.6vw, 40px);
}

@media(max-width:860px) {
  .bombshell { grid-template-columns: 1fr; }
}

.bombshell__card {
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  background: var(--surface);
  padding: clamp(22px, 2.6vw, 30px);
}

.bombshell__card b {
  display: block;
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--navy);
  margin-bottom: 8px;
}

.bombshell__card p {
  color: var(--muted);
  font-size: .95em;
  line-height: 1.6;
}

/* ============================ URGENCY LINE ============================ */
.urgency {
  margin-top: 14px;
  font-weight: 600;
  color: var(--primary);
}

/* ============================ MOBILE STICKY CTA ============================
   Mobile only. .header__cta is display:none below 540px, so small screens have
   no persistent CTA at all; above that the sticky header already carries one and
   a second would just compete with it. */
.stickycta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 95;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 33, 24, .94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .1);
  transition: transform .28s var(--ease), opacity .28s var(--ease);
}

.stickycta .btn {
  min-height: 52px;
}

.stickycta.is-off {
  transform: translateY(110%);
  opacity: 0;
  pointer-events: none;
}

@media(min-width:541px) {
  .stickycta { display: none; }
}

@media(prefers-reduced-motion: reduce) {
  .stickycta { transition: none; }
}

/* ============================ WHO THIS IS FOR ============================
   Dark block on purpose: it sits immediately before pricing and needs to read
   as a checkpoint, not as more body copy. */
.whofor {
  background: var(--navy);
  color: #F6F0E4;
  border-radius: var(--r-lg);
}

.whofor__in {
  max-width: 1000px;
  margin: 0 auto;
}

.whofor h2 {
  color: #F6F0E4;
  text-align: center;
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  margin-bottom: clamp(28px, 3.6vw, 40px);
}

.whofor__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 40px);
}

@media(max-width:820px) {
  .whofor__grid { grid-template-columns: 1fr; gap: 28px; }
}

.whofor__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  list-style: none;
}

.whofor__list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  line-height: 1.55;
  font-size: .97em;
  color: rgba(246, 240, 228, .82);
}

.whofor__list li svg {
  flex: none;
  margin-top: 3px;
}

.whofor__list b {
  color: #F6F0E4;
}

.whofor__list--yes li svg { color: var(--accent); }
.whofor__list--no li svg { color: #E2705A; }

.whofor__head {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--primary) !important;
  padding-bottom: 4px;
}

.whofor__micro {
  margin-top: clamp(28px, 3.4vw, 40px);
  text-align: center;
  max-width: 62ch;
  margin-left: auto;
  margin-right: auto;
  color: rgba(246, 240, 228, .74);
  font-size: 1.02em;
  line-height: 1.6;
}

/* Mobile audit fixes: shrinkable content and stable screenshot space. */
.offer-strip__lead, .offer-strip__grid { min-width: 0; }
.offer-strip__lead .btn { white-space: normal; max-width: 100%; text-align: center; }
.reviewcard__enlarge { display: block; width: 100%; height: 280px; padding: 0; border: 0; background: transparent; cursor: zoom-in; }
.reviewcard__img { width: 100%; height: 100%; object-fit: contain; border: 0; box-shadow: none; }
.gmModal__x { z-index: 2; }
.menu-toggle { display: none; }
section[id] { scroll-margin-top: 90px; }
.stickycta.is-off { visibility: hidden; }
@media(max-width:980px) { .offer-strip__in { grid-template-columns: minmax(0, 1fr); } }
@media(max-width:920px) {
  .menu-toggle { display: grid; place-items: center; padding: 10px; width: 44px; min-height: 44px; flex: none; color: #F6F0E4; border: 0; background: transparent; border-radius: 8px; }
  .nav.is-open { display: flex; flex-direction: column; gap: 0; position: absolute; top: 100%; left: 0; right: 0; padding: 12px var(--gut); background: var(--navy); box-shadow: 0 12px 24px #0003; }
  .nav.is-open a { padding: 14px 0; }
}
@media(max-width:540px) { .header__in { gap: 10px; } .brand { font-size: 15px; } .brand__txt span { font-size: 8px; } .wa { display: none; } }
@media(prefers-reduced-motion:reduce) { html { scroll-behavior: auto; } }
