@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@400;500;600;700;800&family=IBM+Plex+Mono:wght@500;600&display=swap');

:root {
  --ink: #15171c;
  --paper: #f6f4ef;
  --crimson: #a81f35;
  --crimson-dim: #7d1727;
  --brass: #c9a227;
  --brass-light: #e8cd7a;
  --slate: #565a63;
  --slate-light: #9a9ea6;
  --line: rgba(21, 23, 28, 0.12);
  --line-light: rgba(246, 244, 239, 0.18);

  --display: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --body: 'Inter', -apple-system, sans-serif;
  --mono: 'IBM Plex Mono', 'SF Mono', monospace;

  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

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

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 32px;
}

/* ---------- Utility type styles ---------- */

.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass);
}

h1, h2, h3 {
  font-family: var(--display);
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 0.98;
}

/* ---------- Header / nav ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(21, 23, 28, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-light);
}

.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 22px;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand .brand-mark {
  width: 10px;
  height: 10px;
  background: var(--crimson);
  border-radius: 2px;
  transform: rotate(45deg);
  flex: none;
}

.site-header nav {
  display: flex;
  gap: 28px;
}

.site-header nav a {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-light);
  text-decoration: none;
  transition: color 0.15s ease;
}

.site-header nav a:hover,
.site-header nav a:focus-visible { color: #fff; }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 4px;
  width: 38px;
  height: 34px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex: none;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: '';
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  position: relative;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.site-header.nav-open .nav-toggle span { background: transparent; }
.site-header.nav-open .nav-toggle span::before { transform: translateY(6px) rotate(45deg); }
.site-header.nav-open .nav-toggle span::after { transform: translateY(-6px) rotate(-45deg); }

.header-cta {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink) !important;
  background: var(--brass);
  padding: 9px 16px;
  border-radius: 3px;
  text-decoration: none;
  white-space: nowrap;
}

.header-cta:hover { background: var(--brass-light); }

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

.hero {
  position: relative;
  background: var(--ink);
  color: #fff;
  overflow: hidden;
  padding: 96px 0 88px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(90deg, transparent 0, transparent 78px, rgba(255,255,255,0.055) 78px, rgba(255,255,255,0.055) 80px),
    repeating-linear-gradient(0deg, transparent 0, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 41px);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 220px;
  background: radial-gradient(60% 100% at 50% 100%, rgba(168,31,53,0.35), transparent 70%);
  pointer-events: none;
}

.hero .wrap { position: relative; z-index: 2; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.hero-eyebrow .rule { width: 28px; height: 2px; background: var(--brass); }

.hero h1 {
  font-size: clamp(48px, 8vw, 104px);
  max-width: 15ch;
}

.hero h1 .accent { color: var(--brass); }

.hero-sub {
  font-family: var(--body);
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.72);
  max-width: 48ch;
  margin-top: 34px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.btn {
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 15px 26px;
  border-radius: 3px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid transparent;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.btn-primary { background: var(--crimson); color: #fff; }
.btn-primary:hover { background: #c22540; transform: translateY(-1px); }

.btn-ghost { border-color: rgba(255,255,255,0.28); color: #fff; }
.btn-ghost:hover { border-color: #fff; }

.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.14);
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.stat {
  background: var(--ink);
  padding: 26px 10px 4px;
}

.stat .num {
  font-family: var(--display);
  font-size: clamp(26px, 3.2vw, 38px);
  color: var(--brass-light);
}

.stat .label {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--slate-light);
  margin-top: 6px;
  line-height: 1.4;
}

/* ---------- Section shared ---------- */

section { padding: 96px 0; }

.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-top: 14px;
}

.section-head p {
  font-family: var(--body);
  font-size: 17px;
  color: var(--slate);
  line-height: 1.65;
  margin-top: 18px;
}

/* ---------- Media & promotional partners ---------- */

