/* ============================================
   ATTENTION PROJECT — Global Styles
   HAZARDOUS YELLOW (#FFF920) + BLACK
   ============================================ */

:root {
  --yellow: #FFF920;
  --yellow-bright: #FFFF55;
  --yellow-dark: #D4CE00;
  --yellow-dim: #AAA200;
  --yellow-glow: rgba(255, 249, 32, 0.5);
  --yellow-subtle: rgba(255, 249, 32, 0.08);
  --black: #050505;
  --black-light: #0A0A0A;
  --black-card: #0E0E0E;
  --black-border: #1A1A1A;
  --white: #F0F0F0;
  --gray: #777;
  --gray-light: #999;
  --font-main: 'Space Grotesk', sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--yellow);
  color: var(--black);
}

html {
  scroll-behavior: smooth;
  background: var(--black);
}

body {
  font-family: var(--font-main);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION — SOLID YELLOW BAR
   ============================================ */

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0 24px;
  background: var(--yellow);
  border-bottom: 3px solid var(--black);
  box-shadow: 0 4px 30px rgba(255, 249, 32, 0.3);
}

#navbar.scrolled {
  background: var(--yellow);
  backdrop-filter: none;
  box-shadow: 0 4px 40px rgba(255, 249, 32, 0.4);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 56px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
}

.logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.logo-text {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 4px;
  color: var(--black);
}

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

.nav-links a {
  color: var(--black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.2s;
  opacity: 0.7;
}

.nav-links a:hover {
  opacity: 1;
}

.nav-x-link {
  display: flex;
  align-items: center;
}

/* ============================================
   HERO SECTION
   ============================================ */

#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}

.dynamic-rectangles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

#eyeCanvas {
  display: block;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, transparent 25%, var(--black) 75%);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  position: absolute;
  bottom: 80px;
  left: 40px;
  z-index: 3;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  max-width: 700px;
}

.hero-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: none;
}

.hero-content h1 {
  font-family: var(--font-mono);
  font-size: clamp(28px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: 6px;
  color: var(--yellow);
  position: relative;
  line-height: 1.1;
}

/* Glitch effect — more aggressive */
.glitch {
  position: relative;
}

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

.glitch::before {
  color: var(--yellow-bright);
  z-index: -1;
  animation: glitch1 2.5s infinite linear;
}

.glitch::after {
  color: #FFFF00;
  z-index: -2;
  animation: glitch2 2.5s infinite linear;
}

@keyframes glitch1 {
  0%, 85%, 100% { opacity: 0; transform: none; }
  86% { opacity: 1; transform: translate(-3px, -2px) skewX(-2deg); }
  87% { opacity: 0; }
  88% { opacity: 0.8; transform: translate(3px, 1px) skewX(1deg); }
  89% { opacity: 0; }
  90% { opacity: 0.6; transform: translate(-1px, 2px); }
  91% { opacity: 0; }
}

@keyframes glitch2 {
  0%, 90%, 100% { opacity: 0; transform: none; }
  91% { opacity: 0.7; transform: translate(2px, 3px) skewX(3deg); }
  92% { opacity: 0; }
  93% { opacity: 0.5; transform: translate(-2px, -1px) skewX(-1deg); }
  94% { opacity: 0; }
  95% { opacity: 0.9; transform: translate(1px, -2px); }
  96% { opacity: 0; }
}

.hero-subtitle {
  font-size: clamp(14px, 1.5vw, 18px);
  color: var(--gray-light);
  font-weight: 400;
  letter-spacing: 2px;
  max-width: 500px;
  text-transform: uppercase;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  display: inline-block;
  padding: 16px 36px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 0;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--yellow);
  color: var(--black);
  border: 2px solid var(--yellow);
  box-shadow: 0 0 20px rgba(255, 249, 32, 0.3);
}

.btn-primary:hover {
  background: var(--yellow-bright);
  box-shadow:
    0 0 40px rgba(255, 249, 32, 0.5),
    0 0 80px rgba(255, 249, 32, 0.2);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--yellow);
  border: 2px solid var(--yellow);
}

