@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&display=swap');

:root {
  --bg: #0a0e17;
  --bg-elevated: #111827;
  --bg-card: #161d2e;
  --fg: #e2e8f0;
  --fg-muted: #94a3b8;
  --accent: #22d3ee;
  --accent-dim: rgba(34, 211, 238, 0.12);
  --accent-glow: rgba(34, 211, 238, 0.25);
  --green: #34d399;
  --green-dim: rgba(52, 211, 153, 0.12);
  --amber: #fbbf24;
  --red: #f87171;
  --font-display: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 12px;
  --max-width: 1080px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-display);
  line-height: 1.65;
  overflow-x: hidden;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* HERO */
.hero {
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--accent-dim);
  border: 1px solid rgba(34, 211, 238, 0.2);
  border-radius: 100px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  max-width: 700px;
}

.hero h1 .highlight {
  color: var(--accent);
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 540px;
  line-height: 1.6;
}

/* LIVE TICKER */
.ticker {
  margin-top: 56px;
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 20px 28px;
  max-width: 600px;
  font-family: var(--font-mono);
  font-size: 14px;
}

.ticker-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
  color: var(--fg-muted);
}

.ticker-line .status {
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 100px;
  font-weight: 500;
  white-space: nowrap;
}

.status-resolved {
  background: var(--green-dim);
  color: var(--green);
}

.status-escalated {
  background: rgba(251, 191, 36, 0.12);
  color: var(--amber);
}

.ticker-line .time {
  margin-left: auto;
  color: rgba(148, 163, 184, 0.5);
  font-size: 12px;
}

/* STATS BAR */
.stats-bar {
  padding: 64px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* HOW IT WORKS */
.how-section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-heading {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 500px;
}

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

.step {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: border-color 0.3s ease;
}

.step:hover {
  border-color: rgba(34, 211, 238, 0.25);
}

.step-number {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--accent);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.step-number::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(34, 211, 238, 0.2);
}

.step h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* WHAT IT HANDLES */
.handles-section {
  padding: 80px 0 100px;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.handles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.handle-card {
  background: var(--bg-elevated);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.handle-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  background: var(--accent-dim);
}

.handle-card h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.handle-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* CLOSING */
.closing {
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.closing-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  position: relative;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* FOOTER */
footer {
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.04);
  text-align: center;
}

footer p {
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.4);
  font-family: var(--font-mono);
}

/* MOBILE */
@media (max-width: 768px) {
  .hero { padding: 80px 0 60px; min-height: auto; }
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .handles-grid { grid-template-columns: 1fr; }
  .ticker { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .container { padding: 0 16px; }
}