@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,500;0,600;0,700;0,800;1,700&family=IBM+Plex+Mono:wght@400;500;600&display=swap');

:root {
  --sand: #c8a86a;
  --chalk: #e7d7a4;
  --ink: #171a16;
  --moss: #444732;
  --orange: #d98e32;
  --blue: #3f82c4;
  --paper: #eee2bc;
  --line: rgba(23, 26, 22, 0.22);
  --line-light: rgba(231, 215, 164, 0.28);
  --display: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, SFMono-Regular, Menlo, monospace;
  --page: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--display);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
}

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

a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 20;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  background: var(--blue);
  color: #fff;
  font: 600 12px/1 var(--mono);
  text-decoration: none;
}

.skip-link:focus { transform: translateY(0); }

.site-header {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: var(--page);
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 28px/.8 var(--display);
  letter-spacing: .025em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand::before {
  width: 13px;
  height: 13px;
  content: '';
  border: 3px solid var(--orange);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--paper);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.site-nav a {
  padding: 9px 0;
  border-bottom: 1px solid transparent;
  font: 500 11px/1 var(--mono);
  letter-spacing: .08em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:hover { border-color: var(--ink); }

.site-nav .nav-play {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--chalk);
}

.site-nav .nav-play:hover { background: var(--moss); }

main { overflow: clip; }

.hero {
  position: relative;
  width: var(--page);
  min-height: 642px;
  margin: 0 auto;
  padding: clamp(65px, 10vw, 136px) 0 86px;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 56px;
  left: -50vw;
  width: 200vw;
  height: 1px;
  content: '';
  background: var(--line);
  box-shadow: 0 105px 0 rgba(23, 26, 22, .06), 0 210px 0 rgba(23, 26, 22, .06), 0 315px 0 rgba(23, 26, 22, .06), 0 420px 0 rgba(23, 26, 22, .06);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .94fr) minmax(390px, 1.06fr);
  align-items: center;
  gap: clamp(34px, 7vw, 110px);
}

.eyebrow, .section-kicker, .figure-label, .signal-label {
  margin: 0;
  color: var(--moss);
  font: 600 11px/1.2 var(--mono);
  letter-spacing: .14em;
  text-transform: uppercase;
}

.eyebrow::before, .section-kicker::before {
  display: inline-block;
  width: 23px;
  height: 1px;
  margin: 0 8px 3px 0;
  content: '';
  background: currentColor;
}

.hero h1 {
  max-width: 590px;
  margin: 19px 0 23px;
  font: 800 clamp(58px, 6.2vw, 94px)/.88 var(--display);
  letter-spacing: -.035em;
  text-wrap: balance;
}

.hero-copy {
  max-width: 470px;
  margin: 0;
  font-size: clamp(21px, 2vw, 27px);
  line-height: 1.05;
}

.hero-actions, .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 35px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  font: 600 12px/1 var(--mono);
  letter-spacing: .06em;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .18s ease, background-color .18s ease, color .18s ease;
}

.button:hover { transform: translate(-3px, -3px); }

.button-primary {
  background: var(--orange);
  box-shadow: 4px 4px 0 var(--ink);
  color: var(--ink);
}

.button-primary:hover { background: var(--chalk); }

.button-secondary { background: rgba(238, 226, 188, .72); }
.button-secondary:hover { background: var(--ink); color: var(--chalk); }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 39px 0 0;
  padding: 0;
  list-style: none;
  color: var(--moss);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: .045em;
  text-transform: uppercase;
}

.hero-meta li { display: flex; align-items: center; gap: 7px; }
.hero-meta li::before { width: 6px; height: 6px; content: ''; border: 1px solid var(--moss); border-radius: 50%; }

.hero-visual {
  position: relative;
  width: min(100%, 580px);
  aspect-ratio: 1 / .91;
  justify-self: end;
  margin: 0;
}

