/* ===== LANDING PAGE — Navbar ===== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(204, 0, 0, 0.15);
  padding: 0 24px;
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.15s;
}
.nav-links a:hover { color: #ffffff; }
.nav-dashboard-btn {
  background: #FF1A1A !important;
  color: #ffffff !important;
  padding: 8px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  font-size: 13px !important;
  transition: all 0.15s !important;
  box-shadow: 0 0 14px rgba(255,26,26,0.25);
}
.nav-dashboard-btn:hover {
  background: #FF3333 !important;
  box-shadow: 0 0 20px rgba(255,26,26,0.4) !important;
  transform: translateY(-1px);
}

/* ===== HERO ===== */
.hero {
  padding: 72px 24px 64px;
  background: radial-gradient(ellipse at 50% 0%, rgba(255,26,26,0.08) 0%, transparent 60%);
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
.hero-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: 0.5px;
  color: #f59e0b;
  background: rgba(245,158,11,0.1);
  border: 1px solid rgba(245,158,11,0.2);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.pulse-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #f59e0b;
  animation: dot-pulse 2s infinite;
}
@keyframes dot-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 20px;
  padding: 6px 14px;
  background: rgba(0,255,136,0.05);
  border: 1px solid rgba(0,255,136,0.12);
  border-radius: 100px;
}
.hero-social-proof .proof-icon { font-size: 14px; }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 32px;
}
.hero-benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 480px;
  margin: 0 auto 36px;
}
.hero-benefits li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
}
.benefit-icon { flex-shrink: 0; margin-top: 2px; }
.hero-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.cta-primary {
  display: inline-flex;
  align-items: center;
  padding: 13px 28px;
  background: linear-gradient(135deg, #FF1A1A 0%, #CC0000 100%);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(255,26,26,0.35);
  transition: all 0.15s;
  min-height: 48px;
  min-width: 160px;
  justify-content: center;
}
.cta-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(255,26,26,0.5);
  background: linear-gradient(135deg, #FF3333 0%, #DD1111 100%);
}
.cta-secondary {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.15s;
  min-height: 48px;
}
.cta-secondary:hover { border-color: rgba(255,255,255,0.35); color: #ffffff; }

/* ===== STICKY HEADER CTA ===== */
.navbar-sticky-cta {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}
.sticky-cta-btn {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  background: linear-gradient(135deg, #FF1A1A 0%, #CC0000 100%);
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border-radius: 12px;
  text-decoration: none;
  box-shadow: 0 6px 28px rgba(255,26,26,0.5), 0 0 0 1px rgba(255,26,26,0.3);
  transition: all 0.15s;
  white-space: nowrap;
  min-height: 52px;
  letter-spacing: 0.3px;
}
.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 40px rgba(255,26,26,0.6);
  background: linear-gradient(135deg, #FF3333 0%, #DD1111 100%);
}

/* ===== ALERT CARD (social proof / live demo) ===== */
.alert-section {
  padding: 48px 24px;
  background: #0D0D0D;
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
.alert-card {
  max-width: 680px;
  margin: 0 auto;
  background: #111111;
  border: 1px solid rgba(204,0,0,0.2);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,26,26,0.08);
}
.alert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: rgba(255,26,26,0.1);
  border-bottom: 1px solid rgba(255,26,26,0.12);
}
.alert-live {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #FF1A1A;
}
.live-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #FF1A1A;
  animation: live-pulse 1.5s infinite;
}
@keyframes live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,45,85,0.6); }
  50% { opacity: 0.7; box-shadow: 0 0 0 5px rgba(255,45,85,0); }
}
.alert-time { font-size: 11px; color: rgba(255,255,255,0.4); }
.alert-body { padding: 20px; }
.alert-token {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.token-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,26,26,0.1);
  border: 1px solid rgba(255,26,26,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: #FF1A1A;
  flex-shrink: 0;
}
.token-info { flex: 1; min-width: 0; }
.token-name { font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700; margin-bottom: 2px; }
.token-age { font-size: 12px; color: rgba(255,255,255,0.4); }
.risk-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.risk-high {
  background: rgba(255,26,26,0.15);
  color: #FF1A1A;
  border: 1px solid rgba(255,26,26,0.25);
}
.alert-signals { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.signal-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  background: rgba(255,255,255,0.02);
  border-radius: 8px;
}
.signal-icon { font-size: 14px; flex-shrink: 0; }
.signal-good { background: rgba(0,255,136,0.05); }
.signal-good .signal-icon { color: #00ff88; }
.alert-action {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  background: rgba(255,26,26,0.06);
  border: 1px solid rgba(255,26,26,0.12);
  border-radius: 8px;
}
.action-label { font-size: 12px; color: rgba(255,255,255,0.5); }
.action-tag {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  padding: 3px 10px;
  border-radius: 5px;
}
.tag-avoid {
  background: rgba(255,26,26,0.15);
  color: #FF1A1A;
  border: 1px solid rgba(255,26,26,0.2);
}
.alert-footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
  color: rgba(255,255,255,0.3);
}
.footer-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}

