/* Airverse: Airsoft - airverse.app */

:root {
  --ink: #101513;
  --charcoal: #1d2420;
  --field: #2f5b3c;
  --field-bright: #67a35e;
  --signal: #ff6b24;
  --signal-deep: #c84722;
  --sky: #c9e3f2;
  --paper: #f5f6ef;
  --bone: #fffdf6;
  --fog: #e8eee4;
  --line: #d5dcca;
  --muted: #667064;
  --shadow: 0 20px 50px rgba(16, 21, 19, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}

body {
  font-family: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  font-size: 17px;
  overflow-x: hidden;
}

h1,
h2,
h3,
p,
b,
span {
  overflow-wrap: break-word;
}

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

a {
  color: inherit;
}

.wrap {
  width: calc(100% - 40px);
  max-width: 1180px;
  margin: 0 auto;
}

.mono {
  font-family: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-head {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(16, 21, 19, 0.88);
  color: var(--bone);
  backdrop-filter: blur(14px);
}

.head-wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: max-content;
}

.logo-mark {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  filter: drop-shadow(0 6px 16px rgba(255, 107, 36, 0.28));
}

.mark-bg {
  fill: var(--signal);
}

.mark-ring {
  fill: none;
  stroke: rgba(255, 255, 255, 0.48);
  stroke-width: 2.5;
}

.mark-v {
  fill: none;
  stroke: #fff;
  stroke-width: 4.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mark-route {
  fill: none;
  stroke: var(--sky);
  stroke-width: 2.4;
  stroke-linecap: round;
}

.mark-dot {
  fill: var(--sky);
  stroke: var(--ink);
  stroke-width: 1.8;
}

.logo-text {
  display: grid;
  line-height: 1.02;
  font-weight: 800;
  font-size: 18px;
}

.logo-text span {
  color: var(--sky);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.head-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 253, 246, 0.78);
  font-size: 14px;
  font-weight: 700;
}

.head-nav a,
.foot-links a {
  text-decoration: none;
}

.head-nav a:hover,
.foot-links a:hover {
  color: var(--signal);
}

.head-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 800;
  white-space: nowrap;
}

.head-cta {
  padding: 0 18px;
  background: var(--bone);
  color: var(--ink);
  font-size: 14px;
}

.hero {
  position: relative;
  min-height: min(710px, calc(100svh - 28px));
  color: var(--bone);
  overflow: hidden;
  background-image:
    linear-gradient(90deg, rgba(16, 21, 19, 0.98) 0%, rgba(16, 21, 19, 0.88) 34%, rgba(16, 21, 19, 0.34) 68%, rgba(16, 21, 19, 0.12) 100%),
    url("assets/airsoft-game-day-hero.png");
  background-size: cover;
  background-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 28%;
  background: linear-gradient(180deg, rgba(16, 21, 19, 0), rgba(16, 21, 19, 0.72));
  pointer-events: none;
}

.hero-grid {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.62fr);
  align-items: center;
  gap: 42px;
  padding: 54px 0 72px;
}

.hero-copy {
  max-width: 720px;
  min-width: 0;
}

.hero-eyebrow {
  color: var(--sky);
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(47px, 7vw, 88px);
  line-height: 0.96;
  letter-spacing: 0;
  font-weight: 800;
  max-width: 11.5ch;
}

.hero-kicker {
  max-width: 620px;
  margin: 22px 0 28px;
  color: rgba(255, 253, 246, 0.84);
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.soon-banner {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 107, 36, 0.95), rgba(200, 71, 34, 0.88)),
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0));
  color: #fff;
  box-shadow: 0 14px 34px rgba(255, 107, 36, 0.24);
}

.hero-soon {
  min-width: min(100%, 390px);
  padding: 14px 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3px 12px;
  align-items: center;
}

.soon-banner span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: rgba(16, 21, 19, 0.24);
  padding: 0 10px;
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.soon-banner b {
  font-size: 17px;
  line-height: 1.05;
}

.soon-banner small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.btn {
  padding: 0 22px;
}

