    :root {
      --bg: #0a0612;
      --bg-2: #15101f;
      --surface: rgba(255, 255, 255, 0.035);
      --surface-2: rgba(255, 255, 255, 0.06);
      --border: rgba(255, 255, 255, 0.08);
      --border-strong: rgba(255, 255, 255, 0.14);
      --text: #ffffff;
      --text-2: rgba(255, 255, 255, 0.68);
      --text-3: rgba(255, 255, 255, 0.42);
      --gold: #f0c060;
      --gold-soft: rgba(240, 192, 96, 0.16);
      --purple: #a78bfa;
      --purple-soft: rgba(167, 139, 250, 0.18);
      --pink: #f472b6;
      --cyan: #67e8f9;
      --serif: "Playfair Display", Georgia, serif;
      --sans: "Cabinet Grotesk", "Inter", system-ui, sans-serif;
      --radius: 14px;
      --radius-lg: 22px;
    }
    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--sans);
      background: var(--bg);
      color: var(--text);
      line-height: 1.55;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 700; letter-spacing: -0.02em; line-height: 1.05; }
    p { margin: 0; color: var(--text-2); }
    a { color: inherit; text-decoration: none; }
    button { font: inherit; cursor: pointer; }

    .container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

    /* ── Background mesh ──────────────────────────────── */
    body::before {
      content: "";
      position: fixed; inset: 0;
      background:
        radial-gradient(800px 600px at 15% 10%, rgba(167, 139, 250, 0.18), transparent 60%),
        radial-gradient(700px 500px at 85% 0%, rgba(240, 192, 96, 0.12), transparent 60%),
        radial-gradient(900px 700px at 50% 100%, rgba(244, 114, 182, 0.10), transparent 60%);
      z-index: -1;
      pointer-events: none;
    }

    /* ── Navbar ───────────────────────────────────────── */
    .nav {
      position: sticky; top: 0; z-index: 50;
      backdrop-filter: blur(18px) saturate(140%);
      -webkit-backdrop-filter: blur(18px) saturate(140%);
      background: rgba(10, 6, 18, 0.65);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
    .logo {
      font-family: var(--serif); font-size: 24px; font-weight: 700; font-style: italic;
      letter-spacing: -0.01em; display: inline-flex; align-items: center; gap: 6px;
    }
    .logo::after {
      content: ""; width: 7px; height: 7px; border-radius: 50%;
      background: var(--gold); margin-top: 12px;
      box-shadow: 0 0 12px var(--gold);
    }
    .nav-links { display: flex; gap: 36px; }
    .nav-links a {
      font-size: 14px; color: var(--text-2); transition: color 160ms;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta { display: flex; gap: 12px; align-items: center; }
    @media (max-width: 720px) { .nav-links { display: none; } }

    /* ── Buttons ──────────────────────────────────────── */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 11px 20px; border-radius: 999px;
      font-size: 14px; font-weight: 600; letter-spacing: -0.005em;
      transition: transform 160ms, box-shadow 160ms, background 160ms;
      border: 1px solid transparent;
    }
    .btn-primary {
      background: var(--gold); color: #1a0a2e;
      box-shadow: 0 8px 30px -8px rgba(240, 192, 96, 0.5);
    }
    .btn-primary:hover { transform: translateY(-1px); box-shadow: 0 12px 36px -8px rgba(240, 192, 96, 0.6); }
    .btn-ghost { color: var(--text); border-color: var(--border-strong); background: transparent; }
    .btn-ghost:hover { background: var(--surface-2); }
    .btn-lg { padding: 14px 26px; font-size: 15px; }

    /* ── Hero ─────────────────────────────────────────── */
    .hero { padding: 90px 0 110px; position: relative; }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: 10px;
      padding: 7px 14px 7px 8px; border-radius: 999px;
      background: var(--surface); border: 1px solid var(--border);
      font-size: 12px; color: var(--text-2); letter-spacing: 0.5px;
      margin-bottom: 28px;
    }
    .hero-eyebrow .pill {
      background: var(--gold-soft); color: var(--gold);
      padding: 3px 10px; border-radius: 999px;
      font-weight: 600; font-size: 10px; letter-spacing: 1px; text-transform: uppercase;
    }
    .hero h1 {
      font-size: clamp(48px, 7vw, 96px);
      line-height: 0.98;
      margin-bottom: 28px;
      max-width: 940px;
    }
    .hero h1 em {
      font-style: italic;
      background: linear-gradient(120deg, var(--gold), #ffe4a3, var(--gold));
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .hero p.lede {
      font-size: clamp(17px, 1.6vw, 21px);
      max-width: 620px;
      color: var(--text-2);
      margin-bottom: 40px;
    }
    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 60px; }

    /* ── Hero preview (mock canvas) ──────────────────── */
    .preview {
      position: relative;
      border-radius: var(--radius-lg);
      background: linear-gradient(180deg, var(--surface-2), var(--surface));
      border: 1px solid var(--border-strong);
      padding: 18px;
      box-shadow: 0 40px 120px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px var(--border);
      backdrop-filter: blur(10px);
    }
    .preview-bar {
      display: flex; align-items: center; gap: 10px;
      padding: 0 6px 14px;
    }
    .preview-bar .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--surface-2); }
    .preview-bar .dot.r { background: #ff5f56; }
    .preview-bar .dot.y { background: #ffbd2e; }
    .preview-bar .dot.g { background: #27c93f; }
    .preview-bar .title {
      margin-left: 10px; font-family: var(--serif); font-style: italic;
      font-size: 14px; color: var(--text-2);
    }
    .preview-bar .actions { margin-left: auto; display: flex; gap: 8px; }
    .preview-bar .actions span {
      padding: 4px 10px; font-size: 11px; letter-spacing: 1px;
      background: var(--surface-2); border-radius: 999px; color: var(--text-3);
    }
    .preview-body {
      display: grid;
      grid-template-columns: 60px 200px 1fr 200px;
      gap: 12px;
      height: 460px;
    }
    .preview-panel {
      background: rgba(0, 0, 0, 0.25);
      border-radius: 10px;
      border: 1px solid var(--border);
      padding: 14px 12px;
    }
    .panel-leftnav { display: flex; flex-direction: column; gap: 14px; align-items: center; padding-top: 16px; }
    .panel-leftnav .ico { width: 28px; height: 28px; border-radius: 8px; background: var(--surface-2); }
    .panel-leftnav .ico.active { background: var(--gold-soft); box-shadow: inset 0 0 0 1px var(--gold); }
    .panel-drawer h5 {
      font-family: var(--serif); font-style: italic; font-size: 15px;
      color: var(--text-2); margin-bottom: 12px; font-weight: 400;
    }
    .tmpl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .tmpl-thumb {
      aspect-ratio: 1; border-radius: 6px;
      display: flex; align-items: flex-end; padding: 6px;
      font-size: 7px; color: rgba(255,255,255,.85); font-weight: 600;
      letter-spacing: 0.5px;
    }
    .tmpl-thumb.a { background: linear-gradient(135deg,#1a0a2e,#4a0080); }
    .tmpl-thumb.b { background: linear-gradient(160deg,#fff5eb,#ffd4a3); color: #7a4020; }
    .tmpl-thumb.c { background: linear-gradient(135deg,#0f1419,#1a2438); }
    .tmpl-thumb.d { background: linear-gradient(135deg,#06b6d4,#0ea5e9); }
    .tmpl-thumb.e { background: linear-gradient(135deg,#5b21b6,#8b5cf6); }
    .tmpl-thumb.f { background: linear-gradient(135deg,#10b981,#059669); }

    .panel-canvas {
      background: linear-gradient(135deg, #1a0a2e, #4a0080);
      border-radius: 10px; padding: 28px; position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }
    .canvas-circle {
      position: absolute; top: -40px; right: -40px;
      width: 200px; height: 200px; border-radius: 50%;
      background: rgba(240, 192, 96, 0.12);
    }
    .canvas-eyebrow {
      font-family: var(--sans); font-size: 9px; font-weight: 700;
      letter-spacing: 3px; color: rgba(240,192,96,.6); margin-bottom: 16px;
    }
    .canvas-h1 {
      font-family: var(--serif); font-size: 60px; line-height: 0.9;
      color: var(--gold); font-weight: 700; margin-bottom: 18px;
    }
    .canvas-h1 .l2 { display: block; }
    .canvas-line { width: 50px; height: 3px; background: var(--gold); border-radius: 2px; margin-bottom: 14px; }
    .canvas-sub {
      font-size: 12px; color: rgba(255,255,255,0.55);
      max-width: 220px; line-height: 1.4;
    }
    .canvas-handle {
      position: absolute; width: 9px; height: 9px;
      background: var(--gold); border: 2px solid #1a0a2e; border-radius: 2px;
    }
    .canvas-handle.tl { top: 60px; left: 22px; }
    .canvas-handle.tr { top: 60px; right: 22px; }
    .canvas-handle.bl { bottom: 60px; left: 22px; }
    .canvas-handle.br { bottom: 60px; right: 22px; }
    .canvas-selbox {
      position: absolute; top: 56px; left: 18px; right: 18px;
      height: 168px; border: 1px dashed rgba(240,192,96,.5);
      pointer-events: none; border-radius: 2px;
    }

    .panel-right { display: flex; flex-direction: column; gap: 14px; }
    .panel-right h5 {
      font-family: var(--serif); font-style: italic; font-size: 14px;
      color: var(--text-2); margin: 0; font-weight: 400;
    }
    .ctrl-row { display: flex; justify-content: space-between; align-items: center; font-size: 10px; color: var(--text-3); }
    .ctrl-swatch { display: flex; gap: 4px; }
    .ctrl-swatch span { width: 16px; height: 16px; border-radius: 4px; }
    .ctrl-slider {
      height: 4px; background: var(--surface-2); border-radius: 999px;
      position: relative; margin: 8px 0;
    }
    .ctrl-slider::after {
      content: ""; position: absolute; top: -3px; left: 60%;
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--gold); box-shadow: 0 0 8px var(--gold);
    }

    @media (max-width: 900px) {
      .preview-body { grid-template-columns: 1fr; height: auto; }
      .panel-leftnav, .panel-drawer, .panel-right { display: none; }
      .panel-canvas { aspect-ratio: 4/3; min-height: 320px; }
    }

    /* ── Section common ──────────────────────────────── */
    section { padding: 110px 0; position: relative; }
    .section-eyebrow {
      display: inline-block; font-size: 11px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--gold); margin-bottom: 18px;
    }
    .section-title {
      font-size: clamp(36px, 5vw, 60px);
      max-width: 760px;
      margin-bottom: 22px;
    }
    .section-title em {
      font-style: italic;
      color: var(--text-3);
    }
    .section-lede {
      font-size: 18px; max-width: 560px; color: var(--text-2);
      margin-bottom: 56px;
    }

    /* ── Features grid ───────────────────────────────── */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .feature {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      transition: border-color 200ms, transform 200ms, background 200ms;
      position: relative;
      overflow: hidden;
    }
    .feature:hover {
      border-color: var(--border-strong);
      transform: translateY(-3px);
      background: var(--surface-2);
    }
    .feature-icon {
      width: 44px; height: 44px; border-radius: 12px;
      background: var(--gold-soft); border: 1px solid rgba(240,192,96,.25);
      display: flex; align-items: center; justify-content: center;
      font-size: 22px;
      margin-bottom: 22px;
    }
    .feature:nth-child(2n) .feature-icon { background: var(--purple-soft); border-color: rgba(167,139,250,.25); }
    .feature:nth-child(3n) .feature-icon { background: rgba(244, 114, 182, 0.14); border-color: rgba(244,114,182,.25); }
    .feature h3 {
      font-family: var(--sans); font-size: 18px; font-weight: 700;
      margin-bottom: 10px; letter-spacing: -0.01em;
    }
    .feature p { font-size: 14px; color: var(--text-2); line-height: 1.6; }
    @media (max-width: 900px) { .features-grid { grid-template-columns: 1fr; } }

    /* ── Templates showcase ──────────────────────────── */
    .templates-row {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 16px;
    }
    .tmpl-card {
      aspect-ratio: 1; border-radius: var(--radius);
      padding: 22px; display: flex; flex-direction: column;
      justify-content: space-between; position: relative;
      overflow: hidden; transition: transform 250ms;
      cursor: pointer;
    }
    .tmpl-card:hover { transform: translateY(-4px) scale(1.01); }
    .tmpl-card .tag {
      align-self: flex-start; font-size: 10px; font-weight: 700;
      letter-spacing: 2px; color: rgba(255,255,255,0.5);
    }
    .tmpl-card .name {
      font-family: var(--serif); font-size: 26px;
      font-weight: 700; line-height: 1; color: white;
    }
    .tmpl-card .name em { font-style: italic; display: block; }
    .tmpl-card.t1 { background: linear-gradient(135deg,#1a0a2e,#4a0080); }
    .tmpl-card.t1 .name { color: #f0c060; }
    .tmpl-card.t1 .tag { color: rgba(240,192,96,.55); }
    .tmpl-card.t2 { background: linear-gradient(135deg,#0f1419,#1a2438); }
    .tmpl-card.t2 .tag { color: #ffc857; }
    .tmpl-card.t3 { background: linear-gradient(135deg,#06b6d4,#0ea5e9); }
    .tmpl-card.t4 { background: linear-gradient(135deg,#020617,#1e1b4b); }
    .tmpl-card.t4 .name { font-style: italic; }
    .tmpl-card.t4 .tag { color: #a78bfa; }
    .tmpl-card.t5 { background: linear-gradient(160deg,#fdf6ec,#f5e6d3); }
    .tmpl-card.t5 .name { color: #3a2418; font-style: italic; }
    .tmpl-card.t5 .tag { color: #a06030; }
    .tmpl-card.t6 { background: linear-gradient(135deg,#10b981,#059669); }
    .tmpl-card.t7 { background: linear-gradient(135deg,#78350f,#451a03); }
    .tmpl-card.t7 .name { color: #fef3c7; }
    .tmpl-card.t7 .tag { color: #fbbf24; }
    .tmpl-card.t8 { background: linear-gradient(135deg,#5b21b6,#8b5cf6); }
    .tmpl-card.t8 .tag { color: #fde047; }
    .tmpl-card .deco {
      position: absolute; border-radius: 50%; pointer-events: none;
    }
    @media (max-width: 900px) { .templates-row { grid-template-columns: repeat(2, 1fr); } }

    /* ── AI section ──────────────────────────────────── */
    .ai-wrap {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }
    .ai-card {
      background: linear-gradient(135deg, rgba(167,139,250,.12), rgba(240,192,96,.05));
      border: 1px solid var(--border-strong);
      border-radius: var(--radius-lg);
      padding: 50px;
      position: relative;
      overflow: hidden;
    }
    .ai-card::before {
      content: ""; position: absolute; inset: 0;
      background:
        radial-gradient(400px 200px at 80% 20%, var(--purple-soft), transparent 60%),
        radial-gradient(300px 200px at 20% 80%, var(--gold-soft), transparent 60%);
      pointer-events: none;
    }
    .ai-demo {
      position: relative; aspect-ratio: 4/3;
      background: #15101f; border-radius: 12px;
      border: 1px solid var(--border-strong);
      overflow: hidden;
      display: grid; grid-template-columns: 1fr 1fr;
    }
    .ai-demo-half { padding: 20px; display: flex; flex-direction: column; justify-content: space-between; position: relative; }
    .ai-demo-half.before { background: linear-gradient(135deg, #8b5a3c, #d4a574); }
    .ai-demo-half.after { background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)); }
    .ai-demo-label {
      font-size: 10px; letter-spacing: 2px; font-weight: 700;
      color: white; opacity: 0.7;
    }
    .ai-demo-half.after .ai-demo-label { color: var(--gold); opacity: 1; }
    .ai-silhouette {
      position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
      width: 70%; height: 75%;
      background: radial-gradient(ellipse at 50% 25%, #2a1810 30%, transparent 31%),
                  linear-gradient(180deg, transparent 18%, #2a1810 19%);
      border-radius: 50% 50% 12% 12% / 25% 25% 8% 8%;
    }
    .ai-demo-half.after .ai-silhouette { filter: drop-shadow(0 4px 12px rgba(167,139,250,0.3)); }
    .ai-tools-list { list-style: none; padding: 0; margin: 32px 0 0; display: flex; flex-direction: column; gap: 14px; }
    .ai-tools-list li {
      display: flex; align-items: flex-start; gap: 14px;
      font-size: 15px; color: var(--text-2);
    }
    .ai-tools-list li::before {
      content: "✦"; color: var(--gold); font-size: 14px;
      flex-shrink: 0; margin-top: 4px;
    }
    .ai-tools-list li b { color: var(--text); font-weight: 600; }
    @media (max-width: 900px) { .ai-wrap { grid-template-columns: 1fr; } }

    /* ── Pricing ─────────────────────────────────────── */
    .pricing-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 22px; max-width: 920px; margin: 0 auto;
    }
    .price-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 44px 38px;
      position: relative;
    }
    .price-card.featured {
      background: linear-gradient(160deg, rgba(240,192,96,0.08), rgba(167,139,250,0.05));
      border-color: rgba(240,192,96,.35);
      box-shadow: 0 0 60px -20px rgba(240,192,96,.25);
    }
    .price-badge {
      position: absolute; top: 22px; right: 22px;
      padding: 5px 12px; border-radius: 999px;
      background: var(--gold-soft); border: 1px solid rgba(240,192,96,.3);
      font-size: 10px; font-weight: 700; letter-spacing: 2px;
      color: var(--gold);
    }
    .price-name {
      font-family: var(--sans); font-size: 12px; font-weight: 700;
      letter-spacing: 3px; text-transform: uppercase;
      color: var(--text-3); margin-bottom: 12px;
    }
    .price-card.featured .price-name { color: var(--gold); }
    .price-amount {
      font-family: var(--serif); font-size: 70px; line-height: 1;
      font-weight: 700; margin-bottom: 6px;
    }
    .price-amount .currency { font-size: 36px; vertical-align: top; line-height: 1.2; color: var(--text-3); }
    .price-amount .per { font-size: 16px; color: var(--text-3); font-family: var(--sans); font-weight: 400; }
    .price-desc { color: var(--text-2); font-size: 14px; margin-bottom: 28px; max-width: 280px; }
    .price-features { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
    .price-features li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 14px; color: var(--text-2);
    }
    .price-features li::before {
      content: "✓"; color: var(--gold); font-weight: 700;
      flex-shrink: 0;
    }
    .price-card .btn { width: 100%; justify-content: center; }
    @media (max-width: 760px) { .pricing-grid { grid-template-columns: 1fr; } }

    /* ── CTA ─────────────────────────────────────────── */
    .cta {
      text-align: center;
      padding: 130px 0 140px;
      position: relative;
    }
    .cta::before {
      content: ""; position: absolute; inset: 0;
      background: radial-gradient(600px 300px at 50% 50%, rgba(240,192,96,.08), transparent 65%);
      pointer-events: none;
    }
    .cta h2 {
      font-size: clamp(44px, 6.5vw, 84px);
      margin-bottom: 22px;
    }
    .cta h2 em {
      font-style: italic;
      background: linear-gradient(120deg, var(--gold), #ffe4a3);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .cta p { max-width: 520px; margin: 0 auto 38px; font-size: 18px; }

    /* ── Footer ──────────────────────────────────────── */
    footer {
      border-top: 1px solid var(--border);
      padding: 48px 0 60px;
      color: var(--text-3); font-size: 13px;
    }
    .footer-inner {
      display: flex; justify-content: space-between; align-items: center;
      gap: 24px; flex-wrap: wrap;
    }
    .footer-links { display: flex; gap: 28px; }
    .footer-links a { color: var(--text-3); transition: color 160ms; }
    .footer-links a:hover { color: var(--text); }

    /* ── Stats strip ─────────────────────────────────── */
    .stats {
      display: grid; grid-template-columns: repeat(4, 1fr);
      gap: 28px; padding: 56px 0;
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      margin-top: 80px;
    }
    .stat { text-align: center; }
    .stat-num {
      font-family: var(--serif); font-size: 48px; font-weight: 700;
      background: linear-gradient(120deg, var(--gold), #ffe4a3);
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
      line-height: 1;
    }
    .stat-label {
      font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
      color: var(--text-3); margin-top: 10px;
    }
    @media (max-width: 720px) { .stats { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; } }

    /* ── Animate-in ───────────────────────────────────── */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 700ms ease, transform 700ms ease; }
    .reveal.in { opacity: 1; transform: none; }
  
    /* ── Content / use-case pages ────────────────────── */
    .breadcrumb {
      padding: 32px 0 0; font-size: 13px; color: var(--text-3);
      display: flex; gap: 8px; align-items: center;
    }
    .breadcrumb a { color: var(--text-3); transition: color 160ms; }
    .breadcrumb a:hover { color: var(--text); }
    .breadcrumb span { opacity: 0.5; }

    .page-hero { padding: 56px 0 40px; }
    .page-hero h1 {
      font-size: clamp(40px, 6vw, 76px); line-height: 1.0;
      max-width: 880px; margin-bottom: 24px;
    }
    .page-hero h1 em {
      font-style: italic;
      background: linear-gradient(120deg, var(--gold), #ffe4a3, var(--gold));
      -webkit-background-clip: text; background-clip: text;
      -webkit-text-fill-color: transparent;
    }
    .page-hero .lede { font-size: clamp(17px, 1.6vw, 21px); max-width: 640px; margin-bottom: 36px; }

    .prose { max-width: 720px; }
    .prose h2 { font-size: clamp(28px, 3.5vw, 42px); margin: 56px 0 18px; }
    .prose h3 { font-family: var(--sans); font-size: 20px; font-weight: 700; margin: 36px 0 10px; }
    .prose p { font-size: 16px; color: var(--text-2); margin-bottom: 16px; line-height: 1.7; }
    .prose ul { padding-left: 0; list-style: none; margin: 0 0 20px; display: flex; flex-direction: column; gap: 12px; }
    .prose ul li { display: flex; gap: 12px; font-size: 16px; color: var(--text-2); line-height: 1.6; }
    .prose ul li::before { content: "✦"; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

    /* ── Steps ───────────────────────────────────────── */
    .steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
    .step {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius-lg); padding: 30px;
    }
    .step-num {
      font-family: var(--serif); font-size: 40px; font-weight: 700;
      background: linear-gradient(120deg, var(--gold), #ffe4a3);
      -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
      line-height: 1; margin-bottom: 14px;
    }
    .step h3 { font-family: var(--sans); font-size: 17px; font-weight: 700; margin-bottom: 8px; }
    .step p { font-size: 14px; line-height: 1.6; }
    @media (max-width: 900px) { .steps { grid-template-columns: 1fr; } }

    /* ── FAQ ─────────────────────────────────────────── */
    .faq { max-width: 760px; margin: 0 auto; }
    .faq details {
      border-bottom: 1px solid var(--border); padding: 22px 0;
    }
    .faq summary {
      font-family: var(--sans); font-size: 17px; font-weight: 600;
      cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px;
    }
    .faq summary::-webkit-details-marker { display: none; }
    .faq summary::after { content: "+"; color: var(--gold); font-size: 22px; line-height: 1; }
    .faq details[open] summary::after { content: "−"; }
    .faq details p { margin-top: 14px; font-size: 15px; color: var(--text-2); line-height: 1.7; }
