/* ========================================
   Earth LinC — Official Website Styles
   ======================================== */

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

:root {
  --bg: #0a0f0d;
  --bg-card: rgba(10, 20, 18, 0.8);
  --accent: #05FCC4;
  --accent2: #03D4A5;
  --text: #f0f5f3;
  --text-dim: #8a9e96;
  --text-muted: #4d6960;
  --border: rgba(5, 252, 196, 0.12);
  --glow: rgba(5, 252, 196, 0.25);
  --radius: 0px;
  --transition: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: 'Inter', -apple-system, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.3s;
}
a:hover { opacity: 0.8; }

/* --- Globe Canvas --- */
#globe-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse at 50% 45%, rgba(10, 15, 13, 0.15) 0%, rgba(10, 15, 13, 0.45) 50%, rgba(10, 15, 13, 0.8) 100%);
}

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: linear-gradient(180deg, rgba(10,15,13,0.95) 0%, rgba(10,15,13,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-logo {
  cursor: pointer;
  flex-shrink: 0;
}

.logo-img {
  height: 38px;
  width: auto;
  transition: opacity 0.3s;
}
.logo-img:hover { opacity: 0.85; }

.nav-links {
  display: flex;
  gap: 28px;
}

.nav-link {
  font-family: 'Press Start 2P', monospace;
  color: var(--text-dim);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.02em;
  transition: color 0.3s;
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--accent);
  transition: width 0.3s ease;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text);
  opacity: 1;
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 100%;
}

/* Drop Now Button (persistent in nav) */
.nav-drop-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  color: #0a0f0d !important;
  background: var(--accent);
  padding: 10px 16px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 16px rgba(5, 252, 196, 0.4);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-drop-btn:hover {
  box-shadow: 0 0 32px rgba(5, 252, 196, 0.7);
  transform: translateY(-1px);
  opacity: 1 !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 110;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: all 0.3s;
  border-radius: 1px;
}
.nav-hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 105;
  background: rgba(10, 15, 10, 0.97);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.mobile-menu.open {
  display: flex;
}
.mobile-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dim);
  transition: color 0.3s;
}
.mobile-link:hover,
.mobile-link.active {
  color: var(--accent);
  opacity: 1;
}
.mobile-drop-btn {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: #0a0f0d !important;
  background: var(--accent);
  padding: 14px 28px;
  margin-top: 12px;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
}

/* --- Pages --- */
.page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  padding: 80px 40px 40px;
  overflow-y: auto;
}
.page.active {
  opacity: 1;
  visibility: visible;
}

.page-inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}

/* --- HOME --- */
.home-content {
  text-align: left;
  max-width: 900px;
  z-index: 2;
  padding: 0 40px;
}

.terminal-lines {
  margin-bottom: 32px;
}

.terminal-line {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(8px, 1vw, 11px);
  color: var(--text-dim);
  line-height: 2.2;
  opacity: 0;
  white-space: nowrap;
  text-shadow: 0 0 8px rgba(0,0,0,0.8), 0 0 20px rgba(0,0,0,0.6);
}
.terminal-line.visible {
  opacity: 1;
}

.terminal-prompt {
  color: var(--accent);
  margin-right: 4px;
}

.terminal-cursor {
  color: var(--accent);
  animation: termBlink 0.6s step-end infinite;
  display: none;
}
.terminal-line.typing .terminal-cursor {
  display: inline;
}
@keyframes termBlink {
  50% { opacity: 0; }
}

.terminal-line .status-green {
  color: var(--accent2);
}
.terminal-line .status-highlight {
  color: var(--accent);
}

/* Terminal play button (4th line) */
.terminal-line--video {
  opacity: 0;
  transition: opacity 0.4s ease;
}
.terminal-line--video.visible { opacity: 1; }
.terminal-play-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(8px, 1vw, 11px);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0;
  text-shadow: 0 0 8px rgba(5,252,196,0.5);
  transition: text-shadow 0.2s;
}
.terminal-play-btn:hover {
  text-shadow: 0 0 18px rgba(5,252,196,0.9);
}
.terminal-play-icon { font-size: 0.9em; }
.terminal-play-dur {
  opacity: 0.45;
  font-size: 0.8em;
  color: var(--text-dim);
}

/* Pixel finger hint on play button */
@keyframes pixel-point {
  0%, 100% { transform: translateX(0);    opacity: 1;    }
  50%       { transform: translateX(8px); opacity: 0.5; }
}
.pixel-finger {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 22px;
  color: var(--accent);
  margin-right: 6px;
  animation: pixel-point 0.85s ease-in-out infinite;
  text-shadow: 0 0 10px rgba(5,252,196,0.8);
  pointer-events: none;
  line-height: 1;
  vertical-align: middle;
}

