/* WispBooks marketing site — design tokens per spec/ux/design-system.md */

:root {
  --page: #f7f3ee;
  --band: #efe7dc;
  --card: #fffdfa;
  --paper: #fffdf8;

  --ink: #2a2622;
  --ink-2: #5e564e;
  --ink-3: #6b635b;
  --faint: #9a9088;

  --line: #e7ddcf;
  --line-2: #e2d8ca;
  --line-3: #f1e9dd;
  --line-dash: #d8cdbd;

  --terra: #c2611f;
  --terra-deep: #a8501a;
  --terra-lift: #d97a35;
  --terra-tint: #f6e9dd;
  --ember: #e9954f;

  --dark: #2c2723;
  --dark-2: #221e1a;
  --dark-line: #3a332c;
  --dark-bar: #5a4a3a;
  --on-dark: #faf5ee;
  --on-dark-2: #c7bdb1;
  --on-dark-3: #b8ac9b;
  --on-dark-4: #e3d9cc;

  --sage: #4f8a6b;
  --sage-tint: #e6f0e9;
  --mint: #6fcf97;
  --amber: #b9831e;
  --amber-tint: #f7edd8;
  --purple: #7a5cc0;
  --purple-tint: #ece6f6;
  --square-tint: #f0e8dc;

  --display: 'Bricolage Grotesque', Georgia, serif;
  --body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, SFMono-Regular, monospace;

  --gutter: 40px;
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--page);
  font-family: var(--body);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3 { font-family: var(--display); margin: 0; font-weight: 700; letter-spacing: -0.03em; }
p { margin: 0; }
img, svg { max-width: 100%; }

::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-thumb { background: var(--line-dash); border-radius: 8px; border: 3px solid var(--page); }

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

:focus-visible { outline: 2px solid var(--terra); outline-offset: 3px; border-radius: 4px; }

.mono { font-family: var(--mono); font-variant-numeric: tabular-nums; }
.skip {
  position: absolute; left: -9999px; top: 0; background: var(--card); color: var(--ink);
  padding: 12px 18px; border-radius: 0 0 12px 0; font-weight: 700; z-index: 100;
}
.skip:focus { left: 0; }

/* ---------- layout ---------- */

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

.band { background: var(--band); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.band-dark { background: var(--dark); color: var(--page); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; align-items: start; }
.split {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center;
}

.section { padding: 80px 0; }
.section-sm { padding: 44px 0; }

.center { text-align: center; }
.measure { max-width: 620px; margin-left: auto; margin-right: auto; }

/* ---------- type ---------- */

.eyebrow {
  font-size: 14px; font-weight: 700; color: var(--terra-deep);
  letter-spacing: 0.05em; text-transform: uppercase;
}

.h-hero { font-size: clamp(38px, 6vw, 62px); line-height: 1.02; letter-spacing: -0.035em; }
.h-page { font-size: clamp(34px, 5vw, 50px); line-height: 1.05; letter-spacing: -0.035em; }
.h-sec { font-size: clamp(29px, 3.6vw, 42px); line-height: 1.08; }
.h-split { font-size: clamp(27px, 3.3vw, 38px); line-height: 1.08; }
.h-card { font-size: 18px; letter-spacing: -0.01em; }

.lede { font-size: clamp(16px, 2vw, 19px); line-height: 1.55; color: var(--ink-2); }
.body { font-size: 15px; line-height: 1.55; color: var(--ink-3); }
.note { font-size: 14px; color: var(--faint); }

/* ---------- buttons & pills ---------- */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: inherit; font-weight: 700; font-size: 16px; line-height: 1;
  border: none; border-radius: 13px; padding: 16px 28px; cursor: pointer; white-space: nowrap;
  transition: background .15s ease, border-color .15s ease, transform .15s ease;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--terra); color: #fff; box-shadow: 0 6px 18px -8px rgba(150, 70, 15, .6); }
