    :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(4, 1fr);
      gap: 14px;
    }

    .step {
      min-height: 260px;
      border: 1px solid var(--border);
      border-radius: 8px;
      background: var(--panel);
      padding: 18px;
      position: relative;
      overflow: hidden;
    }

    .step::before {
      content: attr(data-step);
      position: absolute;
      top: 14px;
      right: 16px;
      color: rgba(47, 244, 9,.28);
      font-weight: 950;
      font-size: 42px;
    }

    .step-visual {
      height: 116px;
      border: 1px solid var(--line);
      border-radius: 8px;
      background: rgba(47, 244, 9,.055);
      margin-bottom: 18px;
      display: grid;
      place-items: center;
      color: var(--lime);
      font-weight: 950;
      text-transform: uppercase;
      text-align: center;
      padding: 12px;
      position: relative;
      overflow: hidden;
    }

    .step-visual.scan::after {
      content: "";
      position: absolute;
      left: 15%;
      right: 15%;
      top: 50%;
      height: 2px;
      background: var(--lime);
      box-shadow: 0 0 20px var(--lime);
      animation: scan 2.6s infinite;
    }

    .step h3 {
      margin: 0 0 8px;
      font-size: 18px;
      text-transform: uppercase;
    }

    .step p {
      margin: 0;
      color: var(--muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .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 {
      height: 190px;
      background:
        linear-gradient(135deg, rgba(47, 244, 9,.16), transparent 42%),
        linear-gradient(180deg, #141414, var(--bg));
      border-bottom: 1px solid var(--border);
      display: grid;
      place-items: center;
      padding: 16px;
    }

    .fake-photo {
      width: 80%;
      height: 130px;
      background: #eeefe1;
      color: #20281e;
      border-radius: 6px;
      transform: rotate(-4deg);
      padding: 12px;
      box-shadow: 0 18px 35px rgba(0,0,0,.35);
      font-size: 10px;
      font-weight: 850;
      text-transform: uppercase;
    }

    .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: 38px 0 52px;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.55;
      border-top: 1px solid var(--border);
    }

    .disclaimer {
      border: 1px solid rgba(247, 201, 72, .28);
      background: rgba(247, 201, 72, .06);
      color: var(--amber);
      border-radius: 8px;
      padding: 14px;
      margin-top: 16px;
      font-size: 12px;
      line-height: 1.5;
    }

    @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; }
      .step { min-height: 220px; }
      .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 20px 34px;
      position: relative;
      z-index: 2;
      display: grid;
      place-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 {
      color: var(--lime);
      text-shadow: 0 0 38px rgba(47, 244, 9, .35), 0 4px 38px rgba(0,0,0,.65);
    }
    .hero-v3 h1 span { display: block; white-space: nowrap; }

    .hero-v3 .sub {
      max-width: 680px;
      margin: 0 auto 32px;
      font-size: clamp(16px, 1.4vw, 19px);
      font-weight: 700;
      line-height: 1.45;
      color: var(--soft);
      text-shadow: 0 2px 14px rgba(0,0,0,.6);
    }
    .hero-v3 .sub b { color: var(--lime); font-weight: 900; }

    .hero-v3 .btn-cinematic {
      display: inline-flex;
      align-items: center;
      gap: 14px;
      padding: 0 36px;
      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;
    }
    .hero-v3 .btn-cinematic .arrow {
      display: inline-grid;
      place-items: center;
      width: 32px; height: 32px;
      border-radius: 50%;
      background: rgba(6,16,6,.18);
    }

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

    /* Live activity section (V5) */

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

    .live-ticker {
      background: #050505;
      border-top: 1px solid var(--line-strong);
      border-bottom: 1px solid var(--line-strong);
      overflow: hidden;
      position: relative;
      padding: 12px 0;
      font-family: ui-monospace, "SFMono-Regular", Menlo, Consolas, monospace;
      font-size: 12px;
      letter-spacing: .04em;
      margin-bottom: 50px;
    }
    .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 60s 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: 12px 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 b { color: var(--lime); }

    @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) {
      .hero-v3 .stage { padding: 20px 16px 28px; }
      .hero-v3 h1 { font-size: clamp(40px, 12vw, 70px); }
      .hero-v3 h1 span { white-space: normal; }
      .hero-v3 .btn-cinematic { font-size: 14px; min-height: 60px; padding: 0 24px; width: 100%; }
      .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, #5cff22 0%, #2ff409 48%, #1ed302 100%);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .55),
        inset 0 -1px 0 rgba(0, 0, 0, .22),
        inset 0 0 0 1px rgba(255, 255, 255, .08),
        0 14px 34px rgba(0, 0, 0, .45),
        0 0 36px rgba(47, 244, 9, .38);
      color: #051705;
      text-shadow: 0 1px 0 rgba(255, 255, 255, .25);
      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, .22),
        inset 0 0 0 1px rgba(255, 255, 255, .1),
        0 22px 50px rgba(0, 0, 0, .55),
        0 0 60px rgba(47, 244, 9, .5);
    }

    @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.04);
      box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, .6),
        inset 0 -1px 0 rgba(0, 0, 0, .22),
        inset 0 0 0 1px rgba(255, 255, 255, .12),
        0 18px 44px rgba(0, 0, 0, .55),
        0 0 64px rgba(47, 244, 9, .6);
    }

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

    .btn.primary .arrow,
    .hero-v3 .btn-cinematic .arrow {
      background: rgba(6, 16, 6, .26);
      box-shadow:
        inset 0 0 0 1px rgba(0, 0, 0, .18),
        inset 0 1px 0 rgba(255, 255, 255, .18);
    }

    @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;
      }
    }
