/* ============================================================
   Kova — marketing site (kova.com)
   Pure static. Tokens mirror the Kova Design System v2.
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Schibsted+Grotesk:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=JetBrains+Mono:wght@400;500&display=swap');

/* ---------- Tokens ---------- */
:root {
  /* Brand */
  --kova-main:   #4F3673;
  --kova-shade:  #6F618C;
  --kova-tint:   #D8C3E0;
  --kova-deep:   #2A1F40;
  --kova-mist:   #F2EDF6;
  --kova-canvas: #FAF9FB;

  /* Functional */
  --kova-amber: #D4860A;
  --kova-sage:  #4A8C5C;
  --kova-coral: #C0452A;

  /* Status pairs */
  --status-scheduled-bg:   #EDE8F4;  --status-scheduled-text: #4F3673;
  --status-progress-bg:    #FDF0D8;  --status-progress-text:  #8A5A0A;
  --status-done-bg:        #E6F0EA;  --status-done-text:      #3A6B4A;
  --status-issue-bg:       #FAECE7;  --status-issue-text:     #993C1D;

  /* Surfaces & text */
  --surface-page:   #FAF9FB;
  --surface-card:   #FFFFFF;
  --surface-sunken: #F2EDF6;
  --text-primary:   #2A1F40;
  --text-secondary: #4A3F5C;
  --text-tertiary:  #8A7FA0;
  --text-inverse:   #FAF9FB;

  /* Borders */
  --border-subtle:  rgba(79, 54, 115, 0.08);
  --border-default: rgba(79, 54, 115, 0.14);
  --border-strong:  rgba(79, 54, 115, 0.24);

  --focus-ring: 0 0 0 3px rgba(79, 54, 115, 0.15);
  --kova-main-hover:  #3D2858;
  --kova-shade-hover: #5C4F76;

  /* Radii & shadows */
  --radius-sm: 6px; --radius-md: 8px; --radius-lg: 12px; --radius-xl: 16px; --radius-pill: 999px;
  --shadow-card:     0 1px 3px rgba(42,31,64,0.06), 0 1px 2px rgba(42,31,64,0.04);
  --shadow-elevated: 0 4px 16px rgba(79,54,115,0.12), 0 2px 4px rgba(42,31,64,0.06);
  --shadow-hero:     0 32px 64px -24px rgba(42,31,64,0.28), 0 8px 24px -12px rgba(79,54,115,0.18);

  /* Fonts */
  --font-display: 'Schibsted Grotesk', sans-serif;
  --font-body:    'Schibsted Grotesk', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  /* Marketing type scale (larger than the in-app scale) */
  --fs-display: clamp(40px, 6.2vw, 72px);
  --fs-h2:      clamp(28px, 3.6vw, 44px);
  --fs-h3:      clamp(20px, 2vw, 24px);
  --fs-lead:    clamp(17px, 1.5vw, 20px);
  --fs-body:    16px;

  /* Layout */
  --container: 1120px;
  --gutter: 24px;

  --transition-base: 0.15s ease;
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { color: var(--text-primary); font-family: var(--font-display); margin: 0; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; }

:focus-visible { outline: none; box-shadow: var(--focus-ring); border-radius: var(--radius-md); }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(72px, 10vw, 128px); }
.eyebrow {
  font-family: var(--font-display); font-size: 12px; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--kova-shade);
  margin: 0 0 16px;
}
.section-head { max-width: 660px; margin: 0 auto clamp(40px, 5vw, 64px); text-align: center; }
.section-head.left { margin-inline: 0; text-align: left; }
.section-head h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.section-head p { font-size: var(--fs-lead); color: var(--text-secondary); margin-top: 18px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: -0.01em;
  padding: 12px 20px; border-radius: var(--radius-md); border: 1px solid transparent;
  cursor: pointer; transition: background var(--transition-base), color var(--transition-base),
    border-color var(--transition-base), transform var(--transition-base); white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-lg { padding: 15px 26px; font-size: 16px; }
.btn-primary { background: var(--kova-main); color: var(--text-inverse); }
.btn-primary:hover { background: var(--kova-main-hover); }
.btn-secondary { background: var(--surface-card); color: var(--text-primary); border-color: var(--border-default); }
.btn-secondary:hover { background: var(--kova-mist); border-color: var(--border-strong); }
.btn-ghost { background: transparent; color: var(--text-primary); }
.btn-ghost:hover { background: var(--kova-mist); }
.btn-block { width: 100%; }

/* ---------- Navigation ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 249, 251, 0.72);
  backdrop-filter: saturate(160%) blur(14px); -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.nav.scrolled { border-bottom-color: var(--border-subtle); box-shadow: var(--shadow-card); }
.nav-inner { display: flex; align-items: center; gap: 32px; height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; }
.brand svg, .brand img { width: 30px; height: 30px; border-radius: 8px; }
.brand-name { font-family: var(--font-display); font-weight: 800; font-size: 20px; letter-spacing: -0.02em; text-transform: uppercase; color: var(--text-primary); }
.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links a {
  font-family: var(--font-display); font-weight: 500; font-size: 14.5px; color: var(--text-secondary);
  padding: 8px 12px; border-radius: var(--radius-md); transition: background var(--transition-base), color var(--transition-base);
}
.nav-links a:hover { color: var(--text-primary); background: var(--kova-mist); }
.nav-cta { display: flex; align-items: center; gap: 6px; margin-left: 8px; }
.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding-top: clamp(56px, 7vw, 88px); padding-bottom: clamp(40px, 6vw, 72px); }
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 50% at 50% -8%, rgba(216,195,224,0.35), transparent 70%),
    radial-gradient(40% 40% at 88% 8%, rgba(216,195,224,0.22), transparent 72%);
}
.hero-grid { display: grid; grid-template-columns: 1.02fr 0.98fr; gap: clamp(40px, 5vw, 72px); align-items: center; }
.hero-copy { max-width: 560px; }
.pill-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 12px 6px 8px;
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-pill);
  font-size: 13px; font-weight: 500; color: var(--text-secondary); box-shadow: var(--shadow-card); margin-bottom: 24px;
}
.pill-badge .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--kova-sage); }
.hero h1 {
  font-size: var(--fs-display); font-weight: 800; letter-spacing: -0.04em; line-height: 1.02; color: var(--text-primary);
}
.hero h1 .accent { color: var(--kova-main); }
.hero-lead { font-size: var(--fs-lead); color: var(--text-secondary); margin-top: 22px; max-width: 500px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-note { display: flex; align-items: center; gap: 8px; margin-top: 18px; font-size: 13.5px; color: var(--text-tertiary); }
.hero-note svg { width: 16px; height: 16px; color: var(--kova-sage); }

/* ---------- Hero product mockup ---------- */
.mockup {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hero); overflow: hidden; transform: perspective(1600px) rotateY(-3deg) rotateX(1.5deg);
}
.mockup-bar { display: flex; align-items: center; gap: 8px; padding: 12px 16px; border-bottom: 1px solid var(--border-subtle); background: var(--surface-card); }
.mockup-bar .dots { display: flex; gap: 6px; }
.mockup-bar .dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border-strong); }
.mockup-bar .addr {
  margin-left: 10px; font-family: var(--font-mono); font-size: 11.5px; color: var(--text-tertiary);
  background: var(--surface-sunken); padding: 4px 12px; border-radius: var(--radius-pill);
}
.mockup-body { padding: 18px; background: var(--surface-page); }
.dash-head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 14px; }
.dash-head h3 { font-size: 17px; font-weight: 800; letter-spacing: -0.03em; }
.dash-head .date { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); }
.stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.stat {
  background: var(--surface-card); border: 0.5px solid var(--border-default); border-radius: var(--radius-md); padding: 12px;
}
.stat .num { font-family: var(--font-display); font-size: 24px; font-weight: 800; letter-spacing: -0.05em; line-height: 1; color: var(--text-primary); }
.stat .lbl { font-size: 9.5px; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-tertiary); margin-top: 6px; }
.stat.warn .num { color: var(--kova-amber); }
.stat.alert .num { color: var(--kova-coral); }

