/* ==========================================================================
   Nucleus — Enterprise ISP & Virtual Private Cloud
   Brand: #25135d · #7265ff · Gibson
   ========================================================================== */

/* Gibson — variable (preferred) + static weight fallbacks */
@font-face {
  font-family: "Gibson";
  src: url("../assets/fonts/GibsonVF-Regular.woff2") format("woff2-variations"),
       url("../assets/fonts/GibsonVF-Regular.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson";
  src: url("../assets/fonts/GibsonVF-Italic.woff2") format("woff2-variations"),
       url("../assets/fonts/GibsonVF-Italic.woff2") format("woff2");
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

/* Static fallbacks for older browsers that ignore variable ranges */
@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-Book.woff2") format("woff2");
  font-weight: 350;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gibson Fallback";
  src: url("../assets/fonts/Gibson_v4-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --navy: #25135d;
  --navy-deep: #160a3a;
  --navy-mid: #1c0e4a;
  --purple: #7265ff;
  --purple-soft: #8b80ff;
  --purple-glow: rgba(114, 101, 255, 0.45);
  --purple-dim: rgba(114, 101, 255, 0.12);
  --white: #ffffff;
  --off-white: #f4f2ff;
  --gray-100: #ebe8f8;
  --gray-200: #d4d0e8;
  --gray-400: #9b96b8;
  --gray-500: #6e6990;
  --text: #1a1235;
  --text-muted: #5c5678;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow: 0 20px 50px rgba(37, 19, 93, 0.18);
  --shadow-glow: 0 0 60px rgba(114, 101, 255, 0.25);
  --font: "Gibson", "Gibson Fallback", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Gibson", "Gibson Fallback", system-ui, sans-serif;
  --nav-h: 76px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  min-width: 0;
}

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

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

a {
  color: inherit;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(114, 101, 255, 0.2);
}

ul {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  -webkit-tap-highlight-color: rgba(114, 101, 255, 0.2);
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  padding-inline: env(safe-area-inset-left, 0) env(safe-area-inset-right, 0);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }

  .hero-copy .eyebrow,
  .hero-copy h1,
  .hero-copy .hero-lead,
  .hero-copy .hero-actions,
  .hero-copy .hero-stats,
  .hero-visual {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* --------------------------------------------------------------------------
   Typography
   -------------------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--purple);
}

.eyebrow::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--purple);
  border-radius: 2px;
}

/* --------------------------------------------------------------------------
   Buttons
   -------------------------------------------------------------------------- */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
  white-space: nowrap;
  min-height: 44px;
  overflow: hidden;
}

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

.btn-primary {
  background: linear-gradient(135deg, #7b6fff 0%, var(--purple) 45%, #5b4fe0 100%);
  background-size: 160% 160%;
  color: var(--white);
  box-shadow: 0 8px 28px rgba(114, 101, 255, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 35%,
    rgba(255, 255, 255, 0.28) 48%,
    transparent 62%
  );
  transform: translateX(-120%);
  transition: transform 0.7s var(--ease);
  pointer-events: none;
}

.btn-primary:hover {
  background-position: 100% 50%;
  box-shadow: 0 14px 40px rgba(114, 101, 255, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.btn-primary:hover::after {
  transform: translateX(120%);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid rgba(37, 19, 93, 0.2);
}

.btn-outline:hover {
  border-color: var(--purple);
  color: var(--purple);
  background: var(--purple-dim);
}

.btn-ghost {
  color: var(--white);
  padding-inline: 0.75rem;
}

.btn-ghost:hover {
  color: var(--purple-soft);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   Status bar (top) + Freshservice badge (footer)
   -------------------------------------------------------------------------- */

/* Live Freshservice status (top bar) + phone */
.status-bar {
  --status-bar-h: 40px;
  --status-icon: 13px;
  background: var(--navy-deep);
  color: var(--gray-200);
  font-size: 0.8125rem;
  border-bottom: 1px solid rgba(114, 101, 255, 0.15);
}

.status-bar .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  column-gap: 1rem;
  width: min(100% - 2.5rem, var(--max));
  max-width: var(--max);
  height: var(--status-bar-h);
  min-height: var(--status-bar-h);
  margin-inline: auto;
  padding-block: 0;
  box-sizing: border-box;
}

/* Live badge — vertically centered with phone on the right */
.status-bar-status {
  justify-self: start;
  display: flex;
  flex-direction: row;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  height: 100%;
  line-height: 1;
}

.status-bar-status fs-status-badge,
.status-bar-status .fs-status-badge {
  display: inline-flex !important;
  align-items: center;
  align-self: center;
  max-width: min(100%, 420px);
  line-height: 1;
  margin: 0;
  /* Freshservice injects inner UI — keep it from adding stray offset */
  vertical-align: middle;
}

/* Normalize common inner nodes the badge may inject */
.status-bar-status fs-status-badge *,
.status-bar-status .fs-status-badge * {
  vertical-align: middle;
  line-height: 1.2;
}

.status-bar-phone {
  justify-self: end;
  display: inline-flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
  align-self: center;
  gap: 0.4rem;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--gray-400);
  font-family: inherit;
  font-weight: 500;
  font-size: inherit;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s;
}

.status-bar-phone:hover {
  color: var(--purple-soft);
}

.status-bar-phone svg,
.status-bar-phone-icon {
  display: block;
  box-sizing: border-box;
  width: var(--status-icon);
  height: var(--status-icon);
  min-width: var(--status-icon);
  min-height: var(--status-icon);
  max-width: var(--status-icon);
  max-height: var(--status-icon);
  flex: 0 0 var(--status-icon);
  margin: 0;
  padding: 0;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .status-bar {
    --status-bar-h: 38px;
    --status-icon: 12px;
    font-size: 0.75rem;
  }

  .status-bar .container {
    width: min(100% - 1.25rem, var(--max));
    column-gap: 0.5rem;
  }

  .status-bar-status fs-status-badge,
  .status-bar-status .fs-status-badge {
    max-width: min(100%, 220px);
  }
}

/* Freshservice badge (top bar + footer) */
fs-status-badge,
.fs-status-badge {
  display: inline-flex !important;
  vertical-align: middle;
  max-width: 100%;
}

.footer-status fs-status-badge,
.footer-status .fs-status-badge {
  max-width: 100%;
}


/* --------------------------------------------------------------------------
   Navigation
   -------------------------------------------------------------------------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(22, 10, 58, 0.85);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid rgba(114, 101, 255, 0.12);
  transition: background 0.3s, box-shadow 0.3s;
  /* Anchor for absolute mobile panel */
  isolation: isolate;
}

.site-header.scrolled {
  background: rgba(22, 10, 58, 0.95);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 28px;
  width: auto;
  max-width: min(160px, 42vw);
  object-fit: contain;
}

.site-header nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links > li {
  position: relative;
}

.nav-links > li > a,
.nav-links > li > button.nav-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 0.9rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.82);
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links > li > a:hover,
.nav-links > li > button.nav-trigger:hover,
.nav-links > li > a.active,
.nav-links > li.open > button.nav-trigger {
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.nav-trigger svg {
  width: 14px;
  height: 14px;
  opacity: 0.7;
  transition: transform 0.25s var(--ease);
}

.nav-links > li.open > button.nav-trigger svg {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  padding: 0.5rem;
  background: rgba(28, 14, 74, 0.98);
  border: 1px solid rgba(114, 101, 255, 0.2);
  border-radius: var(--radius-sm);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s var(--ease), visibility 0.2s;
}

.nav-links > li.open .dropdown,
.nav-links > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  transition: background 0.15s;
}

.dropdown a:hover {
  background: rgba(114, 101, 255, 0.15);
}

