/* Teleport — landing page styles.
   Tokens mirror the mobile app: Golos Text + Onest, surfaces #15171D on #0B0C0F
   (light: #FFFFFF on #F4F6FA), radii 12–24, accent gradient #2F6BFF → #38BDF8. */

:root {
  --bg: #0B0C0F;
  --band: #0E1015;
  --card: #15171D;
  --inset: #0E1015;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --text: #F4F6FA;
  --muted: #8b91a0;
  --dim: #6b7180;
  --chip-ink: #cdd2dd;
  --nav-ink: #9298a6;
  --accent: #3b82f6;
  --accent-deep: #2F6BFF;
  --accent-soft: #38BDF8;
  --link: #5b9bff;
  --accent-wash: rgba(59, 130, 246, 0.16);
  --ok: #34D399;
  --ok-wash: rgba(52, 211, 153, 0.12);
  --warn: #FBBF24;
  --warn-ring: rgba(251, 191, 36, 0.18);
  --bad: #F87171;
  --grad: linear-gradient(135deg, #2F6BFF, #38BDF8);
  --grad-shadow: 0 16px 32px -14px rgba(47, 107, 255, 0.75);
  --grad-shadow-sm: 0 12px 26px -12px rgba(47, 107, 255, 0.8);
  --shot-shadow: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.6));
  --step-empty: #2c2f3a;
  --step-empty-line: rgba(255, 255, 255, 0.12);
  --tbc: #2c2f3a;
  color-scheme: dark;
}

html[data-theme="light"] {
  --bg: #F4F6FA;
  --band: #FFFFFF;
  --card: #FFFFFF;
  --inset: #F0F2F7;
  --line: rgba(15, 23, 42, 0.07);
  --line-strong: rgba(15, 23, 42, 0.12);
  --text: #0E1116;
  --muted: #6B7280;
  --dim: #9aa0ae;
  --chip-ink: #2c3242;
  --nav-ink: #6B7280;
  --accent: #2F6BFF;
  --accent-deep: #2F6BFF;
  --accent-soft: #38BDF8;
  --link: #2F6BFF;
  --accent-wash: rgba(47, 107, 255, 0.1);
  --ok: #16a34a;
  --ok-wash: rgba(22, 163, 74, 0.1);
  --warn: #B45309;
  --warn-ring: rgba(245, 158, 11, 0.22);
  --bad: #DC2626;
  --grad-shadow: 0 16px 32px -14px rgba(47, 107, 255, 0.5);
  --grad-shadow-sm: 0 12px 26px -12px rgba(47, 107, 255, 0.5);
  --shot-shadow: drop-shadow(0 30px 60px rgba(20, 30, 50, 0.3));
  --step-empty: #FFFFFF;
  --step-empty-line: rgba(15, 23, 42, 0.18);
  --tbc: #2c2f3a;
  color-scheme: light;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Golos Text", system-ui, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
.num { font-family: "Onest", "Golos Text", system-ui, sans-serif; font-variant-numeric: tabular-nums; }
.tn { font-variant-numeric: tabular-nums; }

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

/* ---------- Logo ---------- */
.i-ok { stroke: var(--ok); }
.lg-a { stroke: var(--text); }
.lg-b { stroke: var(--accent); }
.lg-c { stroke: var(--accent); opacity: 0.5; }

/* ---------- Header ---------- */
.hdr {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--band);
  border-bottom: 1px solid var(--line);
}
.hdr-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand { display: flex; align-items: center; gap: 11px; flex: none; }
.brand span { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--nav-ink);
  transition: color 0.15s, background 0.15s;
}
.nav a svg { color: currentColor; }
.nav a:hover { color: var(--text); }
.nav a.active {
  background: var(--accent-wash);
  color: var(--link);
  font-weight: 700;
}
html[data-theme="light"] .nav a.active { color: var(--accent); }

.hdr-right { display: flex; align-items: center; gap: 10px; }

