/* ==========================================================================
   speedometer.bilalakkoc.com — mockup
   Structure: "car product page". Centered cinematic hero with a giant speed readout,
   a horizontal scroll-snap model gallery, a technical spec sheet, alternating full-width
   feature rows, a one-road "how it works", a privacy statement, a two-column FAQ list
   and a slim support bar. Family of www (Urbanist, CSS iPhone 16 Pro Max).
   Palette: night navy ground, HUD gauge blue, the icon's blue→red speed arc as thin accents,
   the app's STOP red for warnings.
   ========================================================================== */
:root {
  --night: #0a111c;          /* app background */
  --night-2: #111b2a;        /* app cards */
  --night-3: #18263a;
  --night-deep: #060b13;
  --night-line: rgba(255, 255, 255, .1);
  --on-night: #eef3fa;       /* on --night: 17:1 */
  --on-night-muted: #a3b2c7; /* on --night: 8.9:1, on --night-deep: 9.6:1 */
  --paper: #f3f5f9;
  --white: #ffffff;
  --ink: #0a111c;            /* on paper: 17.6:1 */
  --ink-2: #4b5870;          /* on paper: 6.8:1, on white: 7.3:1 */
  --line: #d8dfe9;
  --blue: #1f9bff;           /* HUD blue; --night text on it: 7.0:1 */
  --blue-soft: #74c0ff;      /* text on --night: 9.8:1 */
  --blue-text: #0a63bd;      /* text on paper: 5.7:1, on white: 6.2:1 */
  --red: #ef4b4f;            /* graphics; text on --night: 5.3:1 */
  --red-text: #c22f36;       /* on white: 5.6:1 */
  --yellow: #f5c518;
  --spectrum: linear-gradient(90deg, #2f6bff, #1ea7ff 22%, #19c37d 45%, #f5c518 66%, #ff7a1a 84%, #ef3b2d);
  --radius: 24px;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --font: "Urbanist", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --gutter: clamp(16px, 4vw, 40px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 88px; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: var(--font); font-size: 1.0625rem; line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 6px; }
.wrap { width: 100%; max-width: 1180px; margin-inline: auto; padding-inline: var(--gutter); }
.skip-link { position: absolute; left: 12px; top: -60px; z-index: 100; background: var(--blue); color: var(--night); padding: .5rem .9rem; border-radius: 10px; text-decoration: none; font-weight: 700; }
.skip-link:focus { top: 12px; color: var(--night); }
.i-line { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; flex: 0 0 auto; }
.i-apple { width: 18px; height: 18px; fill: currentColor; flex: 0 0 auto; }
.muted { color: var(--ink-2); }

/* ---------- Buttons & links ---------- */
.btn-store { display: inline-flex; align-items: center; justify-content: center; gap: .55rem; min-height: 54px; padding: .6rem 1.6rem; border-radius: 999px; background: var(--blue); color: var(--night); font: 700 1rem var(--font); text-decoration: none; white-space: nowrap; transition: transform .25s var(--ease), background-color .2s, color .2s; }
.btn-store:hover { background: #fff; color: var(--night); transform: translateY(-2px); }
.btn-store-sm { min-height: 42px; padding: .4rem 1.1rem; font-size: .92rem; }

.link-arrow { display: inline-flex; align-items: center; gap: .45rem; min-height: 44px; font-weight: 700; color: var(--blue-soft); text-decoration: none; }
.link-arrow span { background: linear-gradient(currentColor, currentColor) 0 100% / 0 2px no-repeat; transition: background-size .3s var(--ease); }
.link-arrow:hover { color: var(--blue-soft); }
.link-arrow:hover span { background-size: 100% 2px; }
.link-arrow-ink, .link-arrow-ink:hover { color: var(--blue-text); }

/* ---------- Header (night) ---------- */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 17, 28, .92); color: var(--on-night); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); }
.site-header::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--spectrum); opacity: 0; transition: opacity .3s; }
.site-header.is-scrolled::after { opacity: .55; }
.header-inner { display: flex; align-items: center; gap: 1.5rem; height: 72px; }
.brand { display: inline-flex; align-items: center; gap: .65rem; text-decoration: none; color: var(--on-night); flex: 0 0 auto; }
.brand:hover { color: var(--on-night); }
.brand img { width: 40px; height: 40px; border-radius: 10px; box-shadow: 0 0 0 1px var(--night-line); }
.brand-name { font-size: 1.12rem; font-weight: 800; letter-spacing: -.01em; }
.main-nav { display: flex; gap: 1.8rem; margin-inline: auto; }
.main-nav a { position: relative; text-decoration: none; font-weight: 600; color: var(--on-night); padding-block: .3rem; }
.main-nav a:hover { color: var(--on-night); }
.main-nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px; background: var(--blue); transition: right .3s var(--ease); }
.main-nav a:hover::after { right: 0; }
.header-actions { display: flex; align-items: center; gap: .75rem; }
.lang-switch { display: inline-flex; gap: 2px; padding: 3px; border-radius: 999px; background: rgba(255, 255, 255, .07); box-shadow: inset 0 0 0 1px var(--night-line); }
.lang-btn { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 36px; border: 0; border-radius: 999px; background: transparent; color: var(--on-night-muted); font: 700 .8rem var(--font); text-decoration: none; cursor: pointer; transition: background-color .2s, color .2s; }
.lang-btn:hover { color: var(--on-night); }
.lang-btn[aria-pressed="true"], .lang-btn[aria-current="true"] { background: var(--on-night); color: var(--night); }
@media (max-width: 1023px) { .main-nav { display: none; } .header-actions { margin-left: auto; } }
@media (max-width: 575px) { .btn-store-sm { display: none; } }
@media (max-width: 359px) { .brand-name { display: none; } }

