/* itrunswithoutyou.com — styles.css
   One file, no build step. Sections in order:
   fonts · tokens · base · nav · buttons · hero · mockup · metrics ·
   sections · value · steps · features · proof · pricing · faq · cta ·
   footer · motion · responsive */

/* Inter (SIL Open Font License), self-hosted: no request leaves your domain. */
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/Inter-var-latin-ext.woff2?v=b5a272c5") format("woff2");
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/Inter-var-latin.woff2?v=2870bcb8") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #FFFFFF;
  --bg-2: #FAFAFA;
  --bg-3: #F4F4F5;
  --fg: #0A0A0A;
  --fg-2: #52525B;
  --fg-3: #8A8A93;
  --border: #E4E4E7;
  --border-2: #EFEFF1;
  --accent: #2F4BEA;
  --accent-soft: #EEF1FD;
  --success: #15803D;
  --success-soft: #EAF7EE;
  --btn: #0A0A0A;
  --btn-hover: #262626;
  --btn-fg: #FFFFFF;
  --card-shadow: 0 1px 2px rgba(0,0,0,.04), 0 1px 1px rgba(0,0,0,.02);
  --mock-shadow: 0 40px 90px -30px rgba(47,75,234,.28), 0 20px 40px -20px rgba(0,0,0,.18), 0 0 0 1px rgba(0,0,0,.06);
  --glow: rgba(47,75,234,.18);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; background: var(--bg); color: var(--fg);
  font-family: "Inter", -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem; line-height: 1.6;
  -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "cv11", "ss01", "ss03";
}
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
h1, h2 { text-wrap: balance; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
svg { display: block; }
.container { max-width: 1120px; margin: 0 auto; padding: 0 1.5rem; }

/* Off-screen until focused: the keyboard route past the sticky nav to <main>. */
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 40;
  background: var(--btn); color: var(--btn-fg);
  padding: 0.7rem 1rem; border-radius: 8px;
  font-size: 0.875rem; font-weight: 600;
}
.skip:focus { left: 0.75rem; top: 0.75rem; }
#main:focus { outline: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 20;
  background: color-mix(in srgb, var(--bg) 80%, transparent);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border-2);
}
.nav .container { height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: flex; align-items: center; gap: 0.6rem; font-weight: 600; font-size: 0.9375rem; letter-spacing: -0.01em; }
.logo { width: 22px; height: 22px; }
.nav-links { display: flex; gap: 1.75rem; font-size: 0.9375rem; color: var(--fg-2); }
.nav-links a:hover { color: var(--fg); }
.nav-right { display: flex; align-items: center; gap: 1rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  height: 44px; padding: 0 1.125rem; border-radius: 8px;
  font-size: 0.9375rem; font-weight: 500; letter-spacing: -0.005em; white-space: nowrap;
  border: 1px solid transparent; cursor: pointer;
  transition: background .15s ease, border-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.btn-primary { background: var(--btn); color: var(--btn-fg); box-shadow: inset 0 1px 0 rgba(255,255,255,.14), 0 1px 2px rgba(0,0,0,.2); }
.btn-primary:hover { background: var(--btn-hover); }
.btn-secondary { background: var(--bg); color: var(--fg); border-color: var(--border); box-shadow: var(--card-shadow); }
.btn-secondary:hover { background: var(--bg-2); border-color: #D4D4D8; }
.btn-lg { height: 48px; padding: 0 1.375rem; font-size: 1rem; }
.btn-sm { height: 36px; padding: 0 0.875rem; font-size: 0.875rem; }
.btn .arrow { width: 16px; height: 16px; opacity: .7; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: 5.5rem 0 0; text-align: center; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: auto 0 0 0; height: 60%; pointer-events: none;
  background: radial-gradient(60% 55% at 50% 100%, var(--glow), transparent 70%);
}
.pill {
  display: inline-flex; align-items: center; gap: 0.5rem;
  height: 30px; padding: 0 0.875rem 0 0.625rem; border-radius: 999px;
  border: 1px solid var(--border); background: var(--bg);
  font-size: 0.8125rem; font-weight: 500; color: var(--fg-2); box-shadow: var(--card-shadow);
}
.pill .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 3px var(--success-soft); }
.hero h1 {
  margin: 1.5rem auto 1.25rem;
  font-size: clamp(2.5rem, 5.6vw, 4.375rem);
  line-height: 1.04; letter-spacing: -0.035em; max-width: 12em;
  font-variation-settings: "opsz" 32;
}
.hero .sub { margin: 0 auto; max-width: 38em; font-size: 1.1875rem; line-height: 1.55; color: var(--fg-2); }
.hero .actions { display: flex; justify-content: center; gap: 0.75rem; margin: 2rem 0 1rem; flex-wrap: wrap; }
.hero .fine { font-size: 0.875rem; color: var(--fg-3); }

/* A hero with no mockup under it has to close its own bottom edge: .hero sets
   `padding: 5.5rem 0 0` because .mock-wrap's own margin is what normally ends
   the block, and without it the metrics strip butts straight into the fine
   print. The 640px value tracks the padding-top override below. */
.hero.no-mock { padding-bottom: 5.5rem; }

.mock-wrap { position: relative; margin: 4rem auto 0; max-width: 1040px; padding: 0 1.5rem; }
.mock {
  position: relative; text-align: left;
  background: var(--bg); border-radius: 14px; box-shadow: var(--mock-shadow);
  overflow: hidden; font-size: 0.8125rem; line-height: 1.4;
  border-bottom-left-radius: 0; border-bottom-right-radius: 0;
  border-bottom: 0;
  mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, #000 78%, transparent 100%);
}
.mock-bar { display: flex; align-items: center; gap: 0.75rem; height: 42px; padding: 0 0.875rem; border-bottom: 1px solid var(--border-2); background: var(--bg-2); }
.dots { display: flex; gap: 6px; }
.dots i { width: 10px; height: 10px; border-radius: 50%; background: var(--border); display: block; }
.url { flex: 1; max-width: 340px; margin: 0 auto; height: 26px; border-radius: 6px; background: var(--bg-3); color: var(--fg-3); font-size: 0.75rem; display: flex; align-items: center; justify-content: center; gap: 6px; }
.mock-body { display: grid; grid-template-columns: 208px 1fr; min-height: 470px; }
.side { border-right: 1px solid var(--border-2); padding: 1rem 0.75rem; background: var(--bg-2); }
.side .group { font-size: 0.6875rem; font-weight: 600; color: var(--fg-3); padding: 0.25rem 0.5rem 0.5rem; letter-spacing: 0.02em; }
.side .item { display: flex; align-items: center; gap: 0.5rem; padding: 0.4rem 0.5rem; border-radius: 6px; color: var(--fg-2); }
.side .item.on { background: var(--bg); color: var(--fg); box-shadow: var(--card-shadow); border: 1px solid var(--border-2); }
.side .item svg { width: 14px; height: 14px; }
.side .avatar { width: 18px; height: 18px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); font-size: 0.625rem; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; }
.pane { padding: 1.25rem 1.5rem; }
.pane-head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; }
.pane-head h4 { margin: 0; font-size: 1rem; font-weight: 600; letter-spacing: -0.01em; }
.pane-head .range { font-size: 0.75rem; color: var(--fg-3); border: 1px solid var(--border); border-radius: 6px; padding: 4px 8px; background: var(--bg); }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.75rem; margin-bottom: 1.25rem; }
.stat { border: 1px solid var(--border-2); border-radius: 10px; padding: 0.75rem 0.875rem; background: var(--bg); }
.stat .k { font-size: 0.6875rem; color: var(--fg-3); font-weight: 500; }
.stat .v { font-size: 1.375rem; font-weight: 600; letter-spacing: -0.03em; margin-top: 2px; }
.stat .v.blue { color: var(--accent); }
table.runs { width: 100%; border-collapse: collapse; }
table.runs th { text-align: left; font-size: 0.6875rem; color: var(--fg-3); font-weight: 500; padding: 0 0.5rem 0.5rem; border-bottom: 1px solid var(--border-2); }
table.runs td { padding: 0.55rem 0.5rem; border-bottom: 1px solid var(--border-2); white-space: nowrap; }
table.runs td.job { color: var(--fg); font-weight: 500; }
table.runs td.job span { color: var(--fg-3); font-weight: 400; }
.status { display: inline-flex; align-items: center; gap: 6px; padding: 2px 8px 2px 6px; border-radius: 999px; font-size: 0.6875rem; font-weight: 500; border: 1px solid var(--border-2); background: var(--bg); color: var(--fg-2); }
.status.done { color: var(--success); background: var(--success-soft); border-color: transparent; }
.status.run { color: var(--accent); background: var(--accent-soft); border-color: transparent; }
.status .spin { width: 10px; height: 10px; border-radius: 50%; border: 1.5px solid currentColor; border-right-color: transparent; animation: spin 0.9s linear infinite; }
.status .tick { width: 10px; height: 10px; }
@keyframes spin { to { transform: rotate(360deg); } }
td.muted { color: var(--fg-3); }
.chart { border: 1px solid var(--border-2); border-radius: 10px; padding: 0.75rem 0.875rem 0.5rem; margin-bottom: 1rem; background: var(--bg); }
.chart-head { display: flex; justify-content: space-between; align-items: center; font-size: 0.6875rem; color: var(--fg-3); font-weight: 500; margin-bottom: 0.5rem; }
.legend { display: inline-flex; align-items: center; gap: 0.35rem; }
.legend .sw { display: inline-block; width: 8px; height: 8px; border-radius: 2px; margin-left: 0.5rem; }
.legend .sw.g { background: var(--border); } .legend .sw.b { background: var(--accent); }
.bars { display: grid; grid-template-columns: repeat(9, 1fr); gap: 6px; height: 92px; align-items: end; }
.bar { position: relative; height: var(--h); border-radius: 3px 3px 0 0; }
.bar.g { background: var(--border); } .bar.b { background: var(--accent); }
.bar span { position: absolute; left: 0; right: 0; top: 100%; margin-top: 4px; text-align: center; font-size: 0.625rem; color: var(--fg-3); }
.bars { margin-bottom: 1rem; }
.caption { margin-top: 1rem; font-size: 0.875rem; color: var(--fg-3); text-align: center; }

