:root {
  --bg: #08121b;
  --bg-2: #0b1721;
  --panel: rgba(10, 21, 31, 0.72);
  --panel-border: rgba(255, 255, 255, 0.08);
  --text: #f4f8fb;
  --muted: #a9b7c5;
  --blue: #004f6f;
  --copper: #8f6d4f;
  --gradient-a: #4a89ff;
  --gradient-b: #b84cff;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
  --radius: 30px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(74, 137, 255, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(184, 76, 255, 0.14), transparent 24%),
    linear-gradient(180deg, #040b12 0%, var(--bg) 55%, #050d14 100%);
}

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

.site-shell {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.gradient-orb {
  position: fixed;
  width: 34rem;
  height: 34rem;
  filter: blur(110px);
  border-radius: 50%;
  opacity: 0.18;
  pointer-events: none;
}
.orb-1 {
  top: -8rem;
  right: -12rem;
  background: linear-gradient(135deg, var(--gradient-a), var(--gradient-b));
}
.orb-2 {
  bottom: -12rem;
  left: -12rem;
  background: linear-gradient(135deg, var(--copper), var(--blue));
}

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

.brand img {
  height: 42px;
  width: auto;
  display: block;
}

.nav {
  display: flex;
  gap: 26px;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover,
.inline-link:hover { color: #ffffff; }

main {
  width: min(1280px, 92vw);
  margin: 0 auto;
  padding: 32px 0 80px;
}

.panel {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--panel-border);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}

.hero {
  min-height: calc(100vh - 120px);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 40px;
  padding: 70px 64px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #d4b79b;
  font-size: 0.8rem;
  font-weight: 700;
  margin-bottom: 16px;
}

h1, h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 {
  font-size: clamp(3.8rem, 8vw, 7.3rem);
}

h2 {
  font-size: clamp(2.4rem, 5vw, 4.4rem);
}

.subhead {
  color: #d8e6f4;
  font-size: 1.15rem;
  font-weight: 600;
  margin: 14px 0 20px;
}

.lead,
.section-copy,
.feature-copy p,
.philosophy-copy p,
.product-card p,
.capability-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.08rem;
}

.hero-actions,
.access-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #08121b;
  background: linear-gradient(135deg, #ffffff, #d8e6f4 35%, #d4b79b 90%);
  box-shadow: 0 16px 34px rgba(212, 183, 155, 0.22);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.02);
}

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

.hero-network {
  position: relative;
  width: min(520px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}

.rings {
  width: 100%;
  height: auto;
  opacity: 0.9;
  animation: drift 12s ease-in-out infinite;
}

.pulse {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.92), rgba(184,76,255,0.35) 45%, transparent 70%);
  filter: blur(2px);
  animation: pulse 3.2s ease-in-out infinite;
}

.pulse-a { width: 18px; height: 18px; top: 18%; left: 37%; }
.pulse-b { width: 14px; height: 14px; right: 27%; top: 34%; animation-delay: 0.8s; }
.pulse-c { width: 16px; height: 16px; left: 46%; bottom: 24%; animation-delay: 1.4s; }

.feature,
.philosophy {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  padding: 56px;
}

.feature-copy,
.philosophy-copy {
  max-width: 720px;
}

.standout-card,
.product-card,
.capability-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.015));
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 26px;
  padding: 30px;
}

.standout-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}

.standout-glow {
  position: absolute;
  inset: auto -20% -25% auto;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,137,255,0.32), rgba(184,76,255,0.16) 44%, transparent 70%);
  filter: blur(24px);
}

.standout-card h3,
.product-card h3,
.capability-card h3 {
  margin-top: 0;
  font-size: 1.4rem;
}

.standout-card ul {
  margin: 10px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.9;
}

.inline-link {
  display: inline-block;
  margin-top: 12px;
  color: #dde8f7;
  font-weight: 700;
}

.stack-section {
  padding: 56px;
}

.section-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.product-grid,
.capability-grid {
  display: grid;
  gap: 18px;
}

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

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