.media-card {
  background: #fff;
  border-left: 4px solid var(--brass);
  border-radius: 8px;
  padding: 28px 32px;
  max-width: 760px;
  margin-top: 56px;
  box-shadow: 0 16px 40px -16px rgba(0,0,0,0.5);
}

.media-card .eyebrow { color: var(--crimson); }

.media-card h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-top: 8px;
  color: var(--ink);
}

.media-card p {
  font-family: var(--body);
  font-size: 15px;
  color: var(--slate);
  line-height: 1.6;
  margin-top: 12px;
  max-width: 62ch;
}

.media-card .btn {
  margin-top: 20px;
  gap: 8px;
}

/* ---------- Why sponsor ---------- */

.why-section {
  background: var(--paper);
  color: var(--ink);
  position: relative;
}

.why-section .eyebrow { color: var(--crimson); }
.why-section .section-head h2 { color: var(--ink); }

.why-lead {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.55;
  margin-top: 18px;
  border-left: 3px solid var(--crimson);
  padding-left: 20px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.why-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 28px 26px;
  box-shadow: 0 2px 10px rgba(21,23,28,0.04);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.why-item:hover {
  transform: translateY(-4px);
  border-color: var(--crimson);
  box-shadow: 0 12px 28px rgba(21,23,28,0.1);
}

.why-item .mark {
  font-family: var(--display);
  font-size: 30px;
  color: var(--crimson);
  letter-spacing: 0.03em;
}

.why-item h3 {
  font-family: var(--body);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--ink);
  margin-top: 12px;
}

.why-item p {
  font-family: var(--body);
  font-size: 15.5px;
  color: var(--slate);
  line-height: 1.6;
  margin-top: 10px;
}

/* ---------- Tier field (signature element) ---------- */

.field-section {
  background: var(--ink);
  color: #fff;
  position: relative;
}

.field-section .section-head p { color: rgba(255,255,255,0.65); }
.field-section .section-head .eyebrow { color: var(--brass-light); }
.field-section .section-head h2 { color: #fff; }

.yard-rail {
  position: relative;
  height: 3px;
  background: rgba(255,255,255,0.16);
  margin: 0 0 0;
  border-radius: 2px;
}

.yard-rail::before,
.yard-rail::after { content: none; }

.tier-track {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.tier-card {
  position: relative;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px;
  padding: 30px 22px 26px;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--tier-color, var(--brass));
}

.tier-card:hover {
  transform: translateY(-8px);
  border-color: var(--tier-color, var(--brass));
  background: rgba(255,255,255,0.07);
  box-shadow: 0 16px 40px -12px rgba(0,0,0,0.55);
}

.tier-cta {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--tier-color, var(--brass));
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 6px;
  transition: filter 0.15s ease, transform 0.15s ease;
}

.tier-card:hover .tier-cta { filter: brightness(1.1); transform: translateY(-1px); }

.tier-yard {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--slate-light);
}

.tier-name {
  display: inline-block;
  font-family: var(--display);
  font-size: 26px;
  color: var(--tier-color, var(--brass));
  background: color-mix(in srgb, var(--tier-color, var(--brass)) 16%, transparent);
  border: 1px solid var(--tier-color, var(--brass));
  border-radius: 999px;
  padding: 4px 18px;
  margin-top: 12px;
  letter-spacing: 0.03em;
}

.tier-price {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  margin-top: 10px;
}

.tier-price span {
  font-size: 13px;
  color: var(--slate-light);
  font-weight: 500;
  margin-left: 4px;
}

.tier-list {
  list-style: none;
  margin: 22px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.tier-list li {
  font-family: var(--body);
  font-size: 13.5px;
  line-height: 1.45;
  color: rgba(255,255,255,0.82);
  padding-left: 16px;
  position: relative;
}

.tier-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  background: var(--tier-color, var(--brass));
  border-radius: 1px;
}

