:root {
  --bg: #050b14;
  --panel: #0b1422;
  --panel-2: #111c2e;
  --line: rgba(141, 181, 255, 0.16);
  --text: #f7f8fb;
  --muted: #b8c5d8;
  --dim: #7e8da6;
  --cyan: #2dd4bf;
  --blue: #2563eb;
  --purple: #4f46e5;
  --white: #ffffff;
  --pink: #38bdf8;
  --orange: #14b8a6;
  --radius: 8px;
  --container: 1180px;
  --gutter: clamp(22px, 4.8vw, 72px);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 78% 36%, rgba(37, 99, 235, 0.16), transparent 30%),
    radial-gradient(circle at 96% 65%, rgba(45, 212, 191, 0.075), transparent 24%),
    linear-gradient(180deg, #040812, #071221 48%, #050914);
  color: var(--text);
  font-family: "Inter", Arial, sans-serif;
  line-height: 1.55;
}

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

button {
  font: inherit;
}

svg {
  display: block;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: clamp(34px, 5vw, 76px);
  padding: 46px var(--gutter) 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  display: block;
  width: clamp(190px, 20vw, 285px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37, 99, 235, 0.2));
}

.brand small,
.eyebrow {
  display: block;
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(34px, 4vw, 64px);
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: none;
}

