/* ============================================================
   Endurance by Design — site styles (light & refined)
   Brand: navy + orange, teal secondary accent, Inter
   ============================================================ */

:root {
  --navy-900: #0f1c36;
  --navy-800: #14223d;
  --navy-700: #1b2c4b;
  --navy-600: #2c4063;
  --orange:   #e97b30;
  --orange-600: #d86a1f;
  --teal:     #1fa9c9;
  --teal-600: #178fab;
  --teal-050: rgba(31, 169, 201, 0.10);
  --green:    #34b35a;
  --cream:    #f6f8fb;
  --cream-2:  #eef2f7;
  --white:    #ffffff;
  --ink:      #14223d;
  --muted:    #5a6478;
  --muted-on-dark: #9fb0cc;
  --border:   rgba(20, 34, 61, 0.10);
  --border-2: rgba(20, 34, 61, 0.07);
  --border-on-dark: rgba(255, 255, 255, 0.12);
  --shadow:   0 14px 40px rgba(13, 26, 51, 0.08);
  --shadow-lg: 0 34px 90px rgba(13, 26, 51, 0.16);
  --radius:   20px;
  --radius-sm: 14px;
  --maxw:     1140px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1, h2, h3, h4 { line-height: 1.12; letter-spacing: -0.022em; margin: 0 0 0.4em; font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5.4vw, 4.2rem); }