.tier-card[data-tier="bronze"] { --tier-color: #cf9f5f; background: rgba(207, 159, 95, 0.06); }
.tier-card[data-tier="silver"] { --tier-color: #d7dce6; background: rgba(215, 220, 230, 0.06); }
.tier-card[data-tier="gold"] { --tier-color: var(--brass); background: rgba(201, 162, 39, 0.08); }
.tier-card[data-tier="platinum"] {
  --tier-color: var(--brass-light);
  background: rgba(232, 205, 122, 0.1);
  border-color: rgba(232, 205, 122, 0.4);
}

.tier-foot-note {
  margin-top: 34px;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--slate-light);
  display: flex;
  align-items: center;
  gap: 10px;
}

.tier-foot-note .dot {
  width: 6px; height: 6px; background: var(--crimson); border-radius: 50%;
  flex: none;
}

/* ---------- Championship callout ---------- */

.callout {
  background: var(--crimson);
  color: #fff;
  border-radius: 10px;
  padding: 52px 48px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.callout h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.02;
}

.callout p {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.88);
  margin-top: 18px;
  max-width: 46ch;
}

.callout-stats {
  display: grid;
  gap: 18px;
}

.callout-stat {
  background: rgba(0,0,0,0.14);
  border-radius: 6px;
  padding: 18px 20px;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.callout-stat .k {
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.callout-stat .v {
  font-family: var(--display);
  font-size: 26px;
  color: var(--brass-light);
}

.btn-championship {
  background: var(--brass-light);
  color: var(--ink);
  font-size: 15px;
  padding: 18px 32px;
  margin-top: 30px;
  border-radius: 6px;
  box-shadow: 0 12px 30px -8px rgba(0,0,0,0.45);
}

.btn-championship:hover {
  background: #fff;
  transform: translateY(-2px);
}

/* ---------- Contact ---------- */

.contact {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 56px;
  align-items: start;
}

.contact-card {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 40px;
}

.contact-card .eyebrow { color: var(--brass-light); margin-bottom: 16px; display: block; }

.contact-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  font-family: var(--body);
}

.contact-row:last-child { border-bottom: none; }

.contact-row .k { font-size: 13px; color: var(--slate-light); }
.contact-row .v { font-size: 16px; font-weight: 600; }
.contact-row .v a { text-decoration: none; color: var(--brass-light); }

.pay-card {
  background: var(--ink);
  color: #fff;
  border-radius: 10px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pay-card h3 {
  font-family: var(--display);
  font-size: 26px;
  color: #fff;
  margin-top: 14px;
  letter-spacing: 0.02em;
}

.pay-card p {
  font-family: var(--body);
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
  margin-top: 10px;
}

.pay-card-btn { margin-top: 22px; }

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

footer {
  border-top: 1px solid var(--line);
  padding: 36px 0;
}

footer .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

footer .foot-left {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--slate);
  letter-spacing: 0.03em;
}

footer .foot-tag {
  font-family: var(--display);
  font-size: 16px;
  color: var(--ink);
  letter-spacing: 0.03em;
}

/* ---------- Scroll reveal ---------- */

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 16px; }
  .tier-track { grid-template-columns: repeat(2, 1fr); }
  .callout { grid-template-columns: 1fr; padding: 36px 26px; }
  .contact { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 1px; }
  .site-header .wrap { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .site-header nav {
    display: none;
    flex-direction: column;
    gap: 0;
    width: 100%;
    order: 3;
    background: #0e0f13;
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 8px;
    margin-top: 14px;
    padding: 6px 14px;
  }
  .site-header.nav-open nav { display: flex; }
  .site-header nav a {
    padding: 14px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 13.5px;
    color: #fff;
  }
  .site-header nav a:last-child { border-bottom: none; }
}

@media (max-width: 560px) {
  .tier-track { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 64px; }
  section { padding: 68px 0; }
  .wrap { padding: 0 20px; }
  .media-card { padding: 22px 20px; margin-top: 40px; }
}

/* Focus visibility */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--brass);
  outline-offset: 2px;
}
