    :root {
      --bg: #050505;
      --panel: #101010;
      --panel-2: #101010;
      --border: #1D1D1D;
      --line: rgba(47, 244, 9, 0.18);
      --line-strong: rgba(47, 244, 9, 0.45);
      --glow: rgba(47, 244, 9, 0.45);
      --lime: #2ff409;
      --lime-2: #6fff42;
      --white: #fbfff4;
      --muted: #aeb6a4;
      --soft: #e3ecd8;
      --amber: #F7C948;
      --danger: #FF3B30;
      --shadow: 0 0 40px rgba(47, 244, 9, 0.14);
      --radius: 8px;
      --max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      background:
        radial-gradient(circle at 72% 4%, rgba(47, 244, 9, 0.16), transparent 28rem),
        radial-gradient(circle at 16% 18%, rgba(47, 244, 9, 0.08), transparent 26rem),
        var(--bg);
      color: var(--white);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      letter-spacing: 0;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background-image:
        linear-gradient(rgba(47, 244, 9, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 244, 9, 0.03) 1px, transparent 1px);
      background-size: 48px 48px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 70%);
      z-index: -1;
    }

    a { color: inherit; text-decoration: none; }
    .wrap { width: min(var(--max), calc(100% - 40px)); margin: 0 auto; }
    .nav {
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      z-index: 20;
      background: transparent;
    }

    .nav-inner {
      height: 80px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
    }

    .brand {
      display: flex;
      align-items: center;
      line-height: 0;
    }

    .brand-logo {
      height: 75px;
      width: auto;
      display: block;
      object-fit: contain;
    }

    /* Legacy text-brand styles kept for backward compatibility */
    .brand .brand-name { color: var(--white); font-weight: 900; }
    .brand .brand-name .accent { color: var(--lime); }
    .brand .brand-tag {
      display: block;
      font-size: 10px;
      letter-spacing: .42em;
      color: var(--muted);
      margin-top: 4px;
      font-weight: 800;
    }

    .mark {
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      color: var(--lime);
    }

    .mark svg,
    .mark img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 22px;
      color: var(--white);
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .04em;
      white-space: nowrap;
    }

    .nav-links a:hover { color: var(--lime); }

    .nav-actions { display: flex; gap: 10px; align-items: center; }

    .cta-stack {
      display: inline-flex;
      flex-direction: column;
      align-items: stretch;
      gap: 5px;
    }

    .cta-stack .btn { min-height: 48px; padding: 0 22px; font-size: 13px; }
    .cta-stack .cta-sub {
      text-align: center;
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .1em;
      color: var(--muted);
      text-transform: uppercase;
      white-space: nowrap;
    }
    .btn {
      min-height: 46px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 9px;
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      padding: 0 18px;
      font-weight: 900;
      font-size: 13px;
      text-transform: uppercase;
      background: rgba(47, 244, 9, 0.08);
      color: var(--white);
      cursor: pointer;
    }

    .btn.primary {
      color: #061006;
      background: linear-gradient(135deg, var(--lime), var(--lime-2));
      border-color: transparent;
      box-shadow: 0 0 34px var(--glow);
    }

    .btn.primary:hover {
      background: var(--lime-2);
      box-shadow: 0 0 34px var(--glow);
    }

    .btn:not(.primary):not(.dark):hover {
      border-color: var(--line-strong);
      background: rgba(47, 244, 9, 0.12);
    }

    .btn.dark {
      background: var(--panel);
      border-color: var(--border);
      color: var(--soft);
    }

    .btn.dark:hover {
      border-color: var(--line);
      background: #141414;
    }

    .hero {
      position: relative;
      padding: 130px 0 72px;
      overflow: hidden;
      isolation: isolate;
      background-color: #060606;
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('../images/hero.png');
      background-size: cover;
      background-position: center 30%;
      background-repeat: no-repeat;
      z-index: -2;
    }

    .hero::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(5,5,5,0.82) 0%, rgba(5,5,5,0.55) 38%, rgba(5,5,5,0.18) 70%, rgba(5,5,5,0.55) 100%),
        linear-gradient(180deg, rgba(5,5,5,0.55) 0%, rgba(5,5,5,0) 22%, rgba(5,5,5,0) 60%, rgba(5,5,5,0.85) 100%);
      z-index: -1;
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(440px, 540px);
      gap: 28px;
      align-items: center;
      min-height: 540px;
      overflow: visible;
    }

    .hero-copy {
      position: relative;
      z-index: 4;
      min-width: 0;
    }

    h1 {
      margin: 0 0 22px;
      font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
      width: max-content;
      max-width: calc(100vw - 64px);
      font-size: clamp(46px, 6.6vw, 83px);
      line-height: .9;
      letter-spacing: .005em;
      text-transform: uppercase;
      font-style: italic;
      color: var(--white);
      text-shadow: 0 4px 28px rgba(0,0,0,.65);
    }

    h1 span {
      display: block;
      white-space: nowrap;
    }

    h1 .green {
      display: block;
      color: var(--lime);
      text-shadow: 0 0 26px rgba(47, 244, 9,.35), 0 4px 28px rgba(0,0,0,.55);
      white-space: nowrap;
    }

    .green { color: var(--lime); text-shadow: 0 0 22px rgba(47, 244, 9,.22); }

    .hero-tagline {
      margin: 0 0 18px;
      font-size: clamp(20px, 2.2vw, 26px);
      font-weight: 800;
      line-height: 1.18;
      color: var(--white);
      text-shadow: 0 2px 14px rgba(0,0,0,.6);
    }

    .hero-tagline span { display: block; }
    .hero-tagline .green { color: var(--lime); }

    .hero-desc {
      max-width: 480px;
      color: var(--soft);
      font-size: clamp(14px, 1.25vw, 16px);
      line-height: 1.5;
      margin: 0 0 26px;
      text-shadow: 0 1px 10px rgba(0,0,0,.55);
    }

    .hero-desc em {
      color: var(--lime);
      font-style: normal;
      font-weight: 700;
      white-space: nowrap;
    }

    .btn-hero {
      min-height: 60px;
      padding: 0 28px;
      font-size: 16px;
      letter-spacing: .04em;
      box-shadow: 0 0 44px var(--glow), 0 12px 32px rgba(0,0,0,.4);
    }

    .btn-hero .arrow {
      display: inline-grid;
      place-items: center;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgba(6, 16, 6, 0.18);
    }

    .trial-note {
      color: var(--muted);
      font-size: 11px;
      line-height: 1.4;
      margin: 14px 0 0;
      letter-spacing: .12em;
      font-weight: 800;
      text-transform: uppercase;
    }

    .visual-stage {
      position: relative;
      z-index: 1;
      min-height: 600px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone {
      position: relative;
      width: min(34vw, 240px);
      max-width: 100%;
      height: auto;
      border: 0;
      border-radius: 0;
      padding: 0;
      background: transparent;
      box-shadow: none;
      z-index: 3;
      display: block;
      overflow: visible;
    }

    .phone-screen {
      min-height: 530px;
      border-radius: 28px;
      background:
        radial-gradient(circle at 60% 0%, rgba(47, 244, 9,.12), transparent 60%),
        #0c0e0c;
      overflow: hidden;
      padding: 36px 14px 16px;
      color: var(--white);
    }

    .phone-status {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 9px;
      color: var(--muted);
      font-weight: 800;
      padding: 0 4px 8px;
    }

    .phone-status .battery {
      display: inline-block;
      width: 18px;
      height: 9px;
      border: 1px solid var(--muted);
      border-radius: 2px;
      position: relative;
    }

    .phone-status .battery::after {
      content: "";
      position: absolute;
      inset: 1px;
      width: 70%;
      background: var(--lime);
      border-radius: 1px;
    }

    .phone-brand {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 4px 0 8px;
      border-bottom: 1px solid rgba(255,255,255,.06);
      margin-bottom: 10px;
    }

    .phone-brand-mark {
      width: 22px;
      height: 22px;
      color: var(--lime);
    }

    .phone-brand-mark svg,
    .phone-brand-mark img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }
    .phone-brand-name {
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }
    .phone-brand-name .accent { color: var(--lime); }

    .phone-status-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 8px;
      border-radius: 6px;
      background: rgba(47, 244, 9,.1);
      border: 1px solid rgba(47, 244, 9,.22);
      color: var(--lime);
      font-size: 8.5px;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .phone-race {
      font-size: 10px;
      color: var(--muted);
      font-weight: 800;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 12px;
    }

    .phone-section-title {
      font-size: 9px;
      font-weight: 900;
      letter-spacing: .14em;
      color: var(--lime);
      text-transform: uppercase;
      margin: 12px 0 8px;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .phone-section-title::after {
      content: "";
      flex: 1;
      height: 1px;
      background: rgba(47, 244, 9,.2);
    }

    .phone-row {
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 6px 4px;
      font-size: 10px;
      border-bottom: 1px solid rgba(255,255,255,.04);
    }

    .phone-row .check {
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--lime);
      color: #061006;
      display: grid;
      place-items: center;
      font-size: 8px;
      font-weight: 950;
      flex: 0 0 auto;
    }

    .phone-row .label {
      flex: 1;
      color: var(--soft);
      font-weight: 700;
    }

    .phone-row .value {
      color: var(--lime);
      font-weight: 900;
      font-size: 9.5px;
    }

    .phone-row .num {
      width: 16px;
      height: 16px;
      border-radius: 4px;
      background: rgba(47, 244, 9,.16);
      color: var(--lime);
      display: grid;
      place-items: center;
      font-size: 9px;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .phone-row .tag {
      font-size: 8.5px;
      font-weight: 800;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: .04em;
    }

    .phone-footer {
      margin-top: 12px;
      padding: 8px;
      border-radius: 6px;
      background: rgba(47, 244, 9,.06);
      border: 1px solid rgba(47, 244, 9,.18);
      text-align: center;
      font-size: 9px;
      line-height: 1.4;
      color: var(--soft);
    }

    .phone-footer b { color: var(--lime); display: block; font-weight: 900; }



    .upload-callout {
      position: absolute;
      right: -10px;
      top: 56%;
      transform: translateY(-50%);
      writing-mode: vertical-rl;
      transform: translateY(-50%) rotate(180deg);
      color: var(--white);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .22em;
      text-transform: uppercase;
      text-align: center;
      line-height: 1.5;
      display: none;
    }

    .stats-strip {
      position: relative;
      padding: 22px 0;
      margin-top: -36px;
      z-index: 5;
    }

    .stats-strip .wrap {
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      padding: 20px 28px;
      background: rgba(8, 10, 8, 0.78);
      backdrop-filter: blur(14px);
      box-shadow: 0 18px 60px rgba(0,0,0,.55), 0 0 60px rgba(47, 244, 9,.08);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
      align-items: center;
    }

    .stat {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 0 8px;
      position: relative;
    }

    .stat + .stat::before {
      content: "";
      position: absolute;
      left: -6px;
      top: 8px;
      bottom: 8px;
      width: 1px;
      background: rgba(47, 244, 9, 0.15);
    }

    .stat-icon {
      width: 38px;
      height: 38px;
      flex: 0 0 auto;
      color: var(--lime);
      display: grid;
      place-items: center;
    }

    .stat-icon svg { width: 100%; height: 100%; display: block; }

    .stat-text { display: grid; gap: 2px; }
    .stat-text b {
      font-size: 22px;
      font-weight: 900;
      color: var(--white);
      line-height: 1;
      letter-spacing: 0;
    }

    .stat-text span {
      color: var(--muted);
      font-size: 12px;
      line-height: 1.35;
      font-weight: 600;
    }

    section { padding: 70px 0; }
    .section-head {
      max-width: 850px;
      margin-bottom: 30px;
    }

    .section-head.center { margin-inline: auto; text-align: center; }
    h2 {
      margin: 0 0 14px;
      font-size: clamp(34px, 5vw, 66px);
      line-height: .94;
      text-transform: uppercase;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
    }

    .proof-strip {
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: rgba(47, 244, 9,.04);
      padding: 22px 0;
    }

    .proof-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 12px;
    }

    .proof {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 18px;
      background: var(--panel);
    }

    .proof b {
      display: block;
      color: var(--lime);
      font-size: 24px;
      margin-bottom: 4px;
    }

    .proof span {
      display: block;
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 800;
      line-height: 1.35;
    }

    .split {
      display: grid;
      grid-template-columns: .92fr 1.08fr;
      gap: 36px;
      align-items: center;
    }

    .problem-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 28px;
      background: linear-gradient(180deg, rgba(47, 244, 9,.06), var(--panel));
    }

    .check-list {
      display: grid;
      gap: 12px;
      margin-top: 18px;
    }

    .check {
      display: flex;
      align-items: center;
      gap: 12px;
      color: var(--soft);
      font-weight: 750;
    }

    .mini-check {
      width: 22px;
      height: 22px;
      flex: 0 0 auto;
      display: grid;
      place-items: center;
      border-radius: 50%;
      color: #061006;
      background: var(--lime);
      font-size: 13px;
      font-weight: 950;
    }

    .program-panel {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--panel);
      overflow: hidden;
      box-shadow: var(--shadow);
    }

    .panel-top {
      display: flex;
      justify-content: space-between;
      border-bottom: 1px solid var(--border);
      padding: 14px 16px;
      color: var(--muted);
      font-size: 12px;
      text-transform: uppercase;
      font-weight: 900;
    }

    .program-body {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
    }

    .program-col {
      padding: 18px;
      min-height: 280px;
    }

    .program-col:first-child { border-right: 1px solid var(--border); }
    .tiny-table {
      display: grid;
      gap: 8px;
    }

    .tiny-row {
      display: grid;
      grid-template-columns: 30px 1fr 44px;
      gap: 8px;
      align-items: center;
      padding: 9px;
      border-radius: 6px;
      background: rgba(255,255,255,.04);
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
    }

    .tiny-row.hot {
      color: var(--white);
      background: rgba(47, 244, 9,.1);
      border: 1px solid var(--line);
    }

    .explain {
      display: grid;
      gap: 12px;
    }

    .explain-card {
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 13px;
      background: rgba(47, 244, 9,.055);
    }

    .explain-card b {
      display: block;
      color: var(--lime);
      margin-bottom: 5px;
      text-transform: uppercase;
      font-size: 12px;
    }

    .explain-card span {
      color: var(--soft);
      font-size: 13px;
      line-height: 1.45;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      max-width: 980px;
      margin-inline: auto;
    }

    .step {
      min-height: 0;
      border: 1px solid var(--border);
      border-radius: 12px;
      background: #060906;
      padding: 0;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      box-shadow: 0 6px 18px rgba(0, 0, 0, .3);
      transition: border-color .25s ease, transform .25s ease;
    }

    .step:hover {
      border-color: rgba(47, 244, 9, .35);
      transform: translateY(-2px);
    }

    .step-visual {
      width: 100%;
      aspect-ratio: 16 / 7;
      background-color: rgba(47, 244, 9, .055);
      background-size: cover;
      background-position: center;
      position: relative;
    }

    .step-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
        rgba(6, 9, 6, 0) 0%,
        rgba(6, 9, 6, 0) 38%,
        rgba(6, 9, 6, .55) 62%,
        rgba(6, 9, 6, .92) 84%,
        rgba(6, 9, 6, 1) 100%
      );
      pointer-events: none;
    }

    .step:nth-child(1) .step-visual { background-image: url('../images/how-step-01.webp'); }
    .step:nth-child(2) .step-visual { background-image: url('../images/how-step-02.webp'); }
    .step:nth-child(3) .step-visual { background-image: url('../images/how-step-03.webp'); }
    .step:nth-child(4) .step-visual { background-image: url('../images/how-step-04.webp'); }

    .step-content {
      padding: 14px 16px 16px;
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex: 1;
      position: relative;
    }

    .step h3 {
      margin: 0;
      font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
      font-style: italic;
      text-transform: uppercase;
      font-size: clamp(20px, 2.2vw, 26px);
      line-height: .96;
      letter-spacing: .005em;
      color: var(--white);
    }

    .step h3 .green {
      color: var(--lime);
      text-shadow: 0 0 14px rgba(47, 244, 9, .22);
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.42;
      font-weight: 500;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

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

    .example {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--panel);
      overflow: hidden;
    }

    .example-img {
      aspect-ratio: 2 / 1;
      background: #050805;
      border-bottom: 1px solid var(--border);
      overflow: hidden;
    }

    .example-img img {
      display: block;
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .example-content { padding: 18px; }
    .example-content h3 { margin: 0 0 8px; text-transform: uppercase; }
    .example-content p { margin: 0; color: var(--muted); line-height: 1.48; font-size: 14px; }

    .rating {
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      background:
        radial-gradient(circle at 20% 0%, rgba(47, 244, 9,.15), transparent 24rem),
        var(--panel);
      padding: 28px;
      box-shadow: var(--shadow);
      display: grid;
      grid-template-columns: 1fr 420px;
      gap: 30px;
      align-items: center;
    }

    .rating-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 18px;
      background: rgba(0,0,0,.28);
    }

    .rating-row {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      padding: 12px 0;
      border-top: 1px solid var(--border);
      color: var(--soft);
      font-size: 14px;
    }

    .choice {
      color: var(--lime);
      font-weight: 900;
    }

    .pricing {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 16px;
      align-items: stretch;
    }

    .pricing.pricing-single {
      grid-template-columns: minmax(0, 540px);
      justify-content: center;
    }

    .price-card {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--panel);
      padding: 26px;
    }

    .price-card.featured {
      border-color: var(--line-strong);
      box-shadow: var(--shadow);
      background:
        radial-gradient(circle at 50% 0%, rgba(47, 244, 9,.12), transparent 18rem),
        var(--panel);
    }

    .price {
      font-size: 52px;
      font-weight: 950;
      color: var(--lime);
      margin: 8px 0;
    }

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

    details {
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--panel);
      padding: 18px;
    }

    summary {
      cursor: pointer;
      font-weight: 900;
      text-transform: uppercase;
    }

    details p {
      color: var(--muted);
      line-height: 1.55;
      margin: 12px 0 0;
    }

    .final-cta {
      border: 1px solid var(--line-strong);
      border-radius: 8px;
      padding: 38px;
      text-align: center;
      background:
        radial-gradient(circle at 50% 0%, rgba(47, 244, 9,.16), transparent 28rem),
        var(--panel);
      box-shadow: var(--shadow);
    }

    .footer {
      padding: 32px 0 36px;
      border-top: 1px solid rgba(255, 255, 255, .05);
    }

    .footer .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      flex-wrap: wrap;
      margin-bottom: 18px;
      padding-bottom: 18px;
      border-bottom: 1px solid rgba(255, 255, 255, .04);
    }

    .footer .footer-brand {
      color: rgba(174, 182, 164, .55);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
    }

    .footer .footer-links {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer .footer-links a {
      color: rgba(174, 182, 164, .7);
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s ease;
    }

    .footer .footer-links a:hover {
      color: var(--lime);
    }

    .footer .footer-disclaimer {
      max-width: 1120px;
    }

    .footer .footer-disclaimer p {
      margin: 0 0 10px;
      color: rgba(174, 182, 164, .42);
      font-size: 10.5px;
      line-height: 1.55;
      font-weight: 400;
    }

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

    .footer .footer-disclaimer b {
      color: rgba(227, 236, 216, .7);
      font-weight: 700;
    }

    .footer .footer-disclaimer a {
      color: rgba(174, 182, 164, .85);
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-color: rgba(174, 182, 164, .3);
    }

    .footer .footer-disclaimer a:hover {
      color: var(--lime);
      text-decoration-color: var(--lime);
    }

    .disclaimer { display: none; }

    /* ============================================
       Legal pages (terms / privacy / contact)
       ============================================ */
    .legal-page {
      padding: 120px 0 70px;
      min-height: 60vh;
    }

    .legal-page .wrap {
      max-width: 820px;
    }

    .legal-page h1 {
      width: auto;
      max-width: 100%;
      font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
      font-style: italic;
      text-transform: uppercase;
      font-size: clamp(36px, 5.5vw, 64px);
      line-height: .94;
      letter-spacing: .005em;
      color: var(--white);
      margin: 0 0 12px;
      text-shadow: none;
    }

    .legal-page .legal-meta {
      color: var(--muted);
      font-size: 12px;
      letter-spacing: .12em;
      text-transform: uppercase;
      font-weight: 800;
      margin: 0 0 32px;
    }

    .legal-page h2 {
      font-family: Impact, "Arial Narrow", Inter, ui-sans-serif, system-ui, sans-serif;
      font-style: italic;
      text-transform: uppercase;
      font-size: clamp(22px, 2.4vw, 28px);
      line-height: 1.05;
      color: var(--white);
      margin: 36px 0 12px;
      letter-spacing: .005em;
    }

    .legal-page h2:first-of-type {
      margin-top: 0;
    }

    .legal-page p,
    .legal-page li {
      color: var(--soft);
      font-size: 15.5px;
      line-height: 1.65;
      font-weight: 400;
      margin: 0 0 14px;
    }

    .legal-page b,
    .legal-page strong {
      color: var(--white);
      font-weight: 700;
    }

    .legal-page ul,
    .legal-page ol {
      padding-left: 22px;
      margin: 0 0 18px;
    }

    .legal-page li {
      margin-bottom: 6px;
    }

    .legal-page a {
      color: var(--lime);
      text-decoration: underline;
      text-underline-offset: 2px;
      text-decoration-color: rgba(47, 244, 9, .35);
    }

    .legal-page a:hover {
      text-decoration-color: var(--lime);
    }

    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      text-decoration: none;
      margin-bottom: 24px;
      transition: color .2s ease;
    }

    .legal-back:hover {
      color: var(--lime);
    }

    .legal-page .contact-card {
      border: 1px solid var(--line-strong);
      border-radius: 12px;
      background: linear-gradient(180deg, rgba(47, 244, 9, .06), var(--panel));
      padding: 28px;
      margin: 24px 0 32px;
      box-shadow: var(--shadow);
    }

    .legal-page .contact-card .contact-label {
      color: var(--lime);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      margin: 0 0 8px;
    }

    .legal-page .contact-card .contact-email {
      display: inline-block;
      font-family: Impact, "Arial Narrow", Inter, sans-serif;
      font-style: italic;
      font-size: clamp(24px, 3.2vw, 36px);
      color: var(--white);
      text-decoration: none;
      letter-spacing: .005em;
      word-break: break-all;
    }

    .legal-page .contact-card .contact-email:hover {
      color: var(--lime);
    }

    .legal-page .contact-card p {
      margin: 12px 0 0;
      color: var(--muted);
      font-size: 14px;
    }

    @media (max-width: 640px) {
      .legal-page {
        padding: 90px 0 48px;
      }
      .legal-page p,
      .legal-page li {
        font-size: 14.5px;
        line-height: 1.6;
      }
      .legal-page .contact-card {
        padding: 22px;
      }
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); opacity: .8; }
      50% { transform: scale(1.45); opacity: 1; }
    }

    @keyframes scan {
      0% { transform: translateY(-52px); opacity: .1; }
      18% { opacity: 1; }
      85% { opacity: 1; }
      100% { transform: translateY(72px); opacity: .1; }
    }

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

    @media (max-width: 760px) {
      .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
      .stat + .stat::before { display: none; }
      .stats-strip { margin-top: 0; }
    }

    @media (max-width: 980px) {
      .hero { padding: 110px 0 60px; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; min-height: 0; }
      .split, .rating, .pricing { grid-template-columns: 1fr; }
      .visual-stage { min-height: 580px; }
      .proof-grid, .steps, .examples { grid-template-columns: repeat(2, 1fr); }
      .program-body { grid-template-columns: 1fr; }
      .program-col:first-child { border-right: 0; border-bottom: 1px solid var(--border); }
    }

    @media (max-width: 640px) {
      .wrap { width: min(100% - 24px, var(--max)); }
      .nav-inner { height: 70px; padding: 0; }
      .nav-actions .dark { display: none; }
      .cta-stack .btn { padding: 0 14px; font-size: 11px; }
      .cta-stack .cta-sub { font-size: 9px; }
      .brand .brand-tag { display: none; }
      .hero { padding: 100px 0 50px; }
      .hero-grid { gap: 28px; }
      .btn-hero { width: 100%; }
      .visual-stage {
        min-height: auto;
        gap: 18px;
      }
      .phone {
        width: min(100%, 280px);
      }
      .stats-grid { grid-template-columns: 1fr; gap: 14px; }
      .stat + .stat::before { display: none; }
      .proof-grid, .steps, .examples { grid-template-columns: 1fr; }
      .rating, .final-cta { padding: 22px; }
      h1 {
        width: 100%;
        max-width: 100%;
        font-size: clamp(34px, 11vw, 52px);
      }
      .hero-tagline { font-size: 18px; }
    }

    /* ============================================
       V3 OVERRIDES — Cinematic hero + live feed
       ============================================ */

    .hero-v3 {
      position: relative;
      padding: 0;
      overflow: hidden;
      isolation: isolate;
      background-color: #060606;
      min-height: auto;
    }
    .hero-v3::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: url('../images/hero.png');
      background-size: cover;
      background-position: center 32%;
      z-index: -2;
    }
    .hero-v3::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(ellipse at center 55%, rgba(5,5,5,0) 0%, rgba(5,5,5,.55) 55%, rgba(5,5,5,.92) 100%),
        linear-gradient(180deg, rgba(5,5,5,.75) 0%, rgba(5,5,5,.15) 22%, rgba(5,5,5,.25) 60%, rgba(5,5,5,1) 100%);
      z-index: -1;
      pointer-events: none;
    }

    .hero-v3 > .nav {
      position: relative;
      z-index: 5;
      background: transparent;
    }

    .hero-v3 .stage {
      text-align: center;
      padding: 36px 0 34px;
      position: relative;
      z-index: 2;
    }

    .hero-v3 .stage > .wrap {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .hero-v3 .eyebrow-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 8px 14px;
      border: 1px solid rgba(47, 244, 9, .35);
      border-radius: 999px;
      background: rgba(47, 244, 9, .06);
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--lime);
      margin-bottom: 22px;
    }
    .hero-v3 .eyebrow-pill .dot {
      width: 7px; height: 7px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 12px var(--glow);
      animation: pulse-dot 1.4s infinite ease-in-out;
    }
    @keyframes pulse-dot {
      0%, 100% { opacity: 1; transform: scale(1); }
      50% { opacity: .6; transform: scale(1.3); }
    }

    .hero-v3 h1 {
      width: auto;
      max-width: 100%;
      font-family: Impact, "Arial Narrow", Inter, sans-serif;
      font-style: italic;
      text-transform: uppercase;
      font-size: clamp(50px, 8.6vw, 124px);
      line-height: .88;
      letter-spacing: .005em;
      margin: 0 0 24px;
      text-shadow: 0 4px 38px rgba(0,0,0,.75);
      color: var(--white);
    }
    .hero-v3 h1 .green,
    .hero-v3 .hero-title-accent,
    .hero-v3 .hero-title-line-accent {
      color: var(--lime);
      text-shadow: 0 0 38px rgba(47, 244, 9, .35), 0 4px 38px rgba(0,0,0,.65);
    }
    .hero-v3 .hero-title-line { display: block; white-space: nowrap; }
    .hero-v3 .hero-title-accent { display: inline; white-space: inherit; }

    .hero-product-shot {
      width: 100%;
      max-width: 560px;
      margin: 4px auto 22px;
      background: transparent;
      border: 0;
      box-shadow: none;
    }

    .hero-product-shot picture {
      display: block;
      line-height: 0;
    }

    .hero-product-shot img {
      display: block;
      width: 100%;
      height: auto;
    }

    .hero-v3 .hero-dek {
      max-width: 640px;
      margin: -4px auto 22px;
      font-size: clamp(15px, 1.45vw, 18px);
      line-height: 1.45;
      color: var(--soft);
      font-weight: 500;
      text-shadow: 0 2px 12px rgba(0,0,0,.55);
    }

    .hero-v3 .hero-dek b {
      color: var(--white);
      font-weight: 800;
    }

    @media (max-width: 640px) {
      .hero-v3 .hero-dek {
        max-width: 100%;
        margin: 0 auto 16px;
        font-size: 14px;
        line-height: 1.42;
      }
    }

    .hero-v3 .btn-cinematic {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 0 40px;
      min-height: 70px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--lime), var(--lime-2));
      color: #061006;
      font-weight: 950;
      font-size: 18px;
      text-transform: uppercase;
      letter-spacing: .06em;
      box-shadow: 0 0 50px var(--glow), 0 16px 38px rgba(0,0,0,.5);
      cursor: pointer;
      text-decoration: none;
      text-align: center;
      line-height: 1;
    }

    .hero-v3 .btn-cinematic .btn-label {
      display: inline-block;
      min-width: 0;
      line-height: 1;
    }

    .hero-v3 .btn-cinematic .arrow {
      display: inline-grid;
      place-items: center;
      flex: 0 0 auto;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(6,16,6,.18);
      font-size: 1em;
      line-height: 1;
    }

    .hero-v3 .trust-line {
      margin-top: 20px;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.7;
    }

    .hero-v3 .trust-line .trust-line-flags {
      display: inline-block;
      margin-top: 4px;
      color: var(--soft);
    }

    /* Live activity section (V5) */

    .live-section {
      padding: 0 0 70px;
      position: relative;
    }

    .live-ticker {
      --ticker-duration: 60s;
      background: #050505;
      border: 1px solid var(--line-strong);
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      padding: 12px 0;
      font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
      font-size: 12px;
      letter-spacing: .04em;
      width: min(var(--max), calc(100% - 40px));
      margin: 0 auto 50px;
      box-shadow: 0 0 24px rgba(47, 244, 9, .1);
    }
    .live-ticker .live-tag {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 16px;
      background: var(--lime);
      color: #061006;
      font-weight: 900;
      letter-spacing: .14em;
      text-transform: uppercase;
      z-index: 2;
    }
    .live-ticker .live-tag::before {
      content: "";
      width: 7px; height: 7px;
      border-radius: 50%;
      background: #050505;
      animation: blink-dot 1s infinite;
    }
    @keyframes blink-dot {
      0%, 100% { opacity: 1; }
      50% { opacity: .3; }
    }
    .ticker-track {
      display: flex;
      gap: 60px;
      white-space: nowrap;
      animation: ticker-scroll var(--ticker-duration) linear infinite;
      padding-left: 110px;
    }
    .ticker-track span { color: var(--soft); }
    .ticker-track b { color: var(--white); font-weight: 900; }
    .ticker-track .win { color: var(--lime); font-weight: 900; }
    @keyframes ticker-scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .live-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 50px;
      align-items: stretch;
    }

    .live-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .live-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin: 22px 0 28px;
    }
    .live-stat {
      padding: 16px;
      background: rgba(47, 244, 9, .06);
      border: 1px solid rgba(47, 244, 9, .22);
      border-radius: 10px;
    }
    .live-stat b {
      display: block;
      font-family: Impact, sans-serif;
      font-style: italic;
      font-size: 28px;
      color: var(--lime);
      line-height: 1;
      margin-bottom: 4px;
    }
    .live-stat span {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: var(--muted);
      line-height: 1.3;
    }

    .feed {
      display: flex;
      flex-direction: column;
      background: var(--panel);
      border: 1px solid var(--border);
      border-radius: 14px;
      overflow: hidden;
      max-height: 560px;
    }
    .feed-head {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      display: flex;
      justify-content: space-between;
      align-items: center;
      background: #131313;
    }
    .feed-head .title {
      font-size: 11px;
      font-weight: 900;
      letter-spacing: .18em;
      text-transform: uppercase;
      color: var(--soft);
    }
    .feed-head .pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 4px 9px;
      border-radius: 999px;
      background: rgba(47, 244, 9, .1);
      border: 1px solid rgba(47, 244, 9, .3);
      color: var(--lime);
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .12em;
      text-transform: uppercase;
    }
    .feed-head .pill::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--lime);
      box-shadow: 0 0 6px var(--lime);
      animation: blink-dot 1s infinite;
    }
    .feed-body {
      flex: 1;
      overflow: hidden;
      position: relative;
    }
    .feed-list {
      display: flex;
      flex-direction: column;
      animation: feed-scroll 30s linear infinite;
    }
    @keyframes feed-scroll {
      0% { transform: translateY(0); }
      100% { transform: translateY(-50%); }
    }
    .feed-row {
      padding: 14px 18px;
      border-bottom: 1px solid var(--border);
      display: grid;
      grid-template-columns: 38px 1fr auto;
      gap: 14px;
      align-items: center;
    }
    .feed-row .flag {
      width: 38px; height: 26px;
      border-radius: 4px;
      background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
      display: grid;
      place-items: center;
      font-size: 10px;
      font-weight: 900;
      letter-spacing: .08em;
      color: var(--soft);
      border: 1px solid var(--border);
    }
    .feed-row .info { min-width: 0; }
    .feed-row .info b {
      display: block;
      font-size: 13px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 2px;
    }
    .feed-row .info span {
      font-size: 11.5px;
      color: var(--muted);
      font-weight: 700;
    }
    .feed-row .info .green { color: var(--lime); }
    .feed-row .amount { text-align: right; }
    .feed-row .amount b {
      display: block;
      font-family: Impact, sans-serif;
      font-style: italic;
      font-size: 19px;
      color: var(--lime);
      line-height: 1;
    }
    .feed-row .amount span {
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .feed-foot {
      padding: 10px 18px;
      background: #131313;
      border-top: 1px solid var(--border);
      text-align: center;
      font-size: 10.5px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--muted);
    }
    .feed-foot .green {
      color: var(--lime);
      animation: blink-dot 1.4s infinite;
      display: inline-block;
      transform: translateY(-1px);
      margin-right: 4px;
    }

    @media (max-width: 980px) {
      .live-grid { grid-template-columns: 1fr; gap: 30px; }
      .feed { max-height: 460px; }
      .live-stats { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 760px) {
      .live-stats { grid-template-columns: 1fr; }
    }

    /* ============================================
       Premium CTA upgrade — gleam + depth
       ============================================ */

    .btn.primary,
    .hero-v3 .btn-cinematic {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, .22);
      background:
        linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .55) 50%, transparent 70%)
          var(--shine-pos, 200%) 0 / 200% 100% no-repeat,
        linear-gradient(180deg, rgba(255, 255, 255, .28) 0%, rgba(255, 255, 255, 0) 55%)
          0 0 / 100% 100% no-repeat,
        linear-gradient(180deg, #2d22ff 0%, #0915f4 48%, #2a02d3 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .55),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255, 255, 255, .08),
        0 14px 34px rgba(0, 0, 0, .45),
        0 0 36px rgba(45, 34, 255, .42);
      color: #ffffff;
      text-shadow: 0 1px 1px rgba(0, 0, 0, .35);
      animation: cta-shine 3.6s ease-in-out infinite;
      transition: transform .18s ease, box-shadow .25s ease, filter .25s ease;
    }

    .hero-v3 .btn-cinematic {
      animation-duration: 4s;
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255, 255, 255, .1),
        0 22px 50px rgba(0, 0, 0, .55),
        0 0 60px rgba(45, 34, 255, .55);
    }

    @keyframes cta-shine {
      0%   { background-position: 220% 0, 0 0, 0 0; }
      55%  { background-position: -120% 0, 0 0, 0 0; }
      100% { background-position: -120% 0, 0 0, 0 0; }
    }

    .btn.primary:hover,
    .hero-v3 .btn-cinematic:hover {
      transform: translateY(-1px);
      filter: brightness(1.06);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(0, 0, 0, .35),
        inset 0 0 0 1px rgba(255, 255, 255, .14),
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 64px rgba(45, 34, 255, .7);
    }

    .btn.primary:active,
    .hero-v3 .btn-cinematic:active {
      transform: translateY(0);
      filter: brightness(.97);
    }

    .btn.primary .arrow,
    .hero-v3 .btn-cinematic .arrow {
      background: rgba(0, 0, 0, .28);
      color: #ffffff;
      box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, .18),
        inset 0 1px 0 rgba(255, 255, 255, .22);
    }

    @media (prefers-reduced-motion: reduce) {
      .btn.primary,
      .hero-v3 .btn-cinematic { animation: none; }
    }

    .app-showcase {
      padding: 42px 0 14px;
    }

    .app-showcase-frame {
      overflow: hidden;
    }

    .app-showcase img {
      display: block;
      width: 100%;
      height: auto;
    }

    @media (max-width: 760px) {
      .app-showcase {
        padding: 28px 0 6px;
      }
    }

    /* ============================================
       Mobile optimization pass
       ============================================ */

    html {
      overflow-x: hidden;
      scroll-padding-top: 14px;
    }

    body {
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      text-rendering: optimizeLegibility;
    }

    img,
    picture {
      max-width: 100%;
    }

    a:focus-visible,
    summary:focus-visible {
      outline: 2px solid var(--lime);
      outline-offset: 4px;
      border-radius: 6px;
    }

    .brand picture {
      display: block;
      line-height: 0;
    }

    .brand-logo {
      width: clamp(220px, 20vw, 290px);
      height: auto;
    }

    .nav-inner,
    .live-grid,
    .program-body,
    .rating,
    .pricing,
    .split,
    .steps,
    .examples {
      min-width: 0;
    }

    .live-copy-text {
      color: var(--muted);
      font-size: 17px;
      line-height: 1.5;
      margin: 0;
      max-width: 540px;
    }

    .live-copy-text b {
      color: var(--white);
      font-weight: 800;
    }

    .btn-fit {
      width: max-content;
    }

    .live-note {
      margin-top: 14px;
    }

    .price-eyebrow {
      color: var(--lime);
    }

    .price-period {
      color: var(--muted);
      font-size: 18px;
      font-weight: 800;
    }

    .pricing-action {
      margin: 24px 0 0;
    }

    .centered-note {
      margin-top: 12px;
      text-align: center;
    }

    .final-copy {
      margin-inline: auto;
    }

    .hero::before,
    .hero-v3::before {
      background-image: url('../images/hero-mobile.webp');
    }

    @media (min-width: 761px) {
      .hero::before,
      .hero-v3::before {
        background-image: url('../images/hero-1440.webp');
      }
    }

    @media (min-width: 1500px) {
      .hero::before,
      .hero-v3::before {
        background-image: url('../images/hero.png');
      }
    }

    @media (max-width: 860px) {
      .nav-inner {
        gap: 18px;
      }

      .brand-logo {
        width: clamp(214px, 31vw, 260px);
      }
    }

    @media (max-width: 640px) {
      .wrap {
        width: min(calc(100% - 24px), var(--max));
      }

      .brand-logo {
        width: clamp(180px, 44vw, 230px);
      }

      .cta-stack .btn {
        min-height: 44px;
        padding: 0 14px;
        font-size: 11px;
      }

      .cta-stack .cta-sub {
        display: none;
      }
    }

    @media (max-width: 560px) {
      .nav-inner {
        height: 72px;
        justify-content: center;
      }

      .nav-actions {
        display: none;
      }

      .brand-logo {
        width: clamp(176px, 56vw, 220px);
      }
    }

    @media (max-width: 760px) {
      section {
        padding: 48px 0;
      }

      h2 {
        font-size: clamp(28px, 7.7vw, 38px);
        line-height: .98;
      }

      .section-head {
        margin-bottom: 22px;
      }

      .section-head p,
      .subhead {
        font-size: 15.5px;
        line-height: 1.52;
      }

      .hero-v3::before {
        background-position: center top;
      }

      .hero-v3::after {
        background:
          radial-gradient(ellipse at center 42%, rgba(5,5,5,.08) 0%, rgba(5,5,5,.62) 58%, rgba(5,5,5,.96) 100%),
          linear-gradient(180deg, rgba(5,5,5,.78) 0%, rgba(5,5,5,.16) 28%, rgba(5,5,5,.5) 68%, rgba(5,5,5,1) 100%);
      }

      .hero-v3 .stage {
        padding: 18px 0 30px;
      }

      .hero-v3 .eyebrow-pill {
        max-width: 100%;
        margin-bottom: 18px;
        padding: 7px 12px;
        font-size: 9.5px;
        letter-spacing: .12em;
        white-space: nowrap;
      }

      .hero-v3 h1 {
        width: 100%;
        max-width: 100%;
        margin: 0 0 16px;
        padding-inline: 4px;
        font-size: clamp(33px, 9.35vw, 47px);
        line-height: .91;
      }

      .hero-v3 .hero-title-line {
        white-space: normal;
      }

      .hero-product-shot {
        max-width: 92%;
        margin: 0 auto 16px;
      }

      .hero-v3 .btn-cinematic {
        width: 100%;
        max-width: 350px;
        min-height: 66px;
        padding: 0 28px;
        font-size: 19px;
        letter-spacing: .05em;
      }

      .hero-v3 .btn-cinematic .arrow {
        width: 34px;
        height: 34px;
      }

      .hero-v3 .trust-line {
        max-width: 320px;
        margin: 14px auto 0;
        font-size: 9.5px;
        line-height: 1.45;
        letter-spacing: .1em;
      }

      .live-section {
        padding-bottom: 48px;
      }

      .live-ticker {
        --ticker-duration: 28s;
        width: min(calc(100% - 24px), var(--max));
        margin: 0 auto 34px;
        padding: 10px 0;
        font-size: 11px;
        border-radius: 8px;
      }

      .live-ticker .live-tag {
        padding: 0 12px;
        letter-spacing: .1em;
      }

      .ticker-track {
        gap: 38px;
        padding-left: 88px;
      }

      .live-grid {
        gap: 26px;
      }

      .live-copy h2 {
        width: 80vw;
        max-width: 100%;
      }

      .live-copy-text {
        max-width: none;
        font-size: 15.5px;
      }

      .live-stats {
        gap: 10px;
        margin: 18px 0 22px;
      }

      .live-stat {
        padding: 13px;
      }

      .live-stat b {
        font-size: 24px;
      }

      .btn-fit,
      .live-copy .btn-hero,
      .price-card .btn-hero,
      .final-cta .btn-hero {
        width: 100%;
      }

      .feed {
        max-height: 430px;
        border-radius: 10px;
      }

      .feed-head {
        padding: 12px 14px;
      }

      .feed-head .title {
        font-size: 10px;
        letter-spacing: .12em;
      }

      .feed-row {
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 10px 12px;
        padding: 12px 14px;
      }

      .feed-row .flag {
        width: 34px;
        height: 24px;
      }

      .feed-row .amount {
        grid-column: 2;
        text-align: left;
      }

      .feed-foot {
        padding: 11px 14px;
        font-size: 9px;
        letter-spacing: .08em;
      }

      .split,
      .program-body,
      .rating,
      .pricing {
        grid-template-columns: 1fr;
      }

      .problem-card,
      .price-card,
      .rating,
      .final-cta {
        padding: 22px;
      }

      .check {
        align-items: flex-start;
        line-height: 1.35;
      }

      .program-panel,
      .problem-card,
      .price-card,
      .rating,
      .final-cta,
      details {
        border-radius: 8px;
      }

      .panel-top {
        flex-direction: column;
        gap: 5px;
      }

      .program-col {
        min-height: 0;
        padding: 14px;
      }

      .tiny-row {
        grid-template-columns: 26px minmax(0, 1fr) 40px;
        padding: 9px 8px;
      }

      .tiny-row span,
      .feed-row .info b,
      .feed-row .info span {
        min-width: 0;
        overflow-wrap: anywhere;
      }

      .step {
        min-height: 0;
        border-radius: 10px;
      }

      .step-visual {
        aspect-ratio: 16 / 8;
      }

      .step-content {
        padding: 12px 14px 14px;
        gap: 4px;
      }

      .step h3 {
        font-size: 21px;
      }

      .step p {
        font-size: 12.5px;
        line-height: 1.4;
      }

      .rating-row {
        grid-template-columns: 1fr;
        gap: 6px;
      }

      .price {
        font-size: clamp(42px, 13vw, 52px);
      }

      .price-period {
        font-size: 16px;
      }

      .faq {
        gap: 8px;
      }

      details {
        padding: 16px;
      }

      summary {
        line-height: 1.28;
      }

      .footer {
        padding: 18px 0 24px;
      }
      .footer .footer-disclaimer {
        font-size: 9px;
        line-height: 1.45;
      }
    }

    @media (max-width: 380px) {
      h2 {
        font-size: 27px;
      }

      .hero-v3 h1 {
        width: 100%;
        font-size: clamp(28px, 8.8vw, 34px);
      }

      .hero-v3 .eyebrow-pill {
        font-size: 8.8px;
      }

      .hero-v3 .btn-cinematic {
        min-height: 62px;
        padding-inline: 22px;
        font-size: 17px;
      }

      .hero-v3 .btn-cinematic .arrow {
        width: 32px;
        height: 32px;
      }

      .hero-v3 .trust-line,
      .trial-note {
        letter-spacing: .08em;
      }

      .feed-head .pill {
        display: none;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      *,
      *::before,
      *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
      }

      .ticker-track,
      .feed-list,
      .hero-v3 .eyebrow-pill .dot,
      .live-ticker .live-tag::before,
      .feed-head .pill::before,
      .step-visual.scan::after {
        animation: none !important;
      }

      .ticker-track,
      .feed-list {
        transform: none !important;
      }
    }

