:root {
  --bg: #0a0e17;
  --bg-elevated: #111827;
  --bg-card: #1a2235;
  --fg: #e8ecf4;
  --fg-muted: #8b95a8;
  --accent: #d4a053;
  --accent-light: #e8c17a;
  --accent-glow: rgba(212, 160, 83, 0.15);
  --border: rgba(139, 149, 168, 0.12);
  --radius: 12px;
  --max-width: 1140px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

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

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 120px 40px 80px;
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(212, 160, 83, 0.3);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  max-width: 780px;
  margin-bottom: 28px;
}

.hero-sub {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 560px;
  line-height: 1.7;
}

.hero-gradient {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(212, 160, 83, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

/* ===== PROBLEM ===== */
.problem {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
}

.problem-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.problem-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  position: sticky;
  top: 40px;
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  margin-bottom: 20px;
}

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.problem-text {
  color: var(--fg-muted);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* ===== SERVICES ===== */
.services {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

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

.services-header {
  margin-bottom: 64px;
}

.services-header h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

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

.service-item {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s;
}

.service-item:hover {
  border-color: rgba(212, 160, 83, 0.3);
}

.service-icon {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}

.service-item h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

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

/* ===== VERTICALS ===== */
.verticals {
  padding: 100px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}

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

.verticals h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 48px;
}

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

.vertical-tag {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--bg-card);
  transition: all 0.2s;
}

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

.verticals-sub {
  color: var(--fg-muted);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== PROOF ===== */
.proof {
  padding: 100px 40px;
  background: var(--bg-elevated);
}

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

.proof-statement {
  margin-bottom: 60px;
}

.proof-statement h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 20px;
}

.proof-statement p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 600px;
}

.proof-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.proof-card {
  padding: 36px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
}

.proof-label {
  display: inline-block;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.proof-card p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ===== CLOSING ===== */
.closing {
  padding: 120px 40px;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(212, 160, 83, 0.06) 0%, transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.closing h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 24px;
}

.closing-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  line-height: 1.7;
}

/* ===== HERO ACTIONS ===== */
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: #0a0e17;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-hero-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 83, 0.25);
  color: #0a0e17;
}

.btn-hero-secondary {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--fg-muted);
  border: 1px solid var(--border);
  padding: 14px 28px;
  border-radius: 8px;
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.btn-hero-secondary:hover {
  border-color: rgba(212, 160, 83, 0.3);
  color: var(--fg);
  background: var(--accent-glow);
}

/* ===== CLOSING ACTIONS ===== */
.closing-actions {
  margin-top: 36px;
}

.btn-closing-primary {
  display: inline-flex;
  align-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: #0a0e17;
  padding: 14px 28px;
  border-radius: 8px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}

.btn-closing-primary:hover {
  background: var(--accent-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(212, 160, 83, 0.25);
  color: #0a0e17;
}

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

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1rem;
}

.footer-divider {
  color: var(--fg-muted);
  opacity: 0.4;
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    padding: 80px 24px 60px;
  }

  .problem-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .problem-left h2 {
    position: static;
  }

  .problem, .services, .verticals, .proof, .closing {
    padding: 64px 24px;
  }

  .services-grid,
  .proof-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .verticals-row {
    gap: 10px;
  }

  .vertical-tag {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

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

  .footer-divider { display: none; }
}