/* ============================================================
   HOLOCRON — Star Wars: Unlimited Collection Intelligence
   A cinematic landing experience. Kyber crystal geometry.
   Deep space void. The Force as design principle.
   10+ distinct animation effects. Unapologetic excellence.
   ============================================================ */

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

/* --- Design Tokens --- */
:root {
  /* Void (space black with subtle blue) */
  --void-1: #020206;
  --void-2: #080812;
  --void-3: #0C0C18;

  /* Holocron Blue (Light Side / kyber crystal cyan) */
  --holo-blue-1: #00B4D8;
  --holo-blue-2: #0096C7;
  --holo-blue-3: #48CAE4;

  /* Holocron Red (Dark Side / kyber crystal crimson) */
  --holo-red-1: #D90429;
  --holo-red-2: #EF233C;
  --holo-red-3: #FF4D6D;

  /* Holocron Gold (neutral / rarity / pricing) */
  --holo-gold-1: #C9A82C;
  --holo-gold-2: #E8C84C;

  /* Nebula accent */
  --nebula: #2D1B69;
  --kyber-violet: #8B5CF6;
  --kyber-pink: #EC4899;
  --kyber-emerald: #22C55E;
  --kyber-amber: #F59E0B;

  /* Star Dust text hierarchy */
  --dust-90: rgba(255, 255, 255, 0.9);
  --dust-70: rgba(255, 255, 255, 0.7);
  --dust-50: rgba(255, 255, 255, 0.5);
  --dust-30: rgba(255, 255, 255, 0.3);
  --dust-15: rgba(255, 255, 255, 0.15);
  --dust-06: rgba(255, 255, 255, 0.06);
  --dust-03: rgba(255, 255, 255, 0.03);

  /* Aspect Colors */
  --aspect-vigilance: #3B82F6;
  --aspect-command: #22C55E;
  --aspect-aggression: #EF4444;
  --aspect-cunning: #F59E0B;
  --aspect-villainy: #6B2039;
  --aspect-heroism: #F0F0F0;

  /* Typography */
  --font-display: 'Rajdhani', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: ui-monospace, 'SF Mono', 'Cascadia Mono', Menlo, Consolas, monospace;

  /* Motion */
  --spring-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --spring-gentle: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --ease-dramatic: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a:focus-visible {
  outline: 2px solid var(--holo-blue-3);
  outline-offset: 4px;
}

body {
  font-family: var(--font-body);
  color: var(--dust-70);
  background: var(--void-1);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  overflow-x: hidden;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   HEADER
   Frosted glass dark with subtle cyan edge glow
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 18px 0;
  background: rgba(2, 2, 6, 0.88);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border-bottom: 1px solid rgba(0, 180, 216, 0.1);
}

.header-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  text-decoration: none;
}

.header-brand__name {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--holo-blue-1);
  text-transform: uppercase;
}

.header-brand__sub {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--dust-50);
  letter-spacing: 0.03em;
}

.header-nav__list {
  display: flex;
  gap: 32px;
  list-style: none;
}

.header-nav__list a {
  color: var(--dust-50);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.25s var(--ease-out);
}

.header-nav__list a:hover {
  color: var(--holo-blue-3);
}

/* ============================================================
   HERO
   Deep void with holocron crystal, nebulae, star particles.
   Theatrical entrance — the opening crawl moment.
   ============================================================ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background: var(--void-1);
  overflow: hidden;
  padding: 110px 24px 86px;
}

/* Nebula radials — richer, more cinematic */
.hero::before {
  content: '';
  position: absolute;
  top: 5%;
  left: 10%;
  width: 900px;
  height: 700px;
  background:
    radial-gradient(ellipse 500px 400px at 50% 50%, rgba(0, 180, 216, 0.07) 0%, transparent 70%),
    radial-gradient(ellipse 350px 300px at 70% 30%, rgba(45, 27, 105, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 200px 200px at 20% 70%, rgba(0, 180, 216, 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: nebula-drift 30s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 0%;
  right: 0%;
  width: 700px;
  height: 600px;
  background:
    radial-gradient(ellipse 400px 350px at 50% 50%, rgba(217, 4, 41, 0.05) 0%, transparent 70%),
    radial-gradient(ellipse 300px 250px at 30% 60%, rgba(45, 27, 105, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 250px 200px at 70% 30%, rgba(201, 168, 44, 0.03) 0%, transparent 50%);
  pointer-events: none;
  animation: nebula-drift 25s ease-in-out infinite reverse;
}

@keyframes nebula-drift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(20px, -15px) scale(1.03); }
}

/* ===== STAR DUST PARTICLES ===== */
.star-dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 1.5px;
  height: 1.5px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  animation: particle-drift 20s linear infinite;
}

.particle:nth-child(1)  { top: 3%;  left: 8%;  animation-delay: 0s; animation-duration: 22s; }
.particle:nth-child(2)  { top: 7%;  left: 25%; animation-delay: -3s; width: 1px; height: 1px; }
.particle:nth-child(3)  { top: 5%;  left: 52%; animation-delay: -7s; animation-duration: 18s; }
.particle:nth-child(4)  { top: 12%; left: 75%; animation-delay: -2s; width: 2px; height: 2px; }
.particle:nth-child(5)  { top: 18%; left: 12%; animation-delay: -11s; }
.particle:nth-child(6)  { top: 22%; left: 40%; animation-delay: -5s; width: 1px; height: 1px; animation-duration: 25s; }
.particle:nth-child(7)  { top: 27%; left: 63%; animation-delay: -8s; }
.particle:nth-child(8)  { top: 32%; left: 4%;  animation-delay: -13s; width: 2px; height: 2px; }
.particle:nth-child(9)  { top: 36%; left: 88%; animation-delay: -1s; animation-duration: 19s; }
.particle:nth-child(10) { top: 40%; left: 20%; animation-delay: -6s; width: 1px; height: 1px; }
.particle:nth-child(11) { top: 44%; left: 48%; animation-delay: -9s; }
.particle:nth-child(12) { top: 48%; left: 72%; animation-delay: -14s; animation-duration: 23s; }
.particle:nth-child(13) { top: 52%; left: 6%;  animation-delay: -4s; width: 2px; height: 2px; }
.particle:nth-child(14) { top: 56%; left: 35%; animation-delay: -10s; }
.particle:nth-child(15) { top: 60%; left: 58%; animation-delay: -16s; width: 1px; height: 1px; }
.particle:nth-child(16) { top: 64%; left: 82%; animation-delay: -7s; animation-duration: 21s; }
.particle:nth-child(17) { top: 68%; left: 16%; animation-delay: -12s; }
.particle:nth-child(18) { top: 72%; left: 44%; animation-delay: -3s; width: 2px; height: 2px; }
.particle:nth-child(19) { top: 9%;  left: 90%; animation-delay: -15s; }
.particle:nth-child(20) { top: 30%; left: 28%; animation-delay: -8s; width: 1px; height: 1px; animation-duration: 24s; }
.particle:nth-child(21) { top: 2%;  left: 42%; animation-delay: -6s; }
.particle:nth-child(22) { top: 14%; left: 68%; animation-delay: -11s; width: 1px; height: 1px; }
.particle:nth-child(23) { top: 24%; left: 54%; animation-delay: -2s; animation-duration: 26s; }
.particle:nth-child(24) { top: 28%; left: 10%; animation-delay: -14s; }
.particle:nth-child(25) { top: 38%; left: 76%; animation-delay: -9s; width: 2px; height: 2px; }
.particle:nth-child(26) { top: 42%; left: 2%;  animation-delay: -5s; }
.particle:nth-child(27) { top: 46%; left: 38%; animation-delay: -17s; width: 1px; height: 1px; }
.particle:nth-child(28) { top: 54%; left: 84%; animation-delay: -1s; animation-duration: 20s; }
.particle:nth-child(29) { top: 58%; left: 14%; animation-delay: -13s; }
.particle:nth-child(30) { top: 66%; left: 56%; animation-delay: -7s; width: 1px; height: 1px; }
.particle:nth-child(31) { top: 74%; left: 30%; animation-delay: -10s; animation-duration: 17s; }
.particle:nth-child(32) { top: 78%; left: 66%; animation-delay: -4s; }
.particle:nth-child(33) { top: 4%;  left: 18%; animation-delay: -16s; width: 2px; height: 2px; }
.particle:nth-child(34) { top: 34%; left: 50%; animation-delay: -8s; }
.particle:nth-child(35) { top: 50%; left: 24%; animation-delay: -12s; width: 1px; height: 1px; }
.particle:nth-child(36) { top: 16%; left: 94%; animation-delay: -3s; animation-duration: 22s; }
.particle:nth-child(37) { top: 62%; left: 42%; animation-delay: -15s; }
.particle:nth-child(38) { top: 80%; left: 8%;  animation-delay: -6s; width: 2px; height: 2px; }
.particle:nth-child(39) { top: 6%;  left: 46%; animation-delay: -9s; }
.particle:nth-child(40) { top: 37%; left: 62%; animation-delay: -11s; width: 1px; height: 1px; animation-duration: 19s; }
.particle:nth-child(41) { top: 76%; left: 78%; animation-delay: -2s; }
.particle:nth-child(42) { top: 82%; left: 52%; animation-delay: -14s; width: 1px; height: 1px; }
.particle:nth-child(43) { top: 84%; left: 22%; animation-delay: -7s; animation-duration: 23s; }
.particle:nth-child(44) { top: 86%; left: 70%; animation-delay: -10s; }
.particle:nth-child(45) { top: 88%; left: 36%; animation-delay: -5s; width: 2px; height: 2px; }
.particle:nth-child(46) { top: 90%; left: 86%; animation-delay: -13s; }
.particle:nth-child(47) { top: 92%; left: 14%; animation-delay: -8s; width: 1px; height: 1px; }
.particle:nth-child(48) { top: 94%; left: 60%; animation-delay: -3s; animation-duration: 20s; }
.particle:nth-child(49) { top: 10%; left: 32%; animation-delay: -16s; width: 2px; height: 2px; }
.particle:nth-child(50) { top: 20%; left: 86%; animation-delay: -6s; }
.particle:nth-child(51) { top: 26%; left: 22%; animation-delay: -9s; width: 1px; height: 1px; }
.particle:nth-child(52) { top: 33%; left: 92%; animation-delay: -12s; animation-duration: 21s; }
.particle:nth-child(53) { top: 41%; left: 58%; animation-delay: -4s; }
.particle:nth-child(54) { top: 47%; left: 10%; animation-delay: -15s; width: 2px; height: 2px; }
.particle:nth-child(55) { top: 53%; left: 46%; animation-delay: -7s; }
.particle:nth-child(56) { top: 59%; left: 80%; animation-delay: -11s; width: 1px; height: 1px; }
.particle:nth-child(57) { top: 63%; left: 34%; animation-delay: -2s; animation-duration: 24s; }
.particle:nth-child(58) { top: 69%; left: 90%; animation-delay: -14s; }
.particle:nth-child(59) { top: 71%; left: 4%;  animation-delay: -8s; width: 2px; height: 2px; }
.particle:nth-child(60) { top: 75%; left: 50%; animation-delay: -5s; animation-duration: 18s; }

@keyframes particle-drift {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  90% {
    opacity: 0.7;
  }
  100% {
    transform: translate(30px, -40px);
    opacity: 0;
  }
}

/* ===== FORCE ENERGY LINES ===== */
.force-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.force-line {
  position: absolute;
  width: 100%;
  height: 200px;
  opacity: 0.5;
}

.force-line--1 {
  top: 25%;
  animation: force-flow 8s ease-in-out infinite;
}

.force-line--2 {
  top: 55%;
  animation: force-flow 10s ease-in-out infinite reverse;
}

.force-line--3 {
  top: 75%;
  animation: force-flow 12s ease-in-out infinite;
  animation-delay: -4s;
}

@keyframes force-flow {
  0%, 100% {
    transform: translateX(-5%) scaleY(1);
    opacity: 0.3;
  }
  50% {
    transform: translateX(5%) scaleY(1.15);
    opacity: 0.6;
  }
}

/* ===== HOLOCRON CRYSTAL ===== */
.holocron-crystal {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 380px;
  height: 420px;
  animation: crystal-float 6s ease-in-out infinite;
}

.crystal-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 60px rgba(0, 180, 216, 0.12)) drop-shadow(0 0 120px rgba(0, 180, 216, 0.06));
}