/* ===== FEATURES (How It Works) ===== */
.features {
  padding: 72px 24px;
  background: #000000;
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
.features-inner { max-width: 1100px; margin: 0 auto; }
.features-header { text-align: center; margin-bottom: 48px; }
.features-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 10px;
}
.features-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.5);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature {
  background: #0D0D0D;
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: 14px;
  padding: 28px 24px;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature:hover {
  border-color: rgba(204,0,0,0.3);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.feature-icon { margin-bottom: 16px; }
.feature h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.feature p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* 3-Step visual section */
.how-steps {
  padding: 56px 24px;
  background: #0D0D0D;
  border-bottom: 1px solid rgba(204,0,0,0.1);
}
.how-steps-inner { max-width: 900px; margin: 0 auto; }
.how-steps-header { text-align: center; margin-bottom: 44px; }
.how-steps-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-bottom: 8px;
}
.how-steps-header p { font-size: 15px; color: rgba(255,255,255,0.5); }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
.step-card {
  background: #111111;
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: 14px;
  padding: 28px 22px;
  text-align: center;
  position: relative;
}
.step-num {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,26,26,0.12);
  border: 1px solid rgba(255,26,26,0.25);
  color: #FF1A1A;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-icon { font-size: 32px; margin-bottom: 12px; }
.step-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}
.step-card p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 72px 24px;
  background: #000000;
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
.philosophy-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.phil-eyebrow {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #f59e0b;
  margin-bottom: 12px;
}
.philosophy-text h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 700;
  letter-spacing: -0.3px;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.25;
}
.philosophy-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 12px;
}
.philosophy-stat-block { display: flex; flex-direction: column; gap: 32px; }
.big-stat { }
.big-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  color: #FF1A1A;
  text-shadow: 0 0 30px rgba(255,26,26,0.4);
  line-height: 1;
  margin-bottom: 6px;
}
.big-label { font-size: 13px; color: rgba(255,255,255,0.45); }

