@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap');

:root {
  --navy-950: #02091c;
  --navy-900: #04102b;
  --navy-850: #061638;
  --navy-800: #091d48;
  --navy-700: #0d2f68;
  --gold-500: #ffad10;
  --gold-400: #ffc33d;
  --gold-300: #ffd978;
  --white: #ffffff;
  --text: #f7f8fc;
  --muted: #a8b3ca;
  --line: rgba(255,255,255,.12);
  --glass: rgba(255,255,255,.07);
  --shadow: 0 28px 90px rgba(0,0,0,.36);
  --radius-lg: 32px;
  --radius-md: 22px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 48% 0%, rgba(17,61,134,.30), transparent 42rem),
    linear-gradient(180deg, var(--navy-950), #04112d 48%, #02091c);
  color: var(--text);
  font-family: "DM Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .17;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
svg { fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
button, a { -webkit-tap-highlight-color: transparent; }

.container {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
  position: relative;
  z-index: 2;
}

.page-glow {
  position: fixed;
  width: 540px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(120px);
  opacity: .14;
  pointer-events: none;
  z-index: 0;
}

.page-glow-one { background: var(--gold-500); left: -260px; top: 22vh; }
.page-glow-two { background: #1262dd; right: -320px; top: 58vh; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: .035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: var(--navy-950);
  display: grid;
  place-items: center;
  transition: opacity .65s ease, visibility .65s ease;
}

.preloader.is-hidden { opacity: 0; visibility: hidden; }

.preloader-mark {
  display: flex;
  align-items: center;
  gap: 9px;
}

.preloader-mark span {
  width: 13px;
  height: 13px;
  border-radius: 4px;
  background: var(--gold-500);
  animation: loader 1s ease-in-out infinite;
}

.preloader-mark span:nth-child(2) { animation-delay: .14s; }
.preloader-mark span:nth-child(3) { animation-delay: .28s; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  padding: 18px 0;
  transition: .3s ease;
}

.site-header.scrolled {
  padding: 10px 0;
  background: rgba(2,9,28,.76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.nav-shell {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.brand-card {
  width: 180px;
  min-height: 62px;
  padding: 10px 15px;
  border-radius: 18px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 14px 42px rgba(0,0,0,.22), inset 0 0 0 1px rgba(255,174,16,.22);
  display: grid;
  place-items: center;
}

.brand-card img { max-height: 46px; width: auto; }

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  color: #c2cadb;
  font-size: .93rem;
  font-weight: 600;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  transition: color .25s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 4px;
  height: 2px;
  background: var(--gold-500);
  transition: right .25s ease;
}

.desktop-nav a:hover { color: var(--white); }
.desktop-nav a:hover::after { right: 0; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 17px;
  border: 1px solid rgba(255,196,61,.26);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  font-size: .9rem;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: .25s ease;
}

.nav-cta:hover {
  transform: translateY(-2px);
  background: rgba(255,174,16,.13);
  border-color: rgba(255,196,61,.6);
}

.nav-cta-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 0 6px rgba(255,174,16,.11), 0 0 22px var(--gold-500);
}

.hero {
  min-height: 100vh;
  padding-top: 148px;
  padding-bottom: 70px;
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  align-items: center;
  gap: 50px;
}

.hero-copy { padding: 30px 0; }

.launch-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,195,61,.22);
  background: linear-gradient(90deg, rgba(255,174,16,.12), rgba(255,255,255,.045));
  color: #f6d994;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold-500);
  animation: pulse 2s infinite;
}

.hero h1 {
  margin: 27px 0 24px;
  max-width: 720px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(3.6rem, 6.8vw, 6.9rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 800;
}

.hero h1 span {
  display: block;
  color: transparent;
  background: linear-gradient(100deg, var(--gold-300), var(--gold-500) 45%, #ff8b00);
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 15px 50px rgba(255,174,16,.12);
}

.hero-lead {
  max-width: 670px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.8vw, 1.18rem);
  line-height: 1.75;
}

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

.button {
  min-height: 56px;
  padding: 0 23px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: .98rem;
  font-weight: 800;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.button svg { width: 20px; height: 20px; transition: transform .25s ease; }
.button:hover svg { transform: translateX(4px); }

.button-gold {
  color: #07112a;
  background: linear-gradient(135deg, var(--gold-300), var(--gold-500));
  box-shadow: 0 16px 45px rgba(255,174,16,.22), inset 0 1px 0 rgba(255,255,255,.48);
}

.button-glass {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
}

.button:hover { transform: translateY(-3px); }
.button-gold:hover { box-shadow: 0 22px 58px rgba(255,174,16,.32); }
.button-glass:hover { border-color: rgba(255,195,61,.45); }

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.hero-trust div { padding-right: 10px; }
.hero-trust strong { display: block; margin-bottom: 6px; font-size: .9rem; }
.hero-trust span { color: #8491aa; font-size: .78rem; line-height: 1.45; }

.hero-visual {
  min-height: 640px;
  position: relative;
  display: grid;
  place-items: center;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.hero-visual::before {
  content: "";
  position: absolute;
  width: 490px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,174,16,.22), rgba(14,52,120,.13) 46%, transparent 70%);
  filter: blur(10px);
}

.visual-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.11);
}

.visual-ring::before,
.visual-ring::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 22px var(--gold-500);
}

