/* Softie — refined to match reference mock */

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

:root {
  --cream: #fff9f8;
  --blush: #fdeef1;
  --pink: #e85a7f;
  --pink-light: #ff7a9a;
  --pink-deep: #d94d72;
  --pink-soft: #f8b4c4;
  --pink-pale: #fff0f4;
  --lavender: #c4b0d8;
  --lavender-soft: #e8dff0;
  --badge-bg: #fff8ee;
  --text: #3a3034;
  --text-soft: #6f6368;
  --text-light: #9a9094;
  --white: #ffffff;
  --border: #f5e0e6;
  --glass: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.9);
  --shadow-soft: 0 8px 32px rgba(232, 90, 127, 0.08);
  --shadow-card: 0 10px 36px rgba(61, 50, 54, 0.07);
  --shadow-phone: 0 32px 64px rgba(61, 50, 54, 0.16);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max: 1200px;
  --max-legal: 640px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.6;
  color: var(--text);
  background: var(--cream);
  min-height: 100vh;
}

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

a {
  color: var(--pink);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--pink-deep); }

/* ─── Background ─── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -3;
  background: linear-gradient(165deg, #fffcfb 0%, #fff7f8 45%, #fff2f5 100%);
}

.page-bg--home::before,
.page-bg--home::after {
  content: '';
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -2;
  filter: blur(80px);
}

.page-bg--home::before {
  width: 420px;
  height: 420px;
  top: -80px;
  left: -100px;
  background: rgba(255, 182, 198, 0.45);
}

.page-bg--home::after {
  width: 360px;
  height: 360px;
  top: 20%;
  right: -60px;
  background: rgba(196, 176, 216, 0.35);
}

.page-bg--sub {
  background: linear-gradient(180deg, #fffcfb 0%, #fff6f8 100%);
}

/* Soft blobs near phone */
.hero__visual::before {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 180, 200, 0.35) 0%, transparent 68%);
  top: 50%;
  left: 50%;
  transform: translate(-45%, -50%);
  z-index: 0;
  filter: blur(2px);
}

.hero__visual::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 176, 216, 0.3) 0%, transparent 70%);
  top: 30%;
  right: 10%;
  z-index: 0;
}

/* ─── Layout ─── */
.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
}

.container--legal { max-width: var(--max-legal); }

/* ─── Header — home ─── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-header--home {
  background: rgba(255, 252, 253, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(245, 224, 230, 0.5);
}

.site-header--home .site-header__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  min-height: 72px;
  padding: 14px 40px;
  max-width: var(--max);
  margin: 0 auto;
}

.site-header--home .logo { justify-self: start; }
.site-header--home .site-nav { justify-self: center; }
.site-header--home .header-cta { justify-self: end; }
.site-header--home .nav-toggle { display: none; }

.site-header--sub {
  background: rgba(255, 252, 253, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.site-header--sub .site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 12px 40px;
  max-width: var(--max);
  margin: 0 auto;
  position: relative;
}

.site-header--sub .site-nav {
  display: none;
}

.site-header--sub .nav-toggle {
  display: flex;
}

.site-header--sub .nav-checkbox:checked ~ .site-nav {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  flex-direction: column;
  background: rgba(255, 252, 253, 0.97);
  backdrop-filter: blur(12px);
  padding: 16px 40px 22px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  z-index: 10;
}

/* Logo */
.logo {
  font-family: var(--font-serif);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--pink);
  text-decoration: none;
  display: inline-flex;
  align-items: baseline;
  gap: 2px;
  letter-spacing: -0.02em;
}

.logo:hover { color: var(--pink-deep); }

.logo__sparkle {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.85;
  transform: translateY(-2px);
}

/* Nav */
.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-soft);
}

.site-nav a.is-active,
.site-nav a:hover {
  color: var(--pink);
  font-weight: 600;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--glass);
  backdrop-filter: blur(8px);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.nav-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 12px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}

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

