/* ==========================================================================
   THE EUV PRINTER — styles.css
   1990s printer manual + semiconductor engineering + deadpan meme.
   Mobile-first. No external fonts, no external anything.
   ========================================================================== */

:root {
  /* surfaces */
  --paper: #ece9e1;
  --paper-2: #e2ded3;
  --paper-3: #d6d1c4;
  --ink: #0d0d10;
  --ink-2: #16161b;
  --ink-3: #24242b;

  /* text */
  --text-on-paper: #15151a;
  --text-on-paper-muted: #5a5850;
  --text-on-ink: #f1eee6;
  --text-on-ink-muted: #a8a49a;

  /* accents */
  --euv: #8f3dff;
  --euv-deep: #5a1fd0;
  --euv-text-on-paper: #4f19bd;
  --orange: #f58a1f;
  --orange-deep: #c96a0c;

  /* LCD */
  --lcd-bg: #101a13;
  --lcd-bg-2: #172519;
  --lcd-fg: #52ff86;
  --lcd-dim: #2f8a4f;
  --lcd-border: #060a07;

  /* lines */
  --rule-paper: #b9b4a6;
  --rule-ink: #33333b;

  /* type */
  --font-display: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: ui-monospace, "SF Mono", Menlo, Consolas, "Liberation Mono", "DejaVu Sans Mono", monospace;

  --wrap: 1120px;
  --gutter: 20px;
  --radius: 4px;
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-display);
  font-size: 16px;
  line-height: 1.45;
  color: var(--text-on-ink);
  background: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p, dl, dd, figure { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }
a { color: inherit; }
button { font: inherit; }
[hidden] { display: none !important; }

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ---------- utilities ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 var(--gutter); }
.mono { font-family: var(--font-mono); }
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; padding: 0;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 8px; top: -60px;
  padding: 8px 12px; background: var(--orange); color: var(--ink);
  font-family: var(--font-mono); font-size: 13px; text-decoration: none; z-index: 100;
}
.skip-link:focus { top: 8px; }

.eyebrow {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--text-on-paper-muted);
  margin-bottom: 18px;
}
.eyebrow::after { content: ""; flex: 1; height: 1px; background: var(--rule-paper); }
.eyebrow--dark { color: var(--text-on-ink-muted); }
.eyebrow--dark::after { background: var(--rule-ink); }

.h2 {
  font-size: clamp(26px, 6.4vw, 44px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--text-on-paper);
  margin-bottom: 20px;
}
.h2--dark { color: var(--text-on-ink); }

.lead {
  font-size: clamp(17px, 2.6vw, 21px);
  line-height: 1.4;
  color: var(--text-on-paper);
  margin-bottom: 14px;
  max-width: 34ch;
}

/* section surfaces */
.section { padding: 56px 0; }
.section--paper { background: var(--paper); color: var(--text-on-paper); }
.section--paper + .section--paper { border-top: 1px solid var(--rule-paper); }
.section--dark { background: var(--ink); color: var(--text-on-ink); }

/* subtle technical grid on paper surfaces */
.section--paper {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.045) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.045) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: var(--paper);
}

