/* ============================================================================
   Be Savage — design system
   ----------------------------------------------------------------------------
   Brand is fixed by the iOS app: Montserrat, lime #D5FF08 on near-black. The
   site's point of view: this product MEASURES rotation, so the page is built
   like an instrument readout. Montserrat carries voice; JetBrains Mono is
   reserved strictly for measured values + telemetry labels (never body), so
   every number reads like a HUD. Amber #FFB347 (the app's real off-target
   verdict colour) is the second voice, keeping it off the mono-green cliché.
   Token NAMES are kept stable (--bg, --lime, …) so per-page inline styles work.
   ========================================================================== */

:root {
  /* surfaces */
  --bg:        #07070B;   /* page */
  --bg-soft:   #0E0E15;   /* alternating band */
  --surface:   #121219;   /* card */
  --surface-2: #1B1B26;   /* raised / chip */

  /* brand + semantic */
  --lime:        #D5FF08;             /* primary · on-target */
  --lime-soft:   rgba(213, 255, 8, 0.14);
  --lime-line:   rgba(213, 255, 8, 0.30);
  --amber:       #FFB347;             /* secondary · off-target */
  --amber-soft:  rgba(255, 179, 71, 0.16);

  /* ink */
  --ink:        #FFFFFF;
  --ink-muted:  rgba(255, 255, 255, 0.68);
  --ink-faint:  rgba(255, 255, 255, 0.42);
  --line:       rgba(255, 255, 255, 0.09);
  --line-soft:  rgba(255, 255, 255, 0.05);

  /* radius */
  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 26px;

  /* type */
  --font-display: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

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

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

body {
  font-family: var(--font-display);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

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

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* Accessibility: skip link + focus + reduced motion ---------------------- */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 100;
  background: var(--lime); color: #000; font-weight: 700;
  padding: 10px 16px; border-radius: 10px;
  transition: top 0.18s ease;
}
.skip-link:focus { top: 16px; }

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

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important;
      transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* Shared type helpers ---------------------------------------------------- */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px;
  background: var(--lime-line);
}
.eyebrow.plain::before { display: none; }

.mono { font-family: var(--font-mono); font-variant-numeric: tabular-nums; }

.lime { color: var(--lime); }

/* ============================================================================
   Header
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding: 16px 0;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header .row { display: flex; align-items: center; justify-content: space-between; }

.brand-lockup {
  font-weight: 800;
  font-size: 21px;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand-lockup .lime { color: var(--lime); }
.brand-mark {
  width: 26px; height: 26px;
  flex: none;
}

.site-header nav { display: flex; align-items: center; gap: 26px; }
.site-header nav a {
  color: var(--ink-muted);
  font-size: 14px;
  font-weight: 500;
}
.site-header nav a:hover { color: var(--ink); }
.site-header nav a.nav-cta {
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: var(--lime);
  border: 1px solid var(--lime-line);
  padding: 8px 16px;
  border-radius: 999px;
}
.site-header nav a.nav-cta:hover { background: var(--lime-soft); color: var(--lime); }

/* ============================================================================
   Buttons
   ========================================================================== */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime);
  color: #000;
  padding: 15px 26px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15.5px;
  letter-spacing: -0.005em;
  border: 1px solid var(--lime);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(213,255,8,0.22); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink);
  padding: 15px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  border: 1px solid var(--line);
  transition: border-color 0.16s ease, color 0.16s ease;
}
.btn-ghost:hover { border-color: var(--lime-line); color: var(--lime); }

/* Legacy CTA aliases used by preview / coaches pages */
.cta-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--lime); color: #000;
  padding: 15px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15.5px; letter-spacing: -0.005em;
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}
.cta-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(213,255,8,0.22); }
.cta-secondary {
  display: inline-flex; align-items: center;
  color: var(--ink-muted); padding: 15px 4px;
  font-size: 14.5px; font-weight: 500;
}
.cta-secondary:hover { color: var(--lime); }
.ctas { display: flex; gap: 18px; flex-wrap: wrap; align-items: center; }

/* ============================================================================
   HERO — instrument readout
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(56px, 9vw, 104px) 0 clamp(60px, 8vw, 96px);
  overflow: hidden;
}
/* faint degree-tick / blueprint atmosphere behind the gauge */
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 78% 42%, rgba(213,255,8,0.10), transparent 46%),
    radial-gradient(circle at 12% 8%, rgba(255,179,71,0.06), transparent 42%);
  pointer-events: none;
}
.hero .container { position: relative; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: clamp(32px, 5vw, 76px);
  align-items: center;
}

