:root {
  --bg: #06080c;
  --text: #f7f4ef;
  --muted: #b9b3a8;
  --line: rgba(255, 255, 255, 0.08);
  --gold: #d4ab57;
  --gold-soft: #ffdb96;
  --rose: #f6b3b3;
  --cyan: #77d4e7;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  --radius: 28px;
  --container: min(1200px, calc(100vw - 48px));
  --mobile-header-height: 132px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(circle at top left, rgba(212, 171, 87, 0.14), transparent 34%),
    radial-gradient(circle at 85% 20%, rgba(240, 139, 159, 0.14), transparent 28%),
    linear-gradient(180deg, #090c12 0%, #05070a 48%, #08090d 100%);
  color: var(--text);
  font-family: "Manrope", sans-serif;
  overflow-x: hidden;
}

img,
svg,
video,
canvas {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button, a, .tilt-card, .magnetic { -webkit-tap-highlight-color: transparent; }

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
}

.ambient, .grid-noise {
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.ambient-one {
  background: radial-gradient(circle at 20% 18%, rgba(240, 139, 159, 0.18), transparent 24%);
  filter: blur(18px);
  animation: drift 12s ease-in-out infinite alternate;
}

.ambient-two {
  background: radial-gradient(circle at 80% 30%, rgba(119, 212, 231, 0.12), transparent 24%);
  filter: blur(20px);
  animation: drift 16s ease-in-out infinite alternate-reverse;
}

.grid-noise {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: radial-gradient(circle at center, black 52%, transparent 100%);
}

.section, .site-footer {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0;
  padding: 22px max(24px, calc((100vw - 1200px) / 2));
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(7, 9, 13, 0.7), rgba(7, 9, 13, 0.34));
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Syne", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand-mark {
  width: 16px;
  height: 16px;
  border-radius: 5px;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  box-shadow: 0 0 24px rgba(246, 179, 179, 0.45);
}

.brand-text { font-size: 0.95rem; }

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  color: rgba(247, 244, 239, 0.74);
  font-size: 0.9rem;
  justify-content: center;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.section {
  position: relative;
  padding: 72px 0;
}

.hero {
  min-height: calc(100vh - 88px);
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 46px;
  padding-top: 56px;
}

.eyebrow, .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.eyebrow::before, .section-tag::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

h1, h2, h3 {
  margin: 0;
  font-family: "Syne", sans-serif;
  line-height: 0.96;
  letter-spacing: -0.04em;
  text-wrap: balance;
  overflow-wrap: anywhere;
  word-break: normal;
}

h1 {
  margin-top: 18px;
  font-size: clamp(3.4rem, 8vw, 7.2rem);
  max-width: 9ch;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.4rem);
  max-width: 12ch;
}

h3 { font-size: 1.55rem; }

.accent-line {
  display: block;
  color: var(--rose);
  text-shadow: 0 0 24px rgba(246, 179, 179, 0.18);
}

.hero-text,
.intro-band p,
.capability-card p,
.showcase-copy p,
.mini-panel p,
.timeline-step p,
.cta-section p,
.site-footer {
  color: var(--muted);
  line-height: 1.7;
}

.hero-text {
  max-width: 62ch;
  margin: 28px 0 0;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  position: relative;
  width: fit-content;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 24px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
}

.button::before {
  content: "";
  position: absolute;
  inset: -120%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.32), transparent 35%);
  opacity: 0;
  transition: opacity 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
}

.button-solid {
  color: #170f10;
  background: linear-gradient(135deg, var(--rose), #ffd4d4);
  box-shadow: 0 14px 44px rgba(246, 179, 179, 0.28);
}

.button-outline, .button-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.02);
}

.button-ghost:hover,
.button-outline:hover {
  border-color: rgba(212, 171, 87, 0.45);
  box-shadow: inset 0 0 0 1px rgba(212, 171, 87, 0.2);
}

.hero-visual {
  position: relative;
  min-height: 700px;
  perspective: 1200px;
}

.hero-tower {
  position: absolute;
  inset: 6% 0 8% 12%;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(6, 8, 12, 0.18), rgba(6, 8, 12, 0.86)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    url("https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1400&q=80"),
    linear-gradient(180deg, rgba(6, 8, 12, 0.15), rgba(6, 8, 12, 0.88)),
    linear-gradient(180deg, #1c2832 0%, #15222b 42%, #0a0e15 100%);
  background-size: auto, 48px 100%, 100% 48px, cover, auto, auto;
  background-position: center, center, center, center, center, center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow);
  transform: rotateY(-13deg) rotateX(4deg);
}

