    @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;
    }

    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: 600px; 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); }

    /* ── 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: 560px; }

    /* ── PRODUCTS ── */
    #products { padding: 100px 40px; }
    .products-header { text-align: center; margin-bottom: 64px; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(500px, 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);
      border-color: var(--purple);
      box-shadow: 0 20px 60px rgba(123,94,167,0.2);
    }
    .product-card.featured {
      border-color: var(--purple);
      box-shadow: 0 0 0 1px var(--purple), 0 0 40px var(--purple-glow);
    }
    .product-badge {
      background: var(--purple); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 0 0 8px 0; display: inline-block;
      position: absolute; top: 0; left: 0;
    }
    .product-img-wrap {
      position: relative;
      background: #0d0d0d;
      display: flex; align-items: center; justify-content: center;
      padding: 40px;
      min-height: 300px;
    }
    .product-img-wrap img { max-height: 260px; max-width: 100%; object-fit: contain; border-radius: 8px; }
    .product-gen {
      position: absolute; bottom: 14px; right: 16px;
      background: rgba(123,94,167,0.9); color: #fff;
      font-size: 11px; font-weight: 700; letter-spacing: .1em;
      padding: 4px 10px; border-radius: 4px;
    }
    .product-body { padding: 32px; flex: 1; display: flex; flex-direction: column; }
    .product-name { font-size: 1.6rem; font-weight: 800; margin-bottom: 6px; }
    .product-tagline { color: var(--muted); font-size: 0.9rem; margin-bottom: 24px; }
    .product-price {
      font-size: 2.6rem; font-weight: 900; color: var(--purple-light);
      margin-bottom: 6px; letter-spacing: -.02em;
    }
    .product-price sup { font-size: 1.2rem; vertical-align: super; }
    .product-price-note { font-size: 12px; color: var(--muted); margin-bottom: 28px; }

    .feature-list { list-style: none; margin-bottom: 32px; }
    .feature-list li {
      display: flex; align-items: flex-start; gap: 10px;
      padding: 8px 0; border-bottom: 1px solid #1a1a1a;
      font-size: 14px; color: var(--light-gray);
    }
    .feature-list li:last-child { border-bottom: none; }
    .feature-list li svg { flex-shrink: 0; margin-top: 2px; color: var(--purple-light); }

    .spec-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
    .spec-pill {
      background: #1a1a1a; border: 1px solid #2a2a2a;
      border-radius: 100px; padding: 5px 12px;
      font-size: 12px; color: var(--light-gray);
    }
    .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); }
    .product-cta.outline {
      background: transparent; border: 1px solid var(--purple); color: var(--purple-light);
    }
    .product-cta.outline:hover { background: var(--purple); color: #fff; }

    /* ── FEATURES ── */
    #features { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
    #features .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; }

    /* ── SPECS TABLE ── */
    #specs { max-width: 1100px; margin: 0 auto; padding: 100px 40px; }
    .specs-header { text-align: center; margin-bottom: 64px; }
    .specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
    .specs-table th {
      background: var(--card); color: var(--purple-light);
      padding: 16px 20px; text-align: left; font-weight: 700;
      border-bottom: 2px solid var(--purple); letter-spacing: .04em;
    }
    .specs-table td { padding: 14px 20px; border-bottom: 1px solid var(--border); color: var(--light-gray); }
    .specs-table tr:hover td { background: #111; }
    .specs-table td:first-child { color: var(--muted); font-weight: 500; width: 28%; }

    /* ── 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: 500px; 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; }

    /* ── 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; }
      .products-grid { grid-template-columns: 1fr; }
      footer { flex-direction: column; align-items: flex-start; padding: 32px 24px; }
    }