/* Terminal video player */
.terminal-video-player {
  display: none;
  flex-direction: column;
  width: min(640px, 90vw);
  margin-bottom: 28px;
  border: 1px solid rgba(5,252,196,0.3);
  box-shadow: 0 0 40px rgba(5,252,196,0.12), 0 8px 32px rgba(0,0,0,0.7);
  animation: tvpIn 0.35s cubic-bezier(.22,1,.36,1) forwards;
}
.terminal-video-player.open { display: flex; }
@keyframes tvpIn {
  from { opacity: 0; transform: translateY(-10px) scaleY(0.95); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}
.tvp-chrome {
  background: rgba(5,252,196,0.07);
  border-bottom: 1px solid rgba(5,252,196,0.2);
  padding: 7px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
}
.tvp-title { color: var(--accent); opacity: 0.7; }
.tvp-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  cursor: pointer;
  transition: color 0.2s;
}
.tvp-close:hover { color: var(--accent); }
.tvp-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
  overflow: hidden;
}

/* YouTube icon in chrome bar */
.tvp-chrome-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tvp-yt-badge {
  display: flex;
  align-items: center;
  opacity: 0.5;
  transition: opacity 0.2s;
  text-decoration: none;
}
.tvp-yt-badge:hover { opacity: 1; }
.tvp-yt-icon { width: 22px; height: auto; display: block; }

.home-headline {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  margin-bottom: 24px;
}
.home-headline.visible {
  opacity: 1;
  transform: translateY(0);
}

.home-headline h1 {
  font-family: 'Inter', sans-serif;
  font-size: clamp(32px, 5.5vw, 64px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  text-shadow: 0 2px 16px rgba(0,0,0,0.7), 0 0 40px rgba(0,0,0,0.5);
}

.highlight-green {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-color: rgba(5, 252, 196, 0.5);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
  text-decoration-skip-ink: none;
  text-shadow: 0 0 8px rgba(5, 252, 196, 0.35), 0 0 24px rgba(5, 252, 196, 0.15);
  display: inline;
  animation: glowPulse 3s ease-in-out infinite, pushIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  opacity: 0;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(5, 252, 196, 0.35), 0 0 24px rgba(5, 252, 196, 0.15); }
  50% { text-shadow: 0 0 14px rgba(5, 252, 196, 0.45), 0 0 40px rgba(5, 252, 196, 0.2); }
}

@keyframes pushIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.home-subtitle {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(8px, 1vw, 10px);
  color: var(--text-muted);
  font-weight: 400;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  text-shadow: 0 0 8px rgba(0,0,0,0.8);
}
.home-subtitle.visible {
  opacity: 1;
  transform: translateY(0);
}

.headline-cursor {
  display: inline-block;
  color: var(--accent);
  font-weight: 300;
  animation: termBlink 0.6s step-end infinite;
  margin-left: 2px;
}

/* Home CTAs */
.home-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}
.home-ctas.visible {
  opacity: 1;
  transform: translateY(0);
}

.cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: #0a0f0d !important;
  background: var(--accent);
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  transition: box-shadow 0.2s, transform 0.15s;
  box-shadow: 0 0 24px rgba(5, 252, 196, 0.4);
  white-space: nowrap;
}
.cta-primary:hover {
  box-shadow: 0 0 40px rgba(5, 252, 196, 0.7);
  transform: translateY(-2px);
  opacity: 1 !important;
}

/* Navi summon effect — button materializes from nothing */
@keyframes ctaSummon {
  0%   { transform: scale(0); opacity: 0; filter: brightness(4); box-shadow: 0 0 80px rgba(5, 252, 196, 1), 0 0 160px rgba(5, 252, 196, 0.6); }
  25%  { transform: scale(1.18); opacity: 1; filter: brightness(2.2); box-shadow: 0 0 60px rgba(5, 252, 196, 0.9), 0 0 100px rgba(5, 252, 196, 0.4); }
  45%  { transform: scale(0.92); filter: brightness(1.4); box-shadow: 0 0 35px rgba(5, 252, 196, 0.7); }
  65%  { transform: scale(1.06); filter: brightness(1.15); box-shadow: 0 0 28px rgba(5, 252, 196, 0.55); }
  80%  { transform: scale(0.98); filter: brightness(1.05); }
  100% { transform: scale(1); filter: brightness(1); box-shadow: 0 0 24px rgba(5, 252, 196, 0.4); }
}
.cta-summon {
  animation: ctaSummon 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards !important;
}

/* Summoning ring burst — expands outward from Navi */
@keyframes summonRingExpand {
  0%   { transform: scale(0); opacity: 0.9; border-width: 3px; }
  60%  { opacity: 0.5; border-width: 1.5px; }
  100% { transform: scale(4); opacity: 0; border-width: 0.5px; }
}
.summon-ring {
  position: fixed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: 3px solid rgba(5, 252, 196, 0.9);
  box-shadow: 0 0 15px rgba(5, 252, 196, 0.4), inset 0 0 15px rgba(5, 252, 196, 0.15);
  pointer-events: none;
  z-index: 61;
  animation: summonRingExpand 0.65s ease-out forwards;
}