.hero-tower::before,
.hero-tower::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-tower::before {
  background: linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 48%, transparent 53%);
  transform: translateX(-120%);
  animation: shine 7s linear infinite;
}

.hero-tower::after {
  background: radial-gradient(circle at 40% 18%, rgba(255, 208, 150, 0.24), transparent 20%);
}

.glass-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.72), rgba(8, 11, 16, 0.78));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.command-card {
  right: 0;
  bottom: 88px;
  width: min(310px, 62%);
  max-width: 100%;
  padding: 24px;
  border-radius: 26px;
}

.floating-card { animation: floatY 6s ease-in-out infinite; }

.card-topline {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(247, 244, 239, 0.84);
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), #fff2cf);
  box-shadow: 0 0 20px rgba(212, 171, 87, 0.55);
}

.metric-stack {
  display: grid;
  gap: 20px;
  margin-top: 22px;
}

.metric-stack p, .metric-box p {
  margin: 0 0 6px;
  color: rgba(247, 244, 239, 0.54);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.metric-stack strong, .metric-box strong {
  font-family: "Syne", sans-serif;
  font-size: clamp(1.7rem, 4vw, 2.8rem);
}

.orbit-card {
  left: 2%;
  top: 11%;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at center, rgba(9, 12, 18, 0.92) 0 56%, rgba(9, 12, 18, 0.22) 57%, transparent 58%),
    linear-gradient(180deg, rgba(17, 21, 27, 0.72), rgba(8, 11, 16, 0.78));
}

.orbit-card::before {
  content: "";
  width: 74%;
  height: 74%;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: inset 0 0 40px rgba(255, 255, 255, 0.03);
}

.orbit-item {
  position: absolute;
  inset: 0;
}

.orbit-item span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: max-content;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transform:
    translate(-50%, -50%)
    rotate(var(--angle))
    translateY(-112px)
    rotate(calc(var(--angle) * -1));
  animation: orbitLabel 18s linear infinite;
  animation-delay: calc(var(--angle) * -0.04s);
}

.intro-band {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: end;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.capability-card,
.mini-panel,
.timeline-step,
.metric-box,
.showcase-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(17, 21, 27, 0.92), rgba(11, 14, 20, 0.84));
  box-shadow: var(--shadow);
}

.capability-card {
  min-height: 260px;
  padding: 28px;
}

.capability-card::before,
.mini-panel::before,
.timeline-step::before,
.metric-box::before,
.showcase-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(246, 179, 179, 0.13), transparent 30%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.capability-card:hover::before,
.mini-panel:hover::before,
.timeline-step:hover::before,
.metric-box:hover::before,
.showcase-main:hover::before {
  opacity: 1;
}

.icon-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #170f10;
  background: linear-gradient(135deg, var(--gold), #ffe8b3);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.capability-card h3,
.mini-panel h3,
.timeline-step h3 {
  margin-top: 24px;
  margin-bottom: 12px;
}

.showcase {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 18px;
}

.showcase-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  min-height: 560px;
}

.showcase-image {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8, 11, 16, 0.06), rgba(8, 11, 16, 0.9)),
    radial-gradient(circle at 68% 22%, rgba(255, 216, 157, 0.22), transparent 18%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.06) 0 2px, transparent 2px 18px),
    url("https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?auto=format&fit=crop&w=1400&q=80"),
    linear-gradient(135deg, #11161d 0%, #1e2932 45%, #0a0d13 100%);
  min-height: 100%;
  background-size: auto, auto, auto, cover, auto;
  background-position: center, center, center, center, center;
}

.showcase-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 10%, rgba(4, 5, 8, 0.65) 100%),
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.08), transparent 22%);
  transform: scale(1.02);
}

.showcase-overlay {
  position: absolute;
  inset: auto 8% 10% 8%;
  height: 34%;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(26, 20, 16, 0.18), rgba(255, 221, 178, 0.06));
  backdrop-filter: blur(8px);
}

.image-label {
  position: absolute;
  left: 26px;
  bottom: 22px;
  margin: 0;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold-soft);
}

.showcase-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  min-width: 0;
}

.showcase-copy h2 {
  max-width: 8ch;
  font-size: clamp(2rem, 4vw, 3.9rem);
  line-height: 0.98;
}

.mini-panel h3,
.timeline-step h3,
.capability-card h3 {
  max-width: 14ch;
  line-height: 1.02;
}

.showcase-side {
  display: grid;
  gap: 18px;
}

.mini-panel {
  min-height: 271px;
  padding: 28px;
}