.btn-primary {
  background: var(--signal);
  color: #fff;
  box-shadow: 0 10px 28px rgba(255, 107, 36, 0.28);
}

.btn-primary:hover {
  background: var(--signal-deep);
}

.btn-ghost {
  border: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--bone);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
}

.btn-dark {
  background: var(--ink);
  color: var(--bone);
}

.btn-note {
  color: rgba(255, 253, 246, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.hero-panel {
  justify-self: end;
  width: min(100%, 430px);
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  padding: 16px;
  background: rgba(16, 21, 19, 0.72);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.panel-head,
.rule-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.panel-head {
  padding: 6px 4px 14px;
  color: rgba(255, 253, 246, 0.68);
  font-size: 13px;
}

.panel-head b {
  color: var(--bone);
}

.city-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 10px;
}

.city-tabs button {
  min-height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 253, 246, 0.72);
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  cursor: pointer;
}

.city-tabs .active {
  background: rgba(255, 107, 36, 0.2);
  border-color: rgba(255, 107, 36, 0.46);
  color: var(--bone);
}

.event-stack {
  display: grid;
  gap: 10px;
}

.event-card {
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: center;
  background: rgba(255, 253, 246, 0.09);
}

.event-card.hot {
  background: rgba(255, 107, 36, 0.16);
  border-color: rgba(255, 107, 36, 0.42);
}

.event-type {
  color: var(--sky);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 5px;
}

.event-card h2 {
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 5px;
}

.event-card p {
  color: rgba(255, 253, 246, 0.7);
  font-size: 14px;
}

.event-count {
  min-width: 68px;
  min-height: 68px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  align-content: center;
  background: var(--bone);
  color: var(--ink);
}

.event-count b {
  font-size: 25px;
  line-height: 1;
}

.event-count span {
  font-size: 11px;
  font-weight: 800;
  color: var(--muted);
  text-transform: uppercase;
}

.rule-row {
  margin-top: 12px;
  padding: 13px 14px;
  border-radius: 8px;
  background: rgba(201, 227, 242, 0.12);
  color: rgba(255, 253, 246, 0.72);
  font-size: 13px;
}

.rule-row b {
  color: var(--bone);
}

.rule-row small {
  color: var(--sky);
  font-weight: 800;
}

.question-strip {
  position: relative;
  z-index: 2;
  margin-top: -28px;
}

.question-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  overflow: hidden;
  background: var(--bone);
  box-shadow: var(--shadow);
}

.question-grid span {
  min-height: 78px;
  display: flex;
  align-items: center;
  padding: 18px;
  border-right: 1px solid var(--line);
  font-weight: 800;
  font-size: 15px;
}

.question-grid span:last-child {
  border-right: 0;
}

.why,
.command,
.features,
.timeline,
.image-band,
.final-cta {
  padding: 68px 0;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.why-photo,
.fragment-board {
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--charcoal);
}

.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fragment-board {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(6, 1fr);
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(47, 91, 60, 0.82), rgba(16, 21, 19, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 68px),
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.06) 0 1px, transparent 1px 68px);
}

