:root {
  --bg: #0a0a0a;
  --bg-elevated: #141414;
  --bg-card: #1a1a1a;
  --fg: #f0ece4;
  --fg-muted: #8a8578;
  --accent: #ff4d00;
  --accent-glow: rgba(255, 77, 0, 0.15);
  --green: #00e676;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --radius: 12px;
  --max-width: 1200px;
}

* { 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;
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 24px;
  background:
    radial-gradient(ellipse at 20% 50%, var(--accent-glow) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(0, 230, 118, 0.05) 0%, transparent 50%),
    var(--bg);
}

.hero-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.hero-label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 32px;
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 160px);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -3px;
  margin-bottom: 40px;
}

.hero-title .accent {
  color: var(--accent);
  display: inline;
}

.hero-sub {
  font-size: 20px;
  line-height: 1.6;
  color: var(--fg-muted);
  max-width: 560px;
  margin-bottom: 64px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: var(--fg);
  display: block;
}

.stat-label {
  font-size: 14px;
  color: var(--fg-muted);
  display: block;
  max-width: 180px;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(240, 236, 228, 0.1);
}

/* ===== PROBLEM ===== */
.problem {
  padding: 120px 24px;
  background: var(--bg-elevated);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.problem-eyebrow,
.services-eyebrow,
.verticals-eyebrow,
.pricing-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.problem-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 700px;
}

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

.problem-card {
  padding: 40px 32px;
  background: var(--bg);
  border-radius: var(--radius);
  border: 1px solid rgba(240, 236, 228, 0.06);
}

.card-number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  color: rgba(255, 77, 0, 0.2);
  margin-bottom: 20px;
}

.problem-card p {
  color: var(--fg-muted);
  font-size: 16px;
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services {
  padding: 120px 24px;
  background: var(--bg);
}

.services-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 600px;
}

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

.service-item {
  padding: 48px 40px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(240, 236, 228, 0.06);
  transition: border-color 0.3s ease;
}

.service-item:hover {
  border-color: rgba(255, 77, 0, 0.3);
}

.service-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

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

/* ===== VERTICALS ===== */
.verticals {
  padding: 120px 24px;
  background: var(--bg-elevated);
  text-align: center;
}

.verticals-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.verticals-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 48px;
}

.verticals-marquee {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.vertical-tag {
  padding: 14px 28px;
  background: var(--bg);
  border: 1px solid rgba(255, 77, 0, 0.25);
  border-radius: 100px;
  font-size: 16px;
  font-weight: 500;
  color: var(--fg);
  transition: all 0.3s ease;
}

.vertical-tag:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}

.verticals-note {
  color: var(--fg-muted);
  font-size: 18px;
}

/* ===== PRICING ===== */
.pricing {
  padding: 120px 24px;
  background: var(--bg);
}

.pricing-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.pricing-headline {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 64px;
  max-width: 600px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.price-card {
  padding: 48px 36px;
  background: var(--bg-elevated);
  border-radius: var(--radius);
  border: 1px solid rgba(240, 236, 228, 0.06);
  position: relative;
}

.price-card.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(255, 77, 0, 0.08) 0%, var(--bg-elevated) 100%);
}

.price-badge {
  position: absolute;
  top: -14px;
  left: 36px;
  background: var(--accent);
  color: var(--bg);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 6px 16px;
  border-radius: 100px;
}

.price-tier {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--fg-muted);
  margin-bottom: 16px;
}

.price-amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 32px;
}

.price-amount span {
  font-size: 18px;
  font-weight: 400;
  color: var(--fg-muted);
}

.price-card ul {
  list-style: none;
}

.price-card li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(240, 236, 228, 0.06);
  color: var(--fg-muted);
  font-size: 15px;
}

.price-card li:last-child {
  border-bottom: none;
}

/* ===== CLOSING ===== */
.closing {
  padding: 160px 24px;
  background:
    radial-gradient(ellipse at 50% 50%, var(--accent-glow) 0%, transparent 60%),
    var(--bg-elevated);
  text-align: center;
}

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

.closing-headline {
  font-family: var(--font-display);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
}

.closing-text {
  font-size: 18px;
  line-height: 1.7;
  color: var(--fg-muted);
  margin-bottom: 32px;
}

.closing-location {
  font-size: 14px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 48px 24px;
  background: var(--bg);
  border-top: 1px solid rgba(240, 236, 228, 0.06);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2px;
}

.footer-contact {
  color: var(--fg-muted);
  font-size: 14px;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .problem-columns {
    grid-template-columns: 1fr;
  }

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

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .hero-stats {
    gap: 24px;
  }

  .stat-divider {
    display: none;
  }

  .hero-title {
    letter-spacing: -1px;
  }

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

  .problem-card,
  .service-item,
  .price-card {
    padding: 32px 24px;
  }
}