:root {
  --ink: #17233b;
  --ink-muted: #4c5a72;
  --ink-faint: #5b6a85;
  --paper: #edeff1;
  --white: #ffffff;
  --accent: #2450d8;
  --accent-deep: #1b3ea8;
  --ok: #1e8a5a;
  --ok-bg: #e9f4ee;
  --ok-ink: #155f40;
  --ok-faint: #3b755a;
  --warn: #8a5409;
  --warn-bg: #fdf2e0;
  --warn-ink: #7d4d06;
  --line: rgba(23, 35, 59, 0.14);
  --line-soft: rgba(23, 35, 59, 0.12);
  --grid: rgba(23, 35, 59, 0.045);
  --sans: 'Onest', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'PT Mono', ui-monospace, monospace;
  --shadow-card: 0 28px 56px rgba(23, 35, 59, 0.16);
  --shadow-cta: 0 10px 24px rgba(36, 80, 216, 0.28);
}

* { box-sizing: border-box; }

html { overflow-x: clip; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, p { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }

a { color: inherit; text-decoration: none; transition: opacity 0.15s ease; }
a:hover { opacity: 0.85; }

.wrap { max-width: 1440px; margin: 0 auto; padding: 0 64px; }

.mono {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink-faint);
  text-transform: uppercase;
}

.node {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ---------- header ---------- */
.head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 64px;
  border-bottom: 1px solid var(--line);
  gap: 20px;
}
.logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
.logo-mark { display: block; flex-shrink: 0; }
.logo-near { color: var(--accent); }

.nav { display: flex; gap: 36px; font-family: var(--mono); font-size: 13px; color: var(--ink-muted); }

.lang {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-muted);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 8px 10px;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.lang:hover { color: var(--accent); border-color: rgba(36, 80, 216, 0.4); background: rgba(36, 80, 216, 0.06); opacity: 1; }

.btn-ghost {
  border: 2px solid var(--ink);
  color: var(--ink);
  font-weight: 700;
  font-size: 14px;
  padding: 9px 20px;
  border-radius: 8px;
  white-space: nowrap;
  transition: background 0.15s ease, color 0.15s ease;
}
.btn-ghost:hover { background: var(--ink); color: var(--white); opacity: 1; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background-image:
    linear-gradient(var(--grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid) 1px, transparent 1px);
  background-size: 72px 72px;
  overflow: hidden;
}
.hero-inner { position: relative; padding: 64px 64px 0; }

.ghost-num {
  position: absolute;
  right: 40px;
  top: 46px;
  font-family: var(--mono);
  font-size: 190px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(23, 35, 59, 0.13);
  user-select: none;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 72px;
  align-items: start;
  position: relative;
}

.route-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 30px;
  font-family: var(--mono);
  font-size: 13px;
  color: var(--accent);
  flex-wrap: wrap;
}
.route-eyebrow .dot-a { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); }
.route-eyebrow .dot-b { width: 9px; height: 9px; border-radius: 50%; background: var(--accent); }
.route-eyebrow .dash { width: 64px; border-top: 2px dashed var(--accent); }
.route-eyebrow .city { color: var(--ink); }
.route-eyebrow .meta { color: var(--ink-faint); }

.hero h1 {
  font-size: 82px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.035em;
  margin-bottom: 26px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 580px;
  margin-bottom: 40px;
}

.cta-row { display: flex; align-items: center; gap: 22px; margin-bottom: 52px; flex-wrap: wrap; }
.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  padding: 19px 36px;
  border-radius: 8px;
  box-shadow: var(--shadow-cta);
  transition: background 0.2s ease, transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.3s ease;
}
.btn:hover { background: var(--accent-deep); opacity: 1; transform: translateY(-2px); box-shadow: 0 16px 34px rgba(36, 80, 216, 0.34); }
.btn:active { transform: translateY(0); }

.ruler { max-width: 560px; }
.ruler-top {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-faint);
  margin-bottom: 6px;
  gap: 12px;
}
.ruler-scale {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid var(--ink);
  height: 14px;
}
.ruler-scale i { flex: 1; border-left: 1px solid rgba(23, 35, 59, 0.4); height: 7px; }
.ruler-scale i:nth-child(5n) { height: 12px; }
.ruler-scale i:last-child { border-right: 1px solid rgba(23, 35, 59, 0.4); }