/* ---------- buttons ---------- */
/* physical printer-panel buttons: off-white face, hard edge, LED on the primary */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 46px; padding: 10px 18px;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 3px;
  background: #f7f5ef; color: var(--ink);
  border: 2px solid var(--ink);
  box-shadow: 0 3px 0 var(--ink);
  cursor: pointer; white-space: nowrap;
  transform: translateY(0);
}
.btn:hover { background: #fffdf7; }
.btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.btn--primary::before {
  content: ""; width: 8px; height: 8px; border-radius: 50%;
  background: var(--orange); box-shadow: 0 0 6px var(--orange);
}
.btn--ghost { background: transparent; color: var(--text-on-ink); border-color: var(--text-on-ink); box-shadow: 0 3px 0 var(--rule-ink); }
.btn--ghost:hover { background: rgba(255,255,255,0.06); }
.section--paper .btn--ghost, .plate--paper .btn--ghost, .hero__plate .btn--ghost { color: var(--ink); border-color: var(--ink); box-shadow: 0 3px 0 var(--ink); }
.section--paper .btn--ghost:hover, .plate--paper .btn--ghost:hover, .hero__plate .btn--ghost:hover { background: rgba(0,0,0,0.04); }

/* ---------- LCD ---------- */
.lcd {
  font-family: var(--font-mono);
  background: linear-gradient(180deg, var(--lcd-bg-2), var(--lcd-bg));
  color: var(--lcd-fg);
  border: 2px solid var(--lcd-border);
  border-radius: 3px;
  box-shadow: inset 0 0 0 1px rgba(82,255,134,0.12), inset 0 2px 8px rgba(0,0,0,0.6);
  padding: 12px 14px;
  text-shadow: 0 0 6px rgba(82,255,134,0.45);
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
}
/* CRT scanlines */
.lcd::after, .ca__value::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,0.22) 0 1px, transparent 1px 3px);
}
.lcd--inline { display: inline-flex; align-items: center; padding: 4px 10px; font-size: 12px; letter-spacing: 0.1em; }
.lcd__line { font-size: 13px; line-height: 1.55; }
.lcd__line--big { font-size: 16px; font-weight: 700; }
.lcd__link { color: var(--lcd-fg); }
.lcd__cursor { display: inline-block; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- plate (engineering label plate) ---------- */
.plate {
  background: var(--ink-2);
  border: 1px solid var(--rule-ink);
  border-radius: 6px;
  padding: 22px 20px;
  position: relative;
}
.plate::before, .plate::after {
  /* rivets */
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--ink-3); box-shadow: inset 0 1px 0 rgba(255,255,255,0.15);
  top: 8px;
}
.plate::before { left: 8px; }
.plate::after { right: 8px; }
.plate--paper {
  background: #f6f4ee;
  border-color: var(--rule-paper);
  color: var(--text-on-paper);
}
.plate--paper::before, .plate--paper::after { background: var(--paper-3); }
.plate__label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
  color: var(--text-on-ink-muted); margin: 0 0 4px;
}
.plate--paper .plate__label { color: var(--text-on-paper-muted); }

