/* ============================================================
   GRAMX6900 — Financial Resistance Network
   Styles: Bloomberg Terminal × Internet Portal × 2000s Web
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Mono:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@300;400;500;600;700&family=IBM+Plex+Sans+Condensed:wght@400;500;600;700&display=swap');

/* ============================================================
   TOKENS
   ============================================================ */
:root {
  --blue: #00AEEF;
  --blue-dim: #0088c0;
  --blue-glow: rgba(0, 174, 239, 0.2);
  --blue-glow-strong: rgba(0, 174, 239, 0.4);
  --black: #000000;
  --black-soft: #050505;
  --black-panel: #0a0a0a;
  --white: #ffffff;
  --white-dim: #e0e0e0;
  --white-muted: #999999;
  --gray: #333333;
  --gray-light: #1a1a1a;
  --green: #00ff88;
  --red: #ff3355;
  --yellow: #ffcc00;
  --font-mono: 'IBM Plex Mono', 'Courier New', monospace;
  --font-sans: 'IBM Plex Sans', Arial, sans-serif;
  --font-cond: 'IBM Plex Sans Condensed', Arial Narrow, sans-serif;
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--white); }
code { font-family: var(--font-mono); }
button { cursor: pointer; font-family: var(--font-mono); }
img, video { max-width: 100%; display: block; }

/* ============================================================
   NOISE OVERLAY
   ============================================================ */
.noise-overlay {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ============================================================
   PARTICLES CANVAS
   ============================================================ */
#particles-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   STICKY CONTRACT WIDGET
   ============================================================ */
.sticky-contract {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  background: var(--black-panel);
  border: 1px solid var(--blue);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  box-shadow: 0 0 20px var(--blue-glow), inset 0 0 10px rgba(0,174,239,0.03);
  transform: translateY(100px);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.sticky-contract.visible { transform: translateY(0); }
.sticky-label { color: var(--blue); font-weight: 600; letter-spacing: 0.1em; }
.sticky-addr {
  color: var(--white-muted);
  font-size: 10px;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.copy-btn-small {
  background: var(--blue);
  color: var(--black);
  border: none;
  padding: 4px 10px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.1s;
}
.copy-btn-small:hover { background: var(--white); transform: scale(1.05); }

/* ============================================================
   TOAST
   ============================================================ */
.toast {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: 1001;
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 10px 20px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
  width: 100%;
  background: var(--blue);
  overflow: hidden;
  position: relative;
  z-index: 500;
  border-bottom: 1px solid var(--blue-dim);
}
.ticker-track {
  display: flex;
  width: 100%;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker-scroll 40s linear infinite;
  padding: 6px 0;
}
.ticker-content:hover { animation-play-state: paused; }
.tick {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0 20px;
  color: var(--black);
}
.tick.up { color: #004d00; }
.tick.down { color: #660000; }
.tick-sep { color: rgba(0,0,0,0.3); font-size: 11px; }
@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.footer-ticker { border-top: 1px solid var(--blue); border-bottom: none; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 800;
  background: rgba(0,0,0,0.92);
  border-bottom: 1px solid var(--gray);
  backdrop-filter: blur(12px);
  transition: border-color 0.3s;
}
.navbar.scrolled { border-bottom-color: var(--blue); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  height: 56px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo img { height: 32px; width: auto; }
.nav-brand {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--white-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--blue); }
.nav-contract {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--white-muted);
  border: 1px solid var(--gray);
  padding: 4px 10px;
  flex-shrink: 0;
}
.nav-contract button {
  background: var(--blue);
  color: var(--black);
  border: none;
  padding: 3px 8px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.nav-contract button:hover { background: var(--white); }
.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 20px;
}
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--black-panel);
  border-top: 1px solid var(--gray);
  padding: 16px 32px;
  gap: 16px;
}
.nav-mobile-menu a {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--white-muted);
  letter-spacing: 0.1em;
}
.nav-mobile-menu a:hover { color: var(--blue); }
.nav-mobile-menu.open { display: flex; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
  z-index: 1;
}

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-header { margin-bottom: 48px; }
.section-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-cond);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.05;
  color: var(--white);
  letter-spacing: -0.01em;
}
.section-rule {
  width: 60px;
  height: 2px;
  background: var(--blue);
  margin-top: 20px;
}
.accent { color: var(--blue); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 100px 0 80px;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}
.hero-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 60%, rgba(0,0,0,1) 100%);
}
.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero-banner-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.75) 60%, rgba(0,0,0,1) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 32px;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-cond);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  text-shadow: 0 0 80px var(--blue-glow-strong);
  margin-bottom: 16px;
}
.hero-accent { color: var(--blue); }
.hero-subtitle {
  font-family: var(--font-cond);
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 600;
  color: var(--white-dim);
  letter-spacing: 0.15em;
  margin-bottom: 28px;
  text-transform: uppercase;
}
.hero-body {
  font-size: 15px;
  line-height: 1.8;
  color: var(--white-muted);
  max-width: 700px;
  margin-bottom: 32px;
}
.hero-contract-block {
  margin-bottom: 32px;
  border: 1px solid var(--gray);
  padding: 16px 20px;
  background: rgba(0,0,0,0.6);
  max-width: 700px;
}
.hero-ca-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 8px;
  display: block;
}
.hero-ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-ca {
  font-size: 13px;
  color: var(--white-dim);
  letter-spacing: 0.03em;
  word-break: break-all;
}
.hero-copy-btn {
  background: var(--blue);
  color: var(--black);
  border: none;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.1s;
}
.hero-copy-btn:hover { background: var(--white); transform: scale(1.04); }
.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.cta-primary {
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border: none;
  display: inline-block;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.cta-primary:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 8px 24px var(--blue-glow); color: var(--black); }