/* ---------- journal card ---------- */
.journal-holder { position: relative; z-index: 1; margin-bottom: -56px; }
.journal {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  transform: rotate(0.6deg);
  overflow: hidden;
}
.journal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 16px 24px;
  border-bottom: 1px dashed rgba(23, 35, 59, 0.25);
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  gap: 12px;
}
.journal-status { display: flex; align-items: center; gap: 6px; }
.journal-status i { width: 7px; height: 7px; border-radius: 50%; background: var(--ok); }

.journal-body { padding: 24px; position: relative; }
.route { position: relative; }
.journal-line {
  position: absolute;
  left: 11px;
  top: var(--line-top, 12px);
  height: var(--line-h, 0);
  border-left: 2px dashed rgba(36, 80, 216, 0.45);
}
.stop { display: flex; gap: 16px; align-items: flex-start; position: relative; }
.stop-node {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 5px solid var(--white);
  flex-shrink: 0;
}
.stop-a { background: var(--ink); box-shadow: 0 0 0 1px rgba(23, 35, 59, 0.2); }
.stop-b { background: var(--accent); box-shadow: 0 0 0 1px rgba(36, 80, 216, 0.35); }
.stop-name { font-weight: 800; font-size: 17px; }
.stop-meta { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); margin-top: 2px; }