.crystal-outer-field {
  animation: crystal-outer-rotate 20s linear infinite;
  transform-origin: 200px 220px;
}

.crystal-shell {
  animation: crystal-pulse-border 4s ease-in-out infinite;
}

.crystal-core {
  animation: core-glow 3s ease-in-out infinite;
}

.crystal-core-inner {
  animation: core-glow 3s ease-in-out infinite 0.5s;
}

.crystal-core-point {
  animation: core-point-pulse 2s ease-in-out infinite;
}

.crystal-orbit--1 {
  animation: orbit-spin 15s linear infinite;
  transform-origin: 200px 175px;
}

.crystal-orbit--2 {
  animation: orbit-spin 22s linear infinite reverse;
  transform-origin: 200px 175px;
}

@keyframes crystal-float {
  0%, 100% {
    transform: translateY(-50%) translateX(0);
  }
  33% {
    transform: translateY(-51%) translateX(3px);
  }
  66% {
    transform: translateY(-49%) translateX(-2px);
  }
}

@keyframes crystal-outer-rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes crystal-pulse-border {
  0%, 100% {
    stroke-opacity: 1;
    filter: none;
  }
  50% {
    stroke-opacity: 0.6;
    filter: drop-shadow(0 0 4px rgba(0, 180, 216, 0.3));
  }
}

@keyframes core-glow {
  0%, 100% {
    opacity: 0.6;
  }
  50% {
    opacity: 1;
  }
}

@keyframes core-point-pulse {
  0%, 100% {
    opacity: 0.8;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

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

/* ===== HERO CONTENT ===== */
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin-left: max(24px, 8vw);
}

.hero-kicker {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--dust-50);
  margin-bottom: 24px;
  animation: hero-stagger 1s var(--ease-dramatic) 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: 136px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 0.82;
  margin-bottom: 28px;
  text-transform: uppercase;
  color: var(--holo-blue-1);
  background: linear-gradient(175deg, #FFFFFF 5%, var(--holo-blue-1) 40%, var(--holo-blue-2) 80%, var(--holo-blue-3) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  position: relative;
  overflow: hidden;
  animation:
    hero-title-entrance 1.2s var(--ease-dramatic) 0.4s both,
    title-kyber-breathe 4s ease-in-out 2s infinite;
}

/* Kyber crystal shimmer — light refracting through the title */
.hero-title::after {
  content: '';
  position: absolute;
  top: -10%;
  left: -120%;
  width: 45%;
  height: 120%;
  background: linear-gradient(
    105deg,
    transparent 20%,
    rgba(255, 255, 255, 0.04) 35%,
    rgba(72, 202, 228, 0.08) 42%,
    rgba(255, 255, 255, 0.12) 50%,
    rgba(72, 202, 228, 0.08) 58%,
    rgba(255, 255, 255, 0.04) 65%,
    transparent 80%
  );
  transform: skewX(-18deg);
  animation: title-shimmer-sweep 7s ease-in-out 2.5s infinite;
  pointer-events: none;
}

@keyframes title-kyber-breathe {
  0%, 100% {
    filter: drop-shadow(0 0 24px rgba(0, 180, 216, 0.18)) drop-shadow(0 0 60px rgba(0, 180, 216, 0.06));
  }
  50% {
    filter: drop-shadow(0 0 48px rgba(0, 180, 216, 0.32)) drop-shadow(0 0 100px rgba(0, 180, 216, 0.12)) drop-shadow(0 0 160px rgba(72, 202, 228, 0.06));
  }
}

@keyframes title-shimmer-sweep {
  0%, 15% { left: -120%; }
  55%, 100% { left: 180%; }
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--dust-70);
  letter-spacing: 0.04em;
  margin-bottom: 20px;
  animation: hero-stagger 0.9s var(--ease-dramatic) 0.6s both;
}

.hero-desc {
  font-size: 15px;
  color: var(--dust-50);
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 24px;
  animation: hero-stagger 0.9s var(--ease-dramatic) 0.75s both;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  animation: hero-stagger 0.9s var(--ease-dramatic) 0.82s both;
}

.hero-proof__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 7px 12px;
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.08), rgba(236, 72, 153, 0.05)),
    rgba(8, 8, 18, 0.62);
  border: 1px solid rgba(72, 202, 228, 0.18);
  border-radius: 8px;
  color: var(--dust-50);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 24px rgba(0, 180, 216, 0.06);
}

.hero-proof__chip strong {
  color: var(--holo-gold-2);
  font-size: 15px;
  line-height: 1;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  animation: hero-stagger 0.9s var(--ease-dramatic) 0.9s both;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 38px;
  background: linear-gradient(135deg, var(--holo-blue-1), var(--holo-blue-2));
  color: var(--void-1);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.35s var(--spring-bounce), box-shadow 0.35s var(--ease-out);
  box-shadow:
    0 4px 28px rgba(0, 180, 216, 0.3),
    0 0 0 1px rgba(0, 180, 216, 0.3);
}

.hero-cta,
.access-cta {
  position: relative;
  overflow: hidden;
}

.hero-cta::before,
.access-cta::before {
  content: '';
  position: absolute;
  top: -60%;
  left: -80%;
  width: 46%;
  height: 220%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  transform: rotate(22deg);
  opacity: 0;
  pointer-events: none;
}

.hero-cta:hover::before,
.access-cta:hover::before {
  opacity: 1;
  animation: cta-foil-sweep 0.95s var(--ease-dramatic);
}

@keyframes cta-foil-sweep {
  from { transform: translateX(0) rotate(22deg); }
  to { transform: translateX(360%) rotate(22deg); }
}

.hero-cta:hover {
  transform: scale(1.06) translateY(-2px);
  box-shadow:
    0 8px 48px rgba(0, 180, 216, 0.45),
    0 0 0 1px rgba(0, 180, 216, 0.5);
}

.hero-cta:active {
  transform: scale(0.96);
  transition-duration: 0.1s;
}

