/* ==========================================================================
   Nitro Circuit — product page
   Palette, type scale and layout carried over from the design prototype
   (Nitro Circuit Product Page.dc.html).
   ========================================================================== */

:root {
  --bg: #07040F;
  --bg-deep: #0B0718;
  --bg-inset: #0A0518;
  --bg-panel: rgba(12, 7, 26, .7);

  --ink: #EDE6FF;
  --ink-soft: #C9BEE8;
  --ink-softer: #B9AEDA;
  --muted: #8F84B0;

  --pink: #FF2E88;
  --pink-soft: #FF9CC8;
  --cyan: #00E5FF;
  --cyan-soft: #8FE9FF;
  --yellow: #FFD83D;
  --orange: #FF8A1E;
  --green: #22E08A;
  --green-soft: #6BF0B8;

  --hair: rgba(255, 255, 255, .08);
  --hair-strong: rgba(255, 255, 255, .14);
  --edge: rgba(255, 255, 255, .22);

  --display: 'Bungee', cursive;
  --pixel: 'Press Start 2P', 'Courier New', monospace;
  --body: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --shell: 1180px;
  --gutter: 24px;
  --nav-offset: clamp(84px, 17vh, 150px);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-offset);
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
}

body {
  font-family: var(--body);
  color: var(--ink);
  min-height: 100vh;
}

a { color: var(--cyan); text-decoration: none; }
a:hover { color: var(--pink); }
::selection { background: var(--pink); color: #fff; }

img, svg { max-width: 100%; }

:where(a, button):focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
}

/* --- Ambient layers ------------------------------------------------------ */

.glow,
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

.glow {
  z-index: 0;
  background:
    radial-gradient(1200px 560px at 50% -10%, rgba(255, 46, 136, .22), transparent 62%),
    radial-gradient(800px 420px at 92% 18%, rgba(0, 229, 255, .12), transparent 70%);
}

.scanlines {
  z-index: 60;
  background: repeating-linear-gradient(to bottom, rgba(0, 0, 0, .18) 0 1px, transparent 1px 3px);
  mix-blend-mode: multiply;
}

.page { position: relative; z-index: 5; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--bg-deep);
  background: var(--yellow);
  padding: 14px 18px;
}
.skip-link:focus { left: 8px; top: 8px; color: var(--bg-deep); }

/* --- Keyframes ----------------------------------------------------------- */

@keyframes neonflicker {
  0%, 100% { opacity: 1 }
  92% { opacity: 1 }
  93% { opacity: .55 }
  95% { opacity: 1 }
  96% { opacity: .7 }
  97% { opacity: 1 }
}

@keyframes horizon {
  from { background-position-y: 0 }
  to { background-position-y: 64px }
}

@keyframes idle {
  0%, 100% { transform: translateY(0) }
  50% { transform: translateY(-12px) }
}

/* --- Shared primitives --------------------------------------------------- */

.shell {
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(44px, 6vw, 80px) var(--gutter);
}

.section { border-bottom: 2px solid var(--hair); }
.section--tint { background: rgba(255, 255, 255, .02); }
section[id] { scroll-margin-top: var(--nav-offset); }

.eyebrow {
  font-family: var(--pixel);
  font-size: 10px;
  letter-spacing: 2px;
  line-height: 1.9;
  color: var(--cyan);
}
.eyebrow--pink { color: var(--pink-soft); }
.eyebrow--green { color: var(--green); }
.eyebrow--ice { color: var(--cyan-soft); }
.eyebrow--yellow { color: var(--yellow); }
.eyebrow--muted { color: var(--muted); }

/* Press Start 2P has no horizontal-arrow glyphs — render those in the body face. */
.arrow { font-family: var(--body); font-weight: 600; }

.section-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(30px, 4.4vw, 52px);
  line-height: 1;
  margin: 16px 0 14px;
  color: #fff;
}