.cta-secondary {
  background: transparent;
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border: 1px solid var(--white);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.cta-secondary:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.cta-ghost {
  background: transparent;
  color: var(--white-muted);
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  border: 1px solid var(--gray);
  display: inline-block;
  transition: border-color 0.2s, color 0.2s, transform 0.15s;
}
.cta-ghost:hover { border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.hero-stats {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-block {
  padding: 0 24px;
  text-align: center;
}
.stat-block:first-child { padding-left: 0; }
.stat-num {
  font-family: var(--font-mono);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.02em;
}
.stat-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--white-muted);
  margin-top: 4px;
}
.stat-divider {
  color: var(--gray);
  font-size: 24px;
}

/* ============================================================
   STORY SECTION
   ============================================================ */
.story-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--black);
  position: relative;
  z-index: 1;
}
.story-section .section-eyebrow { color: #333; }
.story-section .section-title { color: var(--black); }
.story-section .accent { color: var(--blue); }
.story-section .section-rule { background: var(--black); }

/* Video in story section */
.section-video {
  margin-bottom: 60px;
  position: relative;
  background: #000;
  overflow: hidden;
}
.section-video-el {
  width: 100%;
  height: 380px;
  object-fit: cover;
  display: block;
  opacity: 0.85;
}
.section-video-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0,0,0,0.7);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--blue);
  padding: 10px 20px;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 48px;
  margin-bottom: 80px;
}

/* Article */
.story-article {
  border-top: 3px solid var(--black);
  padding-top: 28px;
}
.article-kicker {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 12px;
}
.article-title {
  font-family: var(--font-cond);
  font-size: clamp(22px, 2.5vw, 32px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 12px;
}
.article-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #666;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #ddd;
}
.article-body p {
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.8;
  color: #1a1a1a;
}
.article-expandable {
  max-height: 200px;
  overflow: hidden;
  transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.article-expandable::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  transition: opacity 0.3s;
}
.article-expandable.open { max-height: 3000px; }
.article-expandable.open::after { opacity: 0; pointer-events: none; }
.article-expand-btn {
  margin-top: 16px;
  background: none;
  border: 1px solid var(--black);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.article-expand-btn:hover { background: var(--black); color: var(--white); }

/* Sidebar */
.story-sidebar { }
.sidebar-block {
  border: 1px solid #ddd;
  padding: 20px;
  margin-bottom: 20px;
  background: #f9f9f9;
}
.sidebar-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #333;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #ddd;
}
.sidebar-fact {
  display: flex;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}
