@font-face {
  font-family: Inter;
  src: url("./fonts/inter-cyrillic.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
  unicode-range: U+0400-04FF, U+0500-052F;
}
@font-face {
  font-family: Inter;
  src: url("./fonts/inter-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 100 900;
}
@font-face {
  font-family: Plex;
  src: url("./fonts/ibm-plex-mono-600-cyrillic.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
  unicode-range: U+0400-04FF, U+0500-052F;
}
@font-face {
  font-family: Plex;
  src: url("./fonts/ibm-plex-mono-600-latin.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

:root {
  color-scheme: dark;
  --bg: #071018;
  --bg-deep: #03090e;
  --panel: #0c1822;
  --panel-raised: #102231;
  --line: #203746;
  --line-bright: #31566a;
  --ink: #f2f7fa;
  --muted: #93a7b3;
  --cyan: #32d6ff;
  --cyan-soft: #9eeaff;
  --blue: #1677ff;
  --green: #4ee5a7;
  --error: #ff8e8e;
  --sans: Inter, Arial, sans-serif;
  --mono: Plex, "Courier New", monospace;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--bg); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background:
    linear-gradient(rgb(50 214 255 / .027) 1px, transparent 1px),
    linear-gradient(90deg, rgb(50 214 255 / .027) 1px, transparent 1px),
    var(--bg);
  background-size: 56px 56px;
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.5;
}
body.dialog-open { overflow: hidden; }
[hidden] { display: none !important; }
a { color: inherit; }
button, input, select { font: inherit; }
button { color: inherit; }
img { max-width: 100%; }

.skip-link {
  position: fixed;
  z-index: 100;
  left: 16px;
  top: -80px;
  padding: 11px 16px;
  background: var(--cyan);
  color: #001018;
  font-weight: 800;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: minmax(190px, 1fr) auto minmax(250px, 1fr);
  align-items: center;
  gap: 32px;
  padding: 0 clamp(20px, 4vw, 68px);
  border-bottom: 1px solid var(--line);
  background: rgb(3 9 14 / .88);
  backdrop-filter: blur(18px);
}
.brand {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-bright);
  background: linear-gradient(145deg, #122735, #081219);
  color: var(--cyan);
  font: 600 10px var(--mono);
  box-shadow: inset 0 0 18px rgb(50 214 255 / .06);
}
.brand > span:last-child { min-width: 0; display: grid; }
.brand b { font-size: 13px; letter-spacing: .08em; }
.brand small { color: var(--muted); font: 600 8px var(--mono); letter-spacing: .12em; }
.desktop-nav { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 38px); }
.desktop-nav a {
  padding: 12px 0;
  color: #b9c8d0;
  font: 600 10px var(--mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}
.desktop-nav a:hover { color: var(--cyan); }
.header-actions { justify-self: end; display: flex; align-items: center; gap: 17px; }
.phone-link { color: var(--cyan-soft); font: 600 10px var(--mono); text-decoration: none; }
.menu-button {
  display: none;
  min-height: 42px;
  border: 1px solid var(--line-bright);
  background: transparent;
  padding: 8px 13px;
  font: 600 10px var(--mono);
  cursor: pointer;
}
.mobile-nav {
  grid-column: 1 / -1;
  padding: 0 0 20px;
  border-top: 1px solid var(--line);
}
.mobile-nav a {
  display: block;
  padding: 13px 2px;
  border-bottom: 1px solid var(--line);
  color: #c9d5da;
  text-decoration: none;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  border: 1px solid var(--cyan);
  background: var(--cyan);
  color: #00131c;
  padding: 13px 18px;
  font: 700 11px var(--mono);
  letter-spacing: .055em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.button:hover { background: #fff; border-color: #fff; transform: translateY(-2px); }
.button-small { min-height: 40px; padding: 9px 14px; gap: 16px; font-size: 9px; }
.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: #c8d5da;
  font: 600 11px var(--mono);
  text-decoration: none;
}
.text-link:hover { color: var(--cyan); }
.button:focus-visible,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}

.hero {
  min-height: calc(100svh - var(--header-h));
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(420px, 1.05fr);
  border-bottom: 1px solid var(--line);
  background: radial-gradient(circle at 15% 20%, rgb(22 119 255 / .12), transparent 38rem);
}
.hero-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(70px, 8vw, 130px) clamp(22px, 5.5vw, 92px);
}
.live-status {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: clamp(42px, 7vw, 86px);
  border: 1px solid var(--line);
  background: rgb(12 24 34 / .75);
  padding: 9px 12px;
  font: 600 8px var(--mono);
  letter-spacing: .09em;
}
.live-status i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 16px var(--green);
}
.live-status b { color: var(--green); font-weight: 600; }
.eyebrow,
.form-kicker {
  margin: 0;
  color: var(--cyan);
  font: 600 10px var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hero h1 {
  max-width: 820px;
  margin: 25px 0 30px;
  font-size: clamp(51px, 6.1vw, 105px);
  line-height: .91;
  letter-spacing: -.067em;
}
.hero h1 em { display: block; color: var(--cyan); font-style: normal; font-weight: 500; }
.hero-lead { max-width: 680px; margin: 0; color: #bdcad0; font-size: clamp(17px, 1.45vw, 23px); line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; margin-top: 38px; }
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: clamp(48px, 7vw, 78px) 0 0;
  border-top: 1px solid var(--line);
}
.hero-metrics div { min-width: 0; padding: 18px 16px 0 0; }
.hero-metrics dt { color: #6f8996; font: 600 8px var(--mono); letter-spacing: .12em; }
.hero-metrics dd { margin: 6px 0 0; font-size: 13px; font-weight: 750; }
.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 580px;
  margin: 0;
  overflow: hidden;
  border-left: 1px solid var(--line);
  background: var(--bg-deep);
}
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(3 9 14 / .34), transparent 42%), linear-gradient(0deg, rgb(3 9 14 / .72), transparent 30%);
  pointer-events: none;
}
.hero-visual img { width: 100%; height: 100%; display: block; object-fit: cover; }
.hero-visual figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 18px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: #d3e2e8;
  font: 600 8px var(--mono);
  letter-spacing: .1em;
}
.visual-hud {
  position: absolute;
  z-index: 2;
  top: 26px;
  right: 26px;
  width: min(240px, calc(100% - 52px));
  padding: 16px;
  border: 1px solid rgb(158 234 255 / .4);
  background: rgb(3 9 14 / .7);
  backdrop-filter: blur(12px);
  font-family: var(--mono);
}
.visual-hud span,
.visual-hud small { display: block; color: #9bb2bd; font-size: 8px; letter-spacing: .11em; }
.visual-hud b { display: block; margin: 8px 0 12px; color: #fff; font-size: 11px; }
.visual-hud i { display: block; height: 3px; margin-bottom: 11px; background: linear-gradient(90deg, var(--cyan) 78%, var(--line) 78%); }

.signal-strip {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 54px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: #09141c;
  color: #8da4af;
  font: 600 8px var(--mono);
  letter-spacing: .13em;
  white-space: nowrap;
}
.signal-strip i { width: 4px; height: 4px; border-radius: 50%; background: var(--cyan); }
.section { padding: clamp(78px, 10vw, 150px) clamp(20px, 5vw, 82px); border-bottom: 1px solid var(--line); }
.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .55fr);
  align-items: end;
  gap: 40px clamp(50px, 9vw, 150px);
  margin-bottom: clamp(42px, 6vw, 75px);
}
.section-head > * { min-width: 0; }
.section-head h2,
.process-intro h2,
.proposal-copy h2,
.faq-intro h2 {
  max-width: 920px;
  margin: 20px 0 0;
  font-size: clamp(42px, 5.6vw, 88px);
  line-height: .98;
  letter-spacing: -.057em;
  overflow-wrap: anywhere;
}
.section-head > p,
.process-intro > p:last-child,
.proposal-copy > p,
.faq-intro > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}
.section-head.compact { grid-template-columns: minmax(0, 1fr); }

