:root {
  --pointer-x: 50vw;
  --pointer-y: 24vh;
  --bg: #04010a;
  --bg-deep: #0d0318;
  --bg-soft: #170629;
  --panel: rgba(23, 9, 41, 0.78);
  --panel-strong: rgba(26, 10, 48, 0.94);
  --panel-glass: rgba(255, 255, 255, 0.04);
  --stroke: rgba(213, 173, 255, 0.16);
  --stroke-strong: rgba(223, 195, 255, 0.32);
  --text: #faf4ff;
  --muted: #d8c7ee;
  --accent: #a54cff;
  --accent-bright: #ebbcff;
  --accent-deep: #6723d4;
  --aqua: #8fe8ff;
  --success: #9cf8cf;
  --danger: #ffb4df;
  --shadow: 0 28px 70px rgba(58, 12, 121, 0.34);
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --container: 1180px;
  --font-body: "Optima", "Segoe UI", "Candara", sans-serif;
  --font-display: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Baskerville, serif;
  --font-accent: "Avenir Next Condensed", "Arial Narrow", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: var(--font-body);
  background:
    radial-gradient(circle at 14% 18%, rgba(171, 87, 255, 0.3), transparent 24%),
    radial-gradient(circle at 82% 12%, rgba(111, 37, 234, 0.26), transparent 24%),
    radial-gradient(circle at 54% 88%, rgba(224, 164, 255, 0.14), transparent 26%),
    linear-gradient(145deg, #030108 0%, #080211 32%, #120420 68%, #06010a 100%);
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    radial-gradient(
      circle 17rem at var(--pointer-x) var(--pointer-y),
      rgba(199, 137, 255, 0.16),
      transparent 64%
    );
  transition: background-position 0.2s ease;
}

body::after {
  background:
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, 0.05) 1px, transparent 1.3px),
    radial-gradient(circle at 70% 35%, rgba(255, 255, 255, 0.05) 1px, transparent 1.3px),
    radial-gradient(circle at 45% 80%, rgba(255, 255, 255, 0.04) 1px, transparent 1.2px);
  background-size: 220px 220px, 260px 260px, 180px 180px;
  opacity: 0.42;
  animation: starDrift 24s linear infinite;
}

.page-shell {
  position: relative;
  z-index: 1;
}

.page-shell::before {
  content: "";
  position: fixed;
  inset: auto -12rem -12rem auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 97, 255, 0.22), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
  opacity: 0.7;
  animation: aurora 18s ease-in-out infinite;
}

.site-header,
.section {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(12, 4, 22, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 14px 32px rgba(8, 2, 17, 0.34);
}

.brand {
  color: var(--text);
  text-decoration: none;
  text-transform: lowercase;
  font-family: var(--font-display);
  font-size: 1.72rem;
  letter-spacing: 0.05em;
}

.brand span {
  color: var(--accent-bright);
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.96rem;
  letter-spacing: 0.02em;
  transition: color 0.25s ease, transform 0.25s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 1px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  transition: transform 0.25s ease;
}

.site-nav a:hover {
  color: var(--text);
  transform: translateY(-1px);
}

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

.section {
  padding: 4.5rem 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  gap: 2rem;
  align-items: center;
  min-height: calc(100vh - 7rem);
  padding-top: 3rem;
}

.eyebrow,
.section-tag,
.node-step,
.flow-kicker,
.status-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.48rem 0.95rem;
  border: 1px solid rgba(225, 192, 255, 0.18);
  border-radius: 999px;
  background: rgba(165, 76, 255, 0.12);
  color: var(--accent-bright);
  font-family: var(--font-accent);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero h1,
.section h2,
.hero-card strong,
.network-card h3,
.network-core-copy h3,
.benefit-card h3,
.timeline-card h3,
.manager-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  line-height: 0.98;
}

.hero h1 {
  margin-top: 1.05rem;
  font-size: clamp(3.2rem, 6vw, 5.8rem);
  max-width: 11ch;
}

.section h2,
.manager-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2rem, 4.6vw, 3.7rem);
  max-width: 12ch;
}

.hero-text,
.scheme-head p,
.section-copy p,
.network-card p,
.network-core-copy p,
.benefit-card p,
.timeline-card p,
.manager-copy p,
.hero-card p,
.hero-status p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
  font-size: 1.04rem;
}

.hero-ribbon,
.manager-notes,
.network-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.hero-ribbon {
  margin-top: 1.6rem;
}

