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

:root {
  --bg: #f8fafc;
  --bg-panel: #ffffff;
  --bg-card: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --border-bright: rgba(99, 102, 241, 0.25);
  --cyan: #6366f1;
  --cyan-dim: rgba(99, 102, 241, 0.7);
  --blue: #3b82f6;
  --purple: #8b5cf6;
  --green: #059669;
  --amber: #d97706;
  --red: #dc2626;
  --text: #0f172a;
  --text-muted: #475569;
  --text-dim: #94a3b8;
  --glow-cyan: 0 0 30px rgba(99, 102, 241, 0.2);
  --glow-purple: 0 0 30px rgba(139, 92, 246, 0.15);
  --font-display: 'Orbitron', monospace;
  --font-body: 'Rajdhani', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --gradient: linear-gradient(135deg, #6366f1, #8b5cf6, #06b6d4);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

/* ── Canvas & overlays ── */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.scanlines {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

.vignette {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.7) 100%);
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ── Command Bar ── */
.command-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 4, 8, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

.command-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
  height: 52px;
  max-width: 1280px;
  margin: 0 auto;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}

.command-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-pulse {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 2s ease infinite;
}

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

.command-label {
  color: var(--cyan);
  font-weight: 600;
}

.command-divider { color: var(--text-dim); }

.command-sub { color: var(--text-muted); }

.command-center {
  display: flex;
  align-items: center;
  gap: 12px;
}

.live-tag {
  padding: 2px 8px;
  background: rgba(255, 51, 102, 0.15);
  border: 1px solid rgba(255, 51, 102, 0.4);
  color: var(--red);
  font-size: 0.65rem;
  font-weight: 600;
  animation: blink 2s step-end infinite;
}

@keyframes blink {
  50% { opacity: 0.4; }
}

.clock {
  color: var(--text-muted);
  font-variant-numeric: tabular-nums;
}

.command-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cmd-link {
  color: var(--cyan-dim);
  text-decoration: none;
  transition: color 0.2s;
}

.cmd-link:hover { color: var(--cyan); }

.signal-bars {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  height: 14px;
}

.signal-bars span {
  width: 3px;
  background: var(--cyan);
  border-radius: 1px;
}

.signal-bars span:nth-child(1) { height: 4px; }
.signal-bars span:nth-child(2) { height: 7px; }
.signal-bars span:nth-child(3) { height: 10px; }
.signal-bars span:nth-child(4) { height: 14px; opacity: 0.4; }

/* ── Hero ── */
.hero {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 80px 24px 60px;
  max-width: 1280px;
  margin: 0 auto;
  gap: 40px;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,212,255,0.03) 1px, transparent 1px),
    linear-gradient(rgba(0,212,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 70% 60% at 30% 50%, black, transparent);
  pointer-events: none;
}

.hero-content { position: relative; }

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--cyan);
  letter-spacing: 0.2em;
  margin-bottom: 24px;
}

.hex-badge { color: var(--purple); }

.hero-title {
  margin-bottom: 24px;
}

.glitch {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 7rem);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--text);
  text-shadow: var(--glow-cyan);
  position: relative;
  line-height: 1;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch::before {
  color: var(--cyan);
  animation: glitch-1 3s infinite linear alternate-reverse;
  clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch::after {
  color: var(--purple);
  animation: glitch-2 2s infinite linear alternate-reverse;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
  0%, 90%, 100% { transform: translate(0); }
  92% { transform: translate(-3px, 1px); }
  94% { transform: translate(3px, -1px); }
  96% { transform: translate(-2px, 2px); }
}

@keyframes glitch-2 {
  0%, 90%, 100% { transform: translate(0); }
  91% { transform: translate(2px, -2px); }
  93% { transform: translate(-3px, 1px); }
  95% { transform: translate(3px, 2px); }
}

.hero-title-sub {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.4em;
  margin-top: 8px;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-metrics {
  display: flex;
  gap: 32px;
}

.metric {
  display: flex;
  flex-direction: column;
  padding: 16px 24px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.metric::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--purple));
}

.metric-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--cyan);
  line-height: 1;
}

