  /* ==========================================================
     ELEVATE-STYLE SYSTEM
     Bold dark/light blocks, Sora display type, single lime accent
     ========================================================== */

  /* ---------- RESET & BASE ---------- */
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: var(--font-body);
    color: var(--color-ink);
    line-height: 1.55;
    background: var(--color-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }
  button { font-family: inherit; cursor: pointer; border: none; background: none; }
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    text-wrap: balance;
    letter-spacing: -0.02em;
  }
  svg.icon { flex-shrink: 0; vertical-align: -2px; }

  :root {
    /* ---- palette ---- */
    --color-bg: #ffffff;
    --color-bg-soft: #F4F4F1;
    --color-dark: #0D0D0D;
    --color-dark-2: #1A1A1A;
    --color-dark-border: rgba(255, 255, 255, 0.12);
    --color-ink: #101012;
    --color-muted: #68686d;
    --color-muted-on-dark: #a3a3a8;
    --color-border: #e7e7e3;
    --color-accent: #D7FF3C;
    --color-accent-ink: #10120a;
    --color-accent-soft: rgba(180, 230, 40, 0.14);
    --color-crimson: #ef4444;

    --font-display: 'Sora', 'Inter', ui-sans-serif, system-ui, sans-serif;
    --font-body: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;

    --radius-pill: 9999px;
    --radius-card: 24px;
    --radius-input: 14px;

    --shadow-soft: 0 10px 30px rgba(16, 16, 18, 0.06);
    --shadow-lg: 0 24px 60px rgba(16, 16, 18, 0.12);

    --ease: cubic-bezier(.4, 0, .2, 1);

    /* ---- back-compat aliases (existing markup references these) ---- */
    --primary: var(--color-ink);
    --primary-2: #2b2b2f;
    --accent: var(--color-accent);
    --accent-2: var(--color-accent);
    --bg-soft: var(--color-bg-soft);
    --bg-soft-2: var(--color-bg-soft);
    --text-muted: var(--color-muted);
    --text-faint: var(--color-muted);
    --border: var(--color-border);
    --border-strong: #d3d3cd;
    --shadow-sm: var(--shadow-soft);
    --shadow: var(--shadow-soft);
    --shadow-lg-alias: var(--shadow-lg);
    --radius-sm: var(--radius-input);
    --radius: var(--radius-card);
    --radius-lg: var(--radius-card);
    --focus-ring: 0 0 0 3px rgba(180, 230, 40, 0.4);
  }
  ::selection { background: var(--color-accent); color: var(--color-accent-ink); }
  :focus-visible {
    outline: 2px solid var(--color-ink);
    outline-offset: 2px;
    border-radius: 4px;
  }
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  }

  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
  }

  /* ---------- FLOATING PILL NAVIGATION ---------- */
  header {
    position: fixed;
    top: 16px;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: center;
    padding: 0 16px;
  }
  .nav-pill {
    pointer-events: auto;
    position: relative;
    width: 100%;
    max-width: 760px;
    display: flex;
    align-items: center;
    gap: 4px;
    background: var(--color-dark);
    border-radius: var(--radius-pill);
    box-shadow: var(--shadow-lg);
    padding: 8px 8px 8px 18px;
  }
  .logo {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    margin-right: 6px;
  }
  .logo-mark {
    width: 22px; height: 22px;
    background: var(--color-accent);
    border-radius: 7px;
    display: grid; place-items: center;
    color: var(--color-accent-ink); font-weight: 800; font-size: 12px;
    flex-shrink: 0;
  }
  .nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    flex: 1;
  }
  .nav-links a {
    display: inline-block;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted-on-dark);
    padding: 8px 14px;
    border-radius: var(--radius-pill);
    transition: color .15s var(--ease), background .15s var(--ease);
  }
  .nav-links a:hover { color: #ffffff; background: rgba(255,255,255,0.08); }
  .nav-cta {
    display: flex; gap: 6px; align-items: center;
  }
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 14px;
    transition: transform .15s var(--ease), box-shadow .15s var(--ease), background .15s var(--ease);
    white-space: nowrap;
  }
  .btn:active { transform: scale(.97); }
  .btn-primary,
  .btn-accent {
    background: var(--color-accent);
    color: var(--color-accent-ink);
  }
  .btn-primary:hover,
  .btn-accent:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(180, 230, 40, 0.35);
  }
  .btn-ghost {
    background: transparent;
    color: var(--color-muted-on-dark);
    font-weight: 500;
  }
  .btn-ghost:hover { color: #ffffff; }
  .btn-lg {
    padding: 14px 26px;
    font-size: 15px;
  }
  /* ghost buttons sitting on light backgrounds (outside the dark nav pill) */
  section .btn-ghost,
  .final-cta .btn-ghost {
    color: var(--color-ink);
    border: 1.5px solid var(--color-border);
  }
  section .btn-ghost:hover { background: var(--color-bg-soft); border-color: var(--border-strong); }
  .final-cta .btn-ghost { color: rgba(255,255,255,0.85); border-color: var(--color-dark-border); }
  .final-cta .btn-ghost:hover { background: rgba(255,255,255,0.08); }

  /* "How it works" hero CTA — explicit white outline on the dark hero */
  .hero .btn-ghost {
    color: #ffffff;
    background: transparent;
    border: 1.5px solid #ffffff;
  }
  .hero .btn-ghost:hover {
    background: #ffffff;
    color: #101012;
    border-color: #ffffff;
  }

  .burger {
    display: none;
    background: none;
    width: 34px; height: 34px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: var(--radius-pill);
  }
  .burger span {
    display: block;
    width: 16px;
    height: 1.5px;
    background: #ffffff;
    border-radius: 2px;
    transition: .25s;
  }

  /* ---------- HERO (dark) ---------- */
  .hero {
    position: relative;
    padding: 140px 0 80px;
    background: var(--color-dark);
    color: #ffffff;
    overflow: hidden;
  }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(600px 300px at 15% 15%, rgba(215,255,60,0.08), transparent 65%);
    pointer-events: none;
  }
  .hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 48px;
    align-items: center;
  }
  .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    background: rgba(255,255,255,0.06);
    border: 1px solid var(--color-dark-border);
    color: rgba(255,255,255,0.85);
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .hero-badge svg { color: var(--color-accent); }
  .hero h1 {
    font-size: clamp(36px, 5.4vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-bottom: 20px;
    color: #ffffff;
  }
  .hero h1 .grad { color: var(--color-accent); }
  .hero p.lead {
    font-size: 17px;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.68);
    max-width: 480px;
    margin-bottom: 32px;
    line-height: 1.6;
  }
  .hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 28px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
  }
  .hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .hero-trust .dot {
    width: 4px; height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
  }

  /* ---------- HERO VIDEO ---------- */
  .hero-video {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-dark-border);
    background: var(--color-dark-2);
    aspect-ratio: 1 / 1;
  }
  .hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* ---------- CALCULATOR CARD (bright screen against dark hero) ---------- */
  .calc {
    background: var(--color-bg);
    border-radius: var(--radius-card);
    padding: 28px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
    position: relative;
    z-index: 1;
  }
  .calc h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .calc .sub {
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 24px;
  }
  .field {
    margin-bottom: 16px;
  }
  .field label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-muted);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }
  .input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--color-bg-soft);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-input);
    transition: border-color .15s var(--ease), background .15s var(--ease);
  }
  .input-wrap:focus-within {
    border-color: var(--color-ink);
    background: var(--color-bg);
  }
  .input-wrap .prefix,
  .input-wrap .suffix {
    padding: 0 14px;
    font-weight: 700;
    color: var(--color-ink);
    user-select: none;
    display: flex;
    align-items: center;
  }
  .input-wrap input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 0;
    font-size: 16px;
    font-weight: 600;
    outline: none;
    color: var(--color-ink);
    width: 100%;
    font-variant-numeric: tabular-nums;
  }
  .input-wrap input::placeholder { color: var(--color-muted); font-weight: 500; }

  .calc-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--color-bg-soft);
    border-radius: var(--radius-input);
    margin: 8px 0 16px;
    font-size: 13px;
  }
  .calc-summary.highlight {
    background: var(--color-accent-soft);
  }
  .calc-summary .row {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 12px;
  }
  .calc-summary .label { color: var(--color-muted); }
  .calc-summary .value { font-weight: 700; color: var(--color-ink); font-variant-numeric: tabular-nums; }
  .calc-summary .savings {
    color: #6a8a12;
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }

  .calc .btn { width: 100%; }

  /* ---------- STATS STRIP ---------- */
  .stats {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 48px 0;
  }
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  .stat { text-align: center; }
  .stat-num {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 36px);
    font-weight: 700;
    color: var(--color-ink);
    letter-spacing: -0.02em;
  }
  .stat-label {
    font-size: 13px;
    color: var(--color-muted);
    margin-top: 6px;
  }

  /* ---------- SECTIONS ---------- */
  section { padding: 96px 0; }
  .section-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 56px;
  }
  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 16px;
  }
  .eyebrow-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    border-radius: 7px;
    background: var(--color-accent);
    color: var(--color-accent-ink);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0;
  }
  .section-head h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--color-ink);
  }
  .section-head p {
    font-size: 17px;
    font-family: var(--font-body);
    color: var(--color-muted);
  }

  /* ---------- HOW IT WORKS ---------- */
  .steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: center;
    gap: 8px;
  }
  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    flex-shrink: 0;
  }
  .step-arrow svg { width: 100%; height: auto; overflow: visible; }
  .step-arrow .arrow-flow {
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4 6;
    animation: stepArrowFlow 1.6s linear infinite;
  }
  .step-arrow .arrow-head {
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
  }
  @keyframes stepArrowFlow {
    to { stroke-dashoffset: -20; }
  }
  .step {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  }
  .step:hover {
    transform: translateY(-3px);
    border-color: var(--border-strong);
    box-shadow: var(--shadow-soft);
  }
  .step-num {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--color-accent);
    color: var(--color-accent-ink);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 16px;
    display: grid; place-items: center;
    margin-bottom: 18px;
  }
  .step h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
  .step p { color: var(--color-muted); font-family: var(--font-body); font-size: 14px; }

  /* ---------- FEATURES ---------- */
  .features { background: var(--color-bg-soft); }
  .feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .feat {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    display: flex;
    gap: 18px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .feat:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  .feat-icon {
    flex-shrink: 0;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--color-accent-soft);
    display: grid; place-items: center;
    color: var(--color-ink);
  }
  .feat h3 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
  .feat p { color: var(--color-muted); font-family: var(--font-body); font-size: 14px; }

  /* ---------- AUDIENCE ---------- */
  .audience { background: var(--color-bg); }
  .aud-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }
  .aud-card {
    text-align: center;
    padding: 28px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    background: var(--color-bg);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .aud-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  .aud-emoji {
    width: 44px;
    height: 44px;
    margin: 0 auto 16px;
    border-radius: 12px;
    background: var(--color-accent-soft);
    display: grid;
    place-items: center;
    color: var(--color-ink);
  }
  .aud-card h3 { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
  .aud-card p { color: var(--color-muted); font-family: var(--font-body); font-size: 13px; }

  /* ---------- TRUST (dark) ---------- */
  .trust { background: var(--color-dark); color: #ffffff; }
  .trust .eyebrow { color: rgba(255,255,255,0.5); }
  .trust .section-head h2 { color: #ffffff; }
  .trust .section-head p { color: rgba(255,255,255,0.62); }
  .trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 40px;
  }
  .trust-card {
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-card);
    padding: 26px;
    transition: transform .2s var(--ease), border-color .2s var(--ease);
  }
  .trust-card:hover {
    transform: translateY(-3px);
    border-color: rgba(215,255,60,0.35);
  }
  .trust-card h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .trust-card p {
    color: rgba(255,255,255,0.65);
    font-family: var(--font-body);
    font-size: 14px;
  }
  .trust-showcase {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 32px;
    align-items: center;
    max-width: 980px;
    margin: 0 auto;
  }
  .trust-image {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
  }
  .trust-image img {
    width: 100%;
    max-width: 380px;
    height: auto;
    display: block;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.45));
  }
  .testimonial {
    background: var(--color-dark-2);
    border: 1px solid var(--color-dark-border);
    border-radius: var(--radius-card);
    padding: 36px;
    text-align: center;
  }
  .avatar-row {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .avatar-row .avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--color-dark);
    border: 2px solid var(--color-dark-2);
    color: var(--color-accent);
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    display: grid;
    place-items: center;
    margin-left: -10px;
  }
  .avatar-row .avatar:first-child { margin-left: 0; }
  .testimonial .stars { display: flex; justify-content: center; gap: 3px; color: var(--color-accent); margin-bottom: 14px; }
  .testimonial blockquote {
    font-size: 19px;
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 16px;
    color: #ffffff;
  }
  .testimonial cite {
    font-style: normal;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.55);
    font-size: 13px;
  }

  /* ---------- PRICING ---------- */
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 1020px;
    margin: 0 auto;
  }
  .price-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
    background: var(--color-bg);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease);
  }
  .price-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft);
  }
  .price-card.featured {
    border: 2px solid var(--color-accent);
    position: relative;
    background: var(--color-accent-soft);
  }
  .price-card.featured::before {
    content: "Most Popular";
    position: absolute;
    top: -13px; left: 50%;
    transform: translateX(-50%);
    background: var(--color-accent);
    color: var(--color-accent-ink);
    font-size: 11px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
  }
  .price-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 6px; }
  .price-card .price {
    font-family: var(--font-display);
    font-size: 38px;
    font-weight: 700;
    margin: 14px 0 4px;
    letter-spacing: -0.02em;
    font-variant-numeric: tabular-nums;
  }
  .price-card .price small {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--color-muted);
  }
  .price-card ul {
    list-style: none;
    margin: 20px 0;
    font-family: var(--font-body);
  }
  .price-card li {
    padding: 7px 0;
    font-size: 14px;
    color: var(--color-muted);
    display: flex;
    align-items: flex-start;
    gap: 10px;
  }
  .price-card li::before {
    content: "✓";
    color: var(--color-ink);
    font-weight: 800;
    flex-shrink: 0;
  }

  /* ---------- FAQ ---------- */
  .faq { background: var(--color-bg-soft); }
  .faq-list {
    max-width: 760px;
    margin: 0 auto;
  }
  .faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    margin-bottom: 10px;
    overflow: hidden;
    transition: border-color .15s var(--ease);
  }
  .faq-item.open { border-color: var(--color-accent); }
  .faq-q {
    width: 100%;
    background: none;
    padding: 20px 24px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    color: var(--color-ink);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
  }
  .faq-q .icon {
    flex-shrink: 0;
    width: 26px; height: 26px;
    border-radius: 50%;
    background: var(--color-bg-soft);
    display: grid; place-items: center;
    transition: transform .3s var(--ease), background .15s var(--ease);
    font-size: 16px;
    color: var(--color-ink);
  }
  .faq-item.open .faq-q .icon {
    transform: rotate(45deg);
    background: var(--color-accent);
    color: var(--color-accent-ink);
  }
  .faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
  }
  .faq-a-inner {
    padding: 0 24px 20px;
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.7;
  }

  /* ---------- FINAL CTA (dark, full-bleed) ---------- */
  .final-cta {
    background: var(--color-dark);
    color: #ffffff;
    text-align: center;
    padding: 96px 0;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(700px 350px at 50% 0%, rgba(215,255,60,0.10), transparent 65%);
    pointer-events: none;
  }
  .final-cta-card {
    position: relative;
    z-index: 1;
    max-width: 640px;
    margin: 0 auto;
  }

  /* ---------- CTA ILLUSTRATION (transfer flow) ---------- */
  .cta-illustration {
    max-width: 460px;
    margin: 0 auto 32px;
  }
  .cta-illustration svg {
    width: 100%;
    height: auto;
    overflow: visible;
  }
  .cta-card rect:first-child {
    fill: var(--color-dark-2);
    stroke: var(--color-dark-border);
    stroke-width: 1.5;
  }
  .cta-card .cta-chip {
    fill: none;
    stroke: rgba(255,255,255,0.35);
    stroke-width: 1.5;
  }
  .cta-card line {
    stroke: rgba(255,255,255,0.25);
    stroke-width: 2;
    stroke-linecap: round;
  }
  .cta-card-b rect:first-child {
    stroke: rgba(215,255,60,0.4);
  }
  .cta-flow {
    stroke: var(--color-accent);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 4 8;
    opacity: .8;
    animation: ctaFlow 3.5s linear infinite;
  }
  @keyframes ctaFlow {
    to { stroke-dashoffset: -120; }
  }
  .cta-coin circle {
    fill: var(--color-accent);
    animation: ctaCoinPulse 2.4s var(--ease) infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
  .cta-coin text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    fill: var(--color-accent-ink);
    animation: ctaCoinPulse 2.4s var(--ease) infinite;
    transform-box: fill-box;
    transform-origin: center;
  }
  @keyframes ctaCoinPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
  }
  .cta-badge rect {
    fill: rgba(255,255,255,0.06);
    stroke: var(--color-dark-border);
    stroke-width: 1.5;
  }
  .cta-badge-icon { color: var(--color-accent); }
  .cta-badge text {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    fill: #ffffff;
  }
  @media (max-width: 560px) {
    .cta-illustration { max-width: 320px; }
  }
  .final-cta h2 {
    font-size: clamp(28px, 3.6vw, 44px);
    line-height: 1.12;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
    font-weight: 600;
    color: #ffffff;
  }
  .final-cta p {
    font-size: 17px;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.65);
    margin-bottom: 28px;
    max-width: 460px;
    margin-left: auto;
    margin-right: auto;
  }

  /* ---------- CONTACT ---------- */
  .contact {
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
  }
  .contact-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
  }
  .contact-bg svg { width: 100%; height: 100%; }
  .contact-ring {
    fill: none;
    stroke: var(--color-border);
    stroke-width: 1.5;
  }
  .contact-ring-pulse {
    stroke: var(--color-accent);
    opacity: .5;
    transform-box: fill-box;
    transform-origin: center;
    animation: contactRingPulse 3.6s var(--ease) infinite;
  }
  @keyframes contactRingPulse {
    0%   { transform: scale(1); opacity: .5; }
    70%  { transform: scale(1.08); opacity: 0; }
    100% { transform: scale(1.08); opacity: 0; }
  }
  .contact-dots circle {
    fill: var(--color-border);
  }
  .contact > .container {
    position: relative;
    z-index: 1;
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
    align-items: start;
  }
  .contact-info h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .contact-tiles {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 16px;
    padding: 18px;
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
  }
  .contact-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft);
    border-color: var(--border-strong);
  }
  .contact-item .c-icon {
    flex-shrink: 0;
    width: 36px; height: 36px;
    border-radius: 10px;
    background: var(--color-accent-soft);
    display: grid; place-items: center;
    color: var(--color-ink);
  }
  .contact-item .c-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--color-muted);
    margin-bottom: 4px;
  }
  .contact-item .c-value {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 500;
    color: var(--color-ink);
    line-height: 1.5;
  }
  .contact-item a.c-value:hover { color: var(--color-muted); }
  .contact-form {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-card);
    padding: 28px;
  }
  .contact-form .input-wrap:has(input:invalid:not(:placeholder-shown)) {
    border-color: var(--color-crimson);
  }
  .contact-form h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .contact-form .sub {
    color: var(--color-muted);
    font-family: var(--font-body);
    font-size: 14px;
    margin-bottom: 24px;
  }
  .contact-form textarea {
    flex: 1;
    border: none;
    background: transparent;
    padding: 12px 14px;
    font-size: 14px;
    font-family: var(--font-body);
    outline: none;
    color: var(--color-ink);
    width: 100%;
    resize: vertical;
    min-height: 110px;
  }
  .contact-form textarea::placeholder { color: var(--color-muted); }
  .contact-form .input-wrap input {
    padding: 12px 14px;
    font-size: 14px;
    font-weight: 400;
  }
  .form-msg {
    margin-top: 16px;
    font-size: 14px;
    font-weight: 600;
    color: #6a8a12;
    display: none;
  }
  .form-msg.visible { display: block; }

  /* ---------- FOOTER (dark) ---------- */
  footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.55);
    padding: 64px 0 28px;
    font-size: 14px;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
    margin-bottom: 40px;
  }
  footer h4 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
  }
  footer ul { list-style: none; }
  footer li { margin-bottom: 10px; }
  footer a { color: rgba(255,255,255,0.55); }
  footer a:hover { color: var(--color-accent); }
  .footer-brand .logo { color: #ffffff; }
  .footer-brand p {
    margin-top: 12px;
    max-width: 320px;
    line-height: 1.6;
    font-family: var(--font-body);
    color: rgba(255,255,255,0.5);
  }
  .footer-bottom {
    border-top: 1px solid var(--color-dark-border);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
  }

  /* ---------- REVEAL ---------- */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ---------- RESPONSIVE ---------- */
  @media (max-width: 960px) {
    .hero-grid { grid-template-columns: 1fr; gap: 32px; }
    .steps { grid-template-columns: 1fr; }
    .step-arrow { width: 100%; padding: 4px 0; }
    .step-arrow svg { width: 24px; margin: 0 auto; transform: rotate(90deg); }
    .feat-grid { grid-template-columns: 1fr; }
    .aud-grid { grid-template-columns: repeat(2, 1fr); }
    .trust-grid { grid-template-columns: 1fr; }
    .trust-showcase { grid-template-columns: 1fr; }
    .trust-image img { max-width: 260px; margin: 0 auto; }
    .pricing-grid { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 720px) {
    section { padding: 56px 0; }
    .hero { padding: 120px 0 56px; }
    .nav-links { display: none; }
    .nav-links.open {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      position: absolute;
      top: calc(100% + 8px); left: 0; right: 0;
      background: var(--color-dark);
      padding: 8px;
      gap: 2px;
      border-radius: var(--radius-card);
      box-shadow: var(--shadow-lg);
    }
    .nav-links.open a { padding: 12px 14px; }
    .burger { display: flex; flex-shrink: 0; }
    .nav-cta { flex: 1; justify-content: center; }
    .nav-cta .btn-ghost { display: none; }
    .aud-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .calc { padding: 22px; }
    .contact-info, .contact-form { padding: 20px; }
  }
