/* =========================
   Base / Reset
   ========================= */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background-color: #FDFBF7; /* Soft Cream */
  color: #2D3748; /* Deep Dusk Blue */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  margin: 0 0 0.5rem 0;
  font-family: "Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: #0F172A;
}

p {
  margin: 0 0 1rem 0;
}

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

strong {
  font-weight: 600;
}

/* =========================
   Global Helpers
   ========================= */
.page {
  min-height: 100vh;
}

.container {
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
}

.container--narrow { max-width: 720px; }
.container--mid    { max-width: 960px; }
.container--wide   { max-width: 1100px; }
.container--xl     { max-width: 1200px; }
.container--hero   { max-width: 860px; }

.section {
  padding: 96px 0;
}

.section--tint {
  background: rgba(255, 255, 255, 0.50);
}

.section--soft {
  background: rgba(224, 242, 254, 0.20);
}

.section--center {
  text-align: center;
}

.section--dark {
  background: #0F172A;
  color: rgba(226, 232, 240, 1);
}

.section__title {
  font-weight: 300;
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0F172A;
}

.section__title--center {
  text-align: center;
  margin-bottom: 48px;
}

.section__title--dark {
  color: #FFFFFF;
  margin-bottom: 48px;
}

.section__title--underline {
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 6px solid rgba(199, 210, 254, 0.8); /* indigo-200-ish */
  border-radius: 6px;
}

.section__subtle {
  margin: 0;
  color: #64748B;
  font-style: italic;
}

.section-head {
  text-align: center;
  margin-bottom: 64px;
}

/* =========================
   Background styles
   ========================= */
.gradient-bg {
  background: linear-gradient(135deg, #FDFBF7 0%, #F3E8FF 50%, #E0F2FE 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.40);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.60);
}

/* Floating blur blobs */
.star-decoration {
  position: absolute;
  pointer-events: none;
  opacity: 0.40;
  filter: blur(48px);
  border-radius: 999px;
}

.star-decoration--one {
  top: 80px;
  right: 40px;
  width: 128px;
  height: 128px;
  background: #E9D5FF; /* purple-200 */
}

.star-decoration--two {
  bottom: 80px;
  left: 40px;
  width: 192px;
  height: 192px;
  background: #DBEAFE; /* blue-100 */
}

/* =========================
   Nav
   ========================= */
.nav--fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}

.nav {
  padding: 16px 0;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.brand__icon {
  color: #818CF8; /* indigo-400 */
}

.brand__name {
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: #1E293B; /* slate-800 */
}

/* =========================
   Buttons
   ========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
  font-family: inherit;
}

.btn--dark {
  background: #0F172A;
  color: #FFFFFF;
}

.btn--dark:hover {
  background: #1F2937;
}

.btn--pill {
  border-radius: 999px;
  padding: 12px 20px;
}

.btn--sm {
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 500;
}

.btn--lg {
  padding: 18px 20px;
  border-radius: 16px;
  width: 100%;
  font-size: 16px;
  font-weight: 500;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
}

.btn--xl {
  padding: 18px 28px;
  font-size: 18px;
  font-weight: 500;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
}

.btn--block {
  width: 100%;
}

.btn__sub {
  display: block;
  margin-top: 6px;
  font-size: 10px;
  opacity: 0.60;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

/* =========================
   Hero
   ========================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 128px; /* space for fixed nav */
  padding-bottom: 80px;
  overflow: hidden;
}

.hero__title {
  font-weight: 300;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: #0F172A;
  text-align: center;
}

.hero__subtitle {
  margin-top: 20px;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.6;
  color: #475569; /* slate-600 */
  text-align: center;
}

.hero__actions {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

.hero__link {
  color: #475569;
  font-weight: 500;
  padding: 8px 0;
  border-bottom: 1px solid transparent;
  transition: color 160ms ease, border-color 160ms ease;
}

.hero__link:hover {
  color: #4F46E5; /* indigo-600 */
  border-color: rgba(129, 140, 248, 0.9); /* indigo-400 */
}

/* Download button (hero) */
.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: #0F172A;
  color: #FFFFFF;
  padding: 16px 22px;
  border-radius: 18px;
  border: 0;
  box-shadow: 0 16px 34px rgba(15, 23, 42, 0.18);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.download-btn:hover {
  transform: translateY(-4px);
  background: #0B1220;
  box-shadow: 0 20px 42px rgba(15, 23, 42, 0.22);
}

.download-btn__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
}

.download-btn__text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.download-btn__kicker {
  font-size: 12px;
  opacity: 0.8;
  line-height: 1;
}

