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

:root {
  --navy: #0a0e1a;
  --navy-light: #111827;
  --navy-card: #151c2e;
  --red: #dc2626;
  --red-glow: #ef4444;
  --blue: #2563eb;
  --blue-glow: #3b82f6;
  --cyan: #06b6d4;
  --cyan-glow: #22d3ee;
  --white: #f8fafc;
  --gray: #94a3b8;
  --gray-dark: #475569;
  --gradient-patriot: linear-gradient(135deg, var(--red) 0%, var(--white) 50%, var(--blue) 100%);
  --gradient-neon: linear-gradient(135deg, var(--cyan-glow), var(--blue-glow));
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

::selection {
  background: var(--cyan);
  color: var(--navy);
}

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

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

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

/* ===== CURSOR GLOW ===== */
.cursor-glow {
  position: fixed;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

/* ===== PARTICLE CANVAS ===== */
#particleCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

/* ===== SCANLINE ===== */
.scanline {
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background 0.3s, backdrop-filter 0.3s, padding 0.3s;
}

.nav.scrolled {
  background: rgba(10, 14, 26, 0.85);
  backdrop-filter: blur(20px);
  padding: 10px 0;
  border-bottom: 1px solid rgba(6, 182, 212, 0.1);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.nav-logo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.3s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--cyan-glow);
  transition: width 0.3s;
}

.nav-links a:hover {
  color: var(--white);
}

.nav-links a:hover::after {
  width: 100%;
}

.btn-nav {
  padding: 8px 20px !important;
  font-size: 0.85rem !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: 0.3s;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), #b91c1c);
  color: var(--white);
  box-shadow: 0 0 30px rgba(220, 38, 38, 0.3);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(220, 38, 38, 0.5);
}

.btn-primary:hover::before {
  transform: translateX(100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--cyan);
  transform: translateY(-2px);
}

.btn-lg {
  padding: 18px 36px;
  font-size: 0.95rem;
}

.btn-nav {
  background: rgba(6, 182, 212, 0.15);
  color: var(--cyan-glow);
  border: 1px solid rgba(6, 182, 212, 0.3);
}

.btn-nav:hover {
  background: rgba(6, 182, 212, 0.25);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-banner {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 14, 26, 0.7) 0%, rgba(10, 14, 26, 0.4) 40%, rgba(10, 14, 26, 0.95) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10, 14, 26, 0.8) 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 24px 80px;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(6, 182, 212, 0.1);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--cyan-glow);
  margin-bottom: 32px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background: #22c55e;
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.5); }
  50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(34, 197, 94, 0); }
}

.hero-logo-wrap {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 32px;
}

.hero-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
  animation: float 6s ease-in-out infinite;
  filter: drop-shadow(0 0 30px rgba(6, 182, 212, 0.4));
}

.logo-ring {
  position: absolute;
  inset: -20px;
  border: 2px solid rgba(6, 182, 212, 0.2);
  border-radius: 50%;
  animation: ringRotate 8s linear infinite;
}

.logo-ring-2 {
  inset: -35px;
  border-color: rgba(220, 38, 38, 0.15);
  animation-direction: reverse;
  animation-duration: 12s;
}

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

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

.hero-title {
  font-family: var(--font-display);
  margin-bottom: 8px;
}

.title-line {
  display: block;
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: 6px;
  line-height: 1.2;
}

.title-accent {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.3); }
}

.hero-ticker {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 16px;
  color: var(--red-glow);
  text-shadow: 0 0 40px rgba(239, 68, 68, 0.5);
}

.glitch {
  position: relative;
  display: inline-block;
}

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

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

.glitch::after {
  color: var(--blue-glow);
  animation: glitchBottom 3s infinite;
  clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

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

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

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 500;
}

.highlight-red {
  color: var(--red-glow);
  font-weight: 700;
}

.highlight-blue {
  color: var(--cyan-glow);
  font-weight: 700;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 24px 40px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  backdrop-filter: blur(10px);
}

.stat {
  text-align: center;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--cyan-glow);
}

.stat-value.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-value.stat-icon svg {
  width: 36px;
  height: 36px;
  color: var(--cyan-glow);
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gray-dark);
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--gray-dark);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyan), transparent);
  animation: scrollPulse 2s infinite;
}

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

/* ===== MARQUEE ===== */
.marquee-section {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, var(--red), #1e3a8a, var(--red));
  background-size: 200% 100%;
  animation: marqueeBg 4s linear infinite;
  padding: 14px 0;
  overflow: hidden;
}

@keyframes marqueeBg {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.marquee {
  overflow: hidden;
}

.marquee-content {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 25s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--white);
  flex-shrink: 0;
}

.marquee-item svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.9;
}

@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

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

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

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--cyan);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: 2px;
}

.text-gradient {
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.about-card {
  position: relative;
  padding: 40px 32px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-patriot);
  opacity: 0;
  transition: opacity 0.4s;
}