.dropdown a strong {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.dropdown a span {
  font-size: 0.78rem;
  color: var(--gray-400);
  font-weight: 400;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-cta .btn-primary {
  padding: 0.65rem 1.25rem;
  font-size: 0.875rem;
}

/* Mobile menu — hidden by default on all breakpoints */
.mobile-panel {
  display: none;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: 8px;
  flex-shrink: 0;
  color: var(--white);
}

.menu-toggle:focus-visible {
  outline: 2px solid var(--purple);
  outline-offset: 2px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Scrim behind open mobile menu */
.menu-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(10, 4, 28, 0.55);
  border: 0;
  padding: 0;
  cursor: pointer;
}

.menu-scrim.visible {
  display: block;
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  min-height: max(640px, calc(100dvh - 116px));
  display: flex;
  align-items: center;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

/* Animated mesh background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(114, 101, 255, 0.4), transparent 55%),
    radial-gradient(ellipse 60% 50% at 15% 80%, rgba(114, 101, 255, 0.22), transparent 50%),
    radial-gradient(ellipse 50% 40% at 90% 85%, rgba(37, 19, 93, 0.9), transparent 45%),
    linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 45%, #1a0c48 100%);
}

/* Soft aurora beam sweeping the hero */
.hero-bg::after {
  content: "";
  position: absolute;
  top: -20%;
  left: -30%;
  width: 70%;
  height: 140%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(114, 101, 255, 0.08) 40%,
    rgba(168, 156, 255, 0.14) 50%,
    rgba(114, 101, 255, 0.08) 60%,
    transparent 100%
  );
  transform: rotate(12deg);
  animation: aurora-sweep 14s ease-in-out infinite;
  pointer-events: none;
}

@keyframes aurora-sweep {
  0%, 100% { transform: rotate(12deg) translateX(-8%); opacity: 0.55; }
  50% { transform: rotate(12deg) translateX(18%); opacity: 1; }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: float-orb 18s ease-in-out infinite;
  pointer-events: none;
  will-change: transform;
}

.hero-orb-1 {
  width: 480px;
  height: 480px;
  background: var(--purple);
  top: -12%;
  right: 5%;
  animation-delay: 0s;
}

.hero-orb-2 {
  width: 360px;
  height: 360px;
  background: #4c3db8;
  bottom: -8%;
  left: -5%;
  animation-delay: -6s;
}

.hero-orb-3 {
  width: 220px;
  height: 220px;
  background: var(--purple-soft);
  top: 45%;
  left: 40%;
  opacity: 0.25;
  animation-delay: -12s;
}

@keyframes float-orb {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -40px) scale(1.05); }
  66% { transform: translate(-20px, 25px) scale(0.95); }
}

/* Grid overlay — perspective fade */
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114, 101, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 101, 255, 0.07) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 75% 70% at 55% 40%, black 15%, transparent 72%);
  -webkit-mask-image: radial-gradient(ellipse 75% 70% at 55% 40%, black 15%, transparent 72%);
  pointer-events: none;
  animation: grid-drift 40s linear infinite;
}

@keyframes grid-drift {
  0% { background-position: 0 0, 0 0; }
  100% { background-position: 56px 56px, 56px 56px; }
}

/* Hero entrance stagger */
.hero-copy .eyebrow,
.hero-copy h1,
.hero-copy .hero-lead,
.hero-copy .hero-actions,
.hero-copy .hero-stats,
.hero-visual {
  opacity: 0;
  transform: translateY(22px);
  animation: hero-rise 0.9s var(--ease) forwards;
}

.hero-copy .eyebrow { animation-delay: 0.05s; }
.hero-copy h1 { animation-delay: 0.14s; }
.hero-copy .hero-lead { animation-delay: 0.26s; }
.hero-copy .hero-actions { animation-delay: 0.38s; }
.hero-copy .hero-stats { animation-delay: 0.5s; }
.hero-visual { animation-delay: 0.28s; }

@keyframes hero-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fiber lines */
.hero-lines {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0.4;
}

.hero-lines span {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple), transparent);
  animation: fiber-scan 8s linear infinite;
}

.hero-lines span:nth-child(1) { top: 22%; width: 40%; left: -10%; animation-duration: 9s; }
.hero-lines span:nth-child(2) { top: 48%; width: 55%; left: 30%; animation-duration: 11s; animation-delay: -3s; }
.hero-lines span:nth-child(3) { top: 72%; width: 35%; left: 10%; animation-duration: 7s; animation-delay: -5s; }

@keyframes fiber-scan {
  0% { transform: translateX(-30%); opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { transform: translateX(40%); opacity: 0; }
}

.hero-inner {
  position: relative;
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3rem;
  align-items: center;
  padding-block: 4.5rem 5rem;
  min-width: 0;
}

.hero-copy,
.hero-visual {
  min-width: 0;
}

.hero-copy {
  max-width: 640px;
}

.hero-copy .eyebrow {
  margin-bottom: 1.25rem;
  color: var(--purple-soft);
}

.hero-copy .eyebrow::before {
  background: var(--purple-soft);
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 3.85rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin-bottom: 1.35rem;
}

.hero h1 .gradient-text {
  background: linear-gradient(
    110deg,
    #ffffff 0%,
    #e4e0ff 25%,
    var(--purple-soft) 50%,
    #c4bcff 75%,
    #ffffff 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-shift 6s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% center; }
  50% { background-position: 100% center; }
}

.hero-lead {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.72);
  max-width: 34em;
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2.75rem;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 2rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  min-width: 0;
}

.hero-stat strong {
  display: flex;
  align-items: center;
  min-height: 1.85rem;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
  font-variant-numeric: tabular-nums;
  background: linear-gradient(180deg, #fff 30%, rgba(200, 192, 255, 0.9));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-stat span {
  font-size: 0.8125rem;
  line-height: 1.35;
  color: var(--gray-400);
  font-weight: 500;
}

/* Hero visual card — padding keeps floating badges outside the panel */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.75rem 3.25rem 3.25rem 2.75rem;
  overflow: visible;
}

.hero-panel-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-panel {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 1.5rem 1.5rem 1.35rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(114, 101, 255, 0.25);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08);
  animation: panel-glow 5s ease-in-out infinite;
}

@keyframes panel-glow {
  0%, 100% { box-shadow: var(--shadow-glow), inset 0 1px 0 rgba(255, 255, 255, 0.08); }
  50% { box-shadow: 0 0 80px rgba(114, 101, 255, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.1); }
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(114, 101, 255, 0.5), transparent 40%, transparent 60%, rgba(114, 101, 255, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.panel-kicker {
  margin: 0 0 0.2rem;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--purple-soft);
}

.panel-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.96);
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.panel-tag {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--purple-soft);
  background: rgba(114, 101, 255, 0.14);
  border: 1px solid rgba(114, 101, 255, 0.28);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  margin-top: 0.15rem;
}

/* Platform stack — three informative layers */
.stack-layers {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.stack-layer {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.9rem 0.95rem;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-sm);
  transition: border-color 0.25s, background 0.25s, transform 0.25s var(--ease);
}

.stack-layer:hover {
  border-color: rgba(114, 101, 255, 0.35);
  background: rgba(0, 0, 0, 0.36);
  transform: translateX(2px);
}

.stack-layer--core {
  border-color: rgba(114, 101, 255, 0.32);
  background:
    linear-gradient(135deg, rgba(114, 101, 255, 0.14), transparent 55%),
    rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 0 1px rgba(114, 101, 255, 0.08);
}

.stack-num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple-soft);
  line-height: 1.4;
  margin-top: 0.15rem;
  font-variant-numeric: tabular-nums;
}

.stack-body {
  min-width: 0;
}

.stack-top {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  margin-bottom: 0.3rem;
}

.stack-role {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.stack-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.015em;
  line-height: 1.25;
}

.stack-desc {
  margin: 0;
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.62);
}

.panel-nodes {
  display: flex;
  gap: 0.45rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.node-chip {
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  background: var(--purple-dim);
  color: var(--purple-soft);
  border: 1px solid rgba(114, 101, 255, 0.25);
}

a.node-chip--link {
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
}

a.node-chip--link:hover {
  background: rgba(114, 101, 255, 0.28);
  border-color: rgba(168, 156, 255, 0.55);
  color: var(--white);
  transform: translateY(-1px);
}

/* Floating badges — sit on panel corners, fully visible above the card */
.float-badge {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 0.9rem;
  background: rgba(28, 14, 74, 0.92);
  border: 1px solid rgba(114, 101, 255, 0.35);
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(12px);
  white-space: nowrap;
  animation: float-badge 5s ease-in-out infinite;
}

.float-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--purple-soft);
}

/* Frame the card from outside — never over the stack copy */
.float-badge-1 {
  top: -1.4rem;
  right: -1.1rem;
  animation-delay: 0s;
}

.float-badge-2 {
  bottom: -1.35rem;
  left: -1.1rem;
  animation-delay: -2.5s;
}

/*
  Bottom-right, fully outside the card so it never covers stack copy.
  Mirrors badge-2 (bottom-left) under the panel frame.
*/
.float-badge-3 {
  top: auto;
  bottom: -1.35rem;
  right: -1.1rem;
  left: auto;
  animation-delay: -1.2s;
}

@keyframes float-badge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* --------------------------------------------------------------------------
   Sections common
   -------------------------------------------------------------------------- */

section {
  padding-block: 5.5rem;
}

