/* ============================================================
   Kontingo — External Workforce Management
   Design-DNA: "Warm Editorial B2B" — wertig, menschlich, ruhig.
   Self-hosted Fonts (DSGVO, keine Laufzeit-CDN).
   ============================================================ */

@font-face {
  font-family: 'Fraunces';
  src: url('../fonts/fraunces-var.woff2') format('woff2');
  font-weight: 340 640;
  font-stretch: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Hanken Grotesk';
  src: url('../fonts/hanken-var.woff2') format('woff2');
  font-weight: 400 800;
  font-display: swap;
}

:root {
  /* Farbwelt — warmes Paper / Ink / Terracotta / Petrol / Amber */
  --paper:      #F6F2EC;
  --paper-2:    #EFE9DF;
  --paper-3:    #E7DFD1;
  --ink:        #17130E;
  --ink-2:      #3A332A;
  --ink-3:      #6B6154;
  --line:       #DED4C4;
  --line-soft:  #E8E0D3;
  --white:      #FFFDF9;

  --terra:      #CF5D34;   /* Primär-Akzent */
  --terra-dark: #B24A26;
  --terra-tint: #F5E3D8;
  --petrol:     #1F4A45;   /* Sekundär — Daten / Trust */
  --petrol-2:   #2E6A62;
  --amber:      #E39B3C;   /* Ampel-Highlight */
  --amber-tint: #F7E9CF;
  --green:      #4B7A52;   /* Ampel grün */
  --red:        #B23A2E;   /* Ampel rot */

  --r-sm: 8px;
  --r:    14px;
  --r-lg: 22px;
  --r-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(23,19,14,.06), 0 2px 8px rgba(23,19,14,.05);
  --shadow:    0 4px 14px rgba(23,19,14,.08), 0 18px 40px -18px rgba(23,19,14,.22);
  --shadow-lg: 0 20px 60px -20px rgba(23,19,14,.35);

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 56px);

  --ff-display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --ff-body: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--ff-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  /* feine Papier-Textur via Rausch-SVG */
  background-image:
    radial-gradient(1200px 600px at 78% -8%, rgba(207,93,52,.05), transparent 60%),
    radial-gradient(900px 500px at 5% 10%, rgba(31,74,69,.04), transparent 55%);
}

::selection { background: var(--terra); color: var(--white); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-optical-sizing: auto;
  font-weight: 560;
  line-height: 1.06;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.eyebrow {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--terra-dark);
  display: inline-flex;
  align-items: center;
  gap: .55em;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 1.5px;
  background: var(--terra);
  display: inline-block;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .5em;
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: .98rem;
  padding: .82em 1.5em;
  border-radius: var(--r-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--terra);
  color: var(--white);
  box-shadow: 0 8px 22px -8px rgba(207,93,52,.6);
}
.btn-primary:hover { background: var(--terra-dark); transform: translateY(-2px); box-shadow: 0 14px 30px -10px rgba(207,93,52,.7); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ink { background: var(--ink); color: var(--paper); }
.btn-ink:hover { background: #241d15; transform: translateY(-2px); }
.btn .arw { transition: transform .2s ease; }
.btn:hover .arw { transform: translateX(3px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  backdrop-filter: saturate(140%) blur(10px);
  background: rgba(246,242,236,.82);
  border-bottom: 1px solid transparent;
  transition: border-color .3s ease, background .3s ease;
}
.site-header.scrolled { border-color: var(--line); background: rgba(246,242,236,.94); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 74px;
}
.brand { display: flex; align-items: center; gap: .6em; font-family: var(--ff-display); font-weight: 600; font-size: 1.34rem; letter-spacing: -.02em; }
.brand .logo { width: 30px; height: 30px; flex: none; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-weight: 500; font-size: .96rem; color: var(--ink-2); transition: color .18s ease; position: relative; }
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content:""; position:absolute; left:0; bottom:-5px; width:0; height:1.5px; background:var(--terra); transition:width .22s ease;
}
.nav-links a:hover::after { width: 100%; }
.nav-cta { display: flex; align-items: center; gap: .9rem; }

/* Sprachumschalter */
.lang { display: inline-flex; align-items: center; gap: .1em; font-size: .82rem; font-weight: 600; letter-spacing: .04em; }
.lang a { padding: .3em .5em; border-radius: var(--r-sm); color: var(--ink-3); transition: color .18s ease, background .18s ease; }
.lang a:hover { color: var(--ink); background: var(--paper-2); }
.lang a[aria-current="true"] { color: var(--ink); background: var(--paper-3); }
.lang span { color: var(--line); }

/* Hinweis-Zeile (z.B. Interface-Sprache) */
.notice-line {
  display: inline-flex; align-items: center; gap: .6em;
  background: var(--amber-tint); color: #7d4d0e;
  border-radius: var(--r-pill); padding: .5em 1.1em;
  font-size: .86rem; font-weight: 500; margin-top: 1.4rem;
}
.notice-line svg { width: 16px; height: 16px; flex: none; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); margin: 5px 0; transition: .25s; }

/* ---------- Hero ---------- */
.hero { padding: clamp(48px, 8vw, 96px) 0 clamp(40px, 6vw, 72px); position: relative; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 5vw, 68px); align-items: center; }
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.5rem);
  font-weight: 500;
  margin: 1.1rem 0 0;
}
.hero h1 em { font-style: italic; color: var(--terra); font-weight: 480; }
.hero .lede {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: var(--ink-2);
  margin: 1.4rem 0 2rem;
  max-width: 34ch;
}
.hero-actions { display: flex; gap: .9rem; flex-wrap: wrap; align-items: center; }
.hero-trust { margin-top: 2.2rem; display: flex; gap: 1.6rem; flex-wrap: wrap; color: var(--ink-3); font-size: .86rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .5em; }
.hero-trust .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); }