h2 { font-size: clamp(1.95rem, 3.6vw, 3rem); }
h3 { font-size: 1.18rem; }
p  { margin: 0 0 1rem; }
a  { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.eyebrow {
  display: inline-block; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.eyebrow.teal { color: var(--teal-600); }
.lead { font-size: 1.18rem; color: var(--muted); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: 1rem; padding: 14px 26px; border-radius: 999px;
  border: 2px solid transparent; cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--orange); color: #fff; box-shadow: 0 10px 24px rgba(233,123,48,.30); }
.btn-primary:hover { background: var(--orange-600); transform: translateY(-2px); }
.btn-outline { background: transparent; border-color: var(--border); color: var(--ink); }
.btn-outline:hover { border-color: var(--ink); transform: translateY(-2px); }
.btn-ghost { background: transparent; border-color: var(--border-on-dark); color: #fff; }
.btn-ghost:hover { border-color: #fff; transform: translateY(-2px); }
.btn-teal { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(31,169,201,.28); }
.btn-teal:hover { background: var(--teal-600); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border-2);
}
.nav { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.01em; }
.brand .logo { height: 30px; width: auto; }
.brand span { font-size: 1.05rem; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a { color: var(--muted); font-weight: 600; font-size: .95rem; }
.nav-links a:hover { color: var(--ink); }
.nav-cta { display: flex; align-items: center; gap: 14px; }

/* ---------- Hero (light) ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(680px 380px at 88% 8%, var(--teal-050), transparent 70%),
    radial-gradient(700px 420px at 8% 0%, rgba(233,123,48,.08), transparent 70%),
    linear-gradient(180deg, #ffffff 0%, var(--cream) 100%);
}
.hero-inner { display: grid; grid-template-columns: 1.04fr .96fr; gap: 48px; align-items: center; padding: 74px 0 82px; }
.hero h1 { color: var(--ink); }
.hero h1 .accent { color: var(--orange); }
.hero .lead { max-width: 42ch; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; margin: 30px 0 22px; }

/* App Store badge */
.app-store-link { display: inline-flex; transition: transform .15s ease, opacity .15s ease; }
.app-store-link:hover { transform: translateY(-2px); opacity: .92; }
.store-badge { height: 54px; width: auto; display: block; }
.store-badge.sm { height: 40px; }
.app-store-cta { display: inline-flex; flex-direction: column; align-items: center; gap: 9px; }
.coming-soon-tag { display: inline-block; padding: 6px 11px; border-radius: 999px; background: rgba(20,34,61,.07); color: var(--muted); font-size: .7rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; white-space: nowrap; }
.coming-soon-tag.on-dark { background: rgba(255,255,255,.12); color: #c7d2e6; }
.coming-soon-tag.xs { font-size: .58rem; padding: 4px 9px; letter-spacing: .08em; }
.hero-trust { display: flex; gap: 18px; flex-wrap: wrap; color: var(--muted); font-size: .85rem; font-weight: 600; align-items: center; }
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); display: inline-block; }

/* ---------- Phone device mock (dark frame, light screen) ---------- */
.device-wrap { display: flex; justify-content: center; position: relative; }
.device-wrap.device-glow::after {
  content: ""; position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%);
  width: 116%; height: 104%; z-index: 0; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(31,169,201,.20), rgba(233,123,48,.12) 58%, transparent 74%);
  filter: blur(26px);
}
.device {
  position: relative; z-index: 1;
  width: 300px; background: #11151c; border-radius: 46px; padding: 11px;
  box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.25);
}
.device.sm { width: 250px; border-radius: 40px; padding: 9px; }
.device .island { position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 86px; height: 22px; background: #000; border-radius: 999px; z-index: 3; }
.device.sm .island { width: 70px; height: 18px; top: 16px; }
.screen { position: relative; background: var(--cream); border-radius: 36px; overflow: hidden; }
.device.sm .screen { border-radius: 31px; }
.statusbar { display: flex; justify-content: space-between; align-items: center; padding: 13px 24px 4px; font-size: .72rem; font-weight: 700; color: var(--ink); }
.statusbar .icons { letter-spacing: 1px; opacity: .8; }
.screen-pad { padding: 12px 16px 18px; }

.scr-greet { color: var(--muted); font-size: .82rem; }
.scr-greet b { display: block; color: var(--ink); font-size: 1.35rem; font-weight: 800; letter-spacing: -.02em; }
.scr-row { display: grid; grid-template-columns: 1.25fr .9fr; gap: 10px; margin-top: 14px; }
.scr-card { background: #fff; border: 1px solid var(--border-2); border-radius: 18px; box-shadow: 0 6px 16px rgba(13,26,51,.05); }
.scr-card.pad { padding: 14px; }
.ring-card { display: flex; flex-direction: column; align-items: center; padding: 14px 10px; }
.ring-card .lbl { color: var(--muted); font-size: .72rem; font-weight: 600; }
.ring { width: 116px; height: 116px; margin: 2px 0; }
.ring .score { font-size: 2rem; font-weight: 800; fill: var(--ink); }
.ring-card .status { color: var(--green); font-weight: 700; font-size: .82rem; }
.week-card { padding: 14px; display: flex; flex-direction: column; justify-content: center; }
.week-card .t { display: flex; align-items: center; gap: 6px; color: var(--muted); font-size: .76rem; font-weight: 600; }
.week-card .n { font-size: 1.7rem; font-weight: 800; color: var(--ink); margin-top: 2px; }
.week-card .track { height: 6px; border-radius: 999px; background: var(--cream-2); margin-top: 10px; overflow: hidden; }
.week-card .track i { display: block; height: 100%; width: 42%; background: var(--teal); border-radius: 999px; }
.scr-h { font-size: .82rem; font-weight: 700; color: var(--ink); margin: 16px 2px 8px; }
.wkt { display: flex; align-items: center; gap: 11px; padding: 11px 12px; margin-bottom: 8px; }
.wkt .ic { width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none; }
.wkt .ic svg { width: 18px; height: 18px; }
.wkt .meta { flex: 1; min-width: 0; }
.wkt .meta b { font-size: .86rem; color: var(--ink); display: block; }
.wkt .meta span { font-size: .72rem; color: var(--muted); }
.wkt .pill { font-size: .62rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; padding: 3px 8px; border-radius: 999px; }
.ic-run { background: rgba(233,123,48,.14); color: var(--orange); }
.ic-bike { background: var(--teal-050); color: var(--teal-600); }
.ic-swim { background: rgba(52,120,246,.12); color: #3b78f6; }
.ic-str { background: rgba(236,72,153,.12); color: #ec4899; }
.pill-easy { background: rgba(52,179,90,.14); color: #2c9b4f; }
.pill-mod { background: rgba(233,123,48,.14); color: var(--orange-600); }
.pill-hard { background: var(--teal-050); color: var(--teal-600); }

/* mini calendar (light) */
.cal-head { display: flex; align-items: center; justify-content: space-between; margin: 6px 2px 10px; }
.cal-head b { font-size: 1rem; font-weight: 800; }
.cal-head .chev { width: 26px; height: 26px; border-radius: 50%; background: var(--cream-2); display: grid; place-items: center; color: var(--muted); font-size: .8rem; }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 4px; text-align: center; }
.cal-grid .dow { color: var(--muted); font-size: .6rem; font-weight: 700; padding-bottom: 2px; }
.cal-grid .d { font-size: .72rem; color: var(--ink); padding: 5px 0; border-radius: 8px; }
.cal-grid .d.dim { color: #b7c0cf; }
.cal-grid .d.today { background: var(--teal); color: #fff; font-weight: 700; }
.cal-grid .d.dot { position: relative; }
.cal-grid .d.dot::after { content:""; position:absolute; bottom:1px; left:50%; transform:translateX(-50%); width:4px; height:4px; border-radius:50%; background: var(--orange); }

/* placeholder note on mock */
.mock-note { text-align: center; color: var(--muted); font-size: .78rem; margin-top: 14px; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
.section-light { background: var(--cream); }
.section-dark { background: var(--navy-800); color: #fff; }
.section-dark h2 { color: #fff; }
.section-head { max-width: 660px; margin-bottom: 44px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--muted); font-size: 1.12rem; margin: 0; }
.section-dark .section-head p { color: var(--muted-on-dark); }

.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card { background: #fff; border: 1px solid var(--border-2); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.card h3 { margin-bottom: 8px; }
.card p { color: var(--muted); margin: 0; font-size: .96rem; }
.card .ico { width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; background: var(--teal-050); color: var(--teal-600); margin-bottom: 16px; }
.card .ico.orange { background: rgba(233,123,48,.12); color: var(--orange); }
.card .ico svg { width: 24px; height: 24px; }
.section-light .card { box-shadow: 0 10px 30px rgba(13,26,51,.06); }

/* steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.step { padding: 26px; border-radius: var(--radius); background: #fff; border: 1px solid var(--border-2); box-shadow: var(--shadow); }
.step .num { font-size: .78rem; font-weight: 800; color: var(--teal-600); letter-spacing: .1em; }
.step h3 { margin: 10px 0 8px; }
.step p { color: var(--muted); margin: 0; font-size: .95rem; }

/* disciplines */
.disc-band { background: var(--navy-800); border-radius: 24px; padding: 40px; color: #fff; }
.disc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 22px; }
.disc { display: flex; align-items: center; gap: 12px; background: var(--navy-700); border: 1px solid var(--border-on-dark); border-radius: 14px; padding: 16px 18px; }
.disc .d-ico { width: 40px; height: 40px; border-radius: 50%; background: rgba(31,169,201,.18); color: #5fd0e6; display: grid; place-items: center; flex: none; }
.disc .d-ico svg { width: 20px; height: 20px; }
.disc strong { color: #fff; font-size: 1rem; }

/* showcase gallery */
.showcase { display: flex; gap: 30px; justify-content: center; align-items: flex-end; flex-wrap: wrap; }
.showcase .device { transition: transform .25s ease; }
.showcase .device:hover { transform: translateY(-8px); }
.shot-cap { text-align: center; margin-top: 16px; }
.shot-cap b { display: block; color: var(--ink); font-size: 1rem; }
.shot-cap span { color: var(--muted); font-size: .88rem; }
.shot-item { display: flex; flex-direction: column; align-items: center; }

/* real-screenshot phone frame */
.phone-shot { position: relative; z-index: 1; width: 100%; max-width: 290px; margin: 0 auto; background: #11151c; border-radius: 44px; padding: 10px; box-shadow: var(--shadow-lg); border: 1px solid rgba(0,0,0,.22); }
.phone-shot img { display: block; width: 100%; border-radius: 34px; }
.phone-shot .island { position: absolute; top: 19px; left: 50%; transform: translateX(-50%); width: 78px; height: 20px; background: #000; border-radius: 999px; z-index: 2; }

/* goal-race journey (real screens) */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; align-items: start; }
.jstep { display: flex; flex-direction: column; align-items: center; }
.jstep .phone-shot { margin-bottom: 24px; }
.jcap { display: flex; gap: 13px; align-items: flex-start; max-width: 330px; }
.jnum { width: 34px; height: 34px; border-radius: 50%; background: var(--navy-800); color: #fff; font-weight: 800; font-size: .9rem; display: grid; place-items: center; flex: none; }
.jcap h3 { margin: 0 0 5px; font-size: 1.12rem; }
.jcap p { color: var(--muted); margin: 0; font-size: .95rem; }
.snip { background: var(--cream); border: 1px solid var(--border-2); border-radius: 16px; padding: 16px; }

.snip-race { display: flex; gap: 12px; align-items: center; }
.snip-race .ic { width: 42px; height: 42px; border-radius: 12px; background: rgba(233,123,48,.14); color: var(--orange); display: grid; place-items: center; flex: none; }
.snip-race .ic svg { width: 22px; height: 22px; }
.snip-race b { display: block; font-size: .92rem; color: var(--ink); line-height: 1.25; }
.snip-race .sub { font-size: .78rem; color: var(--muted); }
.snip-tags { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.tag-a { background: var(--orange); color: #fff; font-size: .64rem; font-weight: 800; letter-spacing: .06em; padding: 4px 9px; border-radius: 999px; }
.snip-tags .cd { color: var(--muted); font-size: .78rem; font-weight: 600; }

.snip-phase { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 12px; }
.snip-phase b { font-size: .9rem; color: var(--ink); }
.snip-phase span { font-size: .76rem; color: var(--muted); }
.week-strip { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; text-align: center; }
.week-strip .wd { font-size: .58rem; color: var(--muted); margin-bottom: 6px; font-weight: 700; }
.week-strip .chip { height: 30px; border-radius: 8px; display: grid; place-items: center; font-size: .58rem; font-weight: 800; color: #fff; letter-spacing: .02em; }
.chip.sw { background: #3b78f6; } .chip.bk { background: var(--teal); } .chip.rn { background: var(--orange); }
.chip.st { background: #ec4899; } .chip.rs { background: #d4dbe4; color: var(--muted); }

.snip-ready { display: flex; align-items: center; gap: 14px; }
.snip-ready .rr { width: 72px; height: 72px; flex: none; }
.snip-ready .rr text { font-size: 1.55rem; font-weight: 800; fill: var(--ink); }
.snip-ready b { display: block; color: var(--green); font-size: .94rem; }
.snip-ready .sub { color: var(--muted); font-size: .8rem; }

/* lifestyle band */
.lifestyle-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 8px; }
.life-tile { position: relative; aspect-ratio: 3/4; border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); }
.life-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.life-tile:hover img { transform: scale(1.04); }
.life-tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,28,54,0) 50%, rgba(13,28,54,.72) 100%); pointer-events: none; }
.life-label { position: absolute; left: 22px; right: 22px; bottom: 18px; color: #fff; z-index: 1; }
.life-label b { display: block; font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.life-label span { font-size: .82rem; color: rgba(255,255,255,.85); font-weight: 600; }

/* integrations */
.integ { display: flex; align-items: flex-start; gap: 16px; }
.integ .badge { font-size: .64rem; font-weight: 800; letter-spacing: .1em; color: var(--teal-600); }
.integ .i-ico { width: 50px; height: 50px; border-radius: 14px; background: var(--cream); border: 1px solid var(--border-2); display: grid; place-items: center; flex: none; color: var(--navy-700); }
.integ .i-ico svg { width: 26px; height: 26px; }
.integ h3 { margin: 6px 0 4px; font-size: 1.05rem; }
.integ p { color: var(--muted); font-size: .92rem; margin: 0; }

/* engine band (dark) */
.engine { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: center; }
.bar { height: 16px; border-radius: 999px; background: rgba(255,255,255,.12); overflow: hidden; display: flex; }
.bar .easy { width: 80%; background: var(--teal); }
.bar .hard { width: 20%; background: var(--orange); }
.bar-legend { display: flex; justify-content: space-between; color: var(--muted-on-dark); font-size: .82rem; margin-top: 10px; font-weight: 600; }
.factors { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 26px; }
.factor { text-align: center; background: var(--navy-700); border: 1px solid var(--border-on-dark); border-radius: 12px; padding: 14px 8px; }
.factor .pct { font-size: 1.3rem; font-weight: 800; color: #5fd0e6; }
.factor .nm { font-size: .72rem; color: var(--muted-on-dark); text-transform: uppercase; letter-spacing: .05em; }

/* founder */
.founder { display: grid; grid-template-columns: .85fr 1.15fr; gap: 48px; align-items: center; }
.founder-photo { border-radius: 22px; overflow: hidden; box-shadow: var(--shadow-lg); max-width: 360px; }
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder blockquote { font-size: 1.35rem; font-weight: 600; line-height: 1.42; color: var(--ink); margin: 0 0 22px; letter-spacing: -0.01em; }
.founder .sig { font-weight: 700; }
.founder .sig small { display: block; color: var(--muted); font-weight: 500; }
.stat-row { display: flex; gap: 30px; flex-wrap: wrap; margin: 26px 0 0; }
.stat .n { font-size: 1.9rem; font-weight: 800; color: var(--orange); line-height: 1; }
.stat .l { font-size: .82rem; color: var(--muted); }
.founder .sig { margin-top: 18px; }

/* built-by-athletes panel */
.ethos-card { background: radial-gradient(420px 320px at 82% -12%, var(--navy-600), var(--navy-800)); color: #fff; border-radius: 24px; padding: 38px 34px; box-shadow: var(--shadow-lg); width: 100%; max-width: 420px; }
.ethos-label { color: #5fd0e6; font-size: .74rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.ethos-flag { width: 62px; height: 62px; border-radius: 16px; background: rgba(255,255,255,.08); border: 1px solid var(--border-on-dark); display: grid; place-items: center; margin: 18px 0 16px; }
.ethos-flag svg { width: 32px; height: 32px; color: var(--orange); }
.ethos-card h3 { color: #fff; font-size: 1.5rem; margin: 0 0 20px; letter-spacing: -.01em; }
.ethos-list { list-style: none; padding: 0; margin: 0; }
.ethos-list li { display: flex; align-items: center; gap: 13px; padding: 13px 0; border-top: 1px solid var(--border-on-dark); color: #dfe7f3; font-size: .95rem; font-weight: 500; }
.ethos-list li:first-child { border-top: 0; }
.ethos-list .ei { width: 38px; height: 38px; border-radius: 11px; background: rgba(31,169,201,.18); color: #5fd0e6; display: grid; place-items: center; flex: none; }
.ethos-list .ei svg { width: 20px; height: 20px; }

/* pricing (single, centered) */
.price-card { background: #fff; border: 2px solid var(--orange); border-radius: 24px; padding: 40px; box-shadow: var(--shadow-lg); max-width: 440px; margin: 0 auto; position: relative; text-align: center; }
.price-flag { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--orange); color: #fff; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 6px 16px; border-radius: 999px; }
.price-name { font-weight: 700; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-size: .82rem; }
.price-amt { font-size: 3.4rem; font-weight: 800; margin: 6px 0 0; }
.price-amt small { font-size: 1.05rem; font-weight: 600; color: var(--muted); }
.price-sub { color: var(--muted); font-size: .95rem; margin-bottom: 24px; }
.price-card ul { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: inline-block; }
.price-card li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; color: var(--ink); font-size: .98rem; }
.price-card li svg { width: 18px; height: 18px; color: var(--teal-600); flex: none; margin-top: 4px; }
.price-note { text-align: center; color: var(--muted); font-size: .85rem; margin-top: 24px; }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; }
.faq details { border-bottom: 1px solid var(--border); padding: 20px 0; }
.faq summary { font-weight: 700; font-size: 1.05rem; cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.5rem; color: var(--orange); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { content: "\2013"; }
.faq p { color: var(--muted); margin: 14px 0 0; }

/* final CTA */
.cta-band { background: radial-gradient(900px 440px at 80% -30%, var(--navy-600), var(--navy-800)); color: #fff; border-radius: 28px; padding: 66px 48px; text-align: center; position: relative; overflow: hidden; }
.cta-band h2 { color: #fff; }
.cta-band p { color: #c7d2e6; max-width: 50ch; margin: 0 auto 26px; font-size: 1.1rem; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* footer */
.site-footer { background: var(--navy-900); color: var(--muted-on-dark); padding: 60px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-logo-chip { background: #fff; border-radius: 11px; padding: 8px 12px; display: inline-flex; }
.footer-logo-chip img { height: 26px; width: auto; }
.footer-about p { color: var(--muted-on-dark); font-size: .92rem; max-width: 34ch; margin-top: 16px; }
.footer-col h4 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a { display: block; color: var(--muted-on-dark); padding: 6px 0; font-size: .94rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid var(--border-on-dark); padding-top: 22px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Legal pages ---------- */
.legal-hero { background: var(--navy-800); color: #fff; padding: 72px 0 56px; }
.legal-hero h1 { font-size: clamp(2rem, 4vw, 3rem); color: #fff; }
.legal-hero p { color: var(--muted-on-dark); margin: 0; }
.legal { padding: 64px 0 90px; }
.legal-body { max-width: 780px; margin: 0 auto; }
.legal-body h2 { font-size: 1.5rem; margin-top: 44px; }
.legal-body h3 { font-size: 1.12rem; margin-top: 28px; }
.legal-body p, .legal-body li { color: #2c384e; font-size: 1rem; }
.legal-body ul { padding-left: 22px; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--teal-600); text-decoration: underline; }
.legal-toc { background: var(--cream); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px 28px; margin-bottom: 40px; }
.legal-toc h4 { margin: 0 0 12px; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.legal-toc ol { margin: 0; padding-left: 20px; columns: 2; gap: 30px; }
.legal-toc li { margin-bottom: 6px; }
.legal-toc a { color: var(--ink); text-decoration: none; font-size: .94rem; }
.legal-toc a:hover { color: var(--teal-600); }
.placeholder { background: #fff6ec; border: 1px dashed var(--orange); border-radius: 8px; padding: 1px 7px; color: var(--orange-600); font-weight: 700; font-size: .92em; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; padding: 60px 0 72px; }
  .device-wrap { order: -1; margin-bottom: 12px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .lifestyle-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .disc-grid { grid-template-columns: repeat(2, 1fr); }
  .engine { grid-template-columns: 1fr; }
  .founder { grid-template-columns: 1fr; }
  .founder-photo { max-width: 280px; }
  .ethos-card { margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .legal-toc ol { columns: 1; }
}
@media (max-width: 620px) {
  section { padding: 64px 0; }
  .nav-links { display: none; }
  .grid-2, .grid-4, .grid-3, .steps, .disc-grid { grid-template-columns: 1fr; }
  .factors { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-band { padding: 48px 24px; }
  .hero-cta .btn, .cta-actions .btn { width: 100%; }
}