.btn--pink {
  background: linear-gradient(135deg, var(--pink) 0%, var(--pink-light) 100%);
  color: var(--white);
  box-shadow: 0 6px 22px rgba(232, 90, 127, 0.32);
}

.btn--pink:hover {
  color: var(--white);
  box-shadow: 0 8px 26px rgba(232, 90, 127, 0.4);
}

.btn--outline {
  background: rgba(255, 255, 255, 0.9);
  color: var(--pink);
  border: 1.5px solid var(--pink-soft);
  box-shadow: 0 2px 12px rgba(232, 90, 127, 0.06);
}

.btn--outline:hover {
  background: var(--pink-pale);
  border-color: var(--pink);
}

.btn--wide {
  width: 100%;
  padding: 16px 24px;
  font-size: 0.95rem;
}

.btn__icon {
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}

/* ─── Hero ─── */
.hero {
  padding: 56px 0 48px;
}

.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 32px 56px;
  align-items: center;
}

.hero__copy {
  max-width: 500px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--pink-deep);
  background: var(--badge-bg);
  border: 1px solid rgba(245, 220, 200, 0.6);
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(232, 90, 127, 0.06);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.75rem, 4.8vw, 3.85rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--text);
  margin: 0 0 24px;
  letter-spacing: -0.025em;
}

.hero__title-line {
  display: block;
}

.hero__title em {
  font-style: italic;
  color: var(--pink);
  font-weight: 600;
}

.hero__lead {
  font-size: 1rem;
  color: var(--text-soft);
  line-height: 1.75;
  max-width: 440px;
  margin: 0 0 32px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.hero__support {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
}

.hero__support a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
}

.hero__support a:hover { color: var(--pink); }

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Phone */
.phone-stage {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  padding: 24px 0;
}

.phone {
  width: min(268px, 100%);
  background: linear-gradient(145deg, #1c181a, #2e282b);
  border-radius: 46px;
  padding: 11px;
  box-shadow: var(--shadow-phone);
  position: relative;
}

.phone__notch {
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
  width: 88px;
  height: 24px;
  background: #1c181a;
  border-radius: 18px;
  z-index: 2;
}

.phone__screen {
  background: linear-gradient(180deg, #fffcfd 0%, #fff6f8 100%);
  border-radius: 37px;
  overflow: hidden;
  padding: 42px 15px 18px;
  min-height: 500px;
}

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

.phone__greet {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  margin: 0;
  color: var(--text);
}

.phone__date {
  font-size: 0.6875rem;
  color: var(--text-light);
  margin: 4px 0 0;
}

.phone__avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-soft), var(--lavender));
}

.phone__card {
  background: var(--white);
  border-radius: 15px;
  padding: 13px 14px;
  margin-bottom: 10px;
  box-shadow: 0 3px 14px rgba(61, 50, 54, 0.05);
  border: 1px solid rgba(245, 224, 230, 0.7);
}

.phone__card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.phone__card-title {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.phone__card-sub {
  font-size: 0.625rem;
  color: var(--text-light);
  margin: 3px 0 0;
}

.phone__card-icon {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
}

.phone__card-icon--pink { background: #ffe8ee; color: var(--pink); }
.phone__card-icon--lav { background: #f3eef8; color: #9b85b0; }

.phone__bar {
  height: 5px;
  background: #fce8ee;
  border-radius: 4px;
  overflow: hidden;
}

.phone__bar span {
  display: block;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--pink), #f5a8bc);
}

.phone__bar span.p70 { width: 70%; }
.phone__bar span.p40 { width: 40%; }

.phone__row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.phone__mini { padding: 11px 12px; }
.phone__mini .phone__card-title { font-size: 0.7rem; }

/* Features — four glass cards */
.features {
  padding: 16px 0 72px;
}

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

.feature-card {
  background: var(--glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 22px 20px;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: flex-start;
  gap: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 40px rgba(232, 90, 127, 0.1);
}

.feature-card__icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}

.feature-card__icon svg {
  width: 20px;
  height: 20px;
}

.feature-card__text strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 5px;
  line-height: 1.3;
}

.feature-card__text span {
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.45;
}

/* ─── Subpages ─── */
.sub-hero {
  padding: 52px 0 28px;
  text-align: center;
}

.page-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-soft);
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.sub-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  font-weight: 700;
  color: var(--text);
  margin: 0 0 10px;
  line-height: 1.15;
}

