  /* ---------- Reset ---------- */
  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body { margin: 0; }
  a { color: inherit; text-decoration: none; }
  button { font: inherit; color: inherit; }
  img, svg { display: block; }

  /* ---------- Theme tokens ---------- */
  :root {
    --bg: #f4f1ea;
    --surface: #fbfaf6;
    --ink: #1f241b;
    --muted: #5f5a4f;
    --muted-2: #8a8578;
    --line: rgba(31, 36, 27, 0.09);
    --accent: #34503a;
    --accent-strong: #2b4430;
    --accent-text: #34503a;
    --accent-soft: rgba(52, 80, 58, 0.08);
    --accent-contrast: #f4f1ea;
    --nose: #bd8a70;

    --shadow-card: 0 1px 2px rgba(31, 36, 27, 0.04), 0 18px 40px -24px rgba(31, 36, 27, 0.26);
    --shadow-btn: 0 10px 22px -10px rgba(52, 80, 58, 0.55);
    --shadow-phone: 0 2px 6px rgba(31, 36, 27, 0.10), 0 50px 90px -40px rgba(31, 36, 27, 0.5);

    --font-display: 'Bricolage Grotesque', sans-serif;
    --font-body: 'Hanken Grotesk', sans-serif;
    --font-mono: 'Space Mono', monospace;
  }

  :root[data-theme="dark"] {
    --bg: #13160f;
    --surface: #1d2117;
    --ink: #f1efe6;
    --muted: #aea99a;
    --muted-2: #847f6f;
    --line: rgba(255, 255, 255, 0.10);
    --accent-text: #9cc2a2;
    --accent-soft: rgba(156, 194, 162, 0.14);
    --shadow-card: 0 1px 2px rgba(0, 0, 0, 0.3), 0 18px 40px -24px rgba(0, 0, 0, 0.6);
  }

  body {
    background: var(--bg);
    color: var(--ink);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .35s ease, color .35s ease;
  }

  /* ---------- Layout helpers ---------- */
  .container { max-width: 1120px; margin: 0 auto; padding-inline: 24px; }
  .container--narrow { max-width: 820px; }
  .container--faq { max-width: 760px; }
  .eyebrow {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-text);
  }
  .section-heading { text-align: center; max-width: 620px; margin: 0 auto; }
  .section-heading h2 {
    margin: 14px 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(28px, 4.4vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.025em;
    color: var(--ink);
    text-wrap: balance;
  }

  /* ---------- Buttons ---------- */
  .btn {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    border: none;
    border-radius: 999px;
    background: var(--accent);
    color: var(--accent-contrast);
    font-family: var(--font-display);
    font-weight: 600;
    letter-spacing: -0.01em;
    box-shadow: var(--shadow-btn);
    cursor: pointer;
    transition: background .2s ease;
  }
  .btn:hover, .btn:focus-visible { background: var(--accent-strong); }
  .btn--sm { height: 40px; padding: 0 18px; font-size: 14.5px; }
  .btn--lg { height: 58px; padding: 0 30px; font-size: 17px; }
  .btn--xl { height: 60px; padding: 0 34px; font-size: 18px; }
  .btn--block { width: 100%; justify-content: center; }

  .icon-btn {
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
  }

  .pill-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px 6px 10px;
    border-radius: 999px;
    background: var(--accent-soft);
    border: 1px solid var(--line);
  }
  .pill-badge__dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-text); }
  .pill-badge__label {
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--accent-text);
  }

  .card {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: var(--shadow-card);
  }

  /* ---------- Header ---------- */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
  }
  .site-header__row {
    padding: 15px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
  }
  .brand { display: flex; align-items: center; gap: 10px; }
  .brand__name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 20px;
    letter-spacing: -0.02em;
  }
  .nav-links { display: flex; align-items: center; gap: 30px; }
  .nav-links a { font-size: 15px; font-weight: 500; color: var(--muted); transition: color .2s ease; }
  .nav-links a:hover { color: var(--ink); }
  .header-actions { display: flex; align-items: center; gap: 12px; }
  @media (max-width: 760px) { .nav-links { display: none; } }

  /* ---------- Hero ---------- */
  .hero {
    padding: clamp(56px, 9vw, 104px) 24px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero h1 {
    margin: 26px 0 0;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(38px, 7.4vw, 68px);
    line-height: 1.04;
    letter-spacing: -0.03em;
    text-wrap: balance;
  }
  .hero p {
    margin: 22px auto 0;
    max-width: 540px;
    font-size: clamp(16px, 2.2vw, 19px);
    line-height: 1.55;
    color: var(--muted);
    text-wrap: pretty;
  }
  .hero .btn { margin-top: 32px; }
  .hero__note { margin-top: 13px; font-size: 13.5px; color: var(--muted-2); }

  @keyframes wd-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
  @keyframes wd-sniff { 0%, 100% { transform: translateX(0) rotate(-3deg); } 50% { transform: translateX(3px) rotate(3deg); } }

  /* ---------- Phone mockup ---------- */
  .phone-stage {
    margin-top: clamp(40px, 6vw, 64px);
    position: relative;
    width: 384px;
    max-width: 92vw;
  }
  .phone-stage::before {
    content: "";
    position: absolute;
    inset: -6% -22% 3%;
    background: radial-gradient(56% 46% at 50% 38%, var(--accent-soft), transparent 72%);
    z-index: 0;
  }
  .phone {
    position: relative;
    z-index: 1;
    width: 100%;
    aspect-ratio: 402 / 874;
    container-type: inline-size;
    border-radius: 11.94% / 5.49%;
    overflow: hidden;
    background: var(--bg);
    box-shadow: var(--shadow-phone);
    animation: wd-float 6s ease-in-out infinite;
    border: 4px solid var(--line);
  }
  .phone__island {
    position: absolute;
    top: 2.74cqw; left: 50%; transform: translateX(-50%);
    width: 31.34cqw; height: 9.2cqw;
    border-radius: 5.97cqw;
    background: #000;
    z-index: 20;
  }
  .phone__status {
    display: flex; align-items: center; justify-content: space-between;
    padding: 5.22cqw 5.97cqw 0;
    position: relative; z-index: 10;
    font-family: var(--font-body); font-weight: 600;
    font-size: 4.23cqw; color: var(--ink);
  }
  .phone__status-icons { display: flex; align-items: center; gap: 1.74cqw; color: var(--ink); }
  .phone__body { height: 100%; display: flex; flex-direction: column; }
  .phone__brand {
    display: flex; align-items: center; gap: 2.24cqw;
    padding: 3.98cqw 7.46cqw 0;
  }
  .phone__brand-name { font-family: var(--font-display); font-weight: 600; font-size: 4.48cqw; }
  .phone__content {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    padding: 0 7.46cqw;
    text-align: center;
  }
  .phone__status-line {
    display: inline-flex; align-items: center; gap: 1.74cqw; margin-bottom: 4.48cqw;
    font-size: 3.48cqw; font-weight: 600; color: var(--muted);
  }
  .phone__figure {
    font-family: var(--font-display); font-weight: 700;
    font-size: 14.43cqw; line-height: 1; letter-spacing: -0.035em;
    color: var(--accent-text); font-variant-numeric: tabular-nums;
  }
  .phone__figure-sub { margin-top: 1.99cqw; font-size: 3.98cqw; color: var(--muted); }
  .phone__figure-sub strong { font-weight: 600; color: var(--ink); }
  .phone__meta { margin-top: 1.74cqw; font-size: 2.99cqw; color: var(--muted-2); }
  .phone__stats {
    margin-top: 6.97cqw; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr; gap: 2.99cqw;
  }
  .phone__stat {
    background: var(--surface); border: 1px solid var(--line);
    border-radius: 4.98cqw; padding: 3.98cqw 3.73cqw; text-align: left;
    box-shadow: var(--shadow-card);
  }
  .phone__stat-label {
    display: flex; align-items: center; gap: 1.74cqw;
    font-size: 2.74cqw; font-weight: 600; letter-spacing: 0.02em;
    text-transform: uppercase; color: var(--muted-2);
  }
  .phone__stat-dot { width: 2.24cqw; height: 2.24cqw; border-radius: 3px; background: var(--accent-text); }
  .phone__stat-dot--soft { opacity: 0.45; }
  .phone__stat-value {
    margin-top: 2.24cqw; font-family: var(--font-display); font-weight: 700;
    font-size: 5.47cqw; letter-spacing: -0.02em;
  }
  .phone__stat-desc { margin-top: 0.75cqw; font-size: 3.11cqw; color: var(--muted); }
  .phone__cta {
    margin: 0 7.46cqw 8.96cqw;
    height: 13.43cqw; border-radius: 999px; font-size: 3.98cqw; gap: 2.24cqw;
    justify-content: center;
  }
  .phone__cta svg { width: 4.48cqw; height: 4.48cqw; }
  .phone__home-indicator {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 8.46cqw; display: flex; justify-content: center; align-items: flex-end;
    padding-bottom: 1.99cqw; pointer-events: none;
  }
  .phone__home-indicator span {
    width: 34.58cqw; height: 1.24cqw; border-radius: 100px;
    background: color-mix(in srgb, var(--ink) 25%, transparent);
  }

  /* ---------- Steps ---------- */
  .steps-grid {
    margin-top: clamp(36px, 5vw, 56px);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
  }
  .step-card { padding: 28px 26px; }
  .step-card__top { display: flex; align-items: center; justify-content: space-between; }
  .step-card__icon {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-text);
    display: flex; align-items: center; justify-content: center;
  }
  .step-card__index { font-family: var(--font-mono); font-size: 13px; font-weight: 700; color: var(--muted-2); }
  .step-card h3 { margin: 20px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em; }
  .step-card p { margin: 8px 0 0; font-size: 15.5px; line-height: 1.5; color: var(--muted); text-wrap: pretty; }

  /* ---------- Privacy banner ---------- */
  .privacy-banner {
    position: relative;
    overflow: hidden;
    border-radius: 34px;
    background: #2b4430;
    color: #f4f1ea;
    padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  }
  .privacy-banner__mark { position: absolute; right: -40px; bottom: -50px; opacity: 0.14; pointer-events: none; }
  .privacy-banner__content { position: relative; z-index: 1; max-width: 640px; }
  .privacy-banner .pill-badge { background: rgba(244, 241, 234, 0.14); border: none; }
  .privacy-banner .pill-badge__label { color: inherit; }
  .privacy-banner h2 {
    margin: 20px 0 0;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(28px, 4.6vw, 46px); line-height: 1.08; letter-spacing: -0.025em;
    text-wrap: balance;
  }
  .privacy-banner p {
    margin: 18px 0 0; max-width: 560px;
    font-size: clamp(16px, 2.2vw, 18.5px); line-height: 1.6;
    color: rgba(244, 241, 234, 0.82); text-wrap: pretty;
  }
  .privacy-banner__tags { margin-top: 26px; display: flex; flex-wrap: wrap; gap: 10px; }
  .privacy-tag {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px; border-radius: 999px;
    background: rgba(244, 241, 234, 0.12);
    font-size: 14.5px; font-weight: 600;
  }

  /* ---------- Feature teasers ---------- */
  .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 18px;
  }
  .feature-card { padding: 32px 30px; }
  .feature-card__icon {
    width: 50px; height: 50px; border-radius: 50%;
    background: var(--accent-soft); color: var(--accent-text);
    display: flex; align-items: center; justify-content: center;
  }
  .feature-card h3 { margin: 20px 0 0; font-family: var(--font-display); font-weight: 700; font-size: 23px; letter-spacing: -0.02em; }
  .feature-card p { margin: 9px 0 0; font-size: 16px; line-height: 1.55; color: var(--muted); text-wrap: pretty; }

  /* ---------- FAQ ---------- */
  .faq-list { margin-top: clamp(32px, 5vw, 48px); display: flex; flex-direction: column; gap: 12px; }
  .faq-item { background: var(--surface); border: 1px solid var(--line); border-radius: 18px; overflow: hidden; }
  .faq-item summary {
    list-style: none;
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 20px 22px;
    cursor: pointer;
    font-family: var(--font-display); font-weight: 600; font-size: 17px; letter-spacing: -0.01em;
  }
  .faq-item summary::-webkit-details-marker { display: none; }
  .faq-item__chevron { flex-shrink: 0; color: var(--accent-text); transition: transform .25s ease; }
  .faq-item[open] .faq-item__chevron { transform: rotate(180deg); }
  .faq-item__answer { margin: 0; padding: 0 22px 22px; font-size: 15.5px; line-height: 1.6; color: var(--muted); text-wrap: pretty; }

  /* ---------- Final CTA ---------- */
  .final-cta {
    text-align: center;
    display: flex; flex-direction: column; align-items: center;
    padding: clamp(72px, 11vw, 120px) 24px clamp(56px, 8vw, 88px);
  }
  .final-cta__mark { display: inline-flex; animation: wd-sniff 2.4s ease-in-out infinite; transform-origin: 60% 80%; }
  .final-cta h2 {
    margin: 22px 0 0;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(30px, 5.4vw, 52px); line-height: 1.06; letter-spacing: -0.03em;
    text-wrap: balance;
  }
  .final-cta .btn { margin-top: 30px; }

  /* ---------- Footer ---------- */
  .site-footer { border-top: 1px solid var(--line); }
  .site-footer__row {
    padding: 26px 24px;
    display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
  }
  .site-footer__brand { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: var(--muted-2); }
  .site-footer nav { display: flex; flex-wrap: wrap; gap: 22px; }
  .site-footer nav a { font-size: 13.5px; color: var(--muted); transition: color .2s ease; }
  .site-footer nav a:hover { color: var(--ink); }

  /* ---------- Legal pages ---------- */
  .legal-page { padding: clamp(56px, 9vw, 104px) 24px clamp(72px, 11vw, 120px); }
  .legal-page__back {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 14px; font-weight: 500; color: var(--muted);
  }
  .legal-page__back:hover { color: var(--ink); }
  .legal-page h1 {
    margin: 22px 0 6px;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(32px, 5vw, 48px); letter-spacing: -0.03em;
  }
  .legal-page__meta { font-family: var(--font-mono); font-size: 12.5px; color: var(--muted-2); }
  .legal-content { margin-top: 40px; max-width: 680px; }
  .legal-content h2 {
    margin: 40px 0 12px;
    font-family: var(--font-display); font-weight: 700;
    font-size: clamp(20px, 2.6vw, 26px); letter-spacing: -0.02em;
  }
  .legal-content h2:first-child { margin-top: 0; }
  .legal-content h3 {
    margin: 24px 0 8px;
    font-family: var(--font-display); font-weight: 600; font-size: 18px;
  }
  .legal-content p { margin: 0 0 16px; font-size: 16px; line-height: 1.7; color: var(--muted); }
  .legal-content p strong { color: var(--ink); font-weight: 600; }
  .legal-content ul {
    margin: 0 0 16px; padding-left: 20px;
    font-size: 16px; line-height: 1.7; color: var(--muted);
  }
  .legal-content li { margin-bottom: 6px; }
  .legal-content a { color: var(--accent-text); text-decoration: underline; text-underline-offset: 2px; }
  .legal-content code {
    font-family: var(--font-mono); font-size: 0.9em;
    background: var(--accent-soft); padding: 1px 5px; border-radius: 4px;
  }
  .legal-content hr { border: none; border-top: 1px solid var(--line); margin: 40px 0; }
  .legal-content .placeholder {
    background: var(--accent-soft); color: var(--accent-text);
    padding: 1px 6px; border-radius: 4px; font-size: 0.94em;
  }
