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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  color: #5c6378;
  background: #ffffff;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

h1, h2, h3 {
  font-family: "Lora", serif;
  color: #16234f;
  font-weight: 600;
  line-height: 1.2;
}

.section-title {
  font-size: clamp(24px, 2.6vw, 34px);
  text-align: center;
  margin-bottom: 14px;
}

.title-underline {
  width: 88%;
  height: 3px;
  background: #fb5c82;
  border-radius: 2px;
  margin: 0 auto 40px;
}

.eyebrow-pink {
  color: #fb5c82;
}

.btn-pink {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: #fb5c82;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 14px;
}
.btn-pink:hover {
  background: #e14a70;
}

.btn-pink-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: #fb5c82;
  color: #ffffff;
  padding: 12px 26px;
  border-radius: 50px;
  box-shadow: 0 6px 18px rgba(251, 92, 130, 0.35);
}
.btn-pink-pill:hover {
  background: #e14a70;
}

.btn-outline-teal {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  background: #ffffff;
  color: #0b8f73;
  border: 1.5px solid #0b8f73;
  padding: 13px 27px;
  border-radius: 14px;
}
.btn-outline-teal:hover {
  background: rgba(11, 143, 115, 0.06);
}

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 84px;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid #f1e4ea;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 6%;
}

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

.nav-logo img {
  height: 68px;
  display: block;
}

.nav-tagline {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #9a9ab0;
  display: none;
}
@media (min-width: 900px) {
  .nav-tagline {
    display: block;
  }
}

.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  list-style: none;
}
.nav-links a {
  font-family: "Poppins", sans-serif;
  text-decoration: none;
  color: #16234f;
  font-size: 15px;
  font-weight: 600;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: #fb5c82;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #16234f;
  margin: 5px 0;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .nav {
    padding: 0 4%;
    gap: 10px;
  }
  .nav-logo img {
    height: 44px;
  }
  .nav-cta {
    padding: 9px 16px;
    font-size: 13px;
    white-space: nowrap;
  }
  .nav-links {
    position: absolute;
    top: 84px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #f1e4ea;
    flex-direction: column;
    gap: 0;
    display: none;
  }
  .nav-links.open {
    display: flex;
  }
  .nav-links a {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 16px 6%;
    border-bottom: 1px solid #f1e4ea;
    white-space: nowrap;
  }
  .nav-toggle {
    display: block;
  }
}
@media (max-width: 420px) {
  .nav-cta {
    display: none;
  }
}
.hero {
  position: relative;
  padding-top: 40px;
  overflow: hidden;
  background: #ffffff;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: 0;
}
.hero-blob--pink {
  width: 420px;
  height: 420px;
  background: rgba(251, 92, 130, 0.14);
  top: -120px;
  left: 30%;
}
.hero-blob--blue {
  width: 360px;
  height: 360px;
  background: rgba(28, 140, 251, 0.1);
  bottom: -100px;
  right: 5%;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 10px;
  padding: 48px 6% 28px;
}

.hero-text h1 {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 600;
  line-height: 1.18;
  margin-bottom: 22px;
}
.hero-text h1 em {
  font-style: normal;
  color: #fb5c82;
}

.hero-text p {
  font-size: 16px;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 122%;
  border-radius: 2px;
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 40px;
  }
  .hero-visual {
    order: -1;
  }
  .hero-visual img {
    width: 100%;
  }
}
.ecosystem {
  padding: 28px 6%;
  background: #ffffff;
}

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

.product-card {
  display: flex;
  align-items: flex-start;
  gap: 22px;
  background: #ffffff;
  border: 1.5px solid #f1e4ea;
  border-radius: 20px;
  padding: 32px 30px;
  text-align: left;
  transition: box-shadow 0.25s, transform 0.25s;
}
.product-card:hover {
  box-shadow: 0 10px 32px rgba(251, 92, 130, 0.12);
  transform: translateY(-3px);
}

.product-icon {
  flex-shrink: 0;
  width: 68px;
  height: 68px;
}