.journal-notes { margin: 14px 0 14px 56px; display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.journal-notes span {
  background: var(--paper);
  border-radius: 8px;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
}

.ok-chip {
  margin: 20px 0 4px;
  background: var(--ok-bg);
  border: 1px solid rgba(30, 138, 90, 0.3);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ok-chip > i { width: 9px; height: 9px; border-radius: 50%; background: var(--ok); flex-shrink: 0; }
.ok-title { font-weight: 700; font-size: 15px; color: var(--ok-ink); }
.ok-meta { font-family: var(--mono); font-size: 12px; color: var(--ok-faint); }

/* ---------- интерактив журнала ---------- */
.journal-switch { display: flex; gap: 4px; }
.jsw {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  color: var(--ink-faint);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 8px 11px;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.jsw:hover { color: var(--ink); background: rgba(23, 35, 59, 0.05); }
.jsw.is-on { color: var(--accent); border-color: rgba(36, 80, 216, 0.3); background: rgba(36, 80, 216, 0.07); }
.jsw:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.warn-chip {
  margin: 20px 0 4px;
  background: var(--warn-bg);
  border: 1px solid rgba(169, 105, 12, 0.32);
  border-radius: 12px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.warn-chip > i { width: 9px; height: 9px; border-radius: 50%; background: var(--warn); flex-shrink: 0; }
.warn-title { font-weight: 700; font-size: 15px; color: var(--warn-ink); }
.warn-meta { font-family: var(--mono); font-size: 12px; color: var(--warn); }

.journal [data-panel] { animation: panelIn 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
@keyframes panelIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ---------- раскрытие проверки совместимости ---------- */
.scan-warn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  font-family: var(--mono);
  letter-spacing: 0.02em;
  background: transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.scan-warn:hover { background: rgba(36, 80, 216, 0.06); border-color: rgba(36, 80, 216, 0.6); }
.scan-warn:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.scan-warn-sign { font-size: 14px; line-height: 1; transition: transform 0.3s cubic-bezier(0.2, 0.7, 0.2, 1); }
.scan-warn[aria-expanded="true"] .scan-warn-sign { transform: rotate(45deg); }

.scan-detail {
  margin-top: 10px;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-muted);
  background: var(--white);
  border-left: 2px solid var(--accent);
  border-radius: 0 8px 8px 0;
  padding: 12px 14px;
  animation: panelIn 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

/* ---------- кнопка родителя ---------- */
.mock-ok {
  display: block;
  width: 100%;
  font-family: var(--sans);
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.25s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.mock-ok:hover { background: #19764d; transform: translateY(-2px); }
.mock-ok:active { transform: translateY(0); }
.mock-ok:focus-visible { outline: 2px solid var(--ok); outline-offset: 3px; }
.mock-ok.is-sent { background: var(--ok-bg); color: var(--ok-ink); box-shadow: inset 0 0 0 1px rgba(30, 138, 90, 0.35); }

.checkin-echo {
  margin-top: 10px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ok-faint);
  min-height: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.checkin-echo.is-on { opacity: 1; }

/* ---------- ticker ---------- */
.ticker {
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.55);
  padding: 14px 64px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-muted);
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

/* ---------- прелоадер ---------- */
html.preloading, html.preloading body { overflow: hidden; }
html.preloading body > *:not(.boot) { visibility: hidden; }

.boot {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.boot.is-shown { opacity: 1; }
.boot.is-done { opacity: 0; pointer-events: none; }
html:not(.preloading) .boot { display: none; }

.boot-mark { width: 64px; height: 54px; }
.boot-mark .seg { stroke-dasharray: 0.1 9; stroke-linecap: round; stroke-width: 4; }
.boot-mark .draw { animation: bootDraw 1.4s ease-in-out infinite; }
@keyframes bootDraw { 0%, 100% { opacity: 0.25; } 50% { opacity: 1; } }

/* ---------- generic section ---------- */
.sec { background: var(--white); border-top: 1px solid var(--line-soft); padding: 68px 64px 72px; }
.sec-dark { background: var(--ink); color: var(--white); }
.sec-paper { background: var(--paper); }

.sec-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 44px; }
.eyebrow { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 14px; }
.sec h2 { font-size: 46px; font-weight: 900; letter-spacing: -0.025em; max-width: 640px; }
.sec-sub { font-size: 19px; line-height: 1.55; color: var(--ink-muted); max-width: 560px; margin-top: 18px; }

.stamp {
  flex-shrink: 0;
  transform: rotate(-2.5deg);
  border: 2px dashed var(--accent);
  color: var(--accent);
  font-family: var(--mono);
  font-size: 13px;
  padding: 12px 20px;
  border-radius: 10px;
  line-height: 1.5;
}

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: 1fr 1.18fr 1fr; gap: 56px; position: relative; }
.steps-line { position: absolute; left: 14px; right: 14px; top: 14px; border-top: 2px dashed rgba(36, 80, 216, 0.4); }
.step { position: relative; }
.step-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
}
.step-num.is-last { background: var(--accent); }
.step h3 { margin-top: 24px; font-weight: 800; font-size: 21px; }
.step p { margin-top: 8px; font-size: 16px; line-height: 1.55; color: var(--ink-muted); }

.artifact-chip {
  margin-top: 18px;
  display: inline-flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
  border: 1px solid rgba(23, 35, 59, 0.18);
  border-radius: 8px;
  padding: 8px 12px;
}
.bubble {
  margin-top: 18px;
  background: var(--paper);
  border-radius: 14px 14px 14px 4px;
  padding: 13px 16px;
  font-size: 15px;
  line-height: 1.45;
  max-width: 320px;
}
.mock-ok {
  margin-top: 18px;
  background: var(--ok);
  color: var(--white);
  text-align: center;
  font-weight: 700;
  font-size: 16px;
  padding: 14px;
  border-radius: 12px;
  max-width: 240px;
}

/* ---------- pain ---------- */
.pain { padding: 72px 64px 76px; }
.pain h2 { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; max-width: 900px; color: var(--white); }
.pain p { margin-top: 22px; font-size: 19px; line-height: 1.6; color: rgba(255, 255, 255, 0.66); max-width: 620px; }
.pain-meta { margin-top: 44px; display: flex; gap: 28px; flex-wrap: wrap; font-family: var(--mono); font-size: 12px; color: rgba(255, 255, 255, 0.42); }

/* ---------- features ---------- */
.features { display: grid; grid-template-columns: 1.25fr 0.75fr; gap: 24px; align-items: stretch; }
.feat {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 32px;
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.feat-wide { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; }
.feat h3 { font-size: 26px; font-weight: 800; letter-spacing: -0.015em; }
.feat p { font-size: 16px; line-height: 1.55; color: var(--ink-muted); }

.scan {
  background: var(--paper);
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.scan-row { display: flex; justify-content: space-between; align-items: baseline; font-size: 14.5px; gap: 12px; }
.scan-row + .scan-row { border-top: 1px solid rgba(23, 35, 59, 0.1); padding-top: 10px; }
.scan-row span:last-child { font-family: var(--mono); font-size: 12px; color: var(--ink-faint); }
.scan-warn {
  margin-top: 4px;
  border: 1px dashed rgba(36, 80, 216, 0.45);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--accent);
}

.digest { display: flex; flex-direction: column; gap: 10px; }
.digest-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--paper);
  border-radius: 10px;
  padding: 11px 14px;
  font-size: 14.5px;
}
.digest-row i {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  font-family: var(--mono); font-size: 11px; font-style: normal;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.digest-row.is-accent i { background: var(--accent); }

/* ---------- family band ---------- */
.band {
  background: var(--paper);
  border-top: 1px solid var(--line-soft);
  padding: 40px 64px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
  flex-wrap: wrap;
}
.band-head h2 { font-size: 27px; font-weight: 800; letter-spacing: -0.02em; max-width: 22ch; }
.band-items { display: flex; gap: 28px; flex-wrap: wrap; }
.band-items span { display: flex; align-items: center; gap: 9px; font-size: 16px; font-weight: 700; }
.band-items i { width: 9px; height: 9px; border-radius: 50%; background: var(--ink); flex-shrink: 0; }
.band-items i.is-accent { background: var(--accent); }
.band-items em {
  font-style: normal;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  color: var(--ink-faint);
  font-weight: 400;
}

/* ---------- final cta ---------- */
.final { padding: 64px 64px 72px; text-align: center; }
.final h2 { font-size: 52px; font-weight: 900; letter-spacing: -0.03em; margin: 0 auto 22px; max-width: 16ch; }
.final p { font-size: 18px; line-height: 1.6; color: var(--ink-muted); max-width: 560px; margin: 0 auto 30px; }
.final .mono { margin-top: 16px; }

/* ---------- footer ---------- */
.foot {
  border-top: 1px solid var(--line);
  padding: 26px 64px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-faint);
}
.foot a { display: inline-block; padding: 8px 0; }
.logo { padding: 6px 0; }

/* ---------- движение ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity 0.7s cubic-bezier(0.2, 0.7, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.7, 0.2, 1); }
.rv.in { opacity: 1; transform: none; }

/* пунктир маршрута прочерчивается один раз при появлении */
.route-eyebrow .dash { transform: scaleX(0); transform-origin: left center; transition: transform 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.3s; }
.route-eyebrow.in .dash { transform: scaleX(1); }

.steps-line { transform: scaleX(0); transform-origin: left center; transition: transform 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.15s; }
.steps.in .steps-line { transform: scaleX(1); }


/* штрихи линейки вырастают волной */
.ruler-scale i { transform: scaleY(0); transform-origin: bottom; transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1); }
.ruler.in .ruler-scale i { transform: scaleY(1); }
.ruler.in .ruler-scale i:nth-child(1) { transition-delay: 0.30s; }
.ruler.in .ruler-scale i:nth-child(2) { transition-delay: 0.35s; }
.ruler.in .ruler-scale i:nth-child(3) { transition-delay: 0.40s; }
.ruler.in .ruler-scale i:nth-child(4) { transition-delay: 0.45s; }
.ruler.in .ruler-scale i:nth-child(5) { transition-delay: 0.50s; }
.ruler.in .ruler-scale i:nth-child(6) { transition-delay: 0.55s; }
.ruler.in .ruler-scale i:nth-child(7) { transition-delay: 0.60s; }
.ruler.in .ruler-scale i:nth-child(8) { transition-delay: 0.65s; }
.ruler.in .ruler-scale i:nth-child(9) { transition-delay: 0.70s; }
.ruler.in .ruler-scale i:nth-child(10) { transition-delay: 0.75s; }

/* отклик на курсор */
.feat { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1), border-color 0.35s ease, box-shadow 0.35s ease; }
.feat:hover { transform: translateY(-3px); border-color: rgba(36, 80, 216, 0.32); box-shadow: 0 18px 38px rgba(23, 35, 59, 0.09); }

.journal { transition: transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 0.5s ease; }
.journal:hover { transform: rotate(0.6deg) translateY(-5px); box-shadow: 0 36px 70px rgba(23, 35, 59, 0.2); }

.step-num { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.step:hover .step-num { transform: scale(1.12); }

.band-items span i { transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.2, 1); }
.band-items span:hover i { transform: scale(1.5); }

.ok-chip { transition: transform 0.4s cubic-bezier(0.2, 0.7, 0.2, 1); }
.journal:hover .ok-chip { transform: translateX(2px); }

/* ---------- responsive ---------- */
@media (max-width: 1180px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .journal-holder { margin-bottom: -40px; }
  .journal { transform: none; }
  .ghost-num { font-size: 140px; right: 16px; }
  .steps { grid-template-columns: 1fr; gap: 34px; }
  .steps-line { left: 13px; right: auto; top: 14px; bottom: 14px; border-top: 0; border-left: 2px dashed rgba(36, 80, 216, 0.4); }
  .step { display: flex; gap: 16px; }
  .step-body { flex: 1; }
  .step h3 { margin-top: 0; font-size: 17px; }
  .features, .feat-wide { grid-template-columns: 1fr; }
  .band { flex-direction: column; align-items: flex-start; gap: 22px; }
  .sec-head { flex-direction: column; gap: 22px; }
}

@media (max-width: 640px) {
  .wrap, .head, .hero-inner, .ticker, .sec, .pain, .final, .foot { padding-left: 20px; padding-right: 20px; }
  .head { padding-top: 16px; padding-bottom: 16px; }
  .nav { display: none; }
  .lang { min-height: 44px; display: inline-flex; align-items: center; padding: 0 10px; font-size: 11px; }
  .btn-ghost { font-size: 13px; padding: 12px 16px; }
  .hero { background-size: 48px 48px; }
  .hero-inner { padding-top: 36px; padding-bottom: 0; }
  .ghost-num { font-size: 84px; right: -14px; top: 8px; -webkit-text-stroke-width: 1px; }
  .hero h1 { font-size: 42px; line-height: 1.02; letter-spacing: -0.03em; margin-bottom: 16px; }
  .hero-lede { font-size: 16px; margin-bottom: 26px; }
  .route-eyebrow { font-size: 11px; gap: 8px; margin-bottom: 22px; }
  .route-eyebrow .dash { flex: 1; width: auto; }
  .route-eyebrow .meta { display: none; }
  .cta-row { flex-direction: column; align-items: stretch; gap: 10px; margin-bottom: 34px; text-align: center; }
  .btn { display: block; text-align: center; padding: 17px; min-height: 56px; }
  .ruler { display: none; }
  .journal-holder { margin-bottom: 0; }
  .journal-body { padding: 16px; }
  .journal-switch { width: 100%; margin-top: 4px; }
  .jsw { flex: 1; min-height: 44px; font-size: 11px; }
  .journal-line { left: 9px; }
  .stop-node { width: 20px; height: 20px; border-width: 4px; }
  .stop-name { font-size: 15px; }
  .journal-notes { margin-left: 40px; }
  .ticker { gap: 12px; font-size: 11px; }
  .sec { padding-top: 40px; padding-bottom: 44px; }
  .band { padding: 32px 20px 34px; }
  .band-head h2 { font-size: 22px; }
  .band-items { flex-direction: column; gap: 14px; }
  .sec h2, .pain h2, .final h2 { font-size: 30px; letter-spacing: -0.02em; }
  .sec-sub, .pain p, .final p { font-size: 16px; }
  .pain { padding-top: 46px; padding-bottom: 48px; }
  .final { padding-top: 46px; padding-bottom: 56px; }
  .stamp { font-size: 12px; padding: 9px 14px; }
  .feat { padding: 24px; }
  .feat h3 { font-size: 21px; }
}

@media (prefers-reduced-motion: reduce) {
  .boot-mark .draw { animation: none; opacity: 1; }
  .boot { transition: none; }
  .rv, .rv.in { transition: none; opacity: 1; transform: none; }
  .route-eyebrow .dash, .steps-line, .ruler-scale i { transition: none; transform: none; }
  .feat, .journal, .btn, .step-num, .band-items span i, .ok-chip, .mock-ok, .scan-warn-sign { transition: none; }
  .journal [data-panel], .scan-detail { animation: none; }
  .mock-ok:hover { transform: none; }
  .feat:hover, .journal:hover, .btn:hover, .step:hover .step-num, .band-items span:hover i, .journal:hover .ok-chip { transform: none; }
}
