:root {
  --bg: #040911;
  --bg-soft: #09111d;
  --panel: rgba(11, 18, 31, 0.78);
  --text: #eef5ff;
  --muted: #95a9c8;
  --line: rgba(255, 255, 255, 0.09);
  --accent: #6ed8ff;
  --accent-2: #8c67ff;
  --shell: min(1180px, calc(100vw - 32px));
  --radius: 30px;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    linear-gradient(180deg, #03070c 0%, var(--bg) 48%, #02050a 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.aurora {
  position: fixed;
  border-radius: 999px;
  filter: blur(100px);
  pointer-events: none;
  opacity: .26;
}
.aurora-a {
  width: 360px;
  height: 360px;
  left: 6%;
  top: 6%;
  background: rgba(110, 216, 255, .36);
}
.aurora-b {
  width: 320px;
  height: 320px;
  right: 8%;
  top: 12%;
  background: rgba(140, 103, 255, .24);
}
.shell {
  width: var(--shell);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding: 24px 0 28px;
}
.hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.brand, h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
.brand {
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: lowercase;
}
.nav { display: flex; gap: 22px; color: var(--muted); }
.hero-grid,
.service-grid,
.signal,
.contact {
  display: grid;
  gap: 18px;
}
.hero-grid { grid-template-columns: .92fr 1.08fr; align-items: stretch; }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-copy {
  min-height: 620px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-media {
  min-height: 620px;
  padding: 18px;
  overflow: hidden;
}
.hero-media img,
.image-card img,
.signal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
}
h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3rem, 6.2vw, 5.8rem);
  line-height: .95;
  letter-spacing: -.05em;
}
h2 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(1.95rem, 3.8vw, 3rem);
  line-height: 1;
  letter-spacing: -.05em;
}
h3 { margin: 0; font-size: 1.12rem; }
.lead, .service p, .contact p { color: var(--muted); line-height: 1.85; }
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: .95rem 1.32rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.primary {
  color: #04121c;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}
.ghost {
  color: var(--text);
  background: rgba(255,255,255,.04);
  border-color: var(--line);
}
.section { margin-top: 24px; }
.section-head { margin-bottom: 18px; }
.service-grid { grid-template-columns: repeat(3, 1fr); }
.service {
  min-height: 240px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.image-card { padding: 0; overflow: hidden; }
.no {
  display: inline-block;
  color: var(--accent);
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.signal { grid-template-columns: .8fr 1.2fr; }
.signal-copy,
.contact { padding: 28px; }
.signal-media {
  overflow: hidden;
  min-height: 360px;
  padding: 0;
}
.contact { grid-template-columns: .88fr 1.12fr; }
.form { display: grid; gap: 14px; }
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
label { display: grid; gap: 8px; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: var(--text);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { resize: vertical; }
.submit svg {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}
.reveal { opacity: 0; transform: translateY(14px); transition: .42s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 980px) {
  .hero-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .hero-grid, .service-grid, .signal, .contact, .row.two { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: 360px; }
}
