:root {
  --bg: #fff7fb;
  --panel: #ffffff;
  --panel-soft: #fff0f7;
  --text: #33202a;
  --muted: #735b66;
  --pink: #f85fa4;
  --pink-dark: #c62976;
  --blue: #49bdf2;
  --yellow: #ffd35a;
  --line: rgba(180, 78, 130, 0.18);
  --shadow: 0 22px 60px rgba(202, 41, 118, 0.16);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 8% 6%, rgba(73, 189, 242, 0.18), transparent 30%),
    radial-gradient(circle at 94% 0%, rgba(248, 95, 164, 0.18), transparent 28%),
    linear-gradient(180deg, #fff7fb 0%, #fffdf8 46%, #fff3f9 100%);
  line-height: 1.7;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(100% - 36px, var(--max));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 247, 251, 0.9);
  backdrop-filter: blur(16px);
}

.header-row {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pink), var(--yellow));
  color: white;
  box-shadow: 0 10px 26px rgba(248, 95, 164, 0.25);
}

.nav {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 800;
}

.desktop-cta,
.primary-btn,
.secondary-btn,
.mobile-cta a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
}

.desktop-cta,
.primary-btn,
.mobile-cta a {
  background: linear-gradient(135deg, var(--pink), var(--pink-dark));
  color: white;
  box-shadow: 0 14px 32px rgba(198, 41, 118, 0.24);
}

.secondary-btn {
  border: 1px solid var(--line);
  background: white;
  color: var(--pink-dark);
}

.mobile-cta {
  display: none;
  padding: 12px 18px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.mobile-cta a {
  width: 100%;
}

.hero {
  padding: 72px 0 54px;
}

.hero-grid,
.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 0.82fr);
  align-items: center;
  gap: 42px;
}

.eyebrow,
.section-label {
  margin: 0 0 12px;
  color: var(--pink-dark);
  font-size: 0.84rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
  line-height: 1.04;
}

p {
  color: var(--muted);
  font-size: 1.02rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.hero-image,
.content-image {
  margin: 0;
  overflow: hidden;
  border: 8px solid #fff;
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #fff;
}

.hero-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.quick-notes {
  padding: 18px 0 42px;
}

.note-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.note-grid article,
.cta-card,
.faq details {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 12px 34px rgba(202, 41, 118, 0.08);
}

.note-grid article {
  padding: 20px;
}

.note-grid strong {
  display: block;
  margin-bottom: 6px;
  color: var(--pink-dark);
}

.note-grid span {
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

.two-col.reverse {
  grid-template-columns: minmax(330px, 0.88fr) minmax(0, 1fr);
}

.candy-band {
  background:
    linear-gradient(90deg, rgba(73, 189, 242, 0.12), transparent 42%),
    linear-gradient(270deg, rgba(255, 211, 90, 0.15), transparent 38%),
    #fff9ee;
}

.feature-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.feature-list li {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  color: var(--muted);
}

.article-wrap {
  max-width: 900px;
}

.cta-section {
  padding: 40px 0 82px;
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 32px;
}

.cta-card p {
  margin-bottom: 0;
}

.faq h2 {
  max-width: 760px;
}

.faq details {
  padding: 18px 22px;
  margin-top: 12px;
}

.faq summary {
  cursor: pointer;
  color: var(--text);
  font-weight: 900;
}

.faq details p {
  margin: 12px 0 0;
}

.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: #fff;
}

.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
}

@media (max-width: 980px) {
  .desktop-cta {
    display: none;
  }

  .mobile-cta {
    display: block;
    position: sticky;
    top: 76px;
    z-index: 18;
  }

  .nav {
    overflow-x: auto;
    max-width: 54vw;
    padding-bottom: 4px;
    white-space: nowrap;
  }

  .hero-grid,
  .two-col,
  .two-col.reverse,
  .note-grid {
    grid-template-columns: 1fr;
  }

  .hero-image {
    order: -1;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .header-row {
    min-height: 66px;
  }

  .brand strong {
    font-size: 0.98rem;
  }

  .brand span {
    width: 40px;
    height: 40px;
  }

  .nav {
    display: none;
  }

  .mobile-cta {
    top: 66px;
  }

  h1 {
    font-size: 2.28rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero {
    padding-top: 34px;
  }

  .hero-actions,
  .cta-card,
  .footer-row {
    align-items: stretch;
    flex-direction: column;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }
}
