/* ============================================================
   INFINITY SPACE — Defence Beyond Limits
   Cinematic aerospace theme · v2026
   Fonts: Saira (display/technical), Hanken Grotesk (body),
          JetBrains Mono (data/specs)
   ============================================================ */

:root {
  --bg:        #04060c;
  --bg-2:      #070a12;
  --bg-3:      #0b0f1a;
  --panel:     rgba(255,255,255,0.035);
  --panel-2:   rgba(255,255,255,0.06);
  --line:      rgba(255,255,255,0.09);
  --line-soft: rgba(255,255,255,0.05);

  --ink:       #eef2f8;
  --ink-2:     #c3cad8;
  --muted:     #8893a6;
  --faint:     #5a6478;

  --accent:    #3fe3ff;        /* signal cyan */
  --accent-deep:#0bb6e0;
  --accent-2:  #2f6bff;        /* electric blue */
  --glow:      rgba(63,227,255,0.35);

  --maxw: 1320px;
  --gutter: clamp(20px, 5vw, 64px);
  --section: clamp(84px, 13vh, 168px);

  --r-sm: 10px;
  --r:    16px;
  --r-lg: 22px;

  --display: "Saira", "Arial Narrow", sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset ---------- */
*,*::before,*::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

::selection { background: var(--accent); color: #02121a; }

/* atmospheric backdrop */
body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(1200px 700px at 78% -8%, rgba(47,107,255,0.10), transparent 60%),
    radial-gradient(900px 600px at 8% 12%, rgba(63,227,255,0.07), transparent 55%);
  pointer-events: none; z-index: 0;
}
/* faint grain */
body::after {
  content: "";
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
  opacity: .025; mix-blend-mode: screen;
  pointer-events: none; z-index: 1;
}

/* ---------- layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); position: relative; z-index: 2; }
section { position: relative; z-index: 2; }
.pad { padding-block: var(--section); }

/* ---------- type ---------- */
h1,h2,h3,h4 { font-family: var(--display); font-weight: 600; line-height: 1.02; letter-spacing: -0.01em; }
.eyebrow {
  font-family: var(--mono);
  font-size: .72rem; letter-spacing: .32em; text-transform: uppercase;
  color: var(--accent); display: inline-flex; align-items: center; gap: .85em;
  margin-bottom: 1.4rem;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: var(--accent); opacity: .8; }
.eyebrow.center::after { content: ""; width: 30px; height: 1px; background: var(--accent); opacity: .8; }

.display { font-size: clamp(2.6rem, 6.4vw, 6rem); }
.h2 { font-size: clamp(1.9rem, 3.6vw, 3.2rem); }
.h3 { font-size: clamp(1.35rem, 2vw, 1.85rem); }
.lead { font-size: clamp(1.05rem, 1.35vw, 1.3rem); color: var(--ink-2); font-weight: 400; }
p { color: var(--muted); }
p + p { margin-top: 1rem; }
.muted { color: var(--muted); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .7em;
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .16em; text-transform: uppercase;
  padding: 1rem 1.9rem; border-radius: 100px;
  border: 1px solid var(--accent); color: var(--accent);
  background: transparent; transition: all .35s var(--ease);
  position: relative; overflow: hidden;
}
.btn::after {
  content: ""; position: absolute; inset: 0; background: var(--accent);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease); z-index: -1;
}
.btn:hover { color: #02121a; border-color: var(--accent); box-shadow: 0 0 40px -8px var(--glow); }
.btn:hover::after { transform: scaleX(1); }
.btn .arr { transition: transform .35s var(--ease); }
.btn:hover .arr { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: .6em;
  font-family: var(--display); font-weight: 600;
  font-size: .82rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink); border-bottom: 1px solid var(--line);
  padding-bottom: .4rem; transition: all .3s var(--ease);
}
.btn-ghost .arr { color: var(--accent); transition: transform .35s var(--ease); }
.btn-ghost:hover { border-color: var(--accent); }
.btn-ghost:hover .arr { transform: translateX(5px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem 1.6rem; align-items: center; margin-top: 2.2rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(4,6,12,0.82);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  max-width: var(--maxw); margin-inline: auto; padding: 0 var(--gutter);
  height: 84px; display: flex; align-items: center; justify-content: space-between;
}
.nav.scrolled .nav-inner { height: 70px; }
.brand img { height: 34px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2.1rem; list-style: none; }
.nav-links > li { position: relative; }
.nav-links a {
  font-family: var(--display); font-weight: 500;
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: rgba(238,242,248,0.74); transition: color .25s; position: relative; padding: 6px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; height: 1px; width: 0; background: var(--accent); transition: width .3s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: .7rem 1.3rem !important; border: 1px solid var(--line); border-radius: 100px; color: #fff !important; }
.nav-cta:hover { border-color: var(--accent); }
.nav-cta::after { display: none; }

/* dropdown */
.has-drop > a { display: inline-flex; align-items: center; gap: .45em; }
.has-drop > a .caret { width: 8px; transition: transform .3s; opacity: .7; }
.drop {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 270px; background: rgba(8,11,20,0.94); backdrop-filter: blur(20px);
  border: 1px solid var(--line); border-radius: var(--r); padding: 10px;
  opacity: 0; visibility: hidden; transition: all .3s var(--ease); list-style: none;
  box-shadow: 0 30px 70px -20px rgba(0,0,0,.8);
}
.drop::before { content: ""; position: absolute; top: -18px; left: 0; right: 0; height: 18px; }
.has-drop:hover .drop { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.has-drop:hover > a .caret { transform: rotate(180deg); }
.drop a {
  display: block; padding: .8rem 1rem; border-radius: var(--r-sm);
  font-size: .8rem; letter-spacing: .1em; color: var(--ink-2); transition: all .22s;
}
.drop a small { display: block; font-family: var(--body); text-transform: none; letter-spacing: 0; font-size: .72rem; color: var(--faint); margin-top: 2px; }
.drop a::after { display: none; }
.drop a:hover { background: var(--panel-2); color: #fff; padding-left: 1.3rem; }

/* burger */
.burger { display: none; width: 38px; height: 38px; position: relative; background: none; border: 0; z-index: 110; }
.burger span { position: absolute; left: 7px; right: 7px; height: 1.5px; background: #fff; transition: all .3s var(--ease); }
.burger span:nth-child(1){ top: 13px; } .burger span:nth-child(2){ top: 19px; } .burger span:nth-child(3){ top: 25px; }
body.menu-open .burger span:nth-child(1){ top: 19px; transform: rotate(45deg); }
body.menu-open .burger span:nth-child(2){ opacity: 0; }
body.menu-open .burger span:nth-child(3){ top: 19px; transform: rotate(-45deg); }

/* mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 105; background: rgba(4,6,12,0.97);
  backdrop-filter: blur(10px); display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter); gap: .2rem; transform: translateY(-100%); transition: transform .55s var(--ease); overflow-y: auto;
}
body.menu-open .mobile-menu { transform: translateY(0); }
.mobile-menu a {
  font-family: var(--display); font-weight: 600; font-size: clamp(1.4rem,5vw,2rem);
  letter-spacing: .02em; color: var(--ink); padding: .5rem 0; border-bottom: 1px solid var(--line-soft);
  opacity: 0; transform: translateX(-20px); transition: all .5s var(--ease);
}
.mobile-menu .sub { font-size: 1.05rem; color: var(--muted); padding-left: 1.2rem; font-weight: 500; }
body.menu-open .mobile-menu a { opacity: 1; transform: translateX(0); }
body.menu-open .mobile-menu a:nth-child(1){transition-delay:.12s}
body.menu-open .mobile-menu a:nth-child(2){transition-delay:.16s}
body.menu-open .mobile-menu a:nth-child(3){transition-delay:.2s}
body.menu-open .mobile-menu a:nth-child(4){transition-delay:.24s}
body.menu-open .mobile-menu a:nth-child(5){transition-delay:.28s}
body.menu-open .mobile-menu a:nth-child(6){transition-delay:.32s}
body.menu-open .mobile-menu a:nth-child(7){transition-delay:.36s}
body.menu-open .mobile-menu a:nth-child(8){transition-delay:.4s}
body.menu-open .mobile-menu a:nth-child(9){transition-delay:.44s}
body.menu-open .mobile-menu a:nth-child(10){transition-delay:.48s}
body.menu-open .mobile-menu a:nth-child(11){transition-delay:.52s}

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; overflow: hidden; }
.hero.short { min-height: 78svh; }
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media video, .hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(4,6,12,0.55) 0%, rgba(4,6,12,0.15) 30%, rgba(4,6,12,0.35) 62%, rgba(4,6,12,0.96) 100%),
    radial-gradient(120% 90% at 80% 30%, transparent 40%, rgba(4,6,12,0.6) 100%);
}
.hero-inner { position: relative; z-index: 3; width: 100%; padding-bottom: clamp(70px, 12vh, 150px); padding-top: 140px; }
.hero h1 { font-size: clamp(2.7rem, 7.2vw, 6.8rem); line-height: .96; max-width: 16ch; }
.hero .lead { max-width: 60ch; margin-top: 1.7rem; }
.hero .eyebrow { animation: fadeUp .8s var(--ease) both; }
.hero h1 { animation: fadeUp .9s .08s var(--ease) both; }
.hero .lead { animation: fadeUp .9s .18s var(--ease) both; }
.hero .btn-row { animation: fadeUp .9s .28s var(--ease) both; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(34px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 3;
  font-family: var(--mono); font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--faint); display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.scroll-cue .bar { width: 1px; height: 42px; background: linear-gradient(var(--accent), transparent); position: relative; overflow: hidden; }
.scroll-cue .bar::after { content:""; position:absolute; top:-42px; left:0; width:1px; height:42px; background: var(--accent); animation: cue 2.2s var(--ease) infinite; }
@keyframes cue { 0%{transform:translateY(0)} 100%{transform:translateY(84px)} }

/* ============================================================
   REVEAL
   ============================================================ */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"]{transition-delay:.1s}.reveal[data-d="2"]{transition-delay:.2s}.reveal[data-d="3"]{transition-delay:.3s}.reveal[data-d="4"]{transition-delay:.4s}

/* ============================================================
   INTRO / STATEMENT
   ============================================================ */
.statement { max-width: 1000px; }
.statement .big {
  font-family: var(--display); font-weight: 500;
  font-size: clamp(1.5rem, 3.2vw, 2.7rem); line-height: 1.22; letter-spacing: -0.01em; color: var(--ink);
}
.statement .big b { color: #fff; font-weight: 600; }

/* stat row */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; margin-top: clamp(40px,6vh,72px); }
.stat { background: var(--bg-2); padding: 2.2rem 1.8rem; }
.stat .n { font-family: var(--display); font-weight: 600; font-size: clamp(2rem,3.4vw,3rem); color: #fff; line-height: 1; }
.stat .n span { color: var(--accent); }
.stat .l { font-family: var(--mono); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); margin-top: .8rem; }

/* ============================================================
   FEATURE SPLIT
   ============================================================ */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(34px, 5vw, 84px); align-items: center; }
.split.rev .split-media { order: 2; }
.split-media { position: relative; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line); }
.split-media img { width: 100%; aspect-ratio: 4/3.2; object-fit: cover; transition: transform 1.1s var(--ease); }
.split-media::after { content:""; position:absolute; inset:0; background: linear-gradient(120deg, transparent 60%, rgba(63,227,255,0.07)); }
.split-media:hover img { transform: scale(1.05); }
.split-media .tag {
  position: absolute; left: 18px; bottom: 18px; z-index: 2;
  font-family: var(--mono); font-size: .65rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--ink); background: rgba(4,6,12,0.6); border: 1px solid var(--line); backdrop-filter: blur(8px);
  padding: .5rem .9rem; border-radius: 100px;
}
.split-text h2 { margin-bottom: 1.3rem; }
.split-text .lead { margin-bottom: 1.2rem; }
.split + .split { margin-top: clamp(70px,10vh,130px); }

/* ============================================================
   MEDIA BAND (full bleed)
   ============================================================ */
.band { position: relative; min-height: 76vh; display: flex; align-items: center; overflow: hidden; }
.band-bg { position: absolute; inset: 0; z-index: 0; }
.band-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-bg::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, rgba(4,6,12,0.92) 0%, rgba(4,6,12,0.65) 45%, rgba(4,6,12,0.25) 100%); }
.band-bg.right::after { background: linear-gradient(270deg, rgba(4,6,12,0.92) 0%, rgba(4,6,12,0.6) 45%, rgba(4,6,12,0.2) 100%); }
.band-inner { position: relative; z-index: 2; }
.band-text { max-width: 620px; }
.band-text h2 { margin-bottom: 1.2rem; }
.band.right .band-text { margin-left: auto; }