.btn-outline:hover {
  background: var(--yellow);
  color: var(--black);
  box-shadow: 0 0 30px rgba(255, 249, 32, 0.4);
  transform: translateY(-2px);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.scroll-arrow {
  width: 24px;
  height: 24px;
  border-right: 3px solid var(--yellow);
  border-bottom: 3px solid var(--yellow);
  transform: rotate(45deg);
  animation: scrollBounce 1.5s infinite;
  filter: drop-shadow(0 0 8px rgba(255, 249, 32, 0.5));
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 0.4; }
  50% { transform: rotate(45deg) translate(6px, 6px); opacity: 1; }
}

/* ============================================
   SECTION COMMON
   ============================================ */

section:not(#hero) {
  padding: 120px 0;
  position: relative;
}

.section-title {
  font-family: var(--font-mono);
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.highlight {
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255, 249, 32, 0.3);
}

.section-desc {
  text-align: center;
  color: var(--gray);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ============================================
   FEATURES / ABOUT SECTION — Axiom-style tabs
   ============================================ */

#about {
  background: var(--black);
  border-top: 1px solid var(--yellow-dim);
}

.features-header {
  text-align: center;
  margin-bottom: 48px;
}

/* Feature Tabs Row */
.feature-tabs {
  display: flex;
  gap: 32px;
  width: 100%;
  margin-bottom: 48px;
}

.feature-tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-align: left;
}

.tab-bar {
  width: 100%;
  height: 3px;
  background: rgba(255, 249, 32, 0.15);
  transition: background 0.25s;
}

.feature-tab:hover .tab-bar {
  background: rgba(255, 249, 32, 0.4);
}

.feature-tab.active .tab-bar {
  background: var(--yellow);
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tab-title {
  font-family: var(--font-mono);
  font-size: clamp(14px, 1.5vw, 20px);
  font-weight: 700;
  color: var(--gray);
  letter-spacing: 1px;
  transition: color 0.25s;
  white-space: nowrap;
}

.feature-tab:hover .tab-title {
  color: var(--white);
}

.feature-tab.active .tab-title {
  color: var(--white);
}

.tab-subtitle {
  font-size: clamp(12px, 1.2vw, 16px);
  color: #444;
  transition: color 0.25s;
}

.feature-tab.active .tab-subtitle {
  color: var(--gray);
}

/* Feature Content Panels */
.feature-panels {
  position: relative;
  min-height: 280px;
}

.feature-panel {
  display: none;
  gap: 48px;
  align-items: center;
  animation: panelFadeIn 0.35s ease;
}

.feature-panel.active {
  display: flex;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.panel-text {
  flex: 1;
}

.panel-text h3 {
  font-family: var(--font-mono);
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.3;
  letter-spacing: 1px;
}

.panel-text p {
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.8;
}

.panel-visual {
  flex: 0 0 280px;
  height: 280px;
  background: var(--black-card);
  border: 1px solid var(--black-border);
  display: flex;
  align-items: center;
  justify-content: center;
}

.visual-icon {
  width: 80px;
  height: 80px;
  color: var(--yellow);
}

.visual-icon svg {
  width: 100%;
  height: 100%;
}

/* ============================================
   STATS / LIVE METRICS SECTION
   ============================================ */

#stats {
  background: var(--black);
  position: relative;
  border-top: 1px solid var(--black-border);
}

#stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, var(--yellow) 50%, transparent 90%);
  box-shadow: 0 0 20px rgba(255, 249, 32, 0.3);
}

.metrics-row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.metrics-table-wrap {
  flex: 1;
  background: #0c0c0e;
  border: 1px solid var(--black-border);
  border-radius: 8px;
  overflow: hidden;
}

.metrics-table-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--black-border);
  background: #0a0a0c;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
}

.metrics-table-header svg {
  color: var(--yellow);
  flex-shrink: 0;
}