.hero-ribbon span,
.manager-notes span,
.network-strip span {
  position: relative;
  overflow: hidden;
  padding: 0.78rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 192, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
}

.hero-ribbon span::before,
.manager-notes span::before,
.network-strip span::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-115%);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
  animation: sheen 6.5s linear infinite;
}

.hero-ribbon span:nth-child(2)::before,
.manager-notes span:nth-child(2)::before,
.network-strip span:nth-child(2)::before {
  animation-delay: 1.2s;
}

.hero-ribbon span:nth-child(3)::before,
.manager-notes span:nth-child(3)::before,
.network-strip span:nth-child(3)::before {
  animation-delay: 2.4s;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.98rem 1.45rem;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    filter 0.25s ease;
}

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

.button-primary {
  color: #1b0830;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent), #b37dff);
  background-size: 180% 180%;
  box-shadow: 0 18px 34px rgba(165, 76, 255, 0.28);
  animation: buttonFlow 8s ease infinite;
}

.button-primary:hover {
  box-shadow: 0 24px 44px rgba(165, 76, 255, 0.36);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(225, 192, 255, 0.18);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover {
  border-color: rgba(225, 192, 255, 0.32);
}

.button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.25rem;
}

.stat-card,
.section-copy,
.scheme-head,
.benefit-card,
.timeline-card,
.manager-copy,
.manager-form,
.hero-card,
.network-card,
.network-core {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--stroke);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(34, 13, 60, 0.9), rgba(14, 6, 25, 0.92)),
    radial-gradient(circle at top right, rgba(212, 146, 255, 0.08), transparent 28%);
  box-shadow: var(--shadow);
}

.stat-card::before,
.section-copy::before,
.scheme-head::before,
.benefit-card::before,
.timeline-card::before,
.manager-copy::before,
.manager-form::before,
.hero-card::before,
.network-card::before,
.network-core::before {
  content: "";
  position: absolute;
  inset: -28% auto auto -10%;
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(184, 108, 255, 0.24), transparent 70%);
  pointer-events: none;
}

.stat-card {
  padding: 1.2rem;
  min-height: 8.6rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.2vw, 3.15rem);
}

