/* Ticket Hunter — site design system v2
   Dark "night flight" theme. Shared by index, /go/, satellites, legal pages. */

@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/fonts/unbounded-cyrillic-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Unbounded";
  font-style: normal;
  font-display: swap;
  font-weight: 200 900;
  src: url(/assets/fonts/unbounded-latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-cyrillic-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}
@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-display: swap;
  font-weight: 200 800;
  src: url(/assets/fonts/manrope-latin-wght-normal.woff2) format("woff2-variations");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #05090f;
  --bg-2: #0a1220;
  --bg-3: #0f1a2c;
  --ink: #f4f7fb;
  --ink-2: #c7d3e2;
  --muted: #8494ab;
  --line: rgba(255, 255, 255, 0.08);
  --line-2: rgba(255, 255, 255, 0.14);
  --blue: #1e88ff;
  --cyan: #21d4fd;
  --cyan-2: #8fe8ff;
  --amber: #ffc857;
  --green: #4ade80;
  --gradient: linear-gradient(135deg, #1e88ff 0%, #21d4fd 100%);
  --glass: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.015)), rgba(10, 18, 34, 0.9);
  --shadow: 0 30px 80px rgba(2, 8, 23, 0.5);
  --shadow-cta: 0 18px 44px rgba(14, 165, 255, 0.32);
  --r-xl: 28px;
  --r-lg: 22px;
  --r-md: 16px;
  --r-pill: 999px;
  --container: 1180px;
  --header-h: 76px;
  --display: "Unbounded", "Manrope", system-ui, sans-serif;
  --body: "Manrope", system-ui, -apple-system, "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  min-width: 320px;
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 80% -10%, rgba(33, 212, 253, 0.16), transparent 60%),
    radial-gradient(900px 600px at -10% 20%, rgba(30, 136, 255, 0.18), transparent 60%),
    linear-gradient(180deg, #03070d 0%, var(--bg) 35%, #07101c 100%);
  overflow-x: hidden;
}
/* subtle star field + grain */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    radial-gradient(1px 1px at 12% 18%, rgba(255,255,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 68% 8%, rgba(255,255,255,.28) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 84% 42%, rgba(143,232,255,.35) 50%, transparent 51%),
    radial-gradient(1px 1px at 32% 70%, rgba(255,255,255,.25) 50%, transparent 51%),
    radial-gradient(1px 1px at 52% 32%, rgba(255,255,255,.22) 50%, transparent 51%),
    radial-gradient(1.5px 1.5px at 8% 88%, rgba(143,232,255,.3) 50%, transparent 51%),
    radial-gradient(1px 1px at 92% 78%, rgba(255,255,255,.3) 50%, transparent 51%);
  opacity: .8;
}
body > * { position: relative; z-index: 1; }
body.menu-open { overflow: hidden; }

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--display); font-weight: 700; letter-spacing: -0.02em; line-height: 1.08; }
p { margin: 0; }
strong { font-weight: 700; }
::selection { background: rgba(33, 212, 253, 0.35); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; border-radius: 6px; }