.operations { background: #08121a; }
.operations-grid {
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  gap: 14px;
}
.operation-card {
  position: relative;
  min-width: 0;
  min-height: 320px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--panel);
}
.operation-card-wide { grid-row: span 2; min-height: 670px; }
.operation-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(0deg, #03090ef2 0, transparent 58%); pointer-events: none; }
.operation-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s ease; }
.operation-card:hover img { transform: scale(1.025); }
.operation-card figcaption {
  position: absolute;
  z-index: 2;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
}
.operation-card figcaption > span { color: var(--cyan); font: 600 10px var(--mono); }
.operation-card figcaption b { display: block; font-size: 17px; }
.operation-card figcaption small { display: block; max-width: 620px; margin-top: 6px; color: #9eb0b8; line-height: 1.5; }

.terms { background: #09151e; }
.terms-layout { display: grid; grid-template-columns: minmax(260px, .7fr) minmax(0, 1.3fr); gap: 14px; }
.tier-stack { display: grid; gap: 10px; }
.tier-stack article {
  min-width: 0;
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--panel);
}
.tier-stack article.is-accent { border-color: var(--cyan); background: linear-gradient(145deg, #0f2a38, #0b1c27); }
.tier-stack span { color: var(--cyan); font: 600 8px var(--mono); letter-spacing: .12em; }
.tier-stack b { grid-column: 2; grid-row: 1 / span 2; align-self: center; font-size: clamp(29px, 3.2vw, 54px); letter-spacing: -.05em; }
.tier-stack p { margin: 32px 0 0; color: var(--muted); font-size: 13px; }
.term-table { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.term-table > div { min-width: 0; min-height: 160px; padding: 24px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgb(12 24 34 / .58); }
.term-table span { display: block; color: #708a97; font: 600 8px var(--mono); letter-spacing: .13em; }
.term-table b { display: block; margin: 24px 0 8px; font-size: 18px; overflow-wrap: anywhere; }
.term-table small { color: var(--muted); line-height: 1.55; }

.buyers { background: var(--bg-deep); }
.buyer-grid { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.buyer-grid article { min-width: 0; min-height: 260px; padding: 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.buyer-grid span { color: var(--cyan); font: 600 9px var(--mono); }
.buyer-grid h3 { margin: 65px 0 14px; font-size: 22px; letter-spacing: -.025em; }
.buyer-grid p { margin: 0; color: var(--muted); line-height: 1.65; }

.process {
  display: grid;
  grid-template-columns: minmax(300px, .75fr) minmax(0, 1.25fr);
  gap: clamp(50px, 9vw, 150px);
  background: linear-gradient(135deg, #0b1d29, #071018 60%);
}
.process-intro { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; min-width: 0; }
.process-intro h2 { font-size: clamp(40px, 4.8vw, 75px); }
.process-intro > p:last-child { max-width: 520px; margin-top: 26px; }
.process-list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--line); }
.process-list li { display: grid; grid-template-columns: 70px 1fr; gap: 16px; padding: 28px 0; border-bottom: 1px solid var(--line); }
.process-list li > span { color: var(--cyan); font: 600 10px var(--mono); }
.process-list b { display: block; font-size: 20px; }
.process-list p { max-width: 640px; margin: 8px 0 0; color: var(--muted); }

.proposal {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(420px, 1.18fr);
  align-items: start;
  gap: clamp(50px, 9vw, 150px);
  background:
    radial-gradient(circle at 10% 0, rgb(22 119 255 / .2), transparent 38rem),
    #061019;
}
.proposal-copy { position: sticky; top: calc(var(--header-h) + 40px); min-width: 0; }
.proposal-copy > p { max-width: 610px; margin-top: 28px; }
.proposal-copy ul { list-style: none; margin: 45px 0; padding: 0; border-top: 1px solid var(--line); }
.proposal-copy li { display: grid; grid-template-columns: 44px 1fr; padding: 16px 0; border-bottom: 1px solid var(--line); color: #b9c8d0; font-size: 13px; }
.proposal-copy li span { color: var(--cyan); font: 600 9px var(--mono); }
.proposal-contact { display: grid; gap: 8px; }
.proposal-contact small { color: #708895; font: 600 8px var(--mono); letter-spacing: .12em; }
.proposal-contact a { width: fit-content; color: var(--cyan-soft); text-decoration: none; }
.proposal-panel {
  min-width: 0;
  padding: clamp(26px, 4vw, 58px);
  border: 1px solid var(--line-bright);
  background: rgb(10 24 34 / .93);
  box-shadow: 20px 20px 0 #04101a, 0 0 70px rgb(50 214 255 / .05);
}
.panel-head { display: flex; justify-content: space-between; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid var(--line); color: #78909c; font: 600 8px var(--mono); letter-spacing: .12em; }
.panel-head b { color: var(--green); font-weight: 600; }
.stepper { display: flex; align-items: center; margin: 36px 0; }
.stepper span { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line-bright); color: #72909f; font: 600 9px var(--mono); }
.stepper span.is-active { border-color: var(--cyan); background: var(--cyan); color: #001018; }
.stepper i { height: 1px; flex: 1; background: var(--line-bright); }
.proposal-panel h3,
.success h3 { margin: 13px 0 30px; font-size: clamp(31px, 3.2vw, 49px); letter-spacing: -.045em; }
.proposal-panel form label:not(.consent):not(.trap) { display: block; margin: 22px 0; }
.proposal-panel label > span { display: block; color: #87a0ad; font: 600 9px var(--mono); letter-spacing: .08em; }
.proposal-panel label i { color: #607b88; font-style: normal; }
.proposal-panel input,
.proposal-panel select {
  width: 100%;
  min-height: 50px;
  border: 0;
  border-bottom: 1px solid var(--line-bright);
  border-radius: 0;
  background: transparent;
  color: #fff;
  padding: 10px 0;
  font-size: 18px;
}
.proposal-panel input::placeholder { color: #536d79; }
.proposal-panel select option { background: #0b1822; color: #fff; }
.field-error { display: block; min-height: 18px; color: var(--error); font-size: 12px; }
.consent { display: grid; grid-template-columns: 20px 1fr; gap: 11px; margin: 24px 0; color: #9eb0b8; font-size: 12px; }
.consent input { width: 18px; height: 18px; margin: 2px 0; accent-color: var(--cyan); }
.consent button { border: 0; background: none; padding: 0; color: var(--cyan-soft); text-decoration: underline; cursor: pointer; }
.consent .field-error { grid-column: 2; }
.trap { position: absolute !important; left: -9999px !important; }
.form-button { width: 100%; margin-top: 12px; }
.form-actions { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.back { min-height: 44px; border: 0; background: none; padding: 8px 0; color: var(--cyan-soft); text-decoration: underline; cursor: pointer; }
.fallback { color: #78909c; font-size: 11px; }
.fallback a { color: var(--cyan-soft); }
.error-summary { margin-bottom: 18px; border: 1px solid #743b46; background: #30151c; color: #ffc4cb; padding: 12px; }
.success p { color: var(--muted); }
.success small { display: block; margin: 20px 0; color: var(--cyan-soft); }
.success .button { margin: 8px 0 18px; }
.success .back { display: block; }

.faq { display: grid; grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr); gap: clamp(50px, 10vw, 170px); background: #08131b; }
.faq-intro { position: sticky; top: calc(var(--header-h) + 40px); align-self: start; min-width: 0; }
.faq-intro h2 { font-size: clamp(39px, 4.7vw, 72px); }
.faq-intro > p { margin-top: 25px; }
.faq-list { min-width: 0; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { position: relative; display: flex; justify-content: space-between; gap: 18px; padding: 22px 46px 22px 0; cursor: pointer; font-size: 17px; font-weight: 700; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 8px; color: var(--cyan); font: 600 20px var(--mono); }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 760px; margin: -5px 0 24px; color: var(--muted); line-height: 1.7; }

.site-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr auto auto;
  align-items: start;
  gap: 35px;
  padding: 55px clamp(20px, 5vw, 82px);
  background: #03090e;
}
.site-footer > p { margin: 0; color: var(--muted); }
.site-footer > div { display: grid; gap: 8px; font-size: 12px; }
.site-footer button { min-height: 28px; border: 0; background: none; padding: 0; color: inherit; text-align: left; text-decoration: underline; cursor: pointer; }
.site-footer > small { grid-column: 1 / -1; padding-top: 20px; border-top: 1px solid var(--line); color: #6f8793; }

.cookie {
  position: fixed;
  z-index: 40;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 1060px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  margin: auto;
  padding: 16px 20px;
  border: 1px solid var(--line-bright);
  background: #0b1822;
  box-shadow: 0 22px 70px #000b;
}
.cookie p { margin: 0; color: #adbec6; }
.cookie > div { display: flex; align-items: center; gap: 9px; }
.cookie button:not(.button) { min-height: 40px; border: 0; background: none; color: inherit; text-decoration: underline; cursor: pointer; }
.cookie .cookie-accept { min-height: 40px; padding: 8px 12px; }
dialog {
  max-width: 680px;
  width: calc(100% - 32px);
  border: 1px solid var(--line-bright);
  background: #0c1923;
  color: var(--ink);
  padding: clamp(30px, 5vw, 56px);
  box-shadow: 0 30px 100px #000;
}
dialog::backdrop { background: rgb(0 6 10 / .82); backdrop-filter: blur(5px); }
.dialog-close { position: absolute; right: 14px; top: 8px; border: 0; background: none; font-size: 30px; cursor: pointer; }
dialog h2 { margin: 18px 0 25px; font-size: clamp(31px, 5vw, 48px); letter-spacing: -.04em; }
dialog p { color: #a9bbc4; line-height: 1.75; }
#cookie-dialog label { display: block; margin: 14px 0; }
#cookie-dialog .button { margin-top: 22px; }

[data-reveal].is-visible { animation: reveal-up .55s ease both; }
@keyframes reveal-up {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .site-header { grid-template-columns: 1fr auto; }
  .desktop-nav, .phone-link { display: none; }
  .header-actions { grid-column: 2; }
  .menu-button { display: inline-block; }
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: min(72vw, 760px); border-left: 0; border-top: 1px solid var(--line); }
  .hero-copy { min-height: calc(100svh - var(--header-h)); }
  .signal-strip { justify-content: flex-start; padding-inline: 20px; overflow-x: auto; }
  .operations-grid { grid-template-columns: 1fr 1fr; }
  .operation-card-wide { grid-column: 1 / -1; grid-row: auto; min-height: 560px; }
  .terms-layout { grid-template-columns: 1fr; }
  .tier-stack { grid-template-columns: repeat(3, 1fr); }
  .tier-stack article { grid-template-columns: 1fr; }
  .tier-stack b { grid-column: 1; grid-row: auto; margin-top: 20px; }
  .buyer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 820px) {
  :root { --header-h: 68px; }
  .site-header { padding-inline: 16px; }
  .header-actions .button { display: none; }
  .brand-mark { width: 34px; height: 34px; }
  .hero-copy { min-height: auto; padding-top: 74px; padding-bottom: 65px; }
  .live-status { margin-bottom: 46px; }
  .hero h1 { font-size: clamp(48px, 14vw, 83px); }
  .hero-visual { min-height: 68vw; }
  .visual-hud { top: 14px; right: 14px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; }
  .operations-grid { grid-template-columns: 1fr; }
  .operation-card-wide { grid-column: auto; min-height: 68vw; }
  .operation-card { min-height: 58vw; }
  .tier-stack { grid-template-columns: 1fr; }
  .term-table { grid-template-columns: 1fr; }
  .buyer-grid { grid-template-columns: 1fr 1fr; }
  .process, .proposal, .faq { grid-template-columns: 1fr; }
  .process-intro, .proposal-copy, .faq-intro { position: static; }
  .proposal-panel { box-shadow: 8px 8px 0 #04101a; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .site-footer > small { grid-column: 1 / -1; }
  .cookie { display: block; left: 8px; right: 8px; bottom: 8px; }
  .cookie > div { margin-top: 10px; flex-wrap: wrap; }
}

@media (max-width: 520px) {
  .brand b { font-size: 11px; }
  .brand small { font-size: 7px; }
  .hero-copy { padding-inline: 18px; }
  .hero h1 { font-size: clamp(43px, 15vw, 66px); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .hero-metrics div { padding: 13px 0; border-bottom: 1px solid var(--line); }
  .hero-visual { min-height: 82vw; }
  .hero-visual figcaption { left: 14px; right: 14px; display: grid; }
  .visual-hud { display: none; }
  .section { padding-inline: 18px; }
  .section-head h2,
  .process-intro h2,
  .proposal-copy h2,
  .faq-intro h2 { font-size: clamp(38px, 12vw, 58px); }
  .operation-card-wide,
  .operation-card { min-height: 94vw; }
  .operation-card figcaption { left: 15px; right: 15px; bottom: 15px; }
  .buyer-grid { grid-template-columns: 1fr; }
  .buyer-grid article { min-height: 220px; }
  .proposal-panel { padding: 24px 18px; }
  .form-actions { align-items: stretch; flex-direction: column; }
  .form-actions .form-button { width: 100%; }
  .site-footer { grid-template-columns: 1fr; padding-inline: 18px; }
  .site-footer > small { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; animation: none !important; }
  [data-reveal] { opacity: 1; transform: none; }
}
