    /* ─── Fonts (from app) ─── */
    @font-face { font-family: 'DM Serif Display'; src: url('/fonts/DMSerifDisplay-400.ttf') format('truetype'); }
    @font-face { font-family: 'Figtree'; src: url('/fonts/Figtree-400.ttf') format('truetype'); font-weight: 400; }
    @font-face { font-family: 'Figtree'; src: url('/fonts/Figtree-500.ttf') format('truetype'); font-weight: 500; }
    @font-face { font-family: 'Figtree'; src: url('/fonts/Figtree-600.ttf') format('truetype'); font-weight: 600; }
    @font-face { font-family: 'Figtree'; src: url('/fonts/Figtree-700.ttf') format('truetype'); font-weight: 700; }
    @font-face { font-family: 'Cascadia Code'; src: url('/fonts/CascadiaCode-400.ttf') format('truetype'); }
    @font-face { font-family: 'Lora'; src: url('/fonts/Lora-400.ttf') format('truetype'); }
    @font-face { font-family: 'Lora'; src: url('/fonts/Lora-600.ttf') format('truetype'); font-weight: 600; }
    @font-face { font-family: 'Lora'; src: url('/fonts/Lora-700.ttf') format('truetype'); font-weight: 700; }

    /* ─── Tokens ─── */
    :root {
      --bg: #faf9f7;
      --surface: #ffffff;
      --text: #2a2a32;
      --text-mid: #5a5866;
      --text-muted: #8a8780;
      --accent: #d4875e;
      --accent-hover: #c17a52;
      --accent-light: #f5ece4;
      --border: #e8e4de;
      --code-bg: #f0ede8;
      --radius: 10px;
    }

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

    body {
      font-family: 'Figtree', -apple-system, sans-serif;
      color: var(--text);
      background: var(--bg);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    a { color: var(--accent); text-decoration: none; }
    a:hover { color: var(--accent-hover); }

    /* ─── Nav ─── */
    nav {
      display: flex;
      justify-content: space-between;
      align-items: center;
      max-width: 1040px;
      margin: 0 auto;
      padding: 1.25rem 1.5rem;
    }

    .nav-logo {
      font-family: 'DM Serif Display', serif;
      font-size: 1.4rem;
      color: var(--text);
    }

    .nav-links {
      display: flex;
      gap: 1.5rem;
      align-items: center;
    }

    .nav-links a {
      color: var(--text-mid);
      font-size: 0.88rem;
      font-weight: 500;
    }

    .nav-links a:hover { color: var(--accent); }

    .lang-toggle {
      display: flex;
      gap: 0.25rem;
      background: var(--accent-light);
      border-radius: 6px;
      padding: 2px;
    }

    .lang-toggle a {
      padding: 0.25rem 0.6rem;
      border-radius: 4px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .lang-toggle a.active {
      background: var(--surface);
      color: var(--text);
      box-shadow: 0 1px 2px rgba(0,0,0,0.06);
    }

    /* ─── Hero ─── */
    .hero {
      max-width: 1040px;
      margin: 0 auto;
      padding: 3rem 1.5rem 4rem;
      text-align: center;
    }

    .hero-eyebrow {
      font-size: 0.82rem;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 1rem;
    }

    .hero h1 {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.4rem);
      font-weight: 400;
      line-height: 1.15;
      color: var(--text);
      margin-bottom: 1.25rem;
      letter-spacing: -0.01em;
    }

    .hero-sub {
      font-size: 1.1rem;
      color: var(--text-mid);
      max-width: 540px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }

    .cta-primary {
      display: inline-block;
      padding: 0.9rem 2rem;
      background: var(--text);
      color: #fff;
      font-family: 'Figtree', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      border-radius: var(--radius);
      border: none;
      cursor: pointer;
      transition: background 0.15s;
    }

    .cta-primary:hover { background: #44445a; color: #fff; }

    .hero-note {
      font-size: 0.82rem;
      color: var(--text-muted);
      margin-top: 0.75rem;
    }

    /* ─── Sections ─── */
    section {
      max-width: 1040px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .section-label {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--accent);
      margin-bottom: 0.75rem;
    }

    .section-heading {
      font-family: 'DM Serif Display', serif;
      font-size: clamp(1.6rem, 3vw, 2.2rem);
      font-weight: 400;
      line-height: 1.25;
      margin-bottom: 1rem;
    }

    .section-sub {
      color: var(--text-mid);
      font-size: 1rem;
      max-width: 560px;
      line-height: 1.7;
    }

    /* ─── Problem ─── */
    .problem {
      border-top: 1px solid var(--border);
    }

    .problem-intro {
      font-size: 1.1rem;
      color: var(--text);
      max-width: 600px;
      line-height: 1.8;
      margin-bottom: 2.5rem;
    }

    .pain-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.25rem;
    }

    .pain-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.5rem;
    }

    .pain-card h3 {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .pain-card p {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    .pain-card .who {
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: var(--accent);
      margin-bottom: 0.5rem;
    }

    /* ─── How it works ─── */
    .how {
      background: var(--surface);
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
    }

    .how-inner {
      max-width: 1040px;
      margin: 0 auto;
      padding: 4rem 1.5rem;
    }

    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
      margin-top: 2.5rem;
    }

    .step {
      text-align: center;
    }

    .step-num {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: var(--accent-light);
      color: var(--accent);
      font-family: 'DM Serif Display', serif;
      font-size: 1.1rem;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .step h3 {
      font-size: 1rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }

    .step p {
      font-size: 0.88rem;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ─── Testimonials ─── */
    .testimonials {
      border-bottom: 1px solid var(--border);
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 1.25rem;
      margin-top: 2rem;
    }

    .testimonial {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 1.75rem;
    }

    .testimonial blockquote {
      font-size: 0.95rem;
      color: var(--text);
      line-height: 1.7;
      font-style: italic;
      margin-bottom: 1.25rem;
    }

    .testimonial blockquote::before {
      content: '\201C';
      font-family: 'DM Serif Display', serif;
      font-size: 2rem;
      color: var(--accent);
      line-height: 0;
      vertical-align: -0.35em;
      margin-right: 0.1em;
    }

    .testimonial-author {
      font-size: 0.82rem;
      font-weight: 600;
      color: var(--text);
    }

    .testimonial-role {
      font-size: 0.78rem;
      color: var(--text-muted);
    }

    /* ─── FAQ ─── */
    .faq {
      border-bottom: 1px solid var(--border);
    }

    .faq-list {
      margin-top: 2rem;
      max-width: 680px;
    }

    .faq-item {
      border-bottom: 1px solid var(--border);
      padding: 1.25rem 0;
    }

    .faq-item:last-child { border-bottom: none; }

    .faq-q {
      font-weight: 600;
      font-size: 0.95rem;
      margin-bottom: 0.4rem;
      cursor: default;
    }

    .faq-a {
      font-size: 0.9rem;
      color: var(--text-mid);
      line-height: 1.65;
    }

    /* ─── Final CTA ─── */
    .final-cta {
      text-align: center;
      padding: 5rem 1.5rem;
    }

    .final-cta .section-heading {
      margin-bottom: 1.5rem;
    }

    /* ─── Footer ─── */
    footer {
      text-align: center;
      padding: 2rem 1.5rem;
      font-size: 0.82rem;
      color: var(--text-muted);
      border-top: 1px solid var(--border);
    }

    /* ─── Responsive ─── */
    @media (max-width: 700px) {
      .steps { grid-template-columns: 1fr; gap: 1.5rem; }
      .nav-links a:not(.lang-toggle) { display: none; }
    }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; animation: none !important; }
    }

    /* ─── Focus ─── */
    a:focus-visible, button:focus-visible {
      outline: 2px solid var(--accent);
      outline-offset: 2px;
      border-radius: 4px;
    }

/* ─── Hero Preview Image ─── */
.hero-preview {
  max-width: 900px;
  margin: 3rem auto 0;
  padding: 0 1.5rem;
}

.preview-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  border: 1px solid var(--border);
}

@media (max-width: 700px) {
  .hero-preview {
    margin: 2rem auto 0;
    padding: 0 1rem;
  }
}
