:root {
  --bg: #0a0a0c;
  --bg-elevated: #111114;
  --bg-card: #16161a;
  --fg: #e8e6e3;
  --fg-muted: #8a8a8e;
  --fg-dim: #5a5a5e;
  --accent: #c9ff50;
  --accent-dim: rgba(201, 255, 80, 0.12);
  --accent-glow: rgba(201, 255, 80, 0.06);
  --red-muted: #ff6b6b;
  --green-muted: #c9ff50;
  --border: rgba(255, 255, 255, 0.06);
  --radius: 12px;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'DM Sans', sans-serif;
}

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

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

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

.hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: var(--accent);
  background: var(--accent-dim);
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 32px;
  border: 1px solid rgba(201, 255, 80, 0.15);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
}

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

.hero .lede {
  font-size: 1.15rem;
  color: var(--fg-muted);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  gap: 0;
  align-items: stretch;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-elevated);
  overflow: hidden;
}

.stat {
  flex: 1;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

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

.stat-label {
  font-size: 0.82rem;
  color: var(--fg-dim);
  line-height: 1.5;
}

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

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

.problem-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-left h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.problem-left p {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.problem-bold {
  color: var(--fg) !important;
  font-weight: 500;
  font-size: 1.1rem !important;
}

.problem-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.card-icon {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-dim);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  flex-shrink: 0;
}

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

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

.services-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.services-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.services-sub {
  font-size: 1.05rem;
  color: var(--fg-dim);
  margin-bottom: 56px;
}

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

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

.service-item:hover {
  border-color: rgba(201, 255, 80, 0.2);
}

.service-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-item h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

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

/* === HOW === */
.how {
  padding: 100px 24px;
  background: var(--bg);
}

.how-inner {
  max-width: 900px;
  margin: 0 auto;
}

.how-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 48px;
  text-align: center;
}

.how-comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.how-col {
  border-radius: var(--radius);
  padding: 36px 32px;
}

.how-them {
  background: var(--bg-card);
  border: 1px solid var(--border);
}

.how-us {
  background: var(--accent-dim);
  border: 1px solid rgba(201, 255, 80, 0.18);
}

.how-header {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.how-them .how-header {
  color: var(--fg-dim);
}

.how-us .how-header {
  color: var(--accent);
  border-bottom-color: rgba(201, 255, 80, 0.15);
}

.how-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.how-col li {
  font-size: 0.95rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
  line-height: 1.5;
}

.how-them li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--fg-dim);
}

.how-us li {
  color: var(--fg);
}

.how-us li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

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

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

.closing-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  line-height: 1.15;
}

.closing-inner p {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 40px;
}

.closing-markets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.market-tag {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--fg-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 8px 18px;
}

/* === FOOTER === */
.site-footer {
  padding: 48px 24px;
  text-align: center;
  background: var(--bg);
  border-top: 1px solid var(--border);
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 6px;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.footer-email {
  font-size: 0.82rem;
  color: var(--fg-dim);
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero { padding: 80px 20px 60px; min-height: auto; }
  .hero-stats { flex-direction: column; }
  .stat-divider { width: 100%; height: 1px; }
  .problem-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .how-comparison { grid-template-columns: 1fr; }
  .closing { padding: 80px 20px; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .stat { padding: 20px 16px; }
  .stat-number { font-size: 1.6rem; }
  .problem-card { flex-direction: column; gap: 12px; }
}