.fact-label { color: #666; }
.fact-val { color: var(--black); font-weight: 600; }
.sidebar-quote { background: var(--black); border-color: var(--black); }
.quote-text {
  font-family: var(--font-cond);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 12px;
  font-style: italic;
}
.quote-attr {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  color: var(--blue);
}
.sidebar-ca {
  font-family: var(--font-mono);
  font-size: 10px;
  color: #333;
  word-break: break-all;
  margin-bottom: 12px;
  cursor: pointer;
  transition: color 0.2s;
}
.sidebar-ca:hover { color: var(--blue); }
.sidebar-copy-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  width: 100%;
  transition: background 0.2s;
}
.sidebar-copy-btn:hover { background: var(--blue); color: var(--black); }

/* Timeline */
.timeline-wrap {
  border-top: 2px solid var(--black);
  padding-top: 48px;
}
.timeline-title {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: #333;
  margin-bottom: 40px;
}
.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.tl-item {
  display: grid;
  grid-template-columns: 80px 20px 24px 1fr;
  align-items: flex-start;
  gap: 0 16px;
  padding-bottom: 40px;
  position: relative;
}
.tl-year {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  text-align: right;
  padding-top: 4px;
}
.tl-connector {
  width: 2px;
  background: #ddd;
  margin: 0 auto;
  min-height: 100%;
  position: relative;
  align-self: stretch;
}
.tl-item:last-child .tl-connector { background: linear-gradient(to bottom, #ddd, transparent); }
.tl-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid var(--black);
  margin-top: 4px;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.tl-dot-red { background: var(--red); border-color: var(--red); }
.tl-dot-blue { background: var(--blue); border-color: var(--blue); box-shadow: 0 0 12px var(--blue-glow-strong); }
.tl-headline {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 6px;
}
.tl-detail {
  font-size: 13px;
  line-height: 1.7;
  color: #555;
}

/* ============================================================
   WHITEPAPER
   ============================================================ */
.whitepaper-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.whitepaper-section .section-video { margin-bottom: 60px; }
.wp-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px;
  align-items: flex-start;
}
.wp-sidebar {
  position: sticky;
  top: 80px;
}
.wp-toc-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--blue);
  margin-bottom: 12px;
}
.wp-search-wrap { margin-bottom: 16px; }
.wp-search {
  width: 100%;
  background: var(--gray-light);
  border: 1px solid var(--gray);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 11px;
  padding: 10px 14px;
  outline: none;
  transition: border-color 0.2s;
}
.wp-search:focus { border-color: var(--blue); }
.wp-search::placeholder { color: #555; }
.wp-toc {
  display: flex;
  flex-direction: column;
  gap: 2px;
  border: 1px solid var(--gray);
  background: var(--gray-light);
}
.wp-toc-link {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-muted);
  padding: 10px 14px;
  border-left: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
  letter-spacing: 0.03em;
}
.wp-toc-link:hover { color: var(--white); background: rgba(0,174,239,0.05); border-left-color: var(--blue); }
.wp-toc-link.active { color: var(--blue); border-left-color: var(--blue); background: rgba(0,174,239,0.08); }
.wp-toc-link.hidden { display: none; }

/* WP chapters */
.wp-chapter {
  border: 1px solid var(--gray);
  margin-bottom: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.wp-chapter:hover { border-color: var(--blue); }
.wp-chapter.highlighted { border-color: var(--blue); box-shadow: 0 0 20px var(--blue-glow); }
.wp-ch-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  user-select: none;
  background: var(--gray-light);
  transition: background 0.2s;
}
.wp-ch-header:hover { background: rgba(0,174,239,0.06); }
.wp-ch-num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--blue);
  font-weight: 700;
  width: 24px;
  flex-shrink: 0;
}
.wp-ch-title {
  font-family: var(--font-cond);
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  flex: 1;
}
.wp-ch-arrow {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--blue);
  transition: transform 0.3s;
}
.wp-ch-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}
.wp-ch-body.open { max-height: 1000px; }
.wp-ch-body p {
  padding: 0 24px 20px;
  font-size: 14px;
  line-height: 1.8;
  color: var(--white-muted);
}
.wp-ch-body p:first-child { padding-top: 24px; }

/* ============================================================
   BUY SECTION
   ============================================================ */