/* ─────────────────────────────────────────────────────────
   HERO PROOF STACK (inline steps + testimonials below the CTA)
   ───────────────────────────────────────────────────────── */

/* Premium 3-step track: single rounded container with hairline connectors
   between numbered chips. Reads like a racing-lane progress indicator. */
.hero-step-pills {
  margin: 32px auto 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 9px 18px;
  border: 1px solid rgba(47, 244, 9, .22);
  border-radius: 999px;
  background: rgba(8, 14, 8, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .04),
    0 8px 28px rgba(0, 0, 0, .35);
  max-width: 100%;
}
.step-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  background: transparent;
  border: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  white-space: nowrap;
}
.step-pill .n {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #061006;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 11px;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12) inset, 0 0 14px rgba(47, 244, 9, .25);
}
.step-pill .label .short { display: none; }
.step-arrow {
  flex: 0 0 auto;
  width: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(47, 244, 9, .55), transparent);
}

/* Testimonials row (sits between live ticker and live grid) */
.testimonials-row {
  margin-top: -22px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 640px) {
  .testimonials-row {
    margin-top: -18px;
    margin-bottom: 28px;
  }
}

/* Testimonials strip — desktop: 3 cards side-by-side */
.hero-quotes {
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 920px;
  width: 100%;
}
.hero-quote {
  border: 1px solid rgba(47, 244, 9, .15);
  border-radius: 10px;
  background: rgba(10, 16, 10, .68);
  padding: 16px 18px;
  backdrop-filter: blur(8px);
}
.hero-quote p {
  margin: 0 0 10px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
  font-style: italic;
}
.hero-quote .meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.hero-quote .author {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aeb6a4;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 700;
  min-width: 0;
}
.hero-quote .author b {
  color: var(--soft);
  font-weight: 900;
}
.hero-quote .author .sep {
  color: rgba(174, 182, 164, .4);
  font-weight: 400;
}
.hero-quote .author .quote-flag {
  font-family: "Twemoji Mozilla", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 14px;
  line-height: 1;
  filter: saturate(.95);
}
.hero-quote .stars {
  color: var(--lime);
  font-size: 11px;
  letter-spacing: .12em;
  flex: 0 0 auto;
  white-space: nowrap;
}

