:root {
  --ink: #171831;
  --muted: #626071;
  --rose: #c83b72;
  --rose-dark: #a9265d;
  --rose-soft: #ffe7ee;
  --blush: #fff4f2;
  --lavender: #bba6d6;
  --cream: #fffaf7;
  --line: rgba(200, 59, 114, 0.18);
  --shadow: 0 24px 70px rgba(106, 55, 80, 0.16);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--sans);
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 226, 229, 0.7), transparent 28rem),
    radial-gradient(circle at 92% 4%, rgba(188, 166, 215, 0.22), transparent 30rem),
    linear-gradient(180deg, #fff7f5 0%, #fff 42%, #fff7f6 100%);
}

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

img,
svg {
  display: block;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.top-ribbon {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 14px;
  padding: 8px 18px;
  color: #fffaf5;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  background: linear-gradient(90deg, #8d74b7, #b49ad3 50%, #e3a1b8);
}

.ribbon-text {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ribbon-text::before {
  content: "★";
  color: #ffe7a6;
  margin-right: 8px;
}

.ribbon-text-short {
  display: none;
}

.ribbon-cta {
  flex: 0 0 auto;
  padding: 6px 16px;
  color: var(--rose-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  border-radius: 20px;
  background: #fffaf5;
  transition: transform 160ms ease;
}

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

.site-header {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 24px 0 12px;
}

.brand {
  width: fit-content;
  display: flex;
  align-items: center;
}

.brand strong {
  display: block;
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1;
}

.hero {
  position: relative;
  padding: 8px 0 86px;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 244, 241, 0.9), rgba(255, 250, 248, 0.76)),
    radial-gradient(circle at 0 76%, rgba(220, 105, 134, 0.26), transparent 18rem),
    radial-gradient(circle at 80% 42%, rgba(186, 161, 215, 0.18), transparent 20rem);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(230px, 0.72fr) minmax(300px, 0.88fr);
  align-items: center;
  gap: 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
}

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

.hero h1 {
  max-width: 590px;
  margin-bottom: 22px;
  font-family: var(--serif);
  font-size: clamp(42px, 4.9vw, 64px);
  font-weight: 700;
  line-height: 1.04;
}

em {
  color: var(--rose);
  font-style: italic;
}

.hero-lede {
  max-width: 440px;
  margin-bottom: 32px;
  color: #24243a;
  font-size: 17px;
  line-height: 1.8;
}

.promise-list {
  display: grid;
  gap: 18px;
  max-width: 430px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.promise-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  align-items: center;
  gap: 12px;
  color: #27283c;
  line-height: 1.55;
}

.icon-bubble {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--rose);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.68);
}

.icon-bubble svg,
.trust-panel svg,
.step-icon svg,
.secure-note svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.hero-art {
  min-width: 0;
  transform: rotate(-3deg);
  filter: drop-shadow(0 24px 28px rgba(87, 56, 48, 0.16));
}

.hero-art img {
  width: min(100%, 310px);
  margin: 0 auto;
  border-radius: 10px;
}