.stat-label {
  display: block;
  margin-top: 0.4rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-visual {
  min-height: 42rem;
}

.orbital-stage,
.network-stage {
  position: relative;
  isolation: isolate;
  transform-style: preserve-3d;
  border: 1px solid rgba(225, 192, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(30, 12, 53, 0.9), rgba(10, 4, 18, 0.96)),
    radial-gradient(circle at 20% 20%, rgba(212, 146, 255, 0.09), transparent 24%);
  box-shadow: var(--shadow);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.orbital-stage {
  min-height: 42rem;
  padding: 1.2rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.orbital-grid,
.network-stage::after {
  position: absolute;
  inset: 0;
  content: "";
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  opacity: 0.48;
  pointer-events: none;
}

.orbital-grid {
  mask-image: radial-gradient(circle at center, rgba(0, 0, 0, 0.92), transparent 82%);
  animation: gridDrift 16s linear infinite;
}

.hero-card {
  position: absolute;
  z-index: 2;
  width: min(15rem, 34%);
  padding: 1.15rem;
  backdrop-filter: blur(16px);
  animation: floatCard 7s ease-in-out infinite;
}

.hero-card-user {
  top: 4.8rem;
  left: 1.2rem;
}

.hero-card-origin {
  top: 7rem;
  right: 1.2rem;
  animation-delay: 1.5s;
}

.hero-card strong,
.network-card h3,
.network-core-copy h3,
.benefit-card h3,
.timeline-card h3 {
  display: block;
  margin-top: 0.7rem;
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
}

.request-lane,
.network-wire {
  position: absolute;
  top: 50%;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.05), rgba(228, 188, 255, 0.56));
  overflow: visible;
}

.lane-left {
  left: 24%;
  top: 47%;
  width: 18%;
}

.lane-right {
  right: 24%;
  top: 47%;
  width: 18%;
}

.lane-pulse,
.wire-pulse,
.route-legend i::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 0.95rem;
  height: 0.95rem;
  border-radius: 50%;
  transform: translateY(-50%);
  background: radial-gradient(circle, #fff4ff, var(--accent));
  box-shadow: 0 0 20px rgba(235, 188, 255, 0.85);
  animation: travelHorizontal 2.4s linear infinite;
}

.lane-pulse.ghost,
.wire-pulse.ghost {
  animation-delay: 1.2s;
  opacity: 0.65;
}

.globe-cluster {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  width: min(28rem, 80%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(228, 188, 255, 0.18);
  border-radius: 50%;
  animation: spin 18s linear infinite;
}

.orbit-one {
  inset: 2%;
  animation-duration: 16s;
}

.orbit-two {
  inset: 10% 2%;
  border-radius: 50% / 44%;
  animation-duration: 23s;
  animation-direction: reverse;
}

.orbit-three {
  inset: 19% 8%;
  border-style: dashed;
  animation-duration: 13s;
}

.orbit-comet {
  position: absolute;
  top: 6%;
  left: 50%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, #ffffff, var(--aqua));
  box-shadow: 0 0 18px rgba(143, 232, 255, 0.8);
}

.orbit-comet-alt {
  top: auto;
  bottom: 10%;
  left: 24%;
}

.globe-ping {
  position: absolute;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 50%;
  background: radial-gradient(circle, #fff6ff, var(--accent-bright));
  box-shadow: 0 0 24px rgba(235, 188, 255, 0.85);
  animation: pulse 2.8s ease-in-out infinite;
}

.ping-one {
  top: 16%;
  right: 14%;
}

.ping-two {
  bottom: 21%;
  left: 11%;
  animation-delay: 0.9s;
}

.ping-three {
  top: 52%;
  right: 3%;
  animation-delay: 1.6s;
}

.globe-shell {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
}

.globe-shadow {
  position: absolute;
  bottom: 6%;
  width: 45%;
  height: 8%;
  border-radius: 50%;
  background: rgba(99, 34, 201, 0.4);
  filter: blur(14px);
}

.globe-atmosphere {
  position: absolute;
  inset: 14%;
  border: 1px solid rgba(228, 188, 255, 0.18);
  border-radius: 50%;
  box-shadow: 0 0 36px rgba(171, 88, 255, 0.18);
  animation: pulseHalo 5.8s ease-in-out infinite;
}

.globe-core {
  position: relative;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 34% 28%, rgba(255, 246, 255, 0.98), transparent 18%),
    radial-gradient(circle at 38% 29%, rgba(241, 201, 255, 0.82), transparent 34%),
    radial-gradient(circle at 50% 42%, rgba(191, 113, 255, 0.58), transparent 48%),
    linear-gradient(180deg, #d69cff 0%, #9b4bff 46%, #4f1696 100%);
  box-shadow:
    inset -20px -24px 34px rgba(37, 10, 74, 0.28),
    inset 24px 18px 34px rgba(255, 255, 255, 0.18),
    0 0 56px rgba(165, 76, 255, 0.34);
  animation: globeFloat 7.5s ease-in-out infinite;
}

.globe-shell-large .globe-core {
  width: 74%;
}

.globe-core::before,
.globe-core::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.globe-core::before {
  background: repeating-linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 10px
  );
  opacity: 0.32;
}

.globe-core::after {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.globe-map {
  position: absolute;
  inset: -2%;
  width: 104%;
  height: 104%;
  z-index: 1;
  opacity: 0.96;
  animation: mapSpin 20s linear infinite;
}

.globe-grid-line,
.globe-meridian {
  fill: none;
  stroke: rgba(246, 232, 255, 0.2);
  stroke-width: 2;
  stroke-linecap: round;
}

.globe-land {
  fill: rgba(252, 243, 255, 0.82);
  filter: drop-shadow(0 0 10px rgba(238, 205, 255, 0.18));
}

.globe-land-alt {
  fill: rgba(226, 183, 255, 0.68);
}

.globe-lat,
.globe-long {
  position: absolute;
  border: 1px solid rgba(246, 226, 255, 0.17);
  border-radius: 50%;
}

.globe-lat {
  left: 50%;
  transform: translateX(-50%);
}

.lat-one {
  top: 15%;
  width: 92%;
  height: 20%;
}

.lat-two {
  top: 31%;
  width: 98%;
  height: 30%;
}

.lat-three {
  top: 50%;
  width: 98%;
  height: 30%;
}

.lat-four {
  top: 68%;
  width: 92%;
  height: 20%;
}

.globe-long {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 96%;
}

.long-one {
  width: 24%;
}

.long-two {
  width: 54%;
}

.long-three {
  width: 84%;
}

.continent {
  position: absolute;
  background: linear-gradient(135deg, rgba(255, 244, 255, 0.82), rgba(209, 150, 255, 0.18));
  opacity: 0.66;
  filter: blur(0.2px);
  mix-blend-mode: screen;
  animation: continentGlow 7s ease-in-out infinite;
}

.continent-one {
  top: 23%;
  left: 12%;
  width: 44%;
  height: 23%;
  clip-path: polygon(8% 38%, 18% 16%, 39% 0, 68% 8%, 100% 35%, 88% 68%, 62% 82%, 40% 70%, 20% 88%, 0 58%);
  transform: rotate(-8deg);
}

.continent-two {
  top: 47%;
  left: 18%;
  width: 28%;
  height: 24%;
  clip-path: polygon(18% 0, 74% 4%, 100% 30%, 88% 76%, 48% 100%, 12% 72%, 0 34%);
  transform: rotate(7deg);
  animation-delay: 1.2s;
}

.continent-three {
  top: 30%;
  right: 11%;
  width: 28%;
  height: 20%;
  clip-path: polygon(14% 24%, 40% 0, 88% 12%, 100% 54%, 80% 100%, 18% 92%, 0 50%);
  transform: rotate(10deg);
  animation-delay: 2s;
}

.continent-four {
  bottom: 22%;
  right: 21%;
  width: 22%;
  height: 14%;
  clip-path: polygon(0 18%, 52% 0, 100% 34%, 90% 100%, 22% 92%);
  transform: rotate(-6deg);
  animation-delay: 0.6s;
}

.globe-shine {
  position: absolute;
  inset: 8% 55% 26% 9%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle at left top, rgba(255, 255, 255, 0.86), transparent 66%);
  filter: blur(10px);
}

.globe-scan {
  position: absolute;
  left: -20%;
  width: 140%;
  height: 34%;
  z-index: 2;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0.03),
    transparent
  );
  animation: scanSweep 6.5s ease-in-out infinite;
}