.hero-visual::before {
  position: absolute;
  z-index: -1;
  top: 7%;
  left: 3%;
  width: 73%;
  aspect-ratio: 1;
  content: '';
  border: 1px solid var(--moss);
  border-radius: 50%;
  opacity: .58;
}

.hero-visual::after {
  position: absolute;
  z-index: 2;
  top: 7%;
  left: 3%;
  width: 73%;
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(231, 215, 164, .85);
  border-radius: 50%;
  clip-path: polygon(50% 50%, 100% 12%, 100% 88%);
  pointer-events: none;
}

.hero-image-wrap {
  position: absolute;
  top: 7%;
  left: 3%;
  width: 73%;
  aspect-ratio: 1;
  overflow: hidden;
  border: 9px solid var(--ink);
  border-radius: 50%;
  background: var(--moss);
  box-shadow: 19px 19px 0 var(--orange);
}

.hero-image-wrap::after {
  position: absolute;
  right: -3%;
  bottom: -4%;
  width: 70%;
  aspect-ratio: 1;
  content: '';
  border: 1px solid rgba(231, 215, 164, .88);
  border-radius: 50%;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: rotate(-31deg);
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: sepia(.12) contrast(1.08) saturate(.84);
}

.los-wedge {
  position: absolute;
  z-index: -2;
  top: 22%;
  right: 0;
  width: 72%;
  aspect-ratio: 1.35 / 1;
  border-top: 1px solid var(--blue);
  border-bottom: 1px solid var(--blue);
  clip-path: polygon(0 50%, 100% 0, 100% 100%);
  opacity: .9;
}

.hero-visual figcaption {
  position: absolute;
  right: 0;
  bottom: 5%;
  width: 200px;
  padding-top: 9px;
  border-top: 1px solid var(--ink);
  color: var(--moss);
  font: 500 10px/1.45 var(--mono);
  letter-spacing: .04em;
}

.tactical-rule {
  position: relative;
  width: var(--page);
  height: 1px;
  margin: 0 auto;
  background: var(--line);
}

.tactical-rule::after {
  position: absolute;
  top: -4px;
  left: 0;
  width: 8px;
  height: 8px;
  content: '';
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: var(--paper);
}

.section { width: var(--page); margin: 0 auto; padding: clamp(72px, 10vw, 128px) 0; }

.section-heading {
  display: grid;
  grid-template-columns: minmax(160px, .45fr) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  margin-bottom: 50px;
}

.section-heading h2, .closing h2 {
  max-width: 740px;
  margin: 0;
  font: 800 clamp(45px, 5vw, 75px)/.89 var(--display);
  letter-spacing: -.025em;
  text-wrap: balance;
}

.section-heading p:not(.section-kicker) {
  max-width: 480px;
  margin: 8px 0 0;
  font-size: 23px;
  line-height: 1.05;
}

.teams-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  align-items: stretch;
}

.team-card, .match-note {
  position: relative;
  min-height: 250px;
  padding: 28px;
  border: 1px solid var(--ink);
}

.team-card { background: var(--chalk); }
.team-card.blue { border-color: var(--blue); }
.team-card.orange { border-color: var(--orange); }

.team-card h3, .match-note h3, .feature-copy h3, .operator-copy h3, .audio-card h3 {
  margin: 49px 0 10px;
  font: 800 clamp(34px, 3.2vw, 46px)/.9 var(--display);
  letter-spacing: -.015em;
}

.team-card p, .match-note p, .feature-copy p, .operator-copy p, .audio-card p { margin: 0; font-size: 21px; line-height: 1.07; }

.team-signal {
  position: absolute;
  top: 24px;
  left: 28px;
  width: 54px;
  height: 10px;
  background: var(--orange);
}

.blue .team-signal { background: var(--blue); }

.match-note {
  overflow: hidden;
  background: var(--ink);
  color: var(--chalk);
}

.match-note::after {
  position: absolute;
  right: -32px;
  bottom: -35px;
  width: 180px;
  height: 180px;
  content: '';
  border: 1px solid var(--line-light);
  border-radius: 50%;
  box-shadow: 0 0 0 22px var(--ink), 0 0 0 23px var(--line-light);
}

