:root {
  --bg: #060606;
  --bg-soft: #0c0e11;
  --panel: rgba(255, 255, 255, 0.04);
  --panel-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f5f5f6;
  --muted: rgba(245, 245, 246, 0.72);
  --gold: #e4bc5c;
  --gold-deep: #9a6a24;
  --silver: #d6dbe3;
  --cyan: #57d7ff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(228, 188, 92, 0.14), transparent 28%),
    radial-gradient(circle at 85% 24%, rgba(87, 215, 255, 0.08), transparent 24%),
    linear-gradient(180deg, #050505 0%, #08090a 100%);
  overflow-x: hidden;
}

body {
  font-size: 17px;
}

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

#scene,
.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
}

#scene {
  z-index: 0;
  opacity: 0.9;
}

.noise {
  z-index: 1;
  opacity: 0.042;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.4) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black, transparent 82%);
}

.site-shell {
  position: relative;
  z-index: 2;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 38px;
  backdrop-filter: blur(18px);
  background: rgba(6, 6, 6, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.brand img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(228, 188, 92, 0.16));
}

.brand span {
  display: block;
  font-size: 15px;
  font-weight: 700;
}

.brand small {
  display: none;
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.topbar.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.topbar.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav a,
.button,
.nav-cta,
.text-link {
  transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.nav a:hover,
.button:hover,
.nav-cta:hover,
.text-link:hover {
  transform: translateY(-1px);
}

.nav a.active,
.nav-cta.active {
  color: var(--text);
}

.nav-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
  font-weight: 600;
}

.nav-cta,
.button.primary {
  color: #141414;
  background: linear-gradient(135deg, #f0cb76, #c89338);
  border-color: rgba(240, 203, 118, 0.4);
  box-shadow: 0 10px 30px rgba(200, 147, 56, 0.18);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.03);
}

.section {
  width: min(1320px, calc(100% - 64px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 24px;
  align-items: center;
  min-height: calc(88vh - 84px);
  padding: 34px 0 44px;
}

.page-hero {
  padding: 58px 0 6px;
}

.page-hero.has-graphic {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 28px;
  align-items: center;
}

.page-graphic {
  position: relative;
  min-height: 190px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(228, 188, 92, 0.08), transparent 34%, rgba(87, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.page-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.48;
}

.flow-node {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  color: #f0cb76;
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(228, 188, 92, 0.22);
  background: rgba(5, 5, 5, 0.46);
  box-shadow: 0 0 28px rgba(228, 188, 92, 0.12);
}

.flow-node:nth-child(1) { left: 10%; top: 36%; }
.flow-node:nth-child(2) { left: 34%; top: 18%; color: #d6dbe3; }
.flow-node:nth-child(3) { left: 58%; top: 42%; color: #57d7ff; }
.flow-node:nth-child(4) { left: 80%; top: 22%; }

.flow-line {
  position: absolute;
  left: 16%;
  right: 13%;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, rgba(228, 188, 92, 0.1), rgba(87, 215, 255, 0.32), rgba(228, 188, 92, 0.1));
  transform: skewY(-10deg);
}

.solution-hero,
.about-hero {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 30px;
  align-items: center;
}

.solution-visual,
.about-signal {
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 70% 40%, rgba(87, 215, 255, 0.16), transparent 28%),
    radial-gradient(circle at 30% 68%, rgba(228, 188, 92, 0.14), transparent 28%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.solution-visual::before,
.about-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black, transparent 76%);
  opacity: 0.7;
}

.solution-core,
.solution-route,
.signal-card,
.stack-card {
  position: relative;
  z-index: 2;
}

.solution-orbit,
.signal-ring {
  position: absolute;
  inset: 42px 15%;
  border-radius: 50%;
  border: 1px solid rgba(228, 188, 92, 0.34);
  animation: orbitLine 18s linear infinite;
}

.solution-orbit::before,
.solution-orbit::after,
.signal-ring::before,
.signal-ring::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.solution-orbit::before,
.signal-ring::before {
  inset: 18%;
  border: 1px solid rgba(87, 215, 255, 0.22);
}

.solution-orbit::after,
.signal-ring::after {
  width: 14px;
  height: 14px;
  right: 20%;
  top: 6%;
  background: radial-gradient(circle, #fff, #e4bc5c 54%, #9a6a24);
  box-shadow: 0 0 26px rgba(228, 188, 92, 0.55);
}

.solution-core {
  position: absolute;
  inset: 50%;
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  margin: -43px;
  border-radius: 50%;
  color: #f3cc75;
  font-weight: 800;
  letter-spacing: 0.12em;
  background: rgba(5, 5, 5, 0.54);
  border: 1px solid rgba(228, 188, 92, 0.32);
  box-shadow: 0 0 44px rgba(228, 188, 92, 0.16);
}

.solution-route {
  position: absolute;
  min-width: 92px;
  padding: 12px 14px;
  border-radius: 8px;
  text-align: center;
  color: var(--text);
  font-size: 12px;
  font-weight: 700;
  background: rgba(5, 5, 5, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
}

.route-a { left: 13%; top: 26%; }
.route-b { right: 15%; top: 29%; }
.route-c { left: 18%; bottom: 24%; }
.route-d { right: 12%; bottom: 22%; }

.icon-row,
.pillar-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.line-icon,
.pillar-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  color: #f0cb76;
  border: 1px solid rgba(228, 188, 92, 0.24);
  background: rgba(228, 188, 92, 0.1);
}

.solution-pillars {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.9fr;
  gap: 18px;
  margin-top: 18px;
}

.solution-pillar {
  position: relative;
  min-height: 260px;
  padding: 24px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(228, 188, 92, 0.1), transparent 38%, rgba(87, 215, 255, 0.08)),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.solution-pillar.tall {
  min-height: 320px;
}

.solution-pillar h3 {
  margin: 28px 0 10px;
  font-size: 22px;
}

.solution-pillar p,
.solution-summary p,
.about-values p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
}

.pillar-tags span {
  padding: 8px 10px;
  border-radius: 999px;
  color: rgba(245, 245, 246, 0.78);
  font-size: 12px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.about-signal {
  min-height: 310px;
}

.signal-card {
  display: grid;
  gap: 10px;
  width: min(310px, calc(100% - 56px));
  margin: 52px 0 0 42px;
}

.signal-card span,
.stack-card {
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.48);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
}

.signal-card span {
  padding: 13px 15px;
  color: rgba(245, 245, 246, 0.86);
  font-size: 13px;
  font-weight: 700;
}

.about-story {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 72px 0 18px;
}

.about-lead-panel {
  min-height: 300px;
}

.about-stack {
  display: grid;
  gap: 14px;
  align-content: center;
}

.stack-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px;
}

.stack-card.active {
  border-color: rgba(228, 188, 92, 0.26);
  background: rgba(228, 188, 92, 0.08);
}

.stack-card span {
  color: #f0cb76;
  font-size: 12px;
  letter-spacing: 0.18em;
}

.stack-card strong {
  font-size: 15px;
}

.accent-board {
  background:
    radial-gradient(circle at 78% 22%, rgba(228, 188, 92, 0.12), transparent 22%),
    rgba(255, 255, 255, 0.035);
}

.contact-hero {
  max-width: 720px;
}

.contact-gateway {
  display: grid;
  place-items: center;
  min-height: 52vh;
  padding: 70px 0 110px;
}

.gateway-card {
  position: relative;
  width: min(760px, 100%);
  padding: 42px;
  border-radius: 8px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at 50% 0%, rgba(228, 188, 92, 0.16), transparent 32%),
    radial-gradient(circle at 80% 60%, rgba(87, 215, 255, 0.12), transparent 26%),
    rgba(255, 255, 255, 0.035);
  box-shadow: var(--shadow);
}

.gateway-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.35;
}

.gateway-card > * {
  position: relative;
  z-index: 2;
}

.gateway-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.gateway-card p:not(.eyebrow) {
  max-width: 48ch;
  margin: 16px auto 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.gateway-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  border-radius: 50%;
  border: 1px solid rgba(228, 188, 92, 0.34);
  box-shadow: 0 0 44px rgba(228, 188, 92, 0.16);
}

.gateway-mark span {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #f0cb76, #57d7ff);
  transform: rotate(45deg);
}

.eyebrow {
  margin: 0 0 14px;
  color: #dfc178;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

p,
span,
strong,
a {
  overflow-wrap: anywhere;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 1.08;
  font-weight: 700;
}

.hero h1 {
  max-width: 17ch;
  font-size: clamp(30px, 3.1vw, 52px);
}

.page-hero h1 {
  max-width: 19ch;
  font-size: clamp(25px, 2.45vw, 38px);
}

.hero-title span {
  display: block;
  white-space: nowrap;
}

.lede,
.page-lede,
.section-heading p,
.info-card p,
.stat-block span,
.feature-item p,
.text-panel p,
.journey-step span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.lede,
.page-lede {
  max-width: 44ch;
  margin-top: 14px;
  font-size: 14px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 16px;
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  font-size: 12px;
}

.hero-points li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--cyan));
  vertical-align: middle;
}