.metric-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-dim);
  letter-spacing: 0.15em;
  margin-top: 4px;
}

/* ── Orbit System ── */
.hero-orbit {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.orbit-system {
  position: relative;
  width: 400px;
  height: 400px;
}

.orbit {
  position: absolute;
  top: 50%;
  left: 50%;
  border: 1px solid rgba(0, 212, 255, 0.15);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.orbit--outer {
  width: 380px;
  height: 380px;
  animation: spin 25s linear infinite;
}

.orbit--mid {
  width: 260px;
  height: 260px;
  border-color: rgba(168, 85, 247, 0.2);
  animation: spin 18s linear infinite reverse;
}

.orbit--inner {
  width: 140px;
  height: 140px;
  border-color: rgba(0, 255, 136, 0.25);
  animation: spin 12s linear infinite;
}

@keyframes spin {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.satellite {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.s1 { background: var(--cyan); box-shadow: 0 0 12px var(--cyan); }
.s2 { background: var(--purple); box-shadow: 0 0 12px var(--purple); }
.s3 { background: var(--green); box-shadow: 0 0 12px var(--green); }

.orbit-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle, rgba(0,212,255,0.2) 0%, transparent 70%);
  border: 2px solid var(--cyan);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--cyan);
  box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0,212,255,0.1);
  animation: core-pulse 3s ease infinite;
  z-index: 2;
}

@keyframes core-pulse {
  0%, 100% { box-shadow: var(--glow-cyan), inset 0 0 30px rgba(0,212,255,0.1); }
  50% { box-shadow: 0 0 60px rgba(0,212,255,0.6), inset 0 0 40px rgba(0,212,255,0.2); }
}

/* ── Sections ── */
.section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}

.section--registry {
  background: linear-gradient(180deg, transparent, rgba(0,212,255,0.02) 50%, transparent);
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-id {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--purple);
  letter-spacing: 0.2em;
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--text);
  margin-bottom: 12px;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
}