.section-header {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-header.center {
  text-align: center;
  margin-inline: auto;
}

.section-header h2 {
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  color: var(--navy);
  margin: 0.75rem 0 1rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.section-dark {
  background: var(--navy-deep);
  color: var(--white);
}

.section-dark .section-header h2 {
  color: var(--white);
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.65);
}

.section-muted {
  background: var(--off-white);
}

/* --------------------------------------------------------------------------
   Value props / Features
   -------------------------------------------------------------------------- */

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  position: relative;
  padding: 1.75rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: 0 4px 24px rgba(37, 19, 93, 0.04);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    420px circle at var(--spot-x) var(--spot-y),
    rgba(114, 101, 255, 0.14),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  pointer-events: none;
  z-index: 0;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(37, 19, 93, 0.12);
  border-color: rgba(114, 101, 255, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card > * {
  position: relative;
  z-index: 1;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--purple-dim), rgba(114, 101, 255, 0.2));
  color: var(--purple);
  margin-bottom: 1.15rem;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}

.feature-card:hover .feature-icon {
  transform: scale(1.08);
  box-shadow: 0 8px 24px rgba(114, 101, 255, 0.25);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-card h3 {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
  letter-spacing: -0.02em;
}

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

/* --------------------------------------------------------------------------
   Solutions strip
   -------------------------------------------------------------------------- */

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.solution-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 2rem;
  min-height: 320px;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  color: var(--white);
  border: 1px solid rgba(114, 101, 255, 0.2);
  overflow: hidden;
  transition: transform 0.45s var(--ease), border-color 0.45s, box-shadow 0.45s;
  isolation: isolate;
}

/* Animated gradient border on hover */
.solution-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    130deg,
    rgba(114, 101, 255, 0.15),
    rgba(168, 156, 255, 0.55),
    rgba(114, 101, 255, 0.1),
    rgba(91, 79, 224, 0.4)
  );
  background-size: 250% 250%;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.5;
  transition: opacity 0.45s var(--ease);
  pointer-events: none;
  z-index: 2;
}

.solution-card::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -30%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(114, 101, 255, 0.4), transparent 70%);
  transition: transform 0.6s var(--ease);
  z-index: 0;
}

.solution-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(114, 101, 255, 0.35);
  box-shadow: 0 28px 60px rgba(22, 10, 58, 0.45), 0 0 40px rgba(114, 101, 255, 0.12);
}

.solution-card:hover::before {
  opacity: 1;
  animation: border-flow 3.5s linear infinite;
}

.solution-card:hover::after {
  transform: scale(1.35) translate(-12px, 14px);
}

@keyframes border-flow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.solution-card .icon-wrap {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(114, 101, 255, 0.18);
  color: var(--purple-soft);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  transition: transform 0.4s var(--ease), background 0.4s;
}

.solution-card:hover .icon-wrap {
  transform: scale(1.08);
  background: rgba(114, 101, 255, 0.28);
}

.solution-card .icon-wrap svg {
  width: 26px;
  height: 26px;
}

.solution-card h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.solution-card p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  line-height: 1.65;
  flex: 1;
  position: relative;
  z-index: 1;
}

.solution-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--purple-soft);
  position: relative;
  z-index: 1;
  transition: gap 0.25s var(--ease);
}

.solution-card:hover .card-link {
  gap: 0.65rem;
}

/* --------------------------------------------------------------------------
   Foundation section + globe
   -------------------------------------------------------------------------- */

.foundation {
  position: relative;
  padding-block: 5.5rem 0;
  background:
    radial-gradient(ellipse 70% 50% at 70% 40%, rgba(114, 101, 255, 0.16), transparent 55%),
    linear-gradient(180deg, #12082e 0%, var(--navy-deep) 45%, #100826 100%);
  color: var(--white);
  overflow: hidden;
}

.foundation-glow {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114, 101, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 101, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black, transparent 75%);
  pointer-events: none;
}

.foundation-top {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
  padding-bottom: 3.5rem;
}

.foundation-copy .eyebrow {
  color: var(--purple-soft);
}

.foundation-copy .eyebrow::before {
  background: var(--purple-soft);
}

.foundation-copy h2 {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  font-weight: 500;
  color: var(--white);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.03em;
}

.foundation-copy p,
.foundation-lead {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.foundation-copy p:last-of-type {
  margin-bottom: 1.5rem;
}

.foundation .pitch-list li {
  color: rgba(255, 255, 255, 0.9);
}

.foundation .pitch-list li svg {
  color: var(--purple-soft);
}

.pitch-list {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.pitch-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.pitch-list li svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--purple);
  margin-top: 1px;
}

/* Legacy pitch-visual (about page) */
.pitch-visual {
  position: relative;
  aspect-ratio: 1;
  max-width: 460px;
  margin-inline: auto;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 50%, rgba(114, 101, 255, 0.2) 0%, transparent 55%),
    radial-gradient(circle at 50% 50%, transparent 38%, rgba(37, 19, 93, 0.08) 39%, rgba(37, 19, 93, 0.08) 42%, transparent 43%),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(114, 101, 255, 0.12) 59%, rgba(114, 101, 255, 0.12) 61%, transparent 62%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.core-ring {
  position: absolute;
  border-radius: 50%;
  border: 1.5px solid rgba(114, 101, 255, 0.25);
  animation: spin-slow 40s linear infinite;
}

.core-ring-1 { width: 70%; height: 70%; }
.core-ring-2 { width: 90%; height: 90%; animation-direction: reverse; animation-duration: 55s; border-style: dashed; }

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

.core-center {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--navy), var(--purple));
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px var(--purple-glow), 0 20px 40px rgba(37, 19, 93, 0.3);
  z-index: 2;
}

.core-center span {
  font-weight: 800;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-align: center;
  line-height: 1.3;
  padding: 0.5rem;
}

.orbit-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 12px var(--purple-glow);
  z-index: 3;
}

.orbit-dot:nth-child(1) { top: 12%; left: 48%; }
.orbit-dot:nth-child(2) { top: 48%; right: 8%; }
.orbit-dot:nth-child(3) { bottom: 15%; left: 20%; }

/* Globe stage */
.globe-stage {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-inline: auto;
}

.globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  /* Soft vertical float only — no planar spin (keeps poles upright) */
  animation: globe-float 8s ease-in-out infinite;
}

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

.globe-svg {
  width: 100%;
  height: 100%;
  display: block;
  overflow: visible;
}

.globe-sphere-glow {
  animation: sphere-glow 5s ease-in-out infinite;
}

@keyframes sphere-glow {
  0%, 100% { opacity: 0.85; }
  50% { opacity: 1; }
}

/* Latitudes stay put; soft breathe only */
.globe-lats {
  animation: globe-breathe 8s ease-in-out infinite;
}

@keyframes globe-breathe {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/*
  Dots drift east–west (horizontal) to match polar-axis rotation.
  Vertical position stays fixed so the axis of spin is upright.
*/
.globe-dots {
  animation: dots-yaw 28s linear infinite;
  transform-origin: 200px 205px;
}

@keyframes dots-yaw {
  0% { transform: translateX(0); }
  25% { transform: translateX(18px); }
  50% { transform: translateX(0); }
  75% { transform: translateX(-18px); }
  100% { transform: translateX(0); }
}

.globe-dot {
  animation: dot-twinkle 3.6s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

/* Stagger twinkles across the field so the globe feels alive */
.globe-dot:nth-child(4n) { animation-delay: 0s; animation-duration: 3.2s; }
.globe-dot:nth-child(4n + 1) { animation-delay: 0.7s; animation-duration: 4s; }
.globe-dot:nth-child(4n + 2) { animation-delay: 1.4s; animation-duration: 2.8s; }
.globe-dot:nth-child(4n + 3) { animation-delay: 2.1s; animation-duration: 3.8s; }
.globe-dot:nth-child(5n) { animation-delay: 0.35s; }
.globe-dot:nth-child(7n) { animation-delay: 1.9s; animation-duration: 2.4s; }

@keyframes dot-twinkle {
  0%, 100% {
    opacity: 0.55;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.25);
  }
}

.globe-arc {
  stroke-dasharray: 6 12;
  animation: arc-dash 1.6s linear infinite;
}

.globe-arc--return {
  stroke-dasharray: 4 10;
  animation: arc-dash-reverse 2s linear infinite;
}

@keyframes arc-dash {
  to { stroke-dashoffset: -54; }
}

@keyframes arc-dash-reverse {
  to { stroke-dashoffset: 42; }
}

.globe-marker {
  position: absolute;
  z-index: 3;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  pointer-events: none;
  animation: marker-bob 3.6s ease-in-out infinite;
}

.globe-marker--hub {
  animation-delay: 1.2s;
  animation-duration: 4.2s;
}

@keyframes marker-bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, calc(-50% - 5px)); }
}