.hero-status {
  position: absolute;
  left: 50%;
  bottom: 1.2rem;
  z-index: 2;
  width: min(29rem, calc(100% - 2rem));
  transform: translateX(-50%);
  padding: 1rem 1.15rem 1.1rem;
  border: 1px solid rgba(225, 192, 255, 0.16);
  border-radius: 22px;
  background: rgba(15, 6, 28, 0.82);
  backdrop-filter: blur(18px);
}

.hero-status p {
  margin-top: 0.7rem;
}

.scheme-section {
  display: grid;
  gap: 1.2rem;
}

.scheme-head,
.section-copy,
.manager-copy {
  padding: 1.8rem;
}

.section-copy.narrow,
.scheme-head,
.manager-copy {
  max-width: none;
}

.route-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.9rem;
}

.route-legend span {
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 192, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
}

.route-legend i {
  position: relative;
  width: 4.5rem;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), rgba(228, 188, 255, 0.52));
  overflow: visible;
}

.route-legend i::after {
  content: "";
}

.route-legend i:nth-of-type(2)::after {
  animation-delay: 1.2s;
}

.network-stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1.12fr) minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 31rem;
  padding: 1.8rem;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.network-stage::before {
  content: "";
  position: absolute;
  inset: -12% auto auto 20%;
  width: 26rem;
  height: 26rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 97, 255, 0.16), transparent 66%);
  filter: blur(18px);
}

.wire-left {
  left: 18%;
  width: 17%;
}

.wire-right {
  right: 18%;
  width: 17%;
}

.wire-pulse {
  animation-duration: 2.6s;
}

.network-card,
.benefit-card,
.timeline-card {
  padding: 1.4rem;
  min-height: 14rem;
  transition:
    transform 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.network-card {
  z-index: 1;
}

.network-core {
  z-index: 1;
  padding: 1.4rem 1.2rem 1.25rem;
  text-align: center;
}

.network-core-ring {
  position: absolute;
  inset: 16% 24%;
  border: 1px solid rgba(228, 188, 255, 0.16);
  border-radius: 50%;
  pointer-events: none;
}

.ring-one {
  animation: spin 20s linear infinite;
}

.ring-two {
  inset: 9% 19%;
  border-style: dashed;
  animation: spin 14s linear infinite reverse;
}

.globe-shell-small {
  position: relative;
  width: min(18.5rem, 100%);
  margin-inline: auto;
}

.globe-shell-small .globe-core {
  width: 80%;
}

.network-core-copy {
  position: relative;
  z-index: 1;
  margin-top: 0.8rem;
}

.network-core-copy p {
  margin-top: 0.75rem;
}

.network-strip {
  margin-top: 0.2rem;
}

.network-strip span {
  flex: 1 1 180px;
  text-align: center;
}

.benefit-grid,
.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.benefit-card:hover,
.timeline-card:hover,
.network-card:hover {
  transform: translateY(-5px);
  border-color: var(--stroke-strong);
  box-shadow: 0 32px 72px rgba(76, 18, 148, 0.4);
}

.benefit-index,
.timeline-card span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 3rem;
  min-height: 3rem;
  border-radius: 999px;
  background: rgba(165, 76, 255, 0.16);
  color: var(--accent-bright);
  font-weight: 700;
}