.metrics-count,
.metrics-total {
  margin-left: auto;
  font-size: 22px;
  font-weight: 700;
  color: var(--yellow);
  letter-spacing: 0;
  text-shadow: 0 0 20px rgba(255, 249, 32, 0.3);
}

.metrics-table-cols {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.metrics-table-body {
  max-height: 480px;
  overflow: hidden;
}

.metrics-row-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 8px;
  padding: 12px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  font-family: var(--font-mono);
  font-size: 13px;
  color: #ccc;
  align-items: center;
  transition: background 0.15s;
}

.metrics-row-item:hover {
  background: rgba(255, 255, 255, 0.02);
}

.metrics-row-item.new-entry {
  animation: rowSlideIn 0.4s ease forwards;
}

@keyframes rowSlideIn {
  0% {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  60% {
    max-height: 48px;
    opacity: 0.4;
  }
  100% {
    max-height: 60px;
    opacity: 1;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

.metrics-token-cell {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.metrics-token-img {
  width: 28px;
  height: 28px;
  border-radius: 3px;
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid rgba(255, 249, 32, 0.15);
}

.metrics-token-name {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #e0e0e0;
  font-weight: 500;
}

.metrics-token-ticker {
  color: #555;
  font-size: 11px;
}

.metrics-age {
  color: var(--white);
  font-weight: 500;
}

.metrics-mc {
  color: var(--white);
  font-weight: 500;
}

.metrics-amount {
  color: var(--yellow);
  font-weight: 600;
}

.metrics-time {
  color: var(--gray);
  font-size: 12px;
}

.metrics-tx-cell {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.metrics-tx-hash {
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.metrics-tx-hash:hover {
  text-decoration: underline;
}

.metrics-status {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  font-weight: 600;
}

.metrics-status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--white);
  flex-shrink: 0;
}

.metrics-status-text {
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   AXIOM VIEWER / TAKEOVER SECTION
   ============================================ */

#axiom {
  background: var(--black);
  border-top: 1px solid var(--black-border);
  position: relative;
  overflow: hidden;
}

/* Centered header */
.takeover-header {
  text-align: center;
  margin-bottom: 60px;
}

.takeover-title {
  font-family: var(--font-mono);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: 6px;
  text-transform: uppercase;
  margin-bottom: 16px;
  line-height: 1.1;
}

.takeover-desc {
  color: var(--gray);
  font-size: 17px;
  line-height: 1.7;
  max-width: 600px;
  margin: 0 auto;
}

/* Side-by-side: feed left, flow diagram right */
.takeover-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
}

.takeover-feed {
  flex: 0 0 520px;
}

.takeover-diagram {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

#liquidFlowCanvas {
  display: block;
  width: 520px;
  height: auto;
}

/* Expanding rectangular rings — Axiom style, edge-only */
.takeover-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.takeover-bg-ring {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 249, 32, 0.08);
  border-radius: 4px;
  background: rgba(255, 249, 32, 0.012);
  mix-blend-mode: screen;
  transition: none;
}

/* Rings start large, expand outward, smoothly fade */
.takeover-bg-ring:nth-child(1) { animation: ring-out 14s linear 0s infinite; }
.takeover-bg-ring:nth-child(2) { animation: ring-out 14s linear 2.3s infinite; }
.takeover-bg-ring:nth-child(3) { animation: ring-out 14s linear 4.6s infinite; }
.takeover-bg-ring:nth-child(4) { animation: ring-out 14s linear 7s infinite; }
.takeover-bg-ring:nth-child(5) { animation: ring-out 14s linear 9.3s infinite; }
.takeover-bg-ring:nth-child(6) { animation: ring-out 14s linear 11.6s infinite; }

@keyframes ring-out {
  0%   { width: 60%; height: 55%; opacity: 0; }
  8%   { opacity: 0.3; }
  15%  { opacity: 0.55; }
  22%  { opacity: 0.65; }
  30%  { opacity: 0.6; }
  40%  { opacity: 0.5; }
  50%  { opacity: 0.4; }
  60%  { opacity: 0.3; }
  70%  { opacity: 0.2; }
  80%  { opacity: 0.12; }
  90%  { opacity: 0.05; }
  100% { width: 120%; height: 115%; opacity: 0; }
}

#axiom .container {
  position: relative;
  z-index: 1;
}

.axiom-viewport {
  perspective: 1200px;
  max-width: 520px;
}

.axiom-frame {
  position: relative;
  background: #0c0c0e;
  border-radius: 12px;
  border: 1px solid #222;
  overflow: hidden;
  transform: rotateX(8deg) rotateY(-3deg) scale(0.95);
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.axiom-frame:hover {
  transform: rotateX(2deg) rotateY(-1deg) scale(0.98);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.7);
}

.axiom-browser-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: #111113;
  border-bottom: 1px solid #1a1a1e;
}