.globe-marker-core {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #8b80ff, var(--purple));
  color: var(--white);
  box-shadow:
    0 0 0 3px rgba(114, 101, 255, 0.28),
    0 0 22px rgba(114, 101, 255, 0.45),
    0 10px 28px rgba(22, 10, 58, 0.45);
  position: relative;
  z-index: 2;
  animation: marker-core-pulse 2.6s ease-in-out infinite;
}

.globe-marker--hub .globe-marker-core {
  animation-delay: 1.3s;
}

@keyframes marker-core-pulse {
  0%, 100% {
    box-shadow:
      0 0 0 3px rgba(114, 101, 255, 0.28),
      0 0 18px rgba(114, 101, 255, 0.4),
      0 10px 28px rgba(22, 10, 58, 0.45);
  }
  50% {
    box-shadow:
      0 0 0 5px rgba(114, 101, 255, 0.4),
      0 0 32px rgba(114, 101, 255, 0.65),
      0 12px 32px rgba(22, 10, 58, 0.5);
  }
}

.globe-marker-core svg {
  width: 18px;
  height: 18px;
}

.globe-marker-ring {
  position: absolute;
  top: 0;
  left: 50%;
  width: 38px;
  height: 38px;
  margin-left: -19px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 156, 255, 0.55);
  animation: marker-ping 2.2s ease-out infinite;
  z-index: 1;
}

.globe-marker--hub .globe-marker-ring {
  animation-delay: 1.1s;
}

/* Second ping ring for denser radar feel */
.globe-marker-core::after {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 156, 255, 0.4);
  animation: marker-ping 2.2s ease-out infinite;
  animation-delay: 1.1s;
  pointer-events: none;
}

.globe-marker--hub .globe-marker-core::after {
  animation-delay: 0.35s;
}

@keyframes marker-ping {
  0% { transform: scale(1); opacity: 0.85; }
  100% { transform: scale(2.35); opacity: 0; }
}

.globe-marker-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(22, 10, 58, 0.75);
  border: 1px solid rgba(114, 101, 255, 0.25);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  white-space: nowrap;
  backdrop-filter: blur(8px);
}

/* Bottom feature panels */
.foundation-panels {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid rgba(114, 101, 255, 0.18);
  border-bottom: 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  overflow: hidden;
}

.foundation-panel {
  padding: 1.75rem 1.5rem 2rem;
  border-right: 1px solid rgba(114, 101, 255, 0.14);
}

.foundation-panel:last-child {
  border-right: 0;
}

.foundation-panel-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-soft);
  margin-bottom: 0.9rem;
}

.foundation-panel-icon svg {
  width: 24px;
  height: 24px;
}

.foundation-panel h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.foundation-panel p {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.58);
  margin: 0;
}

/* --------------------------------------------------------------------------
   Industries preview
   -------------------------------------------------------------------------- */

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.industry-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s var(--ease);
}

.industry-chip:hover {
  border-color: rgba(114, 101, 255, 0.35);
  box-shadow: 0 12px 32px rgba(37, 19, 93, 0.08);
  transform: translateY(-3px);
}

.industry-chip svg {
  width: 28px;
  height: 28px;
  color: var(--purple);
}

.industry-chip strong {
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}

.industry-chip span {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* --------------------------------------------------------------------------
   CTA band
   -------------------------------------------------------------------------- */

.cta-band {
  position: relative;
  padding-block: 5rem;
  background:
    radial-gradient(ellipse 80% 100% at 80% 50%, rgba(114, 101, 255, 0.3), transparent 55%),
    linear-gradient(120deg, var(--navy-deep), var(--navy));
  color: var(--white);
  overflow: hidden;
}

.cta-band .container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.cta-band h2 {
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  margin-bottom: 0.65rem;
  max-width: 18ch;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 36ch;
  font-size: 1.05rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem;
}

/* Solution switcher pills — active pill always matches the current page */
.solution-pills {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  padding: 0.3rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.solution-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.72);
  border: 1px solid transparent;
  transition: background 0.2s, color 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.solution-pill:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.16);
}

.solution-pill.is-active,
.solution-pill[aria-current="page"] {
  color: var(--white);
  background: linear-gradient(135deg, #7b6fff 0%, var(--purple) 50%, #5b4fe0 100%);
  border-color: transparent;
  box-shadow: 0 6px 18px rgba(114, 101, 255, 0.35);
  pointer-events: none;
}

/* --------------------------------------------------------------------------
   Page hero (inner pages)
   -------------------------------------------------------------------------- */

.page-hero {
  position: relative;
  padding: 4.5rem 0 3.5rem;
  background: var(--navy-deep);
  color: var(--white);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(114, 101, 255, 0.28), transparent 55%),
    radial-gradient(ellipse 40% 60% at 10% 90%, rgba(114, 101, 255, 0.12), transparent 50%);
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero .eyebrow {
  color: var(--purple-soft);
  margin-bottom: 1rem;
}

.page-hero .eyebrow::before {
  background: var(--purple-soft);
}

.page-hero h1 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 1rem;
  max-width: 16ch;
}

.page-hero p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 40em;
  line-height: 1.7;
}

/* --------------------------------------------------------------------------
   Content blocks
   -------------------------------------------------------------------------- */

.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.content-block h2 {
  font-size: 1.75rem;
  color: var(--navy);
  margin-bottom: 1rem;
}

.content-block h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin: 1.5rem 0 0.6rem;
}

.content-block p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.content-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1rem 0;
}

.content-block ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.95rem;
}

.content-block ul li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--purple-dim);
}

/* Benefit cards */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.benefit-card {
  padding: 1.5rem;
  background: var(--off-white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: border-color 0.25s, background 0.25s;
}

.benefit-card:hover {
  border-color: rgba(114, 101, 255, 0.25);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(37, 19, 93, 0.06);
}

.benefit-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.benefit-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* Industries full page */
.industries-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.industry-card {
  position: relative;
  padding: 2rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    400px circle at var(--spot-x) var(--spot-y),
    rgba(114, 101, 255, 0.12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(37, 19, 93, 0.12);
  border-color: rgba(114, 101, 255, 0.3);
}

.industry-card:hover::before {
  opacity: 1;
}

.industry-card > * {
  position: relative;
  z-index: 1;
}

.industry-card .icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--purple-dim);
  color: var(--purple);
  margin-bottom: 1.15rem;
}

.industry-card .icon-wrap svg {
  width: 24px;
  height: 24px;
}

.industry-card h3 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

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

/* About */
.about-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.about-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
  text-align: center;
}

.about-stat strong {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  font-size: 2rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.25rem;
}

.about-stat span {
  font-size: 0.85rem;
  line-height: 1.35;
  color: var(--text-muted);
  font-weight: 500;
}

/* --------------------------------------------------------------------------
   Network edge diagram (multi-path resilience)
   -------------------------------------------------------------------------- */

.edge-section {
  overflow: hidden;
  padding-block: 5.5rem;
}

.edge-intro {
  max-width: 720px;
  margin: 0 auto 2.75rem;
  text-align: center;
}

.edge-intro .eyebrow {
  color: var(--purple-soft);
  justify-content: center;
}

.edge-intro .eyebrow::before {
  background: var(--purple-soft);
}

.edge-intro h2 {
  font-size: clamp(1.85rem, 3.4vw, 2.55rem);
  font-weight: 500;
  color: var(--white);
  margin: 0.85rem 0 1rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.edge-intro-lead {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.08rem;
  line-height: 1.7;
  margin: 0 auto;
  max-width: 40em;
}

.edge-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.edge-point {
  padding: 1.35rem 1.25rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(114, 101, 255, 0.14);
  transition: border-color 0.3s, background 0.3s, transform 0.3s var(--ease);
}

.edge-point:hover {
  border-color: rgba(114, 101, 255, 0.35);
  background: rgba(114, 101, 255, 0.06);
  transform: translateY(-2px);
}

.edge-point-num {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--purple-soft);
  margin-bottom: 0.65rem;
}

.edge-point h3 {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--white);
  margin: 0 0 0.45rem;
  letter-spacing: -0.02em;
}

.edge-point p {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
}

.edge-legend {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
}

.legend-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.legend-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}

.legend-dot--live {
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.7);
}

.legend-dot--down {
  background: #f87171;
  box-shadow: 0 0 8px rgba(248, 113, 113, 0.6);
}

.legend-dot--flow {
  background: var(--purple-soft);
  box-shadow: 0 0 8px var(--purple-glow);
}

.edge-diagram-wrap {
  min-width: 0;
  width: 100%;
}

