:root {
  --bg: #030303;
  --bg-soft: #0a0a0a;
  --panel: rgba(8, 8, 8, 0.7);
  --panel-strong: rgba(10, 10, 10, 0.96);
  --text: #f4f4f4;
  --muted: #a9a9a9;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.15);
  --primary: #ffffff;
  --accent: #b3ff4c;
  --accent-2: #72ecff;
  --glow: rgba(179, 255, 76, 0.34);
  --shadow: 0 0 0 1px rgba(255,255,255,0.08), 0 24px 80px rgba(0, 0, 0, 0.55);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(179,255,76,0.11), transparent 32%),
    radial-gradient(circle at 86% 12%, rgba(114,236,255,0.08), transparent 28%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 55%),
    linear-gradient(180deg, #060606 0%, #010101 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.grid-overlay,
.noise-overlay,
.beam {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

.grid-overlay {
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.92), transparent 88%);
}

.noise-overlay {
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 25% 25%, rgba(255,255,255,0.34) 0 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, rgba(255,255,255,0.24) 0 1px, transparent 1px);
  background-size: 24px 24px, 31px 31px;
}

.beam {
  opacity: 0.25;
  filter: blur(60px);
}
.beam-a {
  background: radial-gradient(circle at 12% 15%, rgba(179,255,76,0.55), transparent 18%);
}
.beam-b {
  background: radial-gradient(circle at 82% 18%, rgba(114,236,255,0.44), transparent 16%);
}

.pixel,
.pixel-small,
.button,
.chip,
.logo,
.logo-sub {
  font-family: 'Press Start 2P', monospace;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pixel { line-height: 1.45; }
.pixel-small { font-size: 11px; line-height: 1.7; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 40px;
  backdrop-filter: blur(16px);
  background: linear-gradient(180deg, rgba(4,4,4,0.9), rgba(4,4,4,0.38));
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.logo-lockup { display: grid; gap: 6px; }
.logo { font-size: 18px; }
.logo-sub { color: var(--muted); font-size: 9px; }

.nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
}
.nav a:hover { color: var(--text); }

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

.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  min-height: calc(100vh - 96px);
  align-items: center;
  padding-top: 42px;
}

.hero-topline,
.eyebrow {
  color: var(--accent);
  margin-bottom: 22px;
}

.hero-title {
  font-size: clamp(28px, 4vw, 74px);
  margin: 0 0 24px;
  max-width: 11ch;
}

.hero-text,
.section-side-copy,
.info-card p,
.stack-card p,
.ecosystem-card li,
.mini-card p,
.manifesto-card p,
.cta-shell p,
.section-intro-copy {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}
.hero-lead {
  color: #d7d7d7;
  font-size: 18px;
}
.hero-actions,
.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero-ticker {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 18px;
  margin-top: 32px;
  color: var(--muted);
}
.hero-ticker span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-ticker span::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--accent);
  box-shadow: 0 0 10px var(--glow);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 18px;
  border: 1px solid var(--line-strong);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary {
  background: var(--primary);
  color: #000;
}
.button.secondary {
  background: rgba(255,255,255,0.03);
  color: var(--text);
}

.pixel-frame,
.info-card,
.stack-card,
.ecosystem-card,
.mini-card,
.manifesto-card,
.metric,
.hero-stage,
.stack-visual,
.roadmap-shell,
.cta-shell {
  position: relative;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.pixel-frame::before,
.pixel-frame::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 11px;
  background: #fff;
}
.pixel-frame::before {
  top: -1px;
  left: -1px;
  box-shadow:
    calc(100% - 9px) 0 0 #fff,
    0 calc(100% - 9px) 0 #fff,
    calc(100% - 9px) calc(100% - 9px) 0 #fff;
}
.pixel-frame::after { display: none; }

