/* =====================
   RESET & ROOT
===================== */
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
:root{
  --bg:#080808;
  --bg-2:#0f0f0f;
  --bg-3:#161616;
  --white:#ffffff;
  --grey-1:#e0e0e0;
  --grey-2:#a0a0a0;
  --grey-3:#606060;
  --grey-4:#2a2a2a;
  --grey-5:#1a1a1a;
  --border:rgba(255,255,255,0.07);
  --border-mid:rgba(255,255,255,0.14);
  --border-strong:rgba(255,255,255,0.25);
}

html{scroll-behavior:smooth}
body{
  background:var(--bg);
  color:var(--grey-1);
  font-family:'DM Sans',sans-serif;
  font-size:16px;
  line-height:1.7;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
}

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");
  pointer-events:none;
  z-index:0;
  opacity:0.4;
}

.wrap{max-width:1020px;margin:0 auto;padding:0 28px;position:relative;z-index:1}

/* =====================
   NAV
===================== */
nav{
  position:fixed;
  top:0;left:0;right:0;
  z-index:100;
  padding:0 28px;
  border-bottom:0.5px solid var(--border);
  background:rgba(8,8,8,0.92);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
}
.nav-inner{
  max-width:1020px;
  margin:0 auto;
  display:flex;
  justify-content:space-between;
  align-items:center;
  height:64px;
}
.nav-logo{
  font-family:'Orbitron',monospace;
  font-size:13px;
  font-weight:700;
  letter-spacing:0.25em;
  color:var(--white);
  text-decoration:none;
  flex-shrink:0;
}
.nav-links{
  display:flex;
  align-items:center;
  gap:32px;
}
.nav-links a{
  font-family:'Orbitron',monospace;
  font-size:8px;
  letter-spacing:0.22em;
  color:var(--grey-3);
  text-decoration:none;
  text-transform:uppercase;
  transition:color 0.2s;
}
.nav-links a:hover,
.nav-links a.active{
  color:var(--white);
}
.nav-cta{
  padding:9px 18px;
  border:0.5px solid var(--border-mid);
  font-family:'Orbitron',monospace;
  font-size:8px;
  letter-spacing:0.22em;
  color:var(--white) !important;
  text-decoration:none;
  text-transform:uppercase;
  transition:border-color 0.2s, background 0.2s !important;
}
.nav-cta:hover{
  border-color:var(--border-strong) !important;
  background:rgba(255,255,255,0.04) !important;
}
.nav-hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:4px;
  background:none;
  border:none;
}
.nav-hamburger span{
  display:block;
  width:22px;
  height:0.5px;
  background:var(--grey-2);
  transition:transform 0.2s, opacity 0.2s;
}
.nav-mobile{
  display:none;
  position:fixed;
  top:64px;left:0;right:0;
  background:rgba(8,8,8,0.98);
  border-bottom:0.5px solid var(--border);
  z-index:99;
  padding:24px 28px;
  flex-direction:column;
  gap:20px;
}
.nav-mobile.open{display:flex}
.nav-mobile a{
  font-family:'Orbitron',monospace;
  font-size:10px;
  letter-spacing:0.25em;
  color:var(--grey-2);
  text-decoration:none;
  text-transform:uppercase;
  padding:8px 0;
  border-bottom:0.5px solid var(--border);
}
.nav-mobile a:last-child{border-bottom:none}
.nav-mobile a.active{color:var(--white)}

/* =====================
   PAGE HEADER
===================== */
.page-header{
  padding:140px 0 64px;
  border-bottom:0.5px solid var(--border);
}
.page-header-eyebrow{
  font-family:'Orbitron',monospace;
  font-size:9px;
  letter-spacing:0.35em;
  color:var(--grey-3);
  text-transform:uppercase;
  margin-bottom:20px;
  display:flex;
  align-items:center;
  gap:12px;
}
.page-header-eyebrow::before{
  content:'';
  display:block;
  width:24px;
  height:0.5px;
  background:var(--grey-3);
}
.page-header h1{
  font-family:'Orbitron',monospace;
  font-size:clamp(28px, 5vw, 52px);
  font-weight:900;
  color:var(--white);
  letter-spacing:0.04em;
  line-height:1.1;
}

