:root {
  color-scheme: dark;
  --bg: #050b12;
  --panel: #08131d;
  --text: #f4f7f8;
  --muted: #aab7c1;
  --line: rgba(123, 205, 226, 0.2);
  --accent: #8dd7e8;
}

* { box-sizing: border-box; }

html, body { margin: 0; min-height: 100%; }

body {
  background:
    radial-gradient(circle at 50% 15%, rgba(25, 88, 110, 0.16), transparent 38rem),
    var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.home-shell { width: 100%; }

.hero {
  min-height: calc(100vh - 9rem);
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(19rem, 0.75fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 5rem);
  width: min(100%, 112rem);
  margin: 0 auto;
  padding: clamp(1.25rem, 3vw, 3rem);
}

.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
}

.hero-visual img {
  display: block;
  width: min(100%, 88vh);
  height: auto;
  max-height: 86vh;
  object-fit: contain;
  filter: drop-shadow(0 2rem 4rem rgba(0, 0, 0, 0.45));
}

.hero-copy { max-width: 38rem; }

.eyebrow {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(2.35rem, 5vw, 5.6rem);
  line-height: 0.96;
  letter-spacing: -0.055em;
}

.hero-copy > p:last-child {
  margin: 1.6rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.7;
}

.capabilities {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.05rem 1.5rem;
  overflow: hidden;
}

.capabilities p {
  margin: 0 auto;
  max-width: 100rem;
  color: #c7d3da;
  font-size: clamp(0.68rem, 0.9vw, 0.85rem);
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.8;
  text-align: center;
}

.capabilities span { color: var(--accent); padding: 0 0.35rem; }

footer {
  padding: 1.4rem 1.5rem 2rem;
  color: #7f8d97;
  font-size: 0.78rem;
  text-align: center;
}

footer p { margin: 0; }

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    padding-top: 1rem;
  }

  .hero-visual img {
    width: min(100%, 44rem);
    max-height: none;
  }

  .hero-copy {
    max-width: 46rem;
    margin: 0 auto;
    padding: 0 0.5rem 2rem;
    text-align: center;
  }

  h1 { font-size: clamp(2.5rem, 9vw, 4.5rem); }
}

@media (max-width: 520px) {
  .hero { padding: 0.5rem 0.75rem 1rem; }
  .hero-visual img { width: 100%; }
  .hero-copy { padding-bottom: 1.25rem; }
  .eyebrow { font-size: 0.67rem; }
  .hero-copy > p:last-child { line-height: 1.55; }
  .capabilities { padding-inline: 1rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; }
}
