/* ── Reset & Base ────────────────────────────────────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', system-ui, -apple-system, sans-serif;
  background: #fff;
  color: #171a1c;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* ── Color utilities ────────────────────────────────────────────────────────── */

.text--red {
  color: #ef0241;
}

.text--blue {
  color: #378de2;
}

/* ── Shared ──────────────────────────────────────────────────────────────────── */

.section__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem;
}

.section__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #171a1c;
}

.section__sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* ── Buttons ─────────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--primary {
  background: #378de2;
  color: #fff;
}

.btn--primary:hover {
  box-shadow: 0 8px 32px rgba(55, 141, 226, 0.3);
}

.btn--sm {
  padding: 0.5rem 1.2rem;
  font-size: 0.8rem;
}

.btn--lg {
  padding: 1rem 2.4rem;
  font-size: 1rem;
  letter-spacing: 0.01em;
}

/* ── Header ──────────────────────────────────────────────────────────────────── */

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem 0.75rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  color: #378de2;
}

.header__logo img {
  border-radius: 8px;
}

/* ── Hero ────────────────────────────────────────────────────────────────────── */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 1rem;
  position: relative;
  overflow: hidden;
  background: #fff;
}

/* Subtle radial glow behind hero */
.hero::before {
  content: '';
  position: absolute;
  top: 20%;
  left: 30%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(55, 141, 226, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-top: 2rem;
}

.hero__content {
  position: relative;
  z-index: 1;
  flex: 1;
  text-align: left;
}

.hero__image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image img {
  max-height: 90vh;
  width: auto;
}

.hero__social-proof {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 100px;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  margin-bottom: 1.25rem;
}

.hero__avatars {
  display: flex;
}

.hero__avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  object-fit: cover;
}

.hero__avatar:not(:first-child) {
  margin-left: -10px;
}

.hero__social-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: #171a1c;
}

.hero__star {
  font-size: 0.85rem;
}

.hero__eyebrow {
  font-size: 2.5rem;
  color: #666;
  margin-bottom: 0.75rem;
}

.hero__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 4rem;
  line-height: 1.15;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  color: #171a1c;
}

.hero__sub {
  font-size: 1.15rem;
  color: #666;
  max-width: 520px;
  margin: 0 0 2.5rem;
  line-height: 1.7;
}

/* ── Testimonials ────────────────────────────────────────────────────────────── */

.testimonials {
  background: #fff;
}

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

.testimonial-card {
  background: #f5f5f7;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(55, 141, 226, 0.3);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  color: #f5a623;
  font-size: 1rem;
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(55, 141, 226, 0.1);
  color: #378de2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.testimonial-card__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  color: #171a1c;
}

.testimonial-card__role {
  font-size: 0.8rem;
  color: #666;
}

/* ── Features ────────────────────────────────────────────────────────────────── */

.features {
  background: #f5f5f7;
}

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

.feature-card {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  padding: 2rem 1.5rem;
  transition: border-color 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: rgba(55, 141, 226, 0.3);
  transform: translateY(-4px);
}

.feature-card__icon {
  width: 52px;
  height: 52px;
  background: rgba(55, 141, 226, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.feature-card__icon--red {
  background: rgba(239, 2, 65, 0.08);
}

.feature-card__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.6rem;
  color: #171a1c;
}

.feature-card__text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
}

/* ── How It Works ────────────────────────────────────────────────────────────── */

.how-it-works {
  background: #fff;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  text-align: center;
  padding: 0 1rem;
}

.step__number {
  width: 48px;
  height: 48px;
  background: rgba(55, 141, 226, 0.1);
  color: #378de2;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.2rem;
  margin-bottom: 1.25rem;
}

.step__number--red {
  background: rgba(239, 2, 65, 0.1);
  color: #ef0241;
}

.step__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: #171a1c;
}

.step__text {
  font-size: 0.85rem;
  color: #666;
  line-height: 1.6;
}

.step__divider {
  width: 1px;
  height: 80px;
  background: rgba(0, 0, 0, 0.08);
  margin-top: 1.5rem;
  flex-shrink: 0;
}

/* ── Coming Soon ─────────────────────────────────────────────────────────────── */

.coming-soon {
  background: #f5f5f7;
}

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

.roadmap__item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #171a1c;
  transition: border-color 0.2s;
}

.roadmap__item:hover {
  border-color: rgba(55, 141, 226, 0.25);
}

.roadmap__icon {
  font-size: 1.3rem;
  flex-shrink: 0;
}

/* ── CTA ─────────────────────────────────────────────────────────────────────── */

.cta {
  background: #fff;
}

.cta__inner {
  text-align: center;
  padding: 6rem 1.5rem;
}

.cta__title {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
  color: #171a1c;
}

.cta__sub {
  color: #666;
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

/* ── Footer ──────────────────────────────────────────────────────────────────── */

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem 1.5rem;
  background: #171a1c;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: #378de2;
}

.footer__logo img {
  border-radius: 6px;
}

.footer__copy {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer__links {
  font-size: 0.8rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
}

.footer__links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  .header__inner {
    padding: 0.75rem 1rem;
  }

  .hero {
    padding: 0 1rem;
    padding-top: 5rem;
  }

  .hero__inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .hero__content {
    text-align: left;
  }

  .hero__social-proof {
    white-space: nowrap;
  }

  .hero__eyebrow {
    font-size: 1.75rem;
  }

  .hero__title {
    font-size: 3rem;
  }

  .hero__sub {
    font-size: 1rem;
    max-width: 100%;
    margin-bottom: 1.5rem;
  }

  .desktop-break { display: none; }

  .hero__image {
    width: 100%;
    justify-content: center;
  }

  .hero__image img {
    max-height: 400px;
  }

  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .features__grid {
    grid-template-columns: 1fr;
  }

  .steps {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .step {
    padding: 1.5rem 0;
  }

  .step__divider {
    width: 40px;
    height: 1px;
    margin-top: 0;
  }

  .roadmap {
    grid-template-columns: 1fr;
  }

  .section__inner {
    padding: 3.5rem 1.25rem;
  }

  .section__title {
    font-size: 1.6rem;
  }

  .footer__inner {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero__title {
    font-size: 3rem;
  }

  .hero__avatar {
    width: 28px;
    height: 28px;
  }

  .hero__avatar:not(:first-child) {
    margin-left: -14px;
  }

  .hero__social-text {
    font-size: 0.75rem;
  }

  .btn--lg {
    padding: 0.9rem 1.8rem;
    font-size: 0.9rem;
  }
}