.jcard {
  background: var(--surface-card); border: 0.5px solid var(--border-subtle);
  border-radius: var(--radius-lg); padding: 13px 15px; box-shadow: var(--shadow-card); margin-bottom: 8px;
}
.jcard.s-done { opacity: 0.75; }
.jc-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; margin-bottom: 7px; }
.jc-client { font-family: var(--font-display); font-size: 14px; font-weight: 600; letter-spacing: -0.01em; line-height: 1.4; color: var(--text-primary); }
.jc-client .mark {
  display: inline-block; padding: 0.04em 0.32em; margin: 0 -0.18em;
  box-decoration-break: clone; -webkit-box-decoration-break: clone;
}
.jcard .jc-client .mark { background: rgba(79, 54, 115, 0.18); border-radius: 0.7em 0.4em 0.6em 0.5em; transform: rotate(-0.5deg); }
.jcard.s-progress .jc-client .mark { background: rgba(212, 134, 10, 0.24); border-radius: 0.5em 0.7em 0.4em 0.6em; transform: rotate(0.6deg); }
.jcard.s-done .jc-client .mark { background: rgba(74, 140, 92, 0.24); border-radius: 0.6em 0.5em 0.7em 0.4em; transform: rotate(-0.4deg); }
.jcard.s-issue .jc-client .mark { background: rgba(192, 69, 42, 0.22); border-radius: 0.4em 0.6em 0.5em 0.7em; transform: rotate(0.7deg); }
.jc-addr { font-size: 12px; line-height: 1.5; color: var(--text-secondary); }
.jc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding-top: 9px; margin-top: 9px; border-top: 0.5px solid var(--border-subtle); }
.jc-worker { display: flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 500; color: var(--text-secondary); }
.jc-foot .av { width: 22px; height: 22px; font-size: 10px; }
.jc-activity { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); white-space: nowrap; }
.jcard .av {
  width: 22px; height: 22px; flex: none; border-radius: 50%; background: var(--surface-sunken);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 700; font-size: 10px; color: var(--kova-main);
}
.pill {
  flex: none; display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 11px; font-weight: 600; letter-spacing: -0.01em;
}
.pill .pdot { width: 6px; height: 6px; border-radius: 50%; }
.pill.scheduled { background: var(--status-scheduled-bg); color: var(--status-scheduled-text); }
.pill.scheduled .pdot { background: var(--status-scheduled-text); }
.pill.progress { background: var(--status-progress-bg); color: var(--status-progress-text); }
.pill.progress .pdot { background: var(--status-progress-text); }
.pill.done { background: var(--status-done-bg); color: var(--status-done-text); }
.pill.done .pdot { background: var(--status-done-text); }
.pill.issue { background: var(--status-issue-bg); color: var(--status-issue-text); }
.pill.issue .pdot { background: var(--status-issue-text); }

