/* ============================================================================
 *  Home page styles — ported from legacy `src/styles/home.css`. Page-scoped:
 *  linked ONLY on the home route ("/", "/sw") via Document.head. Shared tokens
 *  + footer now live in the global web/chrome.css (loaded on every page).
 *  Home-local tokens defined below: --offer-stack-top, --hiw-card-light-bg,
 *  --earn-tray-bg-light.
 * ========================================================================== */

    /* =====================================================================
       HERO — always dark
       ===================================================================== */
    .hero {
      position: relative;
      min-height: calc(100dvh - 76px);  /* navbar sits above the hero now */
      background: var(--hero-bg);
      color: var(--hero-text);
      overflow: hidden;
      isolation: isolate;
    }
    .hero__glow-right,
    .hero__glow-left,
    .hero__vignette {
      position: absolute;
      pointer-events: none;
      z-index: 0;
    }
    .hero__glow-right {
      top: -240px; right: -360px;
      width: 1200px; height: 1200px;
      background: radial-gradient(circle, var(--hero-glow-1) 0%, transparent 65%);
      filter: blur(20px);
    }
    .hero__glow-left {
      bottom: -300px; left: -200px;
      width: 800px; height: 800px;
      background: radial-gradient(circle, var(--hero-glow-2) 0%, transparent 60%);
      filter: blur(40px);
    }
    .hero__vignette {
      inset: 0;
      background: radial-gradient(ellipse at center, transparent 40%, rgba(10, 1, 37, 0.55) 100%);
    }

    /* =====================================================================
       BUTTONS
       ===================================================================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      gap: 8px;
      padding: 12px 22px;
      border-radius: var(--radius-btn);
      font-size: 14px; font-weight: 600;
      letter-spacing: 0.01em; line-height: 1;
      transition: transform .15s ease, background-color .15s ease, box-shadow .15s ease;
      white-space: nowrap;
    }
    /* Primary CTA inside the hero — light-on-dark */
    .btn--primary {
      background: var(--hero-btn-bg);
      color: var(--hero-btn-fg);
    }
    .btn--primary:hover {
      background: var(--hero-btn-bg-hover);
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(255, 255, 255, 0.14);
    }
    .btn--primary:active { transform: translateY(0); }
    .btn--lg { padding: 14px 26px; font-size: 15px; }

    /* Dark pill — inverts cleanly between themes. Used on light-bg sections
       (Offer, How it works) where .btn--primary's hero-token whites disappear. */
    .btn--dark {
      /* Inherits 8px var(--radius-btn) from .btn — matches hero/nav buttons */
      background: var(--page-text);
      color: var(--page-bg);
    }
    .btn--dark:hover {
      background: var(--brand-violet);
      color: #FFFFFF;
      transform: translateY(-1px);
      box-shadow: 0 8px 24px rgba(105, 62, 254, 0.28);
    }
    .btn--dark:active { transform: translateY(0); }

    /* Text link with arrow */
    .btn-link {
      display: inline-flex; align-items: center; gap: 6px;
      padding: 14px 4px;
      font-size: 15px; font-weight: 500;
      color: var(--hero-text);
      transition: opacity .15s ease;
    }
    .btn-link:hover { opacity: 0.7; }
    .btn-link__arrow { width: 14px; height: 14px; transition: transform .2s ease; }
    .btn-link:hover .btn-link__arrow { transform: translateX(3px); }

    /* =====================================================================
       DROPDOWN MENUS (Group / Personal)
       Themed: white card in light mode, dark card in dark mode.
       Pops below the navbar, floats over the hero.
       ===================================================================== */
    /* =====================================================================
       HERO CONTENT
       ===================================================================== */
    .hero__content {
      position: relative;
      z-index: 2;   /* above the wave divider (z:1) */
      min-height: calc(100dvh - var(--nav-height));
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: 64px;
      align-items: center;
      padding: 64px var(--container-px) 96px;
      max-width: 1440px;
      margin: 0 auto;
    }

    .hero__copy {
      max-width: 580px;
      animation: fade-up .7s cubic-bezier(.2,.7,.2,1) both;
    }
    .hero__heading {
      font-family: var(--font-display);
      font-size: clamp(2.75rem, 6.4vw, 5.25rem);
      font-weight: 700;
      line-height: 1.02;
      letter-spacing: -0.03em;
      color: var(--hero-text);
      margin: 0 0 24px;
    }
    .hero__heading-line { display: block; }
    .hero__heading em {
      font-style: normal;
      font-weight: inherit;
      letter-spacing: inherit;
    }
    .hero__sub {
      font-size: clamp(1rem, 1.25vw, 1.125rem);
      line-height: 1.55;
      color: var(--hero-text-dim);
      max-width: 480px;
      margin: 0 0 36px;
      animation: fade-up .7s .12s cubic-bezier(.2,.7,.2,1) both;
    }
    .hero__actions {
      display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
      animation: fade-up .7s .24s cubic-bezier(.2,.7,.2,1) both;
    }

    /* PHONE VISUAL — uses mix-blend-mode: screen against the dark hero
       so the black image background disappears and only the phone shows. */
    .hero__visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
      animation: fade-up .9s .18s cubic-bezier(.2,.7,.2,1) both;
    }
    .hero__visual-glow {
      position: absolute;
      inset: 10% -5%;
      background:
        radial-gradient(ellipse 55% 50% at 50% 55%,
          rgba(105, 62, 254, 0.14) 0%,
          rgba(57, 1, 251, 0.06) 40%,
          transparent 75%);
      filter: blur(60px);
      pointer-events: none;
      z-index: -1;
    }
    .hero__phone {
      width: 100%;
      max-width: 600px;
      /* Real alpha transparency baked into the WebP — composites naturally
         on any background. No blend mode, no filter, no tricks. */
      /* Ambient float — 8px vertical breath over 6s, asymmetric (45% peak)
         so the rhythm reads as drifting rather than metronome. Transform-only,
         GPU-composited, zero paint cost. */
      animation: hero-float 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
      will-change: transform;
    }


    /* =====================================================================
       WAVE DIVIDER — 4-layer parallax horizon at the bottom of the hero.
       Each <use> drifts at a different speed/phase so the silhouette never
       visibly repeats. The frontmost layer is the page-bg color, making it
       read as "the page below is creeping up over the hero".
       ===================================================================== */
    .hero__waves {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 100%;
      height: 80px;
      pointer-events: none;
      z-index: 1;        /* above bg/glows, below content */
      display: block;
    }
    @media (min-width: 768px)  { .hero__waves { height: 110px; } }
    @media (min-width: 1024px) { .hero__waves { height: 140px; } }

    .hero__wave { will-change: transform; }
    .hero__wave--1 {
      fill: rgba(57, 1, 251, 0.15);
      animation: jiinue-wave-drift 10s cubic-bezier(0.22, 1, 0.36, 1) -2s infinite;
    }
    .hero__wave--2 {
      fill: rgba(105, 62, 254, 0.12);
      animation: jiinue-wave-drift 14s cubic-bezier(0.22, 1, 0.36, 1) -3s infinite;
    }
    .hero__wave--3 {
      fill: rgba(154, 125, 254, 0.10);
      animation: jiinue-wave-drift 18s cubic-bezier(0.22, 1, 0.36, 1) -4s infinite;
    }
    .hero__wave--4 {
      fill: var(--page-bg);     /* matches the page bg below the hero */
      animation: jiinue-wave-drift 24s cubic-bezier(0.22, 1, 0.36, 1) -5s infinite;
    }

    @keyframes fade-up {
      from { opacity: 0; transform: translateY(16px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    /* ==========JIINUE HERO ANIMATIONS========== */
    @keyframes hero-float {
      0%   { transform: translateY(0); }
      45%  { transform: translateY(-8px); }   /* asymmetric peak — softens the loop */
      100% { transform: translateY(0); }
    }
    @keyframes jiinue-wave-drift {
      0%   { transform: translate3d(-90px, 0, 0); }
      100% { transform: translate3d( 85px, 0, 0); }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { animation: none !important; transition: none !important; }
    }

    /* =====================================================================
       RESPONSIVE
       ===================================================================== */
    @media (max-width: 1024px) {
      .hero__content { padding: 48px 32px 80px; gap: 48px; }
    }
    @media (max-width: 860px) {
      .hero__content { grid-template-columns: 1fr; gap: 40px; padding-top: 40px; }
      .hero__visual { order: 2; }
      .hero__phone { max-width: 460px; }
    }
    @media (max-width: 640px) {
      :root { --container-px: 20px; }
      .btn { padding: 11px 18px; font-size: 13px; }
      .hero__content { padding: 32px var(--container-px) 64px; }
      .hero__sub { font-size: 1rem; }
      .hero__phone { max-width: 360px; }
    }

    /* =====================================================================
       STATS SECTION — trust strip directly below the hero.
       4 columns on desktop, 2x2 on phones. Numbers use the display font
       and an odometer-style reel for the digits (3 of 4 stats animate).
       ===================================================================== */
    .stats {
      position: relative;
      background: var(--page-bg);
      color: var(--page-text);
      padding: clamp(56px, 9vw, 112px) var(--container-px);
      transition: background-color .25s ease, color .25s ease;
    }
    .stats__container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: clamp(24px, 4vw, 48px) 0;
    }
    .stat {
      position: relative;
      text-align: center;
      padding: 8px 16px;
    }
    /* Subtle vertical dividers between adjacent columns */
    .stat + .stat::before {
      content: '';
      position: absolute;
      left: 0;
      top: 18%;
      bottom: 18%;
      width: 1px;
      background: var(--page-border);
    }

    .stat__value {
      display: inline-flex;
      align-items: flex-start;        /* superscript-style suffix */
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5.5vw, 4.25rem);
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.022em;       /* gentler than before; "100" no longer cramps */
      color: var(--page-text);
      margin-bottom: clamp(8px, 1.2vw, 14px);
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum" 1;
    }
    /* Suffix rendered as a smaller superscript-ish glyph, top-aligned with
       the digits' cap height. Consistent treatment across "K+", "+", "%". */
    .stat__suffix {
      font-size: 0.45em;
      font-weight: 700;
      line-height: 1;
      letter-spacing: 0;
      font-variant-numeric: normal;
      margin-left: 0.06em;
      padding-top: 0.18em;
      align-self: flex-start;
    }
    .stat__label {
      font-family: var(--font-body);
      font-size: clamp(13px, 1.05vw, 15px);
      font-weight: 500;
      color: var(--page-text-dim);
      letter-spacing: 0.005em;
      margin: 0;
    }

    /* ODOMETER REEL — vertical 0..9 strip clipped to one digit-height.
       JS sets `top` on the strip via rAF + ease-out cubic. */
    .reel {
      display: inline-block;
      height: 1em;
      line-height: 1;
      overflow: hidden;
      vertical-align: baseline;
      font-variant-numeric: tabular-nums;
      font-feature-settings: "tnum" 1;
    }
    .reel__strip {
      display: block;
      position: relative;
      top: 0;
      will-change: top;
    }
    .reel__digit {
      display: block;
      height: 1em;
      line-height: 1;
      text-align: center;
    }

    /* Responsive layout shifts */
    @media (max-width: 720px) {
      .stats__container {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 0;
      }
      .stat + .stat::before { display: none; }
      .stat:nth-child(1)::after,
      .stat:nth-child(3)::after {
        content: '';
        position: absolute;
        right: 0; top: 18%; bottom: 18%;
        width: 1px;
        background: var(--page-border);
      }
    }
    @media (max-width: 420px) {
      .stats__container { grid-template-columns: 1fr; gap: 32px; }
      .stat::before, .stat::after { display: none !important; }
    }

    /* =====================================================================
       OFFER SECTION — "What we offer"
       Rounded panel, two-column layout. Left column has the heading/CTA
       and goes sticky on lg+. Right column is a stacking deck of feature
       cards driven by the StackCards controller in JS.
       ===================================================================== */
    :root {
      --panel-bg-light: #F6F3FB;
      --offer-stack-top: clamp(72px, 10vh, 112px);
    }
    .offer {
      position: relative;
      background: var(--page-bg);
      padding: clamp(48px, 6vw, 96px) var(--container-px) clamp(80px, 9vw, 140px);
    }
    /* "More open" style — no frame, no rounded panel, no glow.
       Critical: removed overflow:hidden because it was killing the
       sticky context for descendant cards (now they stack properly). */
    .offer__panel {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
    }

    .offer__layout {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 56px;
    }
    @media (min-width: 768px) {
      .offer__layout {
        flex-direction: row;
        gap: clamp(48px, 8vw, 120px);
        align-items: flex-start;  /* required for sticky child */
      }
      .offer__col { flex: 1; min-width: 0; }
    }

    /* LEFT — sticky on lg+ */
    @media (min-width: 1024px) {
      .offer__col--text {
        position: sticky;
        top: var(--offer-stack-top);
        align-self: flex-start;
      }
    }

    .offer__badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: rgba(105, 62, 254, 0.10);
      border: 1px solid rgba(105, 62, 254, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--brand-violet);
      margin-bottom: clamp(16px, 2vw, 28px);
    }
    .dark .offer__badge {
      background: rgba(105, 62, 254, 0.18);
      border-color: rgba(105, 62, 254, 0.3);
      color: var(--brand-lilac);
    }

    .offer__heading {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.2vw, 3.5rem);
      font-weight: 700;
      line-height: 1.05;
      letter-spacing: -0.03em;
      color: var(--page-text);
      margin: 0 0 clamp(18px, 2vw, 28px);
    }
    /* Plain emphasis — no gradient. Solid brand violet reads as deliberate
       without the faded text-clipping effect. */
    .offer__heading em {
      font-style: normal;
      color: var(--brand-violet);
    }
    .dark .offer__heading em { color: var(--brand-lilac); }

    .offer__tagline {
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0 0 clamp(24px, 3vw, 36px);
      max-width: 480px;
    }

    /* RIGHT — stacking cards container */
    .offer__col--cards { position: relative; }

    .offer-card {
      position: relative;
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 24px;
      padding: clamp(28px, 3vw, 40px);
      margin-bottom: var(--stack-cards-gap, 24px);
      transform-origin: top center;
      overflow: hidden;
      will-change: transform;
      box-shadow:
        0 1px 2px rgba(20, 3, 66, 0.04),
        0 12px 32px -12px rgba(20, 3, 66, 0.08);
    }
    .dark .offer-card {
      background: #1c0a4f;
      border-color: rgba(255, 255, 255, 0.08);
      box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.3),
        0 16px 40px -12px rgba(0, 0, 0, 0.4);
    }

    /* Sticky stack from md+ — below that, cards just flow */
    @media (min-width: 768px) {
      .offer-card {
        position: sticky;
        top: var(--offer-stack-top);
      }
    }

    /* Naked Lucide-style line icon — same treatment as the navbar icons */
    .offer-card__icon {
      display: inline-block;
      margin-bottom: clamp(16px, 2vw, 24px);
      color: var(--brand-violet);
    }
    .dark .offer-card__icon { color: var(--brand-lilac); }
    .offer-card__icon svg {
      width: 32px; height: 32px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.6;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .offer-card__title {
      font-family: var(--font-display);
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.1;
      color: var(--page-text);
      margin: 0 0 10px;
    }
    .offer-card__desc {
      font-size: clamp(14px, 1.05vw, 15.5px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0;
      max-width: 480px;
    }

    /* =====================================================================
       OFFER REVEAL CASCADE — staggered fade-up for the left-column text
       elements when the section first enters the viewport. Triggered by JS
       adding `.is-revealed` to the section.
       Cards are intentionally NOT in this cascade because their transform
       is already owned by the StackCards controller — fighting over the
       transform property would cause visible jitter.
       ===================================================================== */
    @keyframes offer-reveal {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    /* Pre-state: hidden until the section reveals */
    .js .offer:not(.is-revealed) .offer__badge,
    .js .offer:not(.is-revealed) .offer__heading,
    .js .offer:not(.is-revealed) .offer__tagline,
    .js .offer:not(.is-revealed) .offer__col--text .btn {
      opacity: 0;
    }
    /* Revealed: play the keyframe with staggered delays per element */
    .offer.is-revealed .offer__badge   { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .30s both; }
    .offer.is-revealed .offer__heading { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .offer.is-revealed .offer__tagline { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .50s both; }
    .offer.is-revealed .offer__col--text .btn { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .60s both; }

    /* Reduced motion — show immediately, no transform */
    @media (prefers-reduced-motion: reduce) {
      .js .offer:not(.is-revealed) .offer__badge,
      .js .offer:not(.is-revealed) .offer__heading,
      .js .offer:not(.is-revealed) .offer__tagline,
      .js .offer:not(.is-revealed) .offer__col--text .btn {
        opacity: 1;
      }
      .offer.is-revealed .offer__badge,
      .offer.is-revealed .offer__heading,
      .offer.is-revealed .offer__tagline,
      .offer.is-revealed .offer__col--text .btn {
        animation: none;
      }
    }

    /* =====================================================================
       HOW IT WORKS — 4 alternating cards (light / brand / light / brand)
       with marquee-driven connector pills sitting in the gaps between them.
       Open style: no panel wrapper, just centered content on page bg.
       ===================================================================== */
    :root { --hiw-card-light-bg: #F4F1FB; }
    .dark { --hiw-card-light-bg: #1c0a4f; }

    .hiw {
      position: relative;
      background: var(--page-bg);
      padding: clamp(64px, 8vw, 128px) var(--container-px);
    }
    .hiw__container { max-width: 1280px; margin: 0 auto; }

    .hiw__header {
      text-align: center;
      margin-bottom: clamp(48px, 6vw, 80px);
    }
    .hiw__title {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 5vw, 4rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1;
      color: var(--page-text);
      margin: 0 0 12px;
    }
    .hiw__subtitle {
      font-size: clamp(15px, 1.2vw, 17px);
      color: var(--page-text-dim);
      margin: 0;
    }

    /* Cards row — grid handles responsive collapse cleanly */
    .hiw__steps {
      position: relative;        /* anchor for absolutely-positioned connectors */
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      margin-bottom: clamp(48px, 6vw, 72px);
    }
    @media (max-width: 1023px) {
      .hiw__steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
    }
    @media (max-width: 560px) {
      .hiw__steps { grid-template-columns: 1fr; gap: 16px; }
    }

    .hiw-card {
      border-radius: 20px;
      padding: clamp(28px, 3vw, 42px);
      min-height: clamp(280px, 28vw, 360px);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: clamp(48px, 8vw, 96px);   /* deliberate large vertical rhythm */
    }
    .hiw-card--light {
      background: var(--hiw-card-light-bg);
      color: var(--page-text);
    }
    .hiw-card--brand {
      background: var(--brand-blue);
      color: #FFFFFF;
    }

    .hiw-card__number {
      font-family: var(--font-display);
      font-size: clamp(2.5rem, 4vw, 3.5rem);
      font-weight: 700;
      line-height: 1;
      letter-spacing: -0.02em;
    }
    .hiw-card__title {
      font-family: var(--font-display);
      font-size: clamp(1.35rem, 1.9vw, 1.625rem);
      font-weight: 700;
      letter-spacing: -0.02em;
      line-height: 1.15;
      margin: 0 0 8px;
    }
    .hiw-card__desc {
      font-size: clamp(14px, 1.05vw, 15.5px);
      line-height: 1.5;
      margin: 0;
      max-width: 190px;            /* keeps copy narrower than card */
      opacity: 0.78;
    }
    .hiw-card--brand .hiw-card__desc { opacity: 0.92; }

    /* CONNECTOR PILLS — three small ovals over the gaps between cards.
       The box-shadow extends the section bg around each pill, creating
       a "punched-through" cutout illusion against the brand cards.
       Marquee inside the pill runs forever (CSS keyframes, no JS). */
    .hiw-connector {
      position: absolute;
      top: 50%;
      width: 36px;
      height: 30px;
      background: var(--page-bg);
      border: 1.5px solid var(--page-border);
      border-radius: 999px;
      overflow: hidden;
      box-shadow: 0 0 0 5px var(--page-bg);   /* the white ring / donut hole */
      display: flex;
      align-items: center;
      z-index: 3;
      color: var(--page-text-dim);
    }
    /* Gap-1 center = (W-G)/4 = 25% - G/4 px. For G=12 → 3px leftward correction. */
    .hiw-connector--1 { left: calc(25% - 3px); transform: translate(-50%, -50%); }
    .hiw-connector--2 { left: 50%;             transform: translate(-50%, -50%); }
    .hiw-connector--3 { left: calc(75% + 3px); transform: translate(-50%, -50%); }

    @media (max-width: 1023px) { .hiw-connector { display: none; } }

    .hiw-connector__strip {
      display: flex;
      width: max-content;
      align-items: center;
      animation: hiw-marquee 2.5s linear infinite;  /* ~35 px/s — matches spec */
    }
    .hiw-connector__arrow {
      flex: 0 0 14px;
      width: 14px;
      height: 14px;
      margin-right: 8px;        /* gap baked into the item, not flex `gap`,
                                   so the -50% loop math is exact */
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
    }
    @keyframes hiw-marquee {
      from { transform: translateX(-50%); }
      to   { transform: translateX(0); }
    }

    .hiw__cta {
      display: flex;
      justify-content: center;
    }

    /* REVEAL CASCADE — re-uses the offer-reveal keyframe.
       Cards in left-to-right order (.30 / .35 / .40 / .45).
       Connectors fire non-sequentially (.40 / .60 / .80) per spec —
       the diagram "assembles" in front of the reader. */
    .js .hiw:not(.is-revealed) .hiw__title,
    .js .hiw:not(.is-revealed) .hiw__subtitle,
    .js .hiw:not(.is-revealed) .hiw-card,
    .js .hiw:not(.is-revealed) .hiw-connector,
    .js .hiw:not(.is-revealed) .hiw__cta { opacity: 0; }

    .hiw.is-revealed .hiw__title    { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .10s both; }
    .hiw.is-revealed .hiw__subtitle { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .20s both; }
    .hiw.is-revealed .hiw-card:nth-of-type(1) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .30s both; }
    .hiw.is-revealed .hiw-card:nth-of-type(2) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .35s both; }
    .hiw.is-revealed .hiw-card:nth-of-type(3) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .hiw.is-revealed .hiw-card:nth-of-type(4) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .45s both; }
    /* Connectors stagger non-monotonically: center first, then left, then right */
    .hiw.is-revealed .hiw-connector--2 { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .hiw.is-revealed .hiw-connector--1 { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .60s both; }
    .hiw.is-revealed .hiw-connector--3 { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .80s both; }
    .hiw.is-revealed .hiw__cta { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) 1.0s both; }

    @media (prefers-reduced-motion: reduce) {
      .hiw__steps .hiw-connector__strip { animation: none; }
      .js .hiw:not(.is-revealed) .hiw__title,
      .js .hiw:not(.is-revealed) .hiw__subtitle,
      .js .hiw:not(.is-revealed) .hiw-card,
      .js .hiw:not(.is-revealed) .hiw-connector,
      .js .hiw:not(.is-revealed) .hiw__cta { opacity: 1; }
      .hiw.is-revealed *[class*="hiw-"],
      .hiw.is-revealed .hiw__title,
      .hiw.is-revealed .hiw__subtitle,
      .hiw.is-revealed .hiw__cta { animation: none; }
    }

    /* =====================================================================
       JIINUE LEARN — "Explore Courses". Editorial card grid.
       Each card has a media half (16:10, course banner with floating
       "Free" badge) and an info half (partner row, title, meta row).
       Hover plays a two-speed effect: shadow lifts in 300ms, image
       zooms 5% in 500ms — same gesture, two timing signals.
       ===================================================================== */
    .learn {
      position: relative;
      background: var(--page-bg);
      padding: clamp(64px, 8vw, 128px) var(--container-px);
    }
    .learn__container { max-width: 1280px; margin: 0 auto; }

    .learn__header { text-align: center; margin-bottom: clamp(48px, 6vw, 80px); }
    .learn__badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: rgba(105, 62, 254, 0.10);
      border: 1px solid rgba(105, 62, 254, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--brand-violet);
      margin-bottom: 18px;
    }
    .dark .learn__badge {
      background: rgba(105, 62, 254, 0.18);
      border-color: rgba(105, 62, 254, 0.3);
      color: var(--brand-lilac);
    }
    .learn__title {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.2vw, 3.25rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: var(--page-text);
      margin: 0 0 14px;
    }
    .learn__tagline {
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0 auto;
      max-width: 500px;
    }

    .learn__grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 32px;
    }
    @media (min-width: 640px)  { .learn__grid { grid-template-columns: repeat(2, 1fr); } }
    @media (min-width: 1024px) { .learn__grid { grid-template-columns: repeat(3, 1fr); } }

    .learn-card {
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 20px;
      overflow: hidden;
      transition: box-shadow .3s ease;
      cursor: default;
    }
    .learn-card:hover { box-shadow: 0 16px 40px -12px rgba(20, 3, 66, 0.16); }
    .dark .learn-card:hover { box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5); }

    .learn-card__media {
      position: relative;
      aspect-ratio: 16 / 10;
      overflow: hidden;
      background: linear-gradient(135deg, #3901FB, #693EFE);
      margin: 0;  /* reset <figure>'s default 40px browser margin */
    }
    .learn-card__photo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .5s ease;
    }
    .learn-card:hover .learn-card__photo { transform: scale(1.05); }
    .learn-card__price {
      position: absolute;
      top: 14px; right: 14px;
      background: #16A34A;
      color: #FFFFFF;
      padding: 5px 11px;
      border-radius: 999px;
      font-size: 11.5px;
      font-weight: 600;
      letter-spacing: 0.02em;
      box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
    }

    .learn-card__info {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }
    .learn-card__partner { display: flex; align-items: center; gap: 8px; }
    .learn-card__partner-mark { width: 20px; height: 20px; border-radius: 5px; flex: 0 0 auto; }
    .learn-card__partner-name {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 0.10em;
      text-transform: uppercase;
      color: var(--page-text-dim);
    }
    .learn-card__title {
      font-family: var(--font-display);
      font-size: clamp(1.05rem, 1.4vw, 1.2rem);
      font-weight: 400;
      letter-spacing: -0.005em;
      line-height: 1.3;
      color: var(--page-text);
      margin: 0;
    }
    .learn-card__meta {
      display: flex; gap: 18px;
      font-size: 13px;
      color: var(--page-text-dim);
    }
    .learn-card__meta-item { display: inline-flex; align-items: center; gap: 6px; }
    .learn-card__meta-icon {
      width: 16px; height: 16px;
      stroke: currentColor;
      fill: none;
      stroke-width: 1.7;
      stroke-linecap: round;
      stroke-linejoin: round;
      flex: 0 0 auto;
    }

    .learn__cta {
      display: flex;
      justify-content: center;
      margin-top: clamp(40px, 5vw, 64px);
    }
    .learn__cta .btn { width: 90%; }
    @media (min-width: 768px) { .learn__cta .btn { width: auto; } }

    .js .learn:not(.is-revealed) .learn__badge,
    .js .learn:not(.is-revealed) .learn__title,
    .js .learn:not(.is-revealed) .learn__tagline,
    .js .learn:not(.is-revealed) .learn-card,
    .js .learn:not(.is-revealed) .learn__cta { opacity: 0; }

    .learn.is-revealed .learn__badge   { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .20s both; }
    .learn.is-revealed .learn__title   { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .30s both; }
    .learn.is-revealed .learn__tagline { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .learn.is-revealed .learn-card:nth-of-type(1) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .30s both; }
    .learn.is-revealed .learn-card:nth-of-type(2) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .45s both; }
    .learn.is-revealed .learn-card:nth-of-type(3) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .60s both; }
    .learn.is-revealed .learn__cta { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .70s both; }

    @media (prefers-reduced-motion: reduce) {
      .js .learn:not(.is-revealed) .learn__badge,
      .js .learn:not(.is-revealed) .learn__title,
      .js .learn:not(.is-revealed) .learn__tagline,
      .js .learn:not(.is-revealed) .learn-card,
      .js .learn:not(.is-revealed) .learn__cta { opacity: 1; }
      .learn-card__photo { transition: none; }
    }

    /* =====================================================================
       EARNING WITH AVUNJA — bento panel. Tinted tray holding 1 large hero
       card + 4 illustrated satellites in an asymmetric magazine layout.
       Desktop: hero spans 2 cols of a 3-col grid + 1 satellite alongside
       + 3 satellites along the bottom. Tablet: hero full-width over 2x2.
       Mobile: everything stacked.
       ===================================================================== */
    :root { --earn-tray-bg-light: #F5F2FB; }
    .dark  { --earn-tray-bg-light: #14063e; }

    .earn {
      position: relative;
      padding: clamp(48px, 6vw, 96px) var(--container-px);
      background: var(--page-bg);
    }
    .earn__tray {
      max-width: 1280px;
      margin: 0 auto;
      /* Open style — no tinted tray, no border, no rounded panel */
    }
    .earn__bento {
      display: grid;
      gap: clamp(12px, 1.5vw, 20px);
      grid-template-columns: 1fr;
      grid-template-areas: "hero" "sat1" "sat2" "sat3" "sat4";
    }
    @media (min-width: 640px) {
      .earn__bento {
        grid-template-columns: repeat(2, 1fr);
        grid-template-areas: "hero hero" "sat1 sat2" "sat3 sat4";
      }
    }
    @media (min-width: 1024px) {
      .earn__bento {
        grid-template-columns: repeat(3, 1fr);
        grid-template-areas: "hero hero sat1" "sat2 sat3 sat4";
      }
    }
    .earn-hero    { grid-area: hero; }
    .earn-sat--1  { grid-area: sat1; }
    .earn-sat--2  { grid-area: sat2; }
    .earn-sat--3  { grid-area: sat3; }
    .earn-sat--4  { grid-area: sat4; }

    .earn-hero {
      position: relative;
      overflow: hidden;
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 20px;
      padding: clamp(28px, 4vw, 56px);
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      gap: clamp(14px, 1.5vw, 22px);
      min-height: clamp(280px, 32vw, 420px);
    }
    @media (min-width: 1024px) {
      .earn-hero { text-align: left; align-items: flex-start; }
    }
    .earn-hero__orb {
      position: absolute;
      top: -120px;
      right: -120px;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(105, 62, 254, 0.45) 0%, rgba(57, 1, 251, 0.25) 35%, transparent 70%);
      filter: blur(20px);
      pointer-events: none;
      z-index: 0;
    }
    .dark .earn-hero__orb {
      background: radial-gradient(circle, rgba(105, 62, 254, 0.6) 0%, rgba(57, 1, 251, 0.35) 35%, transparent 70%);
    }
    .earn-hero > * { position: relative; z-index: 1; }

    .earn-hero__badge {
      display: inline-flex;
      align-items: center;
      padding: 6px 14px;
      background: rgba(105, 62, 254, 0.10);
      border: 1px solid rgba(105, 62, 254, 0.18);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 500;
      color: var(--brand-violet);
      align-self: center;
    }
    @media (min-width: 1024px) { .earn-hero__badge { align-self: flex-start; } }
    .dark .earn-hero__badge {
      background: rgba(105, 62, 254, 0.22);
      border-color: rgba(105, 62, 254, 0.35);
      color: var(--brand-lilac);
    }
    .earn-hero__title {
      font-family: var(--font-display);
      font-size: clamp(1.85rem, 3.8vw, 3rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--page-text);
      margin: 0;
      max-width: 520px;
    }
    .earn-hero__tagline {
      font-size: clamp(15px, 1.2vw, 17px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0;
      max-width: 480px;
    }
    .earn-hero__cta { align-self: center; margin-top: 8px; }
    @media (min-width: 1024px) { .earn-hero__cta { align-self: flex-start; } }

    .earn-sat {
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 20px;
      padding: clamp(24px, 2.5vw, 32px);
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-height: 220px;
    }
    .earn-sat__title {
      font-family: var(--font-display);
      font-size: clamp(1.15rem, 1.5vw, 1.35rem);
      font-weight: 700;
      letter-spacing: -0.015em;
      line-height: 1.15;
      color: var(--page-text);
      margin: 0;
    }
    .earn-sat__desc {
      font-size: 14px;
      line-height: 1.5;
      color: var(--page-text-dim);
      margin: 0;
      flex: 1;
    }
    .earn-sat__link {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      font-size: 13px;
      font-weight: 500;
      color: var(--brand-violet);
      text-decoration: none;
      transition: opacity .15s ease;
    }
    .earn-sat__link:hover { opacity: 0.7; }
    .dark .earn-sat__link { color: var(--brand-lilac); }
    .earn-sat__art {
      display: block;
      width: 100%;
      max-height: 110px;
      margin-top: auto;
    }

    .js .earn:not(.is-revealed) .earn-hero,
    .js .earn:not(.is-revealed) .earn-hero__orb,
    .js .earn:not(.is-revealed) .earn-sat { opacity: 0; }
    .earn.is-revealed .earn-hero      { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .15s both; }
    .earn.is-revealed .earn-hero__orb { animation: offer-reveal 1.0s cubic-bezier(0.22, 1, 0.36, 1) .55s both; }
    .earn.is-revealed .earn-sat--1    { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .earn.is-revealed .earn-sat--2    { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .55s both; }
    .earn.is-revealed .earn-sat--3    { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .70s both; }
    .earn.is-revealed .earn-sat--4    { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .85s both; }

    @media (prefers-reduced-motion: reduce) {
      .js .earn:not(.is-revealed) .earn-hero,
      .js .earn:not(.is-revealed) .earn-hero__orb,
      .js .earn:not(.is-revealed) .earn-sat { opacity: 1; }
    }

    /* JSONONE-STYLE MINI-UI MOCKUPS for Earn satellite cards.
       Each card contains a small UI fragment that demonstrates the feature
       rather than an abstract illustration. */
    .earn-mini {
      background: var(--page-bg);
      border: 1px solid var(--page-border);
      border-radius: 12px;
      padding: 14px 16px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-top: auto;
      font-size: 13px;
      line-height: 1.3;
    }
    .dark .earn-mini { background: rgba(255, 255, 255, 0.03); }

    /* Sat 1 — signin mini */
    .earn-mini__field {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }
    .earn-mini__label {
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--page-text-dim);
    }
    .earn-mini__value {
      font-family: 'SF Mono', 'Menlo', monospace;
      font-size: 12px;
      color: var(--page-text);
    }
    .earn-mini__verified {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      align-self: flex-start;
      padding: 3px 8px;
      border-radius: 999px;
      background: rgba(22, 163, 74, 0.12);
      color: #16A34A;
      font-size: 11px;
      font-weight: 500;
    }
    .dark .earn-mini__verified { background: rgba(22, 163, 74, 0.22); color: #22C55E; }

    /* Sat 2 — commission mini */
    .earn-mini__head {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .earn-mini__amount {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 16px;
      color: #16A34A;
    }
    .dark .earn-mini__amount { color: #22C55E; }
    .earn-mini__time {
      font-size: 10.5px;
      color: var(--page-text-dim);
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }
    .earn-mini__sub {
      font-size: 12px;
      color: var(--page-text-dim);
    }

    /* Sat 3 — balance chart mini */
    .earn-mini__big {
      font-family: var(--font-display);
      font-weight: 700;
      font-size: 18px;
      color: var(--page-text);
      letter-spacing: -0.015em;
    }
    .earn-mini__bars {
      display: flex;
      align-items: flex-end;
      gap: 4px;
      height: 32px;
    }
    .earn-mini__bars span {
      flex: 1;
      background: var(--brand-violet);
      border-radius: 2px 2px 0 0;
      opacity: 0.85;
    }
    .earn-mini__delta {
      font-size: 11px;
      color: #16A34A;
      font-weight: 500;
    }
    .dark .earn-mini__delta { color: #22C55E; }

    /* Sat 4 — community mini */
    .earn-mini__row {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .earn-mini__avatar {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      flex: 0 0 auto;
    }
    .earn-mini__name {
      font-size: 12.5px;
      color: var(--page-text);
    }
    .earn-mini__name--dim {
      color: var(--page-text-dim);
      font-size: 11.5px;
    }

    /* =====================================================================
       HOW IT'S GOING — success stories. 1 hero case + 2 secondaries.
       Open style, no tray. Hover dims, zooms, surfaces a CTA.
       ===================================================================== */
    .stories {
      position: relative;
      background: var(--page-bg);
      padding: clamp(64px, 8vw, 128px) var(--container-px);
    }
    .stories__container { max-width: 1280px; margin: 0 auto; }
    .stories__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
    .stories__badge {
      display: inline-flex; align-items: center;
      padding: 6px 14px;
      background: rgba(105, 62, 254, 0.10);
      border: 1px solid rgba(105, 62, 254, 0.18);
      border-radius: 999px;
      font-size: 13px; font-weight: 500;
      color: var(--brand-violet);
      margin-bottom: 18px;
    }
    .dark .stories__badge { background: rgba(105, 62, 254, 0.22); border-color: rgba(105, 62, 254, 0.35); color: var(--brand-lilac); }
    .stories__title {
      font-family: var(--font-display);
      font-size: clamp(2.25rem, 4.2vw, 3.25rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.05;
      color: var(--page-text);
      margin: 0;
    }

    .story {
      position: relative;
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 24px;
      overflow: hidden;
      cursor: pointer;
      margin-bottom: clamp(16px, 2vw, 24px);
    }
    .story__media {
      position: relative;
      overflow: hidden;
      background: linear-gradient(135deg, var(--brand-blue), var(--brand-violet));
    }
    .story--hero .story__media { aspect-ratio: 16 / 7; }
    .story--mini .story__media { aspect-ratio: 4 / 5; }
    .story__photo {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform .6s ease;
    }
    .story:hover .story__photo { transform: scale(1.06); }
    .story__wash {
      position: absolute; inset: 0;
      background: rgba(20, 3, 66, 0);
      transition: background .35s ease;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .story--hero:hover .story__wash { background: rgba(20, 3, 66, 0.7); }
    .story--mini:hover .story__wash { background: rgba(20, 3, 66, 0.4); }
    .story__cta {
      opacity: 0;
      transform: translateY(8px);
      transition: opacity .35s ease, transform .35s ease;
      background: white;
      color: var(--page-text);
      padding: 12px 24px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      pointer-events: none;
    }
    .story:hover .story__cta { opacity: 1; transform: translateY(0); }

    .story__caption {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding: clamp(18px, 2vw, 24px) clamp(20px, 2.5vw, 28px);
      gap: 20px;
    }
    .story__name {
      font-family: var(--font-display);
      font-size: clamp(1rem, 1.4vw, 1.2rem);
      font-weight: 600;
      letter-spacing: -0.01em;
      color: var(--page-text);
    }
    .story__outcome {
      font-size: clamp(13px, 1vw, 14.5px);
      color: var(--page-text-dim);
      text-align: right;
    }

    .stories__grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(16px, 2vw, 24px);
    }
    @media (max-width: 640px) {
      .stories__grid { grid-template-columns: 1fr; }
    }

    .stories__cta-wrap {
      display: flex;
      justify-content: center;
      margin-top: clamp(32px, 4vw, 56px);
    }

    .js .stories:not(.is-revealed) .stories__badge,
    .js .stories:not(.is-revealed) .stories__title,
    .js .stories:not(.is-revealed) .story,
    .js .stories:not(.is-revealed) .stories__cta-wrap { opacity: 0; }
    .stories.is-revealed .stories__badge { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .15s both; }
    .stories.is-revealed .stories__title { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .25s both; }
    .stories.is-revealed .story--hero    { animation: offer-reveal .8s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .stories.is-revealed .story--mini:nth-of-type(1) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .60s both; }
    .stories.is-revealed .story--mini:nth-of-type(2) { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .75s both; }
    .stories.is-revealed .stories__cta-wrap { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .95s both; }

    @media (prefers-reduced-motion: reduce) {
      .js .stories:not(.is-revealed) * { opacity: 1; }
      .story__photo, .story__wash, .story__cta { transition: none; }
    }

    /* =====================================================================
       FAQ — accordion with mint-green/dark indicator
       ===================================================================== */
    .faq {
      position: relative;
      background: var(--page-bg);
      padding: clamp(64px, 8vw, 128px) var(--container-px);
    }
    .faq__container { max-width: 760px; margin: 0 auto; }
    .faq__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
    .faq__badge {
      display: inline-flex; align-items: center;
      padding: 6px 14px;
      background: rgba(105, 62, 254, 0.10);
      border: 1px solid rgba(105, 62, 254, 0.18);
      border-radius: 999px;
      font-size: 13px; font-weight: 500;
      color: var(--brand-violet);
      margin-bottom: 18px;
    }
    .dark .faq__badge { background: rgba(105, 62, 254, 0.22); border-color: rgba(105, 62, 254, 0.35); color: var(--brand-lilac); }
    .faq__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.8vw, 2.875rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--page-text);
      margin: 0 0 14px;
    }
    .faq__title em {
      font-style: normal;
      color: var(--brand-violet);
    }
    .dark .faq__title em { color: var(--brand-lilac); }
    .faq__tagline {
      font-size: clamp(14.5px, 1.15vw, 16px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0;
      max-width: 480px;
      margin: 0 auto;
    }
    .faq__list {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--page-surface);
      border: 1px solid var(--page-border);
      border-radius: 16px;
      overflow: hidden;
    }
    .faq-item__btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      padding: clamp(18px, 2vw, 22px) clamp(20px, 2.5vw, 26px);
      background: transparent;
      border: none;
      cursor: pointer;
      text-align: left;
      font-family: inherit;
      color: var(--page-text);
      font-size: clamp(14.5px, 1.15vw, 16px);
      font-weight: 500;
      line-height: 1.4;
    }
    .faq-item__indicator {
      flex: 0 0 auto;
      width: 32px; height: 32px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #D4F4DD;
      color: #14563A;
      transition: background-color .3s ease, color .3s ease, transform .3s ease;
    }
    .faq-item__indicator svg { width: 14px; height: 14px; transition: transform .3s ease; }
    .faq-item[aria-expanded="true"] .faq-item__indicator {
      background: var(--page-text);
      color: var(--page-bg);
    }
    .faq-item[aria-expanded="true"] .faq-item__indicator svg {
      transform: rotate(180deg);
    }
    .faq-item__answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows .35s ease;
    }
    .faq-item[aria-expanded="true"] .faq-item__answer {
      grid-template-rows: 1fr;
    }
    .faq-item__answer-inner {
      overflow: hidden;
    }
    .faq-item__answer-text {
      padding: 0 clamp(20px, 2.5vw, 26px) clamp(18px, 2vw, 22px);
      color: var(--page-text-dim);
      font-size: clamp(14px, 1.05vw, 15px);
      line-height: 1.55;
      margin: 0;
    }

    .js .faq:not(.is-revealed) .faq__badge,
    .js .faq:not(.is-revealed) .faq__title,
    .js .faq:not(.is-revealed) .faq__tagline,
    .js .faq:not(.is-revealed) .faq-item { opacity: 0; }
    .faq.is-revealed .faq__badge   { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .10s both; }
    .faq.is-revealed .faq__title   { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .20s both; }
    .faq.is-revealed .faq__tagline { animation: offer-reveal .7s cubic-bezier(0.22, 1, 0.36, 1) .30s both; }
    .faq.is-revealed .faq-item:nth-of-type(1) { animation: offer-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) .40s both; }
    .faq.is-revealed .faq-item:nth-of-type(2) { animation: offer-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) .50s both; }
    .faq.is-revealed .faq-item:nth-of-type(3) { animation: offer-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) .60s both; }
    .faq.is-revealed .faq-item:nth-of-type(4) { animation: offer-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) .70s both; }
    .faq.is-revealed .faq-item:nth-of-type(5) { animation: offer-reveal .6s cubic-bezier(0.22, 1, 0.36, 1) .80s both; }
    @media (prefers-reduced-motion: reduce) { .faq:not(.is-revealed) * { opacity: 1; } }

    /* =====================================================================
       NEWSLETTER — open two-column message + form. No tray, no chrome.
       ===================================================================== */
    .newsletter {
      position: relative;
      background: var(--page-bg);
      padding: clamp(64px, 8vw, 128px) var(--container-px);
    }
    .newsletter__container {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr;
      gap: clamp(32px, 5vw, 80px);
      align-items: center;
    }
    @media (min-width: 768px) {
      .newsletter__container { grid-template-columns: 1fr 1fr; }
    }
    .newsletter__title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 3.6vw, 2.875rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.05;
      color: var(--page-text);
      margin: 0 0 16px;
      text-align: center;
    }
    @media (min-width: 768px) { .newsletter__title { text-align: left; } }
    .newsletter__title em {
      font-style: normal;
      color: var(--brand-violet);
    }
    .dark .newsletter__title em { color: var(--brand-lilac); }
    .newsletter__tagline {
      font-size: clamp(14.5px, 1.15vw, 16px);
      line-height: 1.55;
      color: var(--page-text-dim);
      margin: 0;
      text-align: center;
    }
    @media (min-width: 768px) { .newsletter__tagline { text-align: left; } }

    .newsletter__form {
      display: flex;
      gap: 8px;
      margin-bottom: 16px;
    }
    .newsletter__input {
      flex: 1;
      padding: 14px 16px;
      border: 1px solid var(--page-border);
      border-radius: 8px;
      background: var(--page-surface);
      color: var(--page-text);
      font-family: inherit;
      font-size: 14.5px;
    }
    .newsletter__input::placeholder { color: var(--page-text-faint); }
    .newsletter__input:focus {
      outline: none;
      border-color: var(--brand-violet);
      box-shadow: 0 0 0 3px rgba(105, 62, 254, 0.18);
    }
    .newsletter__submit {
      white-space: nowrap;
    }
    .newsletter__checklist {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 20px;
      list-style: none;
      padding: 0;
      margin: 0;
      font-size: 13px;
      color: var(--page-text-dim);
    }
    .newsletter__check-item {
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }
    .newsletter__check-icon {
      width: 16px; height: 16px;
      flex: 0 0 auto;
      color: #16A34A;
    }
    .dark .newsletter__check-icon { color: #22C55E; }

    .js .newsletter:not(.is-revealed) > * { opacity: 0; }
    .newsletter.is-revealed .newsletter__container { animation: offer-reveal .8s cubic-bezier(0.22, 1, 0.36, 1) .15s both; }
    @media (prefers-reduced-motion: reduce) { .newsletter:not(.is-revealed) > * { opacity: 1; } }

