/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=DM+Serif+Display:ital@0;1&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===== CSS VARIABLES ===== */
:root {
  --bg: #0d0d12;
  --bg-alt: #111118;
  --bg-card: #16161f;
  --bg-card-hover: #1c1c26;
  --fg: #f0ede6;
  --fg-muted: #8a8898;
  --fg-subtle: #5a5870;
  --accent: #f5a623;
  --accent-dim: #c4881a;
  --accent-glow: rgba(245, 166, 35, 0.12);
  --green: #3ecf8e;
  --green-dim: rgba(62, 207, 142, 0.12);
  --border: rgba(255,255,255,0.06);
  --border-accent: rgba(245, 166, 35, 0.25);
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

/* ===== BODY ===== */
body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  background: rgba(13,13,18,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 22px;
  color: var(--fg);
  letter-spacing: -0.3px;
}

.nav-tagline {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--fg-subtle);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  padding: 120px 48px 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.hero-glow {
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(245,166,35,0.06) 0%, transparent 65%);
  pointer-events: none;
}

.hero-content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 80px;
  align-items: center;
}

.hero-left {}

.hero-kicker {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(52px, 6vw, 80px);
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  max-width: 520px;
  margin-bottom: 48px;
  font-weight: 300;
}

/* Call cards */
.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.call-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.call-card--active {
  border-color: var(--border-accent);
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, var(--bg-card) 100%);
  box-shadow: 0 0 24px rgba(245,166,35,0.06);
}

.call-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  flex-shrink: 0;
}

.call-avatar--done {
  background: var(--green-dim);
  border-color: rgba(62,207,142,0.25);
  color: var(--green);
}

.call-info { flex: 1; }

.call-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--fg);
  margin-bottom: 2px;
}

.call-time {
  font-size: 12px;
  color: var(--fg-muted);
}

.call-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 100px;
}

.call-badge--live {
  background: rgba(245,166,35,0.15);
  color: var(--accent);
  animation: pulse-live 2s ease-in-out infinite;
}

.call-badge--done {
  background: var(--green-dim);
  color: var(--green);
}

@keyframes pulse-live {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Stats column */
.hero-right {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 40px 36px;
  position: relative;
}

.hero-stat-block {
  padding: 28px 0;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 48px;
  letter-spacing: -1px;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 10px;
}

.hero-stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.5;
  font-weight: 300;
}

.hero-stat-divider {
  height: 1px;
  background: var(--border);
}

/* ===== STATS BAR ===== */
.stats {
  padding: 56px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.stats-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.stat-item {
  padding: 0 48px 0 0;
}

.stat-value {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--fg);
  letter-spacing: -0.5px;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 300;
  line-height: 1.5;
}

.stat-divider {
  width: 1px;
  height: 56px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== FEATURES ===== */
.features {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.features-header {
  margin-bottom: 72px;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  letter-spacing: -1.5px;
  line-height: 1.1;
  color: var(--fg);
  margin-bottom: 16px;
}

.features-sub {
  font-size: 18px;
  color: var(--fg-muted);
  font-weight: 300;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.feature-card {
  background: var(--bg);
  padding: 40px 36px;
  transition: background 0.3s ease;
}

.feature-card:hover {
  background: var(--bg-alt);
}

.feature-card--primary {
  background: var(--bg-alt);
}

.feature-card--primary:hover {
  background: #1a1a24;
}

.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-glow);
  border: 1px solid var(--border-accent);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 24px;
}

.feature-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.feature-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
  margin-bottom: 20px;
}

.feature-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.feature-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--fg-subtle);
}

/* ===== PROCESS ===== */
.process {
  padding: 120px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.process-header {
  max-width: 1200px;
  margin: 0 auto 72px;
  text-align: center;
}

.process-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 52px);
  letter-spacing: -1px;
  color: var(--fg);
  margin-bottom: 16px;
}

.process-sub {
  font-size: 17px;
  color: var(--fg-muted);
  font-weight: 300;
}

.process-steps {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 60px 1fr 60px 1fr;
  align-items: start;
}

.process-step {}

.step-number {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--accent);
  opacity: 0.2;
  margin-bottom: 20px;
  letter-spacing: -2px;
}

.step-name {
  font-size: 18px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.step-desc {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

.step-connector {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  margin-top: 32px;
}

/* ===== INDUSTRIES ===== */
.industries {
  padding: 120px 48px;
  max-width: 1200px;
  margin: 0 auto;
}

.industries-header {
  margin-bottom: 56px;
}

.industries-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 48px);
  letter-spacing: -1px;
  line-height: 1.15;
  color: var(--fg);
  max-width: 600px;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.industry-card {
  background: var(--bg);
  padding: 32px 24px;
  transition: background 0.3s ease;
}

.industry-card:hover {
  background: var(--bg-alt);
}

.industry-icon {
  color: var(--accent);
  margin-bottom: 20px;
}

.industry-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 12px;
}

.industry-desc {
  font-size: 13px;
  color: var(--fg-muted);
  line-height: 1.65;
  font-weight: 300;
}

/* ===== MANIFESTO ===== */
.manifesto {
  padding: 120px 48px;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.manifesto-quote-mark {
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--accent);
  opacity: 0.2;
  line-height: 0.5;
  margin-bottom: 40px;
}

.manifesto-text {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.4;
  color: var(--fg);
  letter-spacing: -0.5px;
  font-style: italic;
  margin-bottom: 32px;
}

.manifesto-sub {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ===== FOOTER ===== */
.footer {
  padding: 48px 48px;
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--fg);
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--fg-subtle);
}

.footer-copy {
  font-size: 13px;
  color: var(--fg-subtle);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 48px; }
  .step-connector { display: none; }
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-divider { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 100px 24px 60px; }
  .features { padding: 80px 24px; }
  .process { padding: 80px 24px; }
  .industries { padding: 80px 24px; }
  .manifesto { padding: 80px 24px; }
  .stats { padding: 48px 24px; }
  .nav { padding: 0 24px; }
  .features-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .hero-headline { font-size: 44px; letter-spacing: -1px; }
  .footer-inner { flex-direction: column; gap: 16px; align-items: flex-start; }
}