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

:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ede6;
  --fg-muted: #8a8780;
  --accent: #e8c547;
  --accent-dim: rgba(232, 197, 71, 0.15);
  --accent-glow: rgba(232, 197, 71, 0.08);
  --green: #4ade80;
  --red: #ef4444;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --max-width: 1100px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.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;
  padding: 120px 0 80px;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  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-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--accent-dim);
  border: 1px solid rgba(232, 197, 71, 0.25);
  border-radius: 100px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

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

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  max-width: 800px;
  position: relative;
  z-index: 1;
}

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

.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 540px;
  margin-top: 24px;
  line-height: 1.65;
  position: relative;
  z-index: 1;
}

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

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

.stat-item .stat-number {
  font-family: var(--font-display);
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: -0.02em;
}

.stat-item .stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ---- WHAT IT DOES ---- */
.what-section {
  padding: 100px 0;
}

.section-label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 600px;
}

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

.capability-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 36px 32px;
  transition: border-color 0.2s;
}

.capability-card:hover {
  border-color: rgba(232, 197, 71, 0.2);
}

.capability-card .card-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.capability-card h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.capability-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ---- COMPARISON ---- */
.comparison-section {
  padding: 100px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 48px;
}

.comparison-col {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
}

.comparison-col.them {
  opacity: 0.6;
}

.comparison-col.us {
  border-color: rgba(232, 197, 71, 0.3);
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(232, 197, 71, 0.04) 100%);
}

.comparison-col h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.comparison-col.us h3 {
  color: var(--accent);
}

.comparison-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.comparison-col ul li {
  font-size: 15px;
  color: var(--fg-muted);
  padding-left: 24px;
  position: relative;
}

.comparison-col.them ul li::before {
  content: '\2715';
  position: absolute;
  left: 0;
  color: var(--red);
  font-size: 13px;
}

.comparison-col.us ul li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--green);
  font-size: 14px;
}

/* ---- CLOSING ---- */
.closing-section {
  padding: 120px 0 100px;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.closing-section h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.03em;
  max-width: 650px;
  margin: 0 auto 20px;
}

.closing-section p {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.65;
}

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

footer p {
  font-size: 13px;
  color: var(--fg-muted);
  opacity: 0.6;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .stats-grid { grid-template-columns: 1fr; gap: 32px; }
  .capabilities-grid { grid-template-columns: 1fr; }
  .comparison-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding: 80px 0 60px; }
  .capability-card { padding: 28px 24px; }
  .comparison-col { padding: 32px 28px; }
}