/* jale.cab — the same language as the app: plate blue, asphalt ink over fog, Barlow from the road signs.
   27 Sep 2026: the home is a teaser before launch (adelantos + "Avisame"); privacy, terms, support and account
   deletion keep the .doc styles. Mobile first: most drivers open it on a phone. */
:root {
  --fog: #F4F6F5; --paper: #FFFFFF; --soft: #E8EDEC; --line: #C7CED4;
  --ink: #151C24; --ink2: #454F5A; --ink3: #75808B;
  --plate: #1D3F95; --plate-ink: #FFFFFF; --plate-soft: #DCE3FF; --green: #3FD37A; --go: #2E7D32;
  --plate-band: #1D3F95; --band-ink: #F1F4FF; --band-ink2: #D9E1FF;
  /* The badge's own levels (app: overlay/VerdictOverlay.kt) and the status tones (verde bien, ámbar mirá). */
  --great: #1B5E20; --below: #C62828; --ok: #3FD37A; --warn: #FFB020;
  --garage: #0B1426; --garage2: #13213D; --chalk: #DCE6FF;
  --postit: #FFF0A6; --postit-ink: #3A3000;
  --display: "Barlow Condensed", "Arial Narrow", Arial, sans-serif;
  --body: "Barlow", "Segoe UI", Roboto, Arial, sans-serif;
  color-scheme: light;
}
@media (prefers-color-scheme: dark) {
  :root {
    --fog: #10161D; --paper: #18212A; --soft: #1F2932; --line: #34404B;
    --ink: #E3E8EE; --ink2: #B6C0CA; --ink3: #8793A0;
    --plate: #B3C5FF; --plate-ink: #0A2365; --plate-soft: #22407F; --go: #8DD694;
    --plate-band: #152E6E;
    --postit: #E9D98A;
    color-scheme: dark;
  }
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 72px; }
body { margin: 0; background: var(--fog); color: var(--ink); font-family: var(--body); font-size: 18px; line-height: 1.6; }
a { color: var(--plate); }
:focus-visible { outline: 2px solid var(--plate); outline-offset: 3px; }
.wrap { max-width: 1040px; margin: 0 auto; padding-inline: 16px; }
@media (min-width: 600px) { .wrap { padding-inline: 24px; } }
h1, h2, h3 { font-family: var(--display); line-height: 1.08; margin: 0; text-wrap: balance; }
h1 { font-size: clamp(46px, 11vw, 88px); font-weight: 700; letter-spacing: -.5px; }
h2 { font-size: clamp(30px, 6vw, 42px); font-weight: 700; }
h3 { font-size: 23px; font-weight: 600; }
p { margin: 0; max-width: 64ch; }
.skip { position: absolute; left: -9999px; top: 8px; z-index: 9; background: var(--paper); color: var(--ink); padding: 8px 14px; border-radius: 10px; }
.skip:focus { left: 8px; }

/* The top bar */
.bar { position: sticky; top: 0; z-index: 5; background: color-mix(in srgb, var(--fog) 88%, transparent); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.bar .wrap { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-block: 10px; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--ink); font-family: var(--display); font-size: 28px; font-weight: 700; }
.brand img { width: 36px; height: 36px; }
.bar nav { display: flex; align-items: center; gap: 4px 16px; font-size: 16px; }
.bar nav a { text-decoration: none; color: var(--ink2); white-space: nowrap; }
.bar nav a:hover { color: var(--plate); }
.bar nav .wide { display: none; }
@media (min-width: 640px) { .bar nav .wide { display: inline; } }
.bar nav .nav-cta { background: var(--plate); color: var(--plate-ink); font-weight: 600; padding: 7px 15px; border-radius: 999px; }
.bar nav .nav-cta:hover { color: var(--plate-ink); filter: brightness(1.08); }

