:root {
  /* Dark Mode Colors */
  --bg-base: #060a14;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-surface-elevated: rgba(255, 255, 255, 0.06);
  --bg-glass: rgba(255, 255, 255, 0.03);
  --bg-glass-hover: rgba(255, 255, 255, 0.05);

  --red-primary: #ef4444;
  --red-hover: #f87171;
  --red-glow: rgba(239, 68, 68, 0.15);
  --red-glow-strong: rgba(239, 68, 68, 0.3);
  --red-light: rgba(239, 68, 68, 0.1);

  --amber: #f59e0b;
  --amber-bg: rgba(245, 158, 11, 0.12);
  --amber-border: rgba(245, 158, 11, 0.25);

  --border-light: rgba(255, 255, 255, 0.08);
  --border-medium: rgba(255, 255, 255, 0.12);
  --border-strong: rgba(255, 255, 255, 0.15);
  --border-red: rgba(239, 68, 68, 0.2);

  /* Typography */
  --text-primary: #ffffff;
  --text-secondary: #9ca3af;
  --text-muted: #6b7280;

  /* Fonts */
  --font-sans: 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  /* Utils */
  --transition-fast: 0.15s ease-in-out;
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-glow: 0 0 20px rgba(239, 68, 68, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-base);
}

body {
  background-color: var(--bg-base);
  color: var(--text-primary);
  font-family: var(--font-sans);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(239, 68, 68, 0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 80% 100%, rgba(30, 60, 120, 0.08) 0%, transparent 60%);
}

.section-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(239, 68, 68, 0.05) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

nav, .page-container, section, footer {
  position: relative;
  z-index: 1;
}

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 {
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h3 { font-weight: 600; }

h1 {
  font-size: clamp(40px, 6vw, 80px);
  font-weight: 800;
  line-height: 1.05;
  margin-bottom: 24px;
}

h1 .accent {
  background: linear-gradient(135deg, #ff4d4d 0%, var(--red-primary) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(54px, 8vw, 100px);
  letter-spacing: -0.02em;
}

h1 .light {
  color: var(--text-muted);
}

h2 {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 20px;
}

h2 em {
  font-style: normal;
  color: var(--red-primary);
}

p {
  color: var(--text-secondary);
  line-height: 1.7;
}

a {
  color: var(--red-primary);
  text-decoration: none;
  transition: all var(--transition-fast);
}

a:hover {
  filter: brightness(1.2);
}

strong {
  color: var(--text-primary);
  font-weight: 600;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--red-primary);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--red-light);
  border: 1px solid var(--border-red);
  padding: 6px 14px;
  border-radius: 99px;
  box-shadow: 0 0 10px rgba(230,0,0,0.1);
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  display: flex;
  align-items: center;
  padding: 0 40px 0 15px;
  background: rgba(6, 10, 20, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--red-primary);
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(230, 0, 0, 0.4);
}

.nav-logo-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: 48px;
}

.nav-link {
  font-size: 14px;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  cursor: pointer;
  font-weight: 500;
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-secondary);
  background: var(--bg-surface-elevated);
  padding: 4px 12px;
  border-radius: 99px;
  border: 1px solid var(--border-light);
  letter-spacing: 0.05em;
  font-weight: 500;
}

.btn-nav {
  background: var(--red-primary);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 18px;
  color: white;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  transition: all var(--transition-fast);
  font-family: var(--font-sans);
  box-shadow: 0 2px 8px rgba(230,0,0,0.3);
}

.btn-nav:hover {
  background: var(--red-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(230,0,0,0.4);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border-strong);
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.btn-outline:hover {
  border-color: var(--red-primary);
  color: var(--red-primary);
  background: var(--red-light);
}

/* ── BUTTONS ── */
.btn-primary {
  background: linear-gradient(180deg, #ff1a1a 0%, var(--red-primary) 100%);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 14px 28px;
  color: white;
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 10px;
  transition: all var(--transition-fast);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(230,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.2);
}

/* ── FORMS ── */
.input-group {
  display: flex;
  gap: 12px;
  max-width: 500px;
}

.input-field {
  flex: 1;
  background: var(--bg-surface-elevated);
  border: 1px solid var(--border-strong);
  padding: 14px 18px;
  color: var(--text-primary);
  font-family: var(--font-sans);
  font-size: 15px;
  outline: none;
  border-radius: 10px;
  transition: all var(--transition-fast);
}

.input-field:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 3px var(--red-light);
  background: var(--bg-base);
}

.input-field::placeholder {
  color: var(--text-muted);
}

/* ── SECTIONS ── */
.section {
  padding: 80px 40px;
  position: relative;
}

.section-inner {
  max-width: 1140px;
  margin: 0 auto;
}

.section-sub {
  font-size: 18px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 64px;
}

/* ── GLASS CARDS ── */
.glass-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.015) !important;
  backdrop-filter: blur(40px) saturate(210%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(210%) !important;
  border: none !important;
  border-radius: 28px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0.5px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 32px;
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
}