/* ---------- Metrics strip ---------- */
.metrics { border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); background: var(--bg-2); }
.metrics .container { display: grid; grid-template-columns: repeat(4, 1fr); }
.metric { padding: 1.75rem 1.5rem; border-left: 1px solid var(--border-2); }
.metric:first-child { border-left: 0; padding-left: 0; }
.metric b { display: block; font-size: 1.75rem; font-weight: 600; letter-spacing: -0.03em; line-height: 1; }
.metric span { display: block; margin-top: 0.4rem; font-size: 0.875rem; color: var(--fg-2); }

/* ---------- Sections ---------- */
section.sec { padding: 6.5rem 0; }
section.sec.alt { background: var(--bg-2); border-top: 1px solid var(--border-2); border-bottom: 1px solid var(--border-2); }
.sec-head { max-width: 40em; margin-bottom: 3rem; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
/* The 3rem is the gap between a section's heading and the grid under it. When
   the head IS the section — a few prose sections carry nothing else — that
   margin has nothing to lead into and prints as 3rem of dead space above the
   next rule. */
.sec-head:only-child { margin-bottom: 0; }
.sec-head h2 { font-size: clamp(1.875rem, 3.3vw, 2.5rem); line-height: 1.12; letter-spacing: -0.03em; font-variation-settings: "opsz" 32; }
.sec-head p { margin-top: 1rem; font-size: 1.125rem; color: var(--fg-2); }
/* a{color:inherit} strips every link of its affordance, which is right for the
   nav, the footer and a button, and wrong for a link inside a sentence — the
   only ones in this tree are in a section head. */
.sec-head p a { color: var(--accent); }

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
.card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 14px; padding: 1.5rem;
  box-shadow: var(--card-shadow);
}
.grid-3 .card { display: flex; flex-direction: column; }
.grid-3 .step-art { margin-top: auto; }
.card h3 { font-size: 1.125rem; letter-spacing: -0.015em; margin-bottom: 0.4rem; }
.card p { color: var(--fg-2); font-size: 0.9375rem; }
.step-num { display: inline-flex; align-items: center; justify-content: center; width: 26px; height: 26px; border-radius: 8px; background: var(--bg-3); color: var(--fg-2); font-size: 0.8125rem; font-weight: 600; margin-bottom: 1rem; }
.step-art { margin-top: 1.5rem; border: 1px solid var(--border-2); background: var(--bg-2); border-radius: 10px; padding: 1rem; font-size: 0.8125rem; min-height: 122px; }