/* ============================================================
   CARDS (3-up)
   ============================================================ */
.section-head { max-width: 760px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 { margin-bottom: 1.2rem; }
.cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 26px; margin-top: clamp(44px,6vh,72px); }
.card {
  background: var(--panel); border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; transition: transform .5s var(--ease), border-color .5s, box-shadow .5s; position: relative;
}
.card:hover { transform: translateY(-10px); border-color: rgba(63,227,255,0.4); box-shadow: 0 30px 70px -30px rgba(0,0,0,.9), 0 0 0 1px rgba(63,227,255,0.12); }
.card-img { aspect-ratio: 1/1; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-img img { transform: scale(1.08); }
.card-body { padding: 1.7rem 1.6rem 2rem; }
.card .kick { font-family: var(--mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--accent); }
.card h3 { font-size: 1.3rem; margin: .8rem 0 .7rem; }
.card p { font-size: .95rem; }

/* ============================================================
   MISSION RAIL
   ============================================================ */
.rail { display: grid; grid-template-columns: repeat(4,1fr); gap: 18px; margin-top: clamp(44px,6vh,64px); }
.mission {
  position: relative; aspect-ratio: 3/4; border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--line);
  display: flex; align-items: flex-end; transition: border-color .4s;
}
.mission img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.mission::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 30%, rgba(4,6,12,0.95)); }
.mission:hover img { transform: scale(1.08); }
.mission:hover { border-color: rgba(63,227,255,0.45); }
.mission .m-body { position: relative; z-index: 2; padding: 1.5rem; width: 100%; }
.mission .m-kick { font-family: var(--mono); font-size: .62rem; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.mission h3 { font-size: 1.25rem; margin-top: .5rem; }
.mission .m-go { margin-top: .9rem; display: inline-flex; align-items: center; gap: .5em; font-family: var(--display); font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2); }
.mission .m-go .arr { color: var(--accent); transition: transform .35s var(--ease); }
.mission:hover .m-go .arr { transform: translateX(5px); }

