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

:root {
  --bg: #0a0a0f;
  --bg-subtle: #12121a;
  --fg: #e8e8ec;
  --fg-muted: #8a8a9a;
  --accent: #ff3366;
  --accent-glow: rgba(255, 51, 102, 0.15);
  --gradient-1: #ff3366;
  --gradient-2: #ff6b35;
  --gradient-3: #ffd166;
  --card-bg: #16161f;
  --card-border: rgba(255, 255, 255, 0.06);
  --radius: 16px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 100px;
  font-size: 0.85rem;
  color: var(--fg-muted);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.hero-badge span {
  color: var(--accent);
  font-weight: 600;
}

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero .lede {
  font-size: clamp(1.1rem, 2.2vw, 1.35rem);
  color: var(--fg-muted);
  max-width: 540px;
  margin-top: 28px;
  position: relative;
  z-index: 1;
}

/* ---- PHONE MOCKUPS ---- */
.phone-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

.phone-frame {
  width: 140px;
  height: 250px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.3s ease;
}

.phone-frame:hover {
  transform: translateY(-6px);
}

.phone-frame .platform-icon {
  font-size: 2rem;
}

.phone-frame .platform-name {
  font-size: 0.75rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ---- HOW IT WORKS ---- */
.how-section {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.how-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 60px;
}

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

.step {
  position: relative;
  padding: 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
}

.step-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 16px;
}

.step h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
}

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

/* ---- VERTICALS ---- */
.verticals-section {
  padding: 100px 24px;
  background: var(--bg-subtle);
}

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

.verticals-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

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

.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.vertical-card {
  padding: 24px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.vertical-card:hover {
  border-color: var(--accent);
}

.vertical-card .v-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.vertical-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
}

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

/* ---- PRICING ---- */
.pricing-section {
  padding: 120px 24px;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.pricing-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.pricing-section .section-sub {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 48px;
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 700px;
  margin: 0 auto;
}

.price-card {
  padding: 40px 32px;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  text-align: left;
}

.price-card.featured {
  border-color: var(--accent);
  position: relative;
  overflow: hidden;
}

.price-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gradient-1), var(--gradient-2), var(--gradient-3));
}

.price-card .plan-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.price-card .price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.price-card .price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.price-card .price-desc {
  color: var(--fg-muted);
  font-size: 0.9rem;
  margin-top: 12px;
  margin-bottom: 24px;
  line-height: 1.5;
}

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

.price-card ul li {
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--fg-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-card ul li::before {
  content: '\2713';
  color: var(--accent);
  font-weight: 700;
  font-size: 0.85rem;
}

/* ---- CLOSING ---- */
.closing-section {
  padding: 120px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

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

.closing-section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  max-width: 700px;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.closing-section p {
  color: var(--fg-muted);
  font-size: 1.1rem;
  max-width: 480px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ---- FOOTER ---- */
footer {
  padding: 40px 24px;
  text-align: center;
  border-top: 1px solid var(--card-border);
}

footer .footer-name {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

footer p {
  color: var(--fg-muted);
  font-size: 0.85rem;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
  .steps {
    grid-template-columns: 1fr;
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .phone-row {
    gap: 12px;
  }
  .phone-frame {
    width: 100px;
    height: 180px;
  }
  .verticals-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .verticals-grid {
    grid-template-columns: 1fr;
  }
}