.download-btn__platform {
  margin-top: 6px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

/* =========================
   Layout Grids
   ========================= */
.two-col {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-card {
  padding: 24px;
  border-radius: 24px;
  text-align: center;
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
  font-size: 18px;
}

.feature-card__label {
  display: inline-block;
  font-size: 14px;
  font-weight: 500;
  color: #0F172A;
}

.feature-card__icon--blue   { background: #DBEAFE; color: #3B82F6; }
.feature-card__icon--purple { background: #E9D5FF; color: #8B5CF6; }
.feature-card__icon--green  { background: #DCFCE7; color: #22C55E; }
.feature-card__icon--pink   { background: #FCE7F3; color: #EC4899; }

/* Steps */
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  text-align: center;
}

.step__num {
  width: 48px;
  height: 48px;
  margin: 0 auto 18px auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #EEF2FF; /* indigo-50 */
  color: #818CF8;      /* indigo-400 */
  border: 1px solid #E0E7FF; /* indigo-100 */
  font-weight: 500;
  font-size: 18px;
}

.step__title {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #0F172A;
  margin-bottom: 8px;
}

.step__text {
  color: #64748B;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 auto;
  max-width: 320px;
}

/* Cards grid */
.cards-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.card {
  background: #FFFFFF;
  padding: 32px;
  border-radius: 32px;
  border: 1px solid #F1F5F9;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: box-shadow 160ms ease;
}

.card:hover {
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

.card--dim {
  opacity: 0.90;
}

.card__title {
  font-size: 20px;
  font-weight: 400;
  margin-top: 16px;
  margin-bottom: 10px;
}

.card__title--with-icon {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.lock {
  color: #94A3B8;
}

.card__text {
  color: #64748B;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

/* Badges */
.badge {
  display: inline-block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 999px;
  font-weight: 600;
}

.badge--included {
  background: #DCFCE7;
  color: #15803D;
}

.badge--premium {
  background: #F1F5F9;
  color: #64748B;
}

/* Differences section */
.diff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.diff {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 14px;
  align-items: start;
}

.diff__arrow {
  color: #818CF8;
  font-size: 18px;
  line-height: 1.2;
  margin-top: 2px;
}

.diff__title {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 6px 0;
}

.diff__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.70;
  color: #E2E8F0;
}

/* =========================
   Text styles
   ========================= */
.text {
  color: #475569;
  line-height: 1.8;
}

.text--center {
  text-align: center;
}

.text--italic {
  font-style: italic;
}

/* =========================
   Safety box
   ========================= */
.safety {
  padding: 40px;
  border-radius: 48px;
  border: 1px solid rgba(224, 231, 255, 1); /* indigo-100 */
}

.safety__head {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.safety__icon {
  width: 40px;
  height: 40px;
  background: #E0E7FF;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.safety__title {
  font-size: 24px;
  font-weight: 300;
  margin: 0;
}

.note {
  margin-top: 18px;
  background: rgba(255, 255, 255, 0.50);
  padding: 18px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  color: #64748B;
  font-size: 14px;
  font-style: italic;
  line-height: 1.7;
}

/* =========================
   Pricing
   ========================= */
.pricing {
  margin-top: 26px;
  padding: 32px;
  border-radius: 40px;
  border: 1px solid rgba(199, 210, 254, 0.9); /* indigo-200 */
  text-align: left;
}

.pricing__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.pricing__name {
  font-size: 20px;
  font-weight: 600;
  color: #0F172A;
}

.pricing__tagline {
  margin: 6px 0 0 0;
  font-size: 12px;
  color: #64748B;
  font-style: italic;
}

.pricing__price {
  text-align: right;
}

.pricing__monthly {
  font-size: 18px;
  font-weight: 600;
  color: #0F172A;
}

.pricing__yearly {
  font-size: 14px;
  font-weight: 600;
  color: #6366F1; /* indigo-500 */
}

.pricing__save {
  display: inline-block;
  margin-top: 6px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  padding: 4px 8px;
  border-radius: 999px;
  background: #E0E7FF;
  color: #4F46E5;
}

.pricing__list {
  list-style: none;
  padding: 0;
  margin: 0 0 22px 0;
  display: grid;
  gap: 14px;
  color: #475569;
  font-size: 14px;
}

.pricing__item {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.pricing__emoji {
  font-size: 18px;
  line-height: 1;
}

/* =========================
   Quote
   ========================= */
.quote {
  margin: 0;
  text-align: center;
  font-style: italic;
  font-weight: 300;
  font-size: 20px;
  line-height: 1.8;
  color: #64748B;
}

/* =========================
   FAQ
   ========================= */
.faq {
  display: grid;
  gap: 14px;
}

.faq__item {
  background: #FFFFFF;
  border: 1px solid #F1F5F9;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
}

.faq__summary {
  padding: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  list-style: none;
}

.faq__summary::-webkit-details-marker {
  display: none;
}

.faq__chev {
  display: inline-block;
  transition: transform 160ms ease;
  color: #64748B;
}

details[open] .faq__chev {
  transform: rotate(180deg);
}

.faq__content {
  padding: 0 20px 20px 20px;
  color: #64748B;
  font-size: 14px;
  line-height: 1.7;
}

/* =========================
   Legal
   ========================= */
.legal {
  padding: 48px 0;
  background: rgba(148, 163, 184, 0.10); /* slate-100-ish */
}

.legal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  font-size: 11px;
  color: #64748B;
  line-height: 2;
}

.legal__title {
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #334155;
  margin: 0 0 8px 0;
}

.legal__text {
  margin: 0;
}

/* =========================
   Final CTA
   ========================= */
.final {
  padding: 128px 0;
  text-align: center;
}

.final__inner {
  text-align: center;
}

.final__title {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 16px;
}

.final__sub {
  color: #475569;
  margin-bottom: 34px;
}

.final__copy {
  margin-top: 56px;
  font-size: 12px;
  color: #94A3B8;
}

/* =========================
   Responsive
   ========================= */
@media (min-width: 640px) {
  .hero__actions {
    flex-direction: row;
  }

  .cards-3 {
    grid-template-columns: repeat(3, 1fr);
  }

  .diff-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .legal__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .hero__title {
    font-size: 64px;
  }

  .hero__subtitle {
    font-size: 22px;
  }
}

@media (max-width: 420px) {
  .nav__inner {
    padding: 0 16px;
  }

  .container {
    padding: 0 16px;
  }

  .hero__title {
    font-size: 42px;
  }
}