.hero-cta-ghost {
  display: inline-flex;
  align-items: center;
  height: 54px;
  padding: 0 30px;
  background: transparent;
  color: var(--holo-blue-3);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid rgba(0, 180, 216, 0.25);
  transition: transform 0.35s var(--spring-bounce), border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}

.hero-cta-ghost:hover {
  transform: scale(1.04);
  border-color: rgba(0, 180, 216, 0.5);
  background: rgba(0, 180, 216, 0.06);
}

@keyframes hero-stagger {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-title-entrance {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.92);
    filter: blur(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

/* ============================================================
   FORCE DIVIDER
   ============================================================ */
.force-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
  background: var(--void-2);
}

.force-divider__line {
  display: block;
  height: 1px;
  flex: 1;
  max-width: 400px;
}

.force-divider__line--left {
  background: linear-gradient(to right, transparent, var(--holo-blue-1));
}

.force-divider__line--right {
  background: linear-gradient(to right, var(--holo-red-1), transparent);
}

.force-divider__crystal {
  display: block;
  width: 18px;
  height: 18px;
  margin: 0 24px;
  transform: rotate(45deg);
  background: linear-gradient(135deg, var(--holo-blue-1), var(--holo-red-1));
  border-radius: 2px;
  box-shadow:
    0 0 16px rgba(0, 180, 216, 0.5),
    0 0 32px rgba(217, 4, 41, 0.35),
    0 0 56px rgba(0, 180, 216, 0.12);
  animation: kyber-shimmer 3s ease-in-out infinite;
}

@keyframes kyber-shimmer {
  0%, 100% {
    box-shadow:
      0 0 16px rgba(0, 180, 216, 0.5),
      0 0 32px rgba(217, 4, 41, 0.35),
      0 0 56px rgba(0, 180, 216, 0.12);
    transform: rotate(45deg) scale(1);
  }
  50% {
    box-shadow:
      0 0 28px rgba(0, 180, 216, 0.8),
      0 0 56px rgba(217, 4, 41, 0.55),
      0 0 96px rgba(0, 180, 216, 0.25),
      0 0 140px rgba(217, 4, 41, 0.08);
    transform: rotate(45deg) scale(1.15);
  }
}

/* ============================================================
   SHARED SECTION LABELS
   ============================================================ */
.section-label {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--holo-blue-1);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.3;
  color: var(--dust-90);
  margin-bottom: 16px;
}

.section-desc {
  font-size: 15px;
  color: var(--dust-50);
  line-height: 1.8;
  max-width: 560px;
  margin-bottom: 56px;
}

/* ============================================================
   SWU COLLECTOR VAULT
   ============================================================ */
.collector-section {
  position: relative;
  padding: 120px 0 100px;
  background:
    linear-gradient(180deg, var(--void-2) 0%, var(--void-1) 48%, var(--void-3) 100%);
  overflow: hidden;
}

.collector-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0%, rgba(0, 180, 216, 0.03) 38%, transparent 56%),
    linear-gradient(245deg, transparent 10%, rgba(236, 72, 153, 0.035) 45%, transparent 70%);
  pointer-events: none;
}

.collector-section .container {
  position: relative;
  z-index: 1;
}

.collector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin: 48px 0 56px;
}

.collector-card {
  position: relative;
  min-height: 248px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    rgba(8, 8, 18, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  box-shadow:
    0 18px 48px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.05);
  transition:
    transform 0.45s var(--spring-gentle),
    border-color 0.45s var(--ease-out),
    box-shadow 0.45s var(--ease-out);
}

.collector-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  opacity: 0;
  background: linear-gradient(135deg, var(--collector-accent, var(--holo-blue-1)), transparent 42%, var(--collector-secondary, var(--kyber-pink)));
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.collector-card::after {
  content: '';
  position: absolute;
  top: -70%;
  left: -90%;
  width: 80%;
  height: 220%;
  opacity: 0;
  transform: rotate(22deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: opacity 0.45s var(--ease-out);
  pointer-events: none;
}

.collector-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow:
    0 22px 60px rgba(0, 0, 0, 0.42),
    0 0 42px color-mix(in srgb, var(--collector-accent, var(--holo-blue-1)) 18%, transparent);
}

.collector-card:hover::before {
  opacity: 0.13;
}

.collector-card:hover::after {
  opacity: 1;
  animation: treatment-sweep 1.1s var(--ease-dramatic);
}

.collector-card--leaders {
  --collector-accent: var(--holo-blue-1);
  --collector-secondary: var(--kyber-violet);
}

.collector-card--variants {
  --collector-accent: var(--kyber-pink);
  --collector-secondary: var(--holo-gold-2);
}

.collector-card--sets {
  --collector-accent: var(--kyber-emerald);
  --collector-secondary: var(--holo-blue-3);
}

.collector-card--meta {
  --collector-accent: var(--holo-red-2);
  --collector-secondary: var(--kyber-amber);
}

.collector-card__eyebrow {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--collector-accent, var(--holo-blue-1));
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.collector-card h3 {
  position: relative;
  z-index: 1;
  color: var(--dust-90);
  font-family: var(--font-display);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 14px;
}

.collector-card p {
  position: relative;
  z-index: 1;
  color: var(--dust-50);
  font-size: 13px;
  line-height: 1.75;
}

@keyframes treatment-sweep {
  from { transform: translateX(0) rotate(22deg); }
  to { transform: translateX(320%) rotate(22deg); }
}

.collector-ops {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 0 0 56px;
}

.ops-card {
  --ops-accent: var(--holo-blue-1);
  --ops-secondary: var(--holo-blue-3);
  position: relative;
  min-height: 226px;
  padding: 24px;
  overflow: hidden;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--ops-accent) 10%, transparent), rgba(255, 255, 255, 0.014) 56%),
    rgba(2, 2, 6, 0.78);
  border: 1px solid color-mix(in srgb, var(--ops-accent) 18%, rgba(255, 255, 255, 0.07));
  border-radius: 8px;
  box-shadow:
    0 18px 54px rgba(0, 0, 0, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.42s var(--spring-gentle),
    border-color 0.42s var(--ease-out),
    box-shadow 0.42s var(--ease-out);
}

.ops-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 10%, color-mix(in srgb, var(--ops-secondary) 16%, transparent), transparent 34%),
    linear-gradient(115deg, transparent 0%, color-mix(in srgb, var(--ops-accent) 10%, transparent) 48%, transparent 72%);
  opacity: 0.74;
  pointer-events: none;
}

.ops-card::after {
  content: '';
  position: absolute;
  top: 18px;
  right: 18px;
  width: 46px;
  height: 46px;
  border: 1px solid color-mix(in srgb, var(--ops-accent) 35%, transparent);
  border-radius: 50%;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ops-accent) 13%, transparent), transparent),
    rgba(8, 8, 18, 0.58);
  box-shadow:
    0 0 24px color-mix(in srgb, var(--ops-accent) 13%, transparent),
    inset 0 0 16px color-mix(in srgb, var(--ops-secondary) 10%, transparent);
  opacity: 0.76;
}

.ops-card:hover {
  transform: translateY(-5px);
  border-color: color-mix(in srgb, var(--ops-accent) 42%, transparent);
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.42),
    0 0 42px color-mix(in srgb, var(--ops-accent) 15%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.ops-card--deck {
  --ops-accent: var(--holo-blue-3);
  --ops-secondary: var(--kyber-violet);
}

.ops-card--sealed {
  --ops-accent: var(--holo-gold-2);
  --ops-secondary: var(--kyber-amber);
}

.ops-card--source {
  --ops-accent: var(--kyber-pink);
  --ops-secondary: var(--holo-blue-1);
}

.ops-card__metric {
  position: relative;
  z-index: 1;
  display: inline-flex;
  max-width: calc(100% - 58px);
  min-height: 30px;
  align-items: center;
  padding: 5px 10px;
  margin-bottom: 20px;
  color: var(--ops-accent);
  background: rgba(8, 8, 18, 0.58);
  border: 1px solid color-mix(in srgb, var(--ops-accent) 25%, transparent);
  border-radius: 6px;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.ops-card h3 {
  color: var(--dust-90);
  font-family: var(--font-display);
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.ops-card p {
  color: var(--dust-50);
  font-size: 13px;
  line-height: 1.75;
}

.collector-showpiece {
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 40px;
  align-items: center;
  padding: 34px;
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(236, 72, 153, 0.04), rgba(201, 168, 44, 0.04)),
    rgba(2, 2, 6, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.36);
}

.showcase-card {
  position: relative;
  width: min(260px, 100%);
  aspect-ratio: 5 / 7;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.16), rgba(0, 180, 216, 0.08) 26%, rgba(236, 72, 153, 0.08) 54%, rgba(201, 168, 44, 0.16)),
    var(--void-1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  contain: paint;
  box-shadow:
    0 20px 80px rgba(0, 0, 0, 0.5),
    0 0 52px rgba(0, 180, 216, 0.16),
    0 0 72px rgba(236, 72, 153, 0.08);
  animation: showcase-breathe 5s ease-in-out infinite;
}

.showcase-card::before {
  content: '';
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), transparent 35%),
    radial-gradient(circle at 50% 36%, rgba(72, 202, 228, 0.16), transparent 34%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.42));
}