/* ---------- Product mockup card ---------- */
.mock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  position: relative;
}
.mock-bar { display: flex; align-items: center; gap: 7px; padding: 12px 16px; border-bottom: 1px solid var(--line-soft); background: var(--paper-2); }
.mock-bar i { width: 10px; height: 10px; border-radius: 50%; background: var(--line); display: inline-block; }
.mock-bar i:nth-child(1){ background:#E0876B; } .mock-bar i:nth-child(2){ background:var(--amber); } .mock-bar i:nth-child(3){ background:var(--green); }
.mock-url { margin-left: 10px; font-size: .74rem; color: var(--ink-3); font-family: var(--ff-body); letter-spacing: .01em; }
.mock-body { padding: 20px; }
.hero-mock { transform: rotate(-.6deg); }
.hero-mock:hover { transform: rotate(0); transition: transform .5s cubic-bezier(.2,.8,.2,1); }

/* Timesheet grid mock */
.ts { font-size: .8rem; }
.ts-head { display:flex; justify-content: space-between; align-items:baseline; margin-bottom: 12px; }
.ts-head strong { font-family: var(--ff-display); font-weight: 560; font-size: 1.02rem; }
.ts-tag { font-size: .68rem; font-weight: 600; color: var(--amber); background: var(--amber-tint); padding: 2px 9px; border-radius: var(--r-pill); }
.ts table { width: 100%; border-collapse: collapse; }
.ts th, .ts td { padding: 7px 4px; text-align: center; border-bottom: 1px solid var(--line-soft); }
.ts th { font-size: .64rem; text-transform: uppercase; letter-spacing: .06em; color: var(--ink-3); font-weight: 600; }
.ts td:first-child, .ts th:first-child { text-align: left; color: var(--ink-2); font-weight: 500; white-space: nowrap; }
.ts .sum { font-weight: 700; color: var(--petrol); }
.ts .muted { color: var(--line); }
.ts-foot { margin-top: 12px; font-size: .7rem; color: var(--ink-3); display:flex; justify-content: space-between; }

/* ---------- Section scaffolding ---------- */
section { position: relative; }
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section-head { max-width: 60ch; margin-bottom: clamp(36px, 5vw, 60px); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3.05rem); margin-top: .9rem; }
.section-head p { color: var(--ink-2); font-size: 1.1rem; margin-top: 1rem; }

