:root {
  --navy-950: #061528;
  --navy-900: #071a33;
  --navy-800: #0a2444;
  --navy-700: #123864;
  --navy-650: #174674;
  --text-dark: #08213c;
  --text-muted: #5c7084;
  --blue-500: #2f9ef5;
  --blue-300: #8ed4ff;
  --cyan-200: #bdefff;
  --steel-200: #d7e8f7;
  --ink-900: #030b16;
  --white: #ffffff;
  --slate-100: #eef6fb;
  --slate-300: #b9c8d6;
  --slate-500: #74879a;
  --glass: rgba(255, 255, 255, 0.07);
  --glass-strong: rgba(255, 255, 255, 0.11);
  --glass-border: rgba(255, 255, 255, 0.14);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
  --container: 1180px;
  --radius: 8px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --font: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-dark);
  background:
    radial-gradient(circle at 18% 8%, rgba(142, 212, 255, 0.28), transparent 30rem),
    radial-gradient(circle at 86% 18%, rgba(47, 158, 245, 0.14), transparent 34rem),
    linear-gradient(135deg, #ffffff 0%, #f5fbff 42%, #eaf6ff 100%);
  font-family: var(--font);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.is-loading {
  overflow: hidden;
}

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

img {
  display: block;
  max-width: 100%;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 38%, rgba(142, 212, 255, 0.18), transparent 20rem),
    linear-gradient(135deg, #071a33, #0c2b4d 58%, #081728);
  opacity: 1;
  visibility: visible;
  transition: opacity 620ms ease, visibility 620ms ease;
}

body.is-ready .page-loader {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  display: grid;
  justify-items: center;
  gap: 18px;
  transform: translateY(0);
  transition: transform 620ms var(--ease), opacity 620ms ease;
}

body.is-ready .loader-content {
  opacity: 0;
  transform: translateY(-10px);
}

.loader-content img {
  width: min(220px, 58vw);
  filter: drop-shadow(0 22px 42px rgba(0, 0, 0, 0.2));
}

.loader-content span {
  color: rgba(238, 246, 251, 0.76);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.loader-mark {
  width: 168px;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
}

.loader-mark::after {
  content: "";
  display: block;
  width: 42%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--blue-300), var(--white));
  border-radius: 999px;
  animation: loadBar 1.05s var(--ease) infinite;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 101;
  padding: 10px 14px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: var(--radius);
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 700ms ease, transform 700ms var(--ease);
}

body.is-ready .site-shell {
  opacity: 1;
  transform: translateY(0);
}

.site-shell::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(232, 246, 255, 0.28)),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), transparent 34rem);
}

.network-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.32;
}

.cursor-glow {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 0;
  width: 360px;
  height: 360px;
  pointer-events: none;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 158, 245, 0.12), rgba(142, 212, 255, 0.08) 34%, transparent 68%);
  opacity: 0;
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 240ms ease;
  will-change: transform;
}

.background-grid {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(18, 56, 100, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 56, 100, 0.11) 1px, transparent 1px),
    linear-gradient(rgba(47, 158, 245, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(47, 158, 245, 0.04) 1px, transparent 1px);
  background-size: 72px 72px, 72px 72px, 18px 18px, 18px 18px;
  mask-image: linear-gradient(180deg, black 0%, rgba(0, 0, 0, 0.78) 48%, transparent 92%);
  animation: gridDrift 34s linear infinite;
}

.light-sweep {
  position: fixed;
  inset: -20% 0 auto;
  z-index: 0;
  height: 58vh;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 8%, rgba(238, 246, 251, 0.13) 45%, transparent 72%);
  filter: blur(14px);
  transform: translateX(-24%);
  animation: sweep 14s var(--ease) infinite;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-pad {
  padding: 92px 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  transition: background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid rgba(8, 33, 60, 0.08);
  box-shadow: 0 14px 40px rgba(8, 33, 60, 0.09);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 222px;
  transition: transform 220ms var(--ease), opacity 220ms ease;
}

.brand:hover {
  transform: translateY(-1px);
}

.brand img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.18));
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(8, 33, 60, 0.68);
  font-size: 0.9rem;
  font-weight: 600;
}

.header-nav a {
  position: relative;
  padding: 10px 14px;
  border-radius: var(--radius);
  transition: color 180ms ease, background 180ms ease;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 5px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue-300), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transition: opacity 220ms ease, transform 220ms var(--ease);
}

.header-nav a:hover,
.header-nav a:focus-visible {
  color: var(--navy-900);
  background: rgba(47, 158, 245, 0.08);
}

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

.hero {
  min-height: 82vh;
  display: flex;
  align-items: center;
  padding-top: 94px;
  padding-bottom: 44px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(340px, 0.74fr);
  align-items: center;
  gap: clamp(42px, 6vw, 76px);
}