.showcase-card__foil {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.52;
  background:
    conic-gradient(from 90deg, transparent, rgba(0, 180, 216, 0.28), rgba(236, 72, 153, 0.28), rgba(201, 168, 44, 0.24), transparent);
  animation: foil-rotate 7s linear infinite;
}

.showcase-card__frame {
  position: absolute;
  inset: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 8px;
  padding: 18px;
  border-radius: 6px;
}

.showcase-card__type,
.showcase-card__variant {
  color: var(--dust-50);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.showcase-card__name {
  color: var(--dust-90);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

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

@keyframes showcase-breathe {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.5), 0 0 52px rgba(0, 180, 216, 0.16), 0 0 72px rgba(236, 72, 153, 0.08);
  }
  50% {
    transform: translateY(-6px) rotate(1deg);
    box-shadow: 0 28px 94px rgba(0, 0, 0, 0.58), 0 0 70px rgba(0, 180, 216, 0.24), 0 0 90px rgba(236, 72, 153, 0.14);
  }
}

.aspect-pips {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.aspect-pip {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(8, 8, 18, 0.74);
  border: 1px solid color-mix(in srgb, currentColor 28%, transparent);
  color: var(--pip-color);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow: inset 0 0 22px color-mix(in srgb, currentColor 10%, transparent);
  transition:
    transform 0.35s var(--spring-bounce),
    box-shadow 0.35s var(--ease-out),
    background 0.35s var(--ease-out);
}

.aspect-pip:hover {
  transform: translateY(-3px) scale(1.03);
  background: color-mix(in srgb, currentColor 10%, rgba(8, 8, 18, 0.76));
  box-shadow:
    inset 0 0 28px color-mix(in srgb, currentColor 16%, transparent),
    0 0 32px color-mix(in srgb, currentColor 18%, transparent);
}

.aspect-pip--heroism { --pip-color: #F3F4F6; }
.aspect-pip--villainy { --pip-color: #B8325B; }
.aspect-pip--vigilance { --pip-color: var(--aspect-vigilance); }
.aspect-pip--command { --pip-color: var(--aspect-command); }
.aspect-pip--aggression { --pip-color: var(--aspect-aggression); }
.aspect-pip--cunning { --pip-color: var(--aspect-cunning); }

.release-wave {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1.28fr;
  gap: 32px;
  align-items: center;
  margin-top: 32px;
  padding: 30px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(72, 202, 228, 0.055), rgba(201, 168, 44, 0.04) 54%, rgba(236, 72, 153, 0.035)),
    rgba(8, 8, 18, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  box-shadow:
    0 20px 70px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
}

.release-wave::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: -30%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(72, 202, 228, 0.12), transparent);
  transform: skewX(-18deg);
  animation: wave-source-scan 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes wave-source-scan {
  0%, 24% { left: -30%; opacity: 0; }
  36% { opacity: 1; }
  58%, 100% { left: 120%; opacity: 0; }
}

.release-wave__copy,
.release-wave__rail {
  position: relative;
  z-index: 1;
}

.release-wave__eyebrow {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--holo-gold-2);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.release-wave h3 {
  color: var(--dust-90);
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.12;
  letter-spacing: 0.02em;
  margin-bottom: 10px;
}

.release-wave p {
  color: var(--dust-50);
  font-size: 13px;
  line-height: 1.75;
}

.release-wave__rail {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.release-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  color: var(--dust-70);
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.06), rgba(255, 255, 255, 0.012)),
    rgba(2, 2, 6, 0.64);
  border: 1px solid rgba(72, 202, 228, 0.16);
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(0, 180, 216, 0.045);
}

.release-chip--preview {
  color: var(--kyber-pink);
  border-color: rgba(236, 72, 153, 0.24);
  box-shadow: inset 0 0 20px rgba(236, 72, 153, 0.07);
}

.release-chip--supplemental {
  color: var(--holo-gold-2);
  border-color: rgba(201, 168, 44, 0.24);
  box-shadow: inset 0 0 20px rgba(201, 168, 44, 0.07);
}

/* ============================================================
   ECOSYSTEM SECTION
   ============================================================ */
.ecosystem-section {
  padding: 120px 0 100px;
  background: var(--void-2);
  position: relative;
}

/* --- Ecosystem Diagram --- */
.ecosystem-diagram {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 80px;
  padding: 60px 0;
}

.eco-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.eco-node--main {
  margin-bottom: 48px;
}

.eco-node--main .eco-node__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(0, 180, 216, 0.08);
  border: 1.5px solid rgba(0, 180, 216, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holo-blue-1);
  box-shadow: 0 0 30px rgba(0, 180, 216, 0.15), 0 0 60px rgba(0, 180, 216, 0.05);
  animation: main-node-pulse 4s ease-in-out infinite;
}

@keyframes main-node-pulse {
  0%, 100% { box-shadow: 0 0 30px rgba(0, 180, 216, 0.15), 0 0 60px rgba(0, 180, 216, 0.05); }
  50% { box-shadow: 0 0 44px rgba(0, 180, 216, 0.3), 0 0 88px rgba(0, 180, 216, 0.12), 0 0 140px rgba(72, 202, 228, 0.04); }
}

.eco-node__label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--dust-70);
}

.eco-node__desc {
  font-size: 11px;
  color: var(--dust-50);
}

.eco-orbit {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.eco-orbit .eco-node__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(12, 12, 24, 0.8);
  border: 1px solid var(--dust-15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--holo-blue-3);
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--spring-bounce);
}

.eco-orbit .eco-node:hover .eco-node__icon {
  border-color: rgba(0, 180, 216, 0.4);
  box-shadow: 0 0 20px rgba(0, 180, 216, 0.2);
  transform: scale(1.1);
}

.eco-connections {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* Outer orbit ring */
.eco-connections::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 340px;
  height: 340px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 180, 216, 0.06);
  box-shadow:
    inset 0 0 40px rgba(0, 180, 216, 0.03),
    0 0 40px rgba(0, 180, 216, 0.02);
  animation: connection-pulse 6s ease-in-out infinite;
}

/* Inner data flow ring */
.eco-connections::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 200px;
  height: 200px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 180, 216, 0.1);
  animation: connection-inner-pulse 4s ease-in-out 1s infinite;
}

@keyframes connection-pulse {
  0%, 100% { opacity: 0.4; transform: translate(-50%, -50%) scale(1); box-shadow: inset 0 0 40px rgba(0, 180, 216, 0.03), 0 0 40px rgba(0, 180, 216, 0.02); }
  50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.06); box-shadow: inset 0 0 60px rgba(0, 180, 216, 0.06), 0 0 60px rgba(0, 180, 216, 0.04); }
}

@keyframes connection-inner-pulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1) rotate(0deg); }
  50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.04) rotate(8deg); }
}

/* --- Ecosystem Flow --- */
.ecosystem-flow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
}

.flow-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.flow-number {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--holo-blue-1), var(--holo-blue-2));
  color: var(--void-1);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.2);
}

.flow-content h3 {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 600;
  color: var(--dust-90);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.flow-content p {
  font-size: 13px;
  color: var(--dust-50);
  line-height: 1.7;
}

/* ============================================================
   CANON MAP
   ============================================================ */
.canon-map-section {
  position: relative;
  padding: 110px 0;
  overflow: hidden;
  border-top: 1px solid var(--dust-03);
  border-bottom: 1px solid var(--dust-03);
  background:
    radial-gradient(circle at 12% 18%, rgba(0, 180, 216, 0.08), transparent 34%),
    radial-gradient(circle at 84% 76%, rgba(236, 72, 153, 0.075), transparent 36%),
    linear-gradient(180deg, var(--void-1), var(--void-3));
}

.canon-map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0%, rgba(201, 168, 44, 0.035) 38%, transparent 56%),
    linear-gradient(245deg, transparent 12%, rgba(0, 180, 216, 0.04) 48%, transparent 72%);
}

.canon-map-section .container {
  position: relative;
  z-index: 1;
}

.canon-map-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.canon-card {
  --canon-accent: var(--holo-blue-1);
  grid-column: span 4;
  position: relative;
  min-height: 220px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--canon-accent) 13%, transparent), transparent 58%),
    rgba(8, 8, 18, 0.82);
  box-shadow:
    0 18px 56px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.045);
  transition:
    transform 0.42s var(--spring-gentle),
    border-color 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out);
}

.canon-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--canon-accent), transparent);
  opacity: 0.8;
}

.canon-card:hover {
  transform: translateY(-4px);
  border-color: color-mix(in srgb, var(--canon-accent) 36%, transparent);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.42),
    0 0 44px color-mix(in srgb, var(--canon-accent) 13%, transparent);
}

.canon-card--main,
.canon-card--market,
.canon-card--ios {
  grid-column: span 6;
}

.canon-card--main { --canon-accent: var(--holo-blue-1); }
.canon-card--market { --canon-accent: var(--holo-gold-1); }
.canon-card--recognition { --canon-accent: var(--kyber-emerald); }
.canon-card--archives { --canon-accent: var(--kyber-violet); }
.canon-card--alerts { --canon-accent: var(--kyber-pink); }
.canon-card--scanner { --canon-accent: var(--holo-red-2); }
.canon-card--ios { --canon-accent: var(--holo-blue-3); }