.signup-card {
  width: 100%;
  padding: 44px 32px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.signup-card h2 {
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.02;
  text-align: center;
}

.signup-card h2 span {
  display: block;
  color: var(--rose);
}

.signup-card > p {
  margin-bottom: 28px;
  color: var(--muted);
  text-align: center;
}

.primary-cta,
.final-cta a {
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 28px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
  border: 0;
  border-radius: 8px;
  background: linear-gradient(135deg, #ef5b7f, #cc2e70);
  box-shadow: 0 18px 28px rgba(200, 59, 114, 0.26);
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.primary-cta {
  width: 100%;
}

.primary-cta:hover,
.final-cta a:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(200, 59, 114, 0.32);
}

.secure-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.secure-note svg {
  width: 18px;
  color: var(--rose);
  flex: 0 0 auto;
}

.trust-panel {
  position: relative;
  z-index: 3;
  width: min(1060px, calc(100% - 36px));
  margin: -52px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 22px 54px rgba(111, 67, 82, 0.12);
}

.trust-panel div {
  min-height: 148px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 26px 16px;
  text-align: center;
  border-right: 1px solid rgba(200, 59, 114, 0.12);
}

.trust-panel div:last-child {
  border-right: 0;
}

.trust-panel svg {
  width: 40px;
  height: 40px;
  color: var(--rose);
}

.trust-panel strong,
.trust-panel span {
  display: block;
  font-size: 14px;
}

.section {
  width: min(1120px, calc(100% - 36px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-title {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.section-title h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 46px);
  line-height: 1.05;
}

.section-title span,
.quote-banner h2::after {
  content: "";
  width: 88px;
  height: 12px;
  display: block;
  background:
    linear-gradient(var(--rose), var(--rose)) left 50% / 36px 1px no-repeat,
    linear-gradient(var(--rose), var(--rose)) right 50% / 36px 1px no-repeat;
}

.section-title span::before,
.quote-banner h2::after {
  content: "♥";
  color: var(--rose);
  font-family: var(--sans);
  font-size: 12px;
  line-height: 12px;
  text-align: center;
}

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

.steps article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.steps article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 78px;
  right: -56px;
  width: 72px;
  border-top: 2px dashed rgba(200, 59, 114, 0.24);
}

.steps b {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: -24px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: 34px;
  border-radius: 50%;
  background: #ffdce5;
  z-index: 1;
}

.step-icon {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  color: var(--rose);
  border-radius: 50%;
  background: radial-gradient(circle, #fff 0%, #ffeef2 72%);
}

.step-icon svg {
  width: 58px;
  height: 58px;
  stroke-width: 1.55;
}

.steps h3 {
  max-width: 190px;
  margin-bottom: 12px;
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1.08;
}

.steps p {
  max-width: 230px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.quote-banner {
  position: relative;
  min-height: 250px;
  display: grid;
  place-items: center;
  padding: 46px 20px;
  overflow: hidden;
  isolation: isolate;
}

.quote-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.quote-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 239, 245, 0.32);
  z-index: -1;
}

.quote-banner h2 {
  width: min(820px, 100%);
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.04;
  text-align: center;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.9);
}

.testimonials {
  position: relative;
}

.testimonial-shell {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  align-items: center;
  gap: 20px;
}

.testimonial {
  min-height: 180px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.stars {
  margin-bottom: 24px;
  color: var(--rose);
  letter-spacing: 6px;
}

blockquote {
  max-width: 690px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.22;
}

cite {
  color: var(--rose);
  font-style: normal;
  font-weight: 800;
}

.slider-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--rose);
  font-size: 32px;
  line-height: 1;
  border: 0;
  border-radius: 50%;
  background: #ffe8ef;
  cursor: pointer;
}

.dots {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 20px;
}

.dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #f2d8df;
}

.dots span.active {
  background: var(--rose);
}

.faq {
  width: min(1100px, calc(100% - 36px));
  padding-top: 40px;
}

.faq-list {
  border: 1px solid rgba(200, 59, 114, 0.16);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
}

details {
  border-bottom: 1px solid rgba(200, 59, 114, 0.14);
}

details:last-child {
  border-bottom: 0;
}

summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 28px;
  font-weight: 700;
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "⌄";
  color: var(--rose-dark);
  font-size: 22px;
  transition: transform 160ms ease;
}

details[open] summary::after {
  transform: rotate(180deg);
}

details p {
  margin: -4px 28px 20px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 58px 20px;
  overflow: hidden;
  text-align: center;
  isolation: isolate;
}

.final-cta img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 209, 222, 0.54), rgba(255, 242, 247, 0.82) 44%, rgba(244, 209, 222, 0.42));
  z-index: -1;
}

.final-cta div {
  width: min(780px, 100%);
}

.final-cta h2 {
  margin-bottom: 14px;
  color: var(--rose-dark);
  font-family: var(--serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.02;
  text-shadow: 0 2px 16px rgba(255, 255, 255, 0.8);
}

.final-cta h2 em {
  display: block;
  color: var(--rose);
}

.final-cta p {
  margin-bottom: 26px;
  color: #4e4051;
  font-weight: 600;
}

.final-cta a {
  min-width: min(360px, 100%);
}

.final-cta ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding: 0;
  margin: 22px 0 0;
  color: #4e4051;
  font-size: 13px;
  font-weight: 700;
  list-style: none;
}