.fragment-card {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 253, 246, 0.1);
  color: var(--bone);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.fragment-card span {
  color: var(--sky);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.fragment-card b {
  display: block;
  margin: 16px 0 8px;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1;
}

.fragment-card p {
  color: rgba(255, 253, 246, 0.72);
  font-size: 14px;
}

.fragment-card.discord {
  grid-column: 1 / 4;
  grid-row: 1 / 3;
}

.fragment-card.field {
  grid-column: 4 / 7;
  grid-row: 1 / 4;
}

.fragment-card.maps {
  grid-column: 1 / 3;
  grid-row: 3 / 5;
}

.fragment-card.notes {
  grid-column: 3 / 5;
  grid-row: 3 / 5;
}

.fragment-card.airverse {
  grid-column: 1 / 7;
  grid-row: 5 / 7;
  background: rgba(255, 107, 36, 0.2);
  border-color: rgba(255, 107, 36, 0.5);
}

.fragment-card.airverse b {
  font-size: clamp(28px, 4vw, 46px);
}

.why-copy {
  border-radius: 8px;
  background: var(--ink);
  color: var(--bone);
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-copy .mono {
  color: var(--sky);
  margin-bottom: 14px;
}

.why-copy h2 {
  font-size: clamp(30px, 3.6vw, 48px);
  line-height: 1.04;
  letter-spacing: 0;
}

.why-copy p {
  color: rgba(255, 253, 246, 0.74);
  margin-top: 18px;
  font-size: 18px;
}

.pain-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

.pain-grid span {
  min-height: 76px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  padding: 13px;
  display: flex;
  align-items: center;
  color: rgba(255, 253, 246, 0.86);
  font-size: 14px;
  font-weight: 800;
}

.command-grid {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: center;
  gap: 56px;
}

.section-copy .mono {
  color: var(--signal-deep);
  margin-bottom: 14px;
}

.section-copy h2,
.timeline-copy h2,
.final-cta h2 {
  font-size: clamp(31px, 4vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
  font-weight: 800;
}

.section-copy p:not(.mono) {
  margin-top: 20px;
  color: var(--muted);
  font-size: 19px;
  max-width: 520px;
}

.section-copy.compact {
  max-width: 690px;
  margin-bottom: 28px;
}

.command-panel {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 12px;
  border: 1px solid rgba(16, 21, 19, 0.1);
  border-radius: 8px;
  padding: 14px;
  background: var(--ink);
  color: var(--bone);
  box-shadow: var(--shadow);
}

.command-top {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 14px;
}

.command-top .mono {
  color: var(--sky);
}

.command-top b {
  font-size: 22px;
  line-height: 1;
}

.command-top small {
  min-width: 38px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--bone);
  color: var(--ink);
  font-weight: 800;
}

.command-map {
  min-height: 230px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(47, 91, 60, 0.94), rgba(29, 36, 32, 0.8)),
    repeating-linear-gradient(90deg, transparent 0 40px, rgba(255, 255, 255, 0.1) 41px 42px),
    repeating-linear-gradient(0deg, transparent 0 40px, rgba(255, 255, 255, 0.1) 41px 42px);
}

.command-map::after {
  content: "4 friends nearby";
  position: absolute;
  left: 14px;
  bottom: 14px;
  border-radius: 8px;
  background: rgba(16, 21, 19, 0.72);
  color: var(--bone);
  padding: 9px 11px;
  font-size: 13px;
  font-weight: 800;
}

.command-map span {
  position: absolute;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 3px solid var(--bone);
  background: var(--signal);
  box-shadow: 0 0 0 10px rgba(255, 107, 36, 0.18);
}

.command-map span:nth-child(1) {
  left: 28%;
  top: 28%;
}

.command-map span:nth-child(2) {
  right: 24%;
  top: 45%;
  background: var(--sky);
}

.command-map span:nth-child(3) {
  left: 52%;
  bottom: 24%;
}

.command-events {
  display: grid;
  gap: 10px;
}

.command-event,
.command-info article {
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px;
}

.command-event.primary {
  background: rgba(255, 107, 36, 0.18);
  border-color: rgba(255, 107, 36, 0.45);
}

.command-event .mono,
.command-info .mono {
  color: var(--sky);
  margin-bottom: 8px;
}

.command-event h3 {
  font-size: 23px;
  line-height: 1.04;
  margin-bottom: 6px;
}

.command-event span,
.command-info span {
  color: rgba(255, 253, 246, 0.74);
  font-size: 14px;
}

.command-info {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.command-info b {
  display: block;
  min-height: 44px;
  font-size: 18px;
  line-height: 1.12;
  margin-bottom: 8px;
}

.command-tabs,
.pack-strip {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.command-tabs {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 12px;
}

.command-tabs span,
.pack-strip span {
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
}

.command-tabs span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 253, 246, 0.76);
}

.command-tabs .on {
  background: var(--signal);
  color: #fff;
}

.pack-strip span {
  background: rgba(201, 227, 242, 0.12);
  color: var(--bone);
}

.app-preview {
  min-width: 0;
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  align-items: end;
  gap: 18px;
}

.phone-shell {
  justify-self: center;
  width: min(100%, 340px);
  border: 10px solid var(--ink);
  border-radius: 34px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.phone-screen {
  min-height: 615px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--fog);
  padding: 18px;
  display: flex;
  flex-direction: column;
}

.screen-top,
.tabs,
.chips,
.screen-event {
  display: flex;
  align-items: center;
}

.screen-top {
  justify-content: space-between;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.screen-top b {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  color: var(--bone);
}

.phone-screen h3 {
  margin: 18px 0 14px;
  font-size: 27px;
  line-height: 1;
}

.screen-event {
  gap: 13px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--bone);
  margin-bottom: 12px;
}

.screen-event.selected {
  align-items: stretch;
  flex-direction: column;
}

.screen-event b {
  font-size: 17px;
}

.screen-event p,
.screen-rules p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 3px;
}

