    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --purple: #7B5EA7;
      --purple-light: #9B7FCF;
      --purple-glow: rgba(123,94,167,0.35);
      --black: #000000;
      --dark: #0a0a0a;
      --card: #111111;
      --border: #222222;
      --text: #ffffff;
      --muted: #999999;
      --light-gray: #cccccc;
      --red: #e05a5a;
      --green: #5ad17a;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--black);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 60px;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--border);
    }
    .nav-logo img { height: 44px; }
    .nav-links { display: flex; gap: 32px; list-style: none; }
    .nav-links a { color: var(--light-gray); text-decoration: none; font-size: 14px; font-weight: 500; transition: color .2s; }
    .nav-links a:hover { color: var(--purple-light); }
    .nav-cta {
      background: var(--purple); color: #fff;
      padding: 10px 24px; border-radius: 6px;
      text-decoration: none; font-size: 14px; font-weight: 600;
      transition: background .2s, transform .2s;
    }
    .nav-cta:hover { background: var(--purple-light); transform: translateY(-1px); }

    /* ── HERO ── */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center;
      padding: 120px 40px 80px;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(123,94,167,0.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      border: 1px solid var(--purple); border-radius: 100px;
      padding: 6px 16px; font-size: 13px; color: var(--purple-light);
      margin-bottom: 28px; letter-spacing: .05em;
    }
    .hero-badge span { width: 7px; height: 7px; background: var(--purple-light); border-radius: 50%; display: block; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.3} }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 5rem);
      font-weight: 900; line-height: 1.08;
      letter-spacing: -.02em;
      margin-bottom: 24px;
    }
    .hero h1 em { font-style: normal; color: var(--purple-light); }
    .hero p {
      font-size: clamp(1rem, 2vw, 1.2rem);
      color: var(--muted); max-width: 640px; margin: 0 auto 40px;
    }
    .hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
    .btn-primary {
      background: var(--purple); color: #fff;
      padding: 15px 36px; border-radius: 8px;
      text-decoration: none; font-size: 15px; font-weight: 700;
      transition: all .2s; letter-spacing: .02em;
    }
    .btn-primary:hover { background: var(--purple-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--purple-glow); }
    .btn-outline {
      border: 1px solid #333; color: #fff;
      padding: 15px 36px; border-radius: 8px;
      text-decoration: none; font-size: 15px; font-weight: 600;
      transition: all .2s;
    }
    .btn-outline:hover { border-color: var(--purple); color: var(--purple-light); }

    /* ── TRUST BAR ── */
    .trust-bar {
      background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 20px 60px;
      display: flex; align-items: center; justify-content: center; gap: 60px;
      flex-wrap: wrap;
    }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: var(--muted); }
    .trust-item svg { color: var(--purple-light); flex-shrink: 0; }

    /* ── SECTION HEADERS ── */
    .section { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
    .section-label { font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--purple-light); font-weight: 600; margin-bottom: 14px; }
    .section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; letter-spacing: -.02em; margin-bottom: 16px; }
    .section-sub { color: var(--muted); font-size: 1.05rem; max-width: 620px; }
    .section-header { text-align: center; margin-bottom: 64px; }
    .section-header .section-sub { margin: 0 auto; }

    /* ── SHIFT / PROBLEM CARDS ── */
    #shift { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    #shift .inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
    .shift-lede { font-size: 1.15rem; color: var(--light-gray); max-width: 800px; margin-bottom: 48px; }
    .shift-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; margin-bottom: 56px; }
    .shift-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px; padding: 28px;
    }
    .shift-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--purple-light); }
    .shift-card p { font-size: 14px; color: var(--muted); }
    .incumbent-note {
      border: 1px solid var(--border); border-radius: 16px; padding: 28px 32px;
      color: var(--light-gray); font-size: 14.5px; background: #0d0d0d;
    }
    .incumbent-note strong { color: #fff; }

    /* ── COMPARISON (reuses product-card pattern) ── */
    #comparison { padding: 100px 40px; }
    .comparison-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(440px, 1fr)); gap: 32px; max-width: 1100px; margin: 0 auto; }
    .product-card {
      background: var(--card);
      border: 1px solid var(--border);
      border-radius: 20px;
      overflow: hidden;
      transition: transform .3s, box-shadow .3s, border-color .3s;
      display: flex; flex-direction: column;
    }
    .product-card:hover { transform: translateY(-6px); }
    .product-card.featured {
      border-color: var(--purple);
      box-shadow: 0 0 0 1px var(--purple), 0 0 40px var(--purple-glow);
    }
    .product-body { padding: 36px; flex: 1; display: flex; flex-direction: column; }
    .product-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 6px; }
    .product-tagline { color: var(--muted); font-size: 0.92rem; margin-bottom: 24px; }
    .feature-list { list-style: none; margin-bottom: 32px; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 9px 0; border-bottom: 1px solid #1a1a1a;
      font-size: 14px; color: var(--light-gray);
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list .x { color: var(--red); font-weight: 800; flex-shrink: 0; }
    .feature-list .check { color: var(--purple-light); font-weight: 800; flex-shrink: 0; }
    .product-cta {
      display: block; text-align: center;
      background: var(--purple); color: #fff;
      padding: 15px; border-radius: 10px;
      text-decoration: none; font-weight: 700; font-size: 15px;
      transition: background .2s, transform .2s;
      margin-top: auto;
    }
    .product-cta:hover { background: var(--purple-light); transform: translateY(-1px); }

    /* ── STAT HIGHLIGHT BAR ── */
    .stat-highlight-bar {
      display: flex; flex-wrap: wrap; justify-content: center; gap: 48px;
      background: var(--card); border: 1px solid var(--border); border-radius: 20px;
      padding: 36px 40px; margin: 0 auto 56px; max-width: 900px;
    }
    .stat-highlight { text-align: center; }
    .stat-highlight .num { font-size: 2.4rem; font-weight: 900; color: var(--purple-light); letter-spacing: -.02em; }
    .stat-highlight .label { font-size: 12.5px; color: var(--muted); margin-top: 4px; letter-spacing: .02em; }
    .stat-powered { text-align: center; font-size: 12px; color: #666; margin-top: -32px; margin-bottom: 56px; letter-spacing: .06em; text-transform: uppercase; }

    /* ── FEATURES / CAPABILITIES ── */
    #capabilities { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    #capabilities .inner { max-width: 1200px; margin: 0 auto; padding: 100px 40px; }
    .features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; margin-top: 64px; }
    .feature-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px;
      padding: 28px; transition: border-color .2s;
    }
    .feature-card:hover { border-color: var(--purple); }
    .feature-icon {
      width: 48px; height: 48px; border-radius: 12px;
      background: rgba(123,94,167,0.15);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
    }
    .feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
    .feature-card p { font-size: 13.5px; color: var(--muted); line-height: 1.65; }

    /* ── HOW IT WORKS (STEPS) ── */
    #how-it-works { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
    .steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 56px; position: relative; }
    .step-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px;
      padding: 28px; position: relative;
    }
    .step-num { font-size: 2.2rem; font-weight: 900; color: var(--purple-light); opacity: .45; margin-bottom: 10px; }
    .step-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
    .step-card p { font-size: 13.5px; color: var(--muted); }

    /* ── LEDGER TABLE ── */
    #ledger { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    #ledger .inner { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
    .ledger-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-top: 40px; }
    .ledger-table th {
      background: var(--card); color: var(--purple-light);
      padding: 14px 18px; text-align: left; font-weight: 700;
      border-bottom: 2px solid var(--purple); letter-spacing: .04em; font-size: 11.5px; text-transform: uppercase;
    }
    .ledger-table td { padding: 13px 18px; border-bottom: 1px solid var(--border); color: var(--light-gray); }
    .ledger-table tr:hover td { background: #111; }
    .ledger-table td.event { color: var(--purple-light); font-weight: 700; font-size: 12px; letter-spacing: .04em; }
    .ledger-table td.hash { font-family: 'SF Mono', Consolas, monospace; color: #666; font-size: 12px; }
    .ledger-note { margin-top: 20px; font-size: 13px; color: var(--muted); font-style: italic; }

    /* ── PROOF GRID ── */
    #proof { padding: 100px 40px; max-width: 1200px; margin: 0 auto; }
    .proof-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 24px; margin-top: 56px; }
    .proof-card {
      background: var(--card); border: 1px solid var(--border); border-radius: 16px;
      padding: 26px; text-align: center; transition: border-color .2s;
    }
    .proof-card:hover { border-color: var(--purple); }
    .proof-card .stat { font-size: 1.7rem; font-weight: 900; color: var(--purple-light); margin-bottom: 10px; letter-spacing: -.01em; }
    .proof-card h3 { font-size: 13.5px; font-weight: 700; margin-bottom: 6px; }
    .proof-card p { font-size: 12.5px; color: var(--muted); }

    /* ── CTA ── */
    .cta-section {
      text-align: center; padding: 120px 40px;
      background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(123,94,167,0.15) 0%, transparent 70%);
      border-top: 1px solid var(--border);
    }
    .cta-section h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 900; margin-bottom: 16px; }
    .cta-section p { color: var(--muted); font-size: 1.05rem; max-width: 540px; margin: 0 auto 40px; }
    .cta-contact { margin-top: 40px; font-size: 14px; color: var(--muted); }
    .cta-contact a { color: var(--purple-light); text-decoration: none; }
    .cta-quote { margin-top: 36px; font-size: 13px; color: #666; }

    /* ── FOOTER ── */
    footer {
      background: var(--card); border-top: 1px solid var(--border);
      padding: 40px 60px;
      display: flex; align-items: center; justify-content: space-between;
      flex-wrap: wrap; gap: 20px;
    }
    .footer-logo img { height: 36px; opacity: .8; }
    .footer-links { display: flex; gap: 24px; }
    .footer-links a { color: var(--muted); text-decoration: none; font-size: 13px; transition: color .2s; }
    .footer-links a:hover { color: var(--purple-light); }
    .footer-copy { font-size: 12px; color: #555; }

    @media (max-width: 768px) {
      nav { padding: 16px 24px; }
      .nav-links { display: none; }
      .trust-bar { gap: 24px; padding: 20px 24px; }
      .comparison-grid { grid-template-columns: 1fr; }
      .stat-highlight-bar { gap: 28px; padding: 28px; }
      footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
    }