.timeline {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.timeline-card {
  min-height: 13rem;
}

.manager-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
  align-items: stretch;
}

.manager-form {
  padding: 1.2rem;
}

.form-window-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.2rem;
}

.form-window-bar span {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
}

.form-window-bar span:nth-child(1) {
  background: #ff7dcc;
}

.form-window-bar span:nth-child(2) {
  background: #bb8fff;
}

.form-window-bar span:nth-child(3) {
  background: #7de7ff;
}

.field {
  display: grid;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.field span {
  color: var(--muted);
  font-size: 0.95rem;
}

.field input,
.field textarea {
  width: 100%;
  border: 1px solid rgba(225, 192, 255, 0.14);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  background: rgba(9, 3, 17, 0.54);
  color: var(--text);
  font: inherit;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.field textarea {
  min-height: 9rem;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(225, 192, 255, 0.42);
  box-shadow: 0 0 0 4px rgba(165, 76, 255, 0.12);
  transform: translateY(-1px);
}

.field-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
}

.submit-button {
  width: 100%;
}

.form-status {
  min-height: 1.6rem;
  margin: 1rem 0 0;
  color: var(--muted);
}

.form-status.is-success {
  color: var(--success);
}

.form-status.is-error {
  color: var(--danger);
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition:
    opacity 0.8s cubic-bezier(0.2, 0.9, 0.2, 1),
    transform 0.8s cubic-bezier(0.2, 0.9, 0.2, 1);
  transition-delay: var(--reveal-delay, 0s);
}

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

[data-tilt] {
  transform:
    perspective(1200px)
    rotateX(var(--tilt-x, 0deg))
    rotateY(var(--tilt-y, 0deg));
}

@keyframes aurora {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1rem, -1rem, 0) scale(1.06);
  }
}

@keyframes starDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-40px, 32px, 0);
  }
}

@keyframes gridDrift {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(0, 24px, 0);
  }
}

@keyframes buttonFlow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes sheen {
  0%,
  12% {
    transform: translateX(-115%);
  }
  28%,
  100% {
    transform: translateX(115%);
  }
}

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.92);
    opacity: 0.74;
  }
  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes pulseHalo {
  0%,
  100% {
    transform: scale(0.98);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.02);
    opacity: 1;
  }
}

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

@keyframes mapSpin {
  from {
    transform: rotate(0deg) scale(1.01);
  }
  to {
    transform: rotate(360deg) scale(1.01);
  }
}

@keyframes continentGlow {
  0%,
  100% {
    opacity: 0.6;
  }
  50% {
    opacity: 0.82;
  }
}

@keyframes scanSweep {
  0% {
    top: -24%;
    opacity: 0;
  }
  20%,
  80% {
    opacity: 1;
  }
  100% {
    top: 92%;
    opacity: 0;
  }
}

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

@keyframes travelHorizontal {
  from {
    left: 0;
    transform: translateY(-50%);
  }
  to {
    left: calc(100% - 0.95rem);
    transform: translateY(-50%);
  }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 38rem;
  }

  .manager-section {
    grid-template-columns: 1fr;
  }

  .network-stage {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.4rem;
  }

  .network-wire {
    display: none;
  }

  .network-card,
  .network-core {
    max-width: none;
  }
}

@media (max-width: 920px) {
  .hero-stats,
  .benefit-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .site-header {
    border-radius: 28px;
  }

  .route-legend {
    justify-content: flex-start;
  }

  .route-legend i {
    width: 3.6rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
  }

  .section {
    padding: 3.4rem 0;
  }

  .hero h1,
  .section h2,
  .manager-copy h2 {
    max-width: none;
  }

  .orbital-stage {
    min-height: 34rem;
  }

  .hero-card,
  .request-lane {
    display: none;
  }

  .globe-cluster {
    top: 42%;
    width: min(22rem, 92%);
  }

  .hero-status {
    width: calc(100% - 1.5rem);
  }

  .network-strip span,
  .manager-notes span,
  .hero-ribbon span {
    flex: 1 1 100%;
  }
}

@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;
  }

  [data-tilt] {
    transform: none !important;
  }
}