.main-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.button {
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  padding: 0 32px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.button-ghost {
  border: 1px solid transparent;
  background:
    linear-gradient(#050b14, #050b14) padding-box,
    linear-gradient(90deg, var(--blue), #3b82f6, var(--cyan)) border-box;
  box-shadow: 0 0 34px rgba(37, 99, 235, 0.24);
}

.button-gradient {
  border: 0;
  background: linear-gradient(100deg, #1d4ed8, #2563eb 56%, #0fbaa7);
  box-shadow: 0 18px 42px rgba(37, 99, 235, 0.28), 0 0 34px rgba(45, 212, 191, 0.16);
}

.button i {
  width: 13px;
  height: 13px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  background: transparent;
  transform: rotate(45deg);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
  color: #ffffff;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero-section {
  position: relative;
  min-height: 860px;
  display: grid;
  align-items: start;
  overflow: hidden;
  padding: 142px var(--gutter) 44px;
  background:
    radial-gradient(circle at 72% 47%, rgba(37, 99, 235, 0.2), transparent 28%),
    radial-gradient(circle at 91% 52%, rgba(45, 212, 191, 0.1), transparent 22%),
    linear-gradient(90deg, rgba(1, 4, 11, 0.98) 0%, rgba(4, 10, 24, 0.92) 38%, rgba(7, 18, 33, 0.86) 100%);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(5, 9, 20, 0.98));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 5;
  width: min(980px, 100%);
  margin: 0;
  justify-self: stretch;
}

.hero-copy .eyebrow {
  margin: 0 0 58px;
  background: linear-gradient(90deg, #60a5fa, #3b82f6 48%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 18px;
  letter-spacing: 0.38em;
}

.hero-copy .eyebrow::after {
  content: "";
  display: block;
  width: 80px;
  height: 2px;
  margin-top: 18px;
  background: linear-gradient(90deg, var(--blue), #3b82f6, var(--cyan));
}

.hero-copy h1 {
  max-width: 930px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(54px, 6.7vw, 88px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.08;
  text-transform: uppercase;
}

.hero-copy h1 span {
  display: inline-block;
  background: linear-gradient(90deg, #60a5fa, var(--blue) 46%, var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p:not(.eyebrow) {
  width: min(100%, 660px);
  margin: 30px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 50px;
}

.explore-link {
  position: relative;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.explore-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 42px;
  bottom: 8px;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), #60a5fa, var(--cyan));
}

.explore-link i {
  width: 16px;
  height: 16px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  margin-top: 48px;
}

.hero-proof div {
  min-width: 278px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: center;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0 34px 0 0;
  margin-right: 34px;
}

.hero-proof div:last-child {
  border-right: 0;
  margin-right: 0;
}

.hero-proof svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-proof div:nth-child(1) svg { color: #60a5fa; }
.hero-proof div:nth-child(2) svg { color: var(--cyan); }
.hero-proof div:nth-child(3) svg { color: #93c5fd; }

.hero-proof strong,
.hero-proof small {
  display: block;
}

.hero-proof strong {
  color: #ffffff;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-proof small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.48;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 9px 9px;
  mask-image: radial-gradient(circle at 74% 48%, #000 0 370px, transparent 560px), linear-gradient(90deg, transparent, #000 38%, #000);
}

.grid-field,
.orbit,
.slab,
.sphere {
  position: absolute;
  display: block;
}

.grid-field {
  inset: 0;
  background:
    radial-gradient(circle at 2px 2px, rgba(113, 143, 219, 0.3) 1px, transparent 1.8px) 0 0 / 18px 18px;
  opacity: 0.35;
  mask-image:
    linear-gradient(90deg, transparent 0%, #000 15%, #000 82%, transparent 100%),
    radial-gradient(circle at 75% 52%, #000 0 430px, transparent 620px);
}

.orbit {
  border: 1px solid rgba(96, 165, 250, 0.42);
  border-radius: 50%;
  box-shadow: 0 0 65px rgba(37, 99, 235, 0.18);
}

.orbit-one {
  right: -6%;
  top: 19%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle at 56% 42%, rgba(37, 99, 235, 0.11), transparent 55%);
}

.orbit-two {
  right: -18%;
  top: 29%;
  width: 720px;
  height: 720px;
  border-color: rgba(45, 212, 191, 0.26);
  clip-path: inset(0 0 0 23%);
}

.slab {
  border: 1px solid rgba(80, 119, 196, 0.34);
  border-radius: 999px;
  background: linear-gradient(110deg, rgba(4, 8, 17, 0.98), rgba(11, 25, 48, 0.94) 44%, rgba(1, 2, 7, 0.98));
  box-shadow: 32px 42px 90px rgba(0, 0, 0, 0.85), inset 0 1px rgba(255, 255, 255, 0.05);
  transform: rotate(-50deg);
}

.slab-one {
  width: 980px;
  height: 122px;
  left: 39%;
  top: 7%;
}

.slab-two {
  width: 900px;
  height: 115px;
  right: -18%;
  bottom: 10%;
}

.sphere {
  border-radius: 50%;
  filter: drop-shadow(0 26px 40px rgba(0, 0, 0, 0.65));
  animation: slowFloat 6s ease-in-out infinite;
}

.sphere-magenta {
  width: 260px;
  height: 260px;
  right: 8%;
  top: 34%;
  background: radial-gradient(circle at 34% 24%, #60a5fa, #2563eb 45%, #071a3d 78%);
  animation-delay: -1.8s;
}

.sphere-blue {
  width: 98px;
  height: 98px;
  right: 34%;
  top: 32%;
  background: radial-gradient(circle at 28% 18%, #93c5fd, #2563eb 38%, #081b45 78%);
  animation-delay: -0.9s;
}

.sphere-teal {
  width: 150px;
  height: 150px;
  right: 33%;
  bottom: 12%;
  background: radial-gradient(circle at 30% 24%, #8fffee, var(--cyan) 45%, #0f766e);
  box-shadow: 0 0 70px rgba(45, 212, 191, 0.24);
}

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

.services-section {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 270px 1fr;
  gap: 28px;
  margin: 0 auto;
  padding: 70px var(--gutter) 42px;
}

.section-lead h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.28;
}

.accent-line {
  display: block;
  width: 50px;
  height: 2px;
  margin-top: 26px;
  background: var(--cyan);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.service-card,
.why-panel,
.why-card,
.cta-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.04), 0 26px 60px rgba(0, 0, 0, 0.24);
}

.service-card {
  position: relative;
  min-height: 295px;
  display: flex;
  flex-direction: column;
  padding: 30px 20px 18px;
}

.service-card svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: rgba(255, 255, 255, 0.62);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-dot {
  position: absolute;
  top: 72px;
  right: 31px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.dot-blue { background: var(--blue); }
.dot-purple { background: var(--purple); }
.dot-teal { background: var(--cyan); }
.dot-orange { background: var(--orange); }
.dot-pink { background: var(--pink); }

.service-card h3 {
  margin: 45px 0 20px;
  font-size: 17px;
  line-height: 1.38;
}

.service-card p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 13px;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 220ms ease, margin 220ms ease, opacity 180ms ease, transform 220ms ease;
}

.service-card.is-expanded p {
  max-height: 140px;
  margin: 0 0 18px;
  opacity: 1;
  transform: translateY(0);
}

.service-card button {
  width: 28px;
  height: 28px;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: transparent;
  color: #ffffff;
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.service-card.is-expanded button {
  border-color: var(--cyan);
  background: var(--cyan);
  color: #04111f;
  transform: rotate(45deg);
}

.why-panel {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  margin: 0 auto 18px;
  padding: 58px var(--gutter) 28px;
}

.why-intro h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.why-intro > p:not(.eyebrow) {
  margin: 36px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.why-intro a {
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

.why-card {
  min-height: 365px;
  padding: 28px 22px 24px;
}

.mini-scene {
  position: relative;
  height: 118px;
  margin-bottom: 28px;
  border-radius: 0 0 50% 50%;
  background: radial-gradient(ellipse at center bottom, rgba(255, 255, 255, 0.12), transparent 55%);
}

.mini-scene span,
.mini-scene i {
  position: absolute;
  display: block;
}

.mini-scene span {
  left: 34%;
  top: 28px;
  width: 58px;
  height: 58px;
  border-radius: 50% 50% 46% 46%;
  background: radial-gradient(circle at 35% 25%, #5f6468, #1d2020 56%, #080909);
  box-shadow: 0 22px 32px rgba(0, 0, 0, 0.55);
}

.mini-scene i {
  right: 18%;
  bottom: 12px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.scene-one i { background: radial-gradient(circle at 30% 22%, #93c5fd, var(--blue) 48%, #071b45); }
.scene-two i { background: radial-gradient(circle at 30% 22%, #a5b4fc, var(--purple) 48%, #111c4d); }
.scene-three i { background: radial-gradient(circle at 30% 22%, #8fffee, var(--cyan) 48%, #0f766e); }
.scene-four i { background: radial-gradient(circle at 30% 22%, #bae6fd, var(--pink) 48%, #0c4a6e); }

.mini-line {
  display: block;
  width: 70px;
  height: 2px;
  margin-bottom: 20px;
}

.line-blue { background: var(--blue); }
.line-purple { background: var(--purple); }
.line-teal { background: var(--cyan); }
.line-pink { background: var(--pink); }

.why-card h3 {
  margin: 0 0 18px;
  font-size: 17px;
}

.why-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.cta-panel {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 270px 1fr auto;
  align-items: center;
  gap: 28px;
  margin: 18px auto 0;
  padding: 26px var(--gutter);
}

.cta-orbit {
  position: relative;
  height: 105px;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.42), transparent 62%);
}

.cta-orbit span {
  position: absolute;
  left: 50%;
  top: 12px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 20%, #93c5fd, #2563eb 52%, #071b45);
  transform: translateX(-50%);
  filter: drop-shadow(0 24px 36px rgba(37, 99, 235, 0.42));
}

.cta-panel h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.25;
}

.site-footer {
  max-width: calc(var(--container) + var(--gutter) * 2);
  display: grid;
  grid-template-columns: 1.25fr 1fr 0.72fr 1.35fr;
  gap: 44px;
  margin: 0 auto;
  padding: 58px var(--gutter) 46px;
}

.site-footer p,
.site-footer a,
.site-footer address {
  color: var(--muted);
  font-size: 13px;
}

.footer-logo-img {
  display: block;
  width: clamp(190px, 18vw, 260px);
  height: auto;
  filter: drop-shadow(0 0 18px rgba(37, 99, 235, 0.14));
}

.site-footer h2 {
  margin: 0 0 20px;
  color: var(--cyan);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer address {
  display: grid;
  align-content: start;
  gap: 10px;
  font-style: normal;
}

.footer-brand p {
  max-width: 280px;
  margin: 22px 0 0;
}

.page-header {
  position: static;
  padding-bottom: 28px;
  background: var(--bg);
}

.page-main {
  max-width: calc(1020px + var(--gutter) * 2);
  margin: 0 auto;
  padding: 82px var(--gutter) 100px;
}

.page-hero {
  max-width: 780px;
  margin-bottom: 34px;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
  text-transform: uppercase;
}

.page-hero p:not(.eyebrow) {
  max-width: 640px;
  margin: 24px 0 0;
  color: var(--muted);
}

.content-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.02));
  padding: clamp(24px, 4vw, 48px);
}

.content-panel h2 {
  margin: 0 0 12px;
}

.content-panel p {
  margin: 0 0 18px;
  color: var(--muted);
}

.content-panel p:last-child {
  margin-bottom: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
}

.contact-list,
.contact-form {
  display: grid;
  gap: 14px;
  align-content: start;
}

.contact-list a,
.contact-list span {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 15px 16px;
  color: #ffffff;
}

.contact-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 10px 12px;
}

.contact-form textarea {
  min-height: 132px;
  resize: vertical;
}

.contact-page-main {
  position: relative;
  overflow: hidden;
}

.contact-page-main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(48, 240, 216, 0.12), transparent 28%),
    radial-gradient(circle at 90% 4%, rgba(37, 99, 235, 0.12), transparent 24%);
  pointer-events: none;
}

.contact-page-main > * {
  position: relative;
  z-index: 1;
}

.contact-hero {
  text-align: center;
}

.contact-hero h1,
.contact-hero > p:not(.eyebrow) {
  margin-left: auto;
  margin-right: auto;
}

.contact-highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.contact-highlights span {
  border: 1px solid rgba(48, 240, 216, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 15px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.contact-panel {
  grid-template-columns: 0.9fr 1.1fr;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.02);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.contact-sidebar,
.next-steps {
  display: grid;
  gap: 18px;
  align-content: start;
}

.contact-card {
  border: 1px solid rgba(48, 240, 216, 0.18);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(45, 212, 191, 0.11), rgba(37, 99, 235, 0.1));
  padding: 24px;
}

.contact-card h2,
.next-steps h2 {
  color: #ffffff;
}

.contact-card p {
  color: var(--muted);
}

.contact-list a,
.contact-list span {
  display: grid;
  gap: 4px;
  background: rgba(255, 255, 255, 0.035);
}

.contact-list a small,
.contact-list span small {
  color: var(--cyan);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.next-steps {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
}

.next-steps ol {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.contact-form select {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  padding: 10px 12px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav,
  .header-cta {
    display: none;
  }

  .site-header.is-open .main-nav,
  .site-header.is-open .header-cta {
    grid-column: 1 / -1;
    display: flex;
  }

  .site-header.is-open .main-nav {
    align-items: flex-start;
    flex-direction: column;
    gap: 14px;
    padding-top: 14px;
  }

  .hero-section {
    min-height: 850px;
  }

  .hero-copy h1 {
    max-width: 760px;
  }

  .hero-proof {
    grid-template-columns: 1fr;
    gap: 18px;
    max-width: 520px;
  }

  .hero-proof div {
    min-width: 0;
    border-right: 0;
    margin-right: 0;
    padding-right: 0;
  }

  .services-section,
  .why-panel,
  .cta-panel,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .section-lead {
    max-width: 620px;
  }

  .service-grid,
  .why-grid,
  .site-footer {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-orbit {
    width: 270px;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding-top: 22px;
  }

  .brand-logo {
    width: clamp(170px, 45vw, 230px);
  }

  .hero-section {
    min-height: 850px;
    padding-top: 128px;
  }

  .hero-copy {
    margin: 0;
  }

  .sphere-magenta {
    right: -16%;
    top: 20%;
  }

  .sphere-blue {
    right: 20%;
    top: 52%;
  }

  .service-grid,
  .why-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .service-card,
  .why-card {
    min-height: 0;
  }

  .cta-panel .button {
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-header {
    background: linear-gradient(180deg, rgba(5, 11, 20, 0.95), rgba(5, 11, 20, 0));
    padding-bottom: 24px;
  }

  .site-header.is-open {
    background: rgba(5, 11, 20, 0.96);
    padding-bottom: 20px;
  }

  .hero-section {
    min-height: 860px;
    padding-top: 128px;
    padding-bottom: 62px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(40px, 11vw, 52px);
  }

  .hero-copy .eyebrow {
    margin-bottom: 34px;
    font-size: 12px;
    letter-spacing: 0.25em;
  }

  .hero-copy > p:not(.eyebrow) {
    max-width: 330px;
    margin-top: 22px;
    margin-bottom: 28px;
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 20px;
    max-width: 340px;
  }

  .explore-link {
    justify-content: flex-start;
  }

  .hero-proof {
    margin-top: 34px;
  }

  .hero-proof div {
    grid-template-columns: 34px 1fr;
    gap: 12px;
  }

  .hero-proof strong {
    font-size: 12px;
  }

  .hero-proof small {
    font-size: 13px;
  }

  .hero-bg {
    opacity: 0.72;
    transform: translateX(28%);
  }

  .sphere-magenta {
    width: 150px;
    height: 150px;
    right: -18%;
    top: 22%;
  }

  .sphere-blue {
    display: none;
  }

  .services-section,
  .why-panel,
  .page-main {
    padding-top: 46px;
    padding-bottom: 48px;
  }

  .section-lead h2,
  .why-intro h2,
  .cta-panel h2 {
    font-size: clamp(24px, 8vw, 32px);
  }

  .service-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .service-card h3 {
    margin-top: 22px;
  }

  .why-card {
    min-height: 0;
  }

  .mini-scene {
    height: 88px;
  }

  .cta-panel {
    padding-top: 22px;
    padding-bottom: 24px;
  }
}

@media (max-width: 760px) {
  .contact-hero {
    text-align: left;
  }

  .contact-highlights {
    justify-content: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}