/* ===== PRICING ===== */
.pricing-section {
  padding: 72px 24px;
  background: #0D0D0D;
  border-bottom: 1px solid rgba(204,0,0,0.12);
}
.pricing-inner { max-width: 1100px; margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 36px; }
.pricing-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.5vw, 34px);
  font-weight: 700;
  letter-spacing: -0.4px;
  color: #ffffff;
  margin-bottom: 8px;
}
.pricing-header p { font-size: 15px; color: rgba(255,255,255,0.5); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.pricing-card {
  background: #111111;
  border: 1px solid rgba(204,0,0,0.15);
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  transition: all 0.15s;
}
.pricing-card:hover { border-color: rgba(204,0,0,0.35); transform: translateY(-2px); }
.pricing-card.featured {
  border-color: rgba(0,255,136,0.25);
  background: linear-gradient(180deg, rgba(0,255,136,0.04) 0%, #111111 60%);
  box-shadow: 0 0 0 1px rgba(0,255,136,0.1), 0 8px 32px rgba(0,255,136,0.08);
}
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: #FF1A1A;
  color: #ffffff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 3px 12px;
  border-radius: 100px;
  white-space: nowrap;
}
.pricing-tier {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 8px;
}
.pricing-price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing-amount {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -1px;
  color: #ffffff;
}
.pricing-period { font-size: 12px; color: rgba(255,255,255,0.4); }
.pricing-desc { font-size: 12px; color: rgba(255,255,255,0.45); margin-bottom: 20px; min-height: 32px; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; flex: 1; }
.pricing-features li { font-size: 12px; display: flex; align-items: flex-start; gap: 8px; color: rgba(255,255,255,0.7); }
.pricing-features li::before { content: '✓'; color: #FF1A1A; font-size: 11px; margin-top: 1px; flex-shrink: 0; }
.pricing-features li.disabled { color: rgba(255,255,255,0.25); }
.pricing-features li.disabled::before { content: '✗'; color: rgba(255,255,255,0.2); }
.pricing-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.15s;
  text-align: center;
  min-height: 44px;
}
.btn.btn-ghost.pricing-cta {
  background: transparent;
  border: 1px solid rgba(204,0,0,0.2);
  color: rgba(255,255,255,0.7);
}
.btn.btn-ghost.pricing-cta:hover {
  border-color: rgba(204,0,0,0.4);
  color: #ffffff;
  background: rgba(255,26,26,0.05);
}
.pricing-cta.pro-cta {
  background: linear-gradient(135deg, #FF1A1A 0%, #CC0000 100%);
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 20px rgba(255,26,26,0.25);
  font-weight: 700;
}
.pricing-cta.pro-cta:hover {
  box-shadow: 0 6px 28px rgba(255,26,26,0.4);
  transform: translateY(-1px);
}

/* ===== CLOSING ===== */
.closing {
  padding: 72px 24px;
  background: linear-gradient(180deg, #000000 0%, rgba(255,26,26,0.04) 100%);
  text-align: center;
}
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 700;
  letter-spacing: -0.4px;
  line-height: 1.3;
  color: #ffffff;
  margin-bottom: 16px;
}
.closing p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.65; }

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px 32px;
  background: #0D0D0D;
  border-top: 1px solid rgba(204,0,0,0.1);
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.footer-brand .nav-logo { margin-bottom: 8px; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-head {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 4px;
}
.footer-col a, .footer-col span {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.15s;
}
.footer-col a:hover { color: rgba(255,255,255,0.8); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.05);
  font-size: 12px;
  color: rgba(255,255,255,0.25);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .navbar { padding: 0 16px; }
  .nav-links a:not(.nav-dashboard-btn) { display: none; }
  .hero { padding: 48px 20px 40px; }
  .hero h1 { font-size: 28px; }
  .hero-sub { font-size: 15px; }
  .hero-benefits { gap: 8px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-row { grid-template-columns: 1fr; }
  .philosophy-inner { grid-template-columns: 1fr; gap: 32px; }
  .pricing-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { flex-direction: column; gap: 24px; }
  .sticky-cta-btn { font-size: 14px; padding: 12px 28px; }
  .navbar-sticky-cta { bottom: 16px; }
}
@media (max-width: 480px) {
  .hero { padding: 36px 16px 32px; }
  .hero h1 { font-size: 24px; }
  .hero-cta { flex-direction: column; gap: 10px; }
  .cta-primary, .cta-secondary { width: 100%; justify-content: center; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .cta-primary { min-height: 52px; font-size: 14px; }
  .cta-secondary { min-height: 48px; }
  .sticky-cta-btn { min-height: 52px; padding: 14px 28px; }
}