.mini-panel-image {
  display: grid;
  grid-template-rows: 1fr auto;
  padding: 0;
}

.mini-visual {
  min-height: 180px;
  background:
    linear-gradient(180deg, rgba(7, 10, 14, 0.12), rgba(7, 10, 14, 0.84)),
    linear-gradient(90deg, rgba(76, 164, 188, 0.28), rgba(255, 255, 255, 0.02)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.07) 0 2px, transparent 2px 16px),
    url("https://images.unsplash.com/photo-1600585154526-990dced4db0d?auto=format&fit=crop&w=1200&q=80"),
    linear-gradient(135deg, #102230 0%, #1c2d36 52%, #0d1016 100%);
  background-size: auto, auto, auto, cover, auto;
  background-position: center, center, center, center, center;
}

.mini-panel-image > div:last-child { padding: 24px 28px 28px; }

.metrics-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-box { padding: 28px; }

.process-section { padding-bottom: 96px; }

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 22px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(212, 171, 87, 0.42), transparent);
}

.timeline-step {
  padding: 58px 26px 28px;
}

.timeline-step span {
  position: absolute;
  left: 24px;
  top: 18px;
  font-family: "Syne", sans-serif;
  color: var(--rose);
  font-size: 0.95rem;
  letter-spacing: 0.24em;
}

.cta-section {
  overflow: hidden;
  text-align: center;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 20%, rgba(246, 179, 179, 0.12), transparent 22%),
    linear-gradient(180deg, rgba(17, 21, 27, 0.94), rgba(9, 11, 15, 0.96));
}

.cta-section h2,
.cta-section p {
  margin-left: auto;
  margin-right: auto;
}

.cta-section h2 {
  max-width: 12ch;
  margin-top: 18px;
}

.cta-section > p:last-of-type {
  max-width: 58ch;
  margin-top: 18px;
}

.cta-section .hero-actions { justify-content: center; }

.cta-orb {
  position: absolute;
  width: 180px;
  height: 180px;
  top: -32px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #fff5db 0%, var(--gold) 24%, rgba(240, 139, 159, 0.28) 56%, transparent 72%);
  filter: blur(12px);
  opacity: 0.8;
  animation: pulseOrb 6s ease-in-out infinite;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  padding: 24px 0 42px;
  border-top: 1px solid var(--line);
  font-size: 0.86rem;
}

.hero-copy,
.intro-band > div,
.intro-band > p,
.showcase-copy,
.mini-panel,
.timeline-step,
.metric-box,
.capability-card,
.cta-section {
  min-width: 0;
}

[data-reveal] {
  opacity: 0;
  transform: translate3d(0, 24px, 0) scale(0.98);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal="left"] { transform: translate3d(28px, 0, 0) scale(0.98); }
[data-reveal="zoom"] { transform: scale(0.92); }
[data-reveal].revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

@keyframes drift {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(24px, -18px, 0) scale(1.08); }
}

@keyframes shine {
  to { transform: translateX(120%); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}

@keyframes orbitLabel {
  from {
    transform:
      translate(-50%, -50%)
      rotate(var(--angle))
      translateY(-112px)
      rotate(calc(var(--angle) * -1))
      translateZ(0);
  }
  to {
    transform:
      translate(-50%, -50%)
      rotate(calc(var(--angle) + 360deg))
      translateY(-112px)
      rotate(calc((var(--angle) + 360deg) * -1))
      translateZ(0);
  }
}

@keyframes pulseOrb {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: 0.68; }
  50% { transform: translateX(-50%) scale(1.08); opacity: 0.95; }
}