.canon-card__status {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--canon-accent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.canon-card h3 {
  margin-bottom: 12px;
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.1;
}

.canon-card h3 a {
  color: var(--dust-90);
  text-decoration: none;
}

.canon-card h3 a:hover {
  color: var(--canon-accent);
}

.canon-card p {
  color: var(--dust-50);
  font-size: 13px;
  line-height: 1.72;
}

.canon-card__boundary {
  display: block;
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: var(--dust-70);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

/* ============================================================
   EXTENSIONS SHOWCASE
   ============================================================ */
.extensions-section {
  padding: 120px 0;
  background: var(--void-3);
}

.ext-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin-top: 48px;
}

.offering-jump {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.offering-jump a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 76px;
  padding: 14px 12px;
  border: 1px solid var(--dust-06);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.07), transparent 55%),
    rgba(8, 8, 18, 0.72);
  color: var(--dust-90);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.35s var(--spring-bounce), background 0.3s var(--ease-out);
}

.offering-jump a span {
  margin-bottom: 4px;
  color: var(--holo-gold-1);
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.offering-jump a:hover {
  border-color: rgba(0, 180, 216, 0.34);
  background:
    linear-gradient(135deg, rgba(0, 180, 216, 0.13), rgba(236, 72, 153, 0.06) 70%),
    rgba(8, 8, 18, 0.88);
  box-shadow:
    0 12px 36px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(0, 180, 216, 0.11);
  transform: translateY(-3px);
}

.ext-card {
  --ext-accent: var(--holo-blue-1);
  --ext-accent-2: var(--holo-blue-3);
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
  padding: 40px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ext-accent) 10%, transparent), transparent 42%),
    rgba(8, 8, 18, 0.82);
  border: 1px solid var(--dust-06);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  scroll-margin-top: 112px;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
  transition: border-color 0.4s var(--ease-out), transform 0.4s var(--spring-gentle), box-shadow 0.4s var(--ease-out);
}

.ext-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent, color-mix(in srgb, var(--ext-accent) 12%, transparent), transparent 62%),
    linear-gradient(245deg, transparent, color-mix(in srgb, var(--ext-accent-2) 10%, transparent), transparent 70%);
  pointer-events: none;
  transition: opacity 0.45s var(--ease-out);
}

.ext-card:hover {
  border-color: color-mix(in srgb, var(--ext-accent) 42%, transparent);
  transform: translateY(-4px);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    0 0 50px color-mix(in srgb, var(--ext-accent) 15%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.ext-card__accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, var(--ext-accent), var(--ext-accent-2));
  opacity: 0;
  transition: opacity 0.4s var(--ease-out);
}

.ext-card:hover .ext-card__accent {
  opacity: 1;
}

.ext-card--main {
  --ext-accent: var(--holo-blue-1);
  --ext-accent-2: var(--kyber-violet);
}

.ext-card--recognition {
  --ext-accent: var(--holo-blue-3);
  --ext-accent-2: var(--kyber-emerald);
}

.ext-card--marketplace {
  --ext-accent: var(--holo-gold-1);
  --ext-accent-2: var(--kyber-amber);
}

.ext-card--scanner {
  --ext-accent: var(--holo-red-1);
  --ext-accent-2: var(--kyber-pink);
}

.ext-card--dashboard {
  --ext-accent: var(--kyber-violet);
  --ext-accent-2: var(--holo-blue-3);
}

.ext-card--alerts {
  --ext-accent: var(--kyber-pink);
  --ext-accent-2: var(--holo-gold-2);
}

/* Main card always shows its accent */
.ext-card--main .ext-card__accent,
.ext-card--main:hover .ext-card__accent {
  opacity: 1;
}

/* Ambient color whisper at rest — each card breathes its identity */
.ext-card--main {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(0, 180, 216, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.ext-card--scanner {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(217, 4, 41, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.ext-card--marketplace {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(201, 168, 44, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.ext-card--alerts {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(236, 72, 153, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.ext-card--dashboard {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(139, 92, 246, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}
.ext-card--recognition {
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.3),
    0 0 36px rgba(34, 197, 94, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.ext-card__content,
.ext-card__visual {
  position: relative;
  z-index: 1;
}

.ext-card__header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.ext-card__badge {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 4px;
  background: color-mix(in srgb, var(--ext-accent) 13%, transparent);
  color: var(--ext-accent-2);
  border: 1px solid color-mix(in srgb, var(--ext-accent) 26%, transparent);
}

.ext-card__badge--lightside {
  background: rgba(0, 180, 216, 0.1);
  color: var(--holo-blue-3);
  border-color: rgba(0, 180, 216, 0.2);
}

.ext-card__badge--darkside {
  background: rgba(217, 4, 41, 0.1);
  color: var(--holo-red-3);
  border-color: rgba(217, 4, 41, 0.2);
}

.ext-card__badge--gold {
  background: rgba(201, 168, 44, 0.1);
  color: var(--holo-gold-2);
  border-color: rgba(201, 168, 44, 0.2);
}

.ext-card__header h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--dust-90);
  letter-spacing: 0.02em;
}

.ext-card__pitch {
  font-size: 14px;
  color: var(--dust-50);
  line-height: 1.75;
  margin-bottom: 18px;
}

.ext-card__highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ext-card__highlights li {
  font-size: 13px;
  color: var(--dust-50);
  padding-left: 16px;
  position: relative;
}

.ext-card__highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ext-accent);
  opacity: 0.72;
  box-shadow: 0 0 10px color-mix(in srgb, var(--ext-accent) 45%, transparent);
}

.ext-card__truth {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding: 14px;
  border: 1px solid color-mix(in srgb, var(--ext-accent) 22%, rgba(255, 255, 255, 0.04));
  border-radius: 8px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--ext-accent) 8%, transparent), transparent 70%),
    rgba(2, 2, 6, 0.46);
}

.truth-pill {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid color-mix(in srgb, var(--ext-accent) 34%, transparent);
  border-radius: 999px;
  color: var(--ext-accent-2);
  background: color-mix(in srgb, var(--ext-accent) 10%, transparent);
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ext-card__truth p {
  color: var(--dust-50);
  font-size: 12px;
  line-height: 1.6;
}

.ext-card__truth strong {
  color: var(--dust-70);
  font-weight: 700;
}

.truth-link {
  justify-self: start;
  color: var(--ext-accent-2);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.truth-link:hover {
  color: var(--dust-90);
}

/* --- Extension Mockups --- */
.ext-card__visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Popup mockup */
.popup-mockup {
  width: 200px;
  background: rgba(12, 12, 24, 0.95);
  border: 1px solid var(--dust-06);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

.popup-mockup__bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.popup-mockup__title {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--holo-blue-1);
  letter-spacing: 0.08em;
}

.popup-mockup__value {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
  color: var(--holo-gold-2);
}

.popup-mockup__sparkline {
  height: 32px;
  background: linear-gradient(to right, rgba(0, 180, 216, 0.05), rgba(0, 180, 216, 0.15), rgba(0, 180, 216, 0.08));
  border-radius: 4px;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
}

.popup-mockup__sparkline::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0, 180, 216, 0.3), transparent);
  animation: sparkline-sweep 3s ease-in-out infinite;
}

@keyframes sparkline-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

.popup-mockup__card-row {
  height: 20px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 3px;
  margin-bottom: 6px;
}

.popup-mockup__card-row:last-child {
  margin-bottom: 0;
  width: 70%;
}

/* Recognition mockup */
.recognition-mockup {
  width: 220px;
  padding: 16px;
  background: rgba(12, 12, 24, 0.9);
  border-radius: 8px;
  border: 1px solid var(--dust-06);
  position: relative;
}

.recog-line {
  height: 8px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin-bottom: 8px;
  position: relative;
}

.recog-line--short { width: 60%; }
.recog-line--med { width: 80%; }

.recog-highlight {
  position: absolute;
  top: 0;
  left: 20%;
  width: 40%;
  height: 100%;
  border-radius: 4px;
  background: rgba(0, 180, 216, 0.15);
  border: 1px solid rgba(0, 180, 216, 0.3);
}

.recog-highlight--active {
  background: rgba(0, 180, 216, 0.25);
  border-color: rgba(0, 180, 216, 0.5);
  animation: recog-active-pulse 2s ease-in-out infinite;
}

@keyframes recog-active-pulse {
  0%, 100% { box-shadow: 0 0 4px rgba(0, 180, 216, 0.2); }
  50% { box-shadow: 0 0 12px rgba(0, 180, 216, 0.4); }
}

.recog-overlay {
  position: absolute;
  top: 30%;
  right: -10px;
  background: rgba(8, 8, 18, 0.95);
  border: 1px solid rgba(0, 180, 216, 0.3);
  border-radius: 8px;
  padding: 10px;
  display: flex;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.recog-overlay__art {
  width: 36px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 180, 216, 0.15), rgba(72, 202, 228, 0.08));
  border-radius: 3px;
}

.recog-overlay__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  justify-content: center;
}

.recog-overlay__name {
  width: 50px;
  height: 6px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 3px;
}

.recog-overlay__price {
  width: 35px;
  height: 6px;
  background: rgba(201, 168, 44, 0.3);
  border-radius: 3px;
}

.recog-overlay__owned {
  width: 24px;
  height: 6px;
  background: rgba(34, 197, 94, 0.3);
  border-radius: 3px;
}