.hero h1 {
  font-size: clamp(44px, 7vw, 86px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 22px 0 22px;
}
.hero h1 .lime { color: var(--lime); }

.hero .subhead {
  font-size: clamp(17px, 1.55vw, 20px);
  color: var(--ink-muted);
  margin-bottom: 34px;
  max-width: 500px;
}
.hero .ctas { margin-bottom: 26px; }

.hero-trust {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  display: flex; gap: 18px; flex-wrap: wrap;
}
.hero-trust b { color: var(--lime); font-weight: 700; }

.badge-app-store { display: inline-block; height: 54px; }
.badge-app-store img, .badge-app-store svg { height: 100%; width: auto; }

/* --- Gauge / analysis panel (the signature element) --------------------- */
.analysis-panel {
  position: relative;
  background:
    linear-gradient(180deg, var(--surface) 0%, #0c0c12 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px 26px 22px;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
  max-width: 440px;
  justify-self: center;
  width: 100%;
}
.analysis-panel .panel-head {
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink-faint);
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line-soft);
}
.analysis-panel .panel-head .live {
  display: inline-flex; align-items: center; gap: 7px; color: var(--lime);
}
.analysis-panel .panel-head .live::before {
  content: ""; width: 7px; height: 7px; border-radius: 50%;
  background: var(--lime); box-shadow: 0 0 0 0 rgba(213,255,8,0.6);
  animation: pulse 2.4s ease-out infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(213,255,8,0.5); }
  70% { box-shadow: 0 0 0 8px rgba(213,255,8,0); }
  100% { box-shadow: 0 0 0 0 rgba(213,255,8,0); }
}

.gauge-wrap { display: flex; justify-content: center; padding: 22px 0 6px; }
.gauge { position: relative; width: 232px; height: 232px; }
.gauge svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.gauge .ring-track { fill: none; stroke: var(--line); stroke-width: 13; }
.gauge .ring-fill {
  fill: none; stroke: var(--lime); stroke-width: 13; stroke-linecap: round;
  filter: drop-shadow(0 0 8px rgba(213,255,8,0.45));
}
.gauge .ticks line { stroke: rgba(255,255,255,0.16); }
.gauge .ticks line.major { stroke: rgba(255,255,255,0.34); }

.gauge-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center;
}
.gauge-center .value {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  font-size: 50px; font-weight: 700; line-height: 1; letter-spacing: -0.02em;
  color: var(--ink);
}
.gauge-center .value .unit { font-size: 19px; color: var(--ink-muted); margin-left: 2px; }
.gauge-center .metric-label {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 8px;
}

.verdict-pill {
  display: inline-flex; align-items: center; gap: 8px;
  margin: 6px auto 0; padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12.5px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  border-radius: 999px;
}
.verdict-pill::before { content: "✓"; font-size: 13px; }
.verdict-pill.on-target { background: var(--lime-soft); color: var(--lime); border: 1px solid var(--lime-line); }
.verdict-pill.off-target { background: var(--amber-soft); color: var(--amber); border: 1px solid rgba(255,179,71,0.3); }
.verdict-pill.off-target::before { content: "△"; }

.panel-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; margin-top: 20px;
  background: var(--line-soft);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.panel-stats .stat { background: var(--surface); padding: 14px 10px; text-align: center; }
.panel-stats .stat .n {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 21px; font-weight: 700; color: var(--ink);
}
.panel-stats .stat .k {
  font-family: var(--font-mono);
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-faint); margin-top: 4px;
}

/* ============================================================================
   Section scaffolding
   ========================================================================== */
