.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 24px 80px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pill-bg);
  border: 1px solid rgba(61,111,255,0.25);
  border-radius: 100px;
  padding: 5px 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--glow);
  text-transform: uppercase;
  margin-bottom: 32px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.7);
  }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(42px, 7vw, 86px);
  font-weight: 700;
  line-height: 1.03;
  letter-spacing: -0.04em;
  color: #fff;
  max-width: 820px;
  margin-bottom: 20px;
}

.hero-title-gradient {
  background: linear-gradient(135deg, var(--blue) 0%, var(--glow) 50%, var(--purple) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  max-width: 480px;
  margin-bottom: 40px;
  font-weight: 400;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(61,111,255,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.features {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue);
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.section-eyebrow::before {
  flex: 0 0 20px;
}

.section-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--muted);
  font-size: 16px;
  max-width: 480px;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 16px;
}

.feat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.feat-card:hover {
  border-color: rgba(61,111,255,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(61,111,255,0.1);
}

.feat-card:hover::before {
  opacity: 1;
}

.feat-card.span2 {
  grid-column: span 2;
}

.feat-icon {
  width: 40px;
  height: 40px;
  background: var(--pill-bg);
  border: 1px solid var(--border-blue);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--blue);
}

.feat-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.feat-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.6;
}

.feat-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--pill-bg);
  border-radius: 6px;
  padding: 3px 8px;
}

.how {
  position: relative;
  z-index: 10;
  padding: 80px 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: 18px;
  overflow: hidden;
}

.step {
  background: var(--surface);
  padding: 36px 28px;
  position: relative;
  transition: background 0.2s;
}

.step:hover {
  background: var(--surface-2);
}

.step-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: rgba(61,111,255,0.15);
  line-height: 1;
  margin-bottom: 20px;
  user-select: none;
  transition: color 0.2s;
}

.step:hover .step-num {
  color: rgba(61,111,255,0.28);
}

.step-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #fff;
  margin-bottom: 8px;
}

.step-desc {
  color: var(--muted);
  font-size: 13.5px;
  line-height: 1.65;
}

.cta-section {
  position: relative;
  z-index: 10;
  padding: 80px 24px 120px;
  text-align: center;
}

.cta-card {
  max-width: 640px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(61,111,255,0.08) 0%, rgba(92,138,255,0.04) 100%);
  border: 1px solid rgba(61,111,255,0.2);
  border-radius: 24px;
  padding: 60px 48px;
  position: relative;
  overflow: hidden;
}

.cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(61,111,255,0.22) 0%, transparent 70%);
  pointer-events: none;
  animation: cta-pulse 4s ease-in-out infinite;
}

@keyframes cta-pulse {
  0%, 100% {
    opacity: 0.7;
  }

  50% {
    opacity: 1;
  }
}

.cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 12px;
}

.cta-sub {
  color: var(--muted);
  font-size: 15px;
  margin-bottom: 32px;
}

.pills-section {
  position: relative;
  z-index: 10;
  padding: 0 24px 60px;
}

@media (max-width: 700px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .feat-card.span2 {
    grid-column: span 1;
  }

  .cta-card {
    padding: 40px 24px;
  }
}