:root {
  color-scheme: dark;
  --ink: #f4f0e6;
  --muted: #b9c3b9;
  --green: #142c22;
  --green-deep: #091a14;
  --lime: #d8ed80;
  --sand: #e0a868;
  --line: rgba(244, 240, 230, 0.18);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at 85% 8%, rgba(216, 237, 128, 0.12), transparent 28rem),
    linear-gradient(145deg, var(--green) 0%, var(--green-deep) 70%);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: "";
  opacity: 0.2;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.16'/%3E%3C/svg%3E");
}

.site-header,
main,
footer {
  position: relative;
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid var(--lime);
  border-radius: 50%;
  color: var(--lime);
  font-family: "Fraunces", serif;
  font-size: 0.85rem;
}

.pilot-badge,
.eyebrow,
.scorecard-top,
.scorecard-bottom,
.features article > span,
footer {
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.pilot-badge {
  color: var(--muted);
  font-size: 0.69rem;
  font-weight: 600;
}

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(48px, 8vw, 110px);
  align-items: center;
  min-height: 690px;
  padding: 90px 0;
}

.eyebrow {
  margin: 0 0 22px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 700;
}

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

h1 {
  margin-bottom: 30px;
  font-family: "Fraunces", serif;
  font-size: clamp(4rem, 8vw, 7.3rem);
  line-height: 0.86;
  letter-spacing: -0.065em;
}

h1 em {
  color: var(--lime);
  font-weight: inherit;
}

.intro {
  max-width: 610px;
  margin-bottom: 34px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.25rem);
  line-height: 1.65;
}

.primary-action {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  padding: 16px 22px;
  border-radius: 999px;
  background: var(--lime);
  color: var(--green-deep);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.primary-action span { font-size: 1.2rem; }

.scorecard {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(216, 237, 128, 0.35);
  border-radius: 2px 42px 2px 42px;
  background: rgba(7, 25, 18, 0.64);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  transform: rotate(1.2deg);
  backdrop-filter: blur(12px);
}

.scorecard-top,
.scorecard-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 600;
}

.matchup {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: end;
  padding: 64px 0 50px;
}

.team-right { text-align: right; }

.team-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.team-dot-sand { background: var(--sand); }
.team-dot-pine { background: var(--lime); }

.team-name {
  margin: 12px 0 4px;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.matchup strong {
  font-family: "Fraunces", serif;
  font-size: clamp(4.2rem, 8vw, 6.8rem);
  line-height: 1;
}

.versus {
  padding-bottom: 20px;
  color: var(--muted);
  font-size: 0.62rem;
  letter-spacing: 0.15em;
}

.progress {
  height: 4px;
  margin-bottom: 22px;
  background: rgba(244, 240, 230, 0.12);
}

.progress span {
  display: block;
  width: 54%;
  height: 100%;
  background: linear-gradient(90deg, var(--sand), var(--lime));
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.features article {
  min-height: 250px;
  padding: 44px 36px 40px 0;
}

.features article + article {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.features article > span {
  color: var(--lime);
  font-size: 0.64rem;
}

.features h2 {
  margin: 52px 0 12px;
  font-family: "Fraunces", serif;
  font-size: 1.55rem;
}

.features p,
.pilot > p {
  color: var(--muted);
  line-height: 1.65;
}

.pilot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  padding: 120px 0;
}

.pilot h2 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.pilot > p {
  max-width: 520px;
  margin-bottom: 6px;
  font-size: 1.1rem;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 28px 0 38px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.61rem;
}

@media (max-width: 820px) {
  .site-header,
  main,
  footer { width: min(100% - 32px, 680px); }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 70px 0 90px;
  }

  h1 { font-size: clamp(4rem, 18vw, 6.2rem); }

  .scorecard { transform: none; }

  .features,
  .pilot { grid-template-columns: 1fr; }

  .features article { min-height: 0; }

  .features article + article {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .features h2 { margin-top: 32px; }

  .pilot { gap: 40px; padding: 90px 0; }
}

@media (max-width: 480px) {
  .pilot-badge { display: none; }

  .site-header { min-height: 78px; }

  .hero { padding-top: 55px; }

  h1 { font-size: clamp(3.6rem, 19vw, 5.2rem); }

  .scorecard { padding: 24px 20px; }

  .matchup { gap: 10px; padding: 48px 0 38px; }

  .matchup strong { font-size: 3.7rem; }

  .scorecard-bottom span:last-child { display: none; }

  footer { display: grid; gap: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