/* Market mockup */
.market-mockup {
  width: 220px;
  padding: 14px;
  background: rgba(12, 12, 24, 0.9);
  border-radius: 8px;
  border: 1px solid var(--dust-06);
}

.market-mockup__listing {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.market-mockup__img {
  width: 48px;
  height: 66px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 4px;
}

.market-mockup__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
  justify-content: center;
}

.market-mockup__title-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
}

.market-mockup__price-bar {
  height: 10px;
  width: 60%;
  background: rgba(201, 168, 44, 0.2);
  border-radius: 4px;
}

.market-mockup__overlay {
  background: rgba(0, 180, 216, 0.05);
  border: 1px solid rgba(0, 180, 216, 0.2);
  border-radius: 6px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.market-mockup__badge {
  font-family: var(--font-display);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--holo-gold-2);
  background: rgba(201, 168, 44, 0.12);
  padding: 3px 8px;
  border-radius: 3px;
  border: 1px solid rgba(201, 168, 44, 0.25);
}

.market-mockup__compare {
  display: flex;
  gap: 4px;
}

.market-mockup__compare span {
  width: 28px;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

/* Scanner mockup */
.scanner-mockup {
  width: 180px;
  text-align: center;
}

.scanner-mockup__frame {
  width: 140px;
  height: 100px;
  margin: 0 auto 14px;
  border: 2px solid rgba(217, 4, 41, 0.3);
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  background: rgba(12, 12, 24, 0.9);
}

.scanner-mockup__card {
  position: absolute;
  top: 15%;
  left: 20%;
  width: 60%;
  height: 70%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border-radius: 4px;
}

.scanner-mockup__scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--holo-red-1), transparent);
  animation: scanline-move 2.5s ease-in-out infinite;
}

@keyframes scanline-move {
  0%, 100% { top: 10%; opacity: 0.8; }
  50% { top: 85%; opacity: 1; }
}

.scanner-mockup__result {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.scanner-mockup__check {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  border: 1.5px solid rgba(34, 197, 94, 0.5);
}

/* Dashboard mockup */
.dashboard-mockup {
  width: 240px;
  background: rgba(12, 12, 24, 0.9);
  border: 1px solid var(--dust-06);
  border-radius: 10px;
  padding: 12px;
}

.dash-mockup__nav {
  height: 8px;
  width: 60%;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  margin-bottom: 12px;
}

.dash-mockup__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 12px;
}

.dash-mockup__cell {
  height: 32px;
  background: rgba(0, 180, 216, 0.04);
  border: 1px solid rgba(0, 180, 216, 0.08);
  border-radius: 4px;
}

.dash-mockup__chart {
  height: 28px;
  background: linear-gradient(to right, rgba(0, 180, 216, 0.05), rgba(0, 180, 216, 0.12), rgba(0, 180, 216, 0.06));
  border-radius: 4px;
}

/* Alerts mockup */
.alerts-mockup {
  width: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alert-mockup__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(12, 12, 24, 0.9);
  border: 1px solid var(--dust-06);
  border-radius: 8px;
}

.alert-mockup__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.alert-mockup__item--drop .alert-mockup__dot { background: var(--holo-blue-1); }
.alert-mockup__item--spike .alert-mockup__dot { background: var(--holo-red-1); animation: dot-pulse 2s ease-in-out infinite; }
.alert-mockup__item--target .alert-mockup__dot { background: var(--holo-gold-1); }

@keyframes dot-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.3); }
}

.alert-mockup__text {
  flex: 1;
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
}

.alert-mockup__arrow {
  width: 12px;
  height: 12px;
  border-radius: 2px;
}

.alert-mockup__arrow--down { background: rgba(0, 180, 216, 0.3); }
.alert-mockup__arrow--up { background: rgba(217, 4, 41, 0.3); }
.alert-mockup__arrow--hit { background: rgba(201, 168, 44, 0.3); }

/* ============================================================
   iOS SECTION
   ============================================================ */
.ios-section {
  padding: 120px 0;
  background: var(--void-2);
  position: relative;
  overflow: hidden;
}

.ios-section::before {
  content: '';
  position: absolute;
  top: 30%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.ios-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ios-desc {
  font-size: 15px;
  color: var(--dust-50);
  line-height: 1.8;
  margin-bottom: 32px;
}

.ios-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.ios-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--dust-50);
  line-height: 1.6;
}

.ios-feat__icon {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--holo-blue-1);
  margin-top: 7px;
  opacity: 0.6;
}

.ios-visual {
  display: flex;
  justify-content: center;
}

/* Phone mockup */
.phone-mockup {
  width: 200px;
  height: 400px;
  background: rgba(2, 2, 6, 0.95);
  border: 2px solid rgba(0, 180, 216, 0.15);
  border-radius: 32px;
  padding: 12px;
  position: relative;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(0, 180, 216, 0.05);
}

.phone-mockup__notch {
  width: 60px;
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  margin: 8px auto 16px;
}

.phone-mockup__screen {
  background: rgba(8, 8, 18, 0.9);
  border-radius: 20px;
  padding: 16px;
  height: calc(100% - 30px);
  display: flex;
  flex-direction: column;
}

.phone-mockup__header {
  height: 10px;
  width: 50%;
  background: rgba(0, 180, 216, 0.15);
  border-radius: 5px;
  margin-bottom: 20px;
}

.phone-mockup__cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  flex: 1;
}

.phone-mockup__card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--dust-06);
  border-radius: 6px;
}

.phone-mockup__card--glow {
  border-color: rgba(0, 180, 216, 0.3);
  box-shadow: 0 0 12px rgba(0, 180, 216, 0.15);
  animation: phone-card-glow 3s ease-in-out infinite;
}

@keyframes phone-card-glow {
  0%, 100% { box-shadow: 0 0 12px rgba(0, 180, 216, 0.15); }
  50% { box-shadow: 0 0 24px rgba(0, 180, 216, 0.3); }
}

.phone-mockup__value {
  height: 12px;
  width: 60%;
  background: rgba(201, 168, 44, 0.15);
  border-radius: 6px;
  margin-top: 16px;
}

/* ============================================================
   ASPECTS SECTION
   ============================================================ */
.aspects-section {
  padding: 120px 0;
  background: var(--void-3);
}

.aspects-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  margin-top: 48px;
}

.aspect-sigil {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  cursor: default;
  transition: transform 0.35s var(--spring-bounce);
}

.aspect-sigil:hover {
  transform: translateY(-4px);
}

.aspect-sigil__circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: box-shadow 0.4s var(--ease-out), transform 0.4s var(--spring-bounce), background 0.4s var(--ease-out);
}

.aspect-sigil__circle svg {
  width: 40px;
  height: 40px;
}

.aspect-sigil:hover .aspect-sigil__circle {
  transform: scale(1.15);
  background: rgba(0, 0, 0, 0.7);
}

.aspect-sigil__name {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--dust-50);
  transition: color 0.3s var(--ease-out);
}

.aspect-sigil__desc {
  font-size: 10px;
  color: var(--dust-50);
  text-align: center;
  max-width: 100px;
  transition: color 0.3s var(--ease-out);
}