.edge-diagram {
  position: relative;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 70% 60% at 70% 40%, rgba(114, 101, 255, 0.16), transparent 60%),
    rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(114, 101, 255, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 24px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.edge-diagram-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.25rem;
  padding: 0.9rem 1.35rem;
  border-bottom: 1px solid rgba(114, 101, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
}

.edge-diagram-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.edge-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5);
  animation: live-pulse 2s ease-out infinite;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.45); }
  70% { box-shadow: 0 0 0 8px rgba(52, 211, 153, 0); }
  100% { box-shadow: 0 0 0 0 rgba(52, 211, 153, 0); }
}

.edge-diagram::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(114, 101, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(114, 101, 255, 0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse 85% 80% at 50% 50%, black, transparent);
  pointer-events: none;
}

.edge-diagram-stage {
  position: relative;
  width: 100%;
  aspect-ratio: 2.35 / 1;
  min-height: 380px;
  padding: 0.5rem 0.75rem;
  --cycle: 12s;
  flex: 1;
}

.edge-node {
  position: absolute;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.15rem;
  padding: 0.65rem 0.75rem;
  min-width: 88px;
  background: rgba(28, 14, 74, 0.92);
  border: 1px solid rgba(114, 101, 255, 0.35);
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(10px);
  color: var(--white);
  transform: translate(-50%, -50%);
}

.edge-node strong {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.2;
}

.edge-node > span:not(.edge-status) {
  font-size: 0.62rem;
  color: var(--gray-400);
  font-weight: 500;
  line-height: 1.25;
}

.edge-node-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--purple-soft);
  margin-bottom: 0.15rem;
}

.edge-node-icon svg {
  width: 22px;
  height: 22px;
}

.edge-node--site {
  left: 10%;
  top: 50%;
}

.edge-node--core {
  left: 28%;
  top: 50%;
  min-width: 112px;
  padding: 0.85rem 0.9rem;
  border-color: rgba(114, 101, 255, 0.55);
  box-shadow: 0 0 40px rgba(114, 101, 255, 0.25), 0 12px 32px rgba(0, 0, 0, 0.4);
  background: linear-gradient(160deg, rgba(114, 101, 255, 0.28), rgba(28, 14, 74, 0.95));
}

/* Nucleus core — on-path between providers and the world */
.edge-node--hub {
  left: 74%;
  top: 50%;
  min-width: 118px;
  z-index: 4;
  padding: 0.85rem 0.9rem;
  border-color: rgba(114, 101, 255, 0.5);
  background: linear-gradient(160deg, rgba(114, 101, 255, 0.22), rgba(28, 14, 74, 0.96));
  box-shadow: 0 0 32px rgba(114, 101, 255, 0.28), 0 12px 28px rgba(0, 0, 0, 0.35);
}

.edge-node--hub .edge-node-icon {
  color: var(--purple-soft);
}

.edge-node-icon--core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(114, 101, 255, 0.2);
  color: var(--white);
}

/* Keep rings tight so they don't collide with neighboring nodes */
.edge-core-ring {
  position: absolute;
  width: 112%;
  height: 112%;
  border-radius: 50%;
  border: 1px solid rgba(114, 101, 255, 0.22);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: core-pulse 3.2s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

.edge-core-ring--2 {
  width: 128%;
  height: 128%;
  animation-delay: -1.6s;
  border-style: dashed;
  opacity: 0.55;
}

@keyframes core-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(0.97); }
  50% { opacity: 0.65; transform: translate(-50%, -50%) scale(1.03); }
}

/*
  Full-width duo layout:
  Site → Edge → Providers A/B → Nucleus core → The world
*/
.edge-diagram-stage--duo {
  --cycle: 16s;
  aspect-ratio: 2.35 / 1;
  min-height: 400px;
}

