/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg-deep: #050508;
  --bg-dark: #0a0a10;
  --bg-card: rgba(12, 12, 18, 0.85);
  --orange: #ff4500;
  --orange-bright: #ff6b00;
  --orange-glow: #ff8c00;
  --orange-dim: rgba(255, 69, 0, 0.15);
  --cyan: #00d4ff;
  --cyan-dim: rgba(0, 212, 255, 0.12);
  --text: #e8e8ec;
  --text-muted: #8888a0;
  --border: rgba(255, 69, 0, 0.25);
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(255, 69, 0, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 100%, rgba(255, 107, 0, 0.1) 0%, transparent 45%),
    var(--bg-deep);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

/* ===== BACKGROUND EFFECTS ===== */
.ai-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

#ai-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.95;
}

.ai-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.65;
  will-change: transform;
}

.ai-orb-1 {
  width: 650px;
  height: 650px;
  top: -12%;
  left: -8%;
  background: radial-gradient(circle, rgba(255, 107, 0, 0.95) 0%, rgba(255, 69, 0, 0.35) 40%, transparent 72%);
  animation: orbFloat1 18s ease-in-out infinite;
}

.ai-orb-2 {
  width: 720px;
  height: 720px;
  top: 30%;
  right: -12%;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.85) 0%, rgba(255, 140, 0, 0.3) 45%, transparent 72%);
  animation: orbFloat2 22s ease-in-out infinite;
}

.ai-orb-3 {
  width: 550px;
  height: 550px;
  bottom: 0;
  left: 20%;
  background: radial-gradient(circle, rgba(255, 140, 0, 0.8) 0%, rgba(255, 69, 0, 0.25) 45%, transparent 72%);
  animation: orbFloat3 16s ease-in-out infinite;
}

.ai-orb-4 {
  width: 480px;
  height: 480px;
  top: 55%;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 80, 0, 0.7) 0%, transparent 70%);
  animation: orbFloat2 20s ease-in-out infinite reverse;
  opacity: 0.5;
}

.ai-beam {
  position: absolute;
  width: 3px;
  height: 180px;
  background: linear-gradient(to bottom, transparent, rgba(255, 140, 0, 0.95), rgba(255, 69, 0, 0.6), transparent);
  opacity: 0.75;
  filter: blur(0.5px);
  box-shadow: 0 0 20px rgba(255, 107, 0, 0.8);
}

.ai-beam-1 {
  top: 20%;
  left: 18%;
  animation: beamScan 5s linear infinite;
}

.ai-beam-2 {
  top: 45%;
  right: 22%;
  animation: beamScan 7s linear infinite 1.5s;
}

.ai-beam-3 {
  top: 10%;
  left: 62%;
  animation: beamScan 6s linear infinite 3s;
}

.ai-vignette {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 35%, rgba(255, 69, 0, 0.08) 100%);
  pointer-events: none;
}

@keyframes orbFloat1 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  33% { transform: translate(100px, 80px) scale(1.15); opacity: 0.8; }
  66% { transform: translate(50px, 140px) scale(1.05); opacity: 0.7; }
}

@keyframes orbFloat2 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  50% { transform: translate(-120px, -100px) scale(1.2); opacity: 0.85; }
}

@keyframes orbFloat3 {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.65; }
  40% { transform: translate(80px, -90px) scale(1.12); opacity: 0.8; }
  80% { transform: translate(-70px, 50px) scale(0.98); opacity: 0.7; }
}

@keyframes beamScan {
  0% { transform: translateY(-180px); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translateY(calc(100vh + 180px)); opacity: 0; }
}

.grid-bg {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 69, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 69, 0, 0.12) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 0;
  animation: gridDrift 20s linear infinite;
}

@keyframes gridDrift {
  0% { background-position: 0 0; opacity: 0.85; }
  50% { opacity: 1; }
  100% { background-position: 50px 50px; opacity: 0.85; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-orb,
  .ai-beam,
  .grid-bg {
    animation: none;
  }

  .section-bg-systems::before,
  .section-bg-chart::after {
    animation: none;
  }

  #ai-canvas {
    display: none;
  }
}

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

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(5, 5, 8, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

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

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--orange);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.4);
}

.nav-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s, text-shadow 0.3s;
}

.nav-links a:hover {
  color: var(--orange-bright);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.5);
}

.nav-cta {
  padding: 8px 20px !important;
  border: 1px solid var(--orange) !important;
  color: var(--orange-bright) !important;
  border-radius: 2px;
  transition: background 0.3s, box-shadow 0.3s !important;
}

.nav-cta:hover {
  background: var(--orange-dim) !important;
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.3) !important;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  color: var(--text-muted) !important;
  transition: color 0.3s, border-color 0.3s, background 0.3s, box-shadow 0.3s !important;
}

.nav-social:hover {
  color: var(--text) !important;
  border-color: var(--text);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.1);
  text-shadow: none !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--orange);
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-top: 72px;
  padding-bottom: 80px;
}