.section { padding: clamp(64px, 9vw, 116px) 0; }
.section.soft { background: var(--bg-soft); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow { justify-content: center; }

.section-title {
  font-size: clamp(30px, 4.2vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
  margin: 16px 0 16px;
}
.section-sub { font-size: 18px; color: var(--ink-muted); }

/* Value props ------------------------------------------------------------ */
.props-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.prop-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 26px 30px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.prop-card:hover { border-color: var(--lime-line); transform: translateY(-3px); }
.prop-card .tag {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lime);
}
.prop-card h3 { font-size: 21px; font-weight: 700; margin: 14px 0 9px; letter-spacing: -0.01em; }
.prop-card p { color: var(--ink-muted); font-size: 15px; }
.prop-metric {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 30px; font-weight: 700; color: var(--ink);
  margin-bottom: 4px;
}
.prop-metric .unit { font-size: 15px; color: var(--ink-faint); }

/* Feature rows ----------------------------------------------------------- */
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.feature-grid.reverse .feature-media { order: 2; }
.feature-media { display: flex; justify-content: center; }
.feature-media img {
  border-radius: 30px;
  border: 1px solid var(--line);
  max-width: 320px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.feature-list { list-style: none; margin-top: 26px; }
.feature-list li {
  padding: 13px 0;
  color: var(--ink-muted);
  font-size: 15.5px;
  border-bottom: 1px solid var(--line-soft);
  display: flex; gap: 13px; align-items: flex-start;
}
.feature-list li::before {
  content: "";
  flex: none; margin-top: 8px;
  width: 7px; height: 7px;
  background: var(--lime);
  transform: rotate(45deg);
}

/* Trick Lab — sparkline -------------------------------------------------- */
.lab-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.lab-chart {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.lab-chart .chart-head {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-mono);
  font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-faint);
  margin-bottom: 18px;
}
.lab-chart .chart-head .delta { color: var(--lime); }
.lab-chart svg { width: 100%; height: auto; display: block; }
.lab-chart .x-axis { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 10.5px; color: var(--ink-faint); margin-top: 10px; }

/* Pricing ---------------------------------------------------------------- */
.price-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 980px; margin: 0 auto; }
.price-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  text-align: left;
  position: relative;
}
.price-card.featured {
  border-color: var(--lime);
  background: linear-gradient(160deg, rgba(213,255,8,0.08), var(--surface) 55%);
}
.price-card .tier {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-muted);
}
.price-card.featured .tier { color: var(--lime); }
.price-card .price {
  font-family: var(--font-mono); font-variant-numeric: tabular-nums;
  font-size: 42px; font-weight: 700; letter-spacing: -0.02em; margin: 8px 0 4px;
}
.price-card .price .unit { font-size: 15px; color: var(--ink-muted); font-weight: 500; font-family: var(--font-display); }
.price-card .badge {
  position: absolute; top: -11px; right: 18px;
  background: var(--lime); color: #000;
  font-family: var(--font-mono);
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.08em;
  padding: 6px 12px; border-radius: 999px;
}
.pricing-fine { font-size: 13px; color: var(--ink-faint); margin: 34px auto 0; max-width: 660px; text-align: center; }

/* ============================================================================
   Video — "film room"
   ========================================================================== */
.video-frame {
  position: relative;
  width: 100%; max-width: 940px; margin: 44px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: 0 40px 90px rgba(0,0,0,0.55);
}
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* ============================================================================
   Link-preview pages (program / exercise / attempt) + coaches hero
   ========================================================================== */
.preview {
  flex: 1;
  display: flex;
  align-items: center;
  padding: clamp(56px, 8vw, 92px) 0;
  position: relative;
  overflow: hidden;
}
.preview::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 30%, rgba(213,255,8,0.08), transparent 50%);
  pointer-events: none;
}
.preview .container { position: relative; }
.preview-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: clamp(32px,5vw,64px); align-items: center; }
.preview-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); display: inline-block; margin-bottom: 16px;
}
.preview h1 { font-size: clamp(34px, 5vw, 54px); font-weight: 800; line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 20px; }
.preview .lead { font-size: 18px; color: var(--ink-muted); margin-bottom: 30px; max-width: 540px; }
.preview .meta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 30px; }
.meta-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  padding: 8px 14px; border-radius: 999px;
  font-family: var(--font-mono); font-size: 12.5px; color: var(--ink-muted);
}
.meta-chip strong { color: var(--ink); font-weight: 700; }
.preview-screen { position: relative; justify-self: center; max-width: 330px; width: 100%; filter: drop-shadow(0 30px 60px rgba(0,0,0,0.5)); }
.preview-screen img { width: 100%; border-radius: 34px; border: 1px solid var(--line); }