/* step illustrations */
.booking { display: flex; align-items: center; gap: 0.75rem; background: var(--bg); border: 1px solid var(--border-2); border-radius: 8px; padding: 0.625rem 0.75rem; box-shadow: var(--card-shadow); }
.booking .av { width: 28px; height: 28px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: inline-flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.75rem; }
.booking b { display: block; font-weight: 600; }
.booking span { color: var(--fg-3); }
.checks { display: grid; gap: 0.5rem; }
.checks div { display: flex; align-items: center; gap: 0.5rem; color: var(--fg-2); }
.checks .c { width: 16px; height: 16px; border-radius: 50%; border: 1.5px solid var(--border); display: inline-flex; align-items: center; justify-content: center; }
.checks .c.on { background: var(--success); border-color: var(--success); color: #fff; }
.checks .c svg { width: 10px; height: 10px; }
.checks .bar { flex: 1; height: 4px; background: var(--border-2); border-radius: 4px; overflow: hidden; }
.checks .bar i { display: block; height: 100%; width: 62%; background: var(--accent); border-radius: 4px; }
.video { position: relative; height: 96px; border-radius: 8px; background: linear-gradient(135deg, #1a1f3b, #0d1024); overflow: hidden; }
.video .play { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.92); display: flex; align-items: center; justify-content: center; }
.video .play svg { width: 12px; height: 12px; margin-left: 2px; }
.video .dur { position: absolute; right: 8px; bottom: 8px; background: rgba(0,0,0,.55); color: #fff; font-size: 0.6875rem; padding: 2px 6px; border-radius: 4px; }
.video .prog { position: absolute; left: 10px; right: 10px; bottom: 8px; height: 3px; border-radius: 3px; background: rgba(255,255,255,.22); }
.video .prog i { display: block; width: 38%; height: 100%; border-radius: 3px; background: rgba(255,255,255,.85); }

/* value */
.value-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr); gap: 3rem 4rem; align-items: start; }
.value-grid .sec-head { margin-bottom: 1.5rem; }
.outcomes .feat { padding: 1rem 0; }
.outcomes .feat h3 { font-size: 1.0625rem; }
.model { padding: 1.5rem 1.5rem 1rem; position: sticky; top: 88px; }
.model-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 0.75rem; font-size: 0.9375rem; }
.model-head span { font-size: 0.8125rem; color: var(--fg-3); }
.model svg { display: block; width: 100%; height: auto; }