/* ============================================================
   SPECS / DATASHEET
   ============================================================ */
.datasheet { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); }
.datasheet .ds-head {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.2rem 1.6rem; border-bottom: 1px solid var(--line); background: var(--panel);
}
.datasheet .ds-head .t { font-family: var(--display); font-weight: 600; font-size: .9rem; letter-spacing: .14em; text-transform: uppercase; }
.datasheet .ds-head .dot { font-family: var(--mono); font-size: .65rem; letter-spacing: .2em; color: var(--accent); display: inline-flex; align-items: center; gap: .5em; }
.datasheet .ds-head .dot::before { content:""; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 10px var(--glow); }
.ds-grid { display: grid; grid-template-columns: 1fr 1fr; }
.ds-row { display: flex; justify-content: space-between; gap: 1.4rem; padding: 1rem 1.6rem; border-bottom: 1px solid var(--line-soft); border-right: 1px solid var(--line-soft); }
.ds-row .k { font-family: var(--body); font-size: .85rem; color: var(--muted); }
.ds-row .v { font-family: var(--mono); font-size: .82rem; color: #fff; text-align: right; }
.ds-grid .ds-row:nth-child(odd){ border-right: 1px solid var(--line-soft); }

/* ============================================================
   PARTNERS
   ============================================================ */
.partners { text-align: center; }
.partners .eyebrow { justify-content: center; }
.partners-img { margin-top: 2.2rem; padding: clamp(28px,5vw,56px); border: 1px solid var(--line); border-radius: var(--r-lg); background: var(--panel); }
.partners-img img { margin-inline: auto; opacity: .92; filter: brightness(1.05); }

/* ============================================================
   PROSE (legal pages)
   ============================================================ */
.prose { max-width: 820px; }
.prose h2 { font-size: clamp(1.5rem,2.6vw,2.2rem); margin: 2.6rem 0 1.1rem; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 1.15rem; margin: 1.8rem 0 .8rem; color: #fff; }
.prose p { margin-bottom: 1.1rem; color: var(--ink-2); }
.prose a { color: var(--accent); border-bottom: 1px solid rgba(63,227,255,.3); }
.prose strong { color: #fff; }

/* contact cards */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.loc {
  position: relative; min-height: 420px; border-radius: var(--r-lg); overflow: hidden;
  border: 1px solid var(--line); display: flex; align-items: flex-end;
}
.loc img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .9s var(--ease); }
.loc::after { content:""; position:absolute; inset:0; background: linear-gradient(180deg, transparent 35%, rgba(4,6,12,0.95)); }
.loc:hover img { transform: scale(1.05); }
.loc-body { position: relative; z-index: 2; padding: 1.8rem; }
.loc-body h3 { font-size: 1.4rem; margin-bottom: .6rem; }
.loc-body p { color: var(--ink-2); font-size: .95rem; line-height: 1.7; }
.loc-body .btn-ghost { margin-top: 1.2rem; }
.form-frame { border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; background: var(--bg-2); }
.form-frame iframe { width: 100%; border: 0; display: block; background: #fff; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: clamp(64px,8vh,96px) 40px; position: relative; z-index: 2; background: var(--bg-2); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .f-brand img { height: 38px; margin-bottom: 1.4rem; }
.footer .f-brand p { font-size: .92rem; max-width: 34ch; }
.footer .f-brand .mail { display: inline-block; margin-top: 1.2rem; font-family: var(--mono); font-size: .8rem; color: var(--accent); letter-spacing: .04em; }
.footer h4 { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--ink); margin-bottom: 1.3rem; font-weight: 600; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: .75rem; }
.footer ul a { font-size: .9rem; color: var(--muted); transition: color .25s, padding-left .25s; }
.footer ul a:hover { color: var(--accent); padding-left: 4px; }
.socials { display: flex; gap: 12px; margin-top: 1.4rem; }
.socials a { width: 40px; height: 40px; border: 1px solid var(--line); border-radius: 50%; display: grid; place-items: center; color: var(--ink-2); transition: all .3s var(--ease); }
.socials a:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-3px); }
.socials svg { width: 17px; height: 17px; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem; margin-top: clamp(48px,7vh,80px); padding-top: 28px; border-top: 1px solid var(--line-soft); }
.footer-bottom p, .footer-bottom a { font-size: .8rem; color: var(--faint); }
.footer-bottom .legal { display: flex; gap: 1.6rem; }
.footer-bottom .legal a:hover { color: var(--accent); }

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed; left: 50%; bottom: 22px; transform: translateX(-50%);
  z-index: 200; width: min(640px, calc(100% - 32px));
  background: rgba(8,11,20,0.94); backdrop-filter: blur(18px);
  border: 1px solid var(--line); border-radius: var(--r); padding: 1.1rem 1.3rem;
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
  box-shadow: 0 30px 70px -25px rgba(0,0,0,.85);
}
.cookie-banner.hidden { display: none; }
.cookie-banner p { flex: 1 1 280px; font-size: .82rem; color: var(--ink-2); margin: 0; }
.cookie-banner a { color: var(--accent); }
.cookie-banner button {
  font-family: var(--display); font-weight: 600; font-size: .72rem; letter-spacing: .12em; text-transform: uppercase;
  padding: .65rem 1.2rem; border-radius: 100px; border: 1px solid var(--line); background: transparent; color: var(--ink); transition: all .3s;
}
.cookie-banner #accept-cookies { background: var(--accent); border-color: var(--accent); color: #02121a; }
.cookie-banner #accept-cookies:hover { box-shadow: 0 0 26px -6px var(--glow); }
.cookie-banner #reject-cookies:hover { border-color: var(--ink-2); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links, .nav .has-drop .drop { display: none; }
  .burger { display: block; }
  .split, .band-text { grid-template-columns: 1fr; }
  .split { grid-template-columns: 1fr; }
  .split.rev .split-media { order: 0; }
  .cards { grid-template-columns: repeat(2,1fr); }
  .rail { grid-template-columns: repeat(2,1fr); }
  .stats { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ds-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .cards { grid-template-columns: 1fr; }
  .rail { grid-template-columns: 1fr 1fr; }
  .loc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .band-bg::after { background: linear-gradient(180deg, rgba(4,6,12,0.4), rgba(4,6,12,0.9)); }
  .stat { padding: 1.6rem 1.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.form-card {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-2); padding: clamp(24px, 4vw, 52px);
  position: relative; overflow: hidden;
}
.form-card::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(120% 90% at 100% 0%, rgba(63,227,255,0.06), transparent 55%);
}
.cform { position: relative; z-index: 1; }
.cform-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 26px; }
.field { display: flex; flex-direction: column; gap: .55rem; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--display); font-weight: 500;
  font-size: .74rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink-2);
}
.field .req { color: var(--accent); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--body); font-size: .98rem; color: var(--ink);
  background: rgba(255,255,255,0.025); border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: .95rem 1.05rem; transition: border-color .25s, box-shadow .25s, background .25s;
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.55; }
.field select { appearance: none; -webkit-appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233fe3ff' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.1rem center; padding-right: 2.6rem;
}
.field select option { background: #0b0f1a; color: var(--ink); }
.field input::placeholder, .field textarea::placeholder { color: var(--faint); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(63,227,255,0.04); box-shadow: 0 0 0 3px rgba(63,227,255,0.12);
}
.field input.invalid, .field select.invalid, .field textarea.invalid {
  border-color: #ff6b6b; box-shadow: 0 0 0 3px rgba(255,107,107,0.12);
}

/* consent checkbox */
.check { flex-direction: row !important; align-items: flex-start; gap: .75rem !important;
  font-family: var(--body) !important; text-transform: none !important; letter-spacing: 0 !important;
  font-size: .9rem !important; font-weight: 400 !important; color: var(--muted) !important; cursor: pointer; line-height: 1.55; }
.check input { width: 20px; height: 20px; flex: 0 0 20px; margin-top: 2px; accent-color: var(--accent);
  cursor: pointer; border-radius: 4px; }
.check a { color: var(--accent); border-bottom: 1px solid rgba(63,227,255,.3); }

/* honeypot — visually hidden but present for bots */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* actions */
.cform-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.6rem; margin-top: 2rem; }
.cform-actions .btn { border: 0; cursor: pointer; }
.cform-actions .btn::after { background: var(--accent); }
.cform-actions .btn { background: var(--accent); color: #02121a; }
.cform-actions .btn:hover { box-shadow: 0 0 40px -8px var(--glow); }
.cform-note { font-size: .82rem; color: var(--faint); margin: 0; flex: 1 1 220px; }
.cform-note .req { color: var(--accent); }

/* submit loading state */
.cform.sending #cf-submit { opacity: .6; pointer-events: none; }
.cform.sending #cf-submit .btn-label::after { content: "…"; }

/* status banner */
.form-status { display: none; margin-bottom: 1.8rem; padding: 1rem 1.2rem; border-radius: var(--r-sm);
  font-size: .92rem; line-height: 1.5; border: 1px solid var(--line); }
.form-status.show { display: block; animation: fadeUp .5s var(--ease) both; }
.form-status.ok { background: rgba(63,227,255,0.08); border-color: rgba(63,227,255,0.4); color: #d7f7ff; }
.form-status.err { background: rgba(255,107,107,0.08); border-color: rgba(255,107,107,0.4); color: #ffd5d5; }

@media (max-width: 640px) {
  .cform-grid { grid-template-columns: 1fr; }
}