.hero-content {
  max-width: 790px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
  padding: 15px 22px;
  color: #061528;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(204, 237, 255, 0.92)),
    linear-gradient(90deg, rgba(47, 158, 245, 0.22), transparent);
  border: 1px solid rgba(21, 95, 157, 0.32);
  border-radius: 14px;
  font-size: clamp(1.02rem, 1.28vw, 1.22rem);
  font-weight: 900;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 18px 46px rgba(21, 95, 157, 0.18),
    0 0 0 6px rgba(47, 158, 245, 0.06);
  backdrop-filter: blur(12px);
  animation: launchGlow 2.8s ease-in-out infinite;
}

.pulse-dot {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #155f9d;
  box-shadow: 0 0 0 rgba(21, 95, 157, 0.34);
  animation: pulse 1.9s ease-out infinite;
}

.status-text {
  display: grid;
  gap: 1px;
  line-height: 1.1;
}

.status-text strong {
  display: block;
  font-size: clamp(1.2rem, 1.75vw, 1.65rem);
  line-height: 1;
  text-transform: uppercase;
}

.status-text small {
  color: rgba(8, 33, 60, 0.68);
  font-size: clamp(0.76rem, 0.9vw, 0.9rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--blue-500);
  font-size: clamp(0.72rem, 0.9vw, 0.8rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2.35rem, 4.25vw, 4.45rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h2 {
  margin-bottom: 18px;
  color: var(--navy-950);
  font-size: clamp(2.15rem, 4vw, 3.65rem);
  line-height: 1.04;
  letter-spacing: 0;
  text-wrap: balance;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subtitle {
  max-width: 700px;
  margin-bottom: 16px;
  color: var(--text-muted);
  font-size: clamp(0.98rem, 1.18vw, 1.08rem);
  line-height: 1.62;
}

.tagline {
  margin-bottom: 24px;
  color: var(--navy-700);
  font-size: clamp(0.98rem, 1.1vw, 1.08rem);
  font-weight: 700;
}

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

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: var(--radius);
  color: var(--navy-950);
  font-weight: 800;
  box-shadow: 0 0 0 rgba(47, 158, 245, 0);
  transition: transform 220ms var(--ease), border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.58) 46%, transparent 70%);
  opacity: 0;
  transform: translateX(-110%);
  transition: opacity 220ms ease, transform 520ms var(--ease);
}

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

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(110%);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, #0b3158 0%, #155f9d 52%, #2f9ef5 100%);
  border-color: rgba(21, 95, 157, 0.28);
  box-shadow: 0 18px 42px rgba(21, 95, 157, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: 0 24px 56px rgba(21, 95, 157, 0.3);
}

.button-secondary {
  color: #0b3158;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(21, 95, 157, 0.22);
  backdrop-filter: blur(12px);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(21, 95, 157, 0.34);
  background: rgba(235, 247, 255, 0.96);
  box-shadow: 0 18px 42px rgba(21, 95, 157, 0.12);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
  margin-top: 24px;
  color: rgba(8, 33, 60, 0.68);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-proof span {
  padding: 9px 11px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
}

.hero-panel {
  position: relative;
  min-height: 500px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(238, 248, 255, 0.56)),
    linear-gradient(180deg, rgba(142, 212, 255, 0.16), rgba(255, 255, 255, 0.24));
  border: 1px solid rgba(8, 33, 60, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform-style: preserve-3d;
  transition: transform 360ms var(--ease), border-color 260ms ease, box-shadow 260ms ease;
}

.hero-panel.is-visible:hover {
  transform: translateY(-4px);
  border-color: rgba(47, 158, 245, 0.2);
  box-shadow: 0 30px 80px rgba(8, 33, 60, 0.18);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 32%),
    radial-gradient(circle at 78% 18%, rgba(142, 212, 255, 0.22), transparent 24rem);
  opacity: 0.88;
  pointer-events: none;
}

.panel-glow {
  position: absolute;
  inset: 8%;
  background: radial-gradient(circle, rgba(47, 158, 245, 0.2), rgba(47, 158, 245, 0) 60%);
  filter: blur(26px);
  animation: heroGlow 7s ease-in-out infinite;
}

.panel-line {
  position: absolute;
  left: 30px;
  right: 30px;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(189, 239, 255, 0.34), transparent);
  opacity: 0.7;
}

.signal-card,
.advisory-card,
.metric-row {
  position: relative;
  z-index: 2;
}

.signal-card {
  max-width: 320px;
  padding: 19px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(8, 33, 60, 0.09);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.18);
}

.signal-card span,
.advisory-card span,
.contact-card span {
  position: relative;
  z-index: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--blue-500);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.signal-card strong {
  display: block;
  color: var(--navy-950);
  font-size: 1.15rem;
  line-height: 1.35;
}