.product-label {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.product-card.active .product-label {
  color: #08121b;
  background: linear-gradient(135deg, #d4b79b, #f4f8fb);
}

.product-card.muted .product-label,
.future {
  color: #d9c3ae;
}

.ecosystem {
  padding: 56px;
}

.ecosystem-layout {
  position: relative;
  min-height: 560px;
  margin-top: 10px;
  border-radius: 26px;
  border: 1px solid rgba(255,255,255,0.06);
  background:
    radial-gradient(circle at center, rgba(74, 137, 255, 0.18), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0.01));
  overflow: hidden;
}

.ecosystem-layout::before,
.ecosystem-layout::after {
  content: '';
  position: absolute;
  inset: 50% auto auto 50%;
  width: 2px;
  height: 2px;
  box-shadow:
    -250px -100px 0 0 rgba(255,255,255,0.18),
    220px -120px 0 0 rgba(255,255,255,0.18),
    -240px 120px 0 0 rgba(255,255,255,0.18),
    220px 120px 0 0 rgba(255,255,255,0.18),
    0 -220px 0 0 rgba(255,255,255,0.18),
    0 220px 0 0 rgba(255,255,255,0.18),
    300px 0 0 0 rgba(255,255,255,0.18);
}

.ecosystem-core,
.ecosystem-node {
  position: absolute;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 16px 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(9, 19, 29, 0.85);
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.ecosystem-core {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 190px;
  height: 190px;
  font-size: 1.5rem;
  font-weight: 800;
  background: radial-gradient(circle at top, rgba(184,76,255,0.18), rgba(9, 19, 29, 0.95));
}

.ecosystem-node { width: 180px; min-height: 78px; }
.node-1 { left: 8%; top: 18%; }
.node-2 { right: 8%; top: 15%; }
.node-3 { left: 10%; bottom: 18%; }
.node-4 { right: 9%; bottom: 18%; }
.node-5 { left: 50%; top: 6%; transform: translateX(-50%); }
.node-6 { left: 50%; bottom: 6%; transform: translateX(-50%); }
.node-7 { right: 3%; top: 50%; transform: translateY(-50%); }

.philosophy-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.philosophy-brand img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.28));
}

.quote-line {
  color: #eaf1f8;
  font-weight: 600;
}

.access-section {
  padding: 56px;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.55; }
  50% { transform: scale(1.55); opacity: 1; }
}

@keyframes drift {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-14px) scale(1.02); }
}

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

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

@media (max-width: 1080px) {
  .hero,
  .feature,
  .philosophy,
  .product-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: auto; }
  .ecosystem-layout { min-height: 880px; }
  .node-1 { left: 6%; top: 16%; }
  .node-2 { right: 6%; top: 16%; }
  .node-3 { left: 6%; top: 34%; bottom: auto; }
  .node-4 { right: 6%; top: 34%; bottom: auto; }
  .node-5 { top: 6%; }
  .node-6 { bottom: 6%; }
  .node-7 { right: 50%; top: auto; bottom: 18%; transform: translateX(50%); }
}

@media (max-width: 760px) {
  .topbar {
    flex-direction: column;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 18px;
  }

  main { width: min(94vw, 1280px); }
  .hero,
  .feature,
  .stack-section,
  .philosophy,
  .ecosystem,
  .access-section { padding: 34px 22px; }

  h1 { font-size: clamp(3rem, 13vw, 4.6rem); }
  h2 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .ecosystem-layout { min-height: 1040px; }
  .ecosystem-core { width: 160px; height: 160px; }
  .ecosystem-node { width: 160px; }
  .node-1 { left: 50%; top: 18%; transform: translateX(-50%); }
  .node-2 { left: 50%; top: 31%; transform: translateX(-50%); right: auto; }
  .node-3 { left: 50%; top: 44%; transform: translateX(-50%); }
  .node-4 { left: 50%; top: 57%; transform: translateX(-50%); right: auto; }
  .node-5 { left: 50%; top: 6%; transform: translateX(-50%); }
  .node-6 { left: 50%; bottom: 16%; transform: translateX(-50%); }
  .node-7 { left: 50%; bottom: 5%; transform: translateX(-50%); right: auto; }
}
