@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=DM+Sans:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  --bg: #0a0a0f;
  --bg-elevated: #12121a;
  --bg-card: #1a1a26;
  --fg: #e8e6f0;
  --fg-muted: #8a87a0;
  --accent: #ff3d5a;
  --accent-glow: rgba(255, 61, 90, 0.15);
  --yellow: #ffd23f;
  --green: #3dffa0;
  --blue: #3d8bff;
  --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;
  overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-logo span {
  color: var(--accent);
}

.nav-tag {
  font-size: 0.75rem;
  color: var(--fg-muted);
  border: 1px solid rgba(138, 135, 160, 0.3);
  padding: 0.25rem 0.75rem;
  border-radius: 100px;
  font-family: var(--font-body);
}

/* ---- HERO ---- */
.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem 4rem;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1.5rem;
}

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

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

.hero-sub {
  font-size: 1.2rem;
  color: var(--fg-muted);
  max-width: 550px;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-value {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--fg);
}

.hero-stat-value .unit {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-top: 0.25rem;
}

/* ---- DIVIDER ---- */
.divider {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.divider hr {
  border: none;
  border-top: 1px solid rgba(138, 135, 160, 0.15);
}

/* ---- HOW IT WORKS ---- */
.how-it-works {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 1rem;
}

.how-it-works h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 600px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.step {
  background: var(--bg-card);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(138, 135, 160, 0.1);
  position: relative;
  overflow: hidden;
}

.step::before {
  content: attr(data-step);
  position: absolute;
  top: -10px;
  right: 10px;
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(138, 135, 160, 0.06);
  line-height: 1;
}

.step-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}

.step-icon.yellow { background: rgba(255, 210, 63, 0.12); }
.step-icon.red { background: var(--accent-glow); }
.step-icon.green { background: rgba(61, 255, 160, 0.12); }

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

.step p {
  color: var(--fg-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ---- VERTICALS ---- */
.verticals {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.verticals h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
}

.verticals-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  margin-bottom: 3rem;
  max-width: 550px;
}

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.vertical-card {
  background: var(--bg-elevated);
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(138, 135, 160, 0.08);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  transition: border-color 0.2s;
}

.vertical-card:hover {
  border-color: rgba(255, 61, 90, 0.25);
}

.vertical-emoji {
  font-size: 2rem;
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--bg-card);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vertical-info h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.vertical-info p {
  color: var(--fg-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ---- WHAT YOU GET ---- */
.deliverables {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.deliverables h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
}

.deliverables-row {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.deliverable {
  flex: 1;
  min-width: 220px;
  padding: 1.75rem;
  border-radius: 14px;
  border: 1px solid rgba(138, 135, 160, 0.1);
  background: var(--bg-card);
}

.deliverable-count {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.deliverable-count.c1 { color: var(--accent); }
.deliverable-count.c2 { color: var(--yellow); }
.deliverable-count.c3 { color: var(--green); }
.deliverable-count.c4 { color: var(--blue); }

.deliverable h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.deliverable p {
  color: var(--fg-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---- CLOSING ---- */
.closing {
  max-width: 1200px;
  margin: 0 auto;
  padding: 6rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
}

.closing h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 1.25rem;
  position: relative;
}

.closing p {
  color: var(--fg-muted);
  font-size: 1.15rem;
  max-width: 520px;
  margin: 0 auto;
  position: relative;
}

/* ---- FOOTER ---- */
footer {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-top: 1px solid rgba(138, 135, 160, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--fg-muted);
}

.footer-brand span { color: var(--accent); }

.footer-note {
  font-size: 0.8rem;
  color: rgba(138, 135, 160, 0.5);
}

/* ---- LANDING NAV CTA ---- */
.nav-cta-landing {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent);
  border: 1px solid rgba(255, 61, 90, 0.35);
  padding: 0.4rem 1.1rem;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.nav-cta-landing:hover {
  background: var(--accent-glow);
  border-color: var(--accent);
}

/* ---- CLOSING CTA ---- */
.closing-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2.5rem;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  padding: 0.9rem 1.75rem;
  position: relative;
  transition: opacity 0.2s, transform 0.15s;
}

.closing-cta:hover { opacity: 0.88; transform: translateY(-1px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.25rem 3rem; }
  .hero-stats { gap: 2rem; }
  .steps { grid-template-columns: 1fr; }
  .verticals-grid { grid-template-columns: 1fr; }
  .deliverables-row { flex-direction: column; }
  .how-it-works, .verticals, .deliverables, .closing { padding: 3rem 1.25rem; }
  .nav { padding: 1.25rem; }
  footer { flex-direction: column; gap: 0.75rem; text-align: center; }
}