.ring-one {
  width: 470px;
  height: 470px;
  animation: spin 30s linear infinite;
}
.ring-one::before { left: 24%; top: 4%; }
.ring-one::after { right: 6%; bottom: 29%; background: #3990ff; box-shadow: 0 0 22px #3990ff; }

.ring-two {
  width: 365px;
  height: 365px;
  border-style: dashed;
  border-color: rgba(255,174,16,.20);
  animation: spin-reverse 24s linear infinite;
}
.ring-two::before { right: 18%; top: 3%; }
.ring-two::after { left: 4%; bottom: 35%; }

.ring-three {
  width: 255px;
  height: 255px;
  border-color: rgba(255,255,255,.07);
  animation: pulse-ring 4s ease-in-out infinite;
}

.hive-core {
  width: 210px;
  aspect-ratio: 1;
  clip-path: polygon(25% 6.7%, 75% 6.7%, 100% 50%, 75% 93.3%, 25% 93.3%, 0 50%);
  position: relative;
  z-index: 5;
  display: grid;
  place-items: center;
  align-content: center;
  background:
    linear-gradient(145deg, rgba(255,255,255,.18), transparent 30%),
    linear-gradient(145deg, #ffc437, #f39a00 72%);
  color: #061638;
  box-shadow: 0 36px 90px rgba(255,174,16,.3);
  animation: float 5s ease-in-out infinite;
}

.hive-core::after {
  content: "";
  position: absolute;
  inset: 9px;
  clip-path: inherit;
  border: 1px solid rgba(255,255,255,.55);
  pointer-events: none;
}

.hive-core span {
  position: relative;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: -.12em;
  font-weight: 800;
}

.hive-core small {
  position: relative;
  z-index: 2;
  margin-top: 12px;
  font-size: .62rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hive-shine {
  position: absolute;
  inset: -40%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.55) 49%, transparent 60%);
  animation: shine 4.8s ease-in-out infinite;
}

.orbit-card {
  position: absolute;
  z-index: 7;
  min-width: 205px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 19px;
  background: rgba(8,25,61,.68);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 45px rgba(0,0,0,.25), inset 0 1px 0 rgba(255,255,255,.07);
  animation: drift 5s ease-in-out infinite;
}

.service-icon {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  background: rgba(255,174,16,.11);
  border: 1px solid rgba(255,174,16,.18);
}

.service-icon svg { width: 22px; height: 22px; }
.orbit-card strong { display: block; font-size: .9rem; }
.orbit-card small { display: block; color: #8794ad; margin-top: 3px; font-size: .73rem; }

.orbit-one { left: -5px; top: 92px; }
.orbit-two { right: -18px; top: 168px; animation-delay: -1.2s; }
.orbit-three { left: 7px; bottom: 114px; animation-delay: -2.6s; }
.orbit-four { right: 8px; bottom: 58px; animation-delay: -3.6s; }

.micro-chip {
  position: absolute;
  z-index: 6;
  height: 28px;
  padding: 0 10px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: #9fb5d9;
  background: rgba(10,34,79,.68);
  border: 1px solid rgba(66,132,236,.19);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .12em;
}

.chip-one { top: 42px; right: 110px; transform: rotate(8deg); }
.chip-two { bottom: 45px; left: 125px; transform: rotate(-7deg); }
.chip-three { top: 308px; right: -7px; transform: rotate(5deg); }

.scroll-cue {
  position: absolute;
  left: 0;
  bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: #7786a3;
  font-size: .76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.scroll-cue span {
  width: 28px;
  height: 42px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
}

.scroll-cue span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  width: 4px;
  height: 8px;
  border-radius: 999px;
  background: var(--gold-500);
  transform: translateX(-50%);
  animation: scroll-dot 1.8s ease-in-out infinite;
}

.brand-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

.brand-strip-track {
  width: max-content;
  min-height: 70px;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: marquee 34s linear infinite;
  color: #7f8aa0;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .15em;
}

.brand-strip-track i {
  width: 8px;
  height: 8px;
  transform: rotate(45deg);
  background: var(--gold-500);
  box-shadow: 0 0 18px rgba(255,174,16,.45);
}

.section { padding-block: 130px; }

.section-heading {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  align-items: end;
  gap: 60px;
  margin-bottom: 54px;
}

.kicker {
  display: block;
  color: var(--gold-400);
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .18em;
  margin-bottom: 17px;
}

.section-heading h2,
.vision-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 1.03;
  letter-spacing: -.05em;
}

.section-heading p {
  margin: 0 0 5px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 520px;
}

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

.service-card {
  min-height: 410px;
  padding: 27px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.105);
  border-radius: var(--radius-md);
  background:
    radial-gradient(circle at 80% 10%, rgba(30,90,183,.15), transparent 16rem),
    linear-gradient(145deg, rgba(255,255,255,.064), rgba(255,255,255,.025));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.055);
  transition: transform .35s ease, border-color .35s ease, background .35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: auto -80px -120px auto;
  width: 220px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--gold-500);
  filter: blur(90px);
  opacity: 0;
  transition: opacity .35s ease;
}