/* ---------- topbar ---------- */
.topbar {
  background: var(--ink);
  border-bottom: 1px solid var(--rule-ink);
}
.topbar__inner {
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  height: 52px;
}
.topbar__brand {
  display: inline-flex; align-items: center; gap: 8px; min-height: 44px;
  font-family: var(--font-mono); font-size: 13px; letter-spacing: 0.1em; font-weight: 700;
  text-decoration: none;
}
.topbar__led {
  width: 8px; height: 8px; border-radius: 50%; background: var(--orange);
  box-shadow: 0 0 8px var(--orange);
  animation: led 2.4s ease-in-out infinite;
}
@keyframes led { 50% { box-shadow: 0 0 3px var(--orange); opacity: 0.75; } }
.topbar__status { margin: 0; white-space: nowrap; }
.topbar__doc {
  display: none; margin: 0;
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--text-on-ink-muted); white-space: nowrap;
}

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(60% 40% at 50% 0%, rgba(143,61,255,0.18), transparent 70%),
    var(--ink);
  padding: 0 0 36px;
}
/* technical grid, fading out toward the edges */
.hero::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(236,233,225,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(236,233,225,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  -webkit-mask-image: radial-gradient(90% 80% at 50% 40%, #000 20%, transparent 100%);
  mask-image: radial-gradient(90% 80% at 50% 40%, #000 20%, transparent 100%);
}
.hero > .wrap { position: relative; }
.hero__grid { padding-left: 0; padding-right: 0; display: grid; gap: 16px; }
.hero__figure { margin: 0; }
.hero__img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: cover;
  background: #050308;
}
.hero__figure { position: relative; }
/* EUV lighting spill beneath the poster */
.hero__figure::after {
  content: ""; position: absolute; left: 10%; right: 10%; bottom: -18px; height: 36px;
  background: radial-gradient(50% 100% at 50% 0%, rgba(143,61,255,0.45), transparent 70%);
  pointer-events: none;
}
.hero__plate {
  margin: 0 var(--gutter);
  background: var(--paper);
  border-color: var(--paper-3);
  color: var(--ink);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.6), 0 24px 60px -20px rgba(143,61,255,0.35);
}
.hero__plate::before, .hero__plate::after { background: var(--paper-3); box-shadow: inset 0 1px 1px rgba(0,0,0,0.25); }
.hero__plate .plate__label { color: var(--text-on-paper-muted); }
.hero__plate .plate__label { display: flex; align-items: center; gap: 10px; }
.hero__plate .plate__label::after { content: ""; flex: 1; height: 1px; background: var(--rule-paper); }
.hero__title {
  font-size: clamp(32px, 9.2vw, 64px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 0 0 14px;
  color: var(--ink);
}
.hero__tagline {
  font-size: clamp(18px, 4.6vw, 24px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--ink);
}
.hero__row { display: flex; gap: 28px; flex-wrap: wrap; margin-bottom: 14px; }
.hero__pair {
  font-family: var(--font-mono);
  font-size: 18px; font-weight: 700; letter-spacing: 0.02em;
  color: var(--euv-text-on-paper);
}
.hero__lcd { margin-bottom: 14px; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 10px; }
.hero__actions .btn { flex: 1 1 auto; }
.hero__actions [data-trade-link] { order: -1; }

/* ---------- prelaunch warning ---------- */
.warn {
  background: var(--orange);
  color: var(--ink);
  border-top: 4px solid var(--ink);
  border-bottom: 4px solid var(--ink);
  background-image: repeating-linear-gradient(
    -45deg,
    transparent 0 14px,
    rgba(0,0,0,0.08) 14px 28px
  );
}
.warn__inner { padding-top: 18px; padding-bottom: 18px; }
.warn__label {
  display: inline-block; margin-bottom: 10px; padding: 3px 8px;
  background: var(--ink); color: var(--orange);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; font-weight: 700;
}
.warn__title {
  font-family: var(--font-mono); font-weight: 700; font-size: 15px; letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.warn__body { font-size: 16px; line-height: 1.4; max-width: 60ch; }
.warn__body a { color: inherit; font-weight: 700; }
/* inline links: enlarge the tap area without changing the layout */
.warn__body a, .contract__warn a, .contract__meta a { padding: 13px 2px; margin: -13px -2px; }

/* ---------- about ---------- */
.about__grid { display: grid; gap: 28px; }
.stamps { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.stamp {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.1em; font-weight: 700;
  padding: 6px 10px; border: 1.5px solid var(--ink); border-radius: 0;
  color: var(--ink); background: #f7f5ef;
  box-shadow: 2px 2px 0 var(--ink);
}
.stamp--orange { border-color: var(--orange-deep); color: var(--orange-deep); box-shadow: 2px 2px 0 var(--orange-deep); }
.about__figure {
  background: #e3e2e5;
  border: 1px solid var(--rule-paper);
  border-radius: 6px;
  overflow: hidden;
}
.about__figure img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about__figure figcaption {
  font-size: 12px; letter-spacing: 0.1em; color: var(--text-on-paper-muted);
  padding: 10px 14px; border-top: 1px solid var(--rule-paper); background: var(--paper);
}

/* ---------- specs ---------- */
.spec {
  background: #f6f4ee;
  border: 1px solid var(--rule-paper);
  border-radius: 6px;
  overflow: hidden;
}
.spec__head {
  display: grid; grid-template-columns: minmax(96px, 34%) 1fr; gap: 12px;
  padding: 8px 16px; background: var(--ink); color: var(--paper);
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em;
}
.spec__row {
  display: grid;
  grid-template-columns: minmax(96px, 34%) 1fr;
  gap: 12px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--rule-paper);
  align-items: baseline;
}
.spec__row:last-child { border-bottom: 0; }
.spec__row:nth-child(even) { background: rgba(0,0,0,0.025); }
.spec dt {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em;
  color: var(--text-on-paper-muted);
}
.spec dd {
  font-weight: 800; font-size: clamp(15px, 3.8vw, 19px); letter-spacing: -0.01em;
  color: var(--text-on-paper); line-height: 1.25;
}
.spec__note { display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 12px; color: var(--text-on-paper-muted); margin-top: 12px; letter-spacing: 0.04em; }

/* ---------- lore cards ---------- */
.lore__intro { font-family: var(--font-mono); font-size: 14px; color: var(--text-on-ink-muted); margin: -8px 0 24px; letter-spacing: 0.06em; }
.cards { display: grid; gap: 16px; }

.card {
  display: flex; flex-direction: column;
  aspect-ratio: 1 / 1;
  background: var(--ink-2);
  border: 1px solid var(--rule-ink);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.card__head, .card__foot {
  display: flex; justify-content: space-between;
  font-size: 12px; letter-spacing: 0.1em;
  padding: 10px 14px;
  color: var(--text-on-ink-muted);
}
.card__head { border-bottom: 1px solid var(--rule-ink); }
.card__foot { border-top: 1px solid var(--rule-ink); }
.card__body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: 20px; position: relative; }

/* vs cards */
.card--vs .card__body { padding: 0; }
.card__half {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: 18px 20px;
  background: var(--paper);
  color: var(--text-on-paper);
}
.card__half--euv {
  background: linear-gradient(160deg, #2a1650 0%, var(--ink-2) 60%);
  color: var(--text-on-ink);
  border-top: 3px solid var(--euv);
}
.card__who {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; margin-bottom: 8px;
  color: var(--text-on-paper-muted);
}
.card__half--euv .card__who { color: #c9a9ff; }
.card__line {
  font-size: clamp(24px, 6.4vw, 38px); font-weight: 900; line-height: 1; letter-spacing: -0.02em;
  text-transform: uppercase;
}

/* statement cards */
.card__big {
  font-size: clamp(40px, 13vw, 76px); font-weight: 900; line-height: 0.92; letter-spacing: -0.035em;
  text-transform: uppercase; position: relative; z-index: 1;
}
.card__sub {
  margin-top: 16px; font-family: var(--font-mono); font-size: clamp(12px, 3.2vw, 16px);
  letter-spacing: 0.1em; position: relative; z-index: 1;
}
.card--img .card__big { color: var(--text-on-ink); }
.card--img .card__sub { color: var(--lcd-fg); text-shadow: 0 0 8px rgba(82,255,134,0.45); }
.card__img {
  position: absolute; right: 0; bottom: 0; width: 58%; height: auto;
  transform: translate(6%, 4%);
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to left, #000 55%, transparent 100%);
  mask-image: linear-gradient(to left, #000 55%, transparent 100%);
}
.card--img .card__body {
  justify-content: flex-start;
  overflow: hidden;
  background: radial-gradient(70% 60% at 80% 90%, rgba(143,61,255,0.28), transparent 70%), var(--ink);
}
.card--img .card__big { text-shadow: 0 2px 18px rgba(0,0,0,0.85); }
.card--img .card__sub { max-width: 60%; }
.card--paper { background: var(--paper); border-color: var(--rule-paper); }
.card--paper .card__head, .card--paper .card__foot { color: var(--text-on-paper-muted); border-color: var(--rule-paper); }
.card--paper .card__big { color: var(--text-on-paper); }
.card--paper .card__sub { color: var(--euv-text-on-paper); }
.card--paper .card__body {
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.05) 1px, transparent 1px);
  background-size: 24px 24px;
}

/* ---------- contract ---------- */
.contract__title { margin-bottom: 16px; }
.contract__panel-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.14em; color: var(--text-on-paper-muted);
  display: flex; align-items: center; gap: 10px; margin-bottom: 6px;
}
.contract__panel-label::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--orange); box-shadow: 0 0 6px var(--orange); }
.contract__lcd { margin-bottom: 18px; }
.contract__warn { font-size: 16px; line-height: 1.45; font-weight: 600; max-width: 60ch; margin-bottom: 14px; }
.contract__warn a { color: var(--euv-text-on-paper); }
.contract__meta { font-size: 12px; letter-spacing: 0.08em; color: var(--text-on-paper-muted); line-height: 1.7; }
.contract__meta a { color: var(--euv-text-on-paper); }
.contract__meta-item { display: block; }
.contract__actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 14px; }
.ca { display: grid; gap: 10px; margin: 6px 0 8px; }
.ca__value {
  display: block; position: relative; overflow: hidden;
  font-family: var(--font-mono); font-size: 14px; line-height: 1.5;
  word-break: break-all; overflow-wrap: anywhere;
  background: var(--lcd-bg); color: var(--lcd-fg);
  border: 2px solid var(--lcd-border); border-radius: 3px;
  padding: 12px 14px;
  text-shadow: 0 0 6px rgba(82,255,134,0.45);
}
.ca__feedback { min-height: 18px; font-size: 12px; letter-spacing: 0.1em; color: var(--text-on-paper-muted); }