.match-note .signal-label { color: var(--sand); }
.match-note h3 { position: relative; z-index: 1; max-width: 430px; margin-top: 48px; }
.match-note p { position: relative; z-index: 1; max-width: 480px; color: var(--chalk); }

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .9fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
  padding: clamp(70px, 9vw, 112px) 0;
}

.feature.reverse { grid-template-columns: minmax(340px, .9fr) minmax(0, 1fr); }
.feature.reverse .feature-image { order: 2; }

.feature-image { position: relative; margin: 0; }

.feature-image::before {
  position: absolute;
  z-index: -1;
  inset: -16px 15% 16px -16px;
  content: '';
  border: 1px solid var(--moss);
}

.feature.reverse .feature-image::before { inset: 16px -16px -16px 15%; }

.feature-image img {
  width: 100%;
  aspect-ratio: 1.24 / 1;
  border: 7px solid var(--ink);
  object-fit: cover;
  filter: sepia(.1) contrast(1.08) saturate(.82);
}

.feature-image figcaption {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 10px;
  color: var(--moss);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.feature-copy h2 {
  margin: 12px 0 20px;
  font: 800 clamp(48px, 5vw, 72px)/.88 var(--display);
  letter-spacing: -.028em;
  text-wrap: balance;
}

.feature-copy h3 { margin-top: 34px; font-size: 34px; }

.weapon-list, .resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.weapon-list li, .resource-list li {
  min-height: 65px;
  padding: 13px 14px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font: 600 15px/1 var(--mono);
}

.weapon-list li::before, .resource-list strong::before {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin: 0 9px 2px 0;
  content: '';
  border: 1px solid currentColor;
  border-radius: 50%;
}

.weapon-list li:nth-child(2n)::before { border-radius: 0; background: var(--blue); }

.resource-list { grid-template-columns: 1fr; }
.resource-list li { display: grid; grid-template-columns: 132px 1fr; gap: 10px; align-items: baseline; font: 500 15px/1.25 var(--mono); }
.resource-list strong { font-weight: 600; }
.resource-list li:nth-child(2) strong::before { border-radius: 0; background: var(--blue); }
.resource-list li:nth-child(3) strong::before { background: var(--orange); }

.tactical-section { padding-top: 0; }

.operator-audio {
  position: relative;
  background: var(--ink);
  color: var(--chalk);
}

.operator-audio::before {
  position: absolute;
  inset: 0;
  content: '';
  opacity: .35;
  background-image: linear-gradient(90deg, transparent 0 49.8%, var(--line-light) 49.8% 50%, transparent 50%), linear-gradient(var(--line-light) 1px, transparent 1px);
  background-size: 100% 100%, 100% 78px;
  pointer-events: none;
}

.operator-audio .section { position: relative; }
.operator-audio .section-kicker, .operator-audio .section-heading p { color: var(--sand); }
.operator-audio .section-heading { margin-bottom: 42px; }

.operator-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 20px;
}

.operator-copy, .audio-card {
  min-height: 320px;
  padding: 30px;
  border: 1px solid var(--line-light);
}

.operator-copy h3, .audio-card h3 { margin-top: 49px; }
.operator-copy p, .audio-card p { max-width: 470px; }

.operator-swatch {
  display: flex;
  gap: 7px;
  align-items: center;
  font: 500 10px/1 var(--mono);
  letter-spacing: .06em;
}

.operator-swatch i { display: block; width: 17px; height: 17px; background: var(--sand); }
.operator-swatch i:nth-child(2) { background: var(--moss); }
.operator-swatch i:nth-child(3) { background: var(--orange); }
.operator-swatch i:nth-child(4) { background: var(--blue); }

.audio-card { background: var(--moss); }
.audio-card .signal-label { color: var(--chalk); }

.frequency {
  display: flex;
  align-items: end;
  gap: 4px;
  height: 37px;
  margin-top: 5px;
}