.browser-dots {
  display: flex;
  gap: 6px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.browser-dots span:first-child { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: var(--yellow); }
.browser-dots span:last-child { background: #28c840; }

.browser-url {
  flex: 1;
  background: #0a0a0c;
  border-radius: 6px;
  border: 1px solid #1a1a1e;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 8px;
}

.browser-url svg {
  color: #666;
  flex-shrink: 0;
}

.axiom-content {
  padding: 0;
  background: #0c0c0e;
  position: relative;
  overflow: hidden;
}

/* Scrollable feed area — show ~6 cards */
.ax-feed {
  max-height: 696px;
  overflow: hidden;
}

/* Header bar */
.ax-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px 10px 16px;
  border-bottom: 1px solid #1a1a1e;
  min-height: 48px;
}

.ax-header-title {
  font-size: 16px;
  font-weight: 500;
  color: #e0e0e0;
}

.ax-header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ax-quick-input {
  display: flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #222;
  border-radius: 14px;
  padding: 4px 4px 4px 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #888;
  height: 28px;
}

.ax-quick-input svg {
  color: #555;
  flex-shrink: 0;
}

.ax-quick-input span {
  color: #e0e0e0;
  font-weight: 500;
}

.ax-presets {
  display: flex;
  align-items: center;
  gap: 2px;
  border-left: 1px solid #222;
  padding-left: 4px;
  margin-left: 2px;
}

.ax-preset {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #555;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: pointer;
}

.ax-preset.active {
  color: #52c5ff;
}

.ax-filter-btn {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 4px;
  color: #888;
}

.ax-filter-dot {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #52c5ff;
  border: 1px solid #0c0c0e;
}

/* Token cards */
.ax-card {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 116px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  cursor: pointer;
  overflow: hidden;
  transition: background 0.1s;
}

/* Entry animation — new card slides in from top, pushes others down */
.ax-card-enter {
  animation: axCardSlideIn 0.5s ease forwards;
}

@keyframes axCardSlideIn {
  0% {
    min-height: 0;
    max-height: 0;
    opacity: 0;
    padding: 0;
  }
  60% {
    min-height: 116px;
    max-height: 116px;
    opacity: 0.3;
  }
  100% {
    min-height: 116px;
    max-height: 200px;
    opacity: 1;
  }
}

.ax-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* V / MC metrics - top right */
.ax-metrics {
  position: absolute;
  top: 14px;
  right: 16px;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  gap: 10px;
}

.ax-metric {
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.ax-metric-label {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: #555;
  padding-bottom: 1px;
}

.ax-metric-val {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: #e0e0e0;
}

.ax-metric-mc {
  font-family: var(--font-mono);
  font-size: 15px;
  font-weight: 500;
  color: #52c5ff;
}

/* Quick buy - bottom right */
.ax-buy-btn {
  position: absolute;
  bottom: 12px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 4px;
  background: #1a1a1e;
  border: none;
  border-radius: 4px;
  padding: 8px 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.15s;
}

.ax-buy-btn svg {
  color: #555;
}

.ax-card:hover .ax-buy-btn {
  opacity: 1;
}

/* Card inner layout */
.ax-card-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 12px 2px 12px;
  flex: 1;
}

/* Token image */
.ax-token-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.ax-token-img {
  width: 68px;
  height: 68px;
  border-radius: 3px;
  object-fit: cover;
  border: 2px solid rgba(0, 255, 100, 0.15);
}

.ax-dex-badge {
  position: absolute;
  bottom: 24px;
  left: 72px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #00c853;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 700;
  color: #000;
  font-family: var(--font-mono);
  border: 1.5px solid #0c0c0e;
}

.ax-addr {
  font-family: var(--font-mono);
  font-size: 11px;
  color: #555;
  white-space: nowrap;
}

/* Token details */
.ax-token-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  padding-top: 2px;
}

