:root {
  --bg: #080808;
  --bg-alt: #0f0f12;
  --fg: #f0efe8;
  --fg-muted: #7a7a7a;
  --accent: #ff5e3a;
  --accent-glow: rgba(255, 94, 58, 0.15);
  --border: rgba(255, 255, 255, 0.06);
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

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

/* ======================== HERO ======================== */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  border-radius: 100px;
  padding: 0.4rem 1.2rem;
  margin-bottom: 2.5rem;
  width: fit-content;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.accent {
  color: var(--accent);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--fg-muted);
  max-width: 600px;
  line-height: 1.7;
  margin-bottom: 4rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  max-width: 160px;
}

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

/* ======================== PROBLEM ======================== */
.problem {
  padding: 8rem 2rem;
  background: var(--bg-alt);
}

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

.problem-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}

.problem-text p {
  color: var(--fg-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.problem-visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.visual-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
  transition: border-color 0.3s, background 0.3s;
}

.visual-card:hover {
  border-color: var(--accent);
  background: var(--accent-glow);
}

.card-icon {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
  min-width: 40px;
}

.card-text {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

/* ======================== SERVICES ======================== */
.services {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.services-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 4rem;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.service-item {
  padding: 2.5rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--bg-alt);
  transition: border-color 0.3s, transform 0.2s;
}

.service-item:hover {
  border-color: rgba(255, 94, 58, 0.3);
  transform: translateY(-2px);
}

.service-icon {
  font-size: 1.4rem;
  color: var(--accent);
  margin-bottom: 1.2rem;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.service-item p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ======================== VERTICALS ======================== */
.verticals {
  padding: 8rem 2rem;
  background: var(--bg-alt);
}

.verticals-header {
  max-width: 1200px;
  margin: 0 auto 3rem;
}

.verticals-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.verticals-list {
  max-width: 1200px;
  margin: 0 auto;
}

.vertical-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: padding-left 0.3s;
}

.vertical-row:first-child {
  border-top: 1px solid var(--border);
}

.vertical-row:hover {
  padding-left: 1rem;
}

.vertical-row:hover .vertical-name {
  color: var(--accent);
}

.vertical-name {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  transition: color 0.3s;
}

.vertical-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  text-align: right;
}

/* ======================== CLOSING ======================== */
.closing {
  padding: 10rem 2rem;
  text-align: center;
}

.closing-inner {
  max-width: 800px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 2rem;
}

.closing-text {
  font-size: 1.15rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.closing-secondary {
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.25rem;
  margin-top: 2rem;
}

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

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

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
}

.footer-tagline {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ======================== RESPONSIVE ======================== */
@media (max-width: 768px) {
  .hero {
    padding: 4rem 1.5rem 3rem;
    min-height: auto;
  }

  .hero-stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .stat-divider {
    display: none;
  }

  .problem {
    padding: 5rem 1.5rem;
  }

  .problem-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .services {
    padding: 5rem 1.5rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .verticals {
    padding: 5rem 1.5rem;
  }

  .vertical-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
  }

  .vertical-desc {
    text-align: left;
  }

  .closing {
    padding: 6rem 1.5rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}