.final-cta li::before {
  content: "✓";
  margin-right: 7px;
  color: var(--rose-dark);
}

.site-footer {
  padding: 26px 20px 34px;
  color: rgba(255, 255, 255, 0.88);
  text-align: center;
  background: linear-gradient(90deg, #272048, #3a2c63);
}

.site-footer nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 30px;
  margin-bottom: 16px;
  font-size: 13px;
  font-weight: 700;
}

.site-footer p {
  max-width: 820px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.75);
  font-size: 12px;
  line-height: 1.6;
}

body {
  padding-bottom: 76px;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px;
  background: rgba(255, 250, 245, 0.96);
  border-top: 1px solid rgba(200, 59, 114, 0.18);
  box-shadow: 0 -10px 28px rgba(106, 55, 80, 0.14);
  backdrop-filter: blur(10px);
}

.sticky-cta-btn {
  width: min(560px, 100%);
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  border-radius: 8px;
  background: linear-gradient(135deg, #ef5b7f, #cc2e70);
  box-shadow: 0 14px 24px rgba(200, 59, 114, 0.26);
  transition: transform 160ms ease, box-shadow 160ms ease;
}

.sticky-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(200, 59, 114, 0.32);
}

@media (max-width: 520px) {
  .sticky-cta-btn {
    font-size: 13px;
  }
}

@media (max-width: 1020px) {
  .hero-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .hero-copy {
    max-width: 560px;
  }

  .hero h1,
  .hero-lede {
    margin-left: auto;
    margin-right: auto;
  }

  .promise-list {
    margin: 0 auto;
    text-align: left;
  }

  .hero-art {
    width: 100%;
    margin: 8px 0;
  }

  .hero-art img {
    width: min(100%, 240px);
  }

  .signup-card {
    width: min(100%, 460px);
    align-self: stretch;
  }
}

@media (max-width: 780px) {
  .site-header {
    padding-top: 18px;
  }

  .hero {
    padding-bottom: 64px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .signup-card {
    padding: 34px 22px;
    border-radius: 18px;
  }

  .trust-panel {
    grid-template-columns: repeat(2, 1fr);
    margin-top: -34px;
  }

  .trust-panel div {
    min-height: 128px;
  }

  .trust-panel div:nth-child(2) {
    border-right: 0;
  }

  .trust-panel div:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(200, 59, 114, 0.12);
  }

  .steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .steps article:not(:last-child)::after {
    display: none;
  }

  .testimonial-shell {
    grid-template-columns: 44px 1fr 44px;
    gap: 6px;
  }

  .slider-btn {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 520px) {
  .top-ribbon {
    gap: 10px;
    padding: 8px 14px;
    font-size: 12px;
  }

  .ribbon-text-full {
    display: none;
  }

  .ribbon-text-short {
    display: inline;
  }

  .ribbon-cta {
    padding: 6px 12px;
    font-size: 11px;
  }

  .brand strong {
    font-size: 19px;
  }

  .hero-lede {
    font-size: 15px;
  }

  .primary-cta,
  .final-cta a {
    padding-right: 18px;
    padding-left: 18px;
    font-size: 13px;
  }

  .promise-list li {
    grid-template-columns: 44px 1fr;
    font-size: 14px;
  }

  .trust-panel {
    width: calc(100% - 24px);
  }

  .trust-panel strong,
  .trust-panel span {
    font-size: 12px;
  }

  .section {
    width: calc(100% - 28px);
    padding: 58px 0;
  }

  .quote-banner {
    min-height: 300px;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .slider-btn {
    display: none;
  }

  summary {
    padding: 15px 16px;
    font-size: 14px;
  }

  details p {
    margin-right: 16px;
    margin-left: 16px;
    font-size: 14px;
  }

  .site-footer nav {
    gap: 12px 18px;
  }
}