/* ---------- Pain strip ---------- */
.pain { background: var(--ink); color: var(--paper); }
.pain .eyebrow { color: var(--amber); }
.pain .eyebrow::before { background: var(--amber); }
.pain h2 { color: var(--paper); }
.pain-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: rgba(246,242,236,.12); border-radius: var(--r); overflow: hidden; margin-top: 42px; }
.pain-cell { background: var(--ink); padding: 30px 26px; }
.pain-cell .n { font-family: var(--ff-display); font-size: 2.2rem; color: var(--terra); font-weight: 500; }
.pain-cell h3 { color: var(--paper); font-family: var(--ff-body); font-size: 1.02rem; font-weight: 600; margin: 10px 0 8px; letter-spacing: 0; }
.pain-cell p { color: rgba(246,242,236,.62); font-size: .92rem; }

/* ---------- Features ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 30px 28px 32px;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease, border-color .28s ease;
  position: relative; overflow: hidden;
}
.feat:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: var(--paper-3); }
.feat .ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--terra-tint); color: var(--terra-dark);
  margin-bottom: 20px;
}
.feat .ic svg { width: 23px; height: 23px; }
.feat.petrol .ic { background: #DCEAE6; color: var(--petrol); }
.feat.amber .ic { background: var(--amber-tint); color: #A66A17; }
.feat h3 { font-size: 1.28rem; margin-bottom: 9px; }
.feat p { color: var(--ink-2); font-size: .96rem; }
.feat .num { position: absolute; top: 22px; right: 26px; font-family: var(--ff-display); color: var(--line); font-size: 1.1rem; font-weight: 600; }

/* ---------- Screens showcase ---------- */
.screens { background: var(--paper-2); }
.screen-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(26px, 4vw, 52px); align-items: center; margin-bottom: clamp(40px, 6vw, 80px); }
.screen-row:last-child { margin-bottom: 0; }
.screen-row.flip .screen-copy { order: 2; }
.screen-copy .tag { font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--petrol-2); }
.screen-copy h3 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin: .6rem 0 .9rem; }
.screen-copy p { color: var(--ink-2); }
.screen-copy ul { list-style: none; margin-top: 1.1rem; display: grid; gap: .6rem; }
.screen-copy li { padding-left: 1.7em; position: relative; font-size: .96rem; color: var(--ink-2); }
.screen-copy li::before { content: "✓"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }

