@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0B0F1A;
  --bg-alt: #111827;
  --fg: #F0F0F0;
  --fg-muted: #8892A4;
  --accent: #FF4500;
  --accent-dim: rgba(255, 69, 0, 0.08);
  --accent-mid: rgba(255, 69, 0, 0.2);
  --border: rgba(255, 255, 255, 0.07);
  --radius: 10px;
  --radius-lg: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  background: rgba(11, 15, 26, 0.85);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 22px;
  letter-spacing: 1px;
  color: var(--fg);
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 400;
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 96px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,69,0,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,69,0,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
}
.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255,69,0,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 84px);
  line-height: 0.95;
  letter-spacing: 1px;
  color: var(--fg);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 440px;
}

/* AGENT PANEL */
.agent-panel {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
}
.panel-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,69,0,0.06);
}
.agent-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(255,69,0,0.4);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.agent-status {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
}
.activity-feed {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 8px;
  transition: background 0.2s;
}
.activity-item.active {
  background: rgba(255,69,0,0.08);
}
.activity-icon {
  width: 28px;
  height: 28px;
  border-radius: 6px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.activity-text {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  padding-top: 4px;
}
.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--border);
}
.stat {
  padding: 16px 12px;
  text-align: center;
}
.stat + .stat {
  border-left: 1px solid var(--border);
}
.stat-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  color: var(--accent);
  letter-spacing: 1px;
}
.stat-label {
  font-size: 11px;
  color: var(--fg-muted);
  margin-top: 2px;
  font-weight: 500;
}

/* HOW IT WORKS */
.howitworks {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.howitworks-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 60px);
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 64px;
}
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  justify-content: center;
}
.step {
  flex: 1;
  max-width: 280px;
  text-align: left;
}
.step-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: var(--accent);
  opacity: 0.3;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.step h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.step-arrow {
  padding: 0 24px;
  padding-top: 28px;
  color: var(--fg-muted);
  flex-shrink: 0;
}

/* FEATURES */
.features {
  padding: 96px 0;
}
.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.features-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  text-align: center;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.feature-card {
  padding: 36px 32px;
  background: var(--bg);
  transition: background 0.2s;
}
.feature-card:hover {
  background: var(--bg-alt);
}
.feature-icon {
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 10px;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* WHOS RUNNING */
.whosrunning {
  padding: 96px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.whosrunning-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.persona-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.persona-col h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  letter-spacing: 1px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 24px;
}
.persona-col p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.stats-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.big-stat {
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}
.big-stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  color: var(--accent);
  letter-spacing: 1px;
  line-height: 1;
  margin-bottom: 8px;
}
.big-stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* CLOSING */
.closing {
  padding: 96px 0 120px;
}
.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.closing-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent-mid);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 32px;
}
.closing-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: 1px;
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-sub {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin: 0 auto 48px;
}
.closing-vision {
  max-width: 640px;
  margin: 0 auto;
  padding: 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--bg-alt);
}
.vision-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 12px;
}
.closing-vision p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* FOOTER */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--fg);
}
.footer-brand p {
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 4px;
}
.footer-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--fg-muted);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .howitworks-inner { padding: 0 24px; }
  .steps { flex-direction: column; align-items: flex-start; }
  .step-arrow { transform: rotate(90deg); padding: 8px 0; }
  .features-grid { grid-template-columns: 1fr; }
  .whosrunning-inner { grid-template-columns: 1fr; gap: 48px; }
  .closing-inner { padding: 0 24px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
  .nav-tagline { display: none; }
  .nav-inner { padding: 14px 24px; }
}

@media (max-width: 480px) {
  .hero { padding: 56px 0 72px; }
  .panel-stats { grid-template-columns: repeat(3, 1fr); }
  .stat-value { font-size: 22px; }
  .big-stat-number { font-size: 44px; }
}