.edge-diagram-stage--duo .edge-node--site {
  left: 10%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.edge-diagram-stage--duo .edge-node--core {
  left: 28%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.edge-diagram-stage--duo .edge-node--a {
  left: 50%;
  top: 14%;
  transform: translate(-50%, -50%);
}

.edge-diagram-stage--duo .edge-node--b {
  left: 50%;
  top: 86%;
  transform: translate(-50%, -50%);
}

.edge-diagram-stage--duo .edge-node--hub {
  left: 74%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.edge-diagram-stage--duo .edge-node--world {
  left: 91%;
  right: auto;
  top: 50%;
  transform: translate(-50%, -50%);
  min-width: 100px;
  max-width: 120px;
}

.edge-diagram-stage--duo .edge-node--site,
.edge-diagram-stage--duo .edge-node--core,
.edge-diagram-stage--duo .edge-node--hub,
.edge-diagram-stage--duo .edge-node--world {
  min-width: 118px;
}

/*
  Provider cards: equal outer padding (box hugs content).
  Status pills: fixed height + flex centering for even label padding.
*/
.edge-node.edge-node--prov {
  width: 140px;
  min-width: 140px;
  max-width: 140px;
  height: auto;
  min-height: 0;
  max-height: none;
  padding: 16px 14px;
  gap: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  box-sizing: border-box;
}

.edge-node.edge-node--prov strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0;
  padding: 0;
}

/* Shared slot so Online / Interrupted occupy the same space under the title */
.edge-node.edge-node--prov .edge-status-slot {
  position: relative;
  display: grid;
  place-items: center;
  margin: 0;
  width: 100%;
  height: 26px;
  min-height: 26px;
}

.edge-node.edge-node--prov .edge-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 112px;
  height: 26px;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  font-size: 0.52rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  box-sizing: border-box;
}

.edge-status-slot > .edge-status {
  grid-area: 1 / 1;
}

.edge-status--ok {
  color: #34d399;
  background: rgba(52, 211, 153, 0.15);
}

.edge-status--fail {
  color: #fca5a5;
  background: rgba(248, 113, 113, 0.18);
  opacity: 0;
  pointer-events: none;
}

/*
  Timeline (16s):
  0–15%   share both
  15–35%  A down
  35–45%  recover / share
  45–65%  B down
  65–75%  recover
  75–100% share
*/
.edge-node--a {
  animation: node-a-state var(--cycle) ease-in-out infinite;
}

.edge-node--b {
  animation: node-b-state var(--cycle) ease-in-out infinite;
}

.edge-node--a .edge-status--ok {
  animation: status-ok-a var(--cycle) ease-in-out infinite;
}

.edge-node--a .edge-status--fail {
  animation: status-fail-a var(--cycle) ease-in-out infinite;
}

.edge-node--b .edge-status--ok {
  animation: status-ok-b var(--cycle) ease-in-out infinite;
}

.edge-node--b .edge-status--fail {
  animation: status-fail-b var(--cycle) ease-in-out infinite;
}

@keyframes node-a-state {
  0%, 14% {
    border-color: rgba(114, 101, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
  16%, 34% {
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 0 24px rgba(248, 113, 113, 0.25);
  }
  38%, 100% {
    border-color: rgba(114, 101, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

@keyframes node-b-state {
  0%, 44% {
    border-color: rgba(114, 101, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
  46%, 64% {
    border-color: rgba(248, 113, 113, 0.65);
    box-shadow: 0 0 24px rgba(248, 113, 113, 0.25);
  }
  68%, 100% {
    border-color: rgba(114, 101, 255, 0.35);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.35);
  }
}

@keyframes status-ok-a {
  0%, 14% { opacity: 1; }
  16%, 34% { opacity: 0; }
  38%, 100% { opacity: 1; }
}

@keyframes status-fail-a {
  0%, 14% { opacity: 0; }
  16%, 34% { opacity: 1; }
  38%, 100% { opacity: 0; }
}

@keyframes status-ok-b {
  0%, 44% { opacity: 1; }
  46%, 64% { opacity: 0; }
  68%, 100% { opacity: 1; }
}

@keyframes status-fail-b {
  0%, 44% { opacity: 0; }
  46%, 64% { opacity: 1; }
  68%, 100% { opacity: 0; }
}

/* Rails SVG */
.edge-rails {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: visible;
}

.rail {
  fill: none;
  stroke: rgba(114, 101, 255, 0.35);
  stroke-width: 2;
  stroke-linecap: round;
}

.rail-trunk {
  stroke: rgba(114, 101, 255, 0.55);
  stroke-width: 2.5;
}

.rail-a,
.rail-a-out {
  animation: rail-a-state var(--cycle) ease-in-out infinite;
}

.rail-b,
.rail-b-out {
  animation: rail-b-state var(--cycle) ease-in-out infinite;
}

@keyframes rail-a-state {
  0%, 14% {
    stroke: rgba(114, 101, 255, 0.4);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2;
  }
  16%, 34% {
    stroke: rgba(248, 113, 113, 0.7);
    stroke-dasharray: 6 6;
    opacity: 0.55;
    stroke-width: 2;
  }
  38%, 44% {
    stroke: rgba(114, 101, 255, 0.55);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2.5;
  }
  46%, 64% {
    stroke: rgba(114, 101, 255, 0.65);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2.5;
  }
  68%, 100% {
    stroke: rgba(114, 101, 255, 0.4);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2;
  }
}

@keyframes rail-b-state {
  0%, 14% {
    stroke: rgba(114, 101, 255, 0.4);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2;
  }
  16%, 34% {
    stroke: rgba(114, 101, 255, 0.65);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2.5;
  }
  38%, 44% {
    stroke: rgba(114, 101, 255, 0.55);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2.5;
  }
  46%, 64% {
    stroke: rgba(248, 113, 113, 0.7);
    stroke-dasharray: 6 6;
    opacity: 0.55;
    stroke-width: 2;
  }
  68%, 100% {
    stroke: rgba(114, 101, 255, 0.4);
    stroke-dasharray: none;
    opacity: 1;
    stroke-width: 2;
  }
}

.pkt {
  fill: #a89cff;
}

.pkt-trunk {
  fill: #c4bcff;
}

.pkt-a {
  animation: pkt-a-hide var(--cycle) ease-in-out infinite;
}

.pkt-b {
  animation: pkt-b-hide var(--cycle) ease-in-out infinite;
}

@keyframes pkt-a-hide {
  0%, 14% { opacity: 1; }
  15%, 36% { opacity: 0; }
  38%, 100% { opacity: 1; }
}

@keyframes pkt-b-hide {
  0%, 44% { opacity: 1; }
  45%, 66% { opacity: 0; }
  68%, 100% { opacity: 1; }
}

.fail-burst {
  fill: rgba(248, 113, 113, 0.85);
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
}

.fail-burst--a {
  animation: fail-burst-a var(--cycle) ease-out infinite;
}

.fail-burst--b {
  animation: fail-burst-b var(--cycle) ease-out infinite;
}

@keyframes fail-burst-a {
  0%, 14% { opacity: 0; transform: scale(0.4); }
  16% { opacity: 0.9; transform: scale(1.8); }
  22% { opacity: 0; transform: scale(2.8); }
  100% { opacity: 0; transform: scale(0.4); }
}

@keyframes fail-burst-b {
  0%, 44% { opacity: 0; transform: scale(0.4); }
  46% { opacity: 0.9; transform: scale(1.8); }
  52% { opacity: 0; transform: scale(2.8); }
  100% { opacity: 0; transform: scale(0.4); }
}

.edge-caption-bar {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.75rem 1.25rem;
  border-top: 1px solid rgba(114, 101, 255, 0.12);
  background: rgba(0, 0, 0, 0.22);
  text-align: center;
  --cycle: 16s;
}

.edge-caption-phase {
  position: absolute;
  left: 1rem;
  right: 1rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255, 255, 255, 0.78);
  opacity: 0;
  animation-timing-function: steps(1, end);
  animation-iteration-count: infinite;
  animation-duration: var(--cycle);
}

.edge-caption-phase--share {
  animation-name: cap-share;
}

.edge-caption-phase--fail-a,
.edge-caption-phase--fail-b {
  color: #fca5a5;
}

.edge-caption-phase--fail-a {
  animation-name: cap-fail-a;
}

.edge-caption-phase--fail-b {
  animation-name: cap-fail-b;
}

.edge-caption-phase--recover {
  animation-name: cap-recover;
  color: #6ee7b7;
}

/*
  Exclusive caption windows (no overlap):
  0–14%   share
  14–36%  fail A
  36–44%  recover
  44–66%  fail B
  66–74%  recover
  74–100% share
*/
@keyframes cap-share {
  0%, 13.99% { opacity: 1; }
  14%, 73.99% { opacity: 0; }
  74%, 100% { opacity: 1; }
}

@keyframes cap-fail-a {
  0%, 13.99% { opacity: 0; }
  14%, 35.99% { opacity: 1; }
  36%, 100% { opacity: 0; }
}

@keyframes cap-fail-b {
  0%, 43.99% { opacity: 0; }
  44%, 65.99% { opacity: 1; }
  66%, 100% { opacity: 0; }
}

@keyframes cap-recover {
  0%, 35.99% { opacity: 0; }
  36%, 43.99% { opacity: 1; }
  44%, 65.99% { opacity: 0; }
  66%, 73.99% { opacity: 1; }
  74%, 100% { opacity: 0; }
}

@media (max-width: 1024px) {
  .edge-points {
    grid-template-columns: 1fr 1fr;
  }

  .edge-section {
    padding-block: 4rem;
  }

  .edge-diagram-stage--duo {
    min-height: 340px;
    aspect-ratio: 1.9 / 1;
  }
}

@media (max-width: 640px) {
  .edge-points {
    grid-template-columns: 1fr;
  }

  .edge-intro {
    margin-bottom: 2rem;
    text-align: left;
  }

  .edge-intro .eyebrow {
    justify-content: flex-start;
  }

  .edge-diagram-toolbar {
    flex-direction: column;
    align-items: flex-start;
    padding: 0.85rem 1rem;
  }

  .edge-diagram-stage {
    padding: 0.25rem 0.35rem;
  }
}

@media (max-width: 640px) {
  .edge-node {
    min-width: 72px;
    padding: 0.5rem 0.45rem;
  }

  .edge-node strong {
    font-size: 0.62rem;
  }

  .edge-node > span:not(.edge-status) {
    display: none;
  }

  .edge-node--core {
    min-width: 84px;
  }

  .edge-node-icon {
    width: 22px;
    height: 22px;
  }

  .edge-node-icon svg {
    width: 18px;
    height: 18px;
  }

  .edge-caption-phase {
    font-size: 0.65rem;
  }

  .edge-status {
    font-size: 0.5rem;
    padding: 0.15rem 0.4rem;
  }

  .edge-status-slot {
    margin-top: 0.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .edge-node--a,
  .edge-node--b,
  .edge-node--a .edge-status--ok,
  .edge-node--a .edge-status--fail,
  .edge-node--b .edge-status--ok,
  .edge-node--b .edge-status--fail,
  .rail-a,
  .rail-a-out,
  .rail-b,
  .rail-b-out,
  .pkt-a,
  .pkt-b,
  .fail-burst--a,
  .fail-burst--b,
  .edge-caption-phase--share,
  .edge-caption-phase--fail-a,
  .edge-caption-phase--fail-b,
  .edge-caption-phase--recover,
  .edge-core-ring {
    animation: none !important;
  }

  .pkt-a,
  .pkt-b {
    opacity: 1;
  }

  .edge-caption-phase--share {
    opacity: 1;
    position: static;
  }

  .edge-caption-phase--fail-a,
  .edge-caption-phase--fail-b,
  .edge-caption-phase--recover {
    display: none;
  }

  .edge-status--fail {
    opacity: 0 !important;
  }

  .edge-status--ok {
    opacity: 1 !important;
  }

  .edge-node--a,
  .edge-node--b {
    border-color: rgba(114, 101, 255, 0.35) !important;
  }
}

/* --------------------------------------------------------------------------
   Colocation (Cloud page)
   -------------------------------------------------------------------------- */

.colo-section {
  padding-block: 5rem;
  background: var(--white);
  border-block: 1px solid var(--gray-100);
}

.colo-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: start;
}

.colo-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.colo-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.colo-copy p strong {
  color: var(--navy);
  font-weight: 700;
}

.colo-lead {
  margin-top: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--purple-dim);
  border: 1px solid rgba(114, 101, 255, 0.18);
  color: var(--text) !important;
  font-weight: 500;
}

.colo-highlights {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.colo-card {
  padding: 1.35rem 1.4rem 1.3rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(37, 19, 93, 0.04);
  transition: border-color 0.25s, transform 0.25s var(--ease), box-shadow 0.25s;
}

.colo-card:hover {
  border-color: rgba(114, 101, 255, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(37, 19, 93, 0.08);
}

.colo-stat {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  margin-bottom: 0.55rem;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--purple);
  background: rgba(114, 101, 255, 0.12);
  border: 1px solid rgba(114, 101, 255, 0.22);
}

.colo-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.colo-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text-muted);
}

.colo-copy a.inline-link,
.content-block a.inline-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 101, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.colo-copy a.inline-link:hover,
.content-block a.inline-link:hover {
  color: var(--navy);
  border-bottom-color: rgba(37, 19, 93, 0.45);
}

/* Edge cloud (Cloud page) */
.edge-cloud-section {
  padding-block: 5rem;
}

.edge-cloud-section .colo-card {
  background: var(--white);
}

/* Edge security / IDS-IPS (Network page) */
.edge-security-section {
  padding-block: 5rem;
  background: var(--white);
  border-block: 1px solid var(--gray-100);
}

@media (max-width: 900px) {
  .edge-cloud-section,
  .edge-security-section {
    padding-block: 3.5rem;
  }

  .colo-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .colo-section {
    padding-block: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   Carrier neutrality (Network page)
   -------------------------------------------------------------------------- */

.neutrality-section {
  padding-block: 5rem;
  background: var(--white);
  border-block: 1px solid var(--gray-100);
}

.neutrality-layout {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.75rem;
  align-items: start;
}

.neutrality-copy h2 {
  font-size: clamp(1.65rem, 2.8vw, 2.15rem);
  color: var(--navy);
  margin: 0 0 1rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.neutrality-copy p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.neutrality-copy p strong {
  color: var(--navy);
  font-weight: 700;
}

.neutrality-lead {
  margin-top: 0.25rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  background: var(--purple-dim);
  border: 1px solid rgba(114, 101, 255, 0.18);
  color: var(--text) !important;
  font-weight: 500;
}

.neutrality-copy a.inline-link {
  color: var(--purple);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 101, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.neutrality-copy a.inline-link:hover {
  color: var(--navy);
  border-bottom-color: rgba(37, 19, 93, 0.45);
}

.neutrality-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.neutrality-card {
  padding: 1.5rem 1.5rem 1.35rem;
  background: var(--off-white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 28px rgba(37, 19, 93, 0.04);
}

.neutrality-card h3 {
  margin: 0 0 0.85rem;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.015em;
}

.neutrality-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.neutrality-card li {
  position: relative;
  padding-left: 1.1rem;
  font-size: 0.92rem;
  line-height: 1.5;
  color: var(--text);
}

.neutrality-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 3px var(--purple-dim);
}

.neutrality-card li strong {
  color: var(--navy);
  font-weight: 700;
}

@media (max-width: 900px) {
  .neutrality-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .neutrality-section {
    padding-block: 3.5rem;
  }
}

/* --------------------------------------------------------------------------
   SD-WAN section
   -------------------------------------------------------------------------- */

.sdwan-section {
  padding-block: 5rem;
  background: var(--off-white);
}

.sdwan-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3rem;
  align-items: start;
}

.sdwan-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.sdwan-copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  color: var(--navy);
  margin-bottom: 1.15rem;
  letter-spacing: -0.03em;
}

.sdwan-copy p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 38em;
}

.sdwan-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.sdwan-card {
  position: relative;
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
  overflow: hidden;
  --spot-x: 50%;
  --spot-y: 50%;
}

.sdwan-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    380px circle at var(--spot-x) var(--spot-y),
    rgba(114, 101, 255, 0.12),
    transparent 45%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  pointer-events: none;
}

.sdwan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(37, 19, 93, 0.1);
  border-color: rgba(114, 101, 255, 0.28);
}

.sdwan-card:hover::before {
  opacity: 1;
}

.sdwan-card > * {
  position: relative;
  z-index: 1;
}

.sdwan-card h3 {
  font-size: 1.05rem;
  color: var(--navy);
  margin: 0.85rem 0 0.45rem;
  letter-spacing: -0.02em;
}

.sdwan-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 1024px) {
  .sdwan-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 640px) {
  .sdwan-cards {
    grid-template-columns: 1fr;
  }

  .sdwan-section {
    padding-block: 3.5rem;
  }

  .edge-diagram {
    padding: 1rem 0.65rem 1.75rem;
  }

  .edge-diagram-stage--duo {
    min-height: 300px;
    aspect-ratio: 1.55 / 1;
  }

  .edge-diagram-stage--duo .edge-node--site {
    left: 11%;
  }

  .edge-diagram-stage--duo .edge-node--core {
    left: 30%;
  }

  .edge-diagram-stage--duo .edge-node--a {
    left: 52%;
    top: 12%;
  }

  .edge-diagram-stage--duo .edge-node--b {
    left: 52%;
    top: 88%;
  }

  .edge-diagram-stage--duo .edge-node--hub {
    left: 74%;
  }

  .edge-diagram-stage--duo .edge-node--world {
    left: 91%;
    max-width: 96px;
    min-width: 88px;
  }

  .edge-diagram-stage--duo .edge-node--site,
  .edge-diagram-stage--duo .edge-node--core,
  .edge-diagram-stage--duo .edge-node--hub {
    min-width: 96px;
    padding: 0.55rem 0.6rem;
  }

  .edge-node--hub strong,
  .edge-node--core strong {
    font-size: 0.65rem;
  }

  .edge-node.edge-node--prov {
    width: 118px;
    min-width: 118px;
    max-width: 118px;
    height: auto;
    min-height: 0;
    max-height: none;
    padding: 14px 12px;
    gap: 7px;
  }

  .edge-node.edge-node--prov strong {
    font-size: 0.68rem;
  }

  .edge-node.edge-node--prov .edge-status-slot,
  .edge-node.edge-node--prov .edge-status {
    height: 24px;
    min-height: 24px;
  }

  .edge-node.edge-node--prov .edge-status {
    max-width: 96px;
    font-size: 0.48rem;
  }

  .edge-caption-phase {
    font-size: 0.68rem;
  }
}

/* --------------------------------------------------------------------------
   Photo feature (real CPE / field photography)
   -------------------------------------------------------------------------- */

.photo-feature {
  padding-block: 5rem;
  background: var(--white);
}

.photo-feature--muted {
  background: var(--off-white);
}

.photo-feature--dark {
  background: var(--navy-deep);
  color: var(--white);
}

.photo-feature--dark .content-block h2,
.photo-feature--dark .photo-feature-copy h2 {
  color: var(--white);
}

.photo-feature--dark .content-block p,
.photo-feature--dark .photo-feature-copy p {
  color: rgba(255, 255, 255, 0.68);
}

.photo-feature--dark .eyebrow {
  color: var(--purple-soft);
}

.photo-feature--dark .eyebrow::before {
  background: var(--purple-soft);
}

.photo-feature-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: stretch;
}

.photo-feature-grid--reverse {
  grid-template-columns: 0.9fr 1.1fr;
}

.photo-feature-grid--reverse .photo-feature-media {
  order: 2;
}

.photo-feature-grid--reverse .photo-feature-copy {
  order: 1;
}

.photo-feature-media {
  margin: 0;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow:
    0 28px 60px rgba(22, 10, 58, 0.28),
    0 0 0 1px rgba(114, 101, 255, 0.12);
  background: #0a0618;
  height: 100%;
  min-height: 320px;
}

.photo-feature-media img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  display: block;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 45%;
  transition: transform 0.7s var(--ease);
}