.lede {
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.35;
  color: var(--ink-softer);
  max-width: 800px;
  margin: 0 0 34px;
  text-wrap: pretty;
}

.grid-auto {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}
.grid-auto--sm { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 18px; }
.grid-auto--md { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 18px; }

/* --- Buttons ------------------------------------------------------------- */

.btn {
  display: inline-block;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(19px, 2.4vw, 24px);
  padding: 15px 30px;
  color: var(--bg-deep);
  background: linear-gradient(180deg, var(--yellow), var(--orange));
  box-shadow: 0 0 30px rgba(255, 138, 30, .45), 6px 6px 0 var(--pink);
}
.btn:hover { color: var(--bg-deep); }

.btn--lg { font-size: clamp(20px, 2.6vw, 26px); padding: 16px 34px; }
.btn--cool { background: linear-gradient(180deg, var(--green), var(--cyan)); box-shadow: 0 0 34px rgba(0, 229, 255, .4), 6px 6px 0 var(--pink); }
.btn--glow-lg { box-shadow: 0 0 34px rgba(255, 138, 30, .5), 6px 6px 0 var(--pink); }

.btn-outline {
  display: inline-block;
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--cyan-soft);
  border: 2px solid rgba(0, 229, 255, .45);
  padding: 16px 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* --- Masthead ------------------------------------------------------------ */

.masthead {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(10px);
  background: rgba(7, 4, 15, .82);
  border-bottom: 2px solid rgba(255, 46, 136, .3);
}

.masthead__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 12px var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand { display: flex; align-items: baseline; gap: 11px; }

.brand__mark {
  font-family: 'Monoton', var(--display);
  font-weight: 400;
  font-size: 24px;
  color: var(--pink);
  text-shadow: 0 0 12px rgba(255, 46, 136, .85);
  animation: neonflicker 5s infinite;
}
.brand__mark--sm { font-size: 20px; text-shadow: none; animation: none; }

.brand__domain { font-family: var(--pixel); font-size: 9px; color: var(--muted); }

.nav { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }

.nav__link {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--cyan-soft);
  padding: 9px 11px;
  border: 2px solid rgba(0, 229, 255, .3);
}
.nav__link:hover { color: #fff; border-color: var(--pink); }

.nav__cta {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--bg-deep);
  background: var(--yellow);
  padding: 11px 14px;
  box-shadow: 3px 3px 0 var(--pink);
}
.nav__cta:hover { color: var(--bg-deep); background: #fff; }

/* --- Hero ---------------------------------------------------------------- */

.hero { position: relative; overflow: hidden; border-bottom: 2px solid var(--hair); }

.hero__horizon {
  position: absolute;
  left: -20%;
  right: -20%;
  bottom: -4%;
  height: 52%;
  pointer-events: none;
  opacity: .4;
  transform: perspective(340px) rotateX(74deg);
  transform-origin: bottom;
  background-image:
    repeating-linear-gradient(to right, rgba(255, 46, 136, .55) 0 2px, transparent 2px 72px),
    repeating-linear-gradient(to bottom, rgba(0, 229, 255, .45) 0 2px, transparent 2px 64px);
  animation: horizon 1.6s linear infinite;
}

.hero__shell {
  position: relative;
  max-width: var(--shell);
  margin: 0 auto;
  padding: clamp(44px, 7vw, 90px) var(--gutter) clamp(56px, 8vw, 104px);
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  align-items: center;
}

.hero__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(42px, 7vw, 82px);
  line-height: .92;
  margin: 20px 0 18px;
  color: #fff;
  text-shadow: 4px 4px 0 var(--pink), 8px 8px 0 rgba(0, 229, 255, .32);
}

.hero__lede {
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.35;
  margin: 0 0 26px;
  color: var(--ink-soft);
  max-width: 560px;
  text-wrap: pretty;
}

.chips { display: flex; gap: 9px; flex-wrap: wrap; margin: 0 0 30px; padding: 0; list-style: none; }