.hero-banner-wrap {
  position: relative;
  width: 100%;
  max-width: 2172px;
  margin: 0 auto;
  line-height: 0;
}

.hero-banner {
  width: 100%;
  height: auto;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 70%,
    rgba(5, 5, 8, 0.5) 90%,
    var(--bg-deep) 100%
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 48px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--cyan);
  background: var(--cyan-dim);
  border: 1px solid rgba(0, 212, 255, 0.3);
  padding: 8px 16px;
  margin-bottom: 24px;
}

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

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

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

.hero-glitch {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  color: var(--text);
  text-shadow:
    0 0 40px rgba(255, 69, 0, 0.5),
    0 0 80px rgba(255, 69, 0, 0.2);
  position: relative;
}

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 3vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--orange-bright);
}

.hero-tagline {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 36px;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-bright));
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 69, 0, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 40px rgba(255, 69, 0, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--orange);
  color: var(--orange-bright);
  background: var(--orange-dim);
}

.btn-x:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.hero-scroll {
  display: none;
}

.hero-scroll span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  color: var(--text-muted);
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  padding: 100px 0;
  overflow: hidden;
}

.section-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

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

.section-header {
  margin-bottom: 60px;
}

.section-header.center {
  text-align: center;
}

.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--orange);
  display: block;
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 800;
  letter-spacing: 0.05em;
}

.accent {
  background: linear-gradient(135deg, var(--orange-bright), var(--orange-glow));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== ABOUT ===== */
.about {
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-dark) 50%, var(--bg-deep) 100%);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-frame {
  position: relative;
  border: 1px solid var(--border);
  overflow: hidden;
  background: var(--bg-card);
}

.about-img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  filter: contrast(1.05) saturate(1.1);
}

.frame-corner {
  position: absolute;
  width: 24px;
  height: 24px;
  border-color: var(--orange);
  border-style: solid;
}

.frame-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.frame-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.frame-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.frame-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.scan-bar {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  animation: scanMove 4s linear infinite;
  opacity: 0.7;
}

@keyframes scanMove {
  0% { top: 0; }
  100% { top: 100%; }
}

.about-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}

.stat {
  flex: 1;
  text-align: center;
  padding: 16px;
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--orange-bright);
  display: block;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--orange-bright);
}

.stat-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: block;
  margin-top: 4px;
}

.about-desc {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.about-list {
  list-style: none;
}

.about-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 69, 0, 0.1);
  font-size: 1.05rem;
  color: var(--text);
}

.list-icon {
  color: var(--orange);
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.inline-link {
  color: var(--orange-bright);
  border-bottom: 1px solid rgba(255, 107, 0, 0.4);
  transition: color 0.3s, border-color 0.3s;
}

.inline-link:hover {
  color: var(--orange-glow);
  border-color: var(--orange-glow);
}

/* ===== FEATURES ===== */
.features {
  background: linear-gradient(180deg, #07070c 0%, #0f0a08 45%, #07070c 100%);
  border-top: 1px solid rgba(255, 69, 0, 0.3);
  border-bottom: 1px solid rgba(255, 69, 0, 0.3);
}

.section-bg-systems {
  background:
    radial-gradient(ellipse 70% 55% at 15% 50%, rgba(255, 107, 0, 0.18) 0%, transparent 65%),
    radial-gradient(ellipse 70% 55% at 85% 50%, rgba(255, 69, 0, 0.14) 0%, transparent 65%),
    radial-gradient(circle at 50% 0%, rgba(255, 140, 0, 0.1) 0%, transparent 50%);
}

.section-bg-systems::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 69, 0, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 69, 0, 0.07) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 85% 75% at 50% 50%, black 20%, transparent 100%);
  animation: systemsGridPulse 6s ease-in-out infinite;
}

.section-bg-systems::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      -55deg,
      transparent,
      transparent 120px,
      rgba(255, 107, 0, 0.04) 120px,
      rgba(255, 107, 0, 0.04) 121px
    );
  opacity: 0.8;
}

@keyframes systemsGridPulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 32px;
  border: 1px solid rgba(255, 69, 0, 0.2);
  background: rgba(5, 5, 8, 0.55);
  backdrop-filter: blur(8px);
  box-shadow:
    inset 0 0 60px rgba(255, 69, 0, 0.06),
    0 0 80px rgba(255, 69, 0, 0.08);
}

.feature-card {
  background: rgba(8, 8, 14, 0.75);
  border: 1px solid var(--border);
  padding: 32px 24px;
  transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255, 107, 0, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  box-shadow: 0 12px 40px rgba(255, 69, 0, 0.15);
}

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