/* features */
.feat { display: flex; gap: 0.875rem; align-items: flex-start; padding: 1.25rem 0; border-top: 1px solid var(--border-2); }
.feat .ic { flex: 0 0 auto; width: 36px; height: 36px; border-radius: 9px; background: var(--bg); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; box-shadow: var(--card-shadow); }
.feat .ic svg { width: 18px; height: 18px; }
.feat h3 { font-size: 1rem; margin-bottom: 0.15rem; }
.feat p { color: var(--fg-2); font-size: 0.9375rem; }
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 2.5rem; }

/* proof */
.tag { display: inline-flex; align-items: center; height: 24px; padding: 0 0.625rem; border-radius: 999px; font-size: 0.75rem; font-weight: 500; background: var(--bg-3); color: var(--fg-2); margin-bottom: 1rem; }
.tag.you { background: var(--accent-soft); color: var(--accent); }
.case p + p { margin-top: 0.75rem; }
.quote-card { margin-top: 1.25rem; padding: 2rem; display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.quote-card blockquote { margin: 0; font-size: clamp(1.25rem, 2vw, 1.5rem); line-height: 1.35; letter-spacing: -0.02em; font-weight: 500; }
.quote-card .by { display: flex; align-items: center; gap: 0.75rem; margin-top: 1.25rem; font-size: 0.9375rem; }
.quote-card .by .av { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-weight: 600; }
.quote-card .by span { display: block; color: var(--fg-3); font-size: 0.875rem; }
.who { display: flex; gap: 1rem; align-items: center; padding: 1rem 1.25rem; border: 1px solid var(--border); border-radius: 12px; background: var(--bg); box-shadow: var(--card-shadow); max-width: 360px; }
.who .mono { flex: 0 0 auto; width: 56px; height: 56px; border-radius: 12px; background: var(--accent-soft); color: var(--accent); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; font-weight: 600; letter-spacing: -0.02em; line-height: 1; }
.who b { display: block; font-size: 0.9375rem; }
.who span { display: block; font-size: 0.8125rem; color: var(--fg-2); }
.who a { color: var(--accent); }

/* pricing */
.price-card { max-width: 480px; margin: 0 auto; padding: 2rem; border-radius: 16px; }
.price-card .amt { font-size: 3rem; font-weight: 600; letter-spacing: -0.04em; line-height: 1; font-variation-settings: "opsz" 32; }
.price-card .amt small { font-size: 1rem; font-weight: 500; letter-spacing: 0; color: var(--fg-2); margin-left: 0.5rem; }
.price-card .desc { margin-top: 0.75rem; color: var(--fg-2); font-size: 0.9375rem; }
.price-card ul { list-style: none; padding: 0; margin: 1.5rem 0; display: grid; gap: 0.625rem; border-top: 1px solid var(--border-2); padding-top: 1.5rem; }
.price-card li { display: flex; gap: 0.625rem; align-items: flex-start; font-size: 0.9375rem; }
.price-card li svg { flex: 0 0 auto; width: 18px; height: 18px; color: var(--success); margin-top: 3px; }
.price-card .btn { width: 100%; }
.price-card .fine { margin-top: 0.875rem; font-size: 0.8125rem; color: var(--fg-3); text-align: center; }

/* faq */
.faq { max-width: 720px; margin: 0 auto; border-top: 1px solid var(--border); }
.faq details { border-bottom: 1px solid var(--border); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.125rem 0; font-weight: 500; font-size: 1.0625rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary svg { width: 18px; height: 18px; color: var(--fg-3); flex: 0 0 auto; transition: transform .2s ease; }
.faq details[open] summary svg { transform: rotate(45deg); }
.faq .a { padding: 0 0 1.25rem; color: var(--fg-2); max-width: 60ch; font-size: 1rem; }

/* final cta */
.cta-block { position: relative; overflow: hidden; border-radius: 20px; background: #0A0A0A; color: #fff; padding: 4.5rem 2rem; text-align: center; }
.cta-block::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 50% 110%, rgba(47,75,234,.55), transparent 70%); pointer-events: none; }
.cta-block > * { position: relative; }
.cta-block h2 { font-size: clamp(1.875rem, 3.3vw, 2.5rem); letter-spacing: -0.03em; line-height: 1.12; font-variation-settings: "opsz" 32; }
.cta-block p { margin: 1rem auto 0; max-width: 34em; color: rgba(255,255,255,.7); font-size: 1.0625rem; }
.cta-block .btn-primary { background: #fff; color: #0A0A0A; margin-top: 2rem; box-shadow: 0 1px 2px rgba(0,0,0,.3); }
.cta-block .btn-primary:hover { background: #E4E4E7; }
.cta-block .write { margin-top: 1rem; font-size: 0.875rem; color: rgba(255,255,255,.55); }
.cta-block .write a { color: rgba(255,255,255,.85); text-decoration: underline; text-underline-offset: 3px; }
/* The global focus ring is var(--accent), and outline-offset puts it OUTSIDE the
   link, so it is measured against what it sits on — here, near-black under the
   blue glow above. #2F4BEA lands at 2.8:1 there, under WCAG 1.4.11's 3:1, and
   worse at narrow widths where the block grows taller and the link sits deeper
   into the gradient. White on the same pixels is 18:1. This is the one place on
   the site where the accent is the wrong colour for a focus ring. */
.cta-block :focus-visible { outline-color: var(--btn-fg); }

/* footer */
footer.site { border-top: 1px solid var(--border-2); padding: 3rem 0; font-size: 0.875rem; color: var(--fg-3); }
footer.site .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; }
footer.site .brand { color: var(--fg); margin-bottom: 0.75rem; }
footer.site h5 { margin: 0 0 0.75rem; font-size: 0.8125rem; font-weight: 600; color: var(--fg); }
footer.site ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
footer.site a:hover { color: var(--fg); }
footer.site p { max-width: 44em; }

/* motion */
.rise { opacity: 0; transform: translateY(10px); animation: rise .7s cubic-bezier(.2,.7,.2,1) forwards; }
.rise.d1 { animation-delay: .05s } .rise.d2 { animation-delay: .15s } .rise.d3 { animation-delay: .25s } .rise.d4 { animation-delay: .4s }
@keyframes rise { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) {
  .rise { opacity: 1; transform: none; animation: none; }
  .status .spin { animation: none; }
  html { scroll-behavior: auto; }
}

/* responsive */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .grid-3, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .metrics .container { grid-template-columns: repeat(2, 1fr); }
  .metric { padding: 1.25rem 1rem; }
  .metric:nth-child(3) { border-left: 0; padding-left: 0; }
  .metric:nth-child(1), .metric:nth-child(2) { border-bottom: 1px solid var(--border-2); }
  .mock-body { grid-template-columns: 1fr; }
  .side { display: none; }
  .quote-card { grid-template-columns: 1fr; }
  .value-grid { grid-template-columns: 1fr; }
  .model { position: static; }
}
@media (max-width: 640px) {
  section.sec { padding: 4rem 0; }
  .hero { padding-top: 3.5rem; }
  .hero.no-mock { padding-bottom: 3.5rem; }
  .hero .actions { flex-direction: column; align-items: stretch; }
  .grid-3, .grid-2, .feat-grid { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stats .stat:last-child { grid-column: 1 / -1; }
  table.runs th:nth-child(3), table.runs td:nth-child(3),
  table.runs th:nth-child(4), table.runs td:nth-child(4) { display: none; }
  .pane { padding: 1rem; overflow: hidden; }
  .pane-head .range { display: none; }
  .mock-wrap { padding: 0 0.5rem; }
  footer.site .container { grid-template-columns: 1fr; }
}
