:root {
  --black: #080808;
  --ink: #141414;
  --paper: #f5f0e8;
  --white: #ffffff;
  --muted: #b9b0a4;
  --line: rgba(255, 255, 255, 0.16);
  --red: #b21322;
  --gold: #d5a843;
  --steel: #3d4752;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

body.nav-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skip-link {
  left: 1rem;
  position: absolute;
  top: -4rem;
  z-index: 30;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  background: rgba(8, 8, 8, 0.78);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 1rem clamp(1rem, 4vw, 3rem);
  position: fixed;
  right: 0;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px);
}

.brand {
  align-items: center;
  display: flex;
  gap: 0.8rem;
  min-width: 0;
}

.brand-logo {
  height: 3.8rem;
  object-fit: contain;
  width: 9rem;
}

.brand-name {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.05;
  text-transform: uppercase;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(0.8rem, 2vw, 1.6rem);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.site-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.site-nav a:hover,
.site-nav a:focus {
  color: var(--gold);
}

.menu-button {
  background: transparent;
  border: 1px solid var(--line);
  display: none;
  height: 2.75rem;
  padding: 0.65rem;
  width: 2.75rem;
}

.menu-button span {
  background: var(--white);
  display: block;
  height: 2px;
  margin: 5px 0;
}

.hero {
  min-height: 92vh;
  overflow: hidden;
  padding: 8.5rem clamp(1rem, 4vw, 3rem) 5rem;
  position: relative;
}

.hero-image,
.hero-shade {
  inset: 0;
  position: absolute;
}

.hero-image {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.98) 0%, rgba(8, 8, 8, 0.78) 42%, rgba(8, 8, 8, 0.18) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 1) 0%, rgba(8, 8, 8, 0) 34%);
}

.hero-content {
  max-width: 980px;
  position: relative;
  z-index: 2;
}

.eyebrow {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  margin: 0 0 1rem;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(4rem, 12vw, 9.5rem);
  line-height: 0.86;
  margin-bottom: 1.4rem;
  max-width: 8ch;
  text-transform: uppercase;
}

.hero-logo-title {
  margin-bottom: 1.35rem;
  max-width: min(64rem, 94vw);
}

.hero-logo-title span {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.hero-logo-title img {
  filter: drop-shadow(0 1.2rem 1.8rem rgba(0, 0, 0, 0.65));
  max-height: min(62vh, 39rem);
  object-fit: contain;
  object-position: left center;
  width: min(64rem, 94vw);
}

h2 {
  font-size: clamp(2rem, 5vw, 4.4rem);
  line-height: 0.95;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

h3 {
  font-size: 1rem;
  margin-bottom: 0.6rem;
  text-transform: uppercase;
}

.hero-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  max-width: 620px;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 900;
  justify-content: center;
  min-height: 3rem;
  padding: 0.85rem 1.15rem;
  text-transform: uppercase;
}

.button.primary {
  background: var(--red);
  color: var(--white);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.34);
  color: var(--white);
}

.button:hover,
.button:focus {
  transform: translateY(-1px);
}

.section,
.contact-section {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
}

.intro-section,
.format-section,
.contact-section {
  display: grid;
  gap: clamp(2rem, 4vw, 4rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.section-heading {
  max-width: 720px;
}

.intro-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.05rem;
}

.pillar-band {
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pillar-band article {
  min-height: 15rem;
  padding: clamp(1.2rem, 3vw, 2rem);
}

.pillar-band article + article {
  border-left: 1px solid var(--line);
}

.pillar-band span,
.timeline span {
  color: var(--gold);
  display: inline-block;
  font-weight: 900;
  margin-bottom: 1rem;
}

.pillar-band p,
.feature-grid p,
.opportunity-grid p,
.arena-copy p,
.contact-copy p,
.site-footer p {
  color: rgba(255, 255, 255, 0.68);
}

.timeline {
  display: grid;
  gap: 0.7rem;
}

.timeline div {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 1rem;
  padding: 0.95rem 0;
  text-transform: uppercase;
}

.feature-grid,
.opportunity-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.feature-grid article,
.opportunity-grid article {
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid var(--line);
  border-radius: 6px;
  min-height: 11rem;
  padding: 1.25rem;
}

.arena-section {
  background:
    linear-gradient(120deg, rgba(178, 19, 34, 0.9), rgba(8, 8, 8, 0.92)),
    var(--steel);
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.75fr);
  padding: clamp(4rem, 8vw, 6rem) clamp(1rem, 4vw, 3rem);
}

.arena-copy {
  max-width: 780px;
}

.arena-list {
  align-content: center;
  display: grid;
  gap: 0.7rem;
}

.arena-list span {
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  font-weight: 900;
  padding: 0.8rem 0;
  text-transform: uppercase;
}

.opportunities .section-heading {
  margin-bottom: 2rem;
}

.cta-band {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(4rem, 8vw, 7rem) clamp(1rem, 4vw, 3rem);
  text-align: center;
}

.cta-band h2 {
  margin-left: auto;
  margin-right: auto;
  max-width: 900px;
}

.contact-section {
  align-items: start;
}

.contact-copy a {
  color: var(--gold);
  font-weight: 900;
}

.contact-form {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form label {
  color: rgba(255, 255, 255, 0.72);
  display: grid;
  font-size: 0.75rem;
  font-weight: 900;
  gap: 0.45rem;
  text-transform: uppercase;
}

.contact-form .full,
.contact-form button {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
  border-radius: 0;
  color: var(--white);
  font: inherit;
  min-height: 3rem;
  padding: 0.8rem;
}

textarea {
  resize: vertical;
}

select option {
  color: var(--ink);
}

.site-footer {
  align-items: center;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  padding: 2rem clamp(1rem, 4vw, 3rem);
}

.site-footer strong {
  display: block;
  text-transform: uppercase;
}

.footer-logo {
  height: auto;
  margin-bottom: 0.8rem;
  object-fit: contain;
  width: min(14rem, 70vw);
}

.site-footer p {
  margin-bottom: 0;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

@media (max-width: 860px) {
  .menu-button {
    display: block;
    z-index: 22;
  }

  .site-nav {
    align-items: stretch;
    background: rgba(8, 8, 8, 0.97);
    border-left: 1px solid var(--line);
    bottom: 0;
    display: grid;
    gap: 0;
    padding: 6rem 1rem 1rem;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 180ms ease;
    width: min(22rem, 86vw);
  }

  .site-nav a {
    border-bottom: 1px solid var(--line);
    padding: 1rem;
  }

  body.nav-open .site-nav {
    transform: translateX(0);
  }

  .hero {
    min-height: 88vh;
  }

  .intro-section,
  .format-section,
  .contact-section,
  .arena-section {
    grid-template-columns: 1fr;
  }

  .pillar-band,
  .feature-grid,
  .opportunity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pillar-band article + article {
    border-left: 0;
  }

  .pillar-band article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 84vh;
    padding-top: 7rem;
  }

  h1 {
    font-size: 3.6rem;
  }

  .hero-logo-title img {
    max-height: 42vh;
    width: min(30rem, 94vw);
  }

  .pillar-band,
  .feature-grid,
  .opportunity-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }
}