.chip {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--yellow);
  border: 2px solid rgba(255, 216, 61, .4);
  background: rgba(255, 216, 61, .07);
  padding: 10px 12px;
}
.chip--green {
  color: var(--green-soft);
  border-color: rgba(34, 224, 138, .45);
  background: rgba(34, 224, 138, .08);
}

/* --- Cabinet mock -------------------------------------------------------- */

.cabinet-stage { display: flex; justify-content: center; }

.cabinet-frame {
  position: relative;
  width: min(100%, 430px);
  animation: idle 5.5s ease-in-out infinite;
}

.cabinet-frame::before {
  content: '';
  position: absolute;
  inset: -14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 46, 136, .3), transparent 64%);
  pointer-events: none;
}

.cabinet {
  position: relative;
  border: 3px solid rgba(255, 46, 136, .5);
  background: linear-gradient(180deg, rgba(21, 14, 43, .97), rgba(9, 5, 20, .99));
  box-shadow: 0 0 70px rgba(255, 46, 136, .28), inset 0 0 70px rgba(0, 0, 0, .6);
}

.cabinet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-bottom: 2px solid rgba(255, 46, 136, .3);
  background: rgba(255, 46, 136, .08);
}

.cabinet__id { display: flex; align-items: center; gap: 9px; min-width: 0; }
.cabinet__id > div { min-width: 0; }

.cabinet__chip {
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  background: center / contain no-repeat url('sprites/palm.svg');
}

