/* SpoutBrush — athletic product-tech. Do not reuse on other products. */
:root {
  --bg: #0c1116;
  --ink: #e8eef3;
  --muted: #8aa0b3;
  --ice: #7ec8e3;
  --panel: #151c24;
  --sans: "DIN Alternate", "Barlow Condensed", "Arial Narrow", "Helvetica Neue", sans-serif;
  --body: "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.5;
}

a { color: inherit; }
img { max-width: 100%; display: block; }

.bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 28px;
  font-family: var(--sans);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 13px;
}
.bar a { text-decoration: none; color: var(--ice); }

.stage {
  min-height: 78vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
}
.stage-copy {
  padding: 8vh 48px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tag {
  color: var(--ice);
  font-family: var(--sans);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 12px;
  margin: 0 0 16px;
}
h1 {
  font-family: var(--sans);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.92;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 20px;
  font-weight: 700;
}
.lede { color: var(--muted); max-width: 38ch; margin: 0 0 28px; font-size: 17px; }
.stage-photo {
  background: #070b10;
}
.stage-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  filter: saturate(0.85) contrast(1.08);
}

.go {
  display: inline-block;
  background: var(--ice);
  color: #0c1116;
  text-decoration: none;
  padding: 14px 22px;
  font-family: var(--sans);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  border: 0;
  cursor: pointer;
}
.go.ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid #33404c;
  margin-left: 10px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #24303a;
}
.stat {
  padding: 22px 28px;
  border-right: 1px solid #24303a;
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.stat:last-child { border-right: 0; }
.stat b { display: block; font-size: 28px; color: var(--ice); }

.lanes {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
.lane {
  padding: 40px 28px 48px;
  border-top: 1px solid #24303a;
  border-right: 1px solid #24303a;
  background: var(--panel);
}
.lane:last-child { border-right: 0; }
.lane h3 {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin: 0 0 12px;
}
.lane p { margin: 0; color: var(--muted); }

.kit {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.kit img { width: 100%; height: 100%; object-fit: cover; min-height: 320px; }
.kit-copy { padding: 48px 40px; }
.kit-copy h2 {
  font-family: var(--sans);
  text-transform: uppercase;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.95;
  margin: 0 0 16px;
}

.join {
  padding: 56px 28px 72px;
  border-top: 1px solid #24303a;
  max-width: 560px;
}
.join form { display: grid; gap: 12px; }
.join input {
  background: #0c1116;
  border: 1px solid #33404c;
  color: var(--ink);
  padding: 14px 14px;
  font: inherit;
  border-radius: 0;
}
.join .fine { font-size: 12px; color: var(--muted); margin: 0; }
.ok { color: var(--ice); font-weight: 700; }
.err { color: #ff8a7a; font-weight: 700; }

footer {
  padding: 0 28px 48px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--sans);
}

@media (max-width: 860px) {
  .stage, .lanes, .kit, .stats { grid-template-columns: 1fr; }
  .stage-copy { padding: 40px 24px; }
  .go.ghost { margin: 12px 0 0; display: inline-block; }
  .stat, .lane { border-right: 0; border-bottom: 1px solid #24303a; }
}