/* Pagination dots: hidden until mobile */
.hero-quote-dots {
  display: none;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin: 10px auto 0;
}
.hero-quote-dots .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: rgba(47, 244, 9, .25);
  cursor: pointer;
  transition: background .25s ease, transform .25s ease, width .25s ease;
}
.hero-quote-dots .dot.is-active {
  background: var(--lime);
  width: 18px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(47, 244, 9, .5);
}

/* Country flag strip — sits under the trust line. Stays on ONE row at every
   viewport; the inline flag-fit script hides any flag that won't fit. */
.trust-flags {
  list-style: none;
  padding: 0;
  margin: 14px auto 0;
  max-width: 760px;
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.trust-flags .flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1;
  font-family: "Twemoji Mozilla", "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  filter: saturate(.9) brightness(.97);
  transition: transform .2s ease, filter .2s ease;
  cursor: default;
}

.trust-flags .flag:hover {
  transform: translateY(-2px);
  filter: saturate(1) brightness(1.05);
}

/* Windows fallback — when the platform can't render the flag emoji we swap to
   a small country-code chip via a class set by a tiny inline JS feature test. */
.no-flag-emoji .trust-flags .flag span { display: none; }
.no-flag-emoji .trust-flags .flag::after {
  content: attr(data-code);
  display: inline-block;
  padding: 4px 8px;
  border-radius: 5px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 1px solid var(--border);
  color: var(--soft);
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .08em;
}

