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

    :root {
  --bg:        #F4F1EB;
  --bg2:       #F1EADF;
  --surface:   #FCFAF7;
  --surface2:  #E8DFD2;
  --border:    rgba(43, 36, 28, .06);
  --border2:   rgba(43, 36, 28, .10);
  --gold:      #AD7742;
  --gold-dim:  rgba(173, 119, 66, .12);
  --gold-text: #956534;
  --gold-pale: #F1EADF;
  --text:      #2B241C;
  --text2:     #6B6259;
  --text3:     #8A8177;
  --green:     #177A55;
  --red:       #C14A3A;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Syne', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', monospace;
}

    html { scroll-behavior: smooth; }
    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-sans);
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    body::before {
      content: '';
      position: fixed;
      inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.035'/%3E%3C/svg%3E");
      pointer-events: none;
      z-index: 0;
      opacity: 0.6;
    }

    .orb { position: fixed; border-radius: 50%; filter: blur(120px); pointer-events: none; z-index: 0; opacity: 0.12; }
    .orb-1 { width: 600px; height: 600px; background: #c9a96e; top: -200px; right: -100px; animation: orbDrift 18s ease-in-out infinite alternate; }
    .orb-2 { width: 400px; height: 400px; background: #6e8ec9; bottom: 200px; left: -150px; animation: orbDrift 24s ease-in-out infinite alternate-reverse; }

    @keyframes orbDrift {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(30px,40px) scale(1.08); }
    }

    /* NAV */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      padding: 0 48px; height: 64px;
      display: flex; align-items: center; justify-content: space-between;
      background: rgba(9,9,12,0.8); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .logo { font-family: var(--font-sans); font-size: 18px; font-weight: 800; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
    .nav-center { display: flex; gap: 2px; background: var(--surface); border: 1px solid var(--border); border-radius: 10px; padding: 4px; }
    .nav-link { font-size: 12.5px; font-weight: 500; color: var(--text3); text-decoration: none; padding: 6px 14px; border-radius: 7px; transition: color 0.15s, background 0.15s; letter-spacing: 0.02em; }
    .nav-link:hover { color: var(--text); background: var(--surface2); }
    .nav-right { display: flex; align-items: center; gap: 10px; }
    .nav-badge { font-size: 10.5px; font-weight: 600; color: var(--green); background: rgba(62,207,142,0.1); border: 1px solid rgba(62,207,142,0.2); border-radius: 20px; padding: 4px 10px; letter-spacing: 0.04em; display: flex; align-items: center; gap: 5px; }
    .nav-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--green); animation: pulse 2s ease infinite; }
    .btn-nav { font-family: var(--font-sans); font-size: 12.5px; font-weight: 600; color: var(--bg); background: var(--gold); border: none; padding: 8px 18px; border-radius: 8px; cursor: pointer; letter-spacing: 0.03em; transition: opacity 0.15s; }
    .btn-nav:hover { opacity: 0.85; }

    /* HERO */
    .hero {
      position: relative; z-index: 1;
      min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center;
      text-align: center; padding: 120px 24px 80px;
    }
    .hero-rule { display: flex; align-items: center; gap: 12px; margin-bottom: 28px; opacity: 0; animation: fadeUp 0.8s 0.1s cubic-bezier(0.22,1,0.36,1) forwards; }
    .hero-rule span { font-family: var(--font-sans); font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); }
    .hero-rule::before, .hero-rule::after { content: ''; flex: 1; max-width: 60px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }

    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(56px, 8vw, 100px);
      font-weight: 300; line-height: 1.02; letter-spacing: -0.01em; color: var(--text);
      opacity: 0; animation: fadeUp 0.9s 0.2s cubic-bezier(0.22,1,0.36,1) forwards;
    }
    .hero h1 em { font-style: italic; color: var(--gold); }

    .hero-sub { font-size: 16px; font-weight: 400; color: var(--text2); line-height: 1.75; max-width: 520px; margin: 24px auto 44px; opacity: 0; animation: fadeUp 0.9s 0.35s cubic-bezier(0.22,1,0.36,1) forwards; }

    .cta-group { display: flex; flex-direction: column; align-items: center; gap: 16px; opacity: 0; animation: fadeUp 0.9s 0.45s cubic-bezier(0.22,1,0.36,1) forwards; }
    .cta-buttons { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }

    .btn-primary {
      font-family: var(--font-sans); font-size: 13px; font-weight: 700; color: var(--bg);
      background: var(--gold); border: none; padding: 14px 32px; border-radius: 10px; cursor: pointer;
      letter-spacing: 0.04em; text-transform: uppercase; transition: opacity 0.15s, transform 0.15s;
      position: relative; overflow: hidden;
    }
    .btn-primary::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%); pointer-events: none; }
    .btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

    .btn-ghost { font-family: var(--font-sans); font-size: 13px; font-weight: 600; color: var(--text2); background: transparent; border: 1px solid var(--border2); padding: 14px 32px; border-radius: 10px; cursor: pointer; letter-spacing: 0.04em; text-transform: uppercase; transition: border-color 0.15s, color 0.15s; text-decoration: none; display: inline-block; }
    .btn-ghost:hover { border-color: var(--gold); color: var(--gold-text); }

    .cta-nudge { font-size: 11.5px; color: var(--text3); letter-spacing: 0.04em; }
    .cta-nudge strong { color: var(--text2); font-weight: 500; }

    /* TRUST BAR */
    .trust-bar {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
      padding: 20px 0; overflow: hidden;
      background: linear-gradient(180deg, var(--bg2) 0%, var(--bg) 100%);
    }
    .trust-bar::before, .trust-bar::after { content: ''; position: absolute; top: 0; bottom: 0; width: 160px; z-index: 2; pointer-events: none; }
    .trust-bar::before { left: 0; background: linear-gradient(90deg, var(--bg) 0%, transparent 100%); }
    .trust-bar::after  { right: 0; background: linear-gradient(270deg, var(--bg) 0%, transparent 100%); }

    .trust-track { display: flex; width: max-content; animation: marquee 30s linear infinite; }
    .trust-item { display: flex; align-items: center; gap: 8px; padding: 0 40px; font-size: 12px; font-weight: 600; color: var(--text3); letter-spacing: 0.06em; text-transform: uppercase; white-space: nowrap; border-right: 1px solid var(--border); }
    .trust-item .stat { color: var(--gold); font-size: 15px; font-family: var(--font-display); font-style: italic; }

    @keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

    /* SECTION */
    .section { position: relative; z-index: 1; max-width: 1080px; margin: 0 auto; padding: 100px 32px; }

    .section-label { font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: flex; align-items: center; gap: 10px; }
    .section-label::after { content: ''; flex: 1; max-width: 40px; height: 1px; background: var(--gold); opacity: 0.4; }

    .section-title { font-family: var(--font-display); font-size: clamp(36px, 5vw, 58px); font-weight: 300; line-height: 1.1; letter-spacing: -0.01em; color: var(--text); margin-bottom: 16px; }
    .section-title em { font-style: italic; color: var(--gold); }

    .section-sub { font-size: 15px; color: var(--text2); line-height: 1.7; max-width: 520px; }

    /* FEATURE GRID */
    .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 20px; overflow: hidden; margin-top: 60px; }
    .feature-card { background: var(--surface); padding: 36px 32px; position: relative; transition: background 0.2s; }
    .feature-card:hover { background: var(--surface2); }
    .feature-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.3s; }
    .feature-card:hover::before { opacity: 0.6; }

    .feature-icon { width: 44px; height: 44px; border-radius: 12px; background: var(--gold-dim); border: 1px solid rgba(201,169,110,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; color: var(--gold); }
    .feature-num { font-family: var(--font-display); font-size: 11px; font-style: italic; color: var(--text3); margin-bottom: 10px; letter-spacing: 0.04em; }
    .feature-card h3 { font-family: var(--font-sans); font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 10px; letter-spacing: -0.01em; }
    .feature-card p { font-size: 13px; color: var(--text2); line-height: 1.7; }
    .feature-tag { display: inline-block; margin-top: 16px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); background: var(--gold-dim); border: 1px solid rgba(201,169,110,0.12); padding: 3px 8px; border-radius: 4px; }

    /* HOW IT WORKS */
    .steps-section { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
    .steps-list { display: flex; flex-direction: column; }
    .step { display: flex; gap: 24px; padding: 28px 0; border-bottom: 1px solid var(--border); transition: padding-left 0.2s; cursor: default; }
    .step:first-child { padding-top: 0; }
    .step:last-child { border-bottom: none; }
    .step:hover { padding-left: 8px; }
    .step-num { font-family: var(--font-display); font-size: 13px; font-style: italic; color: var(--gold); opacity: 0.7; min-width: 24px; padding-top: 2px; }
    .step-content h4 { font-size: 14px; font-weight: 700; color: var(--text); margin-bottom: 6px; letter-spacing: -0.01em; }
    .step-content p { font-size: 12.5px; color: var(--text2); line-height: 1.6; }

    .code-panel { background: var(--surface); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
    .code-panel-header { padding: 14px 20px; border-bottom: 1px solid var(--border); display: flex; align-items: center; gap: 8px; }
    .dot { width: 10px; height: 10px; border-radius: 50%; }
    .dot-r { background: #ff5f57; } .dot-y { background: #febc2e; } .dot-g { background: #28c840; }
    .code-panel-title { font-family: var(--font-mono); font-size: 11px; color: var(--text3); margin-left: 4px; }
    .code-body { padding: 24px; font-family: var(--font-mono); font-size: 12px; line-height: 1.85; color: #8892a4; overflow-x: auto; }
    .code-body .k { color: var(--gold); }
    .code-body .s { color: #7ec8a0; }
    .code-body .c { color: #3a3a50; font-style: italic; }
    .code-body .v { color: #c792ea; }
    .code-body .n { color: #82aaff; }

    /* STATS */
    .proof-section { text-align: center; }
    .stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; margin: 60px 0; }
    .stat-cell { background: var(--surface); padding: 36px 24px; text-align: center; transition: background 0.2s; }
    .stat-cell:hover { background: var(--surface2); }
    .stat-num { font-family: var(--font-display); font-size: 52px; font-weight: 300; color: var(--gold-pale); line-height: 1; margin-bottom: 8px; }
    .stat-num em { font-style: italic; color: var(--gold); }
    .stat-label { font-size: 11px; font-weight: 600; color: var(--text3); letter-spacing: 0.1em; text-transform: uppercase; }

    /* TESTIMONIALS */
    .testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 40px; }
    .testimonial { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 28px; text-align: left; transition: border-color 0.2s, transform 0.2s; }
    .testimonial:hover { border-color: rgba(201,169,110,0.25); transform: translateY(-2px); }
    .quote-mark { font-family: var(--font-display); font-size: 52px; font-style: italic; color: var(--gold); opacity: 0.22; line-height: 1; margin-bottom: -6px; }
    .testimonial p { font-size: 13.5px; color: var(--text2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
    .testimonial p strong { color: var(--text); font-style: normal; }
    .testimonial-author { display: flex; align-items: center; gap: 10px; padding-top: 16px; border-top: 1px solid var(--border); }
    .avatar { width: 32px; height: 32px; border-radius: 50%; background: linear-gradient(135deg, var(--gold-dim), #1a1a2a); border: 1px solid rgba(201,169,110,0.2); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--gold); font-family: var(--font-sans); }
    .author-info .name { font-size: 12px; font-weight: 700; color: var(--text); }
    .author-info .role { font-size: 11px; color: var(--text3); }

    /* CTA FINAL */
    .cta-section { position: relative; z-index: 1; text-align: center; padding: 100px 32px; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 800px; height: 400px; background: radial-gradient(ellipse, rgba(201,169,110,0.06) 0%, transparent 70%); pointer-events: none; }

    .scarcity-tag { display: inline-flex; align-items: center; gap: 8px; background: rgba(245,101,101,0.1); border: 1px solid rgba(245,101,101,0.25); border-radius: 20px; padding: 6px 16px; font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 28px; }
    .scarcity-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--red); animation: pulse 1.5s ease infinite; }

    .cta-section h2 { font-family: var(--font-display); font-size: clamp(42px, 6vw, 72px); font-weight: 300; line-height: 1.08; letter-spacing: -0.01em; color: var(--text); margin-bottom: 20px; }
    .cta-section h2 em { font-style: italic; color: var(--gold); }
    .cta-section p { font-size: 15px; color: var(--text2); max-width: 480px; margin: 0 auto 40px; line-height: 1.7; }

    .guarantee-row { display: flex; justify-content: center; gap: 32px; margin-top: 28px; flex-wrap: wrap; }
    .guarantee-item { display: flex; align-items: center; gap: 7px; font-size: 12px; color: var(--text3); font-weight: 500; }
    .guarantee-item svg { color: var(--green); flex-shrink: 0; }

    /* FOOTER */
    footer { position: relative; z-index: 1; border-top: 1px solid var(--border); padding: 32px 48px; display: flex; align-items: center; justify-content: space-between; }
    .footer-logo { font-family: var(--font-sans); font-size: 15px; font-weight: 800; color: var(--gold); letter-spacing: 0.08em; }
    .footer-copy { font-size: 11.5px; color: var(--text3); }

    /* ANIMATIONS */
    @keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
    @keyframes pulse  { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }

    .reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    @media (max-width: 768px) {
      nav { padding: 0 20px; }
      .nav-center { display: none; }
      .feature-grid { grid-template-columns: 1fr; }
      .steps-section { grid-template-columns: 1fr; }
      .stats-row { grid-template-columns: repeat(2, 1fr); }
      .testimonials { grid-template-columns: 1fr; }
      footer { flex-direction: column; gap: 12px; text-align: center; }
      .guarantee-row { gap: 16px; }
    }