/* =====================
   SHARED TEXT
===================== */
.body-text{
  font-size:15px;
  color:var(--grey-2);
  line-height:2.1;
  font-weight:300;
}
.body-text strong{color:var(--white);font-weight:400}
.body-text p+p{margin-top:24px}

.section-id{
  font-family:'Orbitron',monospace;
  font-size:9px;
  letter-spacing:0.3em;
  color:var(--grey-3);
  text-transform:uppercase;
  line-height:1.8;
  position:sticky;
  top:88px;
}
.section-id .num{
  display:block;
  font-size:32px;
  color:var(--grey-5);
  font-weight:900;
  letter-spacing:0;
  line-height:1;
  margin-bottom:8px;
  font-family:'Orbitron',monospace;
}
.section-grid{
  display:grid;
  grid-template-columns:1fr 2fr;
  gap:64px;
  align-items:start;
}

.pull-quote{
  margin:0 0 32px;
  padding:24px 24px 24px 28px;
  border-left:1px solid var(--grey-3);
  background:var(--bg-2);
}
.pull-quote p{
  font-family:'Orbitron',monospace;
  font-size:13px;
  color:var(--white);
  letter-spacing:0.06em;
  line-height:1.8;
  font-weight:600;
}

/* =====================
   FOOTER
===================== */
footer{
  padding:28px 0;
  border-top:0.5px solid var(--border);
  margin-top:auto;
}
.footer-inner{
  max-width:1020px;
  margin:0 auto;
  padding:0 28px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
}
.footer-logo{
  font-family:'Orbitron',monospace;
  font-size:11px;
  letter-spacing:0.3em;
  color:var(--grey-3);
}
.footer-links{display:flex;gap:24px;flex-wrap:wrap}
.footer-links a{
  font-family:'Orbitron',monospace;
  font-size:8px;
  letter-spacing:0.2em;
  color:var(--grey-4);
  text-decoration:none;
  text-transform:uppercase;
  transition:color 0.2s;
}
.footer-links a:hover{color:var(--grey-2)}
.footer-tag{
  font-family:'Orbitron',monospace;
  font-size:9px;
  color:var(--grey-3);
  letter-spacing:0.18em;
  font-style:italic;
}

/* =====================
   FADE IN ON SCROLL
===================== */
.fade-up{
  opacity:0;
  transform:translateY(24px);
  transition:opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible{
  opacity:1;
  transform:translateY(0);
}

/* =====================
   FORM ELEMENTS
===================== */
.form-input{
  width:100%;
  padding:16px 20px;
  background:var(--bg-2);
  border:0.5px solid var(--border-mid);
  color:var(--white);
  font-family:'DM Sans',sans-serif;
  font-size:14px;
  outline:none;
  transition:border-color 0.2s;
  -webkit-appearance:none;
  border-radius:0;
}
.form-input::placeholder{color:var(--grey-3);font-size:13px}
.form-input:focus{border-color:var(--border-strong)}
textarea.form-input{resize:vertical;min-height:120px}
.btn-primary{
  width:100%;
  padding:17px;
  background:var(--white);
  color:var(--bg);
  border:none;
  font-family:'Orbitron',monospace;
  font-size:10px;
  font-weight:700;
  letter-spacing:0.28em;
  cursor:pointer;
  text-transform:uppercase;
  transition:background 0.2s;
  border-radius:0;
}
.btn-primary:hover{background:var(--grey-1)}
.btn-ghost{
  display:inline-block;
  padding:14px 28px;
  border:0.5px solid var(--border-mid);
  font-family:'Orbitron',monospace;
  font-size:9px;
  font-weight:700;
  letter-spacing:0.25em;
  cursor:pointer;
  text-transform:uppercase;
  transition:border-color 0.2s, color 0.2s;
  text-decoration:none;
  color:var(--grey-1);
  background:none;
}
.btn-ghost:hover{border-color:var(--border-strong);color:var(--white)}

/* =====================
   RESPONSIVE
===================== */
@media(max-width:720px){
  .section-grid{grid-template-columns:1fr;gap:40px}
  .section-id{position:static}
  .nav-links{display:none}
  .nav-hamburger{display:flex}
  .footer-inner{flex-direction:column;gap:16px;text-align:center}
  .footer-links{justify-content:center}
}