@media (max-width: 640px) {
  .trust-flags {
    margin-top: 12px;
    gap: 10px;
  }
  .trust-flags .flag { font-size: 20px; }
}

/* ─── Tablet (<=760px): keep quotes 2-up, hide the third ─── */
@media (max-width: 760px) {
  .hero-step-pills { gap: 8px; padding: 8px 14px; margin-top: 28px; }
  .step-pill { font-size: 11.5px; }
  .step-arrow { width: 18px; }
  .hero-quotes { grid-template-columns: repeat(2, 1fr); }
  .hero-quote:nth-child(3) { display: none; }
}

/* ─── Mobile (<=640px): step pills compact (all 3 fit, no scroll).
       Testimonials become a single-card auto-rotating carousel with
       fade transition and pagination dots. ─── */
@media (max-width: 640px) {
  .hero-step-pills {
    margin-top: 22px;
    padding: 7px 12px;
    gap: 6px;
    flex-wrap: nowrap;
    max-width: 100%;
  }
  .step-pill {
    font-size: 10.5px;
    gap: 6px;
    letter-spacing: .08em;
  }
  .step-pill .n {
    width: 19px;
    height: 19px;
    font-size: 10px;
  }
  .step-pill .label .full { display: none; }
  .step-pill .label .short { display: inline; }
  .step-arrow { width: 14px; }

  .hero-proof-divider {
    margin-top: 22px;
    max-width: 280px;
  }

  /* Single-card auto-rotate stack — cards are absolutely overlaid and
     fade in/out. Container reserves space via the active card's height. */
  .hero-quotes {
    position: relative;
    display: block;
    grid-template-columns: none;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    max-width: 340px;
    min-height: 84px;
  }
  .hero-quote {
    position: absolute;
    inset: 0;
    padding: 9px 14px 10px;
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(3px);
    transition: opacity .45s ease, transform .45s ease, visibility .45s;
    pointer-events: none;
    display: block;
  }
  .hero-quote.is-active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
  }
  .hero-quote:nth-child(3) { display: block; }
  .hero-quote p {
    font-size: 12.5px;
    line-height: 1.32;
    margin: 0 0 4px;
  }
  .hero-quote .meta { gap: 6px; }
  .hero-quote .author { font-size: 9px; letter-spacing: .04em; gap: 4px; }
  .hero-quote .author .quote-flag { font-size: 12px; }
  .hero-quote .stars { font-size: 9px; letter-spacing: .1em; }

  .hero-quote-dots {
    display: inline-flex;
    gap: 6px;
    margin: 6px auto 0;
  }
  .hero-quote-dots .dot { width: 5px; height: 5px; }
  .hero-quote-dots .dot.is-active { width: 14px; }
}

@media (max-width: 380px) {
  .hero-step-pills { padding: 6px 10px; gap: 5px; }
  .step-pill { font-size: 10px; gap: 5px; }
  .step-pill .n { width: 17px; height: 17px; font-size: 9px; }
  .step-arrow { width: 10px; }
}
