/* ── BLACK OPS AI — SHARED STYLESHEET ── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Crimson+Pro:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Space+Mono:wght@400;700&display=swap');

:root {
  --black:       #050506;
  --deep:        #0d0d10;
  --panel:       #13131a;
  --panel-2:     #171720;
  --border:      #2a2a35;
  --dim:         #3a3a48;
  --silver:      #c0c0d0;
  --light:       #d8d8e8;
  --white:       #f0f0f8;
  --red:         #cc2200;
  --red-glow:    #ff3311;
  --amber-glow:  #ffaa00;
  --container:   1280px;
  --gutter:      clamp(20px, 4vw, 48px);
  --section-space: clamp(46px, 6vw, 82px);
  --radius:      18px;
  --font-display: 'Bebas Neue', 'Arial Black', Impact, sans-serif;
  --font-body:   'Crimson Pro', Georgia, 'Times New Roman', serif;
  --font-mono:   'Space Mono', 'Courier New', monospace;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--light);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.28; pointer-events: none; z-index: 30;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p { margin: 0; }
ul { margin: 0; padding: 0; }
section { position: relative; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 100;
  padding: 12px 20px;
  background: var(--red);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top 0.2s ease;
}
.skip-link:focus {
  top: 0;
}

/* ── SHELL ── */
.shell {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
}

/* ── TYPOGRAPHY ── */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--amber-glow);
  margin-bottom: 16px;
}
.section-headline {
  font-family: var(--font-display);
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.96;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 22px;
}

/* ── CARD ── */
.card {
  background: linear-gradient(180deg, rgba(255,255,255,0.01), rgba(255,255,255,0)), var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.01) inset;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 24px;
  border-radius: 12px;
  border: 1px solid var(--dim);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--red); border-color: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-glow); border-color: var(--red-glow); }
.btn-ghost { background: transparent; color: var(--silver); }
.btn-ghost:hover { color: var(--white); border-color: var(--silver); }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5,5,6,0.88);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.nav-inner {
  width: min(var(--container), calc(100% - (var(--gutter) * 2)));
  margin: 0 auto;
  min-height: 100px;
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-logo {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--white);
  white-space: nowrap;
}
.nav-logo span { color: var(--red-glow); }
.nav-logo-img {
  height: 87px;
  width: auto;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  margin-left: auto;
}
.nav-links a, .nav-cta, .menu-toggle {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
}
.nav-links a { color: var(--silver); transition: color 0.18s ease; }
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-cta {
  margin-left: 8px; padding: 11px 18px;
  border-radius: 12px;
  background: var(--white); color: var(--black);
  border: 1px solid var(--white);
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.nav-cta:hover { background: var(--red-glow); border-color: var(--red-glow); color: var(--white); }
.menu-toggle {
  display: none; margin-left: auto;
  background: transparent; color: var(--white);
  border: 1px solid var(--dim); border-radius: 10px;
  padding: 10px 12px; cursor: pointer;
}

/* ── HERO SHARED ── */
.hero-grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    linear-gradient(rgba(204,34,0,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(204,34,0,0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  animation: grid-drift 20s linear infinite;
}
.hero-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 70%, rgba(204,34,0,0.1) 0%, transparent 55%),
    linear-gradient(to bottom, rgba(5,5,6,0.1) 0%, rgba(5,5,6,0.92) 100%);
}
@keyframes grid-drift {
  from { transform: translateY(0); }
  to   { transform: translateY(72px); }
}
.hero-content { position: relative; z-index: 1; }
.hero-headline {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(56px, 9vw, 130px);
  line-height: 0.88;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--white);
}
.hero-headline .accent { color: var(--red-glow); }
.hero-sub {
  max-width: 680px;
  margin-top: 24px;
  font-size: clamp(19px, 2vw, 23px);
  font-style: italic;
  color: var(--light);
}
.hero-actions {
  display: flex; flex-wrap: wrap;
  gap: 14px; margin-top: 32px;
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 28px 0 40px;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px 32px;
  align-items: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 0.18em;
  color: var(--silver);
  text-transform: uppercase;
}
.footer-logo span { color: var(--red); }
.footer-logo-img {
  height: 52px;
  width: auto;
  display: block;
}
.footer-links {
  display: flex; flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  justify-content: flex-end;
}
.footer-links a {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-decoration: none;
  transition: color 0.18s;
  text-transform: uppercase;
}
.footer-links a:hover { color: var(--white); }
.footer-class {
  grid-column: 1 / -1;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--silver);
  text-transform: uppercase;
  padding-top: 4px;
}

/* ── REVEAL ANIMATIONS ── */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: rgba(204,34,0,0.7); border-radius: 99px; }

/* ── RESPONSIVE — NAV ── */
@media (max-width: 980px) {
  .menu-toggle { display: inline-flex; }
  .nav-links, .nav-cta { display: none; }
  .nav-inner.menu-open { flex-wrap: wrap; padding: 14px 0; }
  .nav-inner.menu-open .nav-links {
    display: grid; grid-template-columns: repeat(2, 1fr);
    width: 100%; gap: 12px; order: 4; padding: 10px 0 6px; margin-left: 0;
  }
  .nav-inner.menu-open .nav-cta { display: inline-flex; order: 3; margin-left: 0; }
}
@media (max-width: 720px) {
  body { font-size: 17px; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
}