.service-card:hover {
  transform: translateY(-9px);
  border-color: rgba(255,190,50,.34);
  background:
    radial-gradient(circle at 80% 10%, rgba(255,174,16,.14), transparent 18rem),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.service-card:hover::before { opacity: .13; }

.feature-card {
  background:
    radial-gradient(circle at 80% 10%, rgba(255,174,16,.14), transparent 18rem),
    linear-gradient(145deg, rgba(255,174,16,.09), rgba(255,255,255,.03));
}

.card-number {
  color: #6f7e99;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.service-graphic {
  height: 140px;
  margin: 18px 0 20px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
}

.code-graphic span {
  font-family: monospace;
  font-size: 4rem;
  font-weight: 800;
  text-shadow: 0 0 45px rgba(255,174,16,.38);
}

.cloud-graphic svg,
.shield-graphic svg,
.support-graphic svg {
  width: 112px;
  height: 112px;
  stroke-width: 3;
  filter: drop-shadow(0 0 22px rgba(255,174,16,.24));
}

.nodes-graphic { position: relative; }
.nodes-graphic::before,
.nodes-graphic::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}
.nodes-graphic::after { transform: rotate(90deg); }
.nodes-graphic span {
  position: absolute;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--navy-800);
  border: 2px solid var(--gold-500);
  box-shadow: 0 0 20px rgba(255,174,16,.25);
}
.nodes-graphic span:nth-child(1) { transform: translate(-58px, 0); }
.nodes-graphic span:nth-child(2) { transform: translate(58px, 0); }
.nodes-graphic span:nth-child(3) { transform: translate(0, -58px); }
.nodes-graphic span:nth-child(4) { transform: translate(0, 58px); }

.pos-graphic { align-content: center; }
.pos-screen {
  width: 115px;
  height: 78px;
  padding: 16px;
  border: 3px solid var(--gold-400);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: perspective(280px) rotateY(-10deg);
  box-shadow: 0 0 30px rgba(255,174,16,.18);
}
.pos-screen span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: var(--gold-500);
}
.pos-screen span:nth-child(2) { width: 66%; }
.pos-screen span:nth-child(3) { width: 82%; }
.pos-base {
  width: 74px;
  height: 12px;
  margin: 6px auto 0;
  border-radius: 3px 3px 8px 8px;
  background: var(--gold-500);
}