.glass-card-elevated {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 28px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ── MARQUEE ── */
.marquee-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 16px 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.marquee {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.marquee-item {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  letter-spacing: 0.05em;
}

.marquee-item::after {
  content: '·';
  color: var(--red-primary);
  font-weight: bold;
}

@keyframes scroll {
  from { transform: translateX(0) }
  to { transform: translateX(-50%) }
}

/* ── ANIMATIONS ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.glow-bg {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(230,0,0,0.08) 0%, transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* ── FOOTER ── */
footer {
  background: rgba(255, 255, 255, 0.02);
  padding: 64px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  position: relative;
}

.footer-inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 48px;
}

.footer-cols {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-weight: 600;
}

.footer-col-item {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 12px;
  cursor: pointer;
  display: block;
}

.footer-col-item:hover {
  color: var(--red-primary);
}

.footer-bottom {
  max-width: 1140px;
  margin: 48px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--border-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom-text {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

/* ── PRICING TIERS ── */
.tier {
  background: rgba(255, 255, 255, 0.015) !important;
  backdrop-filter: blur(40px) saturate(210%) !important;
  -webkit-backdrop-filter: blur(40px) saturate(210%) !important;
  border: none !important;
  border-radius: 28px !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0.5px 0 rgba(255, 255, 255, 0.2) !important;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 48px;
}

.tier:hover {
  transform: translateY(-8px) scale(1.02);
}

.tier.featured {
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 0.5px 0 rgba(255, 255, 255, 0.2), 0 0 60px rgba(239, 68, 68, 0.15) !important;
}

/* ── BADGES & TAGS ── */
.tag {
  font-family: var(--font-mono);
  font-size: 10px;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--bg-surface-elevated);
  color: var(--text-secondary);
  border: 1px solid var(--border-light);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.tag.red {
  background: var(--red-light);
  color: var(--red-primary);
  border-color: var(--border-red);
}

.tag.green {
  background: rgba(16, 185, 129, 0.1);
  color: #10b981;
  border-color: rgba(16, 185, 129, 0.2);
}

/* ── STATS STRIP ── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 860px;
  margin: 24px auto 0;
}

.stat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 24px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  text-align: left;
  transition: all 0.2s ease;
}

.stat-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: rgba(239,68,68,0.2);
  transform: translateY(-2px);
}

.stat-card-icon {
  width: 36px;
  height: 36px;
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.stat-card-number {
  font-size: 28px;
  font-weight: 800;
  color: #f0f2f5;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card-label {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 12px;
}

.stat-card-source {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 640px) {
  .stats-strip { grid-template-columns: 1fr; }
}

/* ── MOBILE RESPONSIVE ── */
@media(max-width: 768px) {
  nav { padding: 0 20px; }
  .nav-links { display: none; }
  .section { padding: 80px 24px; }
  .input-group { flex-direction: column; }
  .footer-inner { flex-direction: column; }
  .footer-cols { gap: 32px; }
  h1 { font-size: 40px; }
  h2 { font-size: 32px; }
}

/* Custom Page Styles (About/Legal) */
.page-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 40px 80px;
}

.page-header {
  margin-bottom: 56px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-light);
}

.callout {
  background: var(--bg-surface);
  border: 1px solid var(--border-strong);
  border-left: 4px solid var(--red-primary);
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 40px;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 32px;
}

th, td {
  padding: 16px;
  text-align: left;
  border-bottom: 1px solid var(--border-light);
}

th {
  background: var(--bg-surface);
  font-weight: 600;
  color: var(--text-primary);
}

td {
  color: var(--text-secondary);
}

ul.styled-list {
  list-style: none;
  margin-bottom: 24px;
}

ul.styled-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
}

ul.styled-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--red-primary);
}