/* Bright flash at summon point */
@keyframes summonFlashPulse {
  0%   { transform: scale(0.3); opacity: 1; }
  40%  { transform: scale(1.2); opacity: 0.8; }
  100% { transform: scale(2); opacity: 0; }
}
.summon-flash {
  position: fixed;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(5, 252, 196, 0.7) 0%, rgba(5, 252, 196, 0.2) 40%, transparent 70%);
  pointer-events: none;
  z-index: 61;
  animation: summonFlashPulse 0.5s ease-out forwards;
}

.cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 24px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s;
  white-space: nowrap;
}
.cta-secondary:hover {
  color: var(--accent);
  border-color: rgba(5, 252, 196, 0.35);
}

.cta-arrow { font-size: 14px; }
.cta-arrow-down { font-size: 12px; }

/* --- SECTION TITLE --- */
.section-title {
  text-align: center;
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(16px, 3vw, 28px);
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.section-subtitle {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  color: var(--text-dim);
  margin-bottom: 28px;
  line-height: 1.6;
}

/* --- HOW IT WORKS merged layout --- */
.page-inner--how {
  max-width: 1100px;
}
.how-block-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  letter-spacing: 0.22em;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 18px;
  opacity: 0.75;
}
.how-cards {
  margin-bottom: 32px;
}
.how-card {
  padding: 18px 20px;
}
.how-card h3 {
  font-size: 9px;
  margin-bottom: 8px;
}
.how-card p {
  font-size: 10px;
  line-height: 1.65;
}

/* --- CARDS (Identity + General) --- */
.cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
}
.card:hover {
  transform: translateY(-4px);
  border-color: rgba(5, 252, 196, 0.35);
  box-shadow: 0 8px 40px rgba(5, 252, 196, 0.08);
}

.card-icon {
  width: 48px;
  height: 48px;
  color: var(--accent);
  margin-bottom: 20px;
}
.card-icon svg {
  width: 100%;
  height: 100%;
}

.card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--text);
  line-height: 1.8;
}

.card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.8;
  color: var(--text-dim);
  margin-bottom: 8px;
}

.card-highlight {
  color: var(--accent) !important;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  font-style: normal;
  margin-top: 12px;
  line-height: 2;
}

/* --- HOW IT WORKS — Steps --- */
.steps-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
}

.step {
  flex: 0 0 170px;
  text-align: center;
  padding: 16px 12px;
}

.step-number {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 14px;
}

.step-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  color: var(--accent);
  opacity: 0.85;
}
.step-icon svg {
  width: 100%;
  height: 100%;
}

.step h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  font-weight: 400;
  margin-bottom: 10px;
  line-height: 1.6;
}

.step p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  line-height: 1.7;
  color: var(--text-dim);
}

.step-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 40px;
  padding-top: 56px;
  position: relative;
}

.connector-line {
  width: 28px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.4;
}

.connector-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.6;
}

/* --- EXPLORE — Categories --- */
.subsection-label {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 20px 18px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  transition: transform 0.3s, border-color 0.3s;
}
.category-card:hover {
  transform: translateY(-3px);
  border-color: rgba(5, 252, 196, 0.25);
}

.category-live {
  border-color: rgba(5, 252, 196, 0.3);
  box-shadow: 0 0 20px rgba(5, 252, 196, 0.06);
}

.category-badge-live {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: #0a0f0d;
  background: var(--accent);
  padding: 3px 8px;
  border-radius: 0;
  letter-spacing: 0.1em;
}

.category-badge-soon {
  position: absolute;
  top: 12px;
  right: 12px;
  font-family: 'Press Start 2P', monospace;
  font-size: 6px;
  color: var(--text-muted);
  background: rgba(77, 105, 96, 0.2);
  padding: 3px 8px;
  border-radius: 0;
  letter-spacing: 0.1em;
}

.category-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 12px;
  opacity: 0.8;
}
.category-icon svg {
  width: 100%;
  height: 100%;
}

.category-card h4 {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  font-weight: 400;
  margin-bottom: 8px;
  color: var(--text);
  line-height: 1.6;
}

.category-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 10px;
  line-height: 1.6;
  color: var(--text-dim);
}

/* Modes Row */
.modes-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 36px;
}

.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  color: var(--text-dim);
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 0;
  padding: 10px 16px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: border-color 0.3s, color 0.3s;
}
.mode-pill:hover {
  border-color: rgba(5, 252, 196, 0.3);
  color: var(--text);
}

.mode-icon-small {
  color: var(--accent);
  font-size: 14px;
}

/* --- ABOUT / MISSION --- */
.mission-quote {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(14px, 2.2vw, 20px);
  font-weight: 400;
  font-style: italic;
  line-height: 1.8;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 48px;
  padding: 28px 32px;
  border-left: 3px solid var(--accent);
  background: var(--bg-card);
}