.sub-hero__date {
  font-size: 0.9375rem;
  color: var(--text-light);
  margin: 0;
}

.sub-hero__intro {
  font-size: 1rem;
  color: var(--text-soft);
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.7;
}

.legal-body { padding: 0 0 48px; }

.legal-body__intro {
  font-size: 0.9375rem;
  color: var(--text-soft);
  line-height: 1.75;
  margin-bottom: 28px;
}

.legal-block {
  margin-bottom: 26px;
  padding: 22px 24px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 16px;
}

.legal-block h2 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.legal-block p,
.legal-block li {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
}

.legal-block ul {
  margin: 0 0 10px;
  padding-left: 1.25em;
}

.legal-block li { margin-bottom: 6px; }
.legal-block p { margin: 0 0 10px; }

.legal-cta-wrap { padding: 8px 0 64px; }

.support-card-main {
  background: var(--glass);
  backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: 22px;
  padding: 40px 36px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  margin: 28px 0 20px;
}

.support-card-main__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: var(--pink-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
}

.support-card-main__icon svg { width: 28px; height: 28px; }

.support-card-main h2 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text);
}

.support-card-main p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0 0 16px;
  line-height: 1.65;
}

.support-card-main .email-link {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.support-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 0.85rem;
  color: var(--text-light);
  margin: 24px 0 28px;
}

.support-note svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.support-resources {
  text-align: center;
  padding: 20px 0 56px;
}

.support-resources h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-light);
  margin: 0 0 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.support-resources a {
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0 14px;
}

.support-billing {
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 auto 28px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  background: rgba(255, 252, 253, 0.75);
  backdrop-filter: blur(10px);
  padding: 26px 0;
}

.site-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.site-footer .logo { font-size: 1.3rem; }

.site-footer__nav {
  display: flex;
  gap: 28px;
}

.site-footer__nav a {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--text-light);
}

.site-footer__nav a:hover { color: var(--pink); }

.site-footer__copy {
  font-size: 0.8125rem;
  color: var(--text-light);
  margin: 0;
}

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

/* Responsive */
@media (max-width: 1024px) {
  .features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__grid {
    gap: 32px 40px;
  }
}

@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .hero {
    padding: 40px 0 36px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__copy {
    max-width: none;
    margin: 0 auto;
  }

  .hero__lead {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions { justify-content: center; }
  .hero__support { text-align: center; }
  .hero__visual { order: -1; }

  .site-header--home .site-header__inner {
    grid-template-columns: 1fr auto auto;
    padding: 14px 24px;
    gap: 12px;
  }

  .site-header--home .logo { grid-column: 1; grid-row: 1; }

  .site-header--home .nav-toggle {
    display: flex;
    grid-column: 2;
    grid-row: 1;
  }

  .site-header--home .header-cta {
    grid-column: 3;
    grid-row: 1;
    padding: 10px 16px;
    font-size: 0.8125rem;
  }

  .site-header--home .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    gap: 10px;
    padding: 14px 0 6px;
    border-top: 1px solid var(--border);
    width: 100%;
  }

  .site-header--home .nav-checkbox:checked ~ .site-nav {
    display: flex;
  }

}

@media (max-width: 600px) {
  .features__grid {
    grid-template-columns: 1fr;
  }

  .hero__title {
    font-size: 2.35rem;
  }

  .site-footer__inner {
    flex-direction: column;
    text-align: center;
  }

  .site-footer__nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 20px;
  }
}