.hero-media {
  position: relative;
  isolation: isolate;
  perspective: 1200px;
}

.hero-image-shell {
  --rx: 0deg;
  --ry: 0deg;
  --mx: 50%;
  --my: 50%;
  position: relative;
  margin: -72px -110px -76px -44px;
  padding: 0;
  border-radius: 0;
  aspect-ratio: 1.32;
  background:
    radial-gradient(ellipse at 51% 52%, transparent 0 44%, rgba(5, 5, 5, 0.04) 54%, rgba(5, 5, 5, 0.26) 66%, transparent 80%),
    url("./hero-globe.jpg") center / 106% auto no-repeat;
  background-blend-mode: normal, screen;
  border: 0;
  box-shadow: none;
  overflow: visible;
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  transform-style: preserve-3d;
  cursor: crosshair;
  transition: transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 420ms ease;
  will-change: transform, filter;
  mask-image: radial-gradient(ellipse 70% 64% at 53% 50%, black 0 48%, rgba(0, 0, 0, 0.7) 57%, transparent 76%);
  -webkit-mask-image: radial-gradient(ellipse 70% 64% at 53% 50%, black 0 48%, rgba(0, 0, 0, 0.7) 57%, transparent 76%);
}

.hero-image-shell:hover {
  transform: rotateX(var(--rx)) rotateY(var(--ry)) translateZ(0);
  filter: saturate(1.16) brightness(1.08);
}