.chip {
  height: 42px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--inset);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--chip-ink);
  flex: none;
}
button.chip { font-family: inherit; cursor: pointer; }
button.chip:hover { border-color: var(--line-strong); }
.chip-icon { padding: 0 12px; }
.chip svg.caret { color: var(--dim); }
.hdr-sep { width: 1px; height: 26px; background: var(--line-strong); margin: 0 2px; flex: none; }

.btn {
  height: 42px;
  padding: 0 20px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: inherit;
  border: 0;
  cursor: pointer;
  flex: none;
  white-space: nowrap;
}
.btn-primary { background: var(--grad); color: #fff; box-shadow: var(--grad-shadow-sm); }
.btn-primary:hover { filter: brightness(1.06); }
.btn-text { padding: 0 16px; font-weight: 600; color: var(--text); background: none; }
.btn-lg { height: 54px; padding: 0 26px; border-radius: 16px; font-size: 15.5px; }
.btn-lg.btn-primary { box-shadow: var(--grad-shadow); }
.btn-quiet {
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  font-weight: 600;
}
.btn-quiet:hover { border-color: var(--line-strong); }

.burger { display: none; }
.nav .only-narrow { display: none; }

/* ---------- Hero ---------- */
.hero { display: flex; gap: 48px; align-items: center; padding-block: 64px 56px; }
.hero-copy { flex: 1.25; min-width: 0; }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ok-wash);
  border-radius: 10px;
  padding: 6px 12px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ok);
}
.badge i { width: 6px; height: 6px; border-radius: 50%; background: var(--ok); flex: none; }
h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin: 22px 0 0;
  text-wrap: pretty;
}
.lead {
  font-size: 17px;
  line-height: 1.6;
  color: var(--muted);
  margin: 18px 0 0;
  max-width: 480px;
  text-wrap: pretty;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }

.stats { display: flex; gap: 12px; margin-top: 36px; }
.stat {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
}
.stat b { display: block; font-size: 24px; font-weight: 700; }
.stat b.ok { color: var(--ok); }
.stat span { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 5px; }

/* ---------- Calculator ---------- */
.calc {
  flex: 1;
  min-width: 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 24px;
}
.calc-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.calc-head b { font-size: 17px; font-weight: 700; }
.calc-head span { font-size: 12px; font-weight: 600; color: var(--accent-soft); }
html[data-theme="light"] .calc-head span { color: var(--accent); }