/* ---------- Shared type ---------- */
.kicker { display: inline-flex; align-items: center; gap: .55rem; margin: 0 0 .8rem; font-size: .9rem; font-weight: 700; color: var(--blue-text); }
.kicker::before { content: ""; width: 22px; height: 3px; border-radius: 3px; background: var(--spectrum); }
.lineup .kicker, .specs .kicker, .drive .kicker { color: var(--blue-soft); }
.section-title { margin: 0; font-size: clamp(2rem, 4.4vw, 3.25rem); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
.section-lead { margin: 0; max-width: 48ch; color: var(--ink-2); font-size: 1.1rem; }

/* iPhone 16 Pro Max — Black Titanium (same construction as www / pdfscanner) */
.phone {
  --w: 240px;
  position: relative; z-index: 1; width: var(--w); aspect-ratio: 77.6 / 163;
  padding: calc(var(--w) * .014); border-radius: calc(var(--w) * .17);
  background:
    linear-gradient(90deg, rgba(255,255,255,.35), rgba(255,255,255,0) 8%, rgba(255,255,255,0) 92%, rgba(255,255,255,.28)),
    linear-gradient(160deg, #5b5d62 0%, #2e3034 22%, #64666b 48%, #26282c 74%, #4a4c51 100%);
  box-shadow: 0 0 0 .5px rgba(255,255,255,.18), 0 2px 4px rgba(0,0,0,.3), 0 50px 70px -30px rgba(0, 0, 0, .9);
}
.phone::before, .phone::after { content: ""; position: absolute; width: calc(var(--w) * .016); border-radius: 2px; background: linear-gradient(90deg, #26282c, #5b5d62); }
.phone::before { left: calc(var(--w) * -.012); top: 17%; height: 4.2%; box-shadow: 0 calc(var(--w) * .16) 0 0 #3b3d42, 0 calc(var(--w) * .32) 0 0 #3b3d42; }
.phone::after { right: calc(var(--w) * -.012); top: 27%; height: 9%; box-shadow: 0 calc(var(--w) * .5) 0 calc(var(--w) * -.03) #3b3d42; }
.phone-screen { position: relative; width: 100%; height: 100%; overflow: hidden; border: calc(var(--w) * .024) solid #030303; border-radius: calc(var(--w) * .156); background: var(--night); }
.phone-screen::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none; background: linear-gradient(115deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,0) 30%); }
.phone-screen img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top; }
.phone-island { position: absolute; z-index: 3; top: calc(var(--w) * .03); left: 50%; width: 30%; aspect-ratio: 3.3 / 1; transform: translateX(-50%); border-radius: 999px; background: #000; }
.phone-home { position: absolute; z-index: 3; bottom: calc(var(--w) * .022); left: 50%; width: 34%; height: calc(var(--w) * .016); min-height: 2px; transform: translateX(-50%); border-radius: 999px; background: rgba(255,255,255,.35); }

/* ==========================================================================
   1. Hero — full-bleed night, everything on the centre axis
   ========================================================================== */
.hero { position: relative; overflow: hidden; background: var(--night); color: var(--on-night); padding-block: clamp(28px, 4vw, 56px) clamp(64px, 8vw, 112px); text-align: center; }
.hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--spectrum); opacity: .7; }
.hero-stage { --num: clamp(9.5rem, 27vw, 23rem); --pw: clamp(220px, 18vw, 262px); position: relative; display: flex; flex-direction: column; align-items: center; }
.hero-readout { position: relative; display: flex; align-items: flex-start; justify-content: center; margin: 0; line-height: .8; user-select: none; }
.hero-number { font-size: var(--num); font-weight: 900; letter-spacing: -.065em; color: #1d3150; font-variant-numeric: tabular-nums; }
.hero-unit { margin: .35em 0 0 .6rem; font-size: clamp(1rem, 2vw, 1.6rem); font-weight: 800; color: var(--blue-soft); letter-spacing: .02em; }
.hero-phone { --w: var(--pw); margin-top: calc(var(--num) * -.4); }
@media (max-width: 600px) { .hero-phone { margin-top: calc(var(--num) * -.06); } }

.callouts { margin: 0; padding: 0; list-style: none; }
.callout { position: absolute; top: calc(var(--num) * .5 + var(--pw) * .9); display: flex; align-items: center; gap: .9rem; font-size: 1rem; font-weight: 700; color: var(--on-night); white-space: nowrap; }
.callout::before, .callout::after { content: ""; display: block; height: 1px; width: clamp(40px, 6vw, 96px); background: rgba(255, 255, 255, .35); }
.callout::before { width: 9px; height: 9px; border-radius: 50%; background: var(--blue); }
/* left: text — line — dot ; right: dot — line — text (dot sits next to the phone) */
.callout-l { right: calc(50% + var(--pw) / 2 + 12px); }
.callout-l::before { order: 2; }
.callout-l::after { order: 1; }
.callout-r { left: calc(50% + var(--pw) / 2 + 12px); top: calc(var(--num) * .5 + var(--pw) * 1.35); }
.callout-r::before { order: -2; background: var(--red); }
.callout-r::after { order: -1; }
@media (max-width: 900px) {
  .callouts { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem 1.5rem; margin-top: 1.6rem; padding-inline: var(--gutter); }
  .callout { position: static; font-size: .95rem; white-space: normal; gap: .5rem; }
  .callout::after { display: none; }
  .callout-l::before { order: -1; }
}

.hero-copy { max-width: 860px; margin-top: clamp(36px, 5vw, 64px); }
.hero-eyebrow { margin: 0 0 1rem; font-size: .95rem; font-weight: 700; letter-spacing: .08em; color: var(--blue-soft); }
.hero-title { margin: 0 auto; max-width: 16ch; font-size: clamp(2.6rem, 6.4vw, 5.25rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; text-wrap: balance; }
.hero-lead { margin: 1.3rem auto 2rem; max-width: 52ch; font-size: clamp(1.1rem, 1.6vw, 1.25rem); color: var(--on-night-muted); }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: .75rem 1.75rem; }
.hero-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem 2rem; margin: 2.2rem 0 0; padding: 0; list-style: none; font-size: .95rem; font-weight: 600; color: var(--on-night-muted); }
.hero-meta li { display: inline-flex; align-items: center; gap: .45rem; }
.hero-rating strong { font-size: 1.05rem; font-weight: 800; color: var(--on-night); }
.stars { display: inline-flex; gap: 1px; }
.stars svg { width: 15px; height: 15px; fill: var(--yellow); }

/* ==========================================================================
   2. Screens — horizontal model gallery
   ========================================================================== */
.lineup { background: var(--night-deep); color: var(--on-night); padding-block: clamp(72px, 9vw, 120px) clamp(56px, 7vw, 96px); }
.lineup-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 2rem; margin-bottom: clamp(32px, 4vw, 52px); }
.lineup-hint { display: inline-flex; align-items: center; gap: .5rem; margin: 0; font-weight: 700; color: var(--on-night-muted); }
.lineup-track {
  --edge: max(var(--gutter), calc((100% - 1180px) / 2 + var(--gutter)));
  overflow-x: auto; overscroll-behavior-x: contain; scroll-snap-type: x mandatory; scroll-padding-inline: var(--edge);
  padding: 8px var(--edge) 28px; scrollbar-width: thin; scrollbar-color: var(--night-3) transparent;
}
.lineup-track:focus-visible { outline-offset: -3px; border-radius: 0; }
.lineup-list { display: flex; align-items: flex-end; gap: clamp(28px, 5vw, 72px); width: max-content; margin: 0; padding: 0; list-style: none; }
.lineup-item { flex: 0 0 auto; scroll-snap-align: start; }
.lineup-item figure { --w: clamp(230px, 23vw, 310px); display: grid; justify-items: start; gap: 1.2rem; margin: 0; }
.lineup-item .phone { --w: inherit; }
.lineup-item .shot-card { width: calc(var(--w) * 1.18); aspect-ratio: 9 / 16; border-radius: calc(var(--w) * .1); overflow: hidden; background: #000; box-shadow: 0 0 0 1px rgba(255, 255, 255, .14), 0 40px 60px -30px rgba(0, 0, 0, .9); }
.lineup-item .shot-card img { width: 100%; height: 100%; object-fit: cover; }
.lineup-item figcaption { display: flex; align-items: baseline; gap: .7rem; font-size: 1.05rem; font-weight: 700; color: var(--on-night); }
.lineup-num { font-size: .85rem; font-weight: 700; color: var(--blue-soft); font-variant-numeric: tabular-nums; }

/* ==========================================================================
   3. Spec sheet
   ========================================================================== */
.specs { background: var(--night); color: var(--on-night); padding-block: clamp(72px, 9vw, 120px); }
.specs-head { margin-bottom: clamp(32px, 4vw, 52px); }
.spec-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin: 0; border-top: 1px solid rgba(255, 255, 255, .28); }
.spec { display: flex; flex-direction: column; padding: clamp(20px, 2.4vw, 32px) clamp(14px, 2vw, 28px) clamp(24px, 3vw, 40px) 0; border-bottom: 1px solid var(--night-line); }
.spec:not(:nth-child(4n + 1)) { padding-left: clamp(14px, 2vw, 28px); border-left: 1px solid var(--night-line); }
.spec dt { font-size: .92rem; font-weight: 700; color: var(--on-night-muted); }
.spec dd { margin: 0; }
.spec-value { display: flex; align-items: center; gap: .5rem; margin: .5rem 0 .4rem !important; font-size: clamp(2.2rem, 4.4vw, 3.6rem); font-weight: 800; line-height: 1; letter-spacing: -.035em; color: var(--on-night); overflow-wrap: anywhere; }
.spec-value-red { color: var(--red); }
.spec-star { width: .55em; height: .55em; fill: var(--yellow); flex: 0 0 auto; }
.spec-note { font-size: .98rem; font-weight: 600; line-height: 1.45; color: var(--on-night-muted); }
@media (max-width: 900px) {
  .spec-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .spec:not(:nth-child(4n + 1)) { padding-left: 0; border-left: 0; }
  .spec:nth-child(2n) { padding-left: clamp(14px, 3vw, 28px); border-left: 1px solid var(--night-line); }
}
@media (max-width: 480px) { .spec-value { font-size: 1.9rem; } .spec-note { font-size: .92rem; } }

/* ==========================================================================
   4. Features — alternating full-width rows
   ========================================================================== */
.features { padding-block: clamp(80px, 10vw, 140px); }
.features-head { max-width: 760px; margin-bottom: clamp(40px, 6vw, 80px); }
.features-head .section-lead { margin-top: 1rem; }
.frows { margin: 0; padding: 0; list-style: none; }
.frow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr); gap: clamp(28px, 6vw, 96px); align-items: center; padding-block: clamp(36px, 5vw, 64px); border-top: 1px solid var(--line); }
.frow:nth-child(even) { grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); }
.frow:nth-child(even) .frow-copy { order: 2; }
.frow-num { display: block; margin-bottom: 1rem; font-size: 1rem; font-weight: 800; color: var(--blue-text); font-variant-numeric: tabular-nums; }
.frow-title { margin: 0 0 .8rem; font-size: clamp(1.9rem, 3.6vw, 2.9rem); font-weight: 800; line-height: 1.08; letter-spacing: -.025em; text-wrap: balance; }
.frow-text { margin: 0; max-width: 42ch; font-size: 1.12rem; color: var(--ink-2); }
.frow-media { position: relative; aspect-ratio: 16 / 11; border-radius: var(--radius); overflow: hidden; background: var(--night); }
@media (max-width: 860px) {
  .frow, .frow:nth-child(even) { grid-template-columns: minmax(0, 1fr); }
  .frow:nth-child(even) .frow-copy { order: 0; }
}
/* crops of real screenshots */
.crop img { position: absolute; left: 50%; width: 62%; height: auto; max-width: none; transform: translateX(-50%); }
.crop::after { content: ""; position: absolute; inset: auto 0 0 0; height: 30%; background: linear-gradient(transparent, var(--night)); pointer-events: none; }
.crop-gauge img { top: -8%; }
.crop-stats img { top: -128%; width: 88%; }
.crop-history img { top: -10%; width: 70%; }
/* typographic panels */
.type-panel { display: grid; place-items: center; }
.type-panel::before { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 4px; background: var(--spectrum); }
.type-icon { width: 34%; height: auto; fill: none; stroke: var(--red); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.type-panel-red { background: #1a0f14; }
.type-panel-red::before { background: var(--red); }
.type-word { font-size: clamp(5rem, 16vw, 13rem); font-weight: 900; line-height: 1; letter-spacing: -.06em; color: var(--blue); }
.readouts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 1.5rem; max-width: 420px; margin: 1.6rem 0 0; padding: 0; list-style: none; }
.readouts li { padding: .6rem 0; border-top: 1px solid var(--line); font-weight: 700; }
.ticks { display: grid; gap: .6rem; margin: 1.6rem 0 0; padding: 0; list-style: none; font-weight: 600; }
.ticks li { position: relative; padding-left: 1.7rem; }
.ticks li::before { content: ""; position: absolute; left: 0; top: .3em; width: 17px; height: 17px; border-radius: 50%; background: var(--blue-text); }
.ticks li::after { content: ""; position: absolute; left: 6px; top: calc(.3em + 3.5px); width: 5px; height: 8px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }

/* ==========================================================================
   5. How it works — one road, three stops
   ========================================================================== */
.drive { background: var(--night); color: var(--on-night); padding-block: clamp(80px, 10vw, 130px); }
.road { position: relative; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(24px, 4vw, 56px); margin: clamp(40px, 5vw, 64px) 0 0; padding: 0; list-style: none; }
.road::before { content: ""; position: absolute; left: 0; right: 0; top: 27px; height: 2px; background: var(--spectrum); opacity: .8; }
.road-stop { position: relative; }
.road-num { display: grid; place-items: center; width: 56px; height: 56px; margin-bottom: 1.4rem; border-radius: 50%; background: var(--night); box-shadow: inset 0 0 0 2px var(--on-night); font-size: 1.35rem; font-weight: 800; }
.road-title { margin: 0 0 .4rem; font-size: 1.45rem; font-weight: 800; line-height: 1.2; }
.road-stop p { margin: 0; max-width: 36ch; color: var(--on-night-muted); }
@media (max-width: 760px) {
  .road { grid-template-columns: minmax(0, 1fr); gap: 32px; }
  .road::before { left: 27px; right: auto; top: 0; bottom: 0; width: 2px; height: auto; background: linear-gradient(#2f6bff, #19c37d 45%, #f5c518 66%, #ef3b2d); }
  .road-stop { padding-left: 80px; }
  .road-num { position: absolute; left: 0; top: 0; }
}
.made-for { display: flex; flex-wrap: wrap; align-items: baseline; gap: .6rem 1.5rem; margin-top: clamp(56px, 7vw, 88px); padding-top: 2rem; border-top: 1px solid var(--night-line); }
.made-for-title { margin: 0; font-size: 1rem; font-weight: 700; color: var(--on-night-muted); }
.made-for-list { display: flex; flex-wrap: wrap; gap: .2rem 0; margin: 0; padding: 0; list-style: none; font-size: clamp(1.35rem, 2.6vw, 2rem); font-weight: 800; letter-spacing: -.015em; }
.made-for-list li:not(:last-child)::after { content: "/"; margin-inline: .55em; font-weight: 400; color: #4d5d75; }
.safety { display: grid; grid-template-columns: auto minmax(0, 1fr); gap: 14px; margin-top: 2.5rem; padding: 1.1rem 1.3rem; border-left: 3px solid var(--red); background: var(--night-2); border-radius: 0 14px 14px 0; }
.safety .i-line { width: 26px; height: 26px; margin-top: 2px; color: var(--red); }
.safety-title { margin: 0 0 .2rem; font-size: 1.05rem; font-weight: 800; }
.safety p { margin: 0; max-width: 90ch; font-size: .95rem; color: var(--on-night-muted); }

/* ==========================================================================
   6. Privacy statement
   ========================================================================== */
.privacy { background: var(--white); padding-block: clamp(80px, 10vw, 130px); }
.privacy-top { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr); gap: 2rem clamp(32px, 6vw, 96px); align-items: end; }
@media (max-width: 860px) { .privacy-top { grid-template-columns: minmax(0, 1fr); } }
.privacy-title { margin: 0; font-size: clamp(2.4rem, 5.6vw, 4.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; text-wrap: balance; }
.privacy-side .section-lead { margin-block: 1rem .4rem; }
.privacy-tag { display: inline-flex; flex-wrap: wrap; align-items: center; gap: .3rem .6rem; margin: 0; padding: .5rem 1rem .5rem .7rem; border-radius: 14px; background: var(--paper); box-shadow: inset 0 0 0 1px var(--line); font-size: .92rem; font-weight: 600; color: var(--ink-2); }
.privacy-tag .i-line { width: 22px; height: 22px; color: var(--blue-text); }
.privacy-tag strong { font-weight: 800; color: var(--ink); }
.privacy-facts { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.5rem clamp(20px, 3vw, 40px); margin: clamp(48px, 6vw, 80px) 0 0; padding: 0; list-style: none; counter-reset: pf; }
.privacy-facts li { counter-increment: pf; padding-top: 1rem; border-top: 2px solid var(--ink); font-size: 1.08rem; font-weight: 700; line-height: 1.4; }
.privacy-facts li::before { content: counter(pf, decimal-leading-zero); display: block; margin-bottom: .5rem; font-size: .85rem; color: var(--blue-text); font-variant-numeric: tabular-nums; }
@media (max-width: 900px) { .privacy-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 480px) { .privacy-facts { grid-template-columns: minmax(0, 1fr); } }

/* ==========================================================================
   7. FAQ — two-column list, all answers visible
   ========================================================================== */
.faq { padding-block: clamp(80px, 10vw, 130px); background: var(--paper); }
.faq-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 1rem 3rem; margin-bottom: clamp(36px, 5vw, 60px); }
.qa-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 clamp(32px, 6vw, 88px); }
@media (max-width: 760px) { .qa-grid { grid-template-columns: minmax(0, 1fr); } }
.qa { padding-block: 1.6rem; border-top: 1px solid var(--line); }
.qa-q { margin: 0 0 .5rem; font-size: 1.2rem; font-weight: 800; line-height: 1.3; }
.qa p { margin: 0; color: var(--ink-2); }

/* ==========================================================================
   8. Support — slim bar
   ========================================================================== */
.support { background: var(--night-2); color: var(--on-night); border-top: 1px solid var(--night-line); }
.support-bar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1rem 2rem; padding-block: clamp(22px, 3vw, 30px); }
.support-copy { display: flex; flex-wrap: wrap; align-items: baseline; gap: .2rem 1rem; }
.support-title { margin: 0; font-size: 1.3rem; font-weight: 800; }
.support-copy p { margin: 0; color: var(--on-night-muted); }
.support-email { display: inline-flex; align-items: center; gap: .6rem; min-height: 48px; padding: .4rem 1.2rem; border-radius: 999px; background: var(--blue); color: var(--night); font-weight: 800; text-decoration: none; overflow-wrap: anywhere; transition: background-color .2s, transform .25s var(--ease); }
.support-email:hover { background: #fff; color: var(--night); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.site-footer { background: var(--night-deep); color: var(--on-night-muted); padding-top: clamp(48px, 6vw, 72px); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 2rem; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-text { margin: 1rem 0 0; max-width: 32ch; font-size: .95rem; }
.footer-head { margin: 0 0 .8rem; font-size: 1rem; font-weight: 700; line-height: 1.3; color: var(--on-night); }
.footer-list { display: grid; gap: .35rem; margin: 0; padding: 0; list-style: none; font-size: .95rem; }
.footer-list a, .link-btn { display: inline-flex; align-items: center; min-height: 32px; text-decoration: none; overflow-wrap: anywhere; }
.footer-list a:hover, .link-btn:hover { color: var(--blue-soft); }
.link-btn { padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.link-btn[aria-pressed="true"], .link-btn[aria-current="true"] { color: var(--on-night); font-weight: 700; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .5rem 1.5rem; margin-top: 3rem; padding-block: 1.5rem; border-top: 1px solid var(--night-line); font-size: .85rem; }

/* ---------- Legal pages (spec-sheet flavour: big title, hairline rules) ---------- */
.legal-hero { position: relative; background: var(--night); color: var(--on-night); padding-block: clamp(48px, 7vw, 96px) clamp(40px, 5vw, 64px); }
.legal-hero::after { content: ""; position: absolute; left: 0; right: 0; bottom: 0; height: 2px; background: var(--spectrum); opacity: .7; }
.legal-hero .kicker { margin-bottom: 1rem; color: var(--blue-soft); }
.legal-title { margin: 0; font-size: clamp(2.6rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.02; letter-spacing: -.04em; }
.legal-meta { display: flex; flex-wrap: wrap; align-items: center; gap: .6rem 1.5rem; margin-top: 1.4rem; padding-top: 1.2rem; border-top: 1px solid var(--night-line); color: var(--on-night-muted); }
.date-pill { display: inline-flex; align-items: center; gap: .5rem; font-size: .95rem; font-weight: 600; color: var(--on-night); }
.date-pill .muted { color: var(--on-night-muted); }
.date-pill .i-line { width: 17px; height: 17px; color: var(--blue-soft); }
.legal-applies { margin: 0; font-size: .95rem; }
.legal-body { padding-block: clamp(40px, 6vw, 72px) clamp(64px, 9vw, 112px); background: var(--white); }
.legal-grid { display: grid; grid-template-columns: 260px minmax(0, 1fr); gap: clamp(32px, 5vw, 72px); align-items: start; }
@media (max-width: 900px) { .legal-grid { grid-template-columns: minmax(0, 1fr); } }
.toc { position: sticky; top: 96px; padding-top: 1rem; border-top: 2px solid var(--ink); }
@media (max-width: 900px) { .toc { position: static; } }
.toc-title { margin: 0 0 .6rem; font-size: .9rem; font-weight: 700; color: var(--ink-2); }
.toc ol { display: grid; gap: 1px; margin: 0; padding: 0; list-style: none; counter-reset: toc; }
.toc li { counter-increment: toc; }
.toc a { display: flex; gap: .6rem; padding: .4rem .5rem; border-radius: 8px; font-size: .94rem; font-weight: 600; line-height: 1.35; text-decoration: none; color: var(--ink); }
.toc a::before { content: counter(toc, decimal-leading-zero); min-width: 1.4em; color: var(--ink-2); font-variant-numeric: tabular-nums; }
.toc a:hover { background: var(--paper); color: var(--ink); }
.toc a.is-active { background: var(--night); color: #fff; }
.toc a.is-active::before { color: var(--blue-soft); }
.legal-article { max-width: 72ch; }
.legal-section { padding-block: 0 2.2rem; margin-bottom: 2.2rem; border-bottom: 1px solid var(--line); }
.legal-section:last-child { border-bottom: 0; margin-bottom: 0; }
.legal-section h2 { display: flex; align-items: baseline; gap: .8rem; margin: 0 0 .9rem; font-size: clamp(1.35rem, 2.4vw, 1.6rem); font-weight: 800; line-height: 1.25; letter-spacing: -.01em; }
.legal-num { flex: 0 0 auto; font-size: .95rem; font-weight: 700; color: var(--blue-text); font-variant-numeric: tabular-nums; }
.legal-section p { margin: 0 0 .9rem; color: #2b364b; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--blue-text); font-weight: 600; overflow-wrap: anywhere; }
.todo { padding: .8rem 1rem; border-radius: 12px; background: #fff4e0; box-shadow: inset 0 0 0 1px #f0c46b; color: #5c3b00 !important; font-weight: 600; }
.legal-draft { display: flex; gap: .6rem; align-items: center; margin: 0 0 2rem; padding: .8rem 1rem; border-radius: 12px; background: #fff4e0; color: #5c3b00; font-size: .92rem; font-weight: 600; }

/* ---------- Reveal (subtle, JS-enhanced only) ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