/* ── Network Hub ── */
.network-hub {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hub-center {
  position: relative;
  z-index: 3;
}

.hub-node {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 20px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.hub-node--main {
  padding: 32px 40px;
  border-color: var(--border-bright);
  position: relative;
  overflow: hidden;
}

.hub-glow {
  position: absolute;
  inset: -50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hub-icon {
  font-size: 2rem;
  color: var(--cyan);
  display: block;
  margin-bottom: 8px;
}

.hub-node h3, .hub-node h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.hub-node--main h3 { font-size: 1.2rem; }

.hub-role, .hub-tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  display: block;
  margin-top: 4px;
}

.hub-domain {
  display: inline-block;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  text-decoration: none;
}

.hub-domain:hover { text-decoration: underline; }

.hub-satellites {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hub-node--sat {
  position: absolute;
  pointer-events: auto;
  width: 140px;
  padding: 16px;
  animation: float 4s ease-in-out infinite;
  animation-delay: calc(var(--i) * 0.5s);
}

.hub-node--sat:nth-child(1) { top: 5%; left: 50%; transform: translateX(-50%); }
.hub-node--sat:nth-child(2) { top: 30%; right: 5%; }
.hub-node--sat:nth-child(3) { bottom: 15%; right: 10%; }
.hub-node--sat:nth-child(4) { bottom: 15%; left: 10%; }
.hub-node--sat:nth-child(5) { top: 30%; left: 5%; }

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

.hub-node--sat:nth-child(1) { animation-name: float-center; }
@keyframes float-center {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

.hub-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 8px;
}

.hub-dot--blue { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }
.hub-dot--green { background: var(--green); box-shadow: 0 0 8px var(--green); }
.hub-dot--amber { background: var(--amber); box-shadow: 0 0 8px var(--amber); }
.hub-dot--purple { background: var(--purple); box-shadow: 0 0 8px var(--purple); }
.hub-dot--red { background: var(--red); box-shadow: 0 0 8px var(--red); }

.hub-node--sat:hover {
  border-color: var(--border-bright);
  transform: scale(1.05);
  box-shadow: var(--glow-cyan);
}

/* ── Registry Grid ── */
.registry-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.reg-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reg-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--cyan);
  opacity: 0;
  transition: opacity 0.3s;
}

.reg-card:hover {
  border-color: var(--border-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

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

.reg-card--primary {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, rgba(0,212,255,0.06) 0%, rgba(168,85,247,0.04) 100%);
  border-color: rgba(0, 212, 255, 0.25);
}

.reg-card--primary::before { opacity: 1; }

.reg-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.reg-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  color: white;
  flex-shrink: 0;
}

.reg-icon--on { background: linear-gradient(135deg, var(--cyan), var(--blue)); }
.reg-icon--pay { background: linear-gradient(135deg, #3b82f6, #1d4ed8); }
.reg-icon--sent { background: linear-gradient(135deg, #10b981, #059669); }
.reg-icon--gyo { background: linear-gradient(135deg, #f59e0b, #d97706); }
.reg-icon--olo { background: linear-gradient(135deg, #a855f7, #7c3aed); }
.reg-icon--kay { background: linear-gradient(135deg, #ef4444, #dc2626); }

.reg-header h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  flex: 1;
}

.reg-type {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  display: block;
}

.reg-status {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.1em;
}

.status-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--green);
  animation: pulse 2s ease infinite;
}

.reg-domains {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.domain-chip {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  background: rgba(0, 212, 255, 0.04);
  border: 1px solid var(--border);
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text);
  text-decoration: none;
  transition: all 0.2s;
}

.domain-chip:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
  color: var(--cyan);
  box-shadow: 0 0 16px rgba(0, 212, 255, 0.15);
}

.domain-chip--main {
  border-color: rgba(0, 212, 255, 0.3);
  background: rgba(0, 212, 255, 0.08);
}

.chip-protocol {
  color: var(--text-dim);
  margin-right: 2px;
}

/* ── Company Panels ── */
.companies-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.co-panel {
  display: grid;
  grid-template-columns: 4px 1fr;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: all 0.3s;
}

.co-panel:hover {
  border-color: var(--border-bright);
  transform: translateX(4px);
}

.co-panel-bar { width: 4px; }
.co-panel-bar--pay { background: var(--blue); }
.co-panel-bar--sent { background: var(--green); }
.co-panel-bar--gyo { background: var(--amber); }
.co-panel-bar--olo { background: var(--purple); }
.co-panel-bar--kay { background: var(--red); }

.co-panel-body { padding: 24px 28px; }

.co-panel-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.co-panel-top h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.co-id {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
}

.co-panel-body p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1rem;
}

.co-domains-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.co-domains-row a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--cyan);
  text-decoration: none;
  padding: 6px 12px;
  border: 1px solid var(--border);
  border-radius: 4px;
  transition: all 0.2s;
}

.co-domains-row a:hover {
  background: rgba(0, 212, 255, 0.1);
  border-color: var(--cyan);
}

/* ── Terminal ── */
.section--terminal { padding-bottom: 80px; }

.terminal {
  background: #010306;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.5);
}

.terminal-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.02);
  border-bottom: 1px solid var(--border);
}

.term-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.term-dot--red { background: #ff5f57; }
.term-dot--yellow { background: #febc2e; }
.term-dot--green { background: #28c840; }

.term-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-left: 8px;
}

.terminal-body {
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 0.82rem;
  line-height: 1.8;
  min-height: 280px;
}

.term-prompt { color: var(--green); }
.term-cmd { color: var(--text); }
.term-out { color: var(--text-muted); }
.term-ok { color: var(--green); }
.term-domain { color: var(--cyan); }
.term-blink {
  animation: blink 1s step-end infinite;
  color: var(--cyan);
}

/* ── Footer ── */
.footer {
  position: relative;
  z-index: 2;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  text-align: center;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 20px;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
}

.footer-ceo {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-dim);
  letter-spacing: 0.2em;
}

.footer-domains {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 20px;
}

.footer-domains a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-domains a:hover { color: var(--cyan); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ── Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ── Responsive ── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 72px;
    min-height: auto;
  }

  .hero-desc { margin: 0 auto 40px; }
  .hero-metrics { justify-content: center; }
  .hero-orbit { order: -1; }
  .orbit-system { width: 280px; height: 280px; }
  .orbit--outer { width: 260px; height: 260px; }
  .orbit--mid { width: 180px; height: 180px; }
  .orbit--inner { width: 100px; height: 100px; }

  .network-hub { min-height: auto; padding: 40px 0; }
  .hub-satellites {
    position: static;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-top: 24px;
    pointer-events: auto;
  }
  .hub-node--sat {
    position: static !important;
    width: auto;
    transform: none !important;
    animation: none;
  }

  .registry-grid { grid-template-columns: 1fr; }
  .reg-card--primary { grid-column: auto; }

  .command-bar-inner { font-size: 0.6rem; padding: 0 16px; }
  .command-sub { display: none; }
}

@media (max-width: 480px) {
  .hero-metrics { flex-direction: column; gap: 12px; align-items: center; }
  .metric { width: 100%; max-width: 200px; text-align: center; }
  .hub-satellites { grid-template-columns: 1fr; }
  .command-center { display: none; }
}

/* ── Alaanu / Yahweh CEO Section ── */
.section--cosmic {
  background: linear-gradient(180deg, var(--bg) 0%, #eef2ff 50%, var(--bg) 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.cosmic-ceo-card {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: center;
  padding: 48px; background: white; border: 1px solid var(--border);
  border-radius: 20px; box-shadow: 0 20px 60px rgba(15,23,42,0.08);
}

.cosmic-ceo-visual {
  position: relative; height: 260px; display: flex; align-items: center; justify-content: center;
}

.cosmic-ring {
  position: absolute; border: 1px solid rgba(99,102,241,0.15); border-radius: 50%;
  animation: spin 25s linear infinite;
}
.cosmic-ring--1 { width: 220px; height: 220px; }
.cosmic-ring--2 { width: 140px; height: 140px; animation-direction: reverse; animation-duration: 18s; }

.cosmic-center {
  width: 64px; height: 64px; border-radius: 50%; background: var(--gradient);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; color: white;
  box-shadow: var(--glow-cyan); z-index: 1;
}

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

.yahweh-quote {
  padding: 18px 22px; background: rgba(99,102,241,0.06);
  border-left: 3px solid var(--cyan); border-radius: 0 10px 10px 0;
  margin: 20px 0; font-style: italic; color: var(--text-muted); line-height: 1.7;
}
.yahweh-quote cite { display: block; margin-top: 8px; font-style: normal; font-size: 0.8rem; color: var(--cyan); font-weight: 600; }

.cosmic-ceo-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.btn-ceo {
  display: inline-flex; padding: 12px 22px; border-radius: 10px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
  text-decoration: none; background: var(--gradient); color: white;
  transition: 0.25s ease; border: none;
}
.btn-ceo:hover { transform: translateY(-2px); box-shadow: var(--glow-cyan); }
.btn-ceo--outline { background: transparent; color: var(--cyan); border: 1px solid var(--border-bright); }
.btn-ceo--outline:hover { background: rgba(99,102,241,0.06); }

.hub-dot--cyan { background: #06b6d4; box-shadow: 0 0 8px rgba(6,182,212,0.5); }
.co-panel-bar--alaanu { background: var(--gradient); }
.co-panel--alaanu { border-color: rgba(99,102,241,0.2); }

.term-ok { color: var(--green); font-family: var(--font-mono); font-size: 0.85rem; }
.term-info { color: var(--purple); font-family: var(--font-mono); font-size: 0.85rem; }
.term-divine { color: var(--cyan); font-family: var(--font-mono); font-size: 0.85rem; font-weight: 600; }

.command-bar { background: rgba(248,250,252,0.9); border-bottom-color: var(--border); }
.scanlines { opacity: 0.03; }
.reg-card, .co-panel, .hub-node, .terminal { box-shadow: 0 4px 24px rgba(15,23,42,0.06); }

@media (max-width: 768px) {
  .cosmic-ceo-card { grid-template-columns: 1fr; padding: 28px; }
  .cosmic-ceo-visual { height: 200px; }
}

.meaning-bracket { font-size: 0.85em; color: var(--text-dim); font-weight: 400; }