.product-body h3 {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #fb5c82;
  margin-bottom: 2px;
  line-height: 1.2;
}
.product-body .product-sub {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-body .product-sub--navy {
  color: #16234f;
}
.product-body .product-sub--teal {
  color: #0b8f73;
}
.product-body p {
  font-size: 14.5px;
  line-height: 1.65;
  margin-bottom: 14px;
}

.card-link {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fb5c82;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.card-link:hover {
  gap: 10px;
}

@media (max-width: 900px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}
.why {
  padding: 28px 6%;
  background: #ffffff;
}

.why-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.why-item {
  text-align: center;
  padding: 0 18px;
  border-left: 1px solid #f1e4ea;
}
.why-item:first-child {
  border-left: none;
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #fdeff3;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-item h4 {
  font-family: "Poppins", sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  color: #16234f;
  margin-bottom: 8px;
  line-height: 1.35;
}

.why-item p {
  font-size: 13px;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 36px;
  }
  .why-item {
    border-left: none;
    border-top: 1px solid #f1e4ea;
    padding-top: 24px;
  }
  .why-item:nth-child(1), .why-item:nth-child(2) {
    border-top: none;
    padding-top: 0;
  }
}
@media (max-width: 560px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-item {
    border-top: 1px solid #f1e4ea;
    padding-top: 24px;
  }
  .why-item:first-child {
    border-top: none;
    padding-top: 0;
  }
}
.audience {
  padding: 28px 6%;
  background: #ffffff;
}

.audience-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-badge {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1.5px solid;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
}
.audience-badge ion-icon {
  flex-shrink: 0;
  font-size: 22px;
}
.audience-badge--pink {
  background: #fdeff3;
  border-color: rgba(251, 92, 130, 0.35);
  color: #fb5c82;
}
.audience-badge--teal {
  background: rgba(11, 143, 115, 0.07);
  border-color: rgba(11, 143, 115, 0.35);
  color: #0b8f73;
}
.audience-badge--blue {
  background: rgba(28, 140, 251, 0.07);
  border-color: rgba(28, 140, 251, 0.35);
  color: #1c8cfb;
}
.audience-badge--purple {
  background: rgba(100, 80, 181, 0.07);
  border-color: rgba(100, 80, 181, 0.35);
  color: #6450b5;
}

@media (max-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 560px) {
  .audience-grid {
    grid-template-columns: 1fr;
  }
}
.cta {
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  margin: 0 6% 56px;
  padding-left: 40px;
  border-radius: 20px;
  max-height: 130px;
  background: #fdeff3;
}

.cta-logo {
  flex-shrink: 0;
}
.cta-logo img {
  height: 100px;
  display: block;
}

.cta-photo {
  align-self: stretch;
  height: 130px;
  object-fit: cover;
  flex-shrink: 0;
  margin-left: auto;
}

.cta-content {
  flex: 1;
  padding: 22px 0;
  max-width: 420px;
}

.cta-content h2 {
  font-size: clamp(20px, 2vw, 26px);
  margin-bottom: 8px;
}
.cta-content h2 em {
  font-style: normal;
  color: #fb5c82;
}

.cta-content p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .cta {
    flex-direction: column;
    align-items: flex-start;
    margin: 0 0 60px;
    padding: 24px 24px 0;
    border-radius: 0;
    max-height: none;
  }
  .cta-content {
    max-width: 100%;
    padding: 16px 0 24px;
  }
  .cta-photo {
    width: 100%;
    height: 180px;
    align-self: auto;
    margin-left: 0;
  }
}
.footer {
  background: #ffffff;
  border-top: 1px solid #f1e4ea;
  padding: 2px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 24px;
  border-right: 1px solid #f1e4ea;
}
.footer-brand img {
  height: 52px;
}

.footer-tagline-brand {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-style: italic;
  color: #9a9ab0;
}

.footer-tagline {
  font-size: 14px;
  color: #9a9ab0;
  font-style: italic;
}

.footer-copy {
  font-size: 13px;
  color: #9a9ab0;
}

@media (max-width: 900px) {
  .footer {
    flex-direction: column;
    text-align: center;
  }
  .footer-brand {
    border-right: none;
    padding-right: 0;
  }
}