.buy-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--black);
  z-index: 1;
  position: relative;
}
.buy-section .section-eyebrow { color: #333; }
.buy-section .section-title { color: var(--black); }
.buy-section .section-rule { background: var(--black); }
.buy-steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: flex-start;
}
.buy-step {
  border: 1px solid #ddd;
  padding: 28px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.buy-step:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(0,174,239,0.1); }
.buy-step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--blue);
  padding: 0 16px;
  margin-top: 60px;
  font-weight: 300;
}
.step-num {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 16px;
  opacity: 0.3;
}
.step-title {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 8px;
}
.step-desc {
  font-size: 13px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.6;
}
.step-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-link {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #333;
  padding: 8px 12px;
  border: 1px solid #eee;
  background: #f9f9f9;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.step-link:hover { border-color: var(--blue); color: var(--blue); background: #fff; }
.step-link svg { width: 14px; height: 14px; flex-shrink: 0; }
.step-link-primary {
  background: var(--blue);
  color: var(--black);
  border-color: var(--blue);
}
.step-link-primary:hover { background: var(--black); color: var(--white); border-color: var(--black); }
.step-ca-block { margin-top: 20px; }
.step-ca-label {
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #999;
  margin-bottom: 8px;
}
.step-ca-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.step-ca {
  font-size: 10px;
  color: #333;
  word-break: break-all;
  flex: 1;
}
.step-copy-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 6px 12px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  flex-shrink: 0;
  transition: background 0.2s;
}
.step-copy-btn:hover { background: var(--blue); color: var(--black); }

/* ============================================================
   6900 MEANING
   ============================================================ */
.meaning-section {
  padding: 100px 0;
  background: var(--black-panel);
  position: relative;
  z-index: 1;
}
.meaning-grid {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.meaning-card {
  flex: 1;
  min-width: 240px;
  border: 1px solid var(--gray);
  padding: 36px;
  background: var(--black);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.meaning-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 40px var(--blue-glow);
  transform: translateY(-4px);
}
.meaning-card-result {
  background: var(--blue);
  border-color: var(--blue);
}
.meaning-card-result:hover { box-shadow: 0 0 60px var(--blue-glow-strong); }
.meaning-number {
  font-family: var(--font-mono);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue);
  margin-bottom: 8px;
}
.meaning-card-result .meaning-number { color: var(--black); }
.meaning-number-large { font-size: 96px; }
.meaning-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--white-muted);
  margin-bottom: 16px;
}
.meaning-card-result .meaning-tag { color: rgba(0,0,0,0.6); }
.meaning-desc p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-muted);
}
.meaning-card-result .meaning-desc p { color: rgba(0,0,0,0.75); }
.meaning-plus, .meaning-equals {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 300;
  color: var(--gray);
  flex-shrink: 0;
}
.meaning-visual { margin-top: 24px; }
.cycle-ring {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin-slow 8s linear infinite;
}
.cycle-text {
  font-size: 28px;
  color: var(--blue);
}
@keyframes spin-slow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.zero-block {
  display: flex;
  gap: 8px;
}
.zero-block span {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  border: 2px solid var(--blue);
  width: 56px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   COMMUNITY
   ============================================================ */
.community-section {
  padding: 100px 0;
  background: var(--black);
  position: relative;
  z-index: 1;
}
.community-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 64px;
}
.community-card {
  border: 1px solid var(--gray);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  background: var(--black-panel);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  color: var(--white);
  text-decoration: none;
  position: relative;
}
.community-card:hover {
  border-color: var(--blue);
  box-shadow: 0 0 30px var(--blue-glow);
  transform: translateY(-4px);
  color: var(--white);
}
.comm-icon {
  width: 36px;
  height: 36px;
  color: var(--blue);
  margin-bottom: 8px;
}
.comm-icon svg { width: 100%; height: 100%; }
.comm-name {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}
.comm-handle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--white-muted);
}
.comm-arrow {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 20px;
  color: var(--blue);
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
}
.community-card:hover .comm-arrow { opacity: 1; transform: translateX(4px); }