.calc-panel {
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 2px 16px;
  margin-top: 18px;
}
.calc-row { display: flex; align-items: center; gap: 12px; padding: 15px 0; }
.calc-row + .calc-row { border-top: 1px solid var(--line); }
.calc-field { flex: 1; min-width: 0; }
.calc-field label { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); }
.calc-field .amount {
  width: 100%;
  display: block;
  margin-top: 5px;
  padding: 0;
  border: 0;
  background: none;
  font-family: "Onest", "Golos Text", system-ui, sans-serif;
  font-variant-numeric: tabular-nums;
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
}
.calc-field .amount:focus { outline: none; }
.calc-field .amount.out { color: var(--accent-soft); }
html[data-theme="light"] .calc-field .amount.out { color: var(--accent-deep); }
.cur {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: 8px 11px;
  font-size: 14px;
  font-weight: 700;
  flex: none;
}
.flag-ru {
  width: 22px;
  height: 16px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px var(--line-strong);
}
.flag-ru i { flex: 1; }
.flag-ru i:nth-child(1) { background: #fff; }
.flag-ru i:nth-child(2) { background: #0039A6; }
.flag-ru i:nth-child(3) { background: #D52B1E; }
.flag-ge { border-radius: 3px; box-shadow: 0 0 0 1px var(--line-strong); }

.calc-meta { display: flex; gap: 10px; margin-top: 12px; }
.meta {
  flex: 1;
  min-width: 0;
  background: var(--inset);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 12px 13px;
}
.meta span { display: block; font-size: 12px; font-weight: 500; color: var(--muted); }
.meta b { display: block; font-size: 13px; font-weight: 700; margin-top: 5px; }
.meta b.ok { color: var(--ok); }
.calc .btn-submit {
  width: 100%;
  height: 56px;
  border-radius: 16px;
  margin-top: 14px;
  font-size: 16px;
  box-shadow: var(--grad-shadow);
}

/* ---------- Sections ---------- */
.section { padding-block: 52px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
h2 { font-size: 22px; font-weight: 700; letter-spacing: -0.015em; margin: 0; }
.section-head .sub { font-size: 14.5px; font-weight: 500; color: var(--muted); margin-top: 8px; }
.link-all { font-size: 13px; font-weight: 600; color: var(--accent); flex: none; }
.link-all:hover { text-decoration: underline; }

.band {
  background: var(--band);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.band.last { border-bottom: 0; }

/* ---------- News ---------- */
.news { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.news-card {
  min-height: 150px;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: relative;
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--line);
}
.news-card > * { position: relative; }
.news-card .mark {
  position: absolute;
  right: -12px;
  bottom: 14px;
  opacity: 0.07;
  stroke: var(--text);
}
.news-card.grad-blue,
.news-card.grad-teal { border-color: transparent; color: #fff; }
.news-card.grad-blue { background: linear-gradient(150deg, #2350cf, #2F6BFF); }
.news-card.grad-teal { background: linear-gradient(150deg, #0f766e, #14b8a6); }
.news-card.grad-blue .mark,
.news-card.grad-teal .mark { opacity: 0.16; stroke: #fff; }
.kicker {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}
html[data-theme="light"] .kicker { color: var(--accent); }
.news-card.grad-blue .kicker,
.news-card.grad-teal .kicker { color: rgba(255, 255, 255, 0.8); }
.news-card b { font-size: 18px; line-height: 1.3; font-weight: 700; letter-spacing: -0.015em; }
.news-card .when { font-size: 13px; font-weight: 500; color: var(--muted); margin-top: auto; }
.grad-blue .when, .grad-teal .when { color: rgba(255, 255, 255, 0.75); }

/* ---------- Steps ---------- */
.steps { display: flex; align-items: flex-start; margin-top: 34px; }
.step { flex: 1; display: flex; flex-direction: column; gap: 14px; padding-right: 20px; }
.step:last-child { padding-right: 0; }
.rail { display: flex; align-items: center; }
.rail i { width: 12px; height: 12px; border-radius: 50%; background: var(--ok); flex: none; }
.rail u { flex: 1; height: 2px; background: var(--ok); }
.step.now .rail i { background: var(--warn); box-shadow: 0 0 0 5px var(--warn-ring); }
.step.now .rail u { background: var(--step-empty-line); }
.step.todo .rail i { background: var(--step-empty); border: 2px solid var(--step-empty-line); }
.step b { display: block; font-size: 15px; font-weight: 700; }
.step p { font-size: 13.5px; line-height: 1.55; font-weight: 500; color: var(--muted); margin: 6px 0 0; }
.step.now p { color: var(--warn); }
.step.todo b, .step.todo p { color: var(--dim); }

/* ---------- Directions ---------- */
.dirs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.dir {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.logos { display: flex; align-items: center; flex: none; }
.logos i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  border: 2px solid var(--card);
}
.logos i:first-child { z-index: 2; }
.logos i:last-child { margin-left: -13px; font-size: 13px; }
.dir-name { flex: 1; min-width: 0; }
.dir-name b { display: block; font-size: 15px; font-weight: 700; }
.dir-name span { display: block; font-size: 13px; font-weight: 500; color: var(--muted); margin-top: 3px; }
.dir-rate { text-align: right; flex: none; }
.dir-rate b { display: block; font-size: 16px; font-weight: 700; }
.dir-rate span { display: block; font-size: 12px; font-weight: 600; margin-top: 3px; color: var(--muted); }
.dir-rate span.up { color: var(--ok); }
.dir-rate span.down { color: var(--bad); }

/* ---------- Страница «Направления» (публичная, без входа) ---------- */
/* Логотипы банков приходят из API ссылками — раньше в карточках стояли
   буквенные плашки из макета. */
.logos img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--inset);
  border: 2px solid var(--card);
}
.logos img:first-child { z-index: 2; }
.logos img:last-child { margin-left: -13px; }
a.dir { text-decoration: none; color: inherit; transition: border-color 0.15s, transform 0.15s; }
a.dir:hover { border-color: var(--accent); transform: translateY(-1px); }

.dir-picker { display: flex; align-items: flex-end; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }
.dir-field { flex: 1; min-width: 200px; display: flex; flex-direction: column; gap: 7px; }
.dir-field > span { font-size: 12.5px; font-weight: 600; color: var(--muted); }
/* Свой выпадающий список вместо <select>: системный рисует сама ОС, он не
   поддаётся оформлению и на тёмной странице выпадал белым прямоугольником
   с синей подсветкой — единственное светлое пятно на всём сайте. */
.cpick { position: relative; }
.cpick-btn {
  width: 100%;
  height: 48px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  color: var(--text);
  font: 600 15px inherit;
  font-family: inherit;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
}
.cpick-btn:hover { border-color: var(--line-strong); }
.cpick-btn:focus-visible { outline: none; border-color: var(--accent); }
.cpick-btn svg { flex: none; color: var(--muted); transition: transform 0.15s; }
.cpick-btn[aria-expanded="true"] svg { transform: rotate(180deg); }
.cpick-val { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.cpick-pop {
  position: absolute;
  z-index: 40;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  max-height: 300px;
  overflow: auto;
  padding: 6px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line-strong);
  box-shadow: 0 24px 50px -18px rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.cpick-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border-radius: 10px;
  border: 0;
  background: none;
  color: var(--text);
  font: 500 14.5px inherit;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
}
.cpick-item img { width: 22px; height: 15px; border-radius: 3px; object-fit: cover; flex: none; }
.cpick-item:hover { background: var(--inset); }
.cpick-item.on { background: var(--accent-wash); color: var(--accent); font-weight: 700; }
/* страна другой стороны: перевода внутри страны нет */
.cpick-item:disabled { opacity: 0.35; cursor: not-allowed; }
.cpick-item:disabled:hover { background: none; }
.dir-to { display: flex; align-items: center; height: 48px; color: var(--dim); flex: none; }
.dir-empty {
  grid-column: 1 / -1;
  padding: 34px 20px;
  text-align: center;
  border-radius: 18px;
  background: var(--card);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.dir-note { font-size: 13px; line-height: 1.6; font-weight: 500; color: var(--muted); margin: 22px 0 0; max-width: 640px; }

@media (max-width: 760px) {
  .dir-picker { flex-direction: column; align-items: stretch; }
  .dir-to { transform: rotate(90deg); height: 22px; justify-content: center; }
}

/* ---------- App ---------- */
.app { display: flex; gap: 44px; align-items: center; }
.app-copy { flex: 1; min-width: 0; }
.app-copy h2 { font-size: 26px; letter-spacing: -0.02em; text-wrap: pretty; }
.app-copy .lead { font-size: 15.5px; line-height: 1.65; max-width: 430px; margin-top: 14px; }
.feats { display: flex; flex-direction: column; gap: 12px; margin-top: 26px; max-width: 430px; }
.feat {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.feat.tg { border-color: rgba(56, 189, 248, 0.18); }
html[data-theme="light"] .feat.tg { border-color: rgba(34, 158, 217, 0.28); }
.feat-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-wash);
  display: flex;
  align-items: center;
  justify-content: center;
  flex: none;
  color: var(--accent-soft);
}
html[data-theme="light"] .feat-icon { color: var(--accent); }
.feat-icon.tg { background: #229ED9; color: #fff; }
.feat-text { flex: 1; min-width: 0; }
.feat-text b { display: block; font-size: 14.5px; font-weight: 700; }
.feat-text span { display: block; font-size: 12.5px; font-weight: 500; color: var(--muted); margin-top: 2px; }

.stores { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.store {
  height: 50px;
  padding: 0 20px;
  border-radius: 14px;
  background: var(--card);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14.5px;
  font-weight: 700;
  color: var(--text);
}
.store:hover { border-color: var(--line-strong); }
.store svg { fill: currentColor; }

.shots { flex: none; display: flex; gap: 22px; }
.shots img { width: 250px; height: auto; filter: var(--shot-shadow); }
.shots img:last-child { margin-top: 30px; }

/* ---------- Footer ---------- */
.foot { background: var(--bg); border-top: 1px solid var(--line); padding-block: 52px 40px; }
.foot-top { display: flex; justify-content: space-between; gap: 60px; flex-wrap: wrap; }
.foot-brand { max-width: 290px; }
.foot-brand .brand span { font-size: 19px; }
.foot-brand p { font-size: 13.5px; line-height: 1.65; font-weight: 500; color: var(--dim); margin: 14px 0 0; }
.foot-cols { display: flex; gap: 64px; flex-wrap: wrap; }
.foot-col { display: flex; flex-direction: column; gap: 11px; }
.foot-col b { font-size: 13px; font-weight: 700; margin-bottom: 2px; }
.foot-col a { font-size: 14px; font-weight: 500; color: var(--muted); }
.foot-col a:hover { color: var(--accent); }
.foot-rule { height: 1px; background: var(--line); margin: 32px 0 18px; }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  gap: 12px 24px;
  flex-wrap: wrap;
  font-size: 13px;
  font-weight: 500;
  color: var(--dim);
}
.foot-bottom a:hover { color: var(--accent); }

/* ---------- Language visibility ---------- */
[hidden] { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav { display: none; }
  .nav.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 24px 20px;
    background: var(--band);
    border-bottom: 1px solid var(--line);
  }
  .burger {
    display: flex;
    width: 42px;
    padding: 0;
    justify-content: center;
  }
  .hdr-inner { justify-content: flex-start; }
  .hdr-right { margin-left: auto; }
}

@media (max-width: 1000px) {
  .hero { flex-direction: column; align-items: stretch; gap: 32px; padding-block: 44px 40px; }
  .lead { max-width: none; }
  .app { flex-direction: column; align-items: stretch; gap: 36px; }
  .app-copy .lead, .feats { max-width: none; }
  .shots { justify-content: center; }
  .shots img { width: min(250px, 40vw); }
  .news { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-wrap: wrap; row-gap: 26px; }
  .step { flex: 1 1 44%; }
  .step:nth-child(2) { padding-right: 0; }
  .dirs { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .wrap { padding-inline: 24px; }
  .hdr-inner { height: 68px; }
  .nav.open { top: 68px; }
  .chip-rate, .btn-text { display: none; }
  .hdr-sep { display: none; }
  .nav.open .m-login { display: flex; }
  .section { padding-block: 40px; }
  .foot-cols { gap: 32px; }
}

@media (max-width: 620px) {
  .wrap { padding-inline: 20px; }
  .hdr-right { gap: 8px; }
  .hdr-right .btn-primary { display: none; }
  .nav.open .m-signup { display: flex; }
  .stats { flex-wrap: wrap; }
  .stat { flex: 1 1 100%; }
  .news { grid-template-columns: 1fr; }
  .steps { display: block; }
  .step { padding-right: 0; margin-bottom: 22px; }
  .step .rail u { max-width: 60px; }
  .calc { padding: 18px; }
  .calc-field .amount { font-size: 24px; }
  .cta-row .btn-lg { flex: 1 1 100%; }
  .foot-cols { gap: 28px; width: 100%; }
  .foot-col { flex: 1 1 40%; }
  .shots img { width: min(250px, 44vw); }
  .shots { gap: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