/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 12px 24px; border: 0; border-radius: 999px; font: 600 18px/1.2 var(--body); text-decoration: none; cursor: pointer; }
.btn-go { background: var(--green); color: #07240F; box-shadow: 0 10px 24px -14px rgba(10, 60, 30, .9); }
.btn-go:hover { filter: brightness(1.06); }
.btn-go:disabled { opacity: .6; cursor: progress; }
.btn-line { display: inline-flex; align-items: center; min-height: 48px; padding: 10px 4px; font-weight: 600; text-underline-offset: 5px; }

/* Sections */
section { padding-block: 56px; }
@media (min-width: 720px) { section { padding-block: 80px; } }
.intro { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.intro p { color: var(--ink2); }
.eyebrow { font-family: var(--display); font-size: 15px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; color: var(--plate); }

/* ── Hero: the plate band over the real contour lines of the GAM ─────────────────────────────── */
.tz-hero { position: relative; overflow: hidden; background: var(--plate-band); color: var(--band-ink); padding-block: 48px 56px; }
.tz-hero::before { content: ""; position: absolute; inset: 0; background: url(/curvas-gam.svg) center / cover no-repeat; opacity: .16; pointer-events: none; }
.tz-hero::after { content: ""; position: absolute; inset: auto -20% -60% 40%; height: 120%; background: radial-gradient(closest-side, rgba(63, 211, 122, .16), transparent); pointer-events: none; }
.tz-hero .wrap { position: relative; z-index: 1; display: grid; gap: 40px; align-items: center; }
@media (min-width: 820px) { .tz-hero { padding-block: 80px 88px; } .tz-hero .wrap { grid-template-columns: 1.4fr 1fr; } }
.tz-kicker { display: inline-flex; align-items: center; gap: 10px; font-family: var(--display); font-size: 16px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; color: #BFF3D3; margin-bottom: 14px; }
.blink { width: 10px; height: 10px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(63, 211, 122, .25); animation: blink 2.4s ease-in-out 3; }
.tz-hero h1 { color: #fff; }
.tz-lede { color: var(--band-ink2); font-size: 20px; margin-top: 16px; max-width: 34ch; }
@media (min-width: 600px) { .tz-lede { font-size: 22px; } }
.tz-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px 22px; margin-top: 28px; }
.tz-actions .btn-line { color: #fff; }
.tz-small { margin-top: 18px; font-size: 16px; color: #AFC0F5; }

/* The ten seconds: the offer's time running out, and the answer arriving long before */
.tz-clock { display: none; position: relative; justify-self: center; width: 280px; aspect-ratio: 1; }
@media (min-width: 820px) { .tz-clock { display: block; } }
.tz-clock svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.tz-clock circle { fill: none; stroke-width: 9; }
.tz-clock .track { stroke: rgba(255, 255, 255, .14); }
.tz-clock .left { stroke: #fff; stroke-linecap: round; stroke-dasharray: 100 100; stroke-dashoffset: 72; animation: drain 10s linear 1 both; }
.tz-clock .secs { position: absolute; inset: 0; display: grid; place-content: center; text-align: center; font-family: var(--display); font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--band-ink2); font-size: 16px; line-height: 1; animation: fade-out .2s ease 1.3s both; }
.tz-clock .secs b { display: block; font-size: 96px; color: #fff; letter-spacing: 0; margin-bottom: 4px; }
.tz-clock .answer { position: absolute; left: 50%; top: 50%; translate: -50% -50%; padding: 14px 22px; border-radius: 24px; background: var(--great); color: #fff; font-family: var(--display); font-size: 52px; font-weight: 700; line-height: 1; box-shadow: 0 20px 40px -20px rgba(0, 0, 0, .7); animation: rise .14s ease-out 1.4s both; }
.tz-clock .clock-cap { position: absolute; left: 50%; bottom: -34px; translate: -50% 0; white-space: nowrap; font-size: 15px; color: #AFC0F5; }

/* ── The peeks ────────────────────────────────────────────────────────────────────────────── */
.peeks { display: grid; gap: 22px; }
@media (min-width: 860px) { .peeks { grid-template-columns: 1fr 1fr; gap: 26px; } }
.peek { display: flex; flex-direction: column; gap: 14px; }
.peek-head { display: flex; align-items: baseline; gap: 12px; }
.peek-n { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: 1.4px; color: var(--plate); border: 1.5px solid currentColor; border-radius: 8px; padding: 1px 7px; }
.peek-head h3 { font-size: 26px; }
.peek-cap { color: var(--ink2); font-size: 17px; }
.stage { position: relative; overflow: hidden; border-radius: 26px; border: 1px solid var(--line); background: var(--paper); padding: 22px 18px; min-height: 300px; }
.stamp { position: absolute; top: 14px; right: 14px; z-index: 3; font-family: var(--display); font-size: 13px; font-weight: 700; letter-spacing: 1.6px; text-transform: uppercase; color: var(--ink3); border: 1.5px dashed var(--ink3); border-radius: 6px; padding: 1px 7px; transform: rotate(4deg); }
.redact { display: inline-block; color: transparent; background: repeating-linear-gradient(-45deg, var(--ink) 0 7px, color-mix(in srgb, var(--ink) 82%, transparent) 7px 12px); border-radius: 3px; line-height: 1.1; user-select: none; }

/* 01 · the verdict over a blurred offer */
.stage-verdict { background: var(--soft); display: grid; align-content: center; gap: 0; }
.offer { position: relative; display: grid; gap: 12px; padding: 20px 20px 64px; border-radius: 18px; background: var(--paper); border: 1px solid var(--line); filter: blur(1.6px); opacity: .85; }
.offer i { display: block; height: 12px; border-radius: 6px; background: var(--line); }
.offer-tag { font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; color: var(--ink3); }
.verdicts { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-top: -52px; padding-inline: 4px; }
.vbadge { display: flex; flex-direction: column; align-items: center; gap: 4px; padding: 14px 8px 12px; border-radius: 24px; color: #fff; font-family: var(--display); text-align: center; position: relative; overflow: hidden; box-shadow: 0 18px 32px -18px rgba(0, 0, 0, .6); border: 1px solid rgba(255, 255, 255, .18); }
.vbadge::before { content: ""; position: absolute; inset: 0; background: url(/curvas-gam.svg) center / 260% no-repeat; opacity: .12; pointer-events: none; }
.vbadge.go { background: var(--great); }
.vbadge.no { background: var(--below); opacity: .92; }
.vb-level { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; font-weight: 600; letter-spacing: 1.2px; text-transform: uppercase; }
.vb-level svg { width: 15px; height: 15px; fill: currentColor; }
.vb-word { font-size: clamp(32px, 9.5vw, 52px); font-weight: 700; line-height: 1; }
.vb-rate { font-size: 22px; font-weight: 600; font-variant-numeric: tabular-nums; }
.vb-sound { display: inline-flex; align-items: center; gap: 4px; margin-top: 4px; font-family: var(--body); font-size: 13px; font-weight: 600; background: rgba(0, 0, 0, .22); padding: 2px 10px 2px 6px; border-radius: 999px; }
.vb-sound svg { width: 18px; height: 18px; fill: #fff; stroke: #fff; stroke-width: 0; }
.vb-sound .wave, .vb-sound .x { fill: none; stroke-width: 2; stroke-linecap: round; }
.peek.in .vbadge.go { animation: rise .14s ease-out .25s both; }
.peek.in .vbadge.go .wave { animation: wave 1.1s ease-out .45s 2 both; }
.peek.in .vbadge.go .w2 { animation-delay: .6s; }

/* 02 · the garage: the car in the middle, its parts with their status, crude like a mechanic's board */
.stage-garage { background: radial-gradient(120% 80% at 50% 0%, var(--garage2), var(--garage) 60%); border-color: #22314F; color: var(--chalk); padding: 18px 16px 18px; }
.stage-garage::before { content: ""; position: absolute; left: -30%; right: -30%; top: 46%; height: 70%; background:
    repeating-linear-gradient(90deg, rgba(179, 197, 255, .10) 0 1px, transparent 1px 44px),
    repeating-linear-gradient(0deg, rgba(179, 197, 255, .10) 0 1px, transparent 1px 44px);
  transform: perspective(260px) rotateX(58deg); transform-origin: top; mask-image: linear-gradient(transparent, #000 30%, #000 60%, transparent); -webkit-mask-image: linear-gradient(transparent, #000 30%, #000 60%, transparent); pointer-events: none; }
.stage-garage::after { content: ""; position: absolute; left: 50%; top: -30%; width: 90%; height: 90%; translate: -50% 0; background: radial-gradient(closest-side, rgba(179, 197, 255, .16), transparent); pointer-events: none; }
.garage-top { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: baseline; font-family: var(--display); text-transform: uppercase; letter-spacing: 2px; font-weight: 700; font-size: 18px; }
.garage-top .stamp { position: static; display: inline-block; margin-left: 10px; color: #AFC0F5; border-color: #AFC0F5; letter-spacing: 1.4px; font-size: 12px; vertical-align: 2px; }
.garage-top .odo { font-size: 15px; letter-spacing: 1px; font-weight: 600; background: #050A14; border: 1px solid #2A3A5C; border-radius: 6px; padding: 1px 8px; font-variant-numeric: tabular-nums; color: #fff; }
.car { position: relative; z-index: 1; display: block; width: 100%; height: auto; margin: 6px 0 4px; overflow: visible; }
.car .turntable { fill: none; stroke: rgba(179, 197, 255, .35); stroke-width: 1.5; stroke-dasharray: 3 7; }
.car .shadow { fill: rgba(0, 0, 0, .55); }
.car .body { fill: rgba(179, 197, 255, .07); stroke: var(--chalk); stroke-width: 2.6; stroke-linejoin: round; }
.car .glass { fill: rgba(179, 197, 255, .16); stroke: var(--chalk); stroke-width: 1.8; stroke-linejoin: round; }
.car .line { fill: none; stroke: var(--chalk); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; opacity: .8; }
.car .lamp { fill: rgba(255, 240, 180, .35); stroke: var(--chalk); stroke-width: 1.4; }
.car .lamp.tail { fill: rgba(255, 90, 80, .45); }
.car .tire { fill: #050A14; stroke: var(--chalk); stroke-width: 2.4; }
.car .rim { fill: none; stroke: var(--chalk); stroke-width: 1.6; }
.car .hub { fill: var(--chalk); }
.car .hot .dot { stroke: #fff; stroke-width: 2.4; }
.car .hot.ok .dot { fill: var(--ok); }
.car .hot.warn .dot { fill: var(--warn); }
.car .hot.warn .ring { fill: none; stroke: var(--warn); stroke-width: 2; transform-box: fill-box; transform-origin: center; animation: ping 1.8s ease-out infinite; }
.car .hot.locked .dot { fill: #2A3A5C; stroke: var(--chalk); stroke-dasharray: 3 3; }
.car .hot.locked text { fill: var(--chalk); font: 700 13px var(--display); text-anchor: middle; }
.parts { position: relative; z-index: 1; list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.parts li { display: grid; grid-template-columns: 6.6em 5.6em 1fr; align-items: center; gap: 10px; font-size: 14px; }
.parts b { font-family: var(--display); font-size: 16px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; white-space: nowrap; }
.parts em { font-style: normal; color: #AFC0F5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.parts .bar { --c: var(--ok); height: 10px; background:
    linear-gradient(90deg, var(--c) calc(var(--n) * 20%), rgba(179, 197, 255, .16) 0) left / 100% 100% no-repeat;
  -webkit-mask: repeating-linear-gradient(90deg, #000 0 calc(20% - 3px), transparent calc(20% - 3px) 20%); mask: repeating-linear-gradient(90deg, #000 0 calc(20% - 3px), transparent calc(20% - 3px) 20%); }
.parts .warn .bar { --c: var(--warn); }
.parts .warn b::before, .parts .ok b::before { content: ""; display: inline-block; width: 8px; height: 8px; border-radius: 50%; margin-right: 6px; background: var(--ok); translate: 0 -2px; }
.parts .warn b::before { background: var(--warn); }
.parts .locked .redact { background: repeating-linear-gradient(-45deg, #AFC0F5 0 6px, rgba(175, 192, 245, .5) 6px 11px); font-size: 13px; }
.peek.in .parts .bar { animation: fill-in .7s ease-out both; }
.peek.in .parts li:nth-child(2) .bar { animation-delay: .08s; }
.peek.in .parts li:nth-child(3) .bar { animation-delay: .16s; }
.peek.in .parts li:nth-child(4) .bar { animation-delay: .24s; }

/* 03 · the envelopes */
.stage-sobres { display: flex; flex-direction: column; gap: 16px; }
.sobres-in { font-family: var(--display); font-size: 22px; font-weight: 600; color: var(--ink2); }
.sobres-in b { color: var(--ink); font-weight: 700; }
.envs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; align-items: end; }
.env { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; min-width: 0; }
.env-body { position: relative; width: 100%; aspect-ratio: 3 / 4; border: 2px solid var(--ink2); border-radius: 8px; overflow: hidden; background: var(--fog); }
/* The flap: a square turned 45° whose two lower edges draw the V. */
.env-body::before { content: ""; position: absolute; z-index: 2; left: 50%; top: 0; width: 72%; aspect-ratio: 1; background: var(--paper); border-right: 2px solid var(--ink2); border-bottom: 2px solid var(--ink2); transform: translate(-50%, -50%) rotate(45deg); }
.env-fill { position: absolute; left: 0; right: 0; bottom: 0; height: calc(var(--fill) * 92%); background: var(--plate); opacity: .85; transform-origin: bottom; }
.env.you .env-body { border-color: var(--great); border-width: 3px; }
.env.you .env-body::before { border-color: var(--great); border-right-width: 3px; border-bottom-width: 3px; }
.env.you .env-fill { background: var(--green); opacity: 1; }
.env-name { font-family: var(--display); font-size: 15px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; color: var(--ink2); white-space: nowrap; }
.env-amt { font-family: var(--display); font-size: 22px; font-weight: 700; font-variant-numeric: tabular-nums; line-height: 1; }
.env.you .env-name { color: var(--go); }
.env.you .env-amt { font-size: 30px; }
.postit { align-self: flex-end; max-width: 15em; background: var(--postit); color: var(--postit-ink); font-size: 15px; font-weight: 600; line-height: 1.35; padding: 12px 14px 14px; transform: rotate(-2.5deg); box-shadow: 0 10px 18px -12px rgba(0, 0, 0, .6); border-radius: 2px 2px 14px 2px; }
.peek.in .env-fill { animation: rise-up .8s cubic-bezier(.2, .8, .2, 1) both; }
.peek.in .env:nth-child(2) .env-fill { animation-delay: .1s; }
.peek.in .env:nth-child(3) .env-fill { animation-delay: .2s; }
.peek.in .env:nth-child(4) .env-fill { animation-delay: .35s; }

/* 04 · the number: a mechanical counter, and what is still covered */
.stage-numero { display: flex; flex-direction: column; justify-content: center; gap: 8px; }
.num-was { color: var(--ink3); font-size: 16px; }
.num-was s { font-family: var(--display); font-size: 20px; font-weight: 600; }
.num-label { font-family: var(--display); font-size: 19px; font-weight: 600; letter-spacing: .4px; color: var(--ink2); }
.odo-big { display: flex; align-items: stretch; gap: 4px; font-family: var(--display); font-weight: 700; font-variant-numeric: tabular-nums; margin: 4px 0 12px; }
.odo-big .d, .odo-big .cur { display: grid; place-items: center; width: 1.1em; height: 1.45em; font-size: clamp(38px, 11vw, 64px); line-height: 1; color: #fff; background: linear-gradient(#0E1622, #1B2636 48%, #0B121C 52%, #18212E); border-radius: 8px; box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08); }
.odo-big .cur { background: none; box-shadow: none; color: var(--ink); width: .7em; }
.odo-big .sep { align-self: flex-end; font-size: 40px; line-height: 1; color: var(--ink2); }
.odo-big .unit { align-self: flex-end; margin-left: 4px; font-size: 26px; font-weight: 600; color: var(--ink2); }
.odo-big .roll { overflow: hidden; display: block; position: relative; }
.odo-big .roll span { display: grid; place-items: center; height: 100%; transform: translateY(-100%); }
.peek.in .odo-big .roll span { animation: roll .9s cubic-bezier(.3, 1.4, .5, 1) .3s both; }
.hidden-facts { list-style: none; margin: 0; padding: 12px 0 0; border-top: 1px dashed var(--line); display: grid; gap: 8px; }
.hidden-facts li { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: 16px; color: var(--ink2); }
.hidden-facts .redact { font-family: var(--display); font-size: 18px; }

/* ── What Jale never does ─────────────────────────────────────────────────────────────────── */
.tz-never { background: var(--paper); border-block: 1px solid var(--line); }
.never { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; max-width: 64ch; }
.never li { display: flex; gap: 12px; align-items: baseline; }
.never li::before { content: ""; flex: none; width: 10px; height: 10px; border-radius: 50%; background: var(--go); transform: translateY(-2px); }
.never-more { margin-top: 20px; }

/* ── Avisame ─────────────────────────────────────────────────────────────────────────────── */
.join { display: grid; gap: 26px; background: var(--plate-soft); border-radius: 28px; padding: 26px 18px; }
@media (min-width: 820px) { .join { grid-template-columns: 1fr 1.25fr; gap: 40px; padding: 44px; align-items: start; } }
.join-copy { display: flex; flex-direction: column; gap: 12px; }
.join-copy p { color: var(--ink2); }
.join-form { display: flex; flex-direction: column; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; font-weight: 600; }
.field input { font: 400 19px var(--body); color: var(--ink); background: var(--paper); border: 1.5px solid var(--line); border-radius: 14px; padding: 13px 16px; min-height: 54px; width: 100%; }
.field input::placeholder { color: var(--ink3); }
.field input:focus { outline: none; border-color: var(--plate); box-shadow: 0 0 0 3px color-mix(in srgb, var(--plate) 25%, transparent); }
.field input[aria-invalid="true"] { border-color: var(--below); }
.why { font-size: 16px; color: var(--ink2); }
.choices { border: 0; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.choices legend { padding: 0; margin-bottom: 8px; font-weight: 600; font-size: 17px; width: 100%; }
.chip { position: relative; }
.chip input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip span { display: inline-flex; align-items: center; min-height: 44px; padding: 8px 16px; border-radius: 999px; background: var(--paper); border: 1.5px solid var(--line); font-size: 16px; font-weight: 500; cursor: pointer; user-select: none; }
.chip input:checked + span { background: var(--plate); border-color: var(--plate); color: var(--plate-ink); font-weight: 600; }
.chip input:checked + span::before { content: "✓"; margin-right: 6px; font-weight: 700; }
.chip input:focus-visible + span { outline: 2px solid var(--plate); outline-offset: 3px; }
.turnstile:empty { display: none; }
.join-form .btn { width: 100%; font-size: 19px; }
@media (min-width: 600px) { .join-form .btn { width: auto; align-self: flex-start; } }
.form-status { min-height: 1.6em; font-weight: 600; font-size: 16px; }
.form-status[data-kind="error"] { color: var(--below); }
@media (prefers-color-scheme: dark) { .form-status[data-kind="error"] { color: #FF8A80; } }
.fine { font-size: 14px; color: var(--ink2); line-height: 1.5; }
.join-done { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.join-done:focus { outline: none; }
.join-done svg { width: 56px; height: 56px; fill: var(--go); }
.join-done h3 { font-size: 38px; }

/* ── Questions ───────────────────────────────────────────────────────────────────────────── */
.tz-faq { border-top: 1px solid var(--line); }
.faq { display: grid; gap: 10px; max-width: 760px; }
.faq details { background: var(--paper); border: 1px solid var(--line); border-radius: 18px; padding: 4px 18px; }
.faq summary { cursor: pointer; font-family: var(--display); font-size: 22px; font-weight: 600; padding: 12px 0; list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--plate); font-weight: 700; }
.faq details[open] summary::after { content: "–"; }
.faq details p { padding-bottom: 14px; color: var(--ink2); }

/* Motion: only when something arrives, once; none for those who ask for less */
@keyframes blink { 50% { box-shadow: 0 0 0 8px rgba(63, 211, 122, 0); } }
@keyframes drain { from { stroke-dashoffset: 0; } to { stroke-dashoffset: 100; } }
@keyframes fade-out { to { opacity: 0; } }
@keyframes rise { from { opacity: 0; scale: .92; } to { opacity: 1; scale: 1; } }
@keyframes wave { 0% { opacity: 0; } 40% { opacity: 1; } 100% { opacity: 1; } }
@keyframes ping { from { transform: scale(1); opacity: .9; } to { transform: scale(2.5); opacity: 0; } }
@keyframes fill-in { from { background-size: 0 100%; } }
@keyframes rise-up { from { transform: scaleY(0); } }
@keyframes roll { from { transform: translateY(0); } to { transform: translateY(-100%); } }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; }
  .tz-clock .secs { opacity: 0; }
}

/* ── Documents (privacy, terms…) ─────────────────────────────────────────────────────────── */
.doc { padding-block: 44px 72px; }
.doc .wrap { max-width: 760px; display: flex; flex-direction: column; gap: 18px; }
.doc h1 { font-size: clamp(38px, 6vw, 56px); }
.doc h2 { font-size: 28px; margin-top: 18px; }
.doc .date { color: var(--ink3); font-size: 16px; }
.doc ul, .doc ol { margin: 0; padding-left: 22px; display: grid; gap: 6px; max-width: 64ch; }
.doc .short { background: var(--plate-soft); border-radius: 20px; padding: 18px 22px; }
.doc .short ul { gap: 4px; }
.tablewrap { overflow-x: auto; border: 1px solid var(--line); border-radius: 16px; background: var(--paper); }
table { border-collapse: collapse; width: 100%; min-width: 620px; font-size: 16px; }
th, td { text-align: left; vertical-align: top; padding: 10px 14px; border-bottom: 1px solid var(--line); }
th { font-family: var(--display); font-size: 17px; font-weight: 600; background: var(--soft); }
tr:last-child td { border-bottom: 0; }
.mail { font-family: var(--display); font-size: 26px; font-weight: 600; user-select: all; }

footer { border-top: 1px solid var(--line); padding-block: 28px 44px; color: var(--ink3); font-size: 15px; }
footer .wrap { display: flex; flex-wrap: wrap; gap: 10px 22px; justify-content: space-between; }
footer nav { display: flex; flex-wrap: wrap; gap: 6px 18px; }
footer a { color: var(--ink2); }