.hero-image-shell::before {
  content: "";
  position: absolute;
  inset: -18%;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 226, 146, 0.28), transparent 18%),
    radial-gradient(circle at 54% 48%, rgba(228, 188, 92, 0.2), transparent 26%),
    radial-gradient(circle at 66% 46%, rgba(87, 215, 255, 0.14), transparent 34%);
  filter: blur(30px);
  opacity: 0.75;
  pointer-events: none;
  animation: glowPulse 8s ease-in-out infinite;
  transform: translateZ(-60px);
}

.hero-image-shell::after {
  content: "";
  position: absolute;
  inset: 12% 4% 8% 6%;
  z-index: 2;
  border-radius: 50%;
  border: 1px solid rgba(87, 215, 255, 0.12);
  transform: rotate(-18deg);
  animation: orbitLine 14s linear infinite;
  pointer-events: none;
  transform-style: preserve-3d;
}

.hero-image-shell .depth-sheen {
  position: absolute;
  inset: 10% 8% 13% 7%;
  z-index: 3;
  border-radius: 50%;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.18), transparent 18%),
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.12), transparent 52%);
  mix-blend-mode: screen;
  opacity: 0;
  transform: translateZ(70px);
  transition: opacity 220ms ease;
  pointer-events: none;
}

.hero-image-shell.is-hovering .depth-sheen {
  opacity: 1;
}

.hero-image-shell.is-hovering::before {
  opacity: 1;
}

.ticker-band {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 0;
  padding: 16px 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: ticker 72s linear infinite;
}

.ticker-track span::after {
  content: "/";
  margin: 0 34px;
  color: rgba(228, 188, 92, 0.72);
}

.stats,
.card-grid,
.contact-grid {
  display: grid;
  gap: 18px;
}

.stats {
  grid-template-columns: repeat(4, 1fr);
  padding: 48px 0 24px;
}

.card-grid,
.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.stat-block,
.info-card,
.text-panel,
.feature-item,
.journey-step,
.stack-row,
.feature-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.stat-block,
.info-card,
.text-panel,
.journey-step {
  border-radius: 18px;
  padding: 24px;
}

.stat-block strong {
  display: block;
  font-size: 24px;
}

.section-grid,
.two-col,
.feature-band,
.tech-stack {
  padding: 92px 0 16px;
}

.section-heading {
  max-width: 760px;
}

.section-heading h2,
.text-panel h2,
.feature-panel h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.1;
}

.info-card {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.info-card::after,
.text-panel::after,
.stack-row::after,
.journey-step::after {
  content: "";
  position: absolute;
  top: 22px;
  right: 22px;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 1px solid rgba(228, 188, 92, 0.22);
  background:
    linear-gradient(135deg, rgba(228, 188, 92, 0.16), rgba(87, 215, 255, 0.08)),
    radial-gradient(circle at 65% 35%, rgba(255, 255, 255, 0.26), transparent 34%);
  opacity: 0.78;
}

.info-card:nth-child(2n)::after,
.journey-step:nth-child(2n)::after {
  border-radius: 50%;
  border-color: rgba(87, 215, 255, 0.24);
}

.info-card:nth-child(3n)::after,
.stack-row:nth-child(3n)::after {
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.info-card::before,
.feature-item::before,
.feature-panel::before,
.text-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228, 188, 92, 0.12), transparent 38%, rgba(87, 215, 255, 0.08));
  opacity: 0;
  transition: opacity 220ms ease;
}