/* ---------- Trust / built-for strip ---------- */
.trust { border-block: 1px solid var(--border-subtle); background: var(--surface-card); }
.trust-inner { padding-block: 28px; display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 36px; }
.trust-inner .lead { font-size: 13px; color: var(--text-tertiary); font-weight: 500; }
.trade { display: flex; align-items: center; gap: 9px; font-family: var(--font-display); font-weight: 700; font-size: 16px; letter-spacing: -0.02em; color: var(--text-secondary); }
.trade svg { width: 20px; height: 20px; color: var(--kova-shade); }

/* ---------- Problem ---------- */
.problem-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.pcard {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-card);
}
.pcard .ico { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--surface-sunken); display: grid; place-items: center; margin-bottom: 18px; }
.pcard .ico svg { width: 22px; height: 22px; color: var(--kova-coral); }
.pcard h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.pcard p { font-size: 15px; color: var(--text-secondary); }

/* ---------- Features ---------- */
.features { background: var(--surface-card); border-block: 1px solid var(--border-subtle); }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border-subtle); border: 1px solid var(--border-subtle); border-radius: var(--radius-xl); overflow: hidden; }
.feat {
  background: var(--surface-card); padding: 32px; transition: background var(--transition-base);
}
.feat:hover { background: var(--surface-page); }
.feat .ico { width: 44px; height: 44px; border-radius: var(--radius-md); background: var(--kova-main); display: grid; place-items: center; margin-bottom: 20px; }
.feat .ico svg { width: 22px; height: 22px; color: var(--kova-tint); }
.feat h3 { font-size: 18px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.feat p { font-size: 14.5px; color: var(--text-secondary); }

/* ---------- How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; }
.step .n {
  width: 40px; height: 40px; border-radius: 50%; background: var(--kova-main); color: var(--text-inverse);
  display: grid; place-items: center; font-family: var(--font-display); font-weight: 800; font-size: 16px; margin-bottom: 18px;
}
.step h3 { font-size: var(--fs-h3); font-weight: 700; letter-spacing: -0.02em; margin-bottom: 8px; }
.step p { font-size: 15px; color: var(--text-secondary); }
.step:not(:last-child)::after {
  content: ""; position: absolute; top: 20px; left: 56px; right: -14px; height: 1px;
  background: linear-gradient(to right, var(--border-strong), transparent);
}

/* ---------- Worker app ---------- */
.worker { background: var(--kova-deep); color: var(--text-inverse); overflow: hidden; }
.worker h2, .worker h3 { color: var(--text-inverse); }
.worker .eyebrow { color: var(--kova-tint); }
.worker-grid { display: grid; grid-template-columns: 1fr 0.85fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.worker-copy { max-width: 520px; }
.worker-copy h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.worker-copy > p { font-size: var(--fs-lead); color: rgba(250,249,251,0.72); margin-top: 18px; }
.worker-list { margin-top: 28px; display: grid; gap: 16px; }
.worker-list li { display: flex; gap: 14px; align-items: flex-start; }
.worker-list .tick { width: 26px; height: 26px; flex: none; border-radius: 50%; background: rgba(216,195,224,0.16); display: grid; place-items: center; }
.worker-list .tick svg { width: 15px; height: 15px; color: var(--kova-tint); }
.worker-list .wt { font-family: var(--font-display); font-weight: 600; font-size: 15.5px; color: var(--text-inverse); letter-spacing: -0.01em; }
.worker-list .wd { font-size: 14px; color: rgba(250,249,251,0.6); margin-top: 2px; }

/* Phone mockup */
.phone-wrap { display: grid; place-items: center; }
.phone {
  width: 290px; background: #0F0A1A; border-radius: 40px; padding: 12px; box-shadow: var(--shadow-hero);
  border: 1px solid rgba(216,195,224,0.16);
}
.phone-screen { background: var(--surface-page); border-radius: 30px; overflow: hidden; }
.phone-top { background: var(--kova-main); padding: 18px 18px 16px; color: var(--text-inverse); }
.phone-top .greet { font-size: 12px; color: var(--kova-tint); font-weight: 500; }
.phone-top .day { font-family: var(--font-display); font-size: 20px; font-weight: 800; letter-spacing: -0.03em; margin-top: 2px; }
.phone-list { padding: 14px; display: grid; gap: 10px; }
.wjob {
  background: var(--surface-card); border: 0.5px solid var(--border-default);
  border-radius: var(--radius-lg); padding: 13px; box-shadow: var(--shadow-card);
}
.wjob.done { opacity: 0.72; }
.wjob .wtime { font-family: var(--font-mono); font-size: 11px; color: var(--text-tertiary); }
.wjob .wclient { font-family: var(--font-display); font-size: 14.5px; font-weight: 600; letter-spacing: -0.01em; color: var(--text-primary); margin-top: 3px; }
.wjob .waddr { font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }
.wjob .wfoot { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.wcheck {
  font-family: var(--font-display); font-weight: 600; font-size: 12.5px; color: var(--text-inverse);
  background: var(--kova-main); padding: 7px 14px; border-radius: var(--radius-pill);
}
.wjob.done .wcheck { background: var(--status-done-bg); color: var(--status-done-text); }

/* ---------- CTA + newsletter ---------- */
.cta-band {
  background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-xl);
  box-shadow: var(--shadow-elevated); padding: clamp(36px, 5vw, 64px); text-align: center;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: ""; position: absolute; inset: 0; z-index: 0;
  background: radial-gradient(70% 120% at 50% -20%, rgba(216,195,224,0.4), transparent 70%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { font-size: var(--fs-h2); font-weight: 800; letter-spacing: -0.03em; line-height: 1.1; }
.cta-band p { font-size: var(--fs-lead); color: var(--text-secondary); margin: 16px auto 0; max-width: 480px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

.newsletter { max-width: 480px; margin: 30px auto 0; }
.newsletter .nl-label { font-size: 13px; color: var(--text-tertiary); margin-bottom: 12px; }
.newsletter .nl-fine { font-size: 12.5px; color: var(--text-tertiary); margin-top: 14px; }
.nl-form { display: flex; gap: 8px; }
.nl-input {
  flex: 1; font-family: var(--font-body); font-size: 15px; color: var(--text-primary);
  background: var(--surface-page); border: 1px solid var(--border-default); border-radius: var(--radius-md);
  padding: 12px 16px; transition: border-color var(--transition-base), box-shadow var(--transition-base);
}
.nl-input::placeholder { color: var(--text-tertiary); }
.nl-input:focus { outline: none; border-color: var(--kova-main); box-shadow: var(--focus-ring); }
.nl-msg { font-size: 13px; margin-top: 12px; min-height: 18px; color: var(--kova-sage); font-weight: 500; }
.nl-msg.err { color: var(--kova-coral); }

/* ---------- Footer ---------- */
.footer { background: var(--surface-page); border-top: 1px solid var(--border-subtle); padding-block: 56px 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { font-size: 14px; color: var(--text-tertiary); max-width: 280px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14.5px; color: var(--text-secondary); padding-block: 6px; transition: color var(--transition-base); }
.footer-col a:hover { color: var(--kova-main); }
.footer-bottom { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--border-subtle); }
.footer-bottom p { font-size: 13px; color: var(--text-tertiary); }
.footer-bottom .mono { font-family: var(--font-mono); }

/* ---------- Scroll reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .mockup { transform: none; }
}

/* ---------- Mobile menu panel ---------- */
.mobile-menu { display: none; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 620px; }
  .mockup { transform: none; max-width: 560px; margin-inline: auto; }
  .worker-grid { grid-template-columns: 1fr; gap: 48px; }
  .phone-wrap { order: -1; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle {
    display: grid; place-items: center; margin-left: auto; width: 42px; height: 42px;
    background: transparent; border: 1px solid var(--border-default); border-radius: var(--radius-md); cursor: pointer;
  }
  .nav-toggle svg { width: 22px; height: 22px; color: var(--text-primary); }
  .nav-cta { margin-left: 10px; }
  .mobile-menu {
    display: block; position: fixed; inset: 68px 0 auto 0; z-index: 49;
    background: var(--surface-card); border-bottom: 1px solid var(--border-default); box-shadow: var(--shadow-elevated);
    transform: translateY(-12px); opacity: 0; pointer-events: none; transition: transform var(--transition-base), opacity var(--transition-base);
  }
  .mobile-menu.open { transform: none; opacity: 1; pointer-events: auto; }
  .mobile-menu a { display: block; padding: 14px var(--gutter); font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--text-primary); border-bottom: 1px solid var(--border-subtle); }
  .mobile-menu .mm-cta { padding: 16px var(--gutter) 20px; }
}

@media (max-width: 680px) {
  :root { --gutter: 18px; }
  .problem-grid, .feat-grid, .steps { grid-template-columns: 1fr; }
  .step:not(:last-child)::after { display: none; }
  .stat-row { grid-template-columns: repeat(3, 1fr); }
  .hero-actions .btn { flex: 1; }
  .nl-form { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