.community-manifesto {
  border: 1px solid var(--gray);
  padding: 48px;
  text-align: center;
  background: var(--black-panel);
}
.manifesto-line {
  font-family: var(--font-cond);
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--white-muted);
  line-height: 1.8;
  text-transform: uppercase;
}
.manifesto-line-accent { color: var(--blue); }

/* ============================================================
   MERCH
   ============================================================ */
.merch-section {
  padding: 100px 0;
  background: var(--white);
  color: var(--black);
  z-index: 1;
  position: relative;
}
.merch-section .section-eyebrow { color: #333; }
.merch-section .section-title { color: var(--black); }
.merch-section .accent { color: var(--blue); }
.merch-section .section-rule { background: var(--black); }
.merch-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.merch-img-wrap {
  position: relative;
}
.merch-img {
  width: 100%;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.4s;
}
.merch-img-wrap:hover .merch-img { filter: grayscale(0); }
.merch-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: var(--blue);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 8px 16px;
}
.merch-title {
  font-family: var(--font-cond);
  font-size: 40px;
  font-weight: 700;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.merch-subtitle {
  font-family: var(--font-cond);
  font-size: 20px;
  font-weight: 600;
  color: var(--blue);
  margin-bottom: 20px;
}
.merch-desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 32px;
}
.merch-notify-btn {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
}
.merch-notify-btn:hover { background: var(--blue); color: var(--black); transform: translateY(-2px); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black-panel);
  border-top: 1px solid var(--gray);
  position: relative;
  z-index: 1;
}
.footer-ticker-wrap { border-top: none; }
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 60px 32px;
  gap: 48px;
  max-width: 1280px;
  margin: 0 auto;
  flex-wrap: wrap;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer-logo img { height: 40px; width: auto; }
.footer-brand {
  font-family: var(--font-mono);
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.1em;
}
.footer-tagline {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--blue);
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.footer-links {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col-title {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--blue);
  margin-bottom: 4px;
}
.footer-col a {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--white-muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--white); }
.footer-ca-block { display: flex; flex-direction: column; gap: 8px; }
.footer-ca {
  font-size: 10px;
  color: var(--white-muted);
  word-break: break-all;
  max-width: 220px;
}
.footer-copy-btn {
  background: var(--gray);
  color: var(--white);
  border: none;
  padding: 6px 14px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  width: fit-content;
  transition: background 0.2s;
}
.footer-copy-btn:hover { background: var(--blue); color: var(--black); }
.footer-bottom {
  border-top: 1px solid var(--gray);
  padding: 24px 32px;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-disclaimer {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #444;
  line-height: 1.7;
  letter-spacing: 0.03em;
}
.footer-copy {
  font-family: var(--font-mono);
  font-size: 9px;
  color: #333;
  letter-spacing: 0.08em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .story-grid { grid-template-columns: 1fr; }
  .story-sidebar { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .wp-layout { grid-template-columns: 1fr; }
  .wp-sidebar { position: static; }
  .buy-steps { grid-template-columns: 1fr; }
  .buy-step-arrow { display: none; }
  .community-grid { grid-template-columns: repeat(2, 1fr); }
  .merch-block { grid-template-columns: 1fr; }
  .meaning-grid { flex-direction: column; }
  .meaning-plus, .meaning-equals { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-contract { display: none; }
  .nav-hamburger { display: block; }
  .container { padding: 0 20px; }
  .hero-content { padding: 0 20px; }
  .hero-stats { gap: 12px; }
  .stat-divider { display: none; }
  .stat-block { padding: 0 12px; }
  .story-sidebar { grid-template-columns: 1fr; }
  .community-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; }
  .footer-links { flex-direction: column; gap: 32px; }
  .sticky-contract { display: none; }
  .tl-item { grid-template-columns: 60px 16px 20px 1fr; }
  .section-video-el { height: 220px; }
  .timeline { padding-left: 0; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; }
  .cta-primary, .cta-secondary, .cta-ghost { text-align: center; }
  .merch-block { gap: 32px; }
}

/* ============================================================
   CRT GLOW EFFECT (subtle, on hover elements)
   ============================================================ */
.crt-glow {
  text-shadow: 0 0 10px var(--blue), 0 0 20px var(--blue-glow);
}

/* Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gray); }
::-webkit-scrollbar-thumb:hover { background: var(--blue); }