/* ---------- disclaimer ---------- */
.disclaimer { padding-top: 40px; padding-bottom: 40px; }
.disclaimer__text { font-size: 13px; line-height: 1.7; color: var(--text-on-paper-muted); max-width: 72ch; }
.disclaimer__text p + p { margin-top: 8px; }

/* ---------- footer ---------- */
.footer { background: var(--ink); border-top: 1px solid var(--rule-ink); padding: 32px 0 calc(32px + env(safe-area-inset-bottom)); }
.footer__inner { display: grid; gap: 14px; }
.footer__brand { font-weight: 900; letter-spacing: -0.01em; font-size: 18px; text-transform: uppercase; }
.footer__links { display: flex; gap: 24px; font-family: var(--font-mono); font-size: 14px; }
.footer__links a { display: inline-flex; align-items: center; min-height: 44px; color: var(--text-on-ink-muted); text-decoration: none; }
.footer__links a:hover { color: var(--text-on-ink); text-decoration: underline; }
.footer__lcd { justify-self: start; }
.footer__doc { grid-column: 1 / -1; font-family: var(--font-mono); font-size: 12px; letter-spacing: 0.12em; color: var(--text-on-ink-muted); padding-top: 14px; border-top: 1px solid var(--rule-ink); }

/* ==========================================================================
   Depth effects. Only when script.js adds html.fx (desktop, fine pointer,
   no reduced-motion). Everything below is inert on mobile.
   ========================================================================== */