/* Wider rooftop / landscape installs */
.photo-feature-media img[src*="starlink-install"] {
  aspect-ratio: 16 / 9;
  object-position: center 40%;
}

.photo-feature-media:hover img {
  transform: scale(1.03);
}

/* Copy column sized to sit alongside the image without overflowing it */
.photo-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  min-height: 100%;
  padding-block: 0.15rem;
}

.photo-feature-copy-top {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.photo-feature-copy .eyebrow {
  margin-bottom: 0;
}

.photo-feature-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 1.9rem);
  margin: 0;
  line-height: 1.15;
}

.photo-feature-copy p {
  margin: 0;
  max-width: 32em;
  font-size: 0.98rem;
  line-height: 1.5;
}

.photo-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin: 0;
}

.photo-feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--text);
  font-size: 0.92rem;
  line-height: 1.4;
}

.photo-feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.4rem;
  border-radius: 50%;
  background: var(--purple);
  flex-shrink: 0;
  box-shadow: 0 0 0 3px var(--purple-dim);
}

.photo-feature-list .asn {
  white-space: nowrap;
  font-weight: 700;
  letter-spacing: 0.03em;
}

/* Avoid content-block list styles stacking with photo list */
.photo-feature-copy.content-block ul {
  margin: 0;
}

.benefit-grid--four {
  grid-template-columns: repeat(4, 1fr);
}

.benefit-grid--spaced {
  margin-bottom: 2.5rem;
}

