:root {
  --bg: #0a0a0a;
  --ink: #f4f4f4;
  --muted: #8a8a8a;
  --line: #1c1c1c;
  --accent: #d8d8d8;
  --red: #c0392b;
  --maxw: 1180px;
  --pad: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-feature-settings: "ss01", "cv11";
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow-x: hidden;
}

/* Subtle film-grain overlay */
.grain {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
}

/* Topbar */
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px var(--pad);
  border-bottom: 1px solid var(--line);
  gap: 16px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand img { display: block; filter: invert(1); }
.brand-text {
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 13px;
  text-transform: uppercase;
}
.brand-text em {
  font-style: normal;
  color: var(--muted);
  font-weight: 600;
}
.brand-text .x {
  color: var(--red);
  margin: 0 0.15em;
}

.navlinks { display: flex; gap: 22px; }
.navlinks a {
  color: var(--muted);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: color 0.18s ease;
}
.navlinks a:hover { color: var(--ink); }

/* Hero */
.hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(56px, 9vw, 120px) var(--pad);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 50% at 50% 10%, rgba(255, 255, 255, 0.04), transparent 70%),
    repeating-linear-gradient(90deg, transparent 0 119px, rgba(255, 255, 255, 0.02) 119px 120px);
  pointer-events: none;
}
.hero-inner {
  max-width: var(--maxw);
  width: 100%;
  position: relative;
}

.kicker {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
}

.title {
  margin: 0;
  font-family: "Times New Roman", "Times", Georgia, serif;
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: -0.025em;
  font-size: clamp(64px, 14vw, 200px);
  text-transform: uppercase;
  display: grid;
  grid-template-columns: auto auto auto;
  align-items: end;
  gap: 0 clamp(12px, 2vw, 28px);
}
.title .line {
  -webkit-text-stroke: 1px var(--ink);
  color: transparent;
}
.title .baseball {
  grid-column: 1 / -1;
  color: var(--ink);
  -webkit-text-stroke: 0;
  font-size: clamp(80px, 18vw, 260px);
  letter-spacing: -0.035em;
  line-height: 0.82;
  margin-top: clamp(4px, 1vw, 14px);
  position: relative;
}
.title .baseball::after {
  content: "";
  display: block;
  height: 6px;
  background: var(--red);
  width: clamp(80px, 14vw, 200px);
  margin-top: clamp(10px, 1.5vw, 22px);
}
.title .amp {
  font-family: ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(56px, 11vw, 160px);
  font-weight: 300;
  color: var(--red);
  align-self: center;
  line-height: 1;
}

.lede {
  margin: clamp(28px, 4vw, 44px) 0 0;
  max-width: 60ch;
  font-size: clamp(15px, 1.4vw, 18px);
  line-height: 1.55;
  color: #c8c8c8;
}
.lede .x-inline { color: var(--red); }

.cta-row {
  margin: 28px 0 0;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 12px;
  letter-spacing: 0.24em;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--ink);
  border-radius: 0;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease;
  min-height: 44px;
}
.btn.primary { background: var(--ink); color: var(--bg); }
.btn.primary:hover { background: var(--red); border-color: var(--red); color: var(--ink); }
.btn.ghost { background: transparent; color: var(--ink); }
.btn.ghost:hover { background: var(--ink); color: var(--bg); }

.meta {
  list-style: none;
  margin: clamp(40px, 6vw, 64px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-top: 1px solid var(--line);
}
.meta li {
  border-right: 1px solid var(--line);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.meta li:last-child { border-right: 0; }
.meta li span {
  font-size: 10px;
  letter-spacing: 0.28em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 700;
}
.meta li b {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .title { grid-template-columns: 1fr; }
  .title .amp { display: none; }
  .title .baseball::after { margin-top: 14px; }
  .meta { grid-template-columns: 1fr; }
  .meta li { border-right: 0; border-bottom: 1px solid var(--line); }
  .meta li:last-child { border-bottom: 0; }
  .navlinks { display: none; }
}

/* Footer */
.foot {
  padding: 22px var(--pad);
  border-top: 1px solid var(--line);
  display: flex;
  gap: 10px;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.foot .dot { opacity: 0.5; }

/* Page entrance */
@keyframes rise {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}
.kicker { animation: rise 0.7s cubic-bezier(.2,.7,.2,1) both; }
.title  { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) 0.05s both; }
.lede   { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) 0.18s both; }
.cta-row{ animation: rise 0.9s cubic-bezier(.2,.7,.2,1) 0.26s both; }
.meta   { animation: rise 0.9s cubic-bezier(.2,.7,.2,1) 0.34s both; }

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