.mission-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.mission-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
  overflow: hidden;
}
.mission-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}

.mission-card-badge {
  display: inline-block;
  font-family: 'Press Start 2P', monospace;
  font-size: 7px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(5, 252, 196, 0.1);
  padding: 4px 12px;
  border-radius: 0;
  margin-bottom: 16px;
}

.mission-card h3 {
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  font-weight: 400;
  margin-bottom: 14px;
  line-height: 1.8;
}

.mission-card p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  line-height: 1.8;
  color: var(--text-dim);
}

.mission-tech {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.tech-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.5;
}

.thesis-line {
  text-align: center;
  margin-bottom: 32px;
}
.thesis-line p {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: var(--text-dim);
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

.join-socials {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}
.join-socials-icons {
  display: flex;
  gap: 36px;
  align-items: center;
}
.join-socials-icons a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s, filter 0.2s;
  display: flex;
  align-items: center;
}
.join-socials-icons a:hover {
  color: #fff;
  filter: drop-shadow(0 0 6px var(--accent));
}

/* --- Section CTAs --- */
.section-cta {
  text-align: center;
  margin-top: 36px;
}

.cta-section {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  color: var(--text-dim);
  background: transparent;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: color 0.3s, border-color 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.cta-section:hover {
  color: var(--accent);
  border-color: rgba(5, 252, 196, 0.4);
  box-shadow: 0 0 20px rgba(5, 252, 196, 0.1);
  opacity: 1 !important;
}

.cta-primary-section {
  color: #0a0f0d !important;
  background: var(--accent);
  border: none;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  box-shadow: 0 0 20px rgba(5, 252, 196, 0.3);
}
.cta-primary-section:hover {
  box-shadow: 0 0 36px rgba(5, 252, 196, 0.6);
  transform: translateY(-2px);
}

/* --- Card Animate (appear on page switch) --- */
.card-animate,
.step-animate {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.page.active .card-animate,
.page.active .step-animate {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--delay, 0) * 0.2s);
}

/* --- Scrollbar --- */
.page::-webkit-scrollbar {
  width: 4px;
}
.page::-webkit-scrollbar-track {
  background: transparent;
}
.page::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 2px;
}

/* --- Navi Floating Label --- */
.navi-label {
  position: fixed;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.3s ease;
  white-space: nowrap;
}

.navi-tag {
  font-family: 'Press Start 2P', monospace;
  font-size: 5px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: var(--accent);
  background: rgba(5, 252, 196, 0.08);
  border: 1px solid rgba(5, 252, 196, 0.15);
  padding: 1px 5px;
  border-radius: 2px;
}

.navi-status {
  font-family: 'Press Start 2P', monospace;
  font-size: 5px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: var(--accent);
  opacity: 0.35;
  animation: naviStatusPulse 3s ease-in-out infinite;
}

