/* ── Reset & base ─────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  background-color: #0c1610;
  color: #d8eddf;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Layout ──────────────────────────────────────────────────────────── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 800px; }

/* ── Nav ─────────────────────────────────────────────────────────────── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(12,22,16,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f3024;
}
.nav-inner {
  display: flex; align-items: center; gap: 32px;
  height: 64px;
}
.nav-logo { flex-shrink: 0; display: block; }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-link { color: #7fa88a; font-size: 13px; font-weight: 500; white-space: nowrap; }
.nav-link:hover { color: #d8eddf; }
.nav-actions { display: flex; gap: 8px; align-items: center; }
.nav-login { color: #7fa88a; font-size: 13px; font-weight: 500; padding: 7px 14px; border-radius: 8px; white-space: nowrap; }
.nav-login:hover { color: #d8eddf; }
.nav-cta-btn {
  background: #1a7a64; color: #f0f7f2; font-size: 13px; font-weight: 600;
  padding: 8px 18px; border-radius: 8px; white-space: nowrap;
}
.nav-cta-btn:hover { background: #22a080; }
.nav-lang-wrap { position: relative; display: inline-flex; order: 3; margin-left: 4px; }
.nav-lang-btn {
  display: inline-flex; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #7fa88a; padding: 6px 8px; border-radius: 6px; cursor: pointer;
  font-family: inherit;
}
.nav-lang-btn:hover { color: #d8eddf; border-color: rgba(255,255,255,0.18); }
.nav-lang-drop {
  position: absolute; top: calc(100% + 4px); right: 0;
  min-width: 130px; background: #141f17; border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; overflow: hidden; opacity: 0; pointer-events: none;
  transform: translateY(-4px); transition: opacity .15s, transform .15s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.25); z-index: 100;
}
.nav-lang-drop.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-lang-opt {
  display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; font-size: 12px; color: #d8eddf; text-decoration: none;
}
.nav-lang-opt:hover { background: rgba(255,255,255,0.05); }
.nav-lang-opt--active { color: #1a7a64; font-weight: 600; }
.nav-lang-opt + .nav-lang-opt { border-top: 1px solid rgba(255,255,255,0.08); }

/* Mobile burger menu — hidden by default, shown via media query below. */
.nav-burger-wrap { position: relative; display: none; }
.nav-burger {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #7fa88a; padding: 6px 8px; border-radius: 6px; cursor: pointer;
  font-family: inherit;
}
.nav-burger:hover { color: #d8eddf; border-color: rgba(255,255,255,0.18); }
.nav-mobile-panel {
  display: none; position: absolute; top: 64px; left: 0; right: 0;
  background: rgba(12,22,16,0.98); backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f3024;
  flex-direction: column; padding: 12px 16px 20px; gap: 4;
  box-shadow: 0 8px 16px rgba(0,0,0,0.25); z-index: 99;
}
.nav-mobile-panel.open { display: flex; }
.nav-mobile-link {
  color: #d8eddf; font-size: 15px; font-weight: 500;
  padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,0.05);
}
.nav-mobile-link:hover { color: #f0f7f2; }
.nav-mobile-cta {
  margin-top: 12px; background: #1a7a64; color: #f0f7f2;
  font-size: 14px; font-weight: 600; padding: 12px 18px;
  border-radius: 8px; text-align: center;
}
.nav-mobile-cta:hover { background: #22a080; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero { position: relative; padding: 96px 0 80px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -120px; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(26,122,100,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(26,122,100,0.15); border: 1px solid rgba(26,122,100,0.3);
  color: #22a080; font-size: 12px; font-weight: 600;
  padding: 6px 14px; border-radius: 999px; letter-spacing: 0.5px; margin-bottom: 28px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 72px); font-weight: 800;
  line-height: 1.1; letter-spacing: -1px; margin-bottom: 24px; color: #f0f7f2;
}
.accent { color: #1a7a64; }
.hero-sub {
  font-size: 18px; line-height: 1.65; color: #7fa88a;
  max-width: 580px; margin-bottom: 40px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn-primary {
  display: inline-block; background: #1a7a64; color: #f0f7f2;
  font-weight: 700; font-size: 15px; padding: 14px 28px; border-radius: 10px;
}
.btn-primary:hover { background: #22a080; }
.btn-primary--lg { font-size: 17px; padding: 16px 36px; border-radius: 12px; }
.btn-secondary {
  display: inline-block; background: transparent; color: #7fa88a;
  font-weight: 500; font-size: 15px; padding: 14px 24px; border-radius: 10px;
  border: 1px solid #1f3024;
}
.btn-secondary:hover { border-color: #2a4030; color: #d8eddf; }

/* ── Pitch ────────────────────────────────────────────────────────────── */
.pitch-section {
  padding: 32px 0 40px;
  border-top: 1px solid #1f3024; border-bottom: 1px solid #1f3024;
}
.pitch-text { font-size: 15px; line-height: 1.75; color: #7fa88a; text-align: center; }

/* ── Sections ─────────────────────────────────────────────────────────── */
.section { padding: 80px 0; }
.section--alt { background-color: #101e14; }
.section-header { text-align: center; margin-bottom: 52px; }
.section-title {
  font-size: clamp(26px, 3.5vw, 38px); font-weight: 700;
  color: #f0f7f2; margin-bottom: 12px; letter-spacing: -0.5px;
}
.section-sub { font-size: 16px; color: #7fa88a; }

/* ── Features grid ────────────────────────────────────────────────────── */
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature-card {
  background: #162218; border: 1px solid #1f3024;
  border-radius: 16px; padding: 28px 24px;
}
.feature-icon { font-size: 28px; margin-bottom: 16px; }
.feature-title { font-size: 16px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; }
.feature-desc { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── Steps ────────────────────────────────────────────────────────────── */
.steps-row { display: flex; gap: 20px; }
.step-card {
  flex: 1; background: #162218; border: 1px solid #1f3024;
  border-radius: 16px; padding: 32px 28px;
}
.step-num {
  width: 36px; height: 36px; border-radius: 999px;
  background: rgba(26,122,100,0.15); border: 1px solid rgba(26,122,100,0.35);
  color: #1a7a64; font-weight: 800; font-size: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.step-title { font-size: 17px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; }
.step-desc { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── For whom ─────────────────────────────────────────────────────────── */
.for-whom-list { display: flex; flex-direction: column; gap: 14px; }
.for-whom-item {
  display: flex; align-items: flex-start;
  font-size: 15px; line-height: 1.6; color: #7fa88a;
  background: #162218; border: 1px solid #1f3024;
  border-radius: 10px; padding: 14px 18px;
}
.check { color: #1a7a64; margin-right: 10px; flex-shrink: 0; }

/* ── Coming soon ──────────────────────────────────────────────────────── */
.coming-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.coming-card {
  display: flex; gap: 14px; align-items: flex-start;
  background: #162218; border: 1px solid #1f3024;
  border-radius: 12px; padding: 20px 18px;
}
.coming-icon { font-size: 22px; flex-shrink: 0; margin-top: 1px; }
.coming-title { font-size: 14px; font-weight: 600; color: #d8eddf; margin-bottom: 4px; }
.coming-desc { font-size: 13px; line-height: 1.55; color: #7fa88a; }

/* ── FAQ ──────────────────────────────────────────────────────────────── */
.faq-cols { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.faq-item {
  background: #162218; border: 1px solid #1f3024;
  border-radius: 14px; padding: 24px 22px;
}
.faq-q { font-size: 15px; font-weight: 700; color: #f0f7f2; margin-bottom: 10px; line-height: 1.4; }
.faq-a { font-size: 14px; line-height: 1.65; color: #7fa88a; }

/* ── CTA ─────────────────────────────────────────────────────────────── */
.cta-section {
  padding: 96px 0;
  background: linear-gradient(180deg, #0c1610 0%, #101e14 100%);
  border-top: 1px solid #1f3024;
}
.cta-title {
  font-size: clamp(30px, 4vw, 48px); font-weight: 800;
  color: #f0f7f2; margin-bottom: 16px; letter-spacing: -0.5px;
}
.cta-sub { font-size: 16px; line-height: 1.7; color: #7fa88a; margin-bottom: 36px; }
.cta-login { margin-top: 16px; color: #7a9e88; font-size: 13px; }
.cta-login-link { color: #7fa88a; text-decoration: underline; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.footer { border-top: 1px solid #1f3024; padding: 32px 0; }
.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 32px;
}
.footer-tagline { color: #7a9e88; font-size: 12px; margin-top: 8px; max-width: 260px; }
.footer-right { color: #7a9e88; font-size: 12px; text-align: right; }
.footer-right p + p { margin-top: 4px; }
.footer-copy { margin-top: 8px !important; }

/* ── Landing v2 — Showcase rows + widgets ─────────────────────────────── */

.w-card {
  background: #141f17;
  border: 1px solid rgba(127,168,138,0.18);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}
.w-card-title {
  font-size: 11px;
  font-weight: 600;
  color: #7fa88a;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.showcase-row {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid rgba(127,168,138,0.10);
}
.showcase-row.reverse { grid-template-columns: 1.15fr 1fr; }
.showcase-row.reverse .copy { order: 2; }
.showcase-row.reverse .visual { order: 1; }

.pretitle {
  color: #22a080;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.showcase-row h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #f0f7f2;
  margin-bottom: 18px;
}
.showcase-row p {
  font-size: 16px;
  line-height: 1.7;
  color: #a8c5b3;
  margin-bottom: 14px;
}
.showcase-row .copy strong { color: #d8eddf; font-weight: 600; }
.showcase-row ul { list-style: none; margin-top: 18px; }
.showcase-row li {
  font-size: 14px;
  color: #a8c5b3;
  padding: 7px 0 7px 24px;
  position: relative;
  line-height: 1.55;
}
.showcase-row li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22a080;
  font-weight: 700;
}

/* Showcase full-width (timeline) */
.showcase-full {
  padding: 88px 0;
  border-top: 1px solid rgba(127,168,138,0.10);
}
.showcase-full-head {
  text-align: center;
  max-width: 780px;
  margin: 0 auto 48px;
  padding: 0 24px;
}
.showcase-full-head .pretitle { margin-bottom: 14px; }
.showcase-full-head h2 {
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  color: #f0f7f2;
  margin-bottom: 16px;
}
.showcase-full-head p {
  font-size: 16px;
  line-height: 1.65;
  color: #a8c5b3;
}
.container--wide { max-width: 1240px; margin: 0 auto; padding: 0 24px; }

/* Timeline widget */
.w-timeline { padding: 18px 0 8px; }
.w-timeline-head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 0 12px;
}
.w-timeline-head .nav-btn {
  background: none;
  border: none;
  color: #7fa88a;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
}
.w-timeline-head .season-label {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #f0f7f2;
}
.w-timeline svg { display: block; width: 100%; height: auto; }
.w-timeline-legend {
  display: flex;
  gap: 22px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 22px 16px;
  border-top: 1px solid rgba(127,168,138,0.12);
  margin-top: 8px;
  justify-content: center;
}
.legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: #7fa88a; }
.legend-dot { width: 11px; height: 11px; border-radius: 50%; }
.legend-dot.a { background: #68d492; }
.legend-dot.b { background: #5ba4cf; }
.legend-band { width: 16px; height: 6px; border-radius: 3px; }
.legend-band.prep { background: rgba(104,212,146,0.45); }
.legend-band.recov { background: rgba(255,107,53,0.45); }

/* Alerts widget */
.w-alerts-head {
  padding-bottom: 12px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(127,168,138,0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.w-alerts-count {
  background: #c25a4a;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 999px;
}
.alert-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 14px 12px;
  border-radius: 8px;
  margin-bottom: 6px;
}
.alert-row.danger { background: rgba(248,113,113,0.08); border-left: 3px solid #f87171; }
.alert-row.warn   { background: rgba(255,107,53,0.08); border-left: 3px solid #ff6b35; }
.alert-row.info   { background: rgba(91,164,207,0.08); border-left: 3px solid #5ba4cf; }
.alert-icon { flex-shrink: 0; margin-top: 2px; color: #f87171; }
.alert-row.warn .alert-icon { color: #ff6b35; }
.alert-row.info .alert-icon { color: #5ba4cf; }
.alert-body strong {
  color: #f0f7f2;
  font-size: 14px;
  font-weight: 600;
  display: block;
  margin-bottom: 3px;
}
.alert-body span { font-size: 13px; color: #a8c5b3; line-height: 1.5; }

/* Runner profile widget */
.w-runner-head {
  display: flex;
  gap: 14px;
  align-items: center;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(127,168,138,0.12);
}
.runner-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1a7a64;
  color: #f0f7f2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 17px;
}
.runner-name { font-size: 16px; font-weight: 700; color: #f0f7f2; margin-bottom: 2px; }
.runner-meta { font-size: 12px; color: #7fa88a; font-family: 'DM Mono', monospace; }
.runner-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 14px; }
.runner-stat-cell {
  background: #0c1610;
  border: 1px solid rgba(127,168,138,0.12);
  border-radius: 8px;
  padding: 10px 12px;
}
.runner-stat-val {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #22a080;
  line-height: 1;
  letter-spacing: 0.02em;
}
.runner-stat-lbl {
  font-size: 10px;
  color: #7fa88a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.runner-races-title {
  font-size: 10px;
  color: #7fa88a;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 8px;
}
.runner-race-row { display: grid; grid-template-columns: 1fr 60px 80px 60px; align-items: center; padding: 9px 0; border-bottom: 1px solid rgba(127,168,138,0.08); font-size: 13px; gap: 8px; }
.runner-race-row:last-child { border-bottom: none; }
.runner-race-name { color: #d8eddf; font-weight: 500; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.runner-race-year { color: #82a08a; font-family: 'DM Mono', monospace; font-size: 11px; text-align: right; }
.runner-race-meta { color: #7fa88a; font-family: 'DM Mono', monospace; font-size: 11px; text-align: right; }
.runner-race-rank { color: #22a080; font-family: 'DM Mono', monospace; font-weight: 600; text-align: right; }

/* Trajectory chart widget */
.w-traj { padding: 12px 6px 8px; }
.w-traj-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
  padding: 4px 4px 0;
}
.w-traj-head .w-card-title { font-size: 13px; color: #d8eddf; letter-spacing: 0.08em; }
.w-traj svg { display: block; width: 100%; height: auto; }
.w-traj-legend {
  margin-top: 22px;
  padding: 18px 8px 6px;
  border-top: 1px solid rgba(127,168,138,0.12);
}
.w-traj-legend-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  align-items: center;
  font-size: 11px;
  color: #7fa88a;
  line-height: 1.4;
  margin-bottom: 6px;
}
.swatch-line {
  display: inline-flex;
  align-items: center;
  width: 26px;
  height: 8px;
  position: relative;
}
.swatch-line::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  height: 2px;
  background: #22a080;
  border-radius: 1px;
}
.swatch-line::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 1.5px;
  width: 5px;
  height: 5px;
  background: #22a080;
  border-radius: 50%;
  transform: translateX(-50%);
}
.swatch-tick {
  display: inline-block;
  width: 12px;
  height: 3px;
  background: #22a080;
  border-radius: 1.5px;
}
.swatch-band {
  display: inline-block;
  width: 22px;
  height: 10px;
  background: rgba(130,160,138,0.10);
  border: 1px solid rgba(130,160,138,0.32);
  border-radius: 2px;
}
.pill-badge {
  display: inline-block;
  padding: 1px 7px;
  font-family: 'DM Mono', monospace;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9px;
  border: 1px solid;
}
.pill-badge.gain-fill { background: #22a080; color: #0c1610; border-color: #22a080; }
.pill-badge.gain      { color: #22a080; border-color: #22a080; }
.pill-badge.loss-fill { background: #e24b4a; color: #0c1610; border-color: #e24b4a; }
.pill-badge.loss      { color: #ff6b35; border-color: #ff6b35; }

/* Also section */
.also-section {
  padding: 100px 0;
  border-top: 1px solid rgba(127,168,138,0.10);
}
.also-header { text-align: center; margin-bottom: 48px; }
.also-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: #f0f7f2;
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.also-header p { color: #a8c5b3; font-size: 16px; }
.also-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.also-card {
  background: #141f17;
  border: 1px solid rgba(127,168,138,0.15);
  border-radius: 12px;
  padding: 22px;
}
.also-card svg { color: #22a080; margin-bottom: 14px; }
.also-card h3 { font-size: 15px; font-weight: 700; color: #d8eddf; margin-bottom: 8px; }
.also-card p { font-size: 13px; color: #7fa88a; line-height: 1.55; }

/* Cycle section */
.cycle-section { padding: 100px 0; background: rgba(20,31,23,0.5); }
.cycle-header { text-align: center; margin-bottom: 56px; }
.cycle-header h2 {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 800;
  color: #f0f7f2;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}
.cycle-header p {
  color: #a8c5b3;
  font-size: 16px;
  max-width: 560px;
  margin: 0 auto;
}
.cycle-flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 880px;
  margin: 0 auto;
}
.cycle-step {
  background: #141f17;
  border: 1px solid rgba(127,168,138,0.18);
  border-radius: 14px;
  padding: 26px;
}
.cycle-step.active { border-color: #1a7a64; background: rgba(26,122,100,0.06); }
.cycle-step.future { opacity: 0.55; }
.step-icon {
  width: 46px;
  height: 46px;
  border-radius: 11px;
  background: rgba(26,122,100,0.15);
  color: #22a080;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.cycle-step.future .step-icon { background: rgba(127,168,138,0.08); color: #7fa88a; }
.cycle-step h3 { font-size: 18px; font-weight: 700; color: #f0f7f2; margin-bottom: 6px; }
.step-status {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.step-status.live { background: rgba(26,122,100,0.2); color: #22a080; }
.step-status.soon { background: rgba(127,168,138,0.12); color: #7fa88a; }
.cycle-step p { font-size: 13px; color: #a8c5b3; line-height: 1.55; }

/* ── Responsive ──────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-row, .showcase-row.reverse {
    gap: 48px;
    padding: 64px 0;
  }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps-row { flex-direction: column; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .nav-links { display: none; }
  .nav-cta-btn { display: none; }
  .coming-grid { grid-template-columns: 1fr; }
  .faq-cols { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-right { text-align: left; }
  /* Tighten the public nav so it fits within ≤375px viewports without
     overflowing. The container's 24px padding + logo + login + lang pill
     would otherwise push past the right edge. */
  .nav-inner { gap: 12px; }
  .container { padding: 0 16px; }
  .nav-login { padding: 6px 8px; font-size: 12px; }
  .nav-lang-btn { padding: 6px 6px; }
  .nav-lang-wrap { margin-left: 0; }
  .nav-actions { gap: 4px; }
  .nav-burger-wrap { display: inline-flex; }
  .showcase-row, .showcase-row.reverse {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 56px 0;
  }
  .showcase-row.reverse .copy { order: 1; }
  .showcase-row.reverse .visual { order: 2; }
  .showcase-full { padding: 56px 0; }
  .showcase-full-head { margin-bottom: 32px; }
  .container--wide { padding: 0 16px; }
  .cycle-flow { grid-template-columns: 1fr; }
  .also-section, .cycle-section { padding: 64px 0; }
}