.cabinet__city { font-family: var(--display); font-weight: 400; font-size: 14px; color: #fff; line-height: 1; }
.cabinet__spec { font-family: var(--pixel); font-size: 7px; color: var(--pink-soft); margin-top: 5px; }

.cabinet__tank {
  border: 2px solid rgba(255, 138, 30, .5);
  background: rgba(255, 138, 30, .1);
  padding: 5px 9px;
  text-align: right;
}
.cabinet__tank dt { font-family: var(--pixel); font-size: 6px; color: #FFB06B; margin: 0; }
.cabinet__tank dd { font-family: var(--pixel); font-size: 11px; color: #fff; margin: 5px 0 0; }

.reels {
  position: relative;
  margin: 12px;
  padding: 8px;
  background: var(--bg-inset);
  border: 1px solid rgba(255, 255, 255, .12);
  box-shadow: inset 0 0 40px rgba(0, 0, 0, .9);
}

.reels__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 5px; }

.reels__payline {
  position: absolute;
  left: 8px;
  right: 8px;
  top: 50%;
  height: 4px;
  transform: translateY(-2px);
  background: var(--yellow);
  box-shadow: 0 0 12px var(--yellow);
  opacity: .9;
}

.cell {
  position: relative;
  aspect-ratio: 1;
  background: rgba(255, 255, 255, .03) center / auto 70% no-repeat;
}
.cell--win {
  background-color: rgba(255, 216, 61, .14);
  box-shadow: inset 0 0 0 2px var(--yellow), inset 0 0 18px rgba(255, 216, 61, .35);
}

.cell[data-symbol='tire'] { background-image: url('sprites/tire.svg'); }
.cell[data-symbol='wrench'] { background-image: url('sprites/wrench.svg'); }
.cell[data-symbol='cone'] { background-image: url('sprites/cone.svg'); }
.cell[data-symbol='fuel'] { background-image: url('sprites/fuel.svg'); }
.cell[data-symbol='wild'] { background-image: url('sprites/wild.svg'); }
.cell[data-symbol='helmet'] { background-image: url('sprites/helmet.svg'); }
.cell[data-symbol='palm'] { background-image: url('sprites/palm.svg'); }
.cell[data-symbol='trophy'] { background-image: url('sprites/trophy.svg'); }

.cabinet__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0 12px 12px;
}

.readout { display: grid; gap: 6px; }
.readout dt { font-family: var(--pixel); font-size: 7px; color: var(--muted); margin: 0; }
.readout dd { font-family: var(--pixel); font-size: 13px; margin: 0; }
.readout--cyan dd { color: var(--cyan); }
.readout--yellow dd { color: var(--yellow); }

.go-button {
  position: relative;
  width: 74px;
  height: 74px;
  flex: 0 0 auto;
  border-radius: 50%;
  border: 4px solid var(--yellow);
  background: #120A24;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 26px rgba(255, 46, 136, .55);
}
.go-button::before {
  content: '';
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: conic-gradient(var(--bg-deep) 0 25%, #F2ECFF 0 50%, var(--bg-deep) 0 75%, #F2ECFF 0);
  opacity: .26;
}
.go-button::after {
  content: '';
  position: absolute;
  inset: 11px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #FF6FAE, var(--pink) 55%, #A3145A);
  box-shadow: inset 0 -6px 14px rgba(0, 0, 0, .5);
}
.go-button span {
  position: relative;
  z-index: 1;
  font-family: var(--display);
  font-weight: 400;
  font-size: 16px;
  color: #fff;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, .5);
}

/* --- The system: two parts ----------------------------------------------- */

.part {
  padding: 26px;
  border: 2px solid rgba(255, 46, 136, .4);
  background: linear-gradient(180deg, rgba(255, 46, 136, .12), rgba(12, 7, 26, .9));
}
.part--green {
  border-color: rgba(34, 224, 138, .45);
  background: linear-gradient(180deg, rgba(34, 224, 138, .1), rgba(12, 7, 26, .9));
}

.part__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(26px, 3vw, 34px);
  color: #fff;
  line-height: 1;
  margin: 12px 0;
}

.part__body { font-size: 19px; color: var(--ink-soft); line-height: 1.35; margin: 0 0 18px; text-wrap: pretty; }

.tick-list {
  display: grid;
  gap: 9px;
  font-size: 17px;
  color: var(--ink-soft);
  list-style: none;
  margin: 0;
  padding: 0;
}
.tick-list li { display: flex; gap: 11px; }
.tick-list li::before { content: '\25B8'; color: var(--pink); }
.tick-list--green li::before { color: var(--green); }

/* --- Players: steps ------------------------------------------------------ */

.steps { list-style: none; margin: 0; padding: 0; }

.step {
  border: 2px solid var(--hair-strong);
  background: var(--bg-panel);
  padding: 24px;
}
.step--accent { border-color: rgba(255, 216, 61, .45); background: rgba(255, 216, 61, .08); }

.step__num { font-family: var(--pixel); font-size: 22px; }
.step__num--pink { color: var(--pink); }
.step__num--orange { color: var(--orange); }
.step__num--cyan { color: var(--cyan); }
.step__num--yellow { color: var(--yellow); }

.step__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 23px;
  color: #fff;
  margin: 14px 0 10px;
  line-height: 1.05;
}
.step__body { font-size: 18px; color: var(--ink-softer); line-height: 1.3; margin: 0; text-wrap: pretty; }

.note-strip {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  border: 2px solid rgba(0, 229, 255, .3);
  background: rgba(0, 229, 255, .06);
  padding: 20px 24px;
}
.note-strip__icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  background: center / contain no-repeat url('sprites/fuel.svg');
}
.note-strip__text {
  flex: 1;
  min-width: 260px;
  font-size: 19px;
  color: var(--ink-soft);
  line-height: 1.3;
  text-wrap: pretty;
}

/* --- Grand Prix ---------------------------------------------------------- */

.gp-draw {
  border: 2px solid rgba(255, 46, 136, .35);
  background: linear-gradient(180deg, rgba(255, 46, 136, .09), rgba(12, 7, 26, .92));
  padding: 24px;
}

.board {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  gap: 4px;
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
}