/* Burndown mock */
.burn { font-size: .78rem; }
.burn-head { display:flex; justify-content: space-between; align-items:center; margin-bottom: 4px; }
.burn-head strong { font-family: var(--ff-display); font-size: 1rem; font-weight: 560; }
.burn-ampel { font-size: .66rem; font-weight: 700; padding: 3px 10px; border-radius: var(--r-pill); background: var(--amber-tint); color: #9a5f13; }
.burn-stats { display:flex; gap: 20px; margin: 12px 0 16px; }
.burn-stats div span { display:block; font-size: .66rem; color: var(--ink-3); text-transform: uppercase; letter-spacing: .05em; }
.burn-stats div strong { font-size: 1.1rem; font-family: var(--ff-display); font-weight: 560; }
.burn-stats .neg strong { color: var(--red); }
.chart { height: 130px; }

/* Availability calendar mock */
.cal { font-size: .74rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px; margin-top: 10px; }
.cal-grid .d { aspect-ratio: 1; border-radius: 8px; display: grid; place-content: center; background: var(--paper-2); color: var(--ink-3); font-weight: 500; position: relative; font-size: .72rem; }
.cal-grid .d small { position: absolute; top: 3px; left: 5px; font-size: .55rem; opacity: .6; }
.cal-grid .on { background: #DCEAE6; color: var(--petrol); }
.cal-grid .re { background: var(--terra-tint); color: var(--terra-dark); }
.cal-grid .ur { background: var(--amber-tint); color: #9a5f13; }
.cal-grid .nv { background: var(--paper-3); color: var(--ink-3); }
.cal-legend { display:flex; gap: 12px; flex-wrap: wrap; margin-top: 12px; font-size: .68rem; color: var(--ink-3); }
.cal-legend b { width:9px; height:9px; border-radius: 3px; display:inline-block; margin-right: 4px; vertical-align: middle; }

/* Invoice mock */
.inv { font-size: .76rem; }
.inv-top { display:flex; justify-content: space-between; border-bottom: 1px solid var(--line-soft); padding-bottom: 12px; margin-bottom: 12px; }
.inv-top .r { text-align: right; }
.inv h4 { font-family: var(--ff-display); font-size: 1.05rem; font-weight: 560; }
.inv table { width: 100%; border-collapse: collapse; margin: 6px 0; }
.inv td { padding: 6px 0; border-bottom: 1px solid var(--line-soft); }
.inv td:last-child { text-align: right; font-variant-numeric: tabular-nums; }
.inv .tot { font-weight: 700; color: var(--petrol); border-bottom: none; padding-top: 10px; }
.inv-badge { font-size: .64rem; font-weight: 700; color: var(--green); background: #E1EDDF; padding: 2px 8px; border-radius: var(--r-pill); }

/* ---------- Trust / security ---------- */
.trust { background: var(--petrol); color: var(--paper); }
.trust .eyebrow { color: var(--amber); } .trust .eyebrow::before { background: var(--amber); }
.trust h2 { color: var(--paper); }
.trust .section-head p { color: rgba(246,242,236,.72); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.tcard { background: rgba(246,242,236,.06); border: 1px solid rgba(246,242,236,.13); border-radius: var(--r); padding: 26px 24px; }
.tcard .ic { color: var(--amber); margin-bottom: 14px; }
.tcard .ic svg { width: 26px; height: 26px; }
.tcard h3 { color: var(--paper); font-family: var(--ff-body); font-weight: 600; font-size: 1.05rem; margin-bottom: 8px; letter-spacing: 0; }
.tcard p { color: rgba(246,242,236,.66); font-size: .9rem; }

/* ---------- Compare ---------- */
.compare-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 12px; }
.ccard { border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px 28px; background: var(--white); }
.ccard h3 { font-family: var(--ff-body); font-weight: 700; font-size: 1.06rem; letter-spacing: 0; margin-bottom: 6px; }
.ccard .sub { font-size: .82rem; color: var(--ink-3); margin-bottom: 16px; }
.ccard ul { list-style: none; display: grid; gap: .6rem; }
.ccard li { font-size: .92rem; padding-left: 1.6em; position: relative; color: var(--ink-2); }
.ccard.us { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.ccard.us h3, .ccard.us .sub { color: var(--paper); }
.ccard.us li { color: rgba(246,242,236,.8); }
.ccard li.no::before { content: "—"; position: absolute; left: 0; color: var(--ink-3); }
.ccard li.yes::before { content: "✓"; position: absolute; left: 0; color: var(--terra); font-weight: 700; }
.ccard.us li.yes::before { color: var(--amber); }

/* ---------- Pricing ---------- */
.pricing .section-head { text-align: center; margin-inline: auto; }
.price-note { text-align:center; color: var(--ink-3); font-size: .9rem; margin-top: -18px; margin-bottom: 34px; }
.plans { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.plan {
  border: 1px solid var(--line); border-radius: var(--r); background: var(--white);
  padding: 24px 20px; display: flex; flex-direction: column;
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.plan:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.plan.hi { border-color: var(--terra); box-shadow: 0 14px 40px -18px rgba(207,93,52,.5); position: relative; }
.plan.hi::before { content: "Empfohlen"; position: absolute; top: -11px; left: 50%; transform: translateX(-50%); background: var(--terra); color: var(--white); font-size: .66rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 12px; border-radius: var(--r-pill); }
.plan .pname { font-family: var(--ff-display); font-size: 1.2rem; font-weight: 560; }
.plan .prange { font-size: .78rem; color: var(--ink-3); margin: 3px 0 16px; }
.plan .pprice { font-family: var(--ff-display); font-size: 2rem; font-weight: 560; color: var(--ink); line-height: 1; }
.plan .pprice small { font-size: .8rem; color: var(--ink-3); font-family: var(--ff-body); font-weight: 500; }
.plan .pmin { font-size: .76rem; color: var(--ink-3); margin-top: 8px; min-height: 1.1em; }
.plan .pline { height: 1px; background: var(--line-soft); margin: 18px 0; }
.plan .pfeat { font-size: .82rem; color: var(--ink-2); }

.price-secondary { display: grid; grid-template-columns: 1.3fr 1fr; gap: 20px; margin-top: 22px; }
.pbox { border: 1px solid var(--line); border-radius: var(--r); background: var(--paper-2); padding: 26px 28px; }
.pbox h4 { font-family: var(--ff-body); font-weight: 700; font-size: 1.02rem; letter-spacing: 0; margin-bottom: 6px; }
.pbox p { font-size: .88rem; color: var(--ink-3); margin-bottom: 14px; }
.tier-row { display:flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.tier-row:last-child { border-bottom: none; }
.tier-row b { font-variant-numeric: tabular-nums; color: var(--petrol); }
.pbox-once div { display:flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--line); font-size: .92rem; }
.pbox-once div:last-child { border-bottom: none; }
.pbox-once b { color: var(--petrol); }

/* ---------- FAQ ---------- */
.faq-list { max-width: 800px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 0; display: flex; justify-content: space-between; align-items: center; gap: 20px; font-family: var(--ff-display); font-size: 1.2rem; font-weight: 500; color: var(--ink); }
.faq-q .pm { flex: none; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--line); display: grid; place-content: center; transition: .25s; font-family: var(--ff-body); }
.faq-item.open .pm { background: var(--terra); border-color: var(--terra); color: var(--white); transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .32s ease; }
.faq-a p { padding-bottom: 24px; color: var(--ink-2); max-width: 66ch; }

/* ---------- Final CTA ---------- */
.cta-final { background: var(--ink); color: var(--paper); text-align: center; }
.cta-final h2 { color: var(--paper); font-size: clamp(2.1rem, 4.5vw, 3.4rem); max-width: 18ch; margin-inline: auto; }
.cta-final p { color: rgba(246,242,236,.7); margin: 1.2rem auto 2rem; max-width: 48ch; font-size: 1.1rem; }
.cta-contact { display:flex; gap: 1.6rem; justify-content: center; flex-wrap: wrap; margin-top: 2.2rem; color: rgba(246,242,236,.7); font-size: .92rem; }
.cta-contact a { color: var(--amber); }

/* ---------- Footer ---------- */
.site-footer { background: #100D09; color: rgba(246,242,236,.6); padding: 56px 0 30px; font-size: .9rem; }
.foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(246,242,236,.1); }
.foot-brand { display:flex; align-items:center; gap:.5em; font-family: var(--ff-display); font-size: 1.3rem; color: var(--paper); margin-bottom: 12px; }
.foot-brand .logo { width: 26px; height: 26px; }
.foot-col h5 { color: var(--paper); font-family: var(--ff-body); font-weight: 600; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.foot-col a { display: block; padding: 5px 0; color: rgba(246,242,236,.6); transition: color .18s; }
.foot-col a:hover { color: var(--amber); }
.foot-bottom { display:flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; padding-top: 24px; font-size: .82rem; color: rgba(246,242,236,.45); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.8,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-mock { max-width: 480px; margin-top: 8px; }
  .feat-grid, .trust-grid, .compare-grid, .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .plans { grid-template-columns: repeat(2, 1fr); }
  .screen-row, .price-secondary, .foot-grid { grid-template-columns: 1fr; }
  .screen-row.flip .screen-copy { order: 0; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: block; }
  .site-header.open .nav-links {
    display: flex; position: absolute; top: 74px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 20px;
  }
  .site-header.open .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
}
@media (max-width: 620px) {
  .pain-grid, .feat-grid, .trust-grid, .compare-grid, .plans { grid-template-columns: 1fr; }
  .hero-trust { gap: .8rem 1.2rem; }
  body { font-size: 16px; }
}