.service-card h3 {
  margin: 0 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

.service-card p {
  min-height: 74px;
  margin: 0;
  color: #9da9bf;
  line-height: 1.64;
  font-size: .92rem;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}

.card-tags span {
  padding: 7px 9px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  color: #8493ad;
  background: rgba(0,0,0,.12);
  font-size: .65rem;
  font-weight: 700;
}

.vision-section {
  padding-block: 130px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,174,16,.08), transparent 28rem),
    linear-gradient(180deg, rgba(255,255,255,.025), transparent);
  border-block: 1px solid rgba(255,255,255,.07);
}

.vision-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
}

.vision-copy p {
  max-width: 560px;
  color: var(--muted);
  line-height: 1.75;
  margin: 27px 0 35px;
}

.vision-values {
  display: grid;
  gap: 10px;
}

.vision-values span {
  min-height: 51px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.035);
  color: #d8deeb;
  font-weight: 700;
}

.vision-values i {
  font-style: normal;
  color: var(--gold-400);
  font-size: .7rem;
  letter-spacing: .1em;
}

.vision-panel {
  min-height: 530px;
  position: relative;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px),
    radial-gradient(circle at center, rgba(17,74,158,.22), rgba(4,16,43,.72));
  background-size: 38px 38px, 38px 38px, auto;
  overflow: hidden;
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,.07);
  display: grid;
  place-items: center;
}

.panel-orbit {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 1px dashed rgba(255,174,16,.30);
  border-radius: 50%;
  animation: spin 28s linear infinite;
}

.panel-orbit::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  top: 14%;
  left: 12%;
  border-radius: 50%;
  background: var(--gold-500);
  box-shadow: 0 0 30px var(--gold-500);
}

.panel-logo {
  width: min(360px, 65%);
  min-height: 160px;
  padding: 28px;
  border-radius: 27px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.96);
  box-shadow: 0 24px 60px rgba(0,0,0,.28), 0 0 0 1px rgba(255,174,16,.28);
  transform: rotate(-2deg);
  animation: panel-float 5s ease-in-out infinite;
}

.panel-stat {
  position: absolute;
  min-width: 165px;
  padding: 13px 15px;
  border-radius: 15px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(4,16,43,.74);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 40px rgba(0,0,0,.22);
}

.panel-stat strong { display: block; color: var(--gold-400); font-size: .88rem; }
.panel-stat span { display: block; margin-top: 3px; color: #8795ae; font-size: .7rem; }

.panel-stat-one { top: 68px; left: 32px; }
.panel-stat-two { top: 178px; right: 24px; }
.panel-stat-three { bottom: 58px; left: 52px; }

.contact-section { padding-block: 125px; }

.contact-card {
  min-height: 430px;
  padding: 58px;
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 55px;
  border: 1px solid rgba(255,195,61,.23);
  border-radius: 38px;
  background:
    radial-gradient(circle at 90% 15%, rgba(255,174,16,.20), transparent 21rem),
    linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 35px 100px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.08);
}

.contact-copy { position: relative; z-index: 2; }
.contact-copy h2 { max-width: 690px; }
.contact-copy p {
  max-width: 600px;
  margin: 24px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-options {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 13px;
}

.contact-option {
  min-height: 84px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 18px;
  background: rgba(2,9,28,.46);
  transition: .3s ease;
}

.contact-option:hover {
  transform: translateX(-7px);
  border-color: rgba(255,195,61,.45);
  background: rgba(255,174,16,.08);
}

.contact-icon {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: var(--gold-400);
  background: rgba(255,174,16,.12);
  border: 1px solid rgba(255,174,16,.18);
}

.contact-icon svg { width: 23px; height: 23px; }
.contact-option small { display: block; color: #8b98af; margin-bottom: 4px; }
.contact-option strong { font-size: clamp(.83rem, 1.8vw, 1rem); }

.contact-glow {
  position: absolute;
  width: 320px;
  aspect-ratio: 1;
  right: -120px;
  top: -100px;
  border-radius: 50%;
  background: var(--gold-500);
  filter: blur(100px);
  opacity: .14;
}

.site-footer {
  padding: 34px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.13);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.footer-brand { display: flex; align-items: center; gap: 20px; }

.footer-logo-box {
  width: 145px;
  min-height: 52px;
  padding: 9px 12px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255,255,255,.96);
}

.footer-brand p,
.footer-meta p {
  margin: 0;
  color: #7f8ba1;
  font-size: .83rem;
}

.footer-meta {
  display: flex;
  align-items: center;
  gap: 24px;
  text-align: right;
}

.footer-meta a {
  color: var(--gold-400);
  font-size: .78rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s cubic-bezier(.2,.75,.2,1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loader {
  0%, 100% { transform: translateY(0); opacity: .4; }
  50% { transform: translateY(-12px); opacity: 1; }
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 5px rgba(255,174,16,.13); }
  50% { box-shadow: 0 0 0 10px rgba(255,174,16,.04), 0 0 28px rgba(255,174,16,.55); }
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(-.6deg); }
  50% { transform: translateY(-10px) rotate(.7deg); }
}

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spin-reverse { to { transform: rotate(-360deg); } }

@keyframes pulse-ring {
  0%, 100% { transform: scale(1); opacity: .7; }
  50% { transform: scale(1.08); opacity: .25; }
}

@keyframes shine {
  0%, 60% { transform: translateX(-65%) rotate(8deg); }
  80%, 100% { transform: translateX(65%) rotate(8deg); }
}

@keyframes panel-float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(0); }
}