.ax-token-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.ax-token-name {
  font-size: 15px;
  font-weight: 500;
  color: #e0e0e0;
  letter-spacing: -0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ax-token-ticker {
  font-size: 15px;
  font-weight: 500;
  color: #555;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

/* Meta row: age + socials + engagement */
.ax-token-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.ax-age {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 500;
  color: #34d399;
}

.ax-socials {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ax-socials svg {
  color: #555;
  cursor: pointer;
  transition: color 0.15s;
}

.ax-socials svg:first-child {
  color: #5dbcff;
}

.ax-socials svg:hover {
  color: #aaa;
}

.ax-engagement {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ax-eng-item {
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: #888;
}

.ax-eng-item svg {
  color: #555;
  width: 14px;
  height: 14px;
}

/* ============================================
   HAZARD STRIPES — decorative dividers
   ============================================ */

.hazard-stripe {
  width: 100%;
  height: 6px;
  background: repeating-linear-gradient(
    -45deg,
    var(--yellow),
    var(--yellow) 10px,
    var(--black) 10px,
    var(--black) 20px
  );
}

/* ============================================
   FOOTER
   ============================================ */

footer {
  padding: 48px 0;
  border-top: 3px solid var(--yellow);
  background: var(--black);
  box-shadow: 0 -4px 30px rgba(255, 249, 32, 0.1);
}

.footer-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 4px;
  color: var(--yellow);
  text-shadow: 0 0 15px rgba(255, 249, 32, 0.3);
}

.footer-logo {
  width: 28px;
  height: 28px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(255, 249, 32, 0.4));
}

.footer-tagline {
  color: var(--gray);
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-links {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.footer-link {
  color: var(--yellow);
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-family: var(--font-mono);
  transition: all 0.2s;
  padding: 6px 12px;
  border: 1px solid transparent;
}

.footer-link:hover {
  border-color: var(--yellow);
  background: rgba(255, 249, 32, 0.05);
  box-shadow: 0 0 15px rgba(255, 249, 32, 0.2);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .metrics-row {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .feature-tabs {
    overflow-x: auto;
    gap: 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .feature-tabs::-webkit-scrollbar {
    display: none;
  }

  .feature-tab {
    min-width: 200px;
    flex: 0 0 auto;
    padding-right: 24px;
  }

  .feature-panel {
    flex-direction: column;
  }

  .panel-visual {
    flex: 0 0 auto;
    width: 100%;
    height: 160px;
  }

  .metrics-row {
    flex-direction: column;
  }

  .nav-links {
    display: none;
  }

  .hero-content {
    bottom: 40px;
    left: 20px;
    right: 20px;
  }

  .hero-logo {
    width: 48px;
    height: 48px;
  }

  .takeover-row {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .takeover-feed {
    flex: 0 0 auto;
    width: 100%;
  }

  #liquidFlowCanvas {
    max-width: 320px;
  }

  .axiom-frame {
    transform: rotateX(4deg) rotateY(0deg) scale(0.9);
  }

  .ax-card {
    height: auto;
    min-height: 100px;
  }

  .ax-quick-input {
    display: none;
  }

  .ax-token-img {
    width: 56px;
    height: 56px;
  }

  .ax-engagement {
    display: none;
  }

  .ax-buy-btn {
    opacity: 1;
    padding: 6px 12px;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  section:not(#hero) {
    padding: 80px 0;
  }
}
