/* Hightop Sports — app site. Brand tokens carried from the product:
   navy #0b1020 · cream #f5f1e6 · red #d6212f (deep #a3131f) · royal #1e3a8a
   Bebas Neue (display) + Inter (body). Dark-locked, flat, no gradients
   (photo scrims excepted), hairlines = cream at 14%. */

:root {
  --navy: #0b1020;
  --surface: #131a33;
  --surface-2: #1a2240;
  --cream: #f5f1e6;
  --muted: rgba(245, 241, 230, 0.65);
  --red: #d6212f;
  --red-deep: #a3131f;
  --brand: #ee0816; /* display-size only */
  --line: rgba(245, 241, 230, 0.14);
  --font-display: "Bebas Neue", "Arial Narrow", sans-serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--cream); text-decoration-color: var(--red); text-underline-offset: 3px; }
a:hover { color: var(--red); }

.wrap { max-width: 880px; margin: 0 auto; padding: 0 24px; }

/* ---- header ---- */
.site-header {
  border-bottom: 1px solid var(--line);
  border-top: 3px solid var(--red); /* the varsity bar */
}
.site-header .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 18px; padding-bottom: 18px;
}
.site-header img { height: 40px; width: auto; display: block; }
.site-nav { display: flex; gap: 22px; }
.site-nav a {
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); text-decoration: none;
}
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--cream); }

/* ---- kicker: the bracketed mono broadcast chip ---- */
.kicker {
  display: inline-block;
  font-family: var(--font-body); font-size: 12px; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 5px 12px;
  border-radius: 4px;
  position: relative;
}
.kicker::before {
  content: ""; position: absolute; left: -1px; top: 50%;
  transform: translateY(-50%);
  width: 3px; height: 10px; background: var(--red);
}

h1, h2 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}
h1 { font-size: clamp(44px, 8vw, 76px); }
h2 { font-size: clamp(26px, 4vw, 34px); margin-bottom: 14px; }
h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; }

/* ---- hero ---- */
.hero { padding: 72px 0 56px; border-bottom: 1px solid var(--line); }
.hero .kicker { margin-bottom: 22px; }
.hero p.lede {
  max-width: 560px; margin-top: 18px;
  font-size: 19px; color: var(--muted);
}
.hero .cta-row { display: flex; gap: 14px; align-items: center; margin-top: 32px; flex-wrap: wrap; }

.badge-soon {
  display: inline-flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); background: var(--surface);
  border-radius: 6px; padding: 12px 18px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--muted);
}
.badge-soon strong {
  font-family: var(--font-display); font-size: 20px; font-weight: 400;
  letter-spacing: 0.03em; color: var(--cream);
}

/* ---- feature board ---- */
.features { padding: 56px 0; border-bottom: 1px solid var(--line); }
.board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 26px; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  border-radius: 8px;
  padding: 22px 22px 20px;
}
.card .num {
  font-family: var(--font-display); font-size: 34px; line-height: 1;
  color: var(--brand); display: block; margin-bottom: 10px;
}
.card p { font-size: 15px; color: var(--muted); line-height: 1.6; }

/* ---- prose pages (privacy / support) ---- */
.prose { padding: 56px 0 72px; }
.prose .kicker { margin-bottom: 18px; }
.prose header { margin-bottom: 34px; }
.prose .updated { font-size: 13px; color: var(--muted); letter-spacing: 0.06em; margin-top: 10px; }
.prose section { margin-bottom: 34px; }
.prose p, .prose li { color: rgba(245, 241, 230, 0.85); }
.prose p + p { margin-top: 12px; }
.prose ul { padding-left: 22px; margin-top: 10px; }
.prose li { margin-bottom: 8px; }
.prose section > h2 {
  padding-bottom: 8px; border-bottom: 1px solid var(--line);
}
.callout {
  background: var(--surface);
  border: 1px solid var(--line);
  border-left: 3px solid var(--red);
  border-radius: 6px;
  padding: 16px 20px;
  margin: 18px 0;
}
.callout p { font-size: 15px; }

/* ---- faq ---- */
.faq details {
  border: 1px solid var(--line); border-radius: 6px;
  background: var(--surface); margin-bottom: 10px;
}
.faq summary {
  cursor: pointer; padding: 14px 18px; font-weight: 600; font-size: 15.5px;
  list-style: none; position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 18px; top: 12px;
  font-family: var(--font-display); font-size: 20px; color: var(--red);
}
.faq details[open] summary::after { content: "–"; }
.faq details div { padding: 0 18px 16px; font-size: 15px; color: var(--muted); }

/* ---- footer ---- */
.site-footer { border-top: 1px solid var(--line); padding: 34px 0 44px; }
.site-footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 18px; flex-wrap: wrap; }
.site-footer nav { display: flex; gap: 20px; }
.site-footer a { font-size: 13px; color: var(--muted); text-decoration: none; }
.site-footer a:hover { color: var(--cream); }
.site-footer .fine { font-size: 13px; color: var(--muted); }
.site-footer img { height: 26px; opacity: 0.5; }

@media (max-width: 640px) {
  .board { grid-template-columns: 1fr; }
  .hero { padding: 52px 0 44px; }
  .site-header .wrap {
    flex-direction: column; align-items: flex-start; gap: 14px;
    padding-top: 16px; padding-bottom: 16px;
  }
  .site-header img { height: 34px; }
  .site-nav { gap: 16px; flex-wrap: wrap; }
  .site-footer .wrap { flex-direction: column; align-items: flex-start; }
}
