
:root {
  --ink: #060817;
  --ink-2: #0a0d22;
  --panel: rgba(16, 20, 49, .66);
  --panel-solid: #11152f;
  --text: #f6f7ff;
  --muted: #aab1ca;
  --violet: #8b5cf6;
  --violet-2: #6d28d9;
  --blue: #4f8cff;
  --cyan: #4de7ff;
  --pink: #d95cff;
  --line: rgba(167, 139, 250, .18);
  --line-strong: rgba(167, 139, 250, .36);
  --shadow: 0 28px 100px rgba(0, 0, 0, .42);
  --radius: 24px;
  --power-level: .2;
  --pointer-x: 0;
  --pointer-y: 0;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 3%, rgba(79, 70, 229, calc(.12 + var(--power-level) * .16)), transparent 28rem),
    radial-gradient(circle at 10% 35%, rgba(139, 92, 246, calc(.08 + var(--power-level) * .11)), transparent 30rem),
    linear-gradient(180deg, #050713 0%, #080b1b 48%, #050713 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  transition: background 700ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: calc(.12 + var(--power-level) * .16);
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
  transition: opacity 600ms ease;
}

a { color: inherit; }
button, input, textarea { font: inherit; }

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

.announcement {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 20px;
  color: #dfe3ff;
  font-size: 13px;
  letter-spacing: .02em;
  background: linear-gradient(90deg, rgba(109,40,217,.28), rgba(79,140,255,.18), rgba(109,40,217,.28));
  border-bottom: 1px solid var(--line);
}

.announcement b { color: #fff; }

.nav-shell {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(5, 7, 19, .74);
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(255,255,255,.065);
}

.nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
}

.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
  filter: drop-shadow(0 0 22px rgba(139,92,246,.42));
}

.brand-name {
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .23em;
}

.brand-name small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .28em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 25px;
}

.nav-links a {
  color: #cfd4e9;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: .2s ease;
}