.container { width: min(var(--container), calc(100% - 32px)); margin: 0 auto; }
.section { padding: clamp(56px, 8vw, 96px) 0; }
.section-head { max-width: 720px; margin-bottom: clamp(28px, 4vw, 44px); display: grid; gap: 14px; }
.section-head .label,
.label {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cyan-2); font-size: .74rem; font-weight: 800;
  letter-spacing: .16em; text-transform: uppercase;
}
.label::before { content: ""; width: 18px; height: 2px; background: var(--cyan); border-radius: 2px; }
.section h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); text-wrap: balance; }
.section-head p, .lead { color: var(--ink-2); font-size: 1.06rem; line-height: 1.7; }
.muted { color: var(--muted); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px);
  background: rgba(4, 9, 16, 0.72);
  border-bottom: 1px solid var(--line);
}
.header-inner { min-height: var(--header-h); display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 12px; min-width: 0; }
.brand img { width: 44px; height: 44px; border-radius: 13px; box-shadow: 0 0 0 1px rgba(255,255,255,.06), 0 10px 26px rgba(30,136,255,.28); }
.brand-copy { display: grid; line-height: 1.15; }
.brand-copy strong { font-family: var(--display); font-weight: 700; font-size: .95rem; letter-spacing: -.01em; }
.brand-copy span { color: var(--muted); font-size: .76rem; }
.header-nav { display: flex; align-items: center; gap: 4px; }
.header-nav a { padding: 9px 13px; border-radius: var(--r-pill); color: var(--ink-2); font-size: .94rem; font-weight: 600; transition: background .2s, color .2s; }
.header-nav a:hover { background: rgba(255,255,255,.06); color: var(--ink); }
.header-cta { display: inline-flex; }
.menu-toggle { display: none; width: 46px; height: 46px; border: 1px solid var(--line); border-radius: 14px; background: rgba(15,23,42,.7); align-items: center; justify-content: center; }
.menu-toggle span, .menu-toggle span::before, .menu-toggle span::after { display: block; width: 18px; height: 2px; border-radius: 2px; background: var(--ink); content: ""; transition: transform .2s, opacity .2s; }
.menu-toggle span::before { transform: translateY(-6px); }
.menu-toggle span::after { transform: translateY(4px); }
.menu-toggle[aria-expanded="true"] span { background: transparent; }
.menu-toggle[aria-expanded="true"] span::before { transform: translateY(0) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span::after { transform: translateY(-2px) rotate(-45deg); }
.mobile-panel { display: none; padding: 0 0 16px; }
.mobile-panel nav { display: grid; gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: 20px; background: rgba(9,18,32,.96); }
.mobile-panel a { padding: 12px 14px; border-radius: 12px; font-weight: 600; }
.mobile-panel a:hover { background: rgba(255,255,255,.06); }
.mobile-panel .btn { justify-content: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 54px; padding: 0 24px; border-radius: 16px;
  border: 1px solid transparent; font-weight: 700; font-size: 1rem; line-height: 1.1;
  transition: transform .18s ease, box-shadow .18s ease, background .18s, border-color .18s, color .18s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--gradient); color: #fff; box-shadow: var(--shadow-cta); }
.btn-primary:hover { box-shadow: 0 22px 54px rgba(14,165,255,.42); }
.btn-secondary { border-color: var(--line-2); background: rgba(255,255,255,.05); color: var(--ink); }
.btn-secondary:hover { background: rgba(255,255,255,.09); }
.btn-ghost { border-color: rgba(33,212,253,.3); color: var(--cyan-2); background: transparent; }
.btn-ghost:hover { background: rgba(33,212,253,.08); }
.btn-sm { min-height: 42px; padding: 0 16px; font-size: .92rem; border-radius: 12px; }
.btn-lg { min-height: 62px; padding: 0 30px; font-size: 1.08rem; border-radius: 18px; }
.btn .tg { width: 20px; height: 20px; flex: none; }

/* ---------- Cards ---------- */
.card, .glass-card, .direction-card, .footer-card, .faq-item, .widget-shell, .cta-panel, .chat-card, .stat-card {
  border-radius: var(--r-xl); border: 1px solid var(--line);
  background: var(--glass); box-shadow: var(--shadow);
}
.card, .glass-card, .direction-card, .footer-card { padding: 26px; transition: transform .22s ease, border-color .22s ease; }
.card:hover, .glass-card:hover, .direction-card:hover { transform: translateY(-4px); border-color: rgba(33,212,253,.24); }
.card h3, .glass-card h3, .direction-card h3, .footer-card h3 { font-size: 1.12rem; margin: 14px 0 8px; }
.card p, .glass-card p, .direction-card p, .footer-card p, .footer-card li { color: var(--muted); line-height: 1.65; }
.icon-tag { width: 50px; height: 50px; border-radius: 16px; display: inline-grid; place-items: center; font-size: 1.4rem; background: rgba(30,136,255,.14); border: 1px solid rgba(30,136,255,.22); }
.grid-2, .grid-3, .grid-4 { display: grid; gap: 18px; }
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.grid-4 { grid-template-columns: repeat(4, minmax(0,1fr)); }
.chip, .route-pill, .stat-pill, .status-pill, .aside-badge {
  display: inline-flex; align-items: center; gap: 8px; min-height: 40px; padding: 0 14px;
  border-radius: var(--r-pill); border: 1px solid var(--line); background: rgba(255,255,255,.04);
  color: var(--ink-2); font-size: .92rem; font-weight: 600;
}
.status-pill { background: rgba(33,212,253,.12); border-color: rgba(33,212,253,.24); color: var(--cyan-2); font-size: .8rem; letter-spacing: .04em; }
.chip-row, .route-list, .link-list, .stat-list { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 0; padding: 0; list-style: none; }
.route-list a.route-pill:hover, .route-pill:hover { border-color: rgba(33,212,253,.3); color: var(--ink); }

/* ---------- Hero (main) ---------- */
.hero { position: relative; padding: clamp(40px, 7vw, 88px) 0 clamp(36px, 5vw, 64px); overflow: clip; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(320px, .95fr); gap: clamp(28px, 5vw, 64px); align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 9px 16px 9px 10px;
  border-radius: var(--r-pill); background: rgba(33,212,253,.1); border: 1px solid rgba(33,212,253,.22);
  color: #d7f4ff; font-size: .84rem; font-weight: 700; letter-spacing: .02em;
}
.eyebrow .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px rgba(74,222,128,.18); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 4px rgba(74,222,128,.18);} 50% { box-shadow: 0 0 0 8px rgba(74,222,128,.06);} }
.hero h1 { margin-top: 20px; font-size: clamp(2.1rem, 5.4vw, 4.2rem); line-height: 1.02; max-width: 14ch; text-wrap: balance; }
.hero h1 em { font-style: normal; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero .lead { margin-top: 22px; max-width: 560px; font-size: clamp(1.02rem, 1.6vw, 1.18rem); }

/* fake chat input in hero */
.ask {
  margin-top: 28px; display: flex; align-items: center; gap: 10px; padding: 8px 8px 8px 20px;
  border-radius: 20px; border: 1px solid var(--line-2); background: rgba(6,12,22,.85);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.05), 0 20px 50px rgba(2,8,23,.4);
  max-width: 620px;
}
.ask-text { flex: 1; min-width: 0; color: var(--ink); font-size: 1.02rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.ask-text .caret { display: inline-block; width: 2px; height: 1.1em; margin-left: 2px; background: var(--cyan); vertical-align: -0.2em; animation: blink 1s steps(2) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.ask .btn { flex: none; }
.trust { margin-top: 18px; display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: .9rem; }
.trust span { display: inline-flex; align-items: center; gap: 7px; }
.trust span::before { content: "✓"; color: var(--green); font-weight: 800; }

/* ---------- Departure board (live prices) ---------- */
.board { padding: 0; overflow: hidden; }
.board-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.board-head strong { font-family: var(--display); font-size: .92rem; letter-spacing: .06em; text-transform: uppercase; }
.board-head .updated { color: var(--muted); font-size: .82rem; }
.board-list { list-style: none; margin: 0; padding: 6px; display: grid; gap: 4px; }
.board-row {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 12px 16px;
  padding: 12px 14px; border-radius: 16px; transition: background .18s;
}
.board-row:hover { background: rgba(255,255,255,.04); }
.board-route { display: grid; gap: 3px; min-width: 0; }
.board-route .cities { font-weight: 700; font-size: 1rem; display: flex; align-items: center; gap: 8px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.board-route .cities .arrow { color: var(--cyan); }
.board-route .meta { color: var(--muted); font-size: .84rem; }
.board-price { text-align: right; display: grid; gap: 4px; justify-items: end; }
.board-price .price { font-family: var(--display); font-weight: 700; font-size: 1.15rem; letter-spacing: -.01em; white-space: nowrap; }
.board-price .price small { font-size: .7em; color: var(--muted); font-weight: 500; }
.board-price a { font-size: .82rem; color: var(--cyan-2); font-weight: 700; }
.board-row.is-new .price { animation: flip .5s ease; }
@keyframes flip { 0% { transform: rotateX(90deg); opacity: 0;} 100% { transform: rotateX(0); opacity: 1;} }
.board-foot { padding: 12px 22px 16px; border-top: 1px solid var(--line); color: var(--muted); font-size: .82rem; }

/* ---------- Chat mockup ---------- */
.chat-card { padding: 20px; }
.chat-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; color: var(--muted); font-size: .9rem; }
.chat-head strong { color: var(--ink); font-family: var(--body); }
.chat-body { margin-top: 16px; display: grid; gap: 12px; }
.message { padding: 13px 15px; border-radius: 18px; line-height: 1.5; font-size: .96rem; }
.message.user { margin-left: auto; max-width: 85%; background: rgba(30,136,255,.22); border: 1px solid rgba(30,136,255,.3); border-bottom-right-radius: 6px; }
.message.bot { background: rgba(255,255,255,.05); border: 1px solid var(--line); border-bottom-left-radius: 6px; }
.message .t { margin-left: 8px; color: var(--muted); font-size: .76rem; }
.result-line { color: #dde7f3; }
.result-note { margin-top: 8px; font-weight: 700; }
.result-sub { color: var(--ink-2); font-size: .92rem; }
.chat-actions { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 8px; }
.chat-action, .chat-action-wide { display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 8px 12px; border-radius: 12px; background: rgba(255,255,255,.06); border: 1px solid var(--line); font-weight: 600; font-size: .92rem; text-align: center; }
.chat-action-wide { grid-column: 1 / -1; background: rgba(30,136,255,.18); border-color: rgba(30,136,255,.28); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; counter-reset: step; }
.step { position: relative; padding: 26px; border-radius: var(--r-xl); border: 1px solid var(--line); background: var(--glass); }
.step::before { counter-increment: step; content: "0" counter(step); font-family: var(--display); font-weight: 800; font-size: 2.2rem; line-height: 1; color: transparent; -webkit-text-stroke: 1px rgba(143,232,255,.5); }
.step h3 { margin: 14px 0 8px; font-size: 1.12rem; }
.step p { color: var(--muted); }

/* ---------- Directions ---------- */
.direction-card {
  position: relative; overflow: hidden; display: flex; flex-direction: column;
  padding: 24px 24px 22px;
  border-color: rgba(var(--accent, 33,212,253), .18);
}
.direction-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(420px 160px at 100% 0%, rgba(var(--accent, 33,212,253), .16), transparent 62%);
  transition: opacity .25s ease;
}
.direction-card::after {
  content: ""; position: absolute; left: 24px; top: 0; width: 46px; height: 3px; border-radius: 0 0 3px 3px;
  background: linear-gradient(90deg, rgb(var(--accent, 33,212,253)), rgba(var(--accent, 33,212,253), .15));
}
.direction-card > * { position: relative; }
.direction-card:hover { transform: translateY(-4px); border-color: rgba(var(--accent, 33,212,253), .4); }
.direction-card:hover::before { opacity: .65; }

.dir-top { display: flex; align-items: baseline; justify-content: space-between; gap: 14px; }
.direction-card h3 { margin: 0; font-size: 1.24rem; letter-spacing: -.02em; }
.dir-price { display: flex; align-items: baseline; gap: 6px; white-space: nowrap; }
.dir-price.is-empty { visibility: hidden; }
.dir-price .from { color: var(--muted); font-size: .78rem; }
.dir-price .val { font-family: var(--display); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; color: var(--ink); }

.direction-card .routes { flex: 1; display: grid; align-content: start; gap: 9px; margin: 18px 0 20px; padding-top: 16px; border-top: 1px solid var(--line); }
.direction-card .routes span { display: flex; align-items: center; gap: 9px; color: var(--ink-2); font-size: .95rem; }
.direction-card .routes span::before {
  content: ""; flex: none; width: 5px; height: 5px; border-radius: 50%;
  background: rgb(var(--accent, 33,212,253)); opacity: .75;
}
.direction-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: auto; }
.direction-actions .arw { display: inline-block; margin-left: 6px; transition: transform .2s ease; }
.direction-card:hover .arw { transform: translateX(3px); }

/* ---------- Stats ---------- */
.stat-card { padding: 22px 24px; display: grid; gap: 6px; }
.stat-card .num { font-family: var(--display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .cap { color: var(--muted); font-size: .92rem; }

/* ---------- Partner widget ---------- */
.widget-shell { padding: 24px; overflow: hidden; }
.widget-inline-head { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px; margin-bottom: 14px; }
.widget-shell h3 { font-size: 1.1rem; }
.widget-meta, .widget-note { color: var(--muted); font-size: .92rem; }
.widget-placeholder { display: grid; gap: 14px; padding: 22px; border-radius: 20px; border: 1px dashed var(--line-2); background: rgba(6,12,22,.6); }
.widget-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.widget-live { display: none; border-radius: 18px; overflow: hidden; background: #fff; }
.widget-live.is-visible { display: block; }
.widget-shell[data-loaded="true"] .widget-placeholder, .widget-shell[data-loaded="true"] .widget-actions { display: none; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 10px; }
.faq-item { padding: 0; overflow: hidden; box-shadow: none; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 22px; font-weight: 700; display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-family: var(--display); color: var(--cyan-2); font-size: 1.3rem; transition: transform .2s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { padding: 0 22px 20px; color: var(--ink-2); line-height: 1.7; }
.faq-answer a { color: var(--cyan-2); text-decoration: underline; text-underline-offset: 3px; }

/* ---------- CTA panel ---------- */
.cta-panel { padding: clamp(28px, 5vw, 48px); display: grid; grid-template-columns: 1.3fr .7fr; gap: 24px; align-items: center;
  background: radial-gradient(circle at 100% 0%, rgba(33,212,253,.22), transparent 40%), linear-gradient(135deg, rgba(30,136,255,.18), rgba(10,18,34,.96)); }
.cta-panel h2 { font-size: clamp(1.6rem, 3.4vw, 2.5rem); max-width: 16ch; }
.cta-panel p { margin-top: 10px; color: var(--ink-2); }
.cta-panel .actions { display: grid; gap: 10px; justify-items: stretch; }

/* ---------- Breadcrumbs / satellite hero ---------- */
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 6px; color: var(--muted); font-size: .88rem; margin-bottom: 14px; }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs span + span::before { content: "/"; margin-right: 6px; color: rgba(255,255,255,.25); }
.hero-copy .lead { margin-top: 18px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-aside { display: grid; gap: 12px; align-content: start; }
.related-links { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
.related-links a { display: block; padding: 16px 18px; border-radius: 16px; border: 1px solid var(--line); background: rgba(255,255,255,.03); font-weight: 600; transition: border-color .2s, transform .2s; }
.related-links a:hover { border-color: rgba(33,212,253,.3); transform: translateY(-2px); }

/* ---------- Footer ---------- */
.footer { padding: 24px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr .8fr; gap: 16px; }
.footer-card { padding: 22px; box-shadow: none; }
.footer-card ul { list-style: none; margin: 12px 0 0; padding: 0; display: grid; gap: 9px; }
.footer-card a:hover { color: var(--ink); }
.footer-card .brand img { width: 40px; height: 40px; }
.footer-bottom { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 10px; color: var(--muted); font-size: .86rem; }
.footer-legal { display: flex; flex-wrap: wrap; gap: 6px 14px; }
.footer-legal a:hover { color: var(--ink); }

/* ---------- Legal pages ---------- */
.legal { max-width: 820px; }
.legal h1 { font-size: clamp(1.6rem, 3.4vw, 2.4rem); margin-bottom: 10px; }
.legal h2 { font-size: 1.2rem; margin: 30px 0 10px; font-family: var(--body); font-weight: 800; }
.legal p, .legal li { color: var(--ink-2); line-height: 1.75; margin: 0 0 12px; }
.legal ul { padding-left: 22px; }
.legal a { color: var(--cyan-2); text-decoration: underline; text-underline-offset: 3px; }
.legal .meta { color: var(--muted); font-size: .9rem; margin-bottom: 26px; }
.legal .tldr { padding: 18px 22px; border-radius: 18px; border: 1px solid rgba(33,212,253,.24); background: rgba(33,212,253,.07); margin-bottom: 28px; }
.legal .tldr strong { display: block; margin-bottom: 6px; color: var(--cyan-2); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.legal code { font-family: ui-monospace, Menlo, monospace; font-size: .9em; background: rgba(255,255,255,.06); padding: 2px 6px; border-radius: 6px; }

/* ---------- Sticky mobile CTA (landing) ---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 60; padding: 10px 16px calc(10px + env(safe-area-inset-bottom)); background: linear-gradient(180deg, rgba(5,9,15,0), rgba(5,9,15,.92) 30%); display: none; }
.sticky-cta .btn { width: 100%; }
body.has-sticky { padding-bottom: 84px; }

/* ---------- Reveal on load ---------- */
.reveal { opacity: 0; transform: translateY(14px); animation: reveal .7s cubic-bezier(.2,.7,.2,1) forwards; }
.reveal:nth-child(2) { animation-delay: .08s; } .reveal:nth-child(3) { animation-delay: .16s; } .reveal:nth-child(4) { animation-delay: .24s; }
@keyframes reveal { to { opacity: 1; transform: none; } }
@media (prefers-reduced-motion: reduce) { *, *::before, *::after { animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .related-links { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .header-nav, .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-panel.is-open { display: block; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero h1 { max-width: none; }
  .grid-3 { grid-template-columns: 1fr; }
  .cta-panel { grid-template-columns: 1fr; }
  .sticky-cta { display: block; }
}
@media (max-width: 640px) {
  body { font-size: 16px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .ask { flex-direction: column; align-items: stretch; padding: 12px; }
  .ask-text { white-space: normal; padding: 6px 8px; }
  .ask .btn { width: 100%; }
  .board-row { padding: 10px 12px; gap: 8px 10px; }
  .board-route .cities { font-size: .94rem; }
  .board-price .price { font-size: 1.02rem; }
  .board-price a { font-size: .78rem; }
  .board-row:nth-child(n+6) { display: none; }
  .board-foot { font-size: .78rem; }
  .chat-actions { grid-template-columns: 1fr; }
  .btn { white-space: normal; text-align: center; }
  .card, .glass-card, .direction-card, .step { padding: 20px; }
}

/* ---------- Satellite aside + extras (v2 additions) ---------- */
.hero-aside { padding: 24px; border-radius: var(--r-xl); border: 1px solid var(--line); background: var(--glass); box-shadow: var(--shadow); }
.hero-aside h2 { font-size: 1.2rem; margin: 12px 0 10px; }
.hero-aside ul { margin: 0; padding-left: 20px; color: var(--ink-2); display: grid; gap: 8px; }
.aside-badge { justify-self: start; background: rgba(33,212,253,.12); border-color: rgba(33,212,253,.24); color: var(--cyan-2); font-size: .8rem; letter-spacing: .04em; }
.hero-aside .board { margin-top: 16px; box-shadow: none; }
.card ul, .card ol { margin: 8px 0 0; padding-left: 20px; color: var(--muted); display: grid; gap: 6px; }
.hero-copy .route-list { margin-top: 22px; }
.reveal-on-scroll { opacity: 0; transform: translateY(18px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal-on-scroll.is-in { opacity: 1; transform: none; }
.reveal-on-scroll:nth-child(2) { transition-delay: .08s; } .reveal-on-scroll:nth-child(3) { transition-delay: .16s; } .reveal-on-scroll:nth-child(4) { transition-delay: .24s; } .reveal-on-scroll:nth-child(5) { transition-delay: .32s; } .reveal-on-scroll:nth-child(6) { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) { .reveal-on-scroll { opacity: 1; transform: none; transition: none; } }

/* how-it-works two-column */
.how-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 440px); gap: clamp(24px, 4vw, 56px); align-items: start; }
.how-grid .steps { grid-template-columns: 1fr; }
.how-grid .chat-card { position: sticky; top: calc(var(--header-h) + 20px); }
@media (max-width: 900px) { .how-grid { grid-template-columns: 1fr; } .how-grid .chat-card { position: static; } }

/* stats strip */
.stats { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 14px; margin-top: -8px; }
@media (max-width: 900px) { .stats { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 480px) { .stats { grid-template-columns: 1fr; } }

/* legal wrapper */
.legal-wrap { padding: clamp(32px, 5vw, 56px) 0; }
.legal footer.nav { margin-top: 2rem; padding-top: 1rem; border-top: 1px solid var(--line); color: var(--muted); font-size: .95rem; }
.legal h1 + p, .legal .meta { color: var(--muted); }

/* /go/ landing */
.go .hero { padding-top: clamp(28px, 5vw, 56px); }
.go .hero h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
.go .header-nav { display: none; }
.go .proof { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.go .proof .chip { background: rgba(33,212,253,.08); border-color: rgba(33,212,253,.2); }
.go .section { padding: clamp(40px, 6vw, 64px) 0; }
.go main { padding-bottom: 20px; }
