@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Space+Grotesk:wght@500;600;700&display=swap');

:root {
  --midnight: #071522;
  --midnight-2: #0b1d2d;
  --charcoal: #11161c;
  --steel: #2d5b8f;
  --cyan: #00b8ff;
  --amber: #ffb02e;
  --white: #f5f7fa;
  --muted: #aab7c4;
  --border: rgba(255,255,255,.12);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--midnight);
  color: var(--white);
  font-family: Inter, system-ui, sans-serif;
  line-height: 1.6;
}
a { color: inherit; }
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(var(--max), calc(100% - 40px));
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand img { display: block; width: 210px; height: auto; }
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  text-decoration: none;
  font-size: 14px;
  color: #c9d3dd;
}
nav a:hover { color: white; }
.nav-contact {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 9px 17px;
}
.hero {
  min-height: 780px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.25fr .75fr;
  align-items: center;
  padding: 160px max(20px, calc((100vw - var(--max))/2)) 90px;
  background:
    radial-gradient(circle at 75% 45%, rgba(0,184,255,.12), transparent 26%),
    radial-gradient(circle at 88% 22%, rgba(255,176,46,.08), transparent 18%),
    linear-gradient(135deg, #071522 0%, #0a1a29 56%, #06111c 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to right, transparent, black 45%, black);
}
.hero-content { z-index: 2; max-width: 720px; }
.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 18px;
}
h1, h2, h3 {
  font-family: "Space Grotesk", Inter, sans-serif;
  line-height: 1.08;
  margin-top: 0;
}
h1 {
  font-size: clamp(54px, 6.5vw, 92px);
  letter-spacing: -.055em;
  margin-bottom: 28px;
}
h1 span {
  background: linear-gradient(90deg, var(--cyan), #7edfff 45%, var(--amber));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-copy {
  max-width: 670px;
  font-size: 19px;
  color: #b8c5d2;
  margin: 0 0 38px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 9px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #04111b;
  background: linear-gradient(120deg, var(--cyan), #62d6ff);
  box-shadow: 0 10px 36px rgba(0,184,255,.18);
}
.button-secondary {
  border: 1px solid var(--border);
  color: #dce5ed;
  background: rgba(255,255,255,.035);
}
.hero-mark {
  z-index: 2;
  width: min(430px, 39vw);
  aspect-ratio: 1;
  justify-self: end;
  position: relative;
  display: grid;
  place-items: center;
}
.hero-mark img {
  width: 67%;
  filter: drop-shadow(0 30px 60px rgba(0,0,0,.42));
}
.mark-orbit {
  position: absolute;
  border: 1px solid rgba(0,184,255,.18);
  border-radius: 50%;
}
.orbit-one { inset: 5%; }
.orbit-two {
  inset: 18%;
  border-color: rgba(255,176,46,.17);
}
.mark-orbit::before, .mark-orbit::after {
  content: "";
  position: absolute;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  top: 50%; left: -4px;
  box-shadow: 0 0 18px var(--cyan);
}
.mark-orbit::after {
  left: auto; right: -4px;
  background: var(--amber);
  box-shadow: 0 0 18px var(--amber);
}
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 120px 20px;
}
.section-heading { max-width: 800px; margin-bottom: 52px; }
.section-heading h2, .studio-panel h2, .contact-inner h2 {
  font-size: clamp(38px, 5vw, 58px);
  letter-spacing: -.04em;
  margin-bottom: 20px;
}
.section-heading > p:last-child {
  color: var(--muted);
  font-size: 18px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 22px;
}
.card {
  padding: 38px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.018));
}
.card:first-child { box-shadow: inset 0 1px 0 rgba(0,184,255,.12); }
.card:last-child { box-shadow: inset 0 1px 0 rgba(255,176,46,.12); }
.card-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  background: rgba(0,184,255,.08);
  margin-bottom: 34px;
}
.card:last-child .card-icon { background: rgba(255,176,46,.09); }
.card-icon svg {
  width: 30px; fill: none; stroke: var(--cyan);
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.card:last-child .card-icon svg { stroke: var(--amber); }
.card-label {
  color: var(--cyan);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .15em;
  font-weight: 700;
}
.card:last-child .card-label { color: var(--amber); }
.card h3 { font-size: 31px; letter-spacing: -.035em; margin-bottom: 18px; }
.card > p:last-child { color: var(--muted); margin-bottom: 0; }
.studio-section { padding-top: 60px; }
.studio-panel {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.studio-copy { color: var(--muted); font-size: 18px; }
.contact-section {
  margin: 0 20px 40px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 15% 50%, rgba(0,184,255,.13), transparent 28%),
    linear-gradient(115deg, #0c2234, #08131f);
  border: 1px solid var(--border);
}
.contact-inner {
  max-width: var(--max);
  min-height: 360px;
  margin: 0 auto;
  padding: 66px 20px;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 42px;
}
.contact-inner > img { width: 120px; }
.contact-inner h2 { margin-bottom: 12px; }
.contact-inner p:last-child { color: var(--muted); margin: 0; }
footer {
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 20px 44px;
  color: #7f909f;
  font-size: 13px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
footer div { display: flex; gap: 18px; }
footer strong { color: #c8d3dd; }
footer a { text-decoration: none; }
footer a:hover { color: white; }

@media (max-width: 850px) {
  .site-header { height: 80px; }
  .brand img { width: 170px; }
  nav a:not(.nav-contact) { display: none; }
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 145px;
  }
  .hero-mark {
    width: min(400px, 90vw);
    justify-self: center;
    margin-top: 55px;
  }
  .cards, .studio-panel { grid-template-columns: 1fr; }
  .studio-panel { gap: 20px; }
  .contact-inner {
    grid-template-columns: 70px 1fr;
  }
  .contact-inner > img { width: 70px; }
  .contact-inner .button { grid-column: 1 / -1; justify-self: start; }
}
@media (max-width: 560px) {
  .site-header { width: calc(100% - 28px); }
  .brand img { width: 150px; }
  .hero { padding-left: 18px; padding-right: 18px; }
  h1 { font-size: 49px; }
  .hero-copy { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .section { padding: 90px 18px; }
  .card { padding: 28px; }
  .contact-section { margin: 0 10px 25px; }
  .contact-inner { padding: 48px 18px; }
  footer, footer div { flex-direction: column; gap: 7px; }
}