/* About-app strip (coaches/preview footers) */
.about-app { padding: clamp(48px,7vw,72px) 0; background: var(--bg-soft); border-top: 1px solid var(--line-soft); }
.about-app h2 { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; margin-bottom: 14px; }
.about-app p { color: var(--ink-muted); max-width: 720px; margin-bottom: 22px; }

/* ============================================================================
   Long-form prose (privacy, support)
   ========================================================================== */
.prose { flex: 1; padding: clamp(52px,7vw,80px) 0 88px; position: relative; }
.prose::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 320px;
  background: radial-gradient(circle at 15% 0%, rgba(213,255,8,0.06), transparent 60%);
  pointer-events: none;
}
.prose .container { max-width: 760px; position: relative; }
.prose .doc-eyebrow {
  font-family: var(--font-mono);
  font-size: 12px; font-weight: 500; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lime); display: inline-block; margin-bottom: 16px;
}
.prose h1 { font-size: clamp(32px,4.5vw,48px); font-weight: 800; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 12px; }
.prose .updated { font-family: var(--font-mono); color: var(--ink-faint); font-size: 13px; margin-bottom: 44px; }
.prose h2 { font-size: 23px; font-weight: 800; letter-spacing: -0.012em; margin: 44px 0 14px; scroll-margin-top: 90px; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 26px 0 8px; }
.prose p, .prose li { color: var(--ink-muted); font-size: 16px; margin-bottom: 14px; }
.prose ul { margin: 0 0 14px 22px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose a { color: var(--lime); text-decoration: underline; text-decoration-color: var(--lime-line); }
.prose .lead { font-size: 18px; color: var(--ink-muted); margin-bottom: 32px; }
.prose .callout {
  background: var(--surface); border: 1px solid var(--line);
  border-left: 3px solid var(--lime);
  border-radius: var(--radius); padding: 20px 24px; margin: 24px 0;
}
.prose .callout p:last-child { margin-bottom: 0; }
.contact-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 34px; margin-top: 8px; text-align: center;
}
.contact-card .email { font-size: clamp(22px,3vw,30px); font-weight: 800; letter-spacing: -0.01em; }
.contact-card .email a { color: var(--lime); text-decoration: none; }

/* ============================================================================
   Footer
   ========================================================================== */
.site-footer { padding: 30px 0; font-size: 12px; color: var(--ink-faint); background: var(--bg); border-top: 1px solid var(--line-soft); }
.site-footer .row { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px; align-items: center; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a { color: var(--ink-muted); }
.site-footer a:hover { color: var(--lime); }

.footer {
  padding: clamp(56px,7vw,72px) 0 36px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; margin-bottom: 36px; }
.footer .brand { font-size: 22px; font-weight: 800; margin-bottom: 10px; }
.footer .brand .lime { color: var(--lime); }
.footer p { color: var(--ink-faint); font-size: 14px; max-width: 320px; }
.footer-links h4 {
  font-family: var(--font-mono);
  font-size: 11.5px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-muted); margin-bottom: 16px;
}
.footer-links a { display: block; padding: 6px 0; color: var(--ink-muted); font-size: 14px; }
.footer-links a:hover { color: var(--lime); }
.footer-legal {
  padding-top: 28px; border-top: 1px solid var(--line-soft);
  color: var(--ink-faint); font-size: 12px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.footer-legal .mono { font-family: var(--font-mono); }

/* ============================================================================
   Responsive
   ========================================================================== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .analysis-panel { order: -1; max-width: 400px; }
  .feature-grid, .feature-grid.reverse,
  .lab-grid, .preview-grid { grid-template-columns: 1fr; gap: 40px; }
  .feature-grid.reverse .feature-media { order: 0; }
  .props-grid, .price-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .lab-chart { order: -1; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .site-header nav { gap: 12px; }
  .site-header nav a:not(.nav-cta) { display: none; }
  .brand-lockup { font-size: 19px; }
  .hero h1 { font-size: clamp(38px, 11.5vw, 54px); }
  .analysis-panel { padding: 20px 18px 18px; }
  .gauge { width: min(232px, 64vw); height: auto; aspect-ratio: 1; }
  .gauge-center .value { font-size: clamp(38px, 12vw, 50px); }
  .panel-stats .stat { padding: 12px 6px; }
  .panel-stats .stat .n { font-size: 17px; }
  .panel-stats .stat .k { font-size: 9px; letter-spacing: 0.08em; }
}