@keyframes scroll-dot {
  0% { transform: translate(-50%, 0); opacity: 0; }
  30% { opacity: 1; }
  100% { transform: translate(-50%, 17px); opacity: 0; }
}

@keyframes marquee { to { transform: translateX(-50%); } }

@media (max-width: 1060px) {
  .hero { grid-template-columns: 1fr; padding-top: 150px; }
  .hero-copy { text-align: center; }
  .hero h1, .hero-lead { margin-inline: auto; }
  .hero-actions, .launch-badge { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .hero-trust { max-width: 760px; margin-inline: auto; text-align: left; }
  .hero-visual { width: min(620px, 100%); margin-inline: auto; }
  .scroll-cue { display: none; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .vision-grid { grid-template-columns: 1fr; }
  .vision-copy { text-align: center; }
  .vision-copy p { margin-inline: auto; }
  .vision-values { max-width: 620px; margin-inline: auto; text-align: left; }
  .contact-card { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .container { width: min(100% - 24px, 1180px); }
  .site-header { padding: 12px 0; }
  .nav-shell { grid-template-columns: auto 1fr; }
  .brand-card { width: 145px; min-height: 55px; padding: 8px 11px; }
  .brand-card img { max-height: 39px; }
  .desktop-nav { display: none; }
  .nav-cta { justify-self: end; padding: 0 13px; font-size: 0; }
  .nav-cta::after { content: "Call"; font-size: .84rem; }
  .hero { padding-top: 125px; padding-bottom: 65px; gap: 20px; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5rem); }
  .hero-trust { grid-template-columns: 1fr; }
  .hero-trust div { padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
  .hero-visual { min-height: 530px; transform: scale(.9); margin-block: -25px; }
  .ring-one { width: 390px; height: 390px; }
  .ring-two { width: 300px; height: 300px; }
  .hive-core { width: 176px; }
  .hive-core span { font-size: 3.25rem; }
  .orbit-card { min-width: 165px; padding: 11px; }
  .service-icon { width: 36px; height: 36px; }
  .orbit-one { left: -12px; top: 78px; }
  .orbit-two { right: -12px; top: 142px; }
  .orbit-three { left: -6px; bottom: 98px; }
  .orbit-four { right: -5px; bottom: 54px; }
  .section, .vision-section, .contact-section { padding-block: 88px; }
  .section-heading { grid-template-columns: 1fr; gap: 23px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card p { min-height: 0; }
  .vision-panel { min-height: 440px; }
  .panel-stat { min-width: 145px; }
  .panel-stat-one { top: 35px; left: 12px; }
  .panel-stat-two { top: 140px; right: 10px; }
  .panel-stat-three { bottom: 38px; left: 18px; }
  .contact-card { padding: 35px 22px; border-radius: 26px; gap: 35px; }
  .contact-option { padding: 12px; }
  .footer-grid, .footer-brand, .footer-meta { flex-direction: column; text-align: center; }
  .footer-meta { gap: 10px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .button { width: 100%; }
  .hero-visual { transform: scale(.76); margin: -70px -48px -65px; width: calc(100% + 96px); }
  .launch-badge { font-size: .62rem; letter-spacing: .09em; }
  .vision-panel { min-height: 390px; }
  .panel-logo { width: 70%; min-height: 130px; padding: 20px; }
  .panel-stat { min-width: 128px; padding: 10px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
  }
}