.about-card:hover {
  transform: translateY(-8px);
  border-color: rgba(6, 182, 212, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.about-card-featured {
  border-color: rgba(6, 182, 212, 0.2);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), var(--navy-card));
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
  animation: cardGlow 4s ease-in-out infinite;
}

@keyframes cardGlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10%, 10%); }
}

.card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--cyan-glow);
}

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

.about-card-featured .card-icon {
  color: var(--red-glow);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.about-card p {
  color: var(--gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== INTEL ===== */
.intel {
  background: var(--navy);
}

.intel-panel {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 32px;
  align-items: start;
}

.intel-terminal {
  background: #0d1117;
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 12px;
  overflow: hidden;
  font-family: 'Courier New', monospace;
}

.terminal-header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

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

.terminal-dots span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.terminal-dots span:nth-child(1) { background: #ef4444; }
.terminal-dots span:nth-child(2) { background: #eab308; }
.terminal-dots span:nth-child(3) { background: #22c55e; }

.terminal-title {
  font-size: 0.8rem;
  color: var(--gray-dark);
}

.terminal-body {
  padding: 20px;
  font-size: 0.9rem;
  line-height: 2;
}

.terminal-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
}

.term-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.terminal-line.success .term-icon {
  color: #22c55e;
}

.terminal-line.warning .term-icon {
  color: #eab308;
}

.prompt {
  color: var(--cyan-glow);
  margin-right: 8px;
}

.terminal-line.success {
  color: #22c55e;
}

.terminal-line.warning {
  color: #eab308;
}

.typing::after {
  content: '▊';
  animation: blink 1s infinite;
  color: var(--cyan-glow);
}

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

.intel-specs {
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 8px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.spec-row:last-child {
  border-bottom: none;
}

.spec-key {
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-dark);
}

.spec-val {
  font-weight: 600;
  font-size: 1rem;
}

.status-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #22c55e;
}

/* ===== BUY ===== */
.buy {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
}

.buy-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s;
}

.step:hover {
  border-color: rgba(220, 38, 38, 0.3);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-neon);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.step p {
  color: var(--gray);
  font-size: 1rem;
}

.step-connector {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--red));
  margin-top: 60px;
  flex-shrink: 0;
  position: relative;
}

.step-connector::after {
  content: '→';
  position: absolute;
  right: -8px;
  top: -10px;
  color: var(--cyan);
  font-size: 1.2rem;
}

.ca-box {
  max-width: 700px;
  margin: 0 auto 32px;
  padding: 32px;
  background: var(--navy-card);
  border: 1px solid rgba(6, 182, 212, 0.15);
  border-radius: 16px;
  text-align: center;
}

.ca-box label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 3px;
  color: var(--gray-dark);
  margin-bottom: 12px;
}

.ca-input-wrap {
  display: flex;
  gap: 8px;
}

.ca-input-wrap input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  outline: none;
}

.ca-input-wrap input:focus {
  border-color: var(--cyan);
}

.btn-copy {
  padding: 14px 16px;
  background: rgba(6, 182, 212, 0.15);
  border: 1px solid rgba(6, 182, 212, 0.3);
  border-radius: 8px;
  color: var(--cyan-glow);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-copy:hover {
  background: rgba(6, 182, 212, 0.25);
}

.btn-copy.copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.4);
  color: #22c55e;
}

.ca-note {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--gray-dark);
}

.buy-cta {
  text-align: center;
}

/* ===== LINKS ===== */
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.link-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 24px;
  background: var(--navy-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.link-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

.link-card:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(6, 182, 212, 0.3);
  box-shadow: 0 10px 40px rgba(6, 182, 212, 0.1);
}

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

.link-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  flex-shrink: 0;
  color: var(--cyan-glow);
}

.link-icon svg {
  width: 32px;
  height: 32px;
}

.link-info h3 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 1px;
}

.link-info p {
  color: var(--gray);
  font-size: 0.95rem;
}

.link-arrow {
  margin-left: auto;
  color: var(--gray-dark);
  transition: transform 0.3s, color 0.3s;
}

.link-card:hover .link-arrow {
  transform: translate(4px, -4px);
  color: var(--cyan-glow);
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 2;
  padding: 48px 0 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--navy-light);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 16px;
}

.footer-brand img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.footer-brand strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.footer-brand span {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

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

.footer-links a {
  font-weight: 600;
  color: var(--gray);
  transition: color 0.3s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-dark);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .about-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .intel-panel {
    grid-template-columns: 1fr;
  }

  .buy-steps {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    width: 2px;
    height: 40px;
    margin: 0;
    background: linear-gradient(180deg, var(--cyan), var(--red));
  }

  .step-connector::after {
    content: '↓';
    right: -8px;
    top: auto;
    bottom: -12px;
  }

  .links-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(10, 14, 26, 0.95);
    backdrop-filter: blur(20px);
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid rgba(6, 182, 212, 0.1);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .btn-nav {
    display: none;
  }

  .hero-stats {
    flex-direction: column;
    gap: 16px;
    padding: 20px;
  }

  .stat-divider {
    width: 40px;
    height: 1px;
  }

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

  .footer-brand {
    flex-direction: column;
  }
}