.nav-links a:hover { color: #fff; }

.nav-actions {
  display: flex;
  gap: 11px;
  align-items: center;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  color: white;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

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

.button.primary {
  background: linear-gradient(135deg, #9b5cff, #6d28d9 50%, #4569ff);
  box-shadow: 0 14px 45px rgba(109,40,217,.35), inset 0 1px rgba(255,255,255,.28);
}

.button.secondary {
  color: #e8e9fb;
  border-color: var(--line-strong);
  background: rgba(255,255,255,.035);
}

.button.ghost {
  padding-inline: 10px;
  color: #c8cde2;
}

.hero {
  min-height: 870px;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 260px;
  background: linear-gradient(to bottom, transparent, #070918);
  z-index: -1;
}

.hero-energy-field {
  position: absolute;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}

.energy-grid {
  position: absolute;
  inset: 0;
  opacity: calc(.09 + var(--power-level) * .18);
  background-image:
    linear-gradient(rgba(142,112,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(142,112,255,.08) 1px, transparent 1px);
  background-size: 92px 92px;
  transform:
    perspective(900px)
    rotateX(64deg)
    translateY(160px)
    scale(1.35);
  transform-origin: center bottom;
  transition: opacity 500ms ease;
}

.energy-aurora {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  filter: blur(70px);
  opacity: calc(.12 + var(--power-level) * .24);
  mix-blend-mode: screen;
  transition: opacity 500ms ease;
}

.energy-aurora-a {
  right: -180px;
  top: -220px;
  background: rgba(111, 72, 255, .58);
  animation: auroraDriftA 16s ease-in-out infinite;
}

.energy-aurora-b {
  left: -250px;
  bottom: -380px;
  background: rgba(50, 142, 255, .34);
  animation: auroraDriftB 19s ease-in-out infinite;
}

@keyframes auroraDriftA {
  0%, 100% { transform: translate3d(0,0,0) scale(1); }
  50% { transform: translate3d(-70px,75px,0) scale(1.16); }
}

@keyframes auroraDriftB {
  0%, 100% { transform: translate3d(0,0,0) scale(1.1); }
  50% { transform: translate3d(110px,-55px,0) scale(.95); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.03fr .97fr;
  gap: 44px;
  align-items: center;
  padding: 92px 0 120px;
}

.hero-copy {
  position: relative;
  z-index: 4;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: #d9ccff;
  background: rgba(139,92,246,.08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 15px var(--cyan);
}

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

h1 {
  max-width: 820px;
  margin: 25px 0;
  font-size: clamp(56px, 6.8vw, 104px);
  line-height: .96;
  letter-spacing: -.066em;
}

.gradient-text {
  color: transparent;
  background: linear-gradient(100deg, #fff 0%, #d6c5ff 24%, #9c66ff 57%, #57b8ff 88%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-lead {
  max-width: 690px;
  color: #b9bfd4;
  font-size: 20px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 31px;
}

.hero-note {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  color: #858da9;
  font-size: 13px;
}

.hero-note span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--cyan);
}

.hero-visual {
  position: relative;
  min-height: 690px;
  display: grid;
  place-items: center;
  transform:
    translate3d(
      calc(var(--pointer-x) * 9px),
      calc(var(--pointer-y) * 8px),
      0
    );
  transition: transform 180ms ease-out;
}

.core-stage {
  position: relative;
  width: min(100%, 690px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  perspective: 1500px;
  transform:
    translate3d(
      calc(var(--pointer-x) * 13px),
      calc(var(--pointer-y) * 11px),
      0
    );
  transition: transform 160ms ease-out;
}

.hero-halo {
  position: absolute;
  width: 82%;
  height: 82%;
  border-radius: 50%;
  background:
    radial-gradient(circle at center,
      rgba(164, 96, 255, calc(.22 + var(--power-level) * .32)),
      rgba(79,70,229,.12) 36%,
      transparent 70%
    );
  filter: blur(9px);
  animation: haloBreathe 5.5s ease-in-out infinite;
}

@keyframes haloBreathe {
  0%, 100% { transform: scale(.94); opacity: .65; }
  50% { transform: scale(1.06); opacity: 1; }
}

.z-float-shell {
  position: relative;
  z-index: 8;
  width: 78%;
  animation: zContinuousFloat 7.5s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes zContinuousFloat {
  0%, 100% {
    transform: translate3d(0, 8px, 0) rotateX(-2deg);
  }
  50% {
    transform: translate3d(0, -16px, 24px) rotateX(4deg);
  }
}

.z-rotation-shell {
  position: relative;
  width: 100%;
  transform-style: preserve-3d;
  will-change: transform, filter;
  animation: zLivingCoreCycle 30s infinite;
}

@keyframes zLivingCoreCycle {
  0%, 7% {
    transform: rotateX(0deg) rotateY(0deg) rotateZ(0deg) scale(.98);
    filter: brightness(1) saturate(1.05);
    animation-timing-function: cubic-bezier(.42,0,.58,1);
  }
  19% {
    transform: rotateX(18deg) rotateY(70deg) rotateZ(52deg) scale(1);
    filter: brightness(1.06) saturate(1.12);
    animation-timing-function: cubic-bezier(.16,.82,.2,1);
  }
  34% {
    transform: rotateX(225deg) rotateY(550deg) rotateZ(430deg) scale(1.035);
    filter: brightness(1.28) saturate(1.3);
    animation-timing-function: cubic-bezier(.12,.9,.18,1);
  }
  47%, 54% {
    transform: rotateX(360deg) rotateY(720deg) rotateZ(540deg) scale(1);
    filter: brightness(1.08) saturate(1.12);
    animation-timing-function: cubic-bezier(.42,0,.58,1);
  }
  66% {
    transform: rotateX(335deg) rotateY(650deg) rotateZ(485deg) scale(1);
    filter: brightness(1.08) saturate(1.14);
    animation-timing-function: cubic-bezier(.16,.82,.2,1);
  }
  82% {
    transform: rotateX(-190deg) rotateY(-520deg) rotateZ(-410deg) scale(1.035);
    filter: brightness(1.3) saturate(1.32);
    animation-timing-function: cubic-bezier(.12,.9,.18,1);
  }
  96%, 100% {
    transform: rotateX(-360deg) rotateY(-720deg) rotateZ(-540deg) scale(.98);
    filter: brightness(1) saturate(1.06);
  }
}

.hero-image {
  display: block;
  width: 100%;
  border-radius: 50%;
  mix-blend-mode: screen;
  filter:
    saturate(1.14)
    contrast(1.07)
    drop-shadow(0 35px 80px rgba(80,40,220,.5))
    drop-shadow(0 0 42px rgba(139,92,246,.34));
  mask-image: radial-gradient(circle at center, #000 45%, rgba(0,0,0,.98) 58%, transparent 78%);
  transform:
    rotateX(calc(var(--pointer-y) * -4deg))
    rotateY(calc(var(--pointer-x) * 5deg));
  transition: transform 150ms ease-out;
}

.z-specular {
  position: absolute;
  inset: 12% 18% 18% 19%;
  pointer-events: none;
  border-radius: 50%;
  opacity: .7;
  mix-blend-mode: screen;
  background:
    linear-gradient(
      118deg,
      transparent 16%,
      rgba(255,255,255,.28) 27%,
      transparent 40%,
      rgba(104,221,255,.14) 62%,
      transparent 74%
    );
  transform:
    translate3d(
      calc(var(--pointer-x) * 18px),
      calc(var(--pointer-y) * 15px),
      36px
    )
    rotate(-12deg);
  animation: specularSweep 7s ease-in-out infinite;
}

@keyframes specularSweep {
  0%, 100% { opacity: .28; filter: blur(2px); }
  50% { opacity: .92; filter: blur(.2px); }
}

.core-reflection {
  position: absolute;
  z-index: 9;
  width: 44%;
  height: 16%;
  bottom: 12%;
  border-radius: 50%;
  opacity: .5;
  filter: blur(18px);
  background: radial-gradient(ellipse, rgba(102,100,255,.52), transparent 70%);
  transform:
    translateX(calc(var(--pointer-x) * 12px))
    scaleX(calc(.9 + var(--power-level) * .24));
}

.orbit {
  position: absolute;
  border: 1px solid rgba(148,117,255,.2);
  border-radius: 50%;
  transform-style: preserve-3d;
  pointer-events: none;
}

.orbit-outer {
  width: 90%;
  height: 90%;
  transform: rotateX(68deg) rotateZ(-16deg);
  animation: orbitOuter 18s linear infinite;
}

.orbit-middle {
  width: 72%;
  height: 72%;
  transform: rotateY(68deg) rotateZ(32deg);
  animation: orbitMiddle 12s linear infinite reverse;
}

.orbit-inner {
  width: 56%;
  height: 56%;
  transform: rotateX(63deg) rotateY(18deg);
  animation: orbitInner 8s linear infinite;
}

@keyframes orbitOuter {
  to { transform: rotateX(68deg) rotateZ(344deg); }
}

@keyframes orbitMiddle {
  to { transform: rotateY(68deg) rotateZ(392deg); }
}

@keyframes orbitInner {
  to { transform: rotateX(63deg) rotateY(378deg); }
}

.orbit-particle {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #a986ff;
  box-shadow:
    0 0 9px #a986ff,
    0 0 22px rgba(169,134,255,.9),
    0 0 44px rgba(89,154,255,.5);
}

.particle-a { left: 10%; top: 20%; }
.particle-b { right: 4%; top: 47%; width: 6px; height: 6px; background: var(--cyan); }
.particle-c { left: 45%; bottom: -1%; width: 7px; height: 7px; }
.particle-d { right: 14%; top: 12%; background: #fff; }
.particle-e { left: 2%; bottom: 35%; width: 6px; height: 6px; background: var(--cyan); }
.particle-f { right: 5%; bottom: 16%; background: var(--pink); }

.energy-wave {
  position: absolute;
  width: 64%;
  height: 64%;
  border: 1px solid rgba(153,111,255,.36);
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  animation: energyWave 7.5s ease-out infinite;
}

.wave-b { animation-delay: 2.5s; }
.wave-c { animation-delay: 5s; }

@keyframes energyWave {
  0%, 4% {
    transform: scale(.52);
    opacity: 0;
    filter: blur(1px);
  }
  12% {
    opacity: calc(.22 + var(--power-level) * .42);
  }
  46% {
    opacity: .08;
  }
  65%, 100% {
    transform: scale(1.48);
    opacity: 0;
    filter: blur(4px);
  }
}

.core-stage.core-accelerating .energy-wave {
  animation-duration: 2.5s;
}

.core-stage.core-stopping .energy-wave {
  animation-duration: 4s;
}

.light-trail {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  opacity: calc(.18 + var(--power-level) * .52);
  mix-blend-mode: screen;
  filter: blur(1px);
}

.trail-a {
  width: 92%;
  height: 28%;
  border-top: 3px solid rgba(148,99,255,.58);
  transform: rotate(-12deg);
  animation: lightTrailA 5.8s ease-in-out infinite;
}

.trail-b {
  width: 76%;
  height: 18%;
  border-bottom: 2px solid rgba(77,231,255,.44);
  transform: rotate(34deg);
  animation: lightTrailB 4.2s ease-in-out infinite reverse;
}

.trail-c {
  width: 58%;
  height: 58%;
  border-right: 2px solid rgba(217,92,255,.42);
  transform: rotate(-36deg);
  animation: lightTrailC 6.6s ease-in-out infinite;
}

@keyframes lightTrailA {
  0%, 100% { transform: rotate(-12deg) scaleX(.8); opacity: .14; }
  45% { transform: rotate(14deg) scaleX(1.16); opacity: .74; }
}

@keyframes lightTrailB {
  0%, 100% { transform: rotate(34deg) scaleX(.78); opacity: .12; }
  52% { transform: rotate(8deg) scaleX(1.12); opacity: .62; }
}

@keyframes lightTrailC {
  0%, 100% { transform: rotate(-36deg) scale(.86); opacity: .1; }
  50% { transform: rotate(20deg) scale(1.08); opacity: .54; }
}

.core-lens-flare {
  position: absolute;
  z-index: 12;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  pointer-events: none;
  background: white;
  box-shadow:
    0 0 11px white,
    0 0 28px #a988ff,
    0 0 70px rgba(79,140,255,.88);
  opacity: calc(.18 + var(--power-level) * .76);
  mix-blend-mode: screen;
}

.core-lens-flare::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 2px;
  left: -55px;
  top: 4px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.75), transparent);
  filter: blur(.5px);
}

.flare-a {
  right: 20%;
  top: 25%;
  animation: flarePulseA 5s ease-in-out infinite;
}

.flare-b {
  left: 21%;
  bottom: 23%;
  transform: scale(.55);
  animation: flarePulseB 6.5s ease-in-out infinite;
}

@keyframes flarePulseA {
  0%, 100% { transform: scale(.7); opacity: .18; }
  42% { transform: scale(1.5); opacity: .9; }
}

@keyframes flarePulseB {
  0%, 100% { transform: scale(.4); opacity: .12; }
  62% { transform: scale(1.05); opacity: .65; }
}

.core-status {
  position: absolute;
  z-index: 15;
  bottom: 5%;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border: 1px solid rgba(137,111,255,.28);
  border-radius: 999px;
  color: #d9d7eb;
  background: rgba(7,10,27,.66);
  backdrop-filter: blur(14px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
}

.core-status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 11px var(--cyan);
}

.floating-chip {
  position: absolute;
  z-index: 20;
  min-width: 170px;
  padding: 14px 16px;
  border: 1px solid var(--line-strong);
  border-radius: 15px;
  background: rgba(12, 15, 38, .78);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  transform:
    translate3d(
      calc(var(--pointer-x) * -8px),
      calc(var(--pointer-y) * -6px),
      0
    );
  transition: transform 160ms ease-out;
}

.floating-chip b {
  display: block;
  font-size: 13px;
}

.floating-chip small { color: var(--muted); }

.chip-a { left: 0; top: 20%; }
.chip-b { right: -4%; top: 34%; }
.chip-c { left: 4%; bottom: 18%; }
.chip-d { right: 2%; bottom: 13%; }

.trust-strip {
  position: relative;
  z-index: 2;
  margin-top: -70px;
}

.trust-panel {
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(11, 14, 34, .82);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.trust-label {
  color: #757f9d;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: 21px;
}

.metric {
  min-height: 74px;
  padding: 8px 22px;
  border-right: 1px solid var(--line);
}

.metric:last-child { border-right: 0; }
.metric strong { display: block; font-size: 22px; }
.metric span { color: var(--muted); font-size: 12px; }

.section {
  position: relative;
  padding: 118px 0;
  isolation: isolate;
}

.section::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  z-index: -1;
  pointer-events: none;
  border-radius: 50%;
  opacity: calc(var(--section-power, .05) * .75);
  background:
    radial-gradient(circle at 50% 50%, rgba(109,40,217,.32), transparent 66%);
  filter: blur(52px);
  transition: opacity 900ms ease, transform 900ms ease;
  transform: scale(.88);
}

.section.powered::before {
  opacity: calc(.12 + var(--section-power, .5) * .55);
  transform: scale(1.08);
}

.section-heading {
  max-width: 800px;
  margin-bottom: 48px;
}

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

.kicker {
  color: #a983ff;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .17em;
  text-transform: uppercase;
}

h2 {
  margin: 12px 0 18px;
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.02;
  letter-spacing: -.046em;
}

.section-copy {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}

.product-card {
  min-height: 360px;
  position: relative;
  overflow: hidden;
  padding: 29px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(20,24,59,.9), rgba(9,12,31,.88));
  box-shadow: 0 18px 70px rgba(0,0,0,.24);
  transition:
    transform .24s ease,
    border-color .24s ease,
    box-shadow .5s ease,
    filter .5s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(139,92,246,.58);
}

.product-card.powered-card {
  border-color: rgba(140,104,255,.52);
  box-shadow:
    0 22px 85px rgba(0,0,0,.32),
    0 0 46px rgba(109,40,217,.17);
  filter: brightness(1.06);
}

.card-energy-line {
  position: absolute;
  left: -45%;
  top: 0;
  width: 45%;
  height: 1px;
  opacity: 0;
  background: linear-gradient(90deg, transparent, var(--cyan), #a678ff, transparent);
  box-shadow: 0 0 13px rgba(77,231,255,.65);
}

.powered-card .card-energy-line {
  opacity: 1;
  animation: cardPowerSweep 1.2s ease-out both;
}

@keyframes cardPowerSweep {
  from { left: -45%; }
  to { left: 110%; }
}

.product-card.large { grid-column: span 7; }
.product-card.medium { grid-column: span 5; }
.product-card.small { grid-column: span 4; min-height: 320px; }

.product-card::after {
  content: "";
  position: absolute;
  width: 250px;
  height: 250px;
  right: -90px;
  bottom: -100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,.26), transparent 70%);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(139,92,246,.2), rgba(79,140,255,.1));
  font-size: 23px;
}

.product-card h3 {
  margin: 92px 0 12px;
  font-size: 28px;
  letter-spacing: -.03em;
}

.product-card.small h3 { margin-top: 62px; }

.product-card p {
  max-width: 540px;
  color: var(--muted);
  line-height: 1.65;
}

.card-link {
  position: absolute;
  bottom: 28px;
  z-index: 2;
  color: #cdbdff;
  text-decoration: none;
  font-weight: 850;
}

.platform-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 20%, rgba(79,70,229,.16), transparent 35rem),
    linear-gradient(180deg, rgba(255,255,255,.015), transparent);
}

.platform-shell {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 62px;
  align-items: center;
}

.platform-map {
  min-height: 660px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: radial-gradient(circle at center, rgba(109,40,217,.22), rgba(10,13,34,.72) 58%);
  box-shadow: var(--shadow);
}

.platform-map-glow {
  position: absolute;
  inset: 25%;
  border-radius: 50%;
  opacity: calc(.18 + var(--power-level) * .45);
  background: rgba(91,82,255,.35);
  filter: blur(55px);
  animation: platformCoreBreathe 5s ease-in-out infinite;
}

@keyframes platformCoreBreathe {
  0%, 100% { transform: scale(.76); opacity: .18; }
  50% { transform: scale(1.12); opacity: .62; }
}

.core-node {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 170px;
  height: 170px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border: 1px solid rgba(167,139,250,.55);
  border-radius: 50%;
  background: radial-gradient(circle, #3b1a7a, #11152f 65%);
  box-shadow: 0 0 80px rgba(139,92,246,.38);
  text-align: center;
  font-weight: 900;
}

.map-node {
  position: absolute;
  width: 150px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: #dfe1f1;
  background: rgba(15,18,43,.88);
  text-align: center;
  font-size: 13px;
  font-weight: 750;
  transition: border-color .4s ease, box-shadow .4s ease, transform .4s ease;
}

.powered .map-node {
  border-color: rgba(132,108,255,.48);
  box-shadow: 0 0 28px rgba(109,40,217,.16);
}

.map-node::after {
  content:"";
  position:absolute;
  width:85px;
  height:1px;
  background:linear-gradient(90deg,var(--violet),transparent);
}

.n1 { left: 7%; top: 10%; } .n1::after { right:-72px; bottom:-31px; transform:rotate(38deg); }
.n2 { right: 7%; top: 12%; } .n2::after { left:-70px; bottom:-32px; transform:rotate(142deg); }
.n3 { left: 5%; bottom: 15%; } .n3::after { right:-74px; top:-27px; transform:rotate(-36deg); }
.n4 { right: 5%; bottom: 14%; } .n4::after { left:-70px; top:-29px; transform:rotate(214deg); }
.n5 { left: 50%; top: 5%; transform:translateX(-50%); } .n5::after { left:50%; bottom:-58px; transform:rotate(90deg); }
.n6 { left: 50%; bottom: 5%; transform:translateX(-50%); } .n6::after { left:50%; top:-58px; transform:rotate(90deg); }

.capability-list {
  display: grid;
  gap: 13px;
  margin-top: 35px;
}

.capability {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 17px;
  border: 1px solid rgba(255,255,255,.06);
  border-radius: 15px;
  background: rgba(255,255,255,.025);
}

.capability-number {
  color: #a78bfa;
  font-weight: 950;
}

.capability h3 {
  margin: 0 0 5px;
  font-size: 17px;
}

.capability p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.industry-card {
  min-height: 260px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(18,22,52,.72), rgba(8,11,27,.82));
  transition: border-color .4s ease, box-shadow .4s ease, transform .3s ease;
}

.powered .industry-card {
  border-color: rgba(145,111,255,.4);
  box-shadow: 0 0 38px rgba(109,40,217,.1);
}

.industry-card:hover { transform: translateY(-5px); }

.industry-card strong {
  display: block;
  margin-top: 65px;
  font-size: 21px;
}

.industry-card p {
  color: var(--muted);
  line-height: 1.6;
}

.security-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 56px;
  border: 1px solid var(--line-strong);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(43,24,88,.65), rgba(12,17,43,.78)),
    radial-gradient(circle at right, rgba(77,231,255,.12), transparent 45%);
  box-shadow: var(--shadow);
}