.info-card:hover::before,
.feature-item:hover::before,
.feature-panel:hover::before,
.text-panel:hover::before {
  opacity: 1;
}

.card-index {
  position: relative;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 0.18em;
}

.info-card h3,
.feature-item h3,
.text-panel h2,
.journey-step strong {
  position: relative;
}

.info-card h3,
.feature-item h3 {
  margin: 18px 0 10px;
  font-size: 21px;
  line-height: 1.3;
}

.feature-band {
  padding-bottom: 110px;
}

.visual-split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
  padding: 86px 0 18px;
}

.visual-copy {
  padding: 28px;
}

.visual-copy h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.visual-copy p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.visual-board,
.mini-board,
.visual-copy {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.visual-board {
  min-height: 360px;
  padding: 28px;
}

.visual-board::before,
.mini-board::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.42;
}

.orbit-graphic {
  position: absolute;
  width: 280px;
  aspect-ratio: 1;
  right: 12%;
  top: 48%;
  transform: translateY(-50%);
  border-radius: 50%;
  border: 1px solid rgba(228, 188, 92, 0.42);
  animation: orbitLine 16s linear infinite;
}

.orbit-graphic::before,
.orbit-graphic::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.orbit-graphic::before {
  inset: 15%;
  border: 1px solid rgba(214, 219, 227, 0.32);
}

.orbit-graphic::after {
  width: 16px;
  height: 16px;
  top: 8%;
  right: 20%;
  background: radial-gradient(circle, #fff, #e4bc5c 54%, #946621);
  box-shadow: 0 0 30px rgba(228, 188, 92, 0.6);
}

.rail-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  max-width: 310px;
}

.rail-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.42);
  border-radius: 8px;
}

.rail-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #f0cb76;
  background: rgba(228, 188, 92, 0.12);
}

.rail-item strong {
  display: block;
  font-size: 13px;
}

.rail-item span {
  color: var(--muted);
  display: block;
  font-size: 12px;
  margin-top: 2px;
}

.media-strip {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 82px 0 18px;
}

.mini-board {
  min-height: 270px;
  padding: 24px;
}

.mini-board h3 {
  position: relative;
  margin: 0;
  font-size: 24px;
}

.mini-board p {
  position: relative;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.75;
  max-width: 42ch;
}

.node-map {
  position: absolute;
  inset: auto 28px 28px auto;
  width: 220px;
  height: 130px;
}

.node-map span {
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #e4bc5c;
  box-shadow: 0 0 22px rgba(228, 188, 92, 0.7);
}

.node-map span:nth-child(1) { left: 12%; top: 58%; }
.node-map span:nth-child(2) { left: 36%; top: 24%; background: #57d7ff; }
.node-map span:nth-child(3) { left: 62%; top: 42%; }
.node-map span:nth-child(4) { left: 84%; top: 12%; background: #d6dbe3; }

.node-map::before {
  content: "";
  position: absolute;
  inset: 18px 22px 28px 24px;
  border-top: 1px solid rgba(87, 215, 255, 0.22);
  border-bottom: 1px solid rgba(228, 188, 92, 0.22);
  transform: skewY(-16deg);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.metric-chip {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
}

.metric-icon {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(228, 188, 92, 0.2), rgba(87, 215, 255, 0.12));
  color: #f1d385;
}

.metric-icon svg {
  width: 16px;
  height: 16px;
}

.metric-chip strong {
  display: block;
  font-size: 12px;
  line-height: 1.3;
}

.metric-chip span {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.feature-panel {
  position: relative;
  border-radius: 24px;
  padding: 30px;
  overflow: hidden;
}

.feature-panel.wide {
  padding-bottom: 34px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 30px;
}

.feature-list.compact {
  margin-top: 24px;
}

.feature-item {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border-radius: 18px;
  overflow: hidden;
}

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

.journey-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.journey-step strong {
  display: block;
  margin-top: 6px;
  font-size: 18px;
  line-height: 1.45;
}

.tech-stack {
  display: grid;
  gap: 14px;
}

.stack-row {
  padding: 22px 24px;
  border-radius: 18px;
}

.stack-row span {
  display: block;
  color: #ddb866;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stack-row strong {
  display: block;
  margin-top: 8px;
  font-size: 17px;
  line-height: 1.6;
}

.text-link {
  position: relative;
  display: inline-block;
  margin-top: 18px;
  color: #f0cb76;
  font-size: 14px;
  font-weight: 600;
}

.site-footer {
  margin-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.footer-inner {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 28px 0 34px;
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 24px;
}

.footer-brand p,
.footer-links a,
.footer-meta span,
.footer-meta a {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.footer-brand {
  display: flex;
  gap: 14px;
}

.footer-brand img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

.footer-brand strong {
  display: block;
  font-size: 15px;
}

.footer-links,
.footer-meta {
  display: grid;
  gap: 8px;
}

.footer-links strong,
.footer-meta strong {
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ddbf78;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes float {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -12px, 0);
  }
}

@keyframes heroDrift {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-10px, -12px, 0) scale(1.025);
  }
}

@keyframes glowPulse {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.98);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.04);
  }
}