@keyframes naviStatusPulse {
  0%, 100% { opacity: 0.25; }
  50% { opacity: 0.5; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
  .steps-container {
    flex-wrap: wrap;
    justify-content: center;
  }
  .step { flex: 0 0 150px; }
  .step-connector { flex: 0 0 30px; }
}

@media (max-width: 900px) {
  .cards-container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-cards {
    grid-template-columns: 1fr;
  }
  .steps-container {
    flex-direction: column;
    align-items: center;
  }
  .step { flex: none; width: 100%; max-width: 300px; }
  .step-connector {
    padding-top: 0;
    flex: none;
    height: 40px;
    width: 2px;
  }
  .connector-line {
    width: 1.5px;
    height: 30px;
    background: linear-gradient(180deg, transparent, var(--accent), transparent);
  }
}

@media (max-width: 768px) {
  #navbar { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-drop-btn { display: none; }
  .nav-hamburger { display: flex; }
  .page { padding: 70px 20px 20px; }
  .home-content { padding: 0 16px; }
  .category-grid {
    grid-template-columns: 1fr;
  }
  .home-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .modes-row {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   Part 4 + Part 10 (0527) — persistent site footer
   (lifted out of #page-about, fixed at viewport bottom)
   ============================================================ */
.site-footer {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 50;
  padding: 22px 40px 24px;
  background: linear-gradient(180deg,
    rgba(10,15,13,0.55) 0%,
    rgba(10,15,13,0.92) 30%,
    rgba(10,15,13,0.98) 100%);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-top: 1px solid rgba(5,252,196,0.12);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  pointer-events: none;
}
.site-footer > * { pointer-events: auto; }
.site-footer-thesis { text-align: center; max-width: 720px; padding: 0 16px; }
.site-footer-thesis p {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-style: italic;
  color: rgba(255,255,255,0.70);
  margin: 0;
  line-height: 1.55;
  letter-spacing: 0.01em;
}
.site-footer-meta {
  display: flex; align-items: center; gap: 18px;
  flex-wrap: wrap; justify-content: center;
}
.site-footer-tech {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.48);
}
.site-footer-tech .tech-dot {
  width: 3px; height: 3px;
  background: rgba(5,252,196,0.55);
  border-radius: 50%;
  display: inline-block;
}
.site-footer-divider {
  width: 1px; height: 14px;
  background: rgba(255,255,255,0.18);
  display: inline-block;
}
.site-footer-socials { display: inline-flex; align-items: center; gap: 14px; }
.site-footer-socials a {
  color: rgba(255,255,255,0.55);
  display: inline-flex;
  transition: color 0.2s, transform 0.2s;
}
.site-footer-socials a:hover {
  color: var(--accent);
  transform: translateY(-1px);
}

@media (max-width: 720px) {
  .site-footer { padding: 16px 14px 18px; }
  .site-footer-thesis p { font-size: 12px; }
  .site-footer-tech { font-size: 9.5px; }
  .site-footer-divider { display: none; }
}

/* ============================================================
   Part 9 (0527) — navbar split + Explore page (#page-about slot)
   ============================================================ */

/* LEFT cluster: logo + Explore text-link */
.nav-left {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
}
.explore-nav-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 0.10em;
  color: rgba(255,255,255,0.72);
  background: transparent;
  border: none;
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  position: relative;
  transition: color 0.2s, transform 0.15s;
}
.explore-nav-link::before { content: '['; color: rgba(5,252,196,0.55); }
.explore-nav-link::after {
  content: ']'; color: rgba(5,252,196,0.55);
  display: inline !important; position: static; background: none; transform: none;
}
.explore-nav-link:hover,
.explore-nav-link.active { color: #05FCC4; transform: translateY(-1px); }
.explore-nav-link:hover::before,
.explore-nav-link:hover::after,
.explore-nav-link.active::before,
.explore-nav-link.active::after { color: var(--accent); }

/* RIGHT cluster: For X dropdown + Enter Your LinC */
.nav-actions { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.for-x-dropdown { position: relative; display: inline-block; }
.for-x-nav-link {
  font-family: 'Press Start 2P', monospace;
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid rgba(5,252,196,0.55);
  background: rgba(5,252,196,0.08);
  padding: 10px 16px;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s, color 0.2s, transform 0.15s;
}
.for-x-nav-link:hover,
.for-x-dropdown.open .for-x-nav-link {
  background: rgba(5,252,196,0.18);
  border-color: rgba(5,252,196,0.90);
  color: #05FCC4;
  box-shadow: 0 0 16px rgba(5,252,196,0.35);
  transform: translateY(-1px);
}
.for-x-caret { font-size: 9px; transition: transform 0.2s; }
.for-x-dropdown.open .for-x-caret { transform: rotate(180deg); }
.for-x-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 4px;
  min-width: 200px;
  background: rgba(8, 18, 14, 0.98);
  border: 1px solid rgba(5,252,196,0.45);
  box-shadow: 0 18px 40px -10px rgba(0,0,0,0.55), 0 0 24px rgba(5,252,196,0.18);
  padding: 6px;
  display: none;
  z-index: 100;
  clip-path: polygon(0 8px, 8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%);
}
.for-x-dropdown.open .for-x-dropdown-menu { display: block; }
.for-x-dropdown-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: #fff;
  font-family: 'Press Start 2P', monospace;
  font-size: 10px;
  letter-spacing: 0.06em;
  background: rgba(5,252,196,0.04);
  border: 1px solid rgba(5,252,196,0.15);
  transition: background 0.18s, border-color 0.18s;
}
.for-x-dropdown-item:hover {
  background: rgba(5,252,196,0.14);
  border-color: rgba(5,252,196,0.55);
  color: #05FCC4;
}
.for-x-dd-label { flex: 1; }
.for-x-dd-arrow { color: var(--accent); font-size: 12px; }

/* Mobile parity — hamburger surfaces 3 items only */
@media (max-width: 768px) {
  .nav-actions { display: none; }
  .explore-nav-link { display: none; }
  .nav-left { gap: 0; }
  .mobile-link:not(.for-x-mobile-link):not(.explore-mobile-link) { display: none; }
}

/* ============================================================
   Part 9 §6 — Explore page (inside #page-about slot)
   ============================================================ */
#page-about { align-items: flex-start !important; }
.explore-page { max-width: 980px; width: 100%; margin: 0 auto; padding: 10vh 5vw 14vh; position: relative; z-index: 2; color: #fff; }
.exp-section { padding: 80px 0; border-top: 1px solid rgba(5,252,196,0.10); }
.exp-section:first-child { border-top: none; padding-top: 0; }
.exp-section-label { font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.22em; color: rgba(5,252,196,0.75); margin-bottom: 28px; }
.exp-section-h { font-family: 'Press Start 2P', monospace; font-size: clamp(16px, 1.8vw, 22px); font-weight: 400; line-height: 1.5; letter-spacing: 0.02em; color: #fff; text-shadow: 0 0 18px rgba(5,252,196,0.18); margin: 0 0 36px; }
.exp-section-h em { font-style: normal; color: var(--accent); }
.exp-section-h .emerald-c { font-style: normal; color: var(--accent); font-weight: 400; }
.exp-body { font-family: 'Inter', sans-serif; font-size: 16px; line-height: 1.75; color: rgba(255,255,255,0.85); margin: 0 0 22px; max-width: 740px; }
.exp-body em { color: var(--accent); font-style: italic; }
.exp-body--em { font-size: 17px; }
.exp-body--center { text-align: center; max-width: none; }
.exp-body--meta { font-family: 'JetBrains Mono', monospace; font-size: 13px; color: rgba(255,255,255,0.55); letter-spacing: 0.02em; }
.exp-pullquote { font-family: 'Inter', sans-serif; font-style: italic; font-size: 18px; line-height: 1.7; color: rgba(255,255,255,0.92); margin: 40px 0 0; padding: 28px 32px; border-left: 3px solid var(--accent); background: rgba(5,252,196,0.05); max-width: 760px; position: relative; }
.exp-pullquote::before { content: '"'; position: absolute; top: 6px; left: 14px; font-family: 'Press Start 2P', monospace; font-size: 22px; color: var(--accent); opacity: 0.45; }
.exp-hero { text-align: center; padding-top: 4vh; padding-bottom: 100px; }
.exp-eyebrow { display: inline-flex; align-items: center; gap: 8px; font-family: 'Press Start 2P', monospace; font-size: 10px; letter-spacing: 0.20em; color: var(--accent); margin-bottom: 36px; }
.exp-eyebrow-dot { width: 6px; height: 6px; background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: expDot 1.4s infinite; }
@keyframes expDot { 0%, 100% { opacity: 1 } 50% { opacity: 0.35 } }
.exp-hero-tagline { font-family: 'Press Start 2P', monospace; font-size: clamp(28px, 4.4vw, 56px); font-weight: 400; line-height: 1.25; letter-spacing: 0.02em; color: #fff; text-shadow: 0 0 30px rgba(5,252,196,0.32), 0 0 6px rgba(5,252,196,0.45); margin: 0 0 22px; }
.exp-hero-sub { font-family: 'JetBrains Mono', monospace; font-size: 15px; letter-spacing: 0.05em; color: rgba(255,255,255,0.70); margin: 0 0 56px; }
.exp-triad { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 44px 0 0; }
.exp-triad-cell { padding: 22px 20px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.30); position: relative; }
.exp-triad-cell::before { content: ''; position: absolute; top: -1px; left: -1px; width: 12px; height: 12px; border-top: 2px solid var(--accent); border-left: 2px solid var(--accent); }
.exp-triad-key { font-family: 'Press Start 2P', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--accent); margin-bottom: 12px; }
.exp-triad-val { font-family: 'Inter', sans-serif; font-size: 15px; line-height: 1.55; color: rgba(255,255,255,0.92); }
.exp-realm-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin: 40px 0 0; }
.exp-realm-cell { padding: 24px 22px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.22); position: relative; transition: border-color 0.25s, transform 0.2s, background 0.25s; }
.exp-realm-cell:hover { border-color: rgba(5,252,196,0.65); background: rgba(5,252,196,0.05); transform: translateY(-2px); }
.exp-realm-cell-num { font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.16em; color: rgba(5,252,196,0.55); margin-bottom: 14px; }
.exp-realm-cell-name { font-family: 'Press Start 2P', monospace; font-size: 16px; color: #fff; letter-spacing: 0.04em; margin-bottom: 12px; }
.exp-realm-cell-desc { font-family: 'Inter', sans-serif; font-size: 13.5px; line-height: 1.6; color: rgba(255,255,255,0.75); }
.exp-grid-display { position: relative; margin: 40px 0 50px; padding: 28px 22px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.25); overflow-x: auto; }
.exp-grid-corner { position: absolute; width: 14px; height: 14px; border: 2px solid var(--accent); }
.exp-grid-corner--tl { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.exp-grid-corner--tr { top: -1px; right: -1px; border-left: none; border-bottom: none; }
.exp-grid-corner--bl { bottom: -1px; left: -1px; border-right: none; border-top: none; }
.exp-grid-corner--br { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.exp-x-grid { width: 100%; border-collapse: collapse; font-family: 'JetBrains Mono', monospace; }
.exp-x-grid th, .exp-x-grid td { padding: 10px 8px; text-align: center; font-size: 10px; letter-spacing: 0.06em; border: 1px solid rgba(5,252,196,0.15); }
.exp-x-grid thead th { color: rgba(5,252,196,0.85); background: rgba(5,252,196,0.06); text-transform: uppercase; font-weight: 700; }
.exp-x-grid tbody th { text-align: left; color: #fff; font-weight: 700; background: rgba(5,252,196,0.04); padding-left: 12px; }
.exp-xg-corner { color: var(--accent) !important; }
.exp-x-grid tbody td { color: rgba(255,255,255,0.45); font-size: 14px; }
.exp-x-grid tbody td.filled { color: var(--accent); text-shadow: 0 0 8px var(--accent); font-size: 16px; }
.exp-grid-legend { display: flex; gap: 28px; margin-top: 16px; font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.14em; color: rgba(255,255,255,0.65); }
.exp-leg-dot { font-size: 14px; margin-right: 4px; vertical-align: middle; }
.exp-leg-dot--live { color: var(--accent); text-shadow: 0 0 6px var(--accent); }
.exp-leg-dot--open { color: rgba(255,255,255,0.45); }
.exp-conditions { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 18px; margin: 36px 0; }
.exp-condition { padding: 22px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.30); }
.exp-condition-key { font-family: 'Press Start 2P', monospace; font-size: 12px; letter-spacing: 0.16em; color: var(--accent); margin-bottom: 10px; }
.exp-condition-val { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.85); }
.exp-condition-amp { font-family: 'Press Start 2P', monospace; font-size: 22px; color: var(--accent); text-shadow: 0 0 12px rgba(5,252,196,0.45); }
.exp-protocol-panel { margin: 40px 0; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.30); padding: 4px; position: relative; }
.exp-protocol-panel::before, .exp-protocol-panel::after { content: ''; position: absolute; width: 14px; height: 14px; border: 2px solid var(--accent); }
.exp-protocol-panel::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.exp-protocol-panel::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.exp-protocol-row { display: grid; grid-template-columns: 160px 1fr; gap: 20px; padding: 18px 22px; border-bottom: 1px solid rgba(5,252,196,0.10); }
.exp-protocol-row:last-child { border-bottom: none; }
.exp-protocol-key { font-family: 'Press Start 2P', monospace; font-size: 10px; letter-spacing: 0.16em; color: var(--accent); align-self: center; }
.exp-protocol-val { font-family: 'Inter', sans-serif; font-size: 14.5px; color: rgba(255,255,255,0.90); line-height: 1.55; }
.exp-protocol-val code { font-family: 'JetBrains Mono', monospace; font-size: 13px; background: rgba(5,252,196,0.10); border: 1px solid rgba(5,252,196,0.25); padding: 1px 6px; color: var(--accent); }
.exp-live-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 40px 0; }
.exp-live-cell { padding: 26px 24px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.20); display: flex; flex-direction: column; gap: 12px; position: relative; transition: transform 0.2s, border-color 0.2s, background 0.2s; }
.exp-live-cell--live:hover { transform: translateY(-2px); border-color: rgba(5,252,196,0.65); background: rgba(5,252,196,0.04); }
.exp-live-badge { display: inline-flex; align-items: center; gap: 6px; align-self: flex-start; font-family: 'Press Start 2P', monospace; font-size: 8px; letter-spacing: 0.16em; color: var(--accent); background: rgba(5,252,196,0.10); border: 1px solid rgba(5,252,196,0.40); padding: 5px 8px; }
.exp-live-dot { width: 6px; height: 6px; background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: expDot 1.4s infinite; }
.exp-live-name { font-family: 'Press Start 2P', monospace; font-size: 17px; color: #fff; letter-spacing: 0.03em; line-height: 1.2; }
.exp-live-desc { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.55; color: rgba(255,255,255,0.78); flex: 1; }
.exp-live-cta { display: inline-block; font-family: 'Press Start 2P', monospace; font-size: 10px; letter-spacing: 0.14em; color: var(--accent); text-decoration: none; margin-top: 4px; transition: transform 0.2s; }
.exp-live-cta:hover { transform: translateX(4px); }
.exp-live-cta--soon { color: rgba(255,255,255,0.40); }
.exp-open-invites { margin: 36px 0 0; padding: 22px 24px; background: rgba(5,15,12,0.40); border-left: 2px solid rgba(5,252,196,0.40); }
.exp-open-label { font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.18em; color: var(--accent); margin-bottom: 14px; }
.exp-open-row { font-family: 'JetBrains Mono', monospace; font-size: 13px; margin: 6px 0; color: rgba(255,255,255,0.80); }
.exp-open-key { color: rgba(5,252,196,0.75); margin-right: 8px; letter-spacing: 0.02em; }
.exp-thesis-chain { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; align-items: stretch; gap: 12px; margin: 40px 0; }
.exp-thesis-step { padding: 22px 20px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.20); display: flex; flex-direction: column; gap: 10px; }
.exp-thesis-step--now { border-color: rgba(5,252,196,0.65); background: rgba(5,252,196,0.05); }
.exp-thesis-step-key { font-family: 'Press Start 2P', monospace; font-size: 11px; letter-spacing: 0.14em; color: var(--accent); }
.exp-thesis-step-val { font-family: 'Inter', sans-serif; font-size: 13.5px; line-height: 1.55; color: rgba(255,255,255,0.82); }
.exp-thesis-arrow { align-self: center; font-family: 'Press Start 2P', monospace; font-size: 16px; color: rgba(5,252,196,0.65); }
.exp-init-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 40px 0 32px; }
.exp-init-card { padding: 28px 26px; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.30); position: relative; }
.exp-init-card::before, .exp-init-card::after { content: ''; position: absolute; width: 12px; height: 12px; border: 2px solid var(--accent); }
.exp-init-card::before { top: -1px; left: -1px; border-right: none; border-bottom: none; }
.exp-init-card::after { bottom: -1px; right: -1px; border-left: none; border-top: none; }
.exp-init-badge { display: inline-block; font-family: 'Press Start 2P', monospace; font-size: 8px; letter-spacing: 0.16em; color: var(--accent); background: rgba(5,252,196,0.10); border: 1px solid rgba(5,252,196,0.40); padding: 5px 8px; margin-bottom: 16px; }
.exp-init-name { font-family: 'Press Start 2P', monospace; font-size: 14px; color: #fff; letter-spacing: 0.02em; line-height: 1.3; margin-bottom: 10px; }
.exp-init-meta { font-family: 'JetBrains Mono', monospace; font-size: 12px; color: rgba(255,255,255,0.55); letter-spacing: 0.04em; margin-bottom: 14px; }
.exp-init-role { font-family: 'Inter', sans-serif; font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.82); }
.exp-next-group { margin: 28px 0 32px; }
.exp-next-group-label { font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.20em; color: var(--accent); margin-bottom: 18px; }
.exp-next-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.exp-next-card { display: flex; align-items: center; gap: 14px; padding: 22px; text-decoration: none; background: rgba(5,15,12,0.55); border: 1px solid rgba(5,252,196,0.25); transition: border-color 0.2s, background 0.2s, transform 0.2s; }
.exp-next-card--live { color: #fff; }
.exp-next-card--live:hover { border-color: rgba(5,252,196,0.70); background: rgba(5,252,196,0.05); transform: translateY(-2px); text-decoration: none; opacity: 1; }
.exp-next-card--soon { opacity: 0.50; cursor: default; }
.exp-next-card-badge { display: inline-flex; align-items: center; gap: 5px; font-family: 'Press Start 2P', monospace; font-size: 7px; letter-spacing: 0.16em; color: var(--accent); background: rgba(5,252,196,0.10); border: 1px solid rgba(5,252,196,0.45); padding: 4px 7px; }
.exp-next-card-badge--soon { color: rgba(255,255,255,0.50); background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.20); }
.exp-next-card-dot { width: 5px; height: 5px; background: var(--accent); box-shadow: 0 0 6px var(--accent); animation: expDot 1.4s infinite; }
.exp-next-card-title { flex: 1; font-family: 'Press Start 2P', monospace; font-size: 13px; letter-spacing: 0.04em; color: #fff; }
.exp-next-card-arrow { font-family: 'Press Start 2P', monospace; font-size: 12px; color: var(--accent); transition: transform 0.2s; }
.exp-next-card--live:hover .exp-next-card-arrow { transform: translateX(3px); }
.exp-next-list { display: flex; flex-direction: column; gap: 1px; background: rgba(5,252,196,0.15); border: 1px solid rgba(5,252,196,0.25); }
.exp-next-row { display: grid; grid-template-columns: 200px 1fr; gap: 18px; padding: 16px 22px; background: rgba(5,15,12,0.85); }
.exp-next-row-key { font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.14em; color: var(--accent); align-self: center; }
.exp-next-row-val { font-family: 'Inter', sans-serif; font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.55; }
.exp-next-row-val code { font-family: 'JetBrains Mono', monospace; font-size: 12.5px; background: rgba(5,252,196,0.10); border: 1px solid rgba(5,252,196,0.25); padding: 1px 5px; color: var(--accent); }
.exp-footer-mark { text-align: center; margin-top: 80px; font-family: 'Press Start 2P', monospace; font-size: 9px; letter-spacing: 0.22em; color: rgba(5,252,196,0.40); }
@media (max-width: 820px) {
  .exp-realm-grid, .exp-triad, .exp-live-grid, .exp-init-grid, .exp-next-cards { grid-template-columns: 1fr; }
  .exp-thesis-chain { grid-template-columns: 1fr; }
  .exp-thesis-arrow { transform: rotate(90deg); justify-self: center; }
  .exp-conditions { grid-template-columns: 1fr; }
  .exp-condition-amp { justify-self: center; transform: rotate(90deg); }
  .exp-protocol-row { grid-template-columns: 1fr; gap: 6px; }
  .exp-next-row { grid-template-columns: 1fr; gap: 6px; }
  .exp-section { padding: 56px 0; }
  .exp-section-h { font-size: 16px; }
  .exp-hero-tagline { font-size: clamp(28px, 8vw, 44px); }
  .exp-x-grid th, .exp-x-grid td { font-size: 9px; padding: 6px 4px; }
}