.security-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.security-item {
  padding: 19px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 15px;
  background: rgba(5,7,19,.28);
  transition: border-color .4s ease, box-shadow .4s ease;
}

.powered .security-item {
  border-color: rgba(101,201,255,.26);
  box-shadow: 0 0 28px rgba(68,136,255,.08);
}

.security-item b {
  display: block;
  margin-bottom: 6px;
}

.security-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 75px 40px;
  text-align: center;
  border: 1px solid var(--line-strong);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 125%, rgba(79,140,255,.35), transparent 45%),
    linear-gradient(135deg, rgba(85,36,178,.72), rgba(13,17,44,.9) 58%);
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  max-width: 900px;
  margin-inline: auto;
}

.cta-panel p {
  max-width: 680px;
  margin: auto;
  color: #c5c9dd;
  font-size: 18px;
  line-height: 1.7;
}

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

footer {
  padding: 65px 0 36px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(4, 1fr);
  gap: 35px;
}

.footer-brand p {
  max-width: 340px;
  color: var(--muted);
  line-height: 1.65;
}

.footer-col h4 {
  margin: 0 0 15px;
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.footer-col a {
  display: block;
  margin: 11px 0;
  color: #949cb7;
  text-decoration: none;
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.07);
  color: #727b98;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .8s cubic-bezier(.2,.8,.2,1);
}

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