/* Individual aspect colors + ambient Force energy */
.aspect-sigil--vigilance { color: var(--aspect-vigilance); }
.aspect-sigil--command   { color: var(--aspect-command); }
.aspect-sigil--aggression { color: var(--aspect-aggression); }
.aspect-sigil--cunning   { color: var(--aspect-cunning); }
.aspect-sigil--villainy  { color: #6B2039; }
.aspect-sigil--heroism   { color: #D0D0D0; }

/* Ambient glow — the Force is always flowing */
.aspect-sigil--vigilance .aspect-sigil__circle {
  animation: sigil-pulse-blue 5s ease-in-out infinite;
}
.aspect-sigil--command .aspect-sigil__circle {
  animation: sigil-pulse-green 5s ease-in-out 0.8s infinite;
}
.aspect-sigil--aggression .aspect-sigil__circle {
  animation: sigil-pulse-red 5s ease-in-out 1.6s infinite;
}
.aspect-sigil--cunning .aspect-sigil__circle {
  animation: sigil-pulse-amber 5s ease-in-out 2.4s infinite;
}
.aspect-sigil--villainy .aspect-sigil__circle {
  animation: sigil-pulse-villainy 5s ease-in-out 3.2s infinite;
}
.aspect-sigil--heroism .aspect-sigil__circle {
  animation: sigil-pulse-heroism 5s ease-in-out 4s infinite;
}

@keyframes sigil-pulse-blue {
  0%, 100% { box-shadow: 0 0 8px rgba(59, 130, 246, 0.15), inset 0 0 6px rgba(59, 130, 246, 0.05); }
  50% { box-shadow: 0 0 18px rgba(59, 130, 246, 0.3), 0 0 36px rgba(59, 130, 246, 0.1), inset 0 0 10px rgba(59, 130, 246, 0.08); }
}
@keyframes sigil-pulse-green {
  0%, 100% { box-shadow: 0 0 8px rgba(34, 197, 94, 0.15), inset 0 0 6px rgba(34, 197, 94, 0.05); }
  50% { box-shadow: 0 0 18px rgba(34, 197, 94, 0.3), 0 0 36px rgba(34, 197, 94, 0.1), inset 0 0 10px rgba(34, 197, 94, 0.08); }
}
@keyframes sigil-pulse-red {
  0%, 100% { box-shadow: 0 0 8px rgba(239, 68, 68, 0.15), inset 0 0 6px rgba(239, 68, 68, 0.05); }
  50% { box-shadow: 0 0 18px rgba(239, 68, 68, 0.3), 0 0 36px rgba(239, 68, 68, 0.1), inset 0 0 10px rgba(239, 68, 68, 0.08); }
}
@keyframes sigil-pulse-amber {
  0%, 100% { box-shadow: 0 0 8px rgba(245, 158, 11, 0.15), inset 0 0 6px rgba(245, 158, 11, 0.05); }
  50% { box-shadow: 0 0 18px rgba(245, 158, 11, 0.3), 0 0 36px rgba(245, 158, 11, 0.1), inset 0 0 10px rgba(245, 158, 11, 0.08); }
}
@keyframes sigil-pulse-villainy {
  0%, 100% { box-shadow: 0 0 8px rgba(107, 32, 57, 0.2), inset 0 0 8px rgba(107, 32, 57, 0.08); }
  50% { box-shadow: 0 0 20px rgba(107, 32, 57, 0.4), 0 0 40px rgba(107, 32, 57, 0.15), inset 0 0 14px rgba(107, 32, 57, 0.12); }
}
@keyframes sigil-pulse-heroism {
  0%, 100% { box-shadow: 0 0 8px rgba(240, 240, 240, 0.1), inset 0 0 6px rgba(240, 240, 240, 0.03); }
  50% { box-shadow: 0 0 18px rgba(240, 240, 240, 0.22), 0 0 36px rgba(240, 240, 240, 0.08), inset 0 0 10px rgba(240, 240, 240, 0.05); }
}

/* Hover overrides ambient — flare up dramatically */
.aspect-sigil--vigilance:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(59, 130, 246, 0.55), 0 0 56px rgba(59, 130, 246, 0.22), inset 0 0 16px rgba(59, 130, 246, 0.12);
}
.aspect-sigil--command:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(34, 197, 94, 0.55), 0 0 56px rgba(34, 197, 94, 0.22), inset 0 0 16px rgba(34, 197, 94, 0.12);
}
.aspect-sigil--aggression:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.55), 0 0 56px rgba(239, 68, 68, 0.22), inset 0 0 16px rgba(239, 68, 68, 0.12);
}
.aspect-sigil--cunning:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(245, 158, 11, 0.55), 0 0 56px rgba(245, 158, 11, 0.22), inset 0 0 16px rgba(245, 158, 11, 0.12);
}
.aspect-sigil--villainy:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(107, 32, 57, 0.65), 0 0 56px rgba(107, 32, 57, 0.3), inset 0 0 22px rgba(107, 32, 57, 0.2);
}
.aspect-sigil--heroism:hover .aspect-sigil__circle {
  animation: none;
  box-shadow: 0 0 28px rgba(240, 240, 240, 0.45), 0 0 56px rgba(240, 240, 240, 0.16), inset 0 0 16px rgba(240, 240, 240, 0.06);
}

.aspect-sigil:hover .aspect-sigil__name {
  color: currentColor;
}

.aspect-sigil:hover .aspect-sigil__desc {
  color: var(--dust-50);
}

/* Villainy special styling */
.aspect-sigil--villainy .aspect-sigil__circle {
  border-color: #6B2039;
  background: rgba(107, 32, 57, 0.1);
}

/* Heroism special styling */
.aspect-sigil--heroism .aspect-sigil__circle {
  border-color: #D0D0D0;
  background: rgba(240, 240, 240, 0.04);
}

/* ============================================================
   INTELLIGENCE NETWORK (Supported Sites)
   ============================================================ */
.network-section {
  padding: 100px 0;
  background: var(--void-2);
}

.network-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin-top: 32px;
}

.network-badge {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: inherit;
  text-decoration: none;
  background: rgba(8, 8, 18, 0.8);
  border: 1px solid var(--dust-06);
  border-radius: 10px;
  min-height: 102px;
  padding: 18px 18px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out), transform 0.3s var(--spring-bounce);
}

.network-badge::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.06), transparent 58%),
    radial-gradient(circle at 14px 18px, rgba(72, 202, 228, 0.12), transparent 36%);
  transition: opacity 0.3s var(--ease-out);
  pointer-events: none;
}

.network-badge:hover {
  border-color: var(--dust-15);
  box-shadow:
    0 12px 34px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(0, 180, 216, 0.08);
  transform: translateY(-2px);
}

.network-badge:hover::after {
  opacity: 1;
}

.network-badge:focus-visible {
  border-color: var(--holo-blue-3);
  box-shadow: 0 0 0 1px rgba(72, 202, 228, 0.5), 0 0 28px rgba(72, 202, 228, 0.16);
}

.network-badge__accent {
  display: block;
  width: 3px;
  height: 24px;
  border-radius: 2px;
  flex-shrink: 0;
  margin-top: 3px;
}

.network-badge--gold .network-badge__accent  { background: var(--holo-gold-1); }
.network-badge--blue .network-badge__accent  { background: var(--holo-blue-1); }
.network-badge--cyan .network-badge__accent  { background: var(--holo-blue-3); }
.network-badge--red .network-badge__accent   { background: var(--holo-red-2); }

.network-badge__text {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 5px;
}

.network-badge__name {
  font-size: 13px;
  font-weight: 700;
  color: var(--dust-90);
  letter-spacing: 0.01em;
  min-width: 0;
  overflow-wrap: anywhere;
  white-space: normal;
}

.network-badge__role {
  max-width: 190px;
  color: var(--dust-50);
  font-size: 11px;
  line-height: 1.45;
}

/* ============================================================
   ENCRYPTION PROTOCOL (Privacy)
   ============================================================ */
.encryption-section {
  padding: 80px 0;
  background: var(--void-3);
  border-top: 1px solid var(--dust-03);
  border-bottom: 1px solid var(--dust-03);
  position: relative;
  overflow: hidden;
}

.encryption-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 25%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(0, 180, 216, 0.03) 0%, transparent 70%);
  pointer-events: none;
}

.encryption-inner {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.encryption-crystal {
  flex-shrink: 0;
  width: 56px;
  height: 64px;
  padding-top: 2px;
}

.encryption-crystal svg {
  width: 100%;
  height: 100%;
}

.encryption-text h3 {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--dust-90);
  margin-bottom: 10px;
  letter-spacing: 0.02em;
}

.encryption-text p {
  font-size: 14px;
  color: var(--dust-50);
  line-height: 1.8;
}

/* ============================================================
   EARLY ACCESS SECTION
   ============================================================ */
.access-section {
  padding: 120px 0;
  background: var(--void-1);
  position: relative;
  overflow: hidden;
}

.access-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background:
    radial-gradient(ellipse 400px 400px at 50% 50%, rgba(0, 180, 216, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 250px 250px at 50% 50%, rgba(72, 202, 228, 0.04) 0%, transparent 50%);
  pointer-events: none;
  animation: cta-nebula-breathe 6s ease-in-out infinite;
}

/* Hyperspace streaks — the jump to lightspeed behind the CTA */
.access-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background:
    linear-gradient(92deg, transparent 38%, rgba(0, 180, 216, 0.02) 49%, rgba(72, 202, 228, 0.04) 50%, rgba(0, 180, 216, 0.02) 51%, transparent 62%),
    linear-gradient(88deg, transparent 34%, rgba(217, 4, 41, 0.015) 49%, rgba(255, 77, 109, 0.025) 50%, rgba(217, 4, 41, 0.015) 51%, transparent 66%),
    linear-gradient(91deg, transparent 42%, rgba(201, 168, 44, 0.015) 49.5%, rgba(232, 200, 76, 0.025) 50%, rgba(201, 168, 44, 0.015) 50.5%, transparent 58%);
  pointer-events: none;
  animation: hyperspace-pulse 4s ease-in-out infinite;
}

@keyframes cta-nebula-breathe {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 1; }
  50% { transform: translate(-50%, -50%) scale(1.08); opacity: 0.8; }
}

@keyframes hyperspace-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

.access-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

.access-crystal {
  width: 80px;
  height: 96px;
  margin-bottom: 28px;
}

.access-crystal-svg {
  width: 100%;
  height: 100%;
}

.access-core {
  animation: core-glow 3s ease-in-out infinite;
}

.access-label {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--holo-gold-1);
  margin-bottom: 16px;
}

.access-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 5vw, 42px);
  font-weight: 700;
  color: var(--dust-90);
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.access-desc {
  font-size: 15px;
  color: var(--dust-50);
  line-height: 1.8;
  max-width: 480px;
  margin-bottom: 36px;
}

.access-cta {
  display: inline-flex;
  align-items: center;
  height: 56px;
  padding: 0 44px;
  background: linear-gradient(135deg, var(--holo-blue-1), var(--holo-blue-2));
  color: var(--void-1);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.4s var(--spring-bounce), box-shadow 0.4s var(--ease-out);
  box-shadow:
    0 4px 32px rgba(0, 180, 216, 0.3),
    0 0 0 1px rgba(0, 180, 216, 0.3),
    0 0 60px rgba(0, 180, 216, 0.1);
  margin-bottom: 16px;
  animation: cta-button-breathe 3s ease-in-out infinite;
}

