:root {
  --bg: #081019;
  --bg-soft: #0d1724;
  --panel: rgba(11, 20, 31, 0.86);
  --panel-strong: rgba(14, 25, 39, 0.98);
  --text: #f5f7fb;
  --muted: #95a3b8;
  --line: rgba(255, 255, 255, 0.1);
  --accent: #7dd3fc;
  --accent-2: #7c3aed;
  --shell: min(1180px, calc(100vw - 32px));
  --radius: 28px;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.38);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(124, 58, 237, 0.22), transparent 28%),
    radial-gradient(circle at top right, rgba(125, 211, 252, 0.16), transparent 26%),
    linear-gradient(180deg, #04070d 0%, var(--bg) 36%, #060b12 100%);
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { margin: 0; padding: 0; list-style: none; }
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .1;
  background-image: linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 36px 36px;
}
.shell { width: var(--shell); margin: 0 auto; position: relative; z-index: 1; }
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}
.brand, h1, h2, h3 { font-family: "Space Grotesk", sans-serif; }
.brand { font-size: .95rem; font-weight: 700; letter-spacing: .18em; }
.nav { display: flex; gap: 22px; color: var(--muted); }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero {
  display: grid;
  grid-template-columns: 1.04fr .96fr;
  gap: 18px;
  align-items: stretch;
}
.hero-copy {
  padding: 34px;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-media { overflow: hidden; min-height: 620px; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.06) contrast(1.03);
}
.eyebrow {
  margin: 0 0 14px;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .74rem;
  font-weight: 700;
  color: var(--accent);
}
h1 {
  margin: 0;
  max-width: 9ch;
  font-size: clamp(3.2rem, 7vw, 6rem);
  line-height: .92;
  letter-spacing: -.05em;
}
h2 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: .96;
  letter-spacing: -.05em;
}
h3 { margin: 0; font-size: 1.18rem; }
.lead, .section-head p, .card p, .contact p, .points li { color: var(--muted); line-height: 1.8; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .96rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
}
.primary { background: linear-gradient(135deg, var(--accent-2), var(--accent)); color: #041018; }
.ghost { background: rgba(255,255,255,.04); border-color: var(--line); }
.section { margin-top: 24px; }
.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 28px;
}
.section-head > div { max-width: 560px; }
.section-head p { max-width: 320px; margin: 0; }
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
}
.card {
  min-height: 196px;
  padding: 24px 22px 28px;
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.card:last-child { border-right: 0; }
.no {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .12em;
}
.signal {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 18px;
  align-items: stretch;
}
.signal-copy { padding: 30px; }
.points { display: grid; gap: 12px; margin-top: 22px; }
.points li {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.stack {
  display: flex;
}
.media-large {
  overflow: hidden;
  flex: 1;
  height: 100%;
  min-height: 100%;
}
.media-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contact {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 18px;
  padding: 28px;
}
.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,.03);
  color: var(--text);
  border-radius: 16px;
  padding: .95rem 1rem;
  font: inherit;
}
textarea { resize: vertical; }
.footer {
  padding: 18px 0 30px;
  text-align: center;
  color: var(--muted);
  font-size: .92rem;
}
.footer p { margin: 0; }
.reveal { opacity: 0; transform: translateY(14px); transition: .42s ease; }
.reveal.in-view { opacity: 1; transform: none; }
@media (max-width: 900px) {
  .topbar { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hero, .signal, .card-grid, .contact, .row.two { grid-template-columns: 1fr; }
  .hero-copy, .hero-media { min-height: auto; }
  .stack { display: block; }
  .media-large { min-height: 360px; }
  .section-head { flex-direction: column; align-items: flex-start; padding: 0; }
  .card { border-right: 0; border-top: 1px solid var(--line); }
  .card-grid { border-top: 0; }
}