.advisory-card {
  position: absolute;
  right: 30px;
  top: 124px;
  max-width: 245px;
  padding: 17px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.16);
}

.advisory-card strong {
  display: block;
  color: rgba(8, 33, 60, 0.82);
  font-size: 0.96rem;
  line-height: 1.42;
}

.metric-row {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(112px, 1fr));
  gap: 12px;
}

.metric-row div {
  padding: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  transition: transform 240ms var(--ease), border-color 240ms ease, background 240ms ease;
}

.metric-row div:hover {
  transform: translateY(-3px);
  border-color: rgba(142, 212, 255, 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.metric-row strong {
  display: block;
  font-size: 2rem;
  line-height: 1;
}

.metric-row span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.orbit-map {
  position: absolute;
  inset: 70px 28px 86px;
  display: grid;
  place-items: center;
}

.ring {
  position: absolute;
  border: 1px solid rgba(47, 158, 245, 0.16);
  border-radius: 50%;
  animation: orbitPulse 6s ease-in-out infinite;
}

.ring-one {
  width: min(92%, 360px);
  aspect-ratio: 1;
}

.ring-two {
  width: min(62%, 240px);
  aspect-ratio: 1;
  border-color: rgba(47, 158, 245, 0.24);
  animation-delay: -2.2s;
}

.node {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan-200);
  box-shadow: 0 0 28px rgba(189, 239, 255, 0.82);
}

.node-one {
  top: 16%;
  left: 28%;
}

.node-two {
  right: 16%;
  top: 38%;
}

.node-three {
  bottom: 20%;
  left: 22%;
}

.node-four {
  bottom: 28%;
  right: 34%;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 46px;
}

.section-heading p:not(.eyebrow) {
  color: rgba(238, 246, 251, 0.74);
  font-size: clamp(1rem, 1.2vw, 1.08rem);
  line-height: 1.72;
}

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

.domain-card {
  position: relative;
  min-height: 268px;
  padding: 26px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(246, 251, 255, 0.66)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
  transition: transform 260ms var(--ease), border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}

.domain-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 34%),
    radial-gradient(circle at 85% 12%, rgba(142, 212, 255, 0.14), transparent 12rem);
  opacity: 0;
  transition: opacity 260ms ease;
}

.domain-card::after {
  content: "";
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-300), transparent);
  opacity: 0;
  transform: scaleX(0.4);
  transform-origin: left;
  transition: opacity 260ms ease, transform 260ms var(--ease);
}

.domain-card:hover {
  transform: translateY(-8px);
  border-color: rgba(142, 212, 255, 0.34);
  background: linear-gradient(180deg, rgba(142, 212, 255, 0.13), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

.domain-card:hover::before,
.domain-card:hover::after {
  opacity: 1;
}

.domain-card:hover::after {
  transform: scaleX(1);
}

.card-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  color: var(--navy-950);
  background: linear-gradient(135deg, var(--white), var(--blue-300));
  border-radius: var(--radius);
  font-size: 0.8rem;
  font-weight: 900;
}

.domain-card h3,
.domain-card p {
  position: relative;
  z-index: 1;
}

.domain-card p {
  margin-bottom: 0;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.presence {
  padding: 34px 0;
}

.presence-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px 28px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.86), rgba(239, 248, 255, 0.64)),
    rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.14);
}

.presence-inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(189, 239, 255, 0.12) 48%, transparent 76%);
  opacity: 0.45;
}

.presence-inner p {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  margin: 0;
  color: var(--blue-300);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.market-list {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  color: rgba(8, 33, 60, 0.76);
  font-weight: 700;
}

.market-list span:not(:last-child)::after {
  content: "\2022";
  margin-left: 18px;
  color: rgba(142, 212, 255, 0.72);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 0.85fr);
  gap: clamp(42px, 6vw, 70px);
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
}

.contact-card {
  position: relative;
  display: block;
  min-height: 156px;
  padding: 24px;
  overflow-wrap: anywhere;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(244, 250, 255, 0.62)),
    rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(8, 33, 60, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.12);
  transition: transform 240ms var(--ease), background 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 88% 12%, rgba(142, 212, 255, 0.13), transparent 12rem);
  opacity: 0;
  transition: opacity 240ms ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-6px);
  background: rgba(142, 212, 255, 0.105);
  border-color: rgba(142, 212, 255, 0.32);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
}

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

.contact-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--navy-950);
  font-size: clamp(0.95rem, 1.35vw, 1.1rem);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.contact-card small {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 12px;
  color: var(--text-muted);
  font-size: 0.98rem;
  font-weight: 700;
}

