:root {
  --bg: #09090f;
  --surface: #111118;
  --surface-2: #18181f;
  --border: rgba(255,255,255,0.07);
  --accent: #f59e0b;
  --accent-dim: rgba(245,158,11,0.12);
  --text: #f4f4f5;
  --text-muted: #71717a;
  --text-dim: #a1a1aa;
  --font-head: 'Syne', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

html { font-size: 16px; }

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

/* HERO */
.hero {
  padding: 80px 48px 96px;
  background: var(--bg);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 40%, rgba(245,158,11,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 28px;
}
.hero-sub {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-anchors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.anchor-pill {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  color: var(--text-dim);
  background: var(--surface);
  font-family: var(--font-body);
}

/* HERO VISUAL */
.hero-visual {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.feature-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stack-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: transform 0.2s ease;
}
.stack-card:hover { transform: translateX(4px); }
.stack-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.stack-lead::before { background: linear-gradient(135deg, rgba(245,158,11,0.08) 0%, transparent 60%); }
.stack-reviews::before { background: linear-gradient(135deg, rgba(34,197,94,0.06) 0%, transparent 60%); }
.stack-content::before { background: linear-gradient(135deg, rgba(99,102,241,0.06) 0%, transparent 60%); }
.stack-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.stack-content { display: flex; flex-direction: column; gap: 2px; }
.stack-label { font-size: 0.9375rem; font-weight: 600; color: var(--text); }
.stack-stat { font-size: 0.75rem; color: var(--text-muted); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(34,197,94,0.3);
  background: rgba(34,197,94,0.07);
  font-size: 0.8125rem;
  color: #4ade80;
  font-weight: 500;
}
.badge-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(34,197,94,0.2);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34,197,94,0.2); }
  50% { box-shadow: 0 0 0 6px rgba(34,197,94,0.08); }
}

/* THE PROBLEM */
.the-problem {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 48px;
}
.problem-inner { max-width: 1200px; margin: 0 auto; }
.problem-stat-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  background: var(--surface-2);
}
.prob-stat {
  flex: 1;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.prob-divider {
  width: 1px;
  background: var(--border);
  align-self: stretch;
}
.prob-number {
  font-family: var(--font-head);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}
.prob-desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.problem-statement {
  font-size: 1.125rem;
  color: var(--text-dim);
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.7;
}

/* SERVICES */
.services {
  padding: 96px 48px;
  background: var(--bg);
}
.services-header { max-width: 1200px; margin: 0 auto 56px; }
.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--text);
}
.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.service-card:hover { border-color: rgba(245,158,11,0.3); transform: translateY(-3px); }
.service-card--featured {
  border-color: rgba(245,158,11,0.35);
  background: linear-gradient(180deg, rgba(245,158,11,0.05) 0%, var(--surface) 40%);
}
.svc-badge {
  position: absolute;
  top: -1px;
  right: 24px;
  transform: translateY(-50%);
  background: var(--accent);
  color: #09090f;
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.svc-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.svc-name {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text);
}
.svc-tagline {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 500;
  margin-top: -8px;
}
.svc-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.svc-features li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.svc-features li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--text-muted);
  font-size: 0.75rem;
}
.svc-result {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}
.result-arrow { color: var(--accent); font-size: 1.25rem; }
.result-text { font-size: 0.875rem; font-weight: 600; color: var(--text); }

/* HOW IT WORKS */
.how-it-works {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.hiw-inner { max-width: 1200px; margin: 0 auto; }
.hiw-header { margin-bottom: 64px; }
.hiw-steps { display: flex; flex-direction: column; gap: 0; }
.hiw-step {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 40px;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.hiw-step:last-child { border-bottom: none; }
.step-number {
  font-family: var(--font-head);
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--accent-dim);
  line-height: 1;
  padding-top: 4px;
}
.step-title {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
}
.step-desc {
  font-size: 1rem;
  color: var(--text-dim);
  max-width: 540px;
  line-height: 1.7;
}

/* PRICING */
.pricing {
  padding: 96px 48px;
  background: var(--bg);
}
.pricing-inner { max-width: 1200px; margin: 0 auto; }
.pricing-header { margin-bottom: 56px; }
.pricing-note {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 16px;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.price-card--main {
  border-color: rgba(245,158,11,0.4);
  background: linear-gradient(180deg, rgba(245,158,11,0.06) 0%, var(--surface) 40%);
}
.pc-badge {
  display: inline-block;
  background: rgba(245,158,11,0.15);
  color: var(--accent);
  font-size: 0.6875rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.pc-name {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.pc-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.pc-amount {
  font-family: var(--font-head);
  font-size: 2.75rem;
  font-weight: 800;
  color: var(--text);
}
.pc-period { font-size: 0.9375rem; color: var(--text-muted); }
.pc-desc { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pc-features li {
  font-size: 0.9rem;
  color: var(--text-dim);
  padding-left: 20px;
  position: relative;
}
.pc-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* WHO IT'S FOR */
.who-for {
  padding: 96px 48px;
  background: var(--surface);
  border-top: 1px solid var(--border);
}
.who-inner { max-width: 1200px; margin: 0 auto; }
.who-header { margin-bottom: 56px; }
.who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.who-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: var(--surface-2);
  font-size: 0.9rem;
  color: var(--text-dim);
  font-weight: 500;
}
.who-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

/* CLOSING */
.closing {
  padding: 96px 48px 80px;
  background: var(--bg);
}
.closing-inner { max-width: 800px; margin: 0 auto; text-align: center; }
.closing-headline {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 24px;
}
.closing-sub {
  font-size: 1.0625rem;
  color: var(--text-dim);
  line-height: 1.75;
  margin-bottom: 48px;
}
.closing-contact { display: flex; flex-direction: column; gap: 20px; }
.contact-tagline {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}
.contact-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9375rem;
  color: var(--text-muted);
}

/* FOOTER */
.site-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 40px 48px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-name {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text);
}
.footer-tagline { font-size: 0.8125rem; color: var(--text-muted); }
.footer-note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  max-width: 360px;
  text-align: right;
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: repeat(2, 1fr); }
  .problem-stat-row { flex-direction: column; }
  .prob-divider { width: 100%; height: 1px; }
  .hiw-step { grid-template-columns: 80px 1fr; gap: 24px; }
  .step-number { font-size: 2.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-note { text-align: center; }
}
@media (max-width: 600px) {
  .hero, .the-problem, .services, .how-it-works, .pricing, .who-for, .closing { padding: 64px 24px; }
  .site-footer { padding: 32px 24px; }
  .who-grid { grid-template-columns: 1fr; }
  .contact-info { flex-direction: column; align-items: center; }
}

/* Custom scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--surface-2); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--surface); }