.screen-map {
  height: 118px;
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(47, 91, 60, 0.9), rgba(29, 36, 32, 0.82)),
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(255, 255, 255, 0.12) 35px 36px),
    repeating-linear-gradient(0deg, transparent 0 34px, rgba(255, 255, 255, 0.12) 35px 36px);
  position: relative;
  overflow: hidden;
}

.screen-map span {
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--signal);
  border: 3px solid var(--bone);
  box-shadow: 0 0 0 8px rgba(255, 107, 36, 0.18);
}

.screen-map span:nth-child(1) {
  top: 28px;
  left: 64px;
}

.screen-map span:nth-child(2) {
  top: 70px;
  right: 82px;
  background: var(--sky);
}

.screen-map span:nth-child(3) {
  right: 36px;
  top: 32px;
}

.chips {
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.chips span,
.loadout-list span {
  border-radius: 8px;
  background: #edf4df;
  color: var(--field);
  padding: 6px 8px;
  font-size: 11px;
  font-weight: 800;
}

.mini-cta {
  margin-left: auto;
  background: var(--signal);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 800;
}

.screen-rules {
  border-radius: 8px;
  border: 1px solid rgba(255, 107, 36, 0.26);
  background: #fff4ed;
  padding: 14px;
  margin-top: auto;
}

.tabs {
  justify-content: space-between;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.tabs .on {
  color: var(--signal-deep);
}

.loadout-card {
  border-radius: 8px;
  padding: 24px;
  background: var(--charcoal);
  color: var(--bone);
  box-shadow: var(--shadow);
}

.loadout-card .mono {
  color: var(--sky);
  margin-bottom: 12px;
}

.loadout-card h3 {
  font-size: 29px;
  line-height: 1.05;
  margin-bottom: 20px;
}

.loadout-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.loadout-list span {
  background: rgba(255, 255, 255, 0.1);
  color: var(--bone);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.features {
  background: var(--bone);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.feature {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fbfcf7;
}

.feature-icon {
  width: 42px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: var(--ink);
  color: var(--sky);
  font-family: "IBM Plex Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 34px;
}

.feature h3 {
  font-size: 21px;
  line-height: 1.12;
  margin-bottom: 10px;
}

.feature p {
  color: var(--muted);
  font-size: 15px;
}

.timeline {
  background: var(--charcoal);
  color: var(--bone);
}

.image-band {
  background: var(--paper);
}

.image-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.image-band article {
  min-height: 420px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

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

.image-band article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16, 21, 19, 0.02), rgba(16, 21, 19, 0.76));
}

.image-band article div {
  position: absolute;
  z-index: 1;
  left: 22px;
  right: 22px;
  bottom: 22px;
  color: var(--bone);
}

.image-band .mono {
  color: var(--sky);
  margin-bottom: 8px;
}

.image-band h3 {
  font-size: clamp(23px, 2.7vw, 34px);
  line-height: 1.08;
  max-width: 15ch;
}

.timeline-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 28px;
  align-items: start;
}

.timeline-copy .mono {
  color: var(--sky);
  margin-bottom: 14px;
}

.timeline-copy p:not(.mono) {
  margin-top: 18px;
  color: rgba(255, 253, 246, 0.74);
  font-size: 18px;
}

.recap-card {
  margin-top: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px;
}

.recap-card .mono {
  color: var(--signal);
  margin-bottom: 10px;
}

.recap-card h3 {
  font-size: 25px;
  line-height: 1.05;
  margin-bottom: 14px;
}

.recap-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.recap-meta span {
  border-radius: 8px;
  background: rgba(201, 227, 242, 0.12);
  color: rgba(255, 253, 246, 0.88);
  padding: 7px 9px;
  font-size: 12px;
  font-weight: 800;
}

.flow-board {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.flow-card {
  position: relative;
  min-height: 360px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
  overflow: hidden;
}

.flow-num {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(255, 255, 255, 0.16);
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
}

.flow-card .mono {
  color: var(--sky);
  margin-bottom: 54px;
}

.flow-card h3 {
  font-size: 25px;
  line-height: 1.05;
  margin-bottom: 12px;
}

.flow-card p:not(.mono) {
  color: rgba(255, 253, 246, 0.74);
  font-size: 15px;
}

.flow-card ul {
  list-style: none;
  display: grid;
  gap: 7px;
  margin-top: 18px;
}

.flow-card li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 253, 246, 0.86);
  font-size: 13px;
  font-weight: 800;
}

