@font-face {
  font-family: "Theater";
  src: url("/brand/fonts/Theater_Bold_fixed.ttf") format("truetype");
  font-display: swap;
}

@font-face {
  font-family: "VCR";
  src: url("/brand/fonts/VCROSDMonoNova.ttf") format("truetype");
  font-display: swap;
}

:root {
  --sky: #54bcf3;
  --sky-soft: #dff4ff;
  --red: #ff4b46;
  --pink: #ff8fac;
  --green: #57bc78;
  --ink: #14141d;
  --paper: #fffdf8;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a { color: inherit; }

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  background: var(--paper);
  border-bottom: 2px solid var(--ink);
}

.topbar img { width: 150px; height: auto; }

.topbar a:last-child,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  color: white;
  background: var(--red);
  box-shadow: 4px 4px 0 var(--ink);
  font-family: "VCR", monospace;
  font-size: 12px;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .16s ease, box-shadow .16s ease;
}

.topbar a:last-child:hover,
.button:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--ink); }

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--sky);
  border-bottom: 2px solid var(--ink);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(223,244,255,.97) 0%, rgba(223,244,255,.90) 42%, rgba(223,244,255,.15) 72%),
    url("/photo/hero-hand-tiles-1900.webp") center 27% / cover;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(72px, 11vw, 140px) 0 clamp(64px, 8vw, 100px);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  font-family: "VCR", monospace;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: "Theater", Impact, sans-serif;
  font-weight: 800;
  line-height: .88;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

h1 { max-width: 860px; color: var(--red); font-size: clamp(72px, 11.5vw, 156px); }
h2 { font-size: clamp(46px, 7vw, 92px); }

.equals { display: block; color: var(--ink); }

.hero-copy {
  max-width: 650px;
  margin: 28px 0 0;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  line-height: 1.18;
}

.steps {
  padding: clamp(64px, 9vw, 120px) 18px;
  background: var(--paper);
}

.section-inner { width: min(1180px, 100%); margin: 0 auto; }

.step-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.step {
  min-height: 220px;
  padding: clamp(24px, 4vw, 42px);
  border: 2px solid var(--ink);
  box-shadow: 7px 7px 0 var(--ink);
}

.step:nth-child(4n + 1) { background: var(--sky); }
.step:nth-child(4n + 2) { background: var(--pink); }
.step:nth-child(4n + 3) { background: #fff; }
.step:nth-child(4n) { background: var(--green); }

.step-number {
  display: block;
  margin-bottom: 28px;
  font-family: "VCR", monospace;
  font-size: 13px;
}

.step p { margin: 0; font-size: clamp(20px, 2.2vw, 30px); font-weight: 750; line-height: 1.16; }

.important {
  padding: clamp(64px, 9vw, 110px) 18px;
  color: white;
  background: var(--red);
  border-block: 2px solid var(--ink);
}

.important-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: end;
  gap: 40px;
}

.important p { max-width: 580px; margin: 24px 0 0; font-size: 22px; }

.important .button { color: var(--ink); background: white; justify-self: end; }

.fineprint {
  padding: 70px 18px;
  background: var(--sky-soft);
}

.fineprint .section-inner { max-width: 880px; }
.fineprint h1 { max-width: none; font-size: clamp(56px, 8vw, 104px); }
.fineprint h2 { margin-top: 56px; font-size: clamp(32px, 4vw, 52px); }
.fineprint p, .fineprint li { font-size: 18px; }
.fineprint ol, .fineprint ul { padding-left: 22px; }
.fineprint li + li { margin-top: 10px; }
.fineprint .meta { font-family: "VCR", monospace; font-size: 12px; text-transform: uppercase; }
.fineprint .button { margin-top: 32px; }

footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 28px clamp(18px, 4vw, 56px);
  color: white;
  background: var(--ink);
  font-family: "VCR", monospace;
  font-size: 11px;
  text-transform: uppercase;
}

@media (max-width: 720px) {
  .topbar img { width: 124px; }
  .topbar a:last-child { min-height: 42px; padding: 9px 14px; font-size: 10px; }
  .hero { min-height: 680px; }
  .hero::before {
    background:
      linear-gradient(180deg, rgba(223,244,255,.10) 0%, rgba(223,244,255,.74) 46%, rgba(223,244,255,.98) 68%),
      url("/photo/hero-hand-tiles-800.webp") 58% 12% / cover;
  }
  h1 { font-size: clamp(62px, 21vw, 100px); }
  .step-grid, .important-grid { grid-template-columns: 1fr; }
  .important .button { justify-self: start; }
  footer { flex-direction: column; }
}

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