.frequency i { width: 4px; background: var(--orange); }
.frequency i:nth-child(1) { height: 35%; }
.frequency i:nth-child(2) { height: 70%; }
.frequency i:nth-child(3) { height: 45%; }
.frequency i:nth-child(4) { height: 100%; }
.frequency i:nth-child(5) { height: 60%; }
.frequency i:nth-child(6) { height: 88%; }
.frequency i:nth-child(7) { height: 32%; }
.frequency i:nth-child(8) { height: 78%; }
.frequency i:nth-child(9) { height: 50%; }

.closing {
  width: var(--page);
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) 0;
  text-align: center;
}

.closing .section-kicker { color: var(--moss); }
.closing h2 { margin: 16px auto 18px; }
.closing p { max-width: 500px; margin: 0 auto; font-size: clamp(25px, 3vw, 35px); line-height: 1; }
.closing .cta-actions { justify-content: center; }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  width: var(--page);
  margin: 0 auto;
  padding: 22px 0 26px;
  border-top: 1px solid var(--line);
  color: var(--moss);
  font: 500 10px/1.4 var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

@media (max-width: 820px) {
  :root { --page: min(100% - 40px, 640px); }
  .site-header { min-height: 70px; }
  .site-nav { gap: 14px; }
  .site-nav a:not(.nav-play) { display: none; }
  .hero { min-height: auto; padding-top: 68px; }
  .hero-grid, .feature, .feature.reverse { grid-template-columns: 1fr; }
  .hero-copy { max-width: 540px; }
  .hero-visual { width: min(100%, 560px); justify-self: start; margin-top: 22px; }
  .section-heading { grid-template-columns: 1fr; gap: 16px; }
  .section-heading p:not(.section-kicker) { margin-top: 0; }
  .teams-grid, .operator-grid { grid-template-columns: 1fr; }
  .feature.reverse .feature-image { order: initial; }
  .feature.reverse .feature-copy { order: -1; }
  .feature-image { width: min(100%, 590px); }
  .feature-copy { max-width: 580px; }
  .tactical-section { padding-top: 42px; }
}

@media (max-width: 480px) {
  :root { --page: calc(100% - 32px); }
  .brand { font-size: 24px; }
  .site-nav .nav-play { padding: 9px 10px; font-size: 10px; }
  .hero { padding-top: 54px; padding-bottom: 66px; }
  .hero h1 { font-size: clamp(53px, 16.1vw, 67px); }
  .hero-copy { font-size: 23px; }
  .hero-actions, .cta-actions { display: grid; grid-template-columns: 1fr; margin-top: 28px; }
  .button { width: 100%; }
  .hero-meta { gap: 8px 12px; margin-top: 29px; }
  .hero-visual { margin-top: 17px; }
  .hero-image-wrap { border-width: 6px; box-shadow: 12px 12px 0 var(--orange); }
  .hero-visual figcaption { right: 0; bottom: 0; width: 167px; font-size: 9px; }
  .section { padding: 72px 0; }
  .section-heading { margin-bottom: 34px; }
  .section-heading h2, .closing h2 { font-size: 49px; }
  .section-heading p:not(.section-kicker), .team-card p, .match-note p, .feature-copy p, .operator-copy p, .audio-card p { font-size: 20px; }
  .team-card, .match-note { min-height: 220px; padding: 23px; }
  .team-signal { top: 21px; left: 23px; }
  .feature { gap: 46px; padding: 72px 0; }
  .feature-copy h2 { font-size: 53px; }
  .feature-image img { border-width: 5px; }
  .feature-image::before { inset: -10px 10% 10px -10px; }
  .feature.reverse .feature-image::before { inset: 10px -10px -10px 10%; }
  .weapon-list { grid-template-columns: 1fr; }
  .resource-list li { grid-template-columns: 112px 1fr; font-size: 13px; }
  .operator-copy, .audio-card { min-height: 0; padding: 25px; }
  .operator-copy h3, .audio-card h3 { margin-top: 38px; }
  .site-footer { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