.feature-icon {
  width: 56px;
  height: 56px;
  color: var(--orange-bright);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

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

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
  color: var(--text);
  position: relative;
  z-index: 1;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ===== CHART ===== */
.chart {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #120c08 40%, #0a0604 60%, var(--bg-deep) 100%);
  border-top: 1px solid rgba(255, 140, 0, 0.25);
  border-bottom: 1px solid rgba(255, 140, 0, 0.25);
}

.section-bg-chart {
  background:
    radial-gradient(ellipse 90% 70% at 50% 50%, rgba(255, 69, 0, 0.14) 0%, transparent 70%),
    radial-gradient(circle at 10% 80%, rgba(255, 107, 0, 0.12) 0%, transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(255, 140, 0, 0.1) 0%, transparent 40%);
}

.section-bg-chart::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent,
    transparent 24px,
    rgba(255, 69, 0, 0.06) 24px,
    rgba(255, 69, 0, 0.06) 25px
  );
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  opacity: 0.7;
}

.section-bg-chart::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 0, 0.9), rgba(255, 69, 0, 0.6), transparent);
  box-shadow: 0 0 24px rgba(255, 107, 0, 0.6);
  animation: chartScanLine 5s linear infinite;
}

@keyframes chartScanLine {
  0% { top: 8%; opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { top: 92%; opacity: 0; }
}

.chart-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.chart-panel {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 36px;
  border: 1px solid rgba(255, 69, 0, 0.25);
  background: rgba(5, 5, 8, 0.6);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 0 80px rgba(255, 69, 0, 0.08),
    0 0 100px rgba(255, 69, 0, 0.12);
}

.chart-frame {
  position: relative;
  border: 1px solid rgba(255, 140, 0, 0.35);
  background: var(--bg-card);
  overflow: hidden;
  box-shadow:
    0 0 50px rgba(255, 69, 0, 0.15),
    inset 0 0 40px rgba(255, 69, 0, 0.05);
}

.chart-embed {
  display: block;
  width: 100%;
  height: 560px;
  border: none;
  background: #0a0a10;
}

.chart-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
  transition: color 0.3s, text-shadow 0.3s;
}

.chart-link:hover {
  color: var(--orange-bright);
  text-shadow: 0 0 12px rgba(255, 107, 0, 0.4);
}

/* ===== TOKEN ===== */
.token {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #0d0806 50%, var(--bg-deep) 100%);
}

.token-panel {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 60px;
  text-align: center;
  overflow: hidden;
}

.token-glow {
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 69, 0, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.token-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.ca-box {
  max-width: 560px;
  margin: 0 auto 40px;
  text-align: left;
}

.ca-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  display: block;
  margin-bottom: 10px;
}

.ca-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(0, 0, 0, 0.5);
  border: 1px solid var(--border);
  padding: 4px 4px 4px 20px;
}

.ca-address {
  flex: 1;
  font-family: 'Courier New', monospace;
  font-size: 1.1rem;
  color: var(--orange-glow);
  word-break: break-all;
  background: none;
  border: none;
}

.btn-copy {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  padding: 12px 20px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: background 0.3s, box-shadow 0.3s;
  flex-shrink: 0;
}

.btn-copy:hover {
  background: var(--orange-bright);
  box-shadow: 0 0 20px rgba(255, 69, 0, 0.5);
}

.btn-copy.copied {
  background: #00c853;
}

.hidden {
  display: none !important;
}

.trade-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 720px;
  margin: 0 auto;
}

.trade-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border);
  transition: all 0.3s;
  text-align: left;
}

.trade-card:hover {
  border-color: var(--orange);
  background: var(--orange-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 69, 0, 0.2);
}

.trade-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  flex-shrink: 0;
}

.trade-icon.pumpswap {
  background: rgba(255, 69, 0, 0.2);
  color: var(--orange-bright);
}

.trade-icon.dex {
  background: var(--cyan-dim);
  color: var(--cyan);
}

.trade-icon.x-social {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.trade-icon svg {
  width: 24px;
  height: 24px;
}

.trade-name {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  display: block;
  color: var(--text);
}

.trade-action {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--border);
  padding: 48px 0;
  background: var(--bg-deep);
}

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--orange);
}

.footer-brand span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.15em;
  color: var(--orange-bright);
}

.footer-disclaimer {
  font-size: 0.85rem;
  color: var(--text-muted);
  max-width: 500px;
  margin: 0 auto 20px;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--text);
  padding: 10px 20px;
  border: 1px solid var(--border);
  transition: border-color 0.3s, background 0.3s, box-shadow 0.3s;
}

.social-link:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.08);
}

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

.footer-links a {
  font-family: var(--font-display);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--orange-bright);
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(136, 136, 160, 0.5);
  letter-spacing: 0.05em;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(5, 5, 8, 0.97);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 1.5rem;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    opacity: 0;
    transition: transform 0.3s, opacity 0.3s;
    pointer-events: none;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-stats {
    flex-direction: column;
    gap: 12px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .token-panel {
    padding: 40px 24px;
  }

  .chart-embed {
    height: 420px;
  }

  .chart-panel {
    padding: 20px 16px;
  }

  .trade-links {
    grid-template-columns: 1fr;
  }

  .nav-social {
    width: 100%;
    height: 44px;
  }

  .ca-row {
    flex-direction: column;
    padding: 16px;
    gap: 12px;
  }

  .btn-copy {
    width: 100%;
    justify-content: center;
  }

  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
