:root {
  --navy: #0D1B2A;
  --gold: #D4A017;
  --red: #D62828;
  --cream: #FBF8F3;
  --warm-gray: #6B6560;
  --light-gray: #EDE9E3;
  --white: #FFFFFF;

  --font-display: 'Archivo', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

/* ── Navigation ── */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.5rem 2.5rem;
  background: rgba(251, 248, 243, 0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 7rem 2.5rem 4rem;
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}
.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(3.5rem, 7vw, 6rem);
  line-height: 0.92;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin-bottom: 2rem;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--warm-gray);
  max-width: 420px;
  line-height: 1.7;
}
.hero-cta {
  display: inline-block;
  margin-top: 2.5rem;
  padding: 0.85rem 2rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  border: 2px solid var(--red);
  transition: background 0.2s, color 0.2s;
}
.hero-cta:hover {
  background: var(--navy);
  border-color: var(--navy);
}
.hero-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-logo {
  max-width: 420px;
  width: 100%;
  height: auto;
  display: block;
  /* Subtle shadow so logo pops off cream background */
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.25));
}

/* Hero Visual — diamond grid + coqui rings */
.hero-visual {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.diamond-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  transform: rotate(15deg);
}
.dg {
  width: 80px;
  height: 80px;
  background: var(--navy);
  transform: rotate(45deg);
}
.dg:nth-child(2) { background: var(--gold); }
.dg:nth-child(4) { background: var(--gold); }
.dg:nth-child(7) { background: var(--gold); }
.dg:nth-child(9) { background: var(--navy); }
.dg:nth-child(odd) { opacity: 0.15; }

.coqui-ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(212, 160, 23, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}
.coqui-ring:nth-child(2) { width: 320px; height: 320px; }
.coqui-ring:nth-child(3) { width: 480px; height: 480px; border-color: rgba(13, 27, 42, 0.08); }
.coqui-ring:nth-child(4) { width: 650px; height: 650px; border-color: rgba(212, 160, 23, 0.1); }
.coqui {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
}
.coqui:nth-child(1) { transform: translate(0, -140px); }
.coqui:nth-child(2) { transform: translate(100px, 70px); }
.coqui:nth-child(3) { transform: translate(-100px, 70px); }
.coqui:nth-child(4) { transform: translate(0, 20px); width: 8px; height: 8px; }

/* ── Manifesto ── */
.manifesto {
  padding: 6rem 2.5rem;
  background: var(--navy);
  color: var(--cream);
}
.manifesto-inner {
  max-width: 760px;
  margin: 0 auto;
}
.manifesto-quote {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 3rem;
  border-left: 4px solid var(--gold);
  padding-left: 2rem;
}
.manifesto-body {
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(251, 248, 243, 0.75);
  margin-bottom: 1.5rem;
}
.manifesto-body em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

/* ── Tournament Proof ── */
.tournament-proof {
  padding: 6rem 2.5rem;
  background: var(--cream);
}
.tp-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.section-label {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  letter-spacing: -0.02em;
  color: var(--navy);
  line-height: 1.1;
  margin-bottom: 4rem;
}
.tp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.tp-card {
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 12px;
  padding: 2.5rem 2rem;
  background: var(--white);
}
.tp-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  letter-spacing: -0.04em;
  color: var(--navy);
  margin-bottom: 0.75rem;
}
.tp-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}
.tp-footnote {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: var(--warm-gray);
  font-style: italic;
}

/* ── Playbook ── */
.playbook {
  padding: 6rem 2.5rem;
  background: var(--light-gray);
}
.playbook-inner {
  max-width: 760px;
  margin: 0 auto;
}
.playbook-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.pl-item {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 1.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(13, 27, 42, 0.1);
  align-items: start;
}
.pl-item:first-child { border-top: 1px solid rgba(13, 27, 42, 0.1); }
.pl-marker {
  width: 12px;
  height: 12px;
  background: var(--gold);
  border-radius: 2px;
  transform: rotate(45deg);
  margin-top: 0.4rem;
  flex-shrink: 0;
}
.pl-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.4rem;
}
.pl-desc {
  font-size: 0.95rem;
  color: var(--warm-gray);
  line-height: 1.6;
}

/* ── Closing ── */
.closing {
  padding: 8rem 2.5rem;
  background: var(--navy);
  text-align: center;
}
.closing-inner {
  max-width: 700px;
  margin: 0 auto;
}
.closing-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--cream);
  margin-bottom: 2rem;
}
.closing-sub {
  font-size: 1.1rem;
  color: rgba(251, 248, 243, 0.65);
  line-height: 1.75;
}

/* ── Footer ── */
.site-footer {
  padding: 3rem 2.5rem;
  background: #070f18;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(251, 248, 243, 0.45);
}
.footer-copy {
  font-size: 0.75rem;
  color: rgba(251, 248, 243, 0.25);
  margin-top: 1rem;
}

/* ── Mobile ── */
@media (max-width: 768px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-visual {
    height: 280px;
    order: -1;
  }
  .dg { width: 50px; height: 50px; }
  .coqui-ring:nth-child(2) { width: 200px; height: 200px; }
  .coqui-ring:nth-child(3) { width: 300px; height: 300px; }
  .coqui-ring:nth-child(4) { width: 400px; height: 400px; }
  .tp-grid { grid-template-columns: 1fr; gap: 1rem; }
  .hero { padding-top: 6rem; }
  .site-nav { padding: 1rem 1.5rem; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 3rem; }
  .closing-headline { font-size: 2rem; }
  .manifesto-quote { font-size: 1.5rem; }
}