.ball {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--pixel);
  font-size: 9px;
  border: 1px solid var(--hair-strong);
  background: rgba(255, 255, 255, .06);
  color: #9E94BE;
}
.ball--drawn {
  border-color: rgba(0, 229, 255, .6);
  background: rgba(0, 229, 255, .18);
  color: var(--cyan-soft);
}
.ball--held {
  border: 2px solid rgba(255, 216, 61, .55);
  background: rgba(255, 216, 61, .08);
  color: var(--yellow);
}
.ball--burned {
  border: 2px solid var(--pink);
  background: var(--pink);
  color: var(--bg-deep);
  box-shadow: 0 0 12px rgba(255, 46, 136, .9);
}

.gp-draw__caption { font-size: 18px; color: var(--ink-softer); line-height: 1.3; margin: 18px 0 0; text-wrap: pretty; }

.gp-controls {
  border: 2px solid rgba(34, 224, 138, .4);
  background: linear-gradient(180deg, rgba(34, 224, 138, .09), rgba(12, 7, 26, .92));
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.spec-list { display: grid; gap: 12px; margin: 0; }

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  padding-bottom: 11px;
}
.spec-row:last-child { border-bottom: 0; padding-bottom: 0; }
.spec-row dt { font-size: 19px; color: var(--ink-soft); }
.spec-row dd { font-family: var(--pixel); font-size: 11px; color: #fff; margin: 0; text-align: right; }

.gp-controls__spacer { flex: 1; }
.gp-controls__note { font-size: 17px; color: var(--muted); line-height: 1.3; }

/* --- Developers: architecture -------------------------------------------- */

.arch {
  border: 2px solid rgba(0, 229, 255, .28);
  background: rgba(10, 5, 24, .75);
  padding: clamp(18px, 3vw, 28px);
}

.arch__label { font-family: var(--pixel); font-size: 9px; color: var(--cyan); letter-spacing: 1px; margin-bottom: 22px; }

.arch__client-row { display: flex; justify-content: center; margin-bottom: 6px; }

.arch__client {
  border: 2px solid var(--edge);
  background: rgba(255, 255, 255, .05);
  padding: 13px 22px;
  text-align: center;
}
.arch__client-title { font-family: var(--pixel); font-size: 10px; color: #fff; }
.arch__client-sub { font-size: 16px; color: var(--muted); margin-top: 7px; }

.arch__arrow { text-align: center; font-family: var(--pixel); font-size: 13px; color: var(--pink); padding: 6px 0; }

.arch__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(180px, 240px) minmax(0, 1fr);
  gap: 16px;
  align-items: stretch;
}

.arch__col { display: grid; gap: 16px; }
.arch__col--wires { align-content: center; }

.container-card { border: 2px solid var(--pink); background: rgba(255, 46, 136, .12); padding: 18px; }
.container-card--green { border-color: var(--green); background: rgba(34, 224, 138, .12); }

.container-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin: 11px 0 9px;
  line-height: 1.05;
}
.container-card__body { font-size: 17px; color: var(--ink-soft); line-height: 1.3; }

.wire { border: 2px dashed rgba(255, 216, 61, .45); background: rgba(255, 216, 61, .06); padding: 16px; }
.wire--green { border-color: rgba(34, 224, 138, .5); background: rgba(34, 224, 138, .06); }
.wire__label { font-family: var(--pixel); font-size: 8px; color: var(--yellow); margin-bottom: 12px; }
.wire--green .wire__label { color: var(--green-soft); }
.wire__routes {
  display: grid;
  gap: 8px;
  font-family: var(--pixel);
  font-size: 10px;
  color: var(--ink);
  line-height: 1.7;
  list-style: none;
  margin: 0;
  padding: 0;
}
.wire__routes li { white-space: nowrap; }
.wire__note { font-size: 16px; color: var(--muted); margin-top: 11px; line-height: 1.3; }