@media (max-width: 1024px) {
  .photo-feature-grid,
  .photo-feature-grid--reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .photo-feature-grid--reverse .photo-feature-media,
  .photo-feature-grid--reverse .photo-feature-copy {
    order: initial;
  }

  .benefit-grid--four {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .photo-feature {
    padding-block: 3.25rem;
  }

  .benefit-grid--four {
    grid-template-columns: 1fr;
  }

  .photo-feature-media img {
    aspect-ratio: 5 / 4;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 4rem;
  padding-bottom: env(safe-area-inset-bottom, 0);
  border-top: 1px solid rgba(114, 101, 255, 0.12);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}

.footer-brand img {
  height: 26px;
  width: auto;
  margin-bottom: 1.15rem;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 28ch;
  color: var(--gray-400);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-top: 1.15rem;
  max-width: 26ch;
}

.footer-contact a,
.footer-contact address {
  font-size: 0.875rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-contact a:hover {
  color: var(--purple-soft);
}

.footer-contact .asn-link,
a.asn-link,
.asn {
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.footer-contact .asn-link {
  color: var(--purple-soft);
}

/* Inline ASN link on dark heroes */
.page-hero a.hero-inline-link {
  color: var(--purple-soft);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(114, 101, 255, 0.35);
  transition: color 0.2s, border-color 0.2s;
}

.page-hero a.hero-inline-link:hover {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.5);
}

.hero-stat strong.asn {
  /* Match other hero stat values so the label lines up on the same row */
  font-size: 1.5rem;
  letter-spacing: 0.02em;
}

.about-stat strong.asn {
  /* Match sibling stat values so “Autonomous system” lines up with other labels */
  font-size: 2rem;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
}

.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.15rem;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--gray-400);
  transition: color 0.2s;
}

.footer-col a:hover {
  color: var(--purple-soft);
}

/* About contact strip */
.contact-details {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.contact-detail {
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.contact-detail h3 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 0.65rem;
}

.contact-detail p,
.contact-detail a,
.contact-detail address {
  font-size: 1rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--text);
}

.contact-detail a {
  color: var(--navy);
  font-weight: 600;
  transition: color 0.2s;
}

.contact-detail a:hover {
  color: var(--purple);
}

@media (max-width: 768px) {
  .contact-details {
    grid-template-columns: 1fr;
  }
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem 1.5rem;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  color: var(--gray-500);
}

.footer-status {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  justify-self: start;
  min-width: 0;
}

.footer-copy {
  justify-self: center;
  text-align: center;
  white-space: nowrap;
}

.footer-bottom-links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  justify-content: flex-end;
  justify-self: end;
}

.footer-bottom a:hover {
  color: var(--purple-soft);
}

/* --------------------------------------------------------------------------
   Reveal animations
   -------------------------------------------------------------------------- */

.reveal {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  filter: blur(4px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease),
    filter 0.8s var(--ease);
}

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

.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }

/* --------------------------------------------------------------------------
   Responsive
   -------------------------------------------------------------------------- */

/* Large tablet / small laptop */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    padding-block: 3rem 3.5rem;
  }

  .hero-visual {
    order: -1;
    max-width: min(380px, 100%);
    width: 100%;
    margin-inline: auto;
  }

  .hero-panel {
    max-width: 100%;
  }

  .hero-visual {
    padding: 2.5rem 2rem 3rem 1.75rem;
  }

  .float-badge-1 {
    top: -1.25rem;
    right: -0.5rem;
  }

  .float-badge-2 {
    bottom: -1.25rem;
    left: -0.5rem;
  }

  .float-badge-3 {
    bottom: -1.25rem;
    right: -0.5rem;
  }

  .features-grid,
  .solutions-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foundation-top {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .globe-stage {
    max-width: 420px;
  }

  .foundation-panels {
    grid-template-columns: 1fr;
  }

  .foundation-panel {
    border-right: 0;
    border-bottom: 1px solid rgba(114, 101, 255, 0.14);
  }

  .foundation-panel:last-child {
    border-bottom: 0;
  }

  .pitch-visual {
    max-width: min(360px, 85vw);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .industries-full {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    gap: 2rem;
  }
}

/* Tighten desktop nav before it collapses */
@media (max-width: 1100px) and (min-width: 901px) {
  .nav-links > li > a,
  .nav-links > li > button.nav-trigger {
    padding: 0.5rem 0.65rem;
    font-size: 0.875rem;
  }

  .nav-cta {
    gap: 0.4rem;
  }

  .nav-cta .btn-primary {
    padding: 0.55rem 1rem;
  }

  .nav-cta .btn-ghost {
    padding-inline: 0.5rem;
  }
}

/* Nav collapses earlier so desktop links don't crowd */
@media (max-width: 900px) {
  :root {
    --nav-h: 64px;
  }

  .menu-toggle {
    display: flex;
  }

  .site-header > .container > nav,
  .site-header > .container > .nav-cta {
    display: none;
  }

  .mobile-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 1001;
    max-height: min(80vh, calc(100dvh - var(--nav-h) - 40px));
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    background: rgba(22, 10, 58, 0.98);
    border-bottom: 1px solid rgba(114, 101, 255, 0.2);
    padding: 0.75rem 1.25rem calc(1.5rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
  }

  .mobile-panel.open {
    display: block;
  }

  .mobile-panel .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.15rem;
  }

  .mobile-panel .nav-links > li > a,
  .mobile-panel .nav-links > li > button.nav-trigger {
    width: 100%;
    min-height: 48px;
    justify-content: space-between;
    padding: 0.85rem 0.9rem;
    font-size: 1rem;
    text-align: left;
  }

  .mobile-panel .nav-links .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    margin: 0 0 0.35rem;
    min-width: 0;
    box-shadow: none;
    background: rgba(0, 0, 0, 0.28);
    border: 1px solid rgba(114, 101, 255, 0.15);
  }

  .mobile-panel .nav-links > li.open .dropdown {
    display: block;
  }

  /* Click-only expand on mobile (ignore sticky hover) */
  .mobile-panel .nav-links > li:not(.open) .dropdown {
    display: none !important;
  }

  .mobile-panel .nav-links > li.open .dropdown {
    display: block !important;
  }

  .mobile-panel .dropdown a {
    padding: 0.85rem 1rem;
    min-height: 48px;
  }

  .mobile-panel .nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  .mobile-panel .nav-cta .btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 1.75rem, var(--max));
  }

  section {
    padding-block: 3.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .foundation-copy h2,
  .page-hero h1 {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .foundation {
    padding-block: 3.5rem 0;
  }

  .foundation-top {
    padding-bottom: 2rem;
  }

  .globe-marker-label {
    font-size: 0.6rem;
  }

  .globe-marker-core {
    width: 32px;
    height: 32px;
  }

  .globe-marker-core svg {
    width: 15px;
    height: 15px;
  }

  .globe-marker-ring {
    width: 32px;
    height: 32px;
    margin-left: -16px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    width: min(100% - 1.75rem, var(--max));
    padding-block: 2.25rem 2.75rem;
    gap: 2rem;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8.5vw, 2.6rem);
  }

  .hero-lead {
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 2rem;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
  }

  .hero-stats .hero-stat:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }

  .hero-visual {
    max-width: 100%;
  }

  .hero-panel {
    padding: 1.2rem;
  }

  .stack-layer {
    padding: 0.8rem 0.85rem;
  }

  .stack-desc {
    font-size: 0.78rem;
  }

  .float-badge {
    display: none;
  }

  .features-grid,
  .solutions-grid,
  .industries-grid,
  .industries-full,
  .content-grid,
  .benefit-grid {
    grid-template-columns: 1fr;
  }

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

  .feature-card,
  .solution-card,
  .industry-card,
  .industry-chip {
    padding: 1.35rem;
  }

  .page-hero {
    padding: 3rem 0 2.5rem;
  }

  .page-hero h1 {
    max-width: none;
    font-size: clamp(1.85rem, 7vw, 2.4rem);
  }

  .page-hero p {
    font-size: 1rem;
  }

  .cta-band {
    padding-block: 3.25rem;
  }

  .cta-band .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-band h2 {
    max-width: none;
  }

  .cta-band p {
    max-width: none;
  }

  .cta-actions {
    width: 100%;
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    min-height: 48px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1rem;
  }

  .footer-status {
    justify-content: flex-start;
    justify-self: start;
    width: 100%;
  }

  .footer-copy {
    justify-self: start;
    text-align: left;
    white-space: normal;
  }

  .footer-bottom-links {
    justify-self: start;
    justify-content: flex-start;
  }

  .about-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.85rem;
  }

  .about-stat strong,
  .about-stat strong.asn {
    font-size: 1.6rem;
    min-height: 2rem;
  }

  .pitch-list li {
    font-size: 0.9rem;
  }

  .foundation-panel {
    padding: 1.35rem 1.25rem 1.5rem;
  }

  .btn {
    white-space: normal;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container,
  .hero-inner {
    width: min(100% - 1.25rem, var(--max));
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

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

  .nav {
    gap: 0.75rem;
  }

  .logo img {
    height: 24px;
  }

  section {
    padding-block: 2.75rem;
  }

  .hero-orb-1 {
    width: 280px;
    height: 280px;
  }

  .hero-orb-2 {
    width: 200px;
    height: 200px;
  }

  .core-center {
    width: 110px;
    height: 110px;
  }
}