@media (max-width: 1080px) {
  .hero, .intro-band, .showcase, .showcase-main, .metrics-strip, .timeline, .capability-grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-header {
    flex-wrap: wrap;
    justify-content: center;
  }

  .button-outline {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-copy,
  .hero-visual,
  .showcase-main,
  .showcase-side,
  .intro-band > *:last-child,
  .section-heading {
    grid-column: 1 / -1;
  }

  .section-heading { display: block; }
  .section-heading h2 { margin-top: 12px; }
  .showcase-main { min-height: 0; }
  .site-footer { flex-direction: column; }
  .hero-visual { min-height: 620px; }
  .orbit-card { left: auto; right: 0; top: 5%; }
  .command-card { right: 2%; }
  .showcase-copy h2 {
    max-width: 10ch;
  }
}

@media (max-width: 920px) {
  .section {
    padding: 64px 0;
  }

  .hero {
    gap: 32px;
    padding-top: 34px;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(3rem, 10vw, 5.8rem);
  }

  h2 {
    max-width: 100%;
    font-size: clamp(2rem, 6vw, 3.6rem);
  }

  .hero-text,
  .intro-band p,
  .capability-card p,
  .showcase-copy p,
  .mini-panel p,
  .timeline-step p,
  .cta-section p {
    font-size: 0.98rem;
  }

  .showcase-copy {
    padding: 28px;
  }

  .showcase-main {
    grid-template-columns: 1fr;
  }

  .showcase-image {
    min-height: 320px;
  }

  .showcase-copy h2 {
    max-width: 100%;
    font-size: clamp(2rem, 5vw, 3.2rem);
  }

  .mini-panel,
  .metric-box,
  .timeline-step,
  .capability-card {
    padding: 24px;
  }

  .timeline::before {
    left: 8%;
    right: 8%;
  }
}

@media (max-width: 720px) {
  :root { --container: min(1200px, calc(100vw - 28px)); }

  body {
    padding-top: calc(var(--mobile-header-height) + env(safe-area-inset-top, 0px));
  }

  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    padding: calc(18px + env(safe-area-inset-top, 0px)) 14px 14px;
    gap: 12px;
    min-height: var(--mobile-header-height);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(7, 9, 13, 0.94);
    transform: none !important;
    will-change: auto;
    backface-visibility: visible;
  }

  .site-nav {
    width: 100%;
    justify-content: center;
    gap: 18px;
    font-size: 0.78rem;
    padding-top: 2px;
  }

  .button {
    width: 100%;
  }

  .site-header > .button-outline {
    width: min(100%, 240px);
  }

  .hero, .capability-grid, .showcase, .showcase-main, .metrics-strip, .timeline, .intro-band {
    grid-template-columns: 1fr;
  }

  .section { padding: 58px 0; }
  .hero { padding-top: 24px; min-height: auto; }
  .hero-visual { min-height: 520px; }
  .hero-tower { inset: 10% 0 18% 4%; }
  .command-card { width: min(280px, 88%); bottom: 28px; }
  .orbit-card { left: auto; right: -2%; top: -2%; transform: scale(0.72); }
  .capability-card, .mini-panel, .metric-box, .timeline-step { min-height: 0; }
  .cta-section { border-radius: 28px; }
  .hero-actions {
    flex-direction: column;
  }
  .timeline::before {
    display: none;
  }
  .site-footer {
    padding-bottom: 34px;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 22px);
    --mobile-header-height: 124px;
  }

  .site-header {
    gap: 14px;
    padding: calc(16px + env(safe-area-inset-top, 0px)) 12px 16px;
  }

  .brand {
    gap: 10px;
  }

  .brand-text {
    font-size: 0.82rem;
  }

  .site-nav {
    gap: 10px 14px;
    font-size: 0.72rem;
    line-height: 1.4;
  }

  .section {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.45rem, 13vw, 4rem);
    line-height: 0.98;
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.8rem);
    line-height: 1;
  }

  h3 {
    font-size: 1.3rem;
  }

  .showcase-copy h2,
  .section-heading h2,
  .intro-band h2,
  .cta-section h2 {
    max-width: 100%;
    text-wrap: pretty;
  }

  .eyebrow,
  .section-tag {
    gap: 8px;
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::before,
  .section-tag::before {
    width: 24px;
  }

  .hero-text,
  .intro-band p,
  .capability-card p,
  .showcase-copy p,
  .mini-panel p,
  .timeline-step p,
  .cta-section p {
    font-size: 0.92rem;
    line-height: 1.65;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-tower {
    inset: 12% 0 18% 2%;
    border-radius: 28px;
  }

  .command-card {
    left: 0;
    right: 0;
    bottom: 18px;
    width: 100%;
    padding: 18px;
    border-radius: 22px;
  }

  .orbit-card {
    display: none;
  }

  .metric-stack {
    gap: 14px;
  }

  .capability-card,
  .mini-panel,
  .metric-box,
  .timeline-step,
  .showcase-copy {
    padding: 20px;
  }

  .showcase-overlay {
    inset: auto 6% 8% 6%;
  }

  .cta-section {
    border-radius: 22px;
  }

  .cta-orb {
    width: 130px;
    height: 130px;
    top: -18px;
  }
}

@media (max-width: 380px) {
  .site-nav {
    gap: 10px 12px;
  }

  .button {
    min-height: 50px;
    padding: 0 18px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .hero {
    gap: 24px;
  }

  .hero-visual {
    min-height: 390px;
  }

  .metric-stack strong,
  .metric-box strong {
    font-size: clamp(1.4rem, 8vw, 2rem);
  }
}

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

  [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
  }
}