.contact-card-combined {
  min-height: 176px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.site-footer {
  padding: 32px 0 42px;
  color: rgba(8, 33, 60, 0.58);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid rgba(8, 33, 60, 0.09);
  padding-top: 26px;
}

.footer-inner p,
.footer-inner span {
  margin: 0;
  font-size: 0.92rem;
}

.footer-inner p {
  color: rgba(8, 33, 60, 0.78);
  font-weight: 700;
}

.ambient {
  position: fixed;
  z-index: 0;
  width: 34vw;
  max-width: 560px;
  min-width: 260px;
  aspect-ratio: 1;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.12;
  animation: float 13s ease-in-out infinite;
}

.ambient-one {
  top: 14%;
  right: -12%;
  background: #2f9ef5;
}

.ambient-two {
  bottom: 12%;
  left: -14%;
  background: #8ed4ff;
  animation-delay: -4s;
}

.ambient-three {
  top: 52%;
  right: 24%;
  width: 22vw;
  background: #ffffff;
  opacity: 0.08;
  animation-delay: -7s;
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 820ms ease var(--delay, 0ms), transform 820ms var(--ease) var(--delay, 0ms);
}

.domain-card.reveal,
.contact-card.reveal,
.hero-panel.reveal,
.presence-inner.reveal {
  transition:
    opacity 820ms ease var(--delay, 0ms),
    transform 820ms var(--ease) var(--delay, 0ms),
    border-color 260ms ease,
    background 260ms ease,
    box-shadow 260ms ease;
}

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

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

@keyframes loadBar {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(260%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(142, 212, 255, 0.52);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(142, 212, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(142, 212, 255, 0);
  }
}

@keyframes launchGlow {
  0%,
  100% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.82),
      0 18px 46px rgba(21, 95, 157, 0.18),
      0 0 0 6px rgba(47, 158, 245, 0.06);
  }
  50% {
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      0 22px 58px rgba(21, 95, 157, 0.24),
      0 0 0 10px rgba(47, 158, 245, 0.09);
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }
  to {
    background-position: 72px 72px, 72px 72px;
  }
}

@keyframes sweep {
  0%,
  72%,
  100% {
    opacity: 0;
    transform: translateX(-28%);
  }
  18%,
  42% {
    opacity: 1;
    transform: translateX(18%);
  }
}

@keyframes heroGlow {
  0%,
  100% {
    opacity: 0.86;
    transform: scale(0.96) translate3d(0, 0, 0);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) translate3d(10px, -8px, 0);
  }
}

@keyframes orbitPulse {
  0%,
  100% {
    opacity: 0.74;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.035);
  }
}

@keyframes float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -22px, 0) scale(1.04);
  }
}

@media (max-width: 1040px) {
  .domain-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 92px;
    padding-bottom: 38px;
  }

  .hero-panel {
    min-height: 430px;
  }

  .advisory-card {
    right: 24px;
    top: 116px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .section-pad {
    padding: 64px 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand {
    width: 176px;
  }

  .header-nav {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 82px;
    padding-bottom: 30px;
  }

  h1 {
    font-size: clamp(2.05rem, 9.4vw, 3.05rem);
    line-height: 1.08;
  }

  h2 {
    font-size: clamp(1.95rem, 8.5vw, 2.7rem);
  }

  .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .button {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    font-size: 0.92rem;
  }

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

  .hero-proof span {
    flex: 1 1 100%;
  }

  .hero-panel {
    min-height: 400px;
    padding: 22px;
  }

  .signal-card {
    max-width: 86%;
  }

  .advisory-card {
    top: 132px;
    left: 22px;
    right: 22px;
    max-width: none;
  }

  .metric-row {
    left: 22px;
    right: 22px;
    bottom: 22px;
  }

  .domain-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .domain-card {
    min-height: 230px;
  }

  .presence-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 22px;
  }

  .market-list {
    justify-content: flex-start;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 460px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .section-pad {
    padding: 56px 0;
  }

  .loader-content span {
    font-size: 0.68rem;
    text-align: center;
  }

  .status-pill {
    width: 100%;
    justify-content: center;
    padding: 14px;
    border-radius: 12px;
    text-align: left;
  }

  .hero-grid {
    gap: 28px;
  }

  .hero-actions {
    gap: 8px;
  }

  .button {
    min-height: 46px;
    font-size: 0.86rem;
  }

  .hero-panel {
    min-height: 420px;
  }

  .signal-card {
    max-width: none;
  }

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

  .metric-row div {
    padding: 14px 16px;
  }

  .orbit-map {
    opacity: 0.54;
    inset: 112px 22px 110px;
  }

  .market-list {
    gap: 8px 12px;
  }

  .market-list span:not(:last-child)::after {
    margin-left: 12px;
  }
}

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

  .background-grid,
  .light-sweep,
  .panel-glow,
  .ring,
  .ambient,
  .network-canvas {
    animation: none !important;
  }
}

@media (hover: none), (pointer: coarse), (max-width: 900px) {
  .cursor-glow {
    display: none;
  }
}