.fx .hero__figure { transform-style: preserve-3d; will-change: transform; }
.fx .hero__plate { will-change: transform; }
.fx .hero__img { transition: box-shadow 400ms ease; }

.fx .reveal {
  opacity: 0; transform: translateY(16px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
.fx .reveal.is-in { opacity: 1; transform: none; }
.fx .card.reveal:nth-child(2) { transition-delay: 80ms; }
.fx .card.reveal:nth-child(3) { transition-delay: 160ms; }
.fx .card.reveal:nth-child(4) { transition-delay: 240ms; }

.fx .card { transition: transform 320ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 320ms ease, opacity 700ms ease; }
.fx .card.is-in:hover {
  transform: perspective(1000px) rotateX(1.5deg) translateY(-5px);
  box-shadow: 0 24px 48px -24px rgba(0,0,0,0.8), 0 0 60px -20px rgba(143,61,255,0.4);
}
.fx .btn { transition: transform 120ms ease, box-shadow 120ms ease, background-color 120ms ease; }
.fx .btn:hover { transform: translateY(-1px); box-shadow: 0 4px 0 var(--ink); }
.fx .btn:active { transform: translateY(2px); box-shadow: 0 1px 0 var(--ink); }
.fx .about__figure { transition: transform 400ms cubic-bezier(0.2, 0.7, 0.2, 1), box-shadow 400ms ease; }
.fx .about__figure:hover { transform: translateY(-4px); box-shadow: 0 30px 50px -30px rgba(0,0,0,0.35), 0 0 80px -30px rgba(143,61,255,0.35); }

/* ==========================================================================
   Tablet and up
   ========================================================================== */
@media (min-width: 640px) {
  :root { --gutter: 28px; }
  .section { padding: 72px 0; }
  .hero { padding-bottom: 48px; }
  .hero__grid { padding-left: var(--gutter); padding-right: var(--gutter); padding-top: 28px; }
  .hero__img {
    border-radius: 8px; border: 1px solid var(--rule-ink);
    box-shadow: 0 0 0 1px rgba(236,233,225,0.06), 0 40px 80px -40px rgba(0,0,0,0.9), 0 0 120px -30px rgba(143,61,255,0.35);
  }
  .hero__plate { margin: 0; }
  .hero__actions .btn { flex: 0 1 auto; }
  .cards { grid-template-columns: 1fr 1fr; }
  .ca { grid-template-columns: 1fr auto; align-items: stretch; }
  .topbar__doc { display: block; }
  .contract__meta-item { display: inline; }
  .contract__meta-item + .contract__meta-item::before { content: "\00a0\00b7\00a0"; }
  .footer__inner { grid-template-columns: 1fr auto; align-items: center; }
  .footer__lcd { grid-column: 1 / -1; }
}

/* ==========================================================================
   Desktop
   ========================================================================== */
@media (min-width: 960px) {
  .hero { padding-bottom: 72px; }
  .hero__grid {
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: 40px;
    align-items: center;
    padding-top: 48px;
  }
  .hero__figure { order: 2; }
  .hero__plate { order: 1; padding: 30px 28px; }
  .hero__title { font-size: clamp(48px, 4.7vw, 68px); }
  .about__grid { grid-template-columns: 1.1fr 1fr; align-items: center; gap: 48px; }
  .spec__row { grid-template-columns: 240px 1fr; padding: 16px 24px; }
  .spec__head { grid-template-columns: 240px 1fr; padding: 10px 24px; }
  .card__line { font-size: 34px; }
  .card__big { font-size: 68px; }
  .footer__inner { grid-template-columns: auto 1fr auto; }
  .footer__lcd { grid-column: auto; justify-self: end; }
  .footer__doc { grid-column: 1 / -1; }
}
