:root {
  --black: #050505;
  --near-black: #0b0909;
  --charcoal: #171313;
  --maroon: #970b12;
  --maroon-dark: #6f070d;
  --gold: #f7b21a;
  --gold-soft: #ffd278;
  --cream: #fff8ea;
  --text: #fff7ed;
  --muted: #cbbfba;
  --line: rgba(255, 248, 234, 0.16);
  --panel: rgba(255, 248, 234, 0.06);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 22px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--black);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(5, 5, 5, 0.9);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand img {
  width: 255px;
  max-height: 76px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.92rem;
}

.nav-links a:hover {
  color: var(--gold-soft);
}

.nav-cta {
  color: #170900 !important;
  background: var(--gold);
  padding: 9px 15px;
  border-radius: 999px;
}

.hero {
  position: relative;
  min-height: 740px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.34;
}

.hero:before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 22%, rgba(247, 178, 26, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.68), rgba(5, 5, 5, 0.92)),
    linear-gradient(0deg, #050505 0%, transparent 34%);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 56px;
  align-items: center;
  padding: 96px 0;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  font-family: "Roboto Slab", Georgia, serif;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 7vw, 5.35rem);
  max-width: 900px;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.35rem);
}

h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
}

.hero-copy {
  margin: 26px 0 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.27rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 160ms ease, background 160ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--gold);
  color: #170900;
}

.button.secondary {
  border: 1px solid rgba(255, 248, 234, 0.28);
  color: var(--cream);
  background: rgba(255, 255, 255, 0.05);
}

.hero-card {
  padding: 30px;
  border: 1px solid rgba(247, 178, 26, 0.28);
  border-radius: var(--radius);
  background: rgba(10, 8, 8, 0.82);
  box-shadow: var(--shadow);
  display: grid;
  gap: 18px;
}

.hero-card div {
  padding-left: 18px;
  border-left: 4px solid var(--gold);
}

.hero-card strong {
  display: block;
  color: var(--cream);
  font-size: 1.06rem;
  margin-bottom: 4px;
}

.hero-card span {
  color: var(--muted);
}

.section {
  padding: 92px 0;
}

.trust-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(151, 11, 18, 0.22), transparent 30%),
    #0a0a0a;
  text-align: center;
}

.trust-section h2 {
  max-width: 880px;
  margin: 0 auto;
}

.event-list {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.event-list span {
  padding: 12px 16px;
  border-radius: 999px;
  border: 1px solid rgba(247, 178, 26, 0.28);
  background: rgba(255, 248, 234, 0.055);
  color: var(--cream);
  font-weight: 800;
}

.operations-section {
  background: var(--black);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 54px;
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.operations-section p,
.section-heading p,
.human-section p,
.cta-box p {
  color: var(--muted);
  font-size: 1.08rem;
}

.photo-stack {
  position: relative;
  min-height: 420px;
}

.photo-stack img {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.photo-main {
  width: 88%;
  margin-left: auto;
}

.photo-secondary {
  position: absolute;
  width: 55%;
  left: 0;
  bottom: 0;
}

.display-section {
  background:
    radial-gradient(circle at 10% 10%, rgba(151, 11, 18, 0.28), transparent 30%),
    radial-gradient(circle at 85% 35%, rgba(247, 178, 26, 0.13), transparent 26%),
    #120c0c;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 36px;
}

.section-heading.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.display-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.38fr);
  grid-template-areas:
    "ticker leaderboard"
    "finalists leaderboard"
    "full full";
  gap: 24px;
  align-items: start;
}

.display-card {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 248, 234, 0.045);
  box-shadow: var(--shadow);
}

.display-card img {
  width: 100%;
  border-radius: 14px;
  background: #fff;
}

.display-card p {
  margin: 14px 4px 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.display-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
}

.display-wide {
  grid-area: ticker;
}

.display-feature {
  grid-area: leaderboard;
}

.display-tall {
  grid-area: finalists;
}

.display-full {
  grid-area: full;
}

.display-wide img {
  background: #000;
}

.display-tall img {
  max-height: 520px;
  object-fit: contain;
  background: #26358f;
}

.reliability-section {
  background: var(--black);
}

.callout-panel {
  padding: 34px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(151, 11, 18, 0.38), rgba(247, 178, 26, 0.11)),
    var(--charcoal);
  border: 1px solid rgba(247, 178, 26, 0.28);
  box-shadow: var(--shadow);
}

.callout-panel h3 {
  color: var(--gold-soft);
  font-size: 2rem;
}

.callout-panel p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.check-list div {
  padding: 16px 18px;
  border-radius: 16px;
  background: rgba(255,255,255,0.055);
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 800;
}

.human-section {
  background:
    linear-gradient(180deg, rgba(151, 11, 18, 0.18), transparent),
    #0a0a0a;
  text-align: center;
}

.narrow {
  max-width: 840px;
}

.cta-section {
  padding-top: 50px;
  background: var(--black);
}

.cta-box {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  padding: 38px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at right, rgba(247, 178, 26, 0.20), transparent 35%),
    linear-gradient(135deg, rgba(151, 11, 18, 0.40), rgba(20, 7, 7, 0.92));
  border: 1px solid rgba(247, 178, 26, 0.28);
}

.site-footer {
  padding: 30px 0;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: #050505;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 0.92rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 900px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .brand img {
    width: 235px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner,
  .split,
  .split.reverse,
  .display-showcase,
  .cta-box {
    grid-template-columns: 1fr;
  }

  .display-showcase {
    grid-template-areas:
      "ticker"
      "leaderboard"
      "finalists"
      "full";
  }

  .hero-inner {
    gap: 32px;
    padding: 70px 0;
  }

  .photo-stack {
    min-height: auto;
  }

  .photo-main {
    width: 100%;
  }

  .photo-secondary {
    position: static;
    width: 100%;
    margin-top: 18px;
  }

  .footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 28px, 1160px);
  }

  .nav-links {
    gap: 14px;
    font-size: 0.88rem;
  }

  .section {
    padding: 68px 0;
  }

  .hero-card,
  .callout-panel,
  .display-card,
  .cta-box {
    padding: 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}