/* Downbar landing page — dark-first, no build step.
   Hand-written CSS, system font stack, CSS custom properties.
   The app "screenshots" are faithful CSS recreations of the real SwiftUI UI,
   so they stay crisp at any DPI and weigh nothing. */

:root {
  --bg: #0a0b0e;
  --bg-2: #0e1014;
  --bg-elev: #15171d;
  --bg-card: #14161c;
  --border: #23262f;
  --border-soft: #1b1e25;
  --text: #f4f6fa;
  --text-dim: #a6aebd;
  --text-faint: #6b7382;
  --accent: #5b8cff;
  --accent-2: #8b6bff;
  --accent-ink: #ffffff;
  --good: #34c759;
  --warn: #ffd60a;
  --major: #ff9f0a;
  --bad: #ff453a;
  --radius: 16px;
  --wrap: 1120px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --shadow-xl: 0 40px 120px -50px rgba(0, 0, 0, 0.9);
}

@media (prefers-color-scheme: light) {
  :root {
    --bg: #f6f8fc;
    --bg-2: #eef1f7;
    --bg-elev: #ffffff;
    --bg-card: #ffffff;
    --border: #e1e6ef;
    --border-soft: #eaeef5;
    --text: #0e1218;
    --text-dim: #515a6b;
    --text-faint: #8b94a4;
    --accent: #2f6bff;
    --shadow-xl: 0 40px 110px -55px rgba(20, 30, 60, 0.45);
  }
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
.sprite { position: absolute; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: var(--accent-ink);
  padding: 10px 16px; border-radius: 0 0 var(--radius) 0; z-index: 100;
}
.skip-link:focus { left: 0; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ---------- Section eyebrows ---------- */
.section-eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em;
  font-size: 12px; font-weight: 700; color: var(--accent); margin: 0 0 12px;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 72%, transparent);
  backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 62px; }
.brand { display: flex; align-items: center; gap: 11px; color: var(--text); font-weight: 680; }
.brand:hover { text-decoration: none; }
.brand-name { font-size: 17px; letter-spacing: -0.01em; }