.btn-primary:hover { background: var(--terra-deep); }
.btn-ghost { background: var(--card); color: var(--ink); border: 1.5px solid #ddd3c7; font-weight: 600; }
.btn-ghost:hover { border-color: var(--terra); }
.btn-onwhite { background: var(--card); color: var(--terra-deep); }
.btn-onwhite:hover { background: #fff; }
.btn-glass { background: rgba(255, 255, 255, .16); color: #fff; font-weight: 600; }
.btn-glass:hover { background: rgba(255, 255, 255, .26); }
.btn-ondark { background: var(--terra); color: #fff; }
.btn-ondark:hover { background: var(--terra-lift); }
.btn-sm { padding: 12px 18px; font-size: 15px; border-radius: 11px; }
.btn-block { width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--terra-tint); color: var(--terra-deep);
  border-radius: 20px; padding: 6px 13px; font-size: 13px; font-weight: 600;
}
.pill-dark { background: var(--dark); color: var(--ember); }
.pill-glass { background: rgba(255, 255, 255, .08); color: var(--ember); }
.pill-sage { background: var(--sage-tint); color: var(--sage); font-weight: 600; }
.dot-live { width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

.tag {
  font-size: 12px; font-weight: 700; border-radius: 20px; padding: 4px 11px;
  background: var(--amber-tint); color: var(--amber);
}
.chip {
  background: rgba(255, 255, 255, .08); border-radius: 20px;
  padding: 8px 14px; font-size: 13.5px; color: var(--on-dark-4);
}

/* ---------- cards ---------- */

.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 18px; padding: 26px;
}
.card-dark { background: var(--dark); border: none; border-radius: 18px; padding: 26px; color: var(--on-dark); }
.card-lg { border-radius: 20px; padding: 28px; }

.icon-tile {
  width: 44px; height: 44px; border-radius: 12px; background: var(--terra-tint);
  display: grid; place-items: center; margin-bottom: 16px;
}
.icon-tile-lg { width: 48px; height: 48px; border-radius: 13px; margin-bottom: 18px; }
.icon-tile-amber { background: var(--amber-tint); }
.icon-tile-purple { background: var(--purple-tint); }
.icon-tile-sage { background: var(--sage-tint); }
.icon-tile-square { background: var(--square-tint); }

.step-no { font-family: var(--mono); font-size: 13px; color: var(--terra); font-weight: 600; }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247, 243, 238, .86);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav-toggle { position: absolute; opacity: 0; pointer-events: none; }
.nav-inner { height: 70px; display: flex; align-items: center; gap: 12px; }

.brand { display: flex; align-items: center; gap: 10px; flex: none; }
.brand svg { flex: none; }
.brand span {
  font-family: var(--display); font-weight: 700; font-size: 21px; letter-spacing: -0.02em;
}
.brand b { color: var(--terra); font-weight: 700; }

.nav-links { display: flex; align-items: center; gap: 30px; margin-left: auto; }
.nav-links a {
  font-weight: 600; font-size: 15px; color: var(--ink-3);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a[aria-current="page"] { color: var(--ink); border-bottom-color: var(--terra); }

.nav-actions { display: flex; align-items: center; gap: 18px; margin-left: 30px; }
.nav-links-login { display: none; }  /* the panel's own Log in — mobile only */
.nav-login { font-weight: 600; font-size: 15px; color: var(--ink-2); }
.nav-login:hover { color: var(--ink); }

.burger { display: none; margin-left: auto; cursor: pointer; padding: 10px; border-radius: 8px; }
/* the checkbox is the focusable control; show its focus ring on the visible label */
.nav-toggle:focus-visible ~ .nav-inner .burger { outline: 2px solid var(--terra); outline-offset: 2px; }
.burger span {
  display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px;
}
.burger span + span { margin-top: 5px; }

/* ---------- hero ---------- */

.hero {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center;
  padding: 70px 0 40px;
}
.hero h1 { margin-top: 22px; }
.hero .lede { margin: 24px 0 0; max-width: 480px; }
.hero-cta { display: flex; flex-wrap: wrap; align-items: center; gap: 13px; margin-top: 30px; }
.hero-note { margin-top: 16px; }

.hero-visual { position: relative; height: 480px; }

.phone {
  position: absolute; right: 18px; top: 0; width: 260px; height: 470px;
  background: #1a1714; border-radius: 42px; padding: 9px;
  box-shadow: 0 50px 90px -40px rgba(60, 35, 12, .6);
}
.phone-screen {
  position: relative; width: 100%; height: 100%; background: var(--page); border-radius: 34px;
  overflow: hidden; display: flex; flex-direction: column; align-items: center;
  padding: 26px 18px; text-align: center;
}
.phone-notch {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 78px; height: 22px; background: #000; border-radius: 14px;
}
.phone-check {
  width: 46px; height: 46px; border-radius: 50%; background: var(--sage-tint);
  display: grid; place-items: center; margin-bottom: 12px;
}
.phone-title { font-family: var(--display); font-weight: 700; font-size: 19px; }
.phone-sub { font-size: 12.5px; color: var(--ink-3); margin-top: 4px; line-height: 1.4; }

.float-card {
  position: absolute; background: var(--card); border: 1px solid var(--line);
  border-radius: 15px; padding: 14px 16px;
  box-shadow: 0 18px 40px -20px rgba(80, 50, 20, .45);
}
.float-gmail { left: 0; top: 64px; width: 224px; }
.float-ai {
  left: 8px; bottom: 30px; width: 236px; background: var(--dark); border: none;
  box-shadow: 0 18px 40px -20px rgba(0, 0, 0, .5);
}
.float-head { display: flex; align-items: center; gap: 9px; }
.float-icon {
  width: 30px; height: 30px; border-radius: 9px; background: var(--amber-tint);
  display: grid; place-items: center;
}
.float-label { font-size: 12px; font-weight: 600; color: var(--ink-3); }
.float-title { font-weight: 700; font-size: 16px; margin-top: 9px; }
.float-row { display: flex; align-items: center; justify-content: space-between; margin-top: 5px; }

.ai-badge {
  width: 26px; height: 26px; border-radius: 8px; background: var(--terra);
  display: grid; place-items: center; flex: none;
}
.ai-note { display: flex; gap: 9px; }
.ai-note p { font-size: 12.5px; line-height: 1.45; color: var(--on-dark-4); }
.ai-note strong { color: #fff; }

/* ---------- receipt paper ---------- */

.receipt {
  background: var(--paper); border-radius: 8px; padding: 20px;
  font-family: var(--mono); font-variant-numeric: tabular-nums;
  box-shadow: 0 24px 50px -20px rgba(80, 50, 20, .5); transform: rotate(-2deg);
}
.receipt-sm {
  width: 104px; padding: 12px; border-radius: 7px; transform: rotate(-3deg);
  margin: 40px 0 24px; box-shadow: 0 14px 30px -12px rgba(80, 50, 20, .4);
}
.receipt-head { text-align: center; border-bottom: 1.5px dashed var(--line-dash); padding-bottom: 10px; }
.receipt-name { font-size: 12px; font-weight: 600; }
.receipt-meta { font-size: 8px; color: var(--faint); margin-top: 3px; }
.receipt-items {
  display: flex; flex-direction: column; gap: 6px; padding: 11px 0;
  border-bottom: 1.5px dashed var(--line-dash);
}
.receipt-items div, .receipt-total { display: flex; justify-content: space-between; }
.receipt-items div { font-size: 9px; color: #4a443c; }
.receipt-total { font-size: 13px; font-weight: 600; padding-top: 10px; }

.receipt-frame {
  background: var(--band); border: 1px solid var(--line-2); border-radius: 22px;
  padding: 36px; display: grid; place-items: center;
}

/* ---------- stats & lists ---------- */

.stat { background: var(--card); border: 1px solid var(--line); border-radius: 16px; padding: 24px; text-align: center; }
.stat-fig {
  font-family: var(--display); font-weight: 700; font-size: 38px;
  color: var(--terra); letter-spacing: -0.02em;
}
.stat-label { font-size: 14px; color: var(--ink-3); margin-top: 4px; }

.ticks { display: flex; flex-direction: column; gap: 13px; }
.ticks li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; color: var(--ink); }
.ticks svg { flex: none; margin-top: 2px; }
ul.ticks { list-style: none; margin: 0; padding: 0; }

.feature-rows { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.feature-row { display: flex; gap: 13px; }
.feature-row .icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--card);
  border: 1px solid var(--line-2); display: grid; place-items: center; flex: none;
}
.feature-row h3 { font-family: var(--body); font-weight: 700; font-size: 16px; letter-spacing: 0; }
.feature-row p { font-size: 14px; color: var(--ink-3); margin-top: 2px; line-height: 1.5; }

/* ---------- charts ---------- */

.bars { display: flex; align-items: flex-end; gap: 6px; height: 96px; margin-top: 18px; }
.bars i { flex: 1; background: var(--dark-bar); border-radius: 3px 3px 0 0; }
.bars i.mid { background: #dd8a4a; }
.bars i.hi { background: var(--terra); }

.sales-card { background: var(--dark-2); border: 1px solid var(--dark-line); border-radius: 20px; padding: 24px; }
.sales-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.sales-fig {
  font-family: var(--display); font-weight: 700; font-size: 34px;
  color: var(--on-dark); letter-spacing: -0.02em; font-variant-numeric: tabular-nums;
}
.sales-foot {
  display: flex; justify-content: space-between; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--dark-line); font-size: 13px; color: var(--on-dark-2);
}
.sales-rows { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--dark-line); }
.sales-rows div { display: flex; justify-content: space-between; font-size: 13.5px; color: var(--on-dark-2); }
.sales-rows b { color: var(--on-dark); font-weight: 600; }

/* ---------- review preview card ---------- */

.review-card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 22px;
  box-shadow: 0 24px 50px -28px rgba(80, 50, 20, .4);
}
.review-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 14px; }
.review-head span:first-child { font-family: var(--display); font-weight: 700; font-size: 16px; }
.review-field {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-top: 1px solid var(--line-3);
}
.review-field .k { font-size: 13px; color: var(--faint); }
.review-field .v { font-size: 13.5px; font-weight: 600; }
.review-field .c { font-family: var(--mono); font-size: 11.5px; font-weight: 600; }
.c-hi { color: var(--sage); }
.c-lo { color: var(--amber); }
.review-ai {
  background: var(--dark); border-radius: 11px; padding: 12px; margin-top: 14px; display: flex; gap: 9px;
}
.review-ai p { font-size: 12.5px; line-height: 1.45; color: var(--on-dark-4); }
.review-ai strong { color: #fff; }
.review-actions { display: flex; gap: 8px; margin-top: 12px; }
.review-actions .btn { flex: 1; padding: 11px; font-size: 13px; border-radius: 10px; }

/* ---------- pricing ---------- */

.tier {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 26px; display: flex; flex-direction: column; position: relative;
}
.tier-pop {
  background: var(--dark); border: none; color: var(--on-dark);
  box-shadow: 0 30px 60px -30px rgba(40, 30, 20, .7);
}
.tier-flag {
  position: absolute; top: 18px; right: 18px; font-size: 11px; font-weight: 700;
  color: var(--dark); background: var(--ember); border-radius: 20px; padding: 4px 10px;
}
.tier-name { font-family: var(--display); font-weight: 700; font-size: 19px; }
.tier-blurb { font-size: 13.5px; line-height: 1.5; color: var(--ink-3); margin-top: 6px; min-height: 60px; }
.tier-pop .tier-blurb { color: var(--on-dark-2); }
.tier-price { display: flex; align-items: baseline; margin-top: 18px; }
.tier-price .amt {
  font-family: var(--display); font-weight: 700; font-size: 40px; letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}
.tier-price .per { font-size: 13px; color: var(--faint); margin-left: 4px; }
.tier-pop .tier-price .per { color: var(--on-dark-3); }
.tier-cta {
  background: var(--terra-tint); color: var(--terra-deep); border: none; border-radius: 12px;
  padding: 13px; font-family: inherit; font-weight: 700; font-size: 15px; margin-top: 20px;
  text-align: center; display: block; cursor: pointer;
}
.tier-cta:hover { background: #f0dcc8; }
.tier-pop .tier-cta { background: var(--terra); color: #fff; }
.tier-pop .tier-cta:hover { background: var(--terra-lift); }
.tier-meta {
  margin-top: 22px; padding-top: 18px; border-top: 1px solid var(--line-3);
  font-size: 13.5px; line-height: 1.55; color: var(--ink-3);
}
.tier-pop .tier-meta { border-top-color: var(--dark-line); color: var(--on-dark-2); }

.included { display: grid; grid-template-columns: repeat(3, 1fr); gap: 11px 26px; margin-top: 26px; }

.faq { display: flex; flex-direction: column; gap: 14px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: 14px; padding: 20px 22px; }
.faq-item h3 { font-family: var(--body); font-weight: 700; font-size: 16px; letter-spacing: 0; }
.faq-item p { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); margin-top: 8px; }

/* ---------- pipeline (security) ---------- */

.pipeline {
  background: var(--dark); border-radius: 22px; padding: 36px;
  display: flex; align-items: center; gap: 8px; overflow-x: auto;
}
.pipeline-step { flex: 1; min-width: 130px; text-align: center; }
.pipeline-step .no { font-family: var(--mono); font-size: 12px; color: var(--ember); font-weight: 600; }
.pipeline-step .name { font-weight: 700; font-size: 15px; color: var(--on-dark); margin-top: 4px; }
.pipeline-step .what { font-size: 12.5px; color: var(--on-dark-3); margin-top: 3px; }
.pipeline svg { flex: none; }

.disclaimer {
  background: var(--terra-tint); border: 1px solid #ecd9c4; border-radius: 14px;
  padding: 20px 22px; display: flex; gap: 13px;
}
.disclaimer p { font-size: 14px; line-height: 1.55; color: #6b4d2a; }
.disclaimer svg { flex: none; margin-top: 1px; }

/* ---------- testimonial + closing CTA ---------- */

.quote-mark { font-size: 60px; line-height: 0.5; color: var(--line-dash); font-family: var(--display); }
.quote {
  font-family: var(--display); font-weight: 600; font-size: clamp(21px, 3vw, 29px);
  line-height: 1.32; letter-spacing: -0.02em; margin: 10px 0 26px;
}
.byline { display: flex; align-items: center; justify-content: center; gap: 12px; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--sage); color: #fff;
  display: grid; place-items: center; font-weight: 700;
}

.cta-panel {
  background: linear-gradient(135deg, var(--terra) 0%, var(--terra-deep) 100%);
  border-radius: 28px; padding: 60px 40px; text-align: center; color: #fff;
  box-shadow: 0 30px 60px -30px rgba(150, 70, 15, .6);
}
.cta-panel h2 { font-size: clamp(30px, 4.4vw, 44px); line-height: 1.05; }
.cta-panel p { font-size: 18px; color: #ffe8d6; margin: 16px auto 30px; max-width: 480px; }
.cta-row { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 13px; }

/* ---------- footer ---------- */

.footer { background: var(--band); border-top: 1px solid var(--line); }
.footer-cols {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px;
  padding-top: 56px; padding-bottom: 40px;
}
.footer-cols h2 {
  font-family: var(--body); font-size: 12px; font-weight: 700; color: var(--faint);
  letter-spacing: 0.05em; text-transform: uppercase; margin-bottom: 14px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; font-size: 14.5px; color: var(--ink-2); }
.footer-links a:hover { color: var(--terra); }
.footer-blurb { font-size: 14px; color: var(--ink-3); max-width: 260px; line-height: 1.5; margin-top: 14px; }
.footer-legal {
  border-top: 1px solid var(--line-2); padding-top: 20px; padding-bottom: 40px;
  display: flex; flex-wrap: wrap; gap: 10px; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--faint);
}

/* ---------- responsive ---------- */

@media (max-width: 1080px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { gap: 40px; }
}

@media (max-width: 940px) {
  :root { --gutter: 28px; }
  .hero { grid-template-columns: 1fr; padding: 48px 0 24px; }
  .hero .lede { max-width: none; }
  .hero-visual { height: 520px; }
  .phone { right: 50%; transform: translateX(50%); }
  .float-gmail { left: 0; top: 20px; }
  .float-ai { left: 0; bottom: 8px; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .split .visual-first { order: -1; }
  .section { padding: 60px 0; }
  .included { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-links {
    display: none; position: absolute; left: 0; right: 0; top: 70px;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--page); border-bottom: 1px solid var(--line); padding: 8px var(--gutter) 16px;
  }
  .nav-toggle:checked ~ .nav-inner .nav-links { display: flex; }
  .nav-links a { padding: 13px 0; border-bottom: 1px solid var(--line-3); }
  .nav-links a[aria-current="page"] { border-bottom-color: var(--line-3); color: var(--terra); }
  .nav-links-login { display: block; }
  .nav-actions { margin-left: auto; }
  .nav-login { display: none; }
  .burger { display: block; margin-left: 4px; }
}

@media (max-width: 680px) {
  :root { --gutter: 20px; }
  .grid-3, .grid-4, .included { grid-template-columns: 1fr; }
  .hero-visual { height: 440px; }
  .phone { width: 224px; height: 420px; right: 50%; }
  .float-card { display: none; }
  .btn { width: 100%; }
  .btn-sm, .nav .btn { width: auto; }
  .cta-panel { padding: 44px 24px; border-radius: 22px; }
  .footer-cols { grid-template-columns: 1fr 1fr; }
  .review-actions .btn { width: auto; }
  .section { padding: 48px 0; }
  .pipeline { padding: 24px; }
}

@media (max-width: 380px) {
  :root { --gutter: 14px; }
  .brand span { font-size: 18px; }
  .brand svg { width: 26px; height: 26px; }
  .nav .btn { padding: 10px 12px; font-size: 14px; }
  .nav-actions { gap: 8px; }
  .burger { padding: 8px 4px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
