:root {
  --ink: #e9eee9;
  --muted: #9ba6a0;
  --night: #07100e;
  --panel: #0d1815;
  --panel-2: #101d19;
  --line: rgba(213, 228, 216, 0.14);
  --green: #a6c63a;
  --green-dark: #7f9e1e;
  --paper: #e6e8df;
  --black: #070a09;
  --display: "Barlow Condensed", "Arial Narrow", sans-serif;
  --body: "Inter", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--night);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
.sr-only, .skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 100;
  width: auto;
  height: auto;
  clip: auto;
  margin: 1rem;
  padding: .7rem 1rem;
  background: var(--green);
  color: var(--black);
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem clamp(1.25rem, 5vw, 5rem);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font: 800 1.7rem/1 var(--display); letter-spacing: .04em; }
.brand-copy strong span { color: var(--green); }
.brand-copy small { margin-top: .25rem; color: var(--muted); font: 600 .55rem/1 var(--body); letter-spacing: .24em; }
.site-nav { display: flex; align-items: center; gap: clamp(1.2rem, 2.7vw, 2.8rem); }
.site-nav a { color: #bdc6c0; font-size: .75rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; }
.site-nav a:hover, .site-nav a:focus-visible { color: white; }
.site-nav .nav-cta {
  padding: .7rem 1rem;
  border: 1px solid rgba(166, 198, 58, .6);
  color: var(--green);
}
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 800px;
  height: 100svh;
  max-height: 1000px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem clamp(1.25rem, 8vw, 8rem) 5rem;
  background:
    linear-gradient(90deg, rgba(5, 13, 11, .98) 0%, rgba(5, 13, 11, .9) 27%, rgba(5, 13, 11, .52) 52%, rgba(5, 13, 11, .2) 76%, rgba(5, 13, 11, .35) 100%),
    linear-gradient(0deg, rgba(4, 10, 8, .8) 0%, transparent 42%, rgba(4, 10, 8, .25) 100%),
    url("dcs-hero.jpg") center center / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 72% 48%, transparent 0%, rgba(9, 28, 21, .08) 34%, rgba(3, 9, 7, .38) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, .42), transparent 32%);
  mix-blend-mode: multiply;
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .32;
  background-image:
    linear-gradient(rgba(149, 178, 91, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(149, 178, 91, .09) 1px, transparent 1px);
  background-size: 68px 68px;
  mask-image: linear-gradient(90deg, transparent 20%, black 65%);
  transform: perspective(650px) rotateX(55deg) scale(1.4) translateY(8%);
}
.radar {
  position: absolute;
  right: clamp(-11rem, 2vw, 3rem);
  top: 50%;
  width: min(48vw, 660px);
  aspect-ratio: 1;
  transform: translateY(-47%);
  border: 1px solid rgba(166, 198, 58, .12);
  border-radius: 50%;
}
.radar::before, .radar::after {
  content: "";
  position: absolute;
  background: rgba(166, 198, 58, .16);
}
.radar::before { top: 50%; left: 0; width: 100%; height: 1px; }
.radar::after { top: 0; left: 50%; width: 1px; height: 100%; }
.radar-ring { position: absolute; border: 1px solid rgba(166, 198, 58, .17); border-radius: 50%; }
.radar-ring.r1 { inset: 15%; }
.radar-ring.r2 { inset: 31%; }
.radar-ring.r3 { inset: 46%; }
.radar-line {
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 44%;
  height: 1px;
  transform-origin: left;
  background: linear-gradient(90deg, var(--green), transparent);
  transform: rotate(-33deg);
  box-shadow: 0 -10px 40px rgba(166,198,58,.3);
}
.radar-blip { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--green); box-shadow: 0 0 14px var(--green); }
.radar-blip.b1 { top: 31%; left: 62%; }
.radar-blip.b2 { top: 61%; left: 72%; }
.radar-blip.b3 { top: 69%; left: 35%; opacity: .55; }
.hero-content { position: relative; z-index: 3; width: min(760px, 65%); }
.eyebrow {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 0 0 1.5rem;
  color: var(--green);
  font: 600 .72rem/1 var(--body);
  letter-spacing: .2em;
  text-transform: uppercase;
}
.eyebrow span { width: 2rem; height: 2px; background: currentColor; }
h1, h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: .86;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(4.5rem, 9.5vw, 9.5rem); }
h1 em, h2 em { color: var(--green); font-style: normal; }
.hero-lead { max-width: 650px; margin: 2rem 0; color: #b0bab4; font-size: clamp(1rem, 1.4vw, 1.15rem); line-height: 1.8; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  min-height: 3.5rem;
  padding: .85rem 1.4rem;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: transform .2s, background-color .2s, border-color .2s;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--green); color: var(--black); }