.flow-card li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--signal);
}

.flow-photo {
  grid-column: 1 / -1;
  min-height: 260px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ink);
}

.flow-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 21, 19, 0.9), rgba(16, 21, 19, 0.16));
}

.flow-photo div {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
  max-width: 430px;
  display: grid;
  gap: 6px;
}

.flow-photo b {
  font-size: 32px;
  line-height: 1;
}

.flow-photo span {
  color: rgba(255, 253, 246, 0.74);
}

.privacy {
  padding: 0 0 68px;
  background: var(--bone);
}

.privacy-inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: start;
  border-radius: 8px;
  padding: 48px;
  background: var(--field);
  color: var(--bone);
}

.privacy .mono {
  color: var(--sky);
  margin-bottom: 14px;
}

.privacy h2 {
  font-size: clamp(28px, 3.6vw, 44px);
  line-height: 1.05;
}

.privacy ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.privacy li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 253, 246, 0.82);
}

.privacy li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background: var(--signal);
}

.final-cta {
  background: var(--sky);
}

.final-grid {
  display: block;
}

.final-grid .mono {
  color: var(--field);
  margin-bottom: 12px;
}

.final-grid h2 {
  max-width: 760px;
}

.final-soon {
  padding: 34px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px 22px;
  align-items: center;
}

.final-soon h2 {
  max-width: 920px;
  color: #fff;
}

.final-soon p {
  grid-column: 2;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  font-weight: 800;
}

.site-foot {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: var(--bone);
  padding: 34px 0;
}

.foot-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.foot-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: rgba(255, 253, 246, 0.72);
  font-size: 14px;
  font-weight: 700;
}

.foot-note {
  color: rgba(255, 253, 246, 0.58);
  font-size: 13px;
}

.foot-note a {
  color: var(--sky);
  text-decoration: none;
}

.foot-note a:hover {
  color: var(--signal);
}

.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 64px 24px 96px;
}

.legal h1 {
  font-size: 38px;
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 10px;
}

.legal h2 {
  font-size: 21px;
  font-weight: 800;
  margin: 32px 0 10px;
}

.legal p,
.legal li {
  color: #39413b;
  font-size: 16px;
}

.legal ul {
  padding-left: 22px;
  margin: 10px 0;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--signal);
  outline-offset: 4px;
}