@keyframes cta-button-breathe {
  0%, 100% {
    box-shadow:
      0 4px 32px rgba(0, 180, 216, 0.3),
      0 0 0 1px rgba(0, 180, 216, 0.3),
      0 0 60px rgba(0, 180, 216, 0.1);
  }
  50% {
    box-shadow:
      0 6px 40px rgba(0, 180, 216, 0.4),
      0 0 0 1px rgba(0, 180, 216, 0.4),
      0 0 80px rgba(0, 180, 216, 0.18),
      0 0 120px rgba(72, 202, 228, 0.06);
  }
}

.access-cta:hover {
  transform: scale(1.06) translateY(-3px);
  box-shadow:
    0 8px 48px rgba(0, 180, 216, 0.45),
    0 0 0 1px rgba(0, 180, 216, 0.5),
    0 0 100px rgba(0, 180, 216, 0.12);
}

.access-cta:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.access-note {
  font-size: 12px;
  color: var(--dust-50);
  letter-spacing: 0.02em;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  padding: 40px 0;
  background: var(--void-1);
  border-top: 1px solid var(--dust-03);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--dust-03);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 700;
  color: var(--holo-blue-1);
  letter-spacing: 0.12em;
}

.footer-signoff {
  font-family: var(--font-body);
  font-size: 13px;
  font-style: italic;
  color: var(--dust-30);
  letter-spacing: 0.01em;
}

.footer-home {
  font-size: 13px;
  color: var(--dust-50);
  text-decoration: none;
  transition: color 0.25s var(--ease-out);
}

.footer-home:hover {
  color: var(--holo-blue-3);
}

.footer-legal {
  font-size: 11px;
  color: var(--dust-30);
}

/* ============================================================
   ANIMATIONS
   Keep section content visible by default; hero and object motion carry the drama.
   ============================================================ */

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .particle {
    opacity: 0.3;
    animation: none !important;
  }

  .holocron-crystal {
    transform: translateY(-50%);
    animation: none !important;
  }

  .hero-kicker,
  .hero-title,
  .hero-tagline,
  .hero-desc,
	  .hero-actions,
	  .hero-proof,
		  .ext-card,
			  .collector-card,
			  .canon-card,
			  .showcase-card,
			  .offering-jump a,
			  .ecosystem-section,
		  .canon-map-section,
		  .collector-section,
		  .extensions-section,
	  .ios-section,
	  .aspects-section,
  .network-section,
  .access-section {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .force-lines,
	  .force-line,
	  .showcase-card__foil,
	  .crystal-orbit--1,
	  .crystal-orbit--2,
	  .crystal-outer-field,
	  .aspect-sigil__circle,
	  .access-cta,
	  .hero-title,
	  .hero-title::after {
    animation: none !important;
  }

  .hero-title {
    filter: none !important;
  }

		  .hero-cta:hover,
		  .canon-card:hover,
		  .offering-jump a:hover,
		  .network-badge:hover,
		  .access-cta:hover {
	    transform: none;
	  }
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .holocron-crystal {
    width: 280px;
    height: 320px;
    right: 3%;
  }

		  .header-nav__list {
		    gap: 20px;
		  }

	  .hero-content {
	    margin-left: 24px;
	  }

	  .hero-title {
	    font-size: 108px;
	  }

	  .ext-card {
	    grid-template-columns: 1fr 220px;
	    gap: 28px;
	    padding: 32px;
	  }

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

  .ecosystem-flow {
    grid-template-columns: 1fr;
  }

		  .canon-card,
		  .canon-card--main,
		  .canon-card--market,
		  .canon-card--ios {
		    grid-column: span 6;
		  }

  .ios-split {
    gap: 40px;
  }

	  .aspects-row {
	    gap: 32px;
	  }

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

	  .collector-ops {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .ops-card--source {
	    grid-column: 1 / -1;
	    min-height: auto;
	  }

	  .collector-showpiece {
	    grid-template-columns: 260px 1fr;
	    gap: 28px;
	  }

	  .release-wave {
	    grid-template-columns: 1fr;
	  }

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

	  .eco-orbit {
	    gap: 28px;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .hero {
    min-height: 82vh;
    padding: 132px 24px 68px;
  }

  .holocron-crystal {
    display: none;
  }

	  .hero-content {
	    margin-left: 0;
	    max-width: 100%;
	    text-align: center;
	  }

	  .hero-title {
	    font-size: 86px;
	  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

	  .hero-actions {
	    justify-content: center;
	  }

	  .hero-proof {
	    justify-content: center;
	  }

	  .header-nav__list {
	    display: flex;
	    gap: 10px;
	  }

		  .header-nav__list a {
		    font-size: 10px;
		    letter-spacing: 0.08em;
		  }

	  .ext-card {
	    grid-template-columns: 1fr;
	  }

	  .offering-jump {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

  .ext-card__visual {
    display: none;
  }

	  .ecosystem-flow {
	    grid-template-columns: 1fr;
	  }

		  .canon-map-grid {
		    grid-template-columns: 1fr;
		  }

		  .canon-card,
		  .canon-card--main,
		  .canon-card--market,
		  .canon-card--ios {
		    grid-column: auto;
		    min-height: auto;
		  }

	  .ios-split {
	    grid-template-columns: 1fr;
	    gap: 48px;
	  }

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

	  .collector-ops {
	    grid-template-columns: 1fr;
	  }

	  .ops-card--source {
	    grid-column: auto;
	  }

	  .collector-showpiece {
	    grid-template-columns: 1fr;
	    padding: 28px;
	  }

	  .release-wave {
	    padding: 26px;
	  }

	  .aspect-pips {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	  }

	  .ios-visual {
	    order: -1;
  }

	  .network-grid {
	    grid-template-columns: repeat(2, minmax(0, 1fr));
	    max-width: 100%;
	  }

  .aspects-row {
    gap: 24px;
  }

  .aspect-sigil__circle {
    width: 52px;
    height: 52px;
  }

  .aspect-sigil__circle svg {
    width: 32px;
    height: 32px;
  }

  .aspect-sigil__desc {
    display: none;
  }

  .encryption-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .force-lines {
    display: none;
  }

  .eco-orbit {
    gap: 20px;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .hero {
    min-height: 78vh;
    padding: 112px 20px 56px;
  }

  .hero-title {
    font-size: 58px;
    letter-spacing: 0.05em;
  }

  .container {
    padding: 0 20px;
  }

  .header-container {
    padding: 0 20px;
  }

  .header-nav {
    display: none;
  }

		  .ecosystem-section {
		    padding: 80px 0;
		  }

		  .canon-map-section {
		    padding: 80px 0;
		  }

	  .collector-section {
	    padding: 80px 0;
	  }

  .extensions-section {
    padding: 80px 0;
  }

  .ios-section {
    padding: 80px 0;
  }

  .aspects-section {
    padding: 80px 0;
  }

  .network-section {
    padding: 72px 0;
  }

	  .access-section {
	    padding: 80px 0;
	  }

		  .access-section::before {
		    width: 280px;
		    height: 280px;
		  }

	  .aspects-row {
	    gap: 16px;
	  }

			  .collector-card {
			    min-height: auto;
			    padding: 22px;
			  }

			  .canon-card {
			    padding: 22px;
			  }

		  .ops-card {
		    min-height: auto;
		    padding: 22px;
		  }

		  .ops-card__metric {
		    max-width: 100%;
		    padding-right: 56px;
		  }

		  .collector-showpiece {
		    padding: 22px;
		  }

		  .release-wave {
		    padding: 22px;
		  }

		  .release-wave__rail {
		    gap: 8px;
		  }

		  .release-chip {
		    width: 100%;
		    justify-content: center;
		    text-align: center;
		  }

		  .showcase-card__foil {
		    inset: 16%;
		    width: 68%;
		    height: 68%;
		  }

		  .aspect-pips {
	    grid-template-columns: 1fr;
	  }

	  .aspect-pip {
	    min-height: 46px;
	    font-size: 11px;
	  }

	  .hero-proof__chip {
	    width: 100%;
	    justify-content: center;
	  }

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

			  .offering-jump {
			    grid-template-columns: 1fr;
			  }

		  .ecosystem-diagram {
		    overflow: hidden;
		  }

		  .eco-connections::before {
		    width: 220px;
		    height: 220px;
		  }

		  .eco-connections::after {
		    width: 140px;
		    height: 140px;
		  }

			  .network-badge__name {
	    white-space: normal;
	  }

  .aspect-sigil__circle {
    width: 44px;
    height: 44px;
  }

  .aspect-sigil__circle svg {
    width: 26px;
    height: 26px;
  }

  .aspect-sigil__name {
    font-size: 10px;
  }

  .force-divider {
    padding: 40px 20px;
  }

  .force-divider__line {
    max-width: 120px;
  }

  .ext-card {
    padding: 24px;
  }

  .phone-mockup {
    width: 170px;
    height: 340px;
  }

  .section-title {
    font-size: clamp(20px, 5vw, 28px);
  }

  .access-cta {
    padding: 0 32px;
    height: 50px;
    font-size: 13px;
  }
}
