@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@400;500;600;700&display=swap');

:root {
  --blush: #f8d7df;
  --blush-dark: #d96b8b;
  --lavender: #d9ccff;
  --sky: #cfeeff;
  --cream: #fff8ef;
  --rose-gold: #c98973;
  --ink: #2f2630;
  --muted: #6f6271;
  --white: #ffffff;
  --shadow: 0 22px 55px rgba(88, 50, 74, 0.14);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(248, 215, 223, 0.65), transparent 32rem),
    radial-gradient(circle at top right, rgba(217, 204, 255, 0.45), transparent 28rem),
    var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 248, 239, 0.88);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(201, 137, 115, 0.18);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: 700;
}

.logo-mark {
  color: var(--rose-gold);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  color: var(--muted);
}

.site-nav a:hover {
  color: var(--blush-dark);
}

.nav-button {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--blush-dark), var(--rose-gold));
  box-shadow: 0 12px 26px rgba(217, 107, 139, 0.28);
}

.menu-toggle {
  display: none;
  border: none;
  background: transparent;
  font-size: 1.8rem;
  color: var(--ink);
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blush-dark);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  font-weight: 800;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.1;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(3rem, 7vw, 5.6rem);
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
}

h3 {
  margin-bottom: 12px;
  font-size: 1.25rem;
}

.hero-text {
  max-width: 650px;
  color: var(--muted);
  font-size: 1.16rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
}

.button.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blush-dark), var(--rose-gold));
  box-shadow: 0 16px 34px rgba(217, 107, 139, 0.28);
}

.button.secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(201, 137, 115, 0.22);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  color: var(--muted);
  font-weight: 700;
}

.trust-row span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.card-glow {
  position: absolute;
  width: 410px;
  height: 410px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(248, 215, 223, 0.95), transparent 68%),
    radial-gradient(circle at bottom right, rgba(217, 204, 255, 0.8), transparent 58%);
  filter: blur(6px);
}

.phone-mockup {
  position: relative;
  width: min(345px, 92%);
  min-height: 465px;
  padding: 28px;
  border-radius: 42px;
  background: linear-gradient(145deg, var(--white), #fff4f7);
  box-shadow: var(--shadow);
  border: 1px solid rgba(201, 137, 115, 0.24);
  overflow: hidden;
}

.phone-mockup::before {
  content: "✦ ✧ ✦";
  position: absolute;
  top: 86px;
  right: 28px;
  color: rgba(201, 137, 115, 0.55);
  letter-spacing: 0.4rem;
}

.phone-top {
  width: 92px;
  height: 10px;
  margin: 0 auto 72px;
  border-radius: 999px;
  background: rgba(47, 38, 48, 0.14);
}

.message-card {
  padding: 24px;
  border-radius: 26px;
  background: var(--cream);
  box-shadow: 0 15px 30px rgba(88, 50, 74, 0.09);
}

.message-label {
  margin: 0 0 8px;
  color: var(--blush-dark);
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.mini-stat {
  position: absolute;
  right: 20px;
  bottom: 42px;
  left: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 17px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--lavender), var(--sky));
  font-weight: 800;
}

.mini-stat span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--white);
  border-radius: 50%;
  background: var(--rose-gold);
}

.section {
  padding: 76px 0;
}

.centered {
  max-width: 820px;
  text-align: center;
}

.centered p {
  color: var(--muted);
  font-size: 1.08rem;
}

.feature-grid,
.steps-grid,
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.feature-card,
.step-card,
.product-card,
.soft-panel {
  padding: 28px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(201, 137, 115, 0.16);
  box-shadow: 0 14px 34px rgba(88, 50, 74, 0.08);
}

.icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 18px;
  background: rgba(248, 215, 223, 0.74);
  font-size: 1.35rem;
}

.feature-card p,
.step-card p,
.product-card p,
.soft-panel p,
.split-grid p {
  color: var(--muted);
}

.split-section {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(248, 215, 223, 0.32));
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: center;
  gap: 44px;
}

.check-list,
.sparkle-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.check-list li,
.sparkle-list li {
  position: relative;
  margin-bottom: 12px;
  padding-left: 32px;
  font-weight: 700;
}

.check-list li::before,
.sparkle-list li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--rose-gold);
}

.soft-panel {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(217, 204, 255, 0.36));
}

.trip-section {
  background:
    radial-gradient(circle at center, rgba(207, 238, 255, 0.55), transparent 34rem);
}

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

.step-card span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, var(--blush-dark), var(--rose-gold));
  font-weight: 900;
}

.freebie-box {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 42px;
  align-items: center;
  padding: 48px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(248, 215, 223, 0.72), rgba(217, 204, 255, 0.58)),
    var(--white);
  box-shadow: var(--shadow);
}

.signup-form {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.86);
}

.signup-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 800;
}

.signup-form input {
  width: 100%;
  min-height: 50px;
  margin-bottom: 18px;
  padding: 0 16px;
  border: 1px solid rgba(201, 137, 115, 0.28);
  border-radius: 16px;
  background: var(--white);
  font: inherit;
}

.signup-form button {
  width: 100%;
  min-height: 52px;
  border: none;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blush-dark), var(--rose-gold));
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-grid {
  grid-template-columns: repeat(4, 1fr);
}

.product-card a {
  display: inline-block;
  margin-top: 10px;
  color: var(--blush-dark);
  font-weight: 900;
}

.cta-section {
  background: rgba(255, 255, 255, 0.48);
}

.site-footer {
  padding-top: 58px;
  color: var(--white);
  background: #342936;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 34px;
}

.site-footer h2 {
  margin-bottom: 12px;
  font-size: 2rem;
}

.site-footer h3 {
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
}

.footer-bottom {
  margin-top: 42px;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  margin: 0;
  font-size: 0.9rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 78px;
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 22px;
    border-radius: 24px;
    background: rgba(255, 248, 239, 0.98);
    box-shadow: var(--shadow);
  }

  .site-nav.open {
    display: flex;
  }

  .hero-grid,
  .split-grid,
  .freebie-box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 420px;
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 26px, 1120px);
  }

  .hero {
    padding-top: 56px;
  }

  h1 {
    font-size: 3rem;
  }

  .feature-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .freebie-box {
    padding: 28px;
  }

  .hero-actions .button {
    width: 100%;
  }
}