@media (max-width: 980px) {
  .head-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    background-position: 58% center;
  }

  .hero-grid,
  .why-grid,
  .command-grid,
  .image-band-grid,
  .timeline-grid,
  .privacy-inner {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding: 66px 0 86px;
  }

  .hero h1 {
    max-width: 11.5ch;
  }

  .hero-panel {
    justify-self: start;
    width: 100%;
  }

  .question-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .question-grid span:nth-child(2) {
    border-right: 0;
  }

  .question-grid span:nth-child(1),
  .question-grid span:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }

  .app-preview {
    grid-template-columns: 1fr;
  }

  .loadout-card {
    width: min(100%, 420px);
    justify-self: center;
  }

  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .command-panel {
    grid-template-columns: 1fr;
  }

  .command-top,
  .command-info,
  .command-tabs,
  .pack-strip {
    grid-column: auto;
  }

  .why-photo,
  .fragment-board,
  .image-band article {
    min-height: 360px;
  }
}

@media (max-width: 680px) {
  .wrap {
    width: calc(100% - 28px);
    max-width: 1180px;
  }

  .head-wrap {
    height: 62px;
  }

  .head-cta {
    display: none;
  }

  .logo-mark {
    width: 34px;
    height: 34px;
  }

  .logo-text {
    font-size: 16px;
  }

  .hero {
    background-position: 68% center;
  }

  .hero-grid {
    gap: 30px;
    padding: 38px 0 58px;
  }

  .hero h1 {
    width: 100%;
    max-width: 320px;
    font-size: clamp(38px, 12vw, 48px);
  }

  .hero-kicker {
    font-size: 17px;
    max-width: 350px;
  }

  .why-copy h2,
  .section-copy h2,
  .timeline-copy h2,
  .final-cta h2 {
    font-size: 29px;
    line-height: 1.08;
  }

  .why-copy p,
  .section-copy p:not(.mono),
  .timeline-copy p:not(.mono) {
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-panel {
    padding: 12px;
  }

  .city-tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-card {
    grid-template-columns: 1fr;
  }

  .panel-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .event-count {
    width: 100%;
    max-width: 100%;
    min-height: 54px;
    grid-auto-flow: column;
    justify-content: center;
    gap: 8px;
  }

  .rule-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .question-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .question-grid span {
    min-height: 72px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .question-grid span:last-child {
    border-bottom: 0;
  }

  .command-panel {
    padding: 12px;
  }

  .command-info {
    grid-template-columns: 1fr;
  }

  .command-map {
    min-height: 190px;
  }

  .command-top {
    grid-template-columns: 1fr auto;
  }

  .command-top .mono {
    grid-column: 1 / -1;
  }

  .why,
  .command,
  .features,
  .timeline,
  .image-band,
  .final-cta {
    padding: 54px 0;
  }

  .why-copy {
    padding: 24px;
  }

  .pain-grid {
    grid-template-columns: 1fr;
  }

  .why-photo,
  .fragment-board,
  .image-band article {
    min-height: 300px;
  }

  .fragment-board {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .fragment-card,
  .fragment-card.discord,
  .fragment-card.field,
  .fragment-card.maps,
  .fragment-card.notes,
  .fragment-card.airverse {
    grid-column: auto;
    grid-row: auto;
  }

  .phone-shell {
    border-width: 8px;
    border-radius: 28px;
  }

  .phone-screen {
    min-height: 560px;
    border-radius: 20px;
    padding: 14px;
  }

  .steps li {
    grid-template-columns: 1fr;
    gap: 8px;
    min-height: auto;
  }

  .privacy {
    padding-bottom: 72px;
  }

  .privacy-inner {
    padding: 30px 22px;
  }

  .final-grid {
    align-items: flex-start;
    flex-direction: column;
  }

  .final-soon,
  .hero-soon {
    grid-template-columns: 1fr;
    min-width: 0;
    width: 100%;
  }

  .final-soon {
    padding: 24px;
  }

  .soon-banner small,
  .final-soon p {
    grid-column: auto;
  }

  .foot-wrap,
  .foot-links {
    align-items: flex-start;
    flex-direction: column;
  }
}