.platform-card {
  border: 2px solid var(--edge);
  background: rgba(255, 255, 255, .05);
  padding: 18px;
  display: flex;
  flex-direction: column;
}
.platform-card__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: #fff;
  margin: 11px 0 9px;
  line-height: 1.05;
}
.platform-card__body { font-size: 17px; color: var(--ink-soft); line-height: 1.3; }
.platform-card__spacer { flex: 1; min-height: 18px; }
.platform-card__list {
  display: grid;
  gap: 7px;
  font-size: 16px;
  color: var(--muted);
  border-top: 1px solid var(--hair-strong);
  padding: 13px 0 0;
  list-style: none;
  margin: 0;
}
.platform-card__list li::before { content: '\B7\A0'; }

.deploy-targets {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  border-top: 1px solid var(--hair-strong);
  padding: 18px 0 0;
  margin: 0;
  list-style: none;
}
.deploy-targets li {
  font-family: var(--pixel);
  font-size: 9px;
  color: var(--ink-soft);
  border: 2px solid rgba(255, 255, 255, .2);
  padding: 10px 13px;
}
.deploy-targets li.is-highlighted { color: var(--bg-deep); background: var(--green); border-color: var(--green); }

/* --- Operators: typologies ----------------------------------------------- */

.typologies {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin-bottom: 24px;
  list-style: none;
  padding: 0;
}

.typology {
  border: 2px solid rgba(255, 216, 61, .4);
  background: rgba(255, 216, 61, .07);
  padding: 20px 16px;
  text-align: center;
}
.typology__stage { height: 96px; display: flex; align-items: center; justify-content: center; }
.typology__grid {
  display: grid;
  justify-content: center;
  grid-auto-rows: 14px;
  gap: 4px;
}
.typology__grid--cols-3 { grid-template-columns: repeat(3, 14px); }
.typology__grid--cols-5 { grid-template-columns: repeat(5, 14px); }
.typology__grid span { background: rgba(255, 216, 61, .6); box-shadow: 0 0 6px rgba(255, 216, 61, .5); }
.typology__label { font-family: var(--pixel); font-size: 12px; color: #fff; margin-top: 16px; }
.typology__note { font-size: 16px; color: var(--muted); margin-top: 8px; }

.claim {
  border: 2px solid var(--hair-strong);
  background: var(--bg-panel);
  padding: 22px;
}
.claim__title { font-family: var(--display); font-weight: 400; font-size: 21px; color: #fff; line-height: 1.1; }
.claim__body { font-size: 18px; color: var(--ink-softer); line-height: 1.3; margin: 11px 0 0; text-wrap: pretty; }

/* --- Closing CTA --------------------------------------------------------- */

.closing { text-align: center; padding: clamp(48px, 7vw, 92px) var(--gutter); }
.closing__title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 5.4vw, 64px);
  line-height: 1;
  margin: 18px 0 16px;
  color: #fff;
  text-shadow: 3px 3px 0 var(--pink);
}
.closing__lede {
  font-size: clamp(19px, 2.2vw, 23px);
  color: var(--ink-soft);
  max-width: 640px;
  margin: 0 auto 32px;
  line-height: 1.35;
  text-wrap: pretty;
}
.closing .cta-row { justify-content: center; }

/* --- Footer -------------------------------------------------------------- */

.site-footer__inner {
  max-width: var(--shell);
  margin: 0 auto;
  padding: 28px var(--gutter) 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.site-footer__note { font-size: 17px; color: var(--muted); }

/* --- Responsive ---------------------------------------------------------- */

@media (max-width: 1100px) {
  :root { --nav-offset: 136px; }
}

@media (max-width: 820px) {
  .arch__grid { grid-template-columns: minmax(0, 1fr); }
  .arch__col--wires { align-content: start; }
}

@media (max-width: 600px) {
  :root { --nav-offset: 178px; }
}

@media (max-width: 520px) {
  :root { --gutter: 18px; }
  .cabinet__foot { flex-wrap: wrap; }
  .board { gap: 3px; }
  .ball { font-size: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .brand__mark,
  .hero__horizon,
  .cabinet-frame { animation: none; }
}