.button.primary:hover { background: #b8d84a; }
.button.secondary { border: 1px solid rgba(255,255,255,.24); color: white; }
.button.secondary:hover { border-color: var(--green); }
.hero-meta { display: flex; gap: clamp(2rem, 6vw, 5.5rem); margin-top: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.hero-meta div { display: flex; flex-direction: column; }
.hero-meta strong { color: white; font: 700 1.6rem/1 var(--display); letter-spacing: .04em; }
.hero-meta span { margin-top: .4rem; color: #728078; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.hero-side-label {
  position: absolute;
  right: 1.5rem;
  bottom: 6rem;
  z-index: 3;
  color: #506059;
  font-size: .55rem;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.section { padding: 8rem clamp(1.25rem, 7vw, 7rem); }
.stats-copy h2, .rental-copy h2, .discord-section h2 { font-size: clamp(3.7rem, 6vw, 6.7rem); }

.stats-callout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 630px;
  background: var(--green);
  color: var(--black);
}
.stats-visual { position: relative; display: flex; align-items: end; justify-content: center; gap: 2.2%; overflow: hidden; padding: 6rem; background: #0c1512; }
.stats-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: linear-gradient(rgba(166,198,58,.25) 1px, transparent 1px), linear-gradient(90deg, rgba(166,198,58,.25) 1px, transparent 1px);
  background-size: 45px 45px;
}
.bar { position: relative; z-index: 2; width: 8%; min-width: 22px; background: linear-gradient(0deg, #5d7622, var(--green)); opacity: .9; }
.bar-1 { height: 27%; }.bar-2 { height: 43%; }.bar-3 { height: 36%; }.bar-4 { height: 68%; }.bar-5 { height: 58%; }.bar-6 { height: 82%; }
.crosshair { position: absolute; z-index: 3; top: 23%; left: 59%; width: 76px; height: 76px; border: 1px solid rgba(230,255,160,.6); border-radius: 50%; }
.crosshair::before, .crosshair::after { content: ""; position: absolute; background: rgba(230,255,160,.65); }
.crosshair::before { left: 50%; top: -20px; width: 1px; height: 116px; }
.crosshair::after { top: 50%; left: -20px; height: 1px; width: 116px; }
.stats-copy { display: flex; flex-direction: column; align-items: flex-start; justify-content: center; padding: clamp(4rem, 8vw, 8rem); }
.stats-copy .eyebrow { color: #26320e; }
.stats-copy h2 em { color: white; }
.stats-copy p:not(.eyebrow) { max-width: 500px; margin: 2rem 0; color: #2e3717; }
.button.dark { background: #0b1210; color: white; }
.button.dark:hover { background: #18231f; }

.rentals-section { background: #08110e; }
.coming-soon-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  max-width: 1280px;
  min-height: 470px;
  margin: auto;
  padding: clamp(3rem, 6vw, 6rem);
  border: 1px solid rgba(166,198,58,.22);
  background:
    linear-gradient(135deg, rgba(166,198,58,.04), transparent 40%),
    repeating-linear-gradient(135deg, transparent, transparent 14px, rgba(255,255,255,.012) 14px, rgba(255,255,255,.012) 15px);
}
.corner { position: absolute; width: 28px; height: 28px; border-color: var(--green); }
.corner.tl { top: -1px; left: -1px; border-top: 2px solid; border-left: 2px solid; }
.corner.tr { top: -1px; right: -1px; border-top: 2px solid; border-right: 2px solid; }
.corner.bl { bottom: -1px; left: -1px; border-bottom: 2px solid; border-left: 2px solid; }
.corner.br { bottom: -1px; right: -1px; border-bottom: 2px solid; border-right: 2px solid; }
.rental-copy { max-width: 720px; }
.rental-copy p:not(.eyebrow) { max-width: 570px; margin: 2rem 0 0; color: #8d9992; }
.coming-badge {
  flex: 0 0 220px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--green);
  border-radius: 50%;
  text-align: center;
  box-shadow: inset 0 0 0 9px #08110e, inset 0 0 0 10px rgba(166,198,58,.22);
}
.coming-badge small { color: #73817a; font-size: .55rem; letter-spacing: .25em; }
.coming-badge strong { margin: .65rem 0; color: var(--green); font: 800 2.2rem/.8 var(--display); }
.coming-badge span { width: 110px; color: #6d7972; font-size: .52rem; letter-spacing: .08em; text-transform: uppercase; }

.discord-section {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
  padding: 7rem clamp(1.25rem, 9vw, 9rem);
  background: #303b96;
}
.eyebrow.light { color: #bec5ff; }
.discord-section h2 em { color: #bdc5ff; }
.discord-copy { max-width: 460px; }
.discord-copy p { margin: 0 0 2rem; color: #ced2ef; }
.light-button { background: white; color: #222a74; }

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 3.5rem clamp(1.25rem, 5vw, 5rem) 2rem;
  background: #050907;
}
.footer-brand { grid-row: 1 / 3; }
.site-footer > p { margin: 0; color: #727d76; font-size: .75rem; }
.footer-links { display: flex; gap: 2rem; }
.footer-links a { color: #9ba59f; font-size: .65rem; letter-spacing: .12em; text-transform: uppercase; }
.copyright { grid-column: 2 / 4; padding-top: 1.5rem; border-top: 1px solid #17201c; color: #4f5953; font-size: .55rem; letter-spacing: .06em; }

@media (max-width: 900px) {
  .site-header { position: absolute; }
  .menu-toggle {
    position: relative;
    z-index: 22;
    display: flex;
    flex-direction: column;
    gap: 5px;
    width: 42px;
    padding: 10px;
    border: 0;
    background: transparent;
  }
  .menu-toggle span:not(.sr-only) { display: block; height: 1px; width: 100%; background: white; transition: transform .2s, opacity .2s; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
  .site-nav {
    position: fixed;
    inset: 0;
    z-index: 21;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(5, 12, 10, .98);
    opacity: 0;
    pointer-events: none;
    transition: opacity .2s;
  }
  .site-nav.open { opacity: 1; pointer-events: auto; }
  .site-nav a { font-size: 1rem; }
  .hero-content { width: 90%; }
  .radar { right: -30vw; width: 80vw; opacity: .55; }
  .hero-meta { gap: 2rem; }
  .stats-callout { grid-template-columns: 1fr; }
  .stats-visual { min-height: 430px; }
  .coming-soon-card { flex-direction: column; align-items: start; }
  .coming-badge { align-self: center; }
  .discord-section { align-items: start; flex-direction: column; }
}

@media (max-width: 620px) {
  .brand-copy strong { font-size: 1.35rem; }
  .hero { min-height: 760px; padding-top: 7rem; }
  .hero {
    background:
      linear-gradient(90deg, rgba(5, 13, 11, .94) 0%, rgba(5, 13, 11, .78) 62%, rgba(5, 13, 11, .42) 100%),
      linear-gradient(0deg, rgba(4, 10, 8, .88) 0%, transparent 48%),
      url("dcs-hero.jpg") 58% center / cover no-repeat;
  }
  h1 { font-size: clamp(4rem, 20vw, 6rem); }
  .hero-content { width: 100%; }
  .hero-lead { font-size: .9rem; }
  .hero-meta { gap: 1.2rem; margin-top: 3rem; }
  .hero-meta strong { font-size: 1.25rem; }
  .hero-meta span { font-size: .5rem; }
  .hero-side-label { display: none; }
  .section { padding-top: 6rem; padding-bottom: 6rem; }
  .stats-copy h2, .rental-copy h2, .discord-section h2 { font-size: clamp(3.2rem, 15vw, 4.5rem); }
  .stats-visual { min-height: 340px; padding: 3rem; }
  .stats-copy { padding: 5rem 1.5rem; }
  .coming-soon-card { padding: 3rem 1.5rem; }
  .coming-badge { flex-basis: 190px; width: 190px; }
  .discord-section { padding-top: 5rem; padding-bottom: 5rem; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-brand { grid-row: auto; }
  .copyright { grid-column: auto; }
}

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