.mobile-menu { display: none; }

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

@media (max-width: 1050px) {
  .nav-links { display: none; }
  .mobile-menu { display: inline-flex; }
  .hero-grid,
  .platform-shell,
  .security-panel {
    grid-template-columns: 1fr;
  }
  .hero-copy { text-align: center; }
  .hero-lead { margin-inline: auto; }
  .hero-actions,
  .hero-note { justify-content: center; }
  .hero-visual { min-height: 620px; }
  .metrics { grid-template-columns: repeat(2, 1fr); }
  .metric { border-bottom: 1px solid var(--line); }
  .product-card.large,
  .product-card.medium { grid-column: span 12; }
  .product-card.small { grid-column: span 6; }
  .industry-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
}

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

  .announcement {
    font-size: 11px;
    text-align: center;
  }

  .brand-name { display: none; }
  .nav-actions .ghost { display: none; }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 66px;
  }

  h1 { font-size: 54px; }

  .hero-lead {
    font-size: 17px;
  }

  .hero-visual {
    min-height: 500px;
  }

  .core-stage {
    width: 470px;
    max-width: 118vw;
  }

  .floating-chip {
    min-width: 140px;
    padding: 10px;
    transform: scale(.82);
  }

  .chip-a { left: -12%; }
  .chip-b { right: -12%; }

  .metrics,
  .security-grid,
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .metric { border-right: 0; }

  .product-card.small {
    grid-column: span 12;
  }

  .platform-map {
    min-height: 580px;
  }

  .map-node {
    width: 125px;
    font-size: 11px;
  }

  .section {
    padding: 82px 0;
  }

  .security-panel {
    padding: 30px;
  }

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

  .footer-brand {
    grid-column: 1/-1;
  }

  .footer-bottom {
    display: block;
    line-height: 1.8;
  }
}