.brand-mark {
  width: 30px; height: 30px; border-radius: 8px;
  display: grid; place-items: center;
  background: linear-gradient(160deg, #1b1e26, #0e1014);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}
.brand-mark.sm { width: 26px; height: 26px; border-radius: 7px; }
.brand-bars { width: 16px; height: 14px; color: var(--good); fill: currentColor; filter: drop-shadow(0 0 6px rgba(52,199,89,0.5)); }

.site-nav { display: flex; align-items: center; gap: 24px; }
.site-nav a { color: var(--text-dim); font-size: 15px; }
.site-nav a:hover { color: var(--text); text-decoration: none; }
.nav-cta {
  background: var(--accent); color: var(--accent-ink) !important;
  padding: 8px 15px; border-radius: 10px; font-weight: 620;
}
.nav-cta:hover { text-decoration: none; opacity: 0.92; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 22px; border-radius: 12px; font-weight: 640; font-size: 16px;
  transition: transform .12s ease, opacity .12s ease, box-shadow .12s ease;
}
.btn:hover { text-decoration: none; }
.btn-primary {
  background: linear-gradient(180deg, color-mix(in srgb, var(--accent) 92%, white), var(--accent));
  color: var(--accent-ink);
  box-shadow: 0 10px 30px -12px color-mix(in srgb, var(--accent) 80%, transparent);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 16px 36px -14px color-mix(in srgb, var(--accent) 85%, transparent); }
.btn-lg { padding: 16px 28px; font-size: 17px; border-radius: 14px; }
.btn-apple { width: 16px; height: 16px; fill: currentColor; margin-top: -2px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 84px 0 64px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(60% 70% at 78% 18%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 70%),
    radial-gradient(50% 60% at 12% 0%, color-mix(in srgb, var(--accent-2) 24%, transparent), transparent 70%);
  filter: blur(20px); pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.02fr 0.98fr; gap: 52px; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; margin: 0 0 18px;
  text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px; font-weight: 700; color: var(--text-dim);
  background: color-mix(in srgb, var(--bg-elev) 70%, transparent);
  border: 1px solid var(--border); padding: 6px 12px; border-radius: 999px;
}
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--good); box-shadow: 0 0 8px var(--good); }
.hero h1 { font-size: clamp(36px, 5.2vw, 58px); margin-bottom: 22px; font-weight: 720; }
.lede { font-size: 19px; color: var(--text-dim); max-width: 40ch; }
.lede strong { color: var(--text); font-weight: 640; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; align-items: center; gap: 16px; }
.price { color: var(--text-dim); font-size: 14px; }
.hero-trust { list-style: none; margin: 22px 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 18px; }
.hero-trust li { display: flex; align-items: center; gap: 7px; font-size: 14px; color: var(--text-dim); }
.tick { width: 16px; height: 16px; border-radius: 50%; background: color-mix(in srgb, var(--good) 22%, transparent); position: relative; flex: none; }
.tick::after { content: ""; position: absolute; left: 5px; top: 3.5px; width: 4px; height: 7px; border: solid var(--good); border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ===================== The hero "screenshot" ===================== */
.hero-stage { position: relative; z-index: 1; }
.desktop {
  position: relative;
  border-radius: 22px;
  padding: 0;
  background:
    radial-gradient(120% 120% at 30% 0%, #2a3550 0%, #161b2b 45%, #0c0f18 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  min-height: 540px;
}
@media (prefers-color-scheme: light) {
  .desktop { background: radial-gradient(120% 120% at 30% 0%, #46639d, #3a4a78 45%, #243056 100%); }
}

/* macOS menu bar */
.menubar {
  display: flex; align-items: center; justify-content: space-between;
  height: 26px; padding: 0 12px;
  background: rgba(20, 24, 34, 0.55);
  backdrop-filter: blur(14px) saturate(150%);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  font-size: 12.5px; color: rgba(255,255,255,0.92);
}
.mb-left { display: flex; align-items: center; gap: 15px; }
.mb-logo { width: 13px; height: 13px; border-radius: 3px; background: rgba(255,255,255,0.9); -webkit-mask: none; }
.mb-logo { background: linear-gradient(135deg, #fff, #cfd6e6); }
.mb-app { font-weight: 700; }
.mb-item { color: rgba(255,255,255,0.82); }
.mb-right { display: flex; align-items: center; gap: 13px; }
.mb-glyph { width: 16px; height: 11px; opacity: 0.85; border-radius: 2px; background: rgba(255,255,255,0.7); }
.mb-batt { width: 22px; height: 11px; border-radius: 3px; background: none; border: 1.4px solid rgba(255,255,255,0.7); position: relative; }
.mb-batt::after { content: ""; position: absolute; left: 1.5px; top: 1.5px; bottom: 1.5px; width: 12px; border-radius: 1px; background: rgba(255,255,255,0.8); }
.mb-wifi { -webkit-mask: radial-gradient(circle at 50% 100%, #000 64%, transparent 66%); width: 16px; height: 12px; clip-path: polygon(50% 100%, 0 38%, 12% 26%, 50% 62%, 88% 26%, 100% 38%); }
.mb-clock { font-variant-numeric: tabular-nums; font-weight: 500; }
.mb-tray { display: grid; place-items: center; width: 22px; height: 18px; border-radius: 5px; }
.mb-tray.active { background: rgba(255,255,255,0.16); box-shadow: 0 0 0 1px rgba(255,255,255,0.08) inset; }
.tray-bars { width: 16px; height: 14px; fill: currentColor; }
.tray-bars.is-critical { color: var(--bad); filter: drop-shadow(0 0 5px rgba(255,69,58,0.7)); }
.tray-bars.is-major { color: var(--major); filter: drop-shadow(0 0 5px rgba(255,159,10,0.65)); }

/* the popover panel */
.panel {
  position: absolute; top: 34px; right: 16px; width: 326px;
  background: color-mix(in srgb, #1c1f27 88%, transparent);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.7), 0 0 0 0.5px rgba(0,0,0,0.4);
  color: #f2f4f8;
  overflow: hidden;
  animation: panel-in .5s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes panel-in { from { opacity: 0; transform: translateY(-8px) scale(.985); } to { opacity: 1; transform: none; } }
.panel-notch {
  position: absolute; top: -6px; right: 16px; width: 12px; height: 12px;
  background: inherit; border-left: 1px solid rgba(255,255,255,0.10); border-top: 1px solid rgba(255,255,255,0.10);
  transform: rotate(45deg); border-radius: 2px 0 0 0;
}
.hr { height: 1px; background: rgba(255,255,255,0.08); }

.panel-head { display: flex; align-items: center; gap: 11px; padding: 12px 14px; }
.status-mark { width: 26px; height: 26px; flex: none; display: grid; place-items: center; }
.status-mark svg { width: 24px; height: 24px; }
.panel-head-text { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.panel-head-text strong { font-size: 14px; font-weight: 600; }
.panel-head-text em { font-size: 11px; color: rgba(255,255,255,0.55); font-style: normal; }
.panel-refresh { width: 26px; height: 26px; display: grid; place-items: center; border-radius: 50%; }
.panel-refresh svg { width: 13px; height: 13px; color: rgba(255,255,255,0.6); }

.panel-list { padding: 6px; display: flex; flex-direction: column; gap: 1px; }
.row {
  display: flex; align-items: center; gap: 10px; padding: 7px 8px; border-radius: 7px;
}
.row-glyph { width: 16px; height: 16px; flex: none; display: grid; place-items: center; }
.row-glyph svg { width: 15px; height: 15px; }
.row-glyph.sm svg { width: 14px; height: 14px; }
.row-body { display: flex; flex-direction: column; line-height: 1.25; flex: 1; min-width: 0; }
.row-body b { font-size: 13px; font-weight: 540; }
.row-body i { font-size: 11px; color: rgba(255,255,255,0.55); font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.row-age { font-size: 10.5px; color: rgba(255,255,255,0.42); font-variant-numeric: tabular-nums; width: 30px; text-align: right; flex: none; line-height: 1.2; }
.row-sep { height: 1px; background: rgba(255,255,255,0.07); margin: 5px 8px; }

/* status colors */
.is-ok { color: var(--good); } .is-ok svg :first-child { fill: var(--good); }
.is-minor { color: var(--warn); } .is-minor svg :first-child { fill: var(--warn); }
.is-major { color: var(--major); } .is-major svg :first-child { fill: var(--major); }
.is-critical { color: var(--bad); } .is-critical svg :first-child { fill: var(--bad); }
.row-glyph.dim { color: var(--text-faint); opacity: 0.5; } .row-glyph.dim svg :first-child { fill: currentColor; }

/* sparkline — 16-segment "barcode", one full-height bar per recent reading,
   exactly like the SwiftUI Sparkline (2px bars, 1px gaps). The barcode shape is
   a repeating mask; the bar color comes from the background underneath, so a
   horizontal gradient can render a green→amber recovery/degradation trend. */
.spark {
  flex: none; width: 47px; height: 12px; opacity: 0.85;
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 3px);
          mask: repeating-linear-gradient(90deg, #000 0 2px, transparent 2px 3px);
  background: var(--good);
}
.spark[data-trend="good"]  { background: var(--good); }
.spark[data-trend="warn"]  { background: var(--warn); }
.spark[data-trend="major"] { background: var(--major); }
.spark[data-trend="bad"]   { background: var(--bad); }
.spark[data-trend="degrading"] { background: linear-gradient(90deg, var(--good) 0 52%, var(--major) 52% 100%); }

.panel-foot { display: flex; gap: 4px; padding: 8px; }
.foot-btn {
  flex: 1; display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 12px; padding: 6px; border-radius: 7px; color: #eef0f5;
}
.foot-btn:first-child { background: rgba(255,255,255,0.06); }
.foot-btn svg { width: 12px; height: 12px; color: rgba(255,255,255,0.75); }

/* notification toast */
.toast {
  position: absolute; right: 16px; bottom: 18px; width: 300px;
  display: flex; align-items: center; gap: 11px; padding: 11px 13px;
  background: rgba(28,31,39,0.86); backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 16px;
  box-shadow: 0 24px 48px -18px rgba(0,0,0,0.7);
  animation: toast-in .6s .35s cubic-bezier(.2,.8,.2,1) both;
}
@keyframes toast-in { from { opacity: 0; transform: translateX(20px) scale(.96); } to { opacity: 1; transform: none; } }
.toast-icon img { width: 38px; height: 38px; border-radius: 9px; }
.toast-body { display: flex; flex-direction: column; line-height: 1.3; flex: 1; min-width: 0; color: #f2f4f8; }
.toast-body b { font-size: 13px; font-weight: 600; }
.toast-body i { font-size: 12px; font-style: normal; color: rgba(255,255,255,0.7); }
.toast-meta { font-size: 10px; color: rgba(255,255,255,0.45); align-self: flex-start; white-space: nowrap; }

/* ---------- Logos band ---------- */
.logos { padding: 20px 0 8px; border-top: 1px solid var(--border-soft); }
.logos-label { text-align: center; color: var(--text-faint); font-size: 13px; letter-spacing: 0.02em; margin: 0 0 18px; }
.logos-row {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px 30px;
}
.logos-row li { color: var(--text-dim); font-weight: 620; font-size: 17px; letter-spacing: -0.01em; opacity: 0.7; }

/* ---------- Features ---------- */
.features { padding: 72px 0; }
.features h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 40px; font-weight: 680; }
.feature-grid { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: linear-gradient(180deg, var(--bg-card), color-mix(in srgb, var(--bg-card) 88%, var(--bg)));
  border: 1px solid var(--border); border-radius: var(--radius); padding: 24px;
  transition: transform .15s ease, border-color .15s ease;
}
.feature:hover { transform: translateY(-3px); border-color: color-mix(in srgb, var(--accent) 45%, var(--border)); }
.feature-ic {
  width: 40px; height: 40px; border-radius: 11px; display: grid; place-items: center; margin-bottom: 16px;
  background: color-mix(in srgb, var(--accent) 16%, transparent); color: var(--accent);
}
.feature-ic svg { width: 21px; height: 21px; fill: currentColor; }
.feature-ic.ok { background: color-mix(in srgb, var(--good) 16%, transparent); color: var(--good); }
.feature-ic.warn { background: color-mix(in srgb, var(--warn) 18%, transparent); color: var(--warn); }
.feature-ic.ok svg :first-child, .feature-ic.warn svg :first-child { fill: currentColor; }
.feature h3 { font-size: 18px; margin-bottom: 8px; font-weight: 620; }
.feature p { margin: 0; color: var(--text-dim); font-size: 15px; }

/* ---------- How it works ---------- */
.how { padding: 72px 0; border-top: 1px solid var(--border-soft); }
.how-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.how h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 28px; font-weight: 680; }
.steps { list-style: none; margin: 0; padding: 0; counter-reset: step; display: grid; gap: 22px; }
.steps li { position: relative; padding-left: 50px; counter-increment: step; }
.steps li::before {
  content: counter(step); position: absolute; left: 0; top: 0;
  width: 32px; height: 32px; border-radius: 9px; display: grid; place-items: center;
  font-weight: 700; font-size: 15px; color: var(--accent);
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 30%, transparent);
}
.steps h3 { font-size: 17px; margin-bottom: 4px; font-weight: 620; }
.steps p { margin: 0; color: var(--text-dim); font-size: 15px; }

/* settings window mockup */
.winframe {
  background: color-mix(in srgb, #1a1d24 92%, transparent);
  border: 1px solid rgba(255,255,255,0.08); border-radius: 14px; overflow: hidden;
  box-shadow: var(--shadow-xl); color: #eef0f5;
}
@media (prefers-color-scheme: light) { .winframe { background: #fbfcfe; border-color: var(--border); color: #11151b; } }
.win-bar { display: flex; align-items: center; gap: 14px; padding: 10px 14px; border-bottom: 1px solid rgba(128,128,128,0.18); }
.traffic { display: flex; gap: 7px; }
.traffic i { width: 11px; height: 11px; border-radius: 50%; display: block; }
.traffic .r { background: #ff5f57; } .traffic .y { background: #febc2e; } .traffic .g { background: #28c840; }
.win-tabs { display: flex; gap: 4px; margin: 0 auto; transform: translateX(-20px); }
.win-tab { font-size: 12.5px; padding: 4px 12px; border-radius: 7px; color: var(--text-faint); }
.win-tab.active { background: color-mix(in srgb, var(--accent) 22%, transparent); color: color-mix(in srgb, var(--accent) 70%, white); font-weight: 600; }
.win-body { padding: 16px 16px 20px; }
.win-help { font-size: 12px; color: var(--text-faint); margin: 0 0 10px; }
.win-search {
  display: flex; align-items: center; gap: 7px; font-size: 12.5px; color: var(--text-faint);
  background: rgba(128,128,128,0.12); border-radius: 8px; padding: 7px 10px; margin-bottom: 14px;
}
.win-search svg { width: 13px; height: 13px; color: currentColor; }
.cat-head {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em;
  color: var(--text-faint); margin: 12px 2px 6px;
}
.cat-link { color: var(--accent); font-weight: 600; text-transform: none; letter-spacing: 0; font-size: 11px; }
.cat-row { display: flex; align-items: center; gap: 10px; padding: 7px 4px; }
.cat-name { display: flex; flex-direction: column; line-height: 1.2; flex: 1; font-size: 13px; }
.cat-name em { font-size: 10px; color: var(--text-faint); font-style: normal; }
.mute { width: 15px; height: 15px; flex: none; color: var(--text-faint); }
.mute use { stroke: currentColor; }
.switch { width: 32px; height: 19px; border-radius: 999px; background: rgba(128,128,128,0.35); position: relative; flex: none; transition: background .15s; }
.switch::after { content: ""; position: absolute; top: 2px; left: 2px; width: 15px; height: 15px; border-radius: 50%; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.3); transition: left .15s; }
.switch.on { background: var(--accent); }
.switch.on::after { left: 15px; }

/* ---------- Catalog band ---------- */
.catalog { padding: 72px 0; border-top: 1px solid var(--border-soft); text-align: center; }
.catalog h2 { font-size: clamp(28px, 3.6vw, 38px); margin-bottom: 32px; font-weight: 680; }
.cat-grid { list-style: none; margin: 0 auto; padding: 0; max-width: 900px; display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.cat-grid li {
  background: var(--bg-card); border: 1px solid var(--border); border-radius: 999px;
  padding: 9px 18px; font-size: 14px; color: var(--text-dim); font-weight: 560;
}
.cat-note { margin: 28px auto 0; max-width: 52ch; color: var(--text-faint); font-size: 15px; }

/* ---------- CTA ---------- */
.cta { position: relative; padding: 96px 0; border-top: 1px solid var(--border-soft); text-align: center; overflow: hidden; }
.cta-glow {
  position: absolute; inset: auto -10% -40% -10%; height: 420px;
  background: radial-gradient(50% 60% at 50% 100%, color-mix(in srgb, var(--accent) 26%, transparent), transparent 70%);
  filter: blur(10px); pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; display: grid; gap: 18px; justify-items: center; }
.cta-mark { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; background: linear-gradient(160deg, #1b1e26, #0e1014); border: 1px solid var(--border); box-shadow: var(--shadow-xl); }
.cta-mark .brand-bars { width: 28px; height: 25px; }
.cta h2 { font-size: clamp(30px, 4.4vw, 46px); font-weight: 720; }
.cta p { margin: 0; color: var(--text-dim); font-size: 18px; }
.cta .btn { margin-top: 8px; }
.cta-fine { color: var(--text-faint) !important; font-size: 14px !important; }

/* ---------- Legal pages ---------- */
.legal { padding: 56px 0 80px; }
.legal-wrap { max-width: 760px; }
.legal h1 { font-size: clamp(30px, 4vw, 42px); font-weight: 720; margin-bottom: 8px; }
.legal-updated { color: var(--text-faint); font-size: 14px; margin: 0 0 28px; }
.legal h2 { font-size: 20px; font-weight: 640; margin: 34px 0 10px; }
.legal p { color: var(--text-dim); font-size: 16px; margin: 0 0 14px; }
.legal strong { color: var(--text); font-weight: 620; }
.legal code {
  font-family: ui-monospace, "SF Mono", Menlo, monospace; font-size: 0.88em;
  background: color-mix(in srgb, var(--text) 8%, transparent);
  padding: 1px 6px; border-radius: 5px;
}

/* ---------- Footer ---------- */
.site-footer { border-top: 1px solid var(--border-soft); padding: 44px 0; }
.footer-inner { display: flex; flex-wrap: wrap; align-items: center; gap: 18px 28px; justify-content: space-between; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 22px; }
.footer-nav a { color: var(--text-dim); font-size: 15px; }
.footer-nav a:hover { color: var(--text); }
.footer-fine { margin: 0; color: var(--text-faint); font-size: 13px; flex-basis: 100%; }

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .hero-inner, .how-inner { grid-template-columns: 1fr; gap: 44px; }
  .hero-stage { order: -1; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-cta) { display: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .hero { padding: 56px 0 44px; }
  .panel { width: 290px; }
  .toast { width: 260px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .panel, .toast { animation: none; }
  .btn, .feature { transition: none; }
}