@keyframes orbitLine {
  from {
    transform: rotate(-18deg);
  }
  to {
    transform: rotate(342deg);
  }
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@media (max-width: 1100px) {
  .hero,
  .two-col,
  .visual-split,
  .media-strip,
  .page-hero.has-graphic,
  .solution-hero,
  .about-hero,
  .about-story,
  .solution-pillars {
    grid-template-columns: 1fr;
  }

  .hero-image-shell {
    margin: 8px auto 0;
    width: min(620px, 100%);
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 900px) {
  .topbar {
    position: sticky;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 16px 18px;
  }

  .topbar > .nav-cta {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    flex: 0 0 42px;
    position: fixed;
    top: 14px;
    right: 14px;
    z-index: 24;
  }

  .nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 14px;
    display: grid;
    width: min(280px, calc(100vw - 28px));
    padding: 12px;
    gap: 4px;
    overflow: hidden;
    font-size: 12px;
    white-space: normal;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(7, 8, 9, 0.94);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .topbar.nav-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav a {
    display: block;
    padding: 12px 12px;
    border-radius: 8px;
  }

  .nav a.active,
  .nav a:hover {
    background: rgba(228, 188, 92, 0.1);
  }

  .section {
    width: min(100% - 28px, 1180px);
  }

  .brand img {
    width: 42px;
    height: 42px;
  }

  .brand span {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 28px;
    gap: 10px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(26px, 8vw, 34px);
  }

  .hero-title span {
    white-space: normal;
  }

  .hero-points {
    display: grid;
    gap: 8px;
  }

  .hero-image-shell {
    margin: 4px -20px -22px;
    width: calc(100% + 40px);
  }

  .visual-board {
    min-height: 300px;
  }

  .stats,
  .card-grid,
  .contact-grid,
  .feature-list,
  .journey-grid,
  .footer-inner,
  .solution-pillars {
    grid-template-columns: 1fr;
  }

  .solution-visual,
  .about-signal {
    min-height: 250px;
  }

  .solution-route {
    min-width: 78px;
    padding: 10px;
    font-size: 11px;
  }

  .gateway-card {
    padding: 30px 20px;
  }

  .section-grid,
  .two-col,
  .feature-band,
  .tech-stack,
  .visual-split,
  .media-strip,
  .about-story,
  .contact-gateway {
    padding-top: 54px;
  }

  .page-hero {
    padding-top: 44px;
  }

  .stat-block,
  .info-card,
  .text-panel,
  .journey-step,
  .feature-item,
  .solution-pillar {
    min-height: auto;
    padding: 20px;
  }

  .footer-inner {
    width: min(100% - 28px, 1180px);
    padding: 24px 0 30px;
  }

  .feature-panel,
  .info-card,
  .text-panel,
  .feature-item,
  .journey-step,
  .stack-row,
  .stat-block,
  .visual-board,
  .mini-board,
  .visual-copy {
    border-radius: 8px;
  }
}

@media (max-width: 520px) {
  .nav-cta {
    display: none;
  }

  .topbar {
    padding: 12px 14px;
  }

  .brand {
    gap: 10px;
  }

  .brand img {
    width: 38px;
    height: 38px;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
  }

  .hero-actions .button {
    flex: 1 1 140px;
  }

  .ticker-track {
    font-size: 10px;
    padding: 12px 0;
  }

  .ticker-track span::after {
    margin: 0 22px;
  }
}

.feature-item h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 180ms ease;
}

.feature-item h3 a:hover {
  color: var(--gold);
}