.hero-stage {
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at 50% 50%, rgba(114,236,255,0.06), transparent 40%),
    #070707;
  overflow: hidden;
}
.hero-stage-top {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
}
.hero-device {
  position: relative;
  min-height: 560px;
  margin-top: 18px;
  overflow: hidden;
  background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03), transparent 56%);
}
.hero-device-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.55;
  mask-image: radial-gradient(circle at center, rgba(0,0,0,1), transparent 78%);
}
.hero-cube-device {
  padding: 18px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 14px;
}
.hero-cube-meta {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
}
.hero-cube-canvas-wrap {
  position: relative;
  z-index: 2;
  height: 640px;
  min-height: 640px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    radial-gradient(circle at 50% 50%, rgba(179,255,76,0.16), transparent 34%),
    radial-gradient(circle at 78% 24%, rgba(114,236,255,0.14), transparent 24%),
    rgba(255,255,255,0.015);
}
#claw-cube-canvas {
  width: 100%;
  height: 640px;
  display: block;
  cursor: grab;
}
#claw-cube-canvas:active {
  cursor: grabbing;
}
.hero-cube-legend {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.legend-item {
  padding: 12px;
  background: rgba(8,8,8,0.82);
  border: 1px solid rgba(255,255,255,0.08);
}
.legend-item span {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
}
.legend-item strong {
  display: block;
  font-size: 12px;
  line-height: 1.65;
}
.hero-stage-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 18px;
}
.signal-card {
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.signal-card span { color: var(--accent-2); display: block; margin-bottom: 10px; }
.signal-card b { font-size: 14px; line-height: 1.7; }

.stat-strip {
  padding-top: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.metric { padding: 20px; }
.metric span { color: var(--accent); display: block; margin-bottom: 14px; }
.metric strong { font-size: 16px; line-height: 1.75; }

.section-heading { margin-bottom: 34px; }
.section-heading.wide h2 { max-width: 16ch; }
.section-heading h2 {
  margin: 0;
  font-size: clamp(22px, 3vw, 44px);
  max-width: 18ch;
}
.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 24px;
  align-items: end;
}
.section-intro-copy { max-width: 860px; margin-top: 18px; }

.card-grid.three-up,
.ecosystem-grid,
.manifesto-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.partners-grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.team-grid-6 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.info-card,
.stack-card,
.ecosystem-card,
.manifesto-card,
.mini-card,
.partner-card,
.team-card { padding: 22px; }
.info-card h3,
.stack-card h3,
.ecosystem-card h3,
.manifesto-card h3,
.partner-card h3,
.team-card h3 { margin: 16px 0 12px; font-size: 24px; }
.ecosystem-card ul { margin: 14px 0 0; padding-left: 18px; }
.ecosystem-card li + li { margin-top: 10px; }
.chip { display: inline-flex; color: var(--accent); }
.partner-card,
.team-card {
  background: rgba(9,9,9,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.partner-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: center;
}
.partner-logo-wrap {
  min-height: 132px;
  display: grid;
  place-items: center;
  padding: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.015)),
    radial-gradient(circle at 20% 20%, rgba(179,255,76,0.10), transparent 28%),
    #0c0c0c;
}
.partner-logo-wrap img {
  max-width: 100%;
  max-height: 64px;
  object-fit: contain;
  filter: brightness(1.05) contrast(1.05);
}
.me-logo-wrap img {
  max-height: 44px;
  filter: invert(1) grayscale(1) brightness(1.15);
}
.zencep-logo-wrap img {
  width: 100%;
  max-height: 80px;
  object-fit: cover;
  border-radius: 8px;
}
.partner-meta p,
.member-tag {
  color: var(--muted);
  line-height: 1.75;
  margin: 0;
}
.team-card {
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 18%, rgba(114,236,255,0.08), transparent 22%),
    radial-gradient(circle at 80% 14%, rgba(179,255,76,0.08), transparent 20%),
    rgba(9,9,9,0.78);
}
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 16px 16px;
  opacity: 0.28;
  pointer-events: none;
}
.team-card > * {
  position: relative;
  z-index: 1;
}
.team-card-top {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--muted);
}
.avatar-shell {
  position: relative;
  width: 170px;
  height: 196px;
  margin: 0 auto 20px;
}
.robot-face {
  filter: drop-shadow(0 24px 40px rgba(0,0,0,0.45));
}
.robot-face::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 16px;
  width: 154px;
  height: 154px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    radial-gradient(circle at 25% 20%, rgba(255,255,255,0.22), transparent 28%),
    rgba(255,255,255,0.03);
  background-size: 14px 14px, 14px 14px, auto, auto;
  box-shadow: inset 0 0 30px rgba(255,255,255,0.05);
}
.robot-antenna {
  position: absolute;
  left: 50%;
  top: -10px;
  width: 4px;
  height: 24px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, var(--accent-2), #fff);
  box-shadow: 0 0 16px rgba(114,236,255,0.5);
}
.robot-antenna::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  width: 14px;
  height: 14px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 16px rgba(179,255,76,0.5);
}
.avatar-core,
.photo-avatar img {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 154px;
  height: 154px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.9);
  box-shadow: inset 0 0 0 8px rgba(255,255,255,0.05), 0 0 0 1px rgba(255,255,255,0.1);
}
.avatar-core {
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 30%, #fff, #d0ff9d 36%, #8aff00 70%, #1a1a1a 120%);
}
.avatar-yu .avatar-core {
  background: radial-gradient(circle at 30% 30%, #fff, #b9ffd8 30%, #72ecff 70%, #1a1a1a 120%);
}
.avatar-voyage .avatar-core {
  background: radial-gradient(circle at 30% 30%, #fff, #f3ff9d 28%, #b3ff4c 70%, #1a1a1a 120%);
}
.avatar-rerris .avatar-core {
  background: radial-gradient(circle at 30% 30%, #fff, #ffd4ff 28%, #ff6df2 72%, #1a1a1a 120%);
}
.avatar-alexandru .avatar-core {
  background: radial-gradient(circle at 30% 30%, #fff, #ffd8b8 28%, #ff9f43 72%, #1a1a1a 120%);
}
.avatar-jeremy .avatar-core {
  background: radial-gradient(circle at 30% 30%, #fff, #d2d9ff 28%, #8f87ff 72%, #1a1a1a 120%);
}
.avatar-portrait {
  display: grid;
  place-items: center;
}
.pixel-head {
  position: relative;
  width: 88px;
  height: 88px;
  background:
    linear-gradient(rgba(255,255,255,0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.08) 1px, transparent 1px),
    rgba(8,8,8,0.88);
  background-size: 10px 10px, 10px 10px, auto;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.88),
    0 0 0 14px rgba(255,255,255,0.1),
    inset 0 0 24px rgba(114,236,255,0.08);
}
.pixel-head::before,
.pixel-head::after {
  content: '';
  position: absolute;
  top: 18px;
  width: 14px;
  height: 14px;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(114,236,255,0.25);
}
.pixel-head::before { left: 18px; }
.pixel-head::after { right: 18px; }
.pixel-head-square { border-radius: 8px; }
.pixel-head-rounder { border-radius: 18px; }
.pixel-head-angular {
  clip-path: polygon(12% 0, 88% 0, 100% 12%, 100% 88%, 88% 100%, 12% 100%, 0 88%, 0 12%);
}
.pixel-head-adviser {
  border-radius: 14px;
  box-shadow:
    0 0 0 6px rgba(255,255,255,0.88),
    0 0 0 14px rgba(143,135,255,0.16);
}
.pixel-eye {
  position: absolute;
  top: 28px;
  width: 12px;
  height: 12px;
  background: #72ecff;
}
.pixel-eye.left { left: 22px; }
.pixel-eye.right { right: 22px; }
.pixel-mouth-line,
.pixel-mouth-grid,
.pixel-mouth-visor {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.pixel-mouth-line {
  bottom: 22px;
  width: 36px;
  height: 8px;
  background: #fff;
}
.pixel-mouth-grid {
  bottom: 18px;
  width: 40px;
  height: 16px;
  background:
    linear-gradient(90deg, #fff 0 6px, transparent 6px 10px, #fff 10px 16px, transparent 16px 20px, #fff 20px 26px, transparent 26px 30px, #fff 30px 36px),
    linear-gradient(#fff 0 5px, transparent 5px 9px, #fff 9px 14px);
}
.pixel-mouth-visor {
  bottom: 20px;
  width: 44px;
  height: 10px;
  background: #ff6df2;
  box-shadow: 0 0 12px rgba(255,109,242,0.35);
}
.photo-avatar img {
  object-fit: cover;
  object-position: center;
  background: #111;
}
.photo-mask {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 154px;
  height: 154px;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.05), rgba(0,0,0,0.36)),
    radial-gradient(circle at 30% 35%, transparent 0 24px, rgba(255,255,255,0.86) 24px 32px, transparent 32px),
    radial-gradient(circle at 70% 35%, transparent 0 24px, rgba(255,255,255,0.86) 24px 32px, transparent 32px),
    linear-gradient(180deg, transparent 58%, rgba(255,255,255,0.84) 58% 64%, transparent 64%);
  pointer-events: none;
}
.team-card h3 {
  margin-bottom: 8px;
}
.proof-card {
  padding: 22px;
  background: rgba(9,9,9,0.78);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.proof-card h3 {
  margin: 16px 0 12px;
  font-size: 24px;
}
.proof-card p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.stack-layout,
.economy-layout,
.roadmap-shell,
.cta-shell {
  display: grid;
  gap: 20px;
}
.stack-layout {
  grid-template-columns: 430px 1fr;
  align-items: stretch;
}
.stack-column { display: grid; gap: 14px; }
.stack-card.active { border-color: rgba(179,255,76,0.44); }
.stack-visual,
.economy-visual,
.roadmap-visual {
  padding: 18px;
  background: var(--panel-strong);
}
.diagram-shell {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255,255,255,0.08);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015)),
    radial-gradient(circle at 15% 15%, rgba(179,255,76,0.12), transparent 25%),
    radial-gradient(circle at 85% 20%, rgba(114,236,255,0.10), transparent 22%),
    #0d0d0d;
}
.diagram-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
  opacity: 0.55;
}
.diagram-shell img {
  position: relative;
  z-index: 1;
  width: 100%;
  background: transparent;
  border-radius: 10px;
  box-shadow: 0 16px 60px rgba(0,0,0,0.35);
  mix-blend-mode: screen;
  opacity: 0.96;
}
.custom-architecture-shell {
  min-height: 540px;
  padding: 24px;
}
.arch-node {
  position: absolute;
  padding: 14px;
  background: rgba(8,8,8,0.86);
  border: 1px solid rgba(255,255,255,0.08);
  width: 220px;
  z-index: 2;
  animation: archPulse 4.8s ease-in-out infinite;
}
.arch-node span {
  display: block;
  color: var(--accent);
  margin-bottom: 8px;
}
.arch-node strong {
  display: block;
  font-size: 12px;
  line-height: 1.65;
}
.arch-l1 { top: 18px; left: 50%; transform: translateX(-50%); }
.arch-l2 { top: 150px; left: 50%; transform: translateX(-50%); }
.arch-l3 { top: 282px; left: 50%; transform: translateX(-50%); }
.arch-deras { top: 150px; right: 18px; }
.arch-derin { bottom: 18px; left: 18px; }
.arch-derai { bottom: 18px; right: 18px; }
.arch-claw { bottom: 18px; left: 50%; transform: translateX(-50%); }
.arch-link {
  position: absolute;
  z-index: 1;
  background: linear-gradient(90deg, rgba(114,236,255,0.08), rgba(179,255,76,0.6), rgba(114,236,255,0.08));
  box-shadow: 0 0 16px rgba(114,236,255,0.18);
}
.link-a { top: 120px; left: 50%; width: 2px; height: 42px; transform: translateX(-50%); animation: linkFlowY 2.2s linear infinite; }
.link-b { top: 252px; left: 50%; width: 2px; height: 42px; transform: translateX(-50%); animation: linkFlowY 2.6s linear infinite; }
.link-c { top: 214px; left: calc(50% + 110px); width: 180px; height: 2px; animation: linkFlowX 2.4s linear infinite; }
.link-d { top: 386px; left: 118px; width: calc(50% - 118px); height: 2px; animation: linkFlowX 2.8s linear infinite; }
.link-e { top: 386px; left: 50%; width: calc(50% - 118px); height: 2px; animation: linkFlowX 2s linear infinite; }
.link-f { top: 430px; left: 50%; width: 2px; height: 48px; transform: translateX(-50%); animation: linkFlowY 2.1s linear infinite; }
.architecture-shell img {
  filter: invert(1) hue-rotate(180deg) saturate(0.72) contrast(1.02) brightness(0.95);
}
.token-shell img {
  filter: invert(1) hue-rotate(180deg) saturate(0.9) contrast(1.02) brightness(0.95);
}
.roadmap-diagram-shell img {
  filter: invert(1) hue-rotate(180deg) saturate(0.76) contrast(1.04) brightness(0.96);
}
.visual-caption {
  color: var(--muted);
  margin-bottom: 12px;
}

.economy-layout {
  grid-template-columns: 1fr 380px;
  align-items: start;
}
.economy-copy { display: grid; gap: 14px; }
.mini-card p { margin: 12px 0 0; }

.roadmap-shell {
  grid-template-columns: 390px 1fr;
  padding: 18px;
  align-items: center;
}
.roadmap-copy { display: grid; gap: 18px; }
.roadmap-copy article h3 { margin: 10px 0 8px; font-size: 22px; }
.roadmap-copy article p { color: var(--muted); line-height: 1.75; margin: 0; }

.cta-shell {
  grid-template-columns: 1fr 1fr;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02)),
    radial-gradient(circle at 15% 15%, rgba(179,255,76,0.16), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(114,236,255,0.09), transparent 20%),
    #090909;
}
.cta-shell h2 {
  margin: 0;
  font-size: clamp(20px, 3vw, 42px);
  max-width: 14ch;
}
.cta-list { display: grid; gap: 14px; }
.cta-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px 16px;
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
}
.cta-item span { color: var(--accent); }
.cta-item b { align-self: center; }
.cta-item small {
  grid-column: 2;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 560ms ease, transform 560ms ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  border-top: 1px solid rgba(255,255,255,0.06);
  background: linear-gradient(180deg, rgba(255,255,255,0.015), rgba(255,255,255,0.01));
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 28px;
  padding-top: 42px;
  padding-bottom: 42px;
}
.footer-brand p {
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
  margin-top: 16px;
}
.footer-signature {
  font-family: 'Caveat', cursive;
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.92);
  margin-top: 18px;
  text-shadow: 0 0 18px rgba(114,236,255,0.12);
  transform: rotate(-1.5deg);
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.footer-links div {
  display: grid;
  gap: 12px;
}
.footer-links span {
  color: var(--accent);
}
.footer-links a {
  color: var(--muted);
}
.footer-links a:hover {
  color: var(--text);
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes floaty {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}
@keyframes archPulse {
  0%, 100% { box-shadow: 0 0 0 rgba(114,236,255,0.0); }
  50% { box-shadow: 0 0 24px rgba(114,236,255,0.18); }
}
@keyframes linkFlowX {
  0% { opacity: 0.4; background-position: 0 0; }
  100% { opacity: 0.95; background-position: 180px 0; }
}
@keyframes linkFlowY {
  0% { opacity: 0.4; background-position: 0 0; }
  100% { opacity: 0.95; background-position: 0 120px; }
}

@media (max-width: 1100px) {
  .hero,
  .stack-layout,
  .economy-layout,
  .roadmap-shell,
  .cta-shell,
  .section-heading.split,
  .card-grid.three-up,
  .ecosystem-grid,
  .manifesto-grid,
  .partners-grid,
  .proof-grid,
  .stat-strip,
  .hero-stage-bottom,
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .nav {
    display: flex;
    width: 100%;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 4px;
    white-space: nowrap;
    scrollbar-width: none;
  }
  .nav::-webkit-scrollbar { display: none; }
  .hero { min-height: auto; padding-top: 26px; }
  .hero-title,
  .section-heading h2,
  .section-heading.wide h2,
  .cta-shell h2 { max-width: 100%; }
  .custom-architecture-shell {
    min-height: 760px;
  }
  .arch-l1,
  .arch-l2,
  .arch-l3,
  .arch-claw { left: 50%; transform: translateX(-50%); }
  .arch-deras { top: 410px; left: 50%; right: auto; transform: translateX(-50%); }
  .arch-derin { top: 540px; left: 50%; bottom: auto; transform: translateX(-50%); }
  .arch-derai { top: 670px; left: 50%; right: auto; bottom: auto; transform: translateX(-50%); }
  .link-c, .link-d, .link-e { display: none; }
  .link-f { top: 508px; height: 46px; }
  .team-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .partner-card { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .site-header {
    padding: 18px;
    position: static;
  }
  .section {
    width: min(1320px, calc(100% - 28px));
    padding: 68px 0;
  }
  .pixel-small { font-size: 10px; }
  .logo { font-size: 16px; }
  .logo-sub { font-size: 8px; }
  .button {
    width: 100%;
    padding: 14px 16px;
  }
  .hero-actions,
  .cta-actions {
    flex-direction: column;
  }
  .hero-topline,
  .hero-ticker {
    gap: 10px;
  }
  .hero-stage,
  .stack-visual,
  .roadmap-shell,
  .cta-shell,
  .partner-card,
  .info-card,
  .stack-card,
  .ecosystem-card,
  .manifesto-card,
  .mini-card,
  .team-card,
  .proof-card,
  .metric { padding: 14px; }
  .hero-device {
    min-height: 460px;
  }
  .hero-cube-device {
    padding: 14px;
    min-height: auto;
  }
  .hero-cube-meta,
  .hero-stage-top {
    flex-direction: column;
    align-items: flex-start;
  }
  .hero-cube-canvas-wrap {
    height: 320px;
    min-height: 320px;
  }
  #claw-cube-canvas {
    height: 320px;
  }
  .hero-cube-legend,
  .partners-grid,
  .team-grid,
  .team-grid-6,
  .proof-grid,
  .footer-links {
    grid-template-columns: 1fr;
  }
  .section-heading { margin-bottom: 24px; }
  .section-heading h2 { font-size: clamp(18px, 8vw, 28px); }
  .hero-text,
  .section-side-copy,
  .info-card p,
  .stack-card p,
  .ecosystem-card li,
  .mini-card p,
  .manifesto-card p,
  .cta-shell p,
  .section-intro-copy {
    font-size: 14px;
    line-height: 1.7;
  }
  .hero-lead { font-size: 15px; }
  .info-card h3,
  .stack-card h3,
  .ecosystem-card h3,
  .manifesto-card h3,
  .partner-card h3,
  .team-card h3,
  .roadmap-copy article h3 {
    font-size: 18px;
    line-height: 1.45;
  }
  .partner-logo-wrap {
    min-height: 96px;
    padding: 16px;
  }
  .custom-architecture-shell {
    min-height: auto;
    padding: 16px;
    display: grid;
    gap: 12px;
  }
  .arch-node {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    transform: none !important;
  }
  .arch-link { display: none; }
  .roadmap-diagram-shell,
  .token-shell,
  .architecture-shell img {
    min-height: auto;
  }
  .cta-item {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .cta-item small { grid-column: auto; }
  .footer-brand p { max-width: none; }
  .avatar-shell { width: 154px; height: 184px; }
  .avatar-core,
  .photo-avatar img { width: 138px; height: 138px; }
  .eye-left { left: 46px; }
  .eye-right { right: 46px; }
}

@media (max-width: 520px) {
  .section {
    width: min(1320px, calc(100% - 20px));
    padding: 56px 0;
  }
  .site-header { padding: 14px 10px; }
  .hero { gap: 18px; }
  .hero-title {
    font-size: clamp(18px, 8.4vw, 26px);
    line-height: 1.5;
  }
  .pixel-small {
    font-size: 9px;
    line-height: 1.6;
  }
  .hero-cube-canvas-wrap {
    height: 260px;
    min-height: 260px;
  }
  #claw-cube-canvas { height: 260px; }
  .legend-item strong,
  .metric strong,
  .signal-card b,
  .arch-node strong {
    font-size: 11px;
    line-height: 1.55;
  }
  .hero-ticker span::before {
    width: 5px;
    height: 5px;
  }
}
