:root {
  --ink: #2f2930;
  --muted: #6f646b;
  --paper: #fffdfb;
  --cream: #fff8f4;
  --blush: #fff0f4;
  --pink: #f65f8c;
  --pink-dark: #d93f70;
  --peach: #ffc8ae;
  --lavender: #d9c8ff;
  --line: rgba(79, 57, 68, 0.14);
  --shadow: 0 24px 70px rgba(87, 56, 69, 0.14);
  --radius-lg: 34px;
  --radius-md: 22px;
  --shell: min(1180px, calc(100% - 40px));
  --font: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 110px; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
:focus-visible { outline: 3px solid #7558c8; outline-offset: 3px; }
[hidden] { display: none !important; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 10px;
  background: var(--ink);
  color: white;
}
.skip-link:focus { transform: translateY(0); }

.status-bar {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 20px;
  color: #443b40;
  background: linear-gradient(90deg, #f8ddff, #ffe4e9 48%, #ffe6cf);
  font-size: 0.87rem;
  font-weight: 750;
  text-align: center;
}
.status-bar a { font-weight: 850; text-underline-offset: 3px; }
.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 0 0 0 5px rgba(246, 95, 140, 0.14);
}

.site-header {
  width: var(--shell);
  min-height: 82px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}
.brand { display: inline-flex; align-items: center; text-decoration: none; }
.brand img { width: auto; height: 44px; object-fit: contain; }
.site-header nav { display: flex; justify-content: center; gap: clamp(16px, 2.4vw, 34px); }
.site-header nav a {
  text-decoration: none;
  color: #51474d;
  font-size: 0.92rem;
  font-weight: 700;
}
.site-header nav a:hover { color: var(--pink-dark); }

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  cursor: pointer;
  text-decoration: none;
  font-weight: 850;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  background: linear-gradient(135deg, var(--pink), #ee4b82);
  color: white;
  box-shadow: 0 12px 28px rgba(224, 66, 115, 0.26);
}
.button-primary:hover { box-shadow: 0 16px 34px rgba(224, 66, 115, 0.34); }
.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(255,255,255,0.72);
}
.button-secondary:hover { background: white; box-shadow: 0 12px 28px rgba(87, 56, 69, 0.12); }
.button-small { min-height: 42px; padding: 9px 18px; font-size: 0.9rem; }
.button[disabled] { cursor: wait; opacity: 0.68; transform: none; }

.section-shell { width: var(--shell); margin-inline: auto; }
.hero {
  min-height: auto;
  padding-top: clamp(38px, 4.5vw, 64px);
  padding-bottom: 96px;
}
.eyebrow {
  display: inline-block;
  color: #876777;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}
.hero h1,
.section-intro h2,
.trust-heading h2,
.final-cta h2 {
  margin: 18px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
  letter-spacing: -0.045em;
}
.hero-message {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 0.42fr);
  gap: clamp(34px, 4vw, 58px);
  align-items: end;
}
.hero h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(3.6rem, 4.9vw, 5.4rem);
}
.hero-support { padding-bottom: 8px; }
.hero-lead {
  max-width: 530px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.55;
}
.video-callout {
  margin: 0;
  color: #584b52;
  font-size: 0.92rem;
}
.video-callout strong { color: var(--pink-dark); }
.launch-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; }
[data-store-buttons] { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 16px;
  margin: 22px 0 0;
  padding: 0;
  color: #756a70;
  font-size: 0.8rem;
  list-style: none;
}
.hero-trust li::before { content: "✓"; margin-right: 7px; color: var(--pink-dark); font-weight: 900; }

.store-button {
  min-width: 190px;
  min-height: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 16px;
  padding: 8px 17px;
  color: white;
  background: #171417;
  text-decoration: none;
  box-shadow: 0 14px 26px rgba(30, 23, 27, 0.16);
}
.store-button span { font-size: 0.68rem; line-height: 1.2; }
.store-button strong { font-size: 1.08rem; line-height: 1.3; }

.hero-video {
  position: relative;
  width: 100%;
  margin-top: 34px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(79, 57, 68, 0.12);
  border-radius: 38px;
  background:
    radial-gradient(circle at 18% 8%, rgba(246,95,140,0.18), transparent 30%),
    linear-gradient(145deg, #2c252b, #171417);
  box-shadow: 0 34px 90px rgba(45, 28, 38, 0.24);
}
.video-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 4px 8px 18px;
  color: white;
}
.video-heading span {
  color: #f8bfd1;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}
.video-heading strong { font-size: 0.9rem; }
.video-stage { position: relative; }
.hero-video video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 24px;
  background: #090709;
  object-fit: contain;
}
.video-play {
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255,255,255,0.42);
  border-radius: 999px;
  padding: 9px 22px 9px 10px;
  color: white;
  background: rgba(39, 26, 34, 0.84);
  box-shadow: 0 20px 48px rgba(20, 13, 17, 0.34);
  backdrop-filter: blur(14px);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease;
}
.video-play:hover,
.video-play:focus-visible {
  transform: translate(-50%, calc(-50% - 3px));
  background: rgba(217, 63, 112, 0.94);
}
.video-play span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  padding-left: 3px;
  border-radius: 50%;
  color: var(--pink-dark);
  background: white;
  font-size: 1rem;
}
.video-play strong { white-space: nowrap; font-size: 0.96rem; }
.hero-video.is-playing .video-play {
  opacity: 0;
  pointer-events: none;
}
.hero-video p {
  margin: 15px 8px 2px;
  color: rgba(255,255,255,0.72);
  font-size: 0.88rem;
}

.proof-strip {
  width: var(--shell);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-block: 1px solid var(--line);
}
.proof-strip div { padding: 25px clamp(16px, 3vw, 40px); border-right: 1px solid var(--line); }
.proof-strip div:last-child { border-right: 0; }
.proof-strip strong, .proof-strip span { display: block; }
.proof-strip strong { font-family: Georgia, serif; font-size: 1.22rem; font-weight: 500; }
.proof-strip span { color: var(--muted); font-size: 0.86rem; }

.section { padding: 112px 0; }
.section-tint { background: var(--cream); }
.section-dark { color: #fff; background: #332b31; }
.section-intro { max-width: 660px; }
.section-intro-wide { max-width: 780px; }
.section-intro h2,
.trust-heading h2,
.final-cta h2 { font-size: clamp(2.7rem, 5vw, 5rem); }
.section-intro p, .trust-heading p { color: var(--muted); font-size: 1.08rem; }
.section-dark .section-intro p { color: rgba(255,255,255,0.68); }
.section-dark .eyebrow { color: #f5b2c8; }

.steps { margin-top: 54px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.steps article {
  min-height: 265px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: white;
}
.step-number { color: var(--pink-dark); font-size: 0.8rem; font-weight: 900; letter-spacing: 0.1em; }
.steps h3, .feature-card h3, .availability-matrix h3, .trust-grid h3, .plan-cards h3 { margin: 46px 0 8px; font-size: 1.28rem; line-height: 1.2; }
.steps p, .feature-card p, .availability-matrix p, .trust-grid p, .plan-cards p { margin: 0; color: var(--muted); }

.feature-grid {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}
.feature-card {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 30px;
  border: 1px solid rgba(80, 57, 68, 0.1);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 94% 6%, rgba(246,95,140,0.12), transparent 32%),
    white;
  box-shadow: 0 16px 50px rgba(78, 55, 66, 0.08);
}
.feature-number {
  color: var(--pink-dark);
  font-family: Georgia, serif;
  font-size: 2rem;
  line-height: 1;
}
.feature-card h3 { margin: 50px 0 12px; font-size: 1.5rem; }
.feature-card > p { min-height: 78px; }
.feature-card ul {
  margin: auto 0 0;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  color: #5f555b;
  list-style: none;
}
.feature-card li { margin: 8px 0; }
.feature-card li::before { content: "✓"; margin-right: 9px; color: var(--pink-dark); font-weight: 900; }

.experience { display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(560px, 1.22fr); align-items: center; gap: clamp(36px, 7vw, 96px); overflow: visible; }
.experience-copy h2 { margin: 16px 0; font-family: Georgia, serif; font-size: clamp(2.7rem, 4.4vw, 4.7rem); font-weight: 500; line-height: 1; letter-spacing: -0.04em; }
.experience-copy > p { color: var(--muted); }
.check-list { padding: 0; margin: 28px 0 0; list-style: none; }
.check-list li { position: relative; margin: 14px 0; padding-left: 30px; }
.check-list li::before { content: "✓"; position: absolute; left: 0; color: var(--pink-dark); font-weight: 900; }
.experience-points {
  display: grid;
  gap: 14px;
  padding: 28px;
  border: 1px solid rgba(79, 57, 68, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255,255,255,0.95), transparent 34%),
    linear-gradient(145deg, #fff0f5, #f4edff 55%, #ffeadc);
  box-shadow: 0 26px 70px rgba(87, 56, 69, 0.11);
}
.experience-points article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 4px 16px;
  padding: 22px;
  border: 1px solid rgba(255,255,255,0.76);
  border-radius: 20px;
  background: rgba(255,255,255,0.62);
}
.experience-points span {
  grid-row: 1 / span 2;
  color: var(--pink-dark);
  font-family: Georgia, serif;
  font-size: 1.4rem;
}
.experience-points strong {
  font-size: 1.06rem;
  font-weight: 850;
}
.experience-points p { margin: 0; color: var(--muted); }

.plans-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: clamp(30px, 7vw, 90px); align-items: center; }
.plan-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.plan-cards article {
  min-height: 330px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.07);
}
.plan-cards .plan-pro { background: linear-gradient(145deg, rgba(246,95,140,0.24), rgba(217,200,255,0.13)); }
.plan-label { font-size: 0.75rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.1em; color: #f8bfd1; }
.plan-cards h3 { margin: 72px 0 12px; }
.plan-cards p { color: rgba(255,255,255,0.68); }
.plan-state { display: inline-block; margin-top: 26px; font-size: 0.78rem; font-weight: 850; color: #ffd2df; }

.trust-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 70px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.trust-grid article { padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-md); }
.trust-grid h3 { margin: 38px 0 8px; }
.trust-grid a { display: inline-block; margin-top: 18px; color: var(--pink-dark); font-size: 0.85rem; font-weight: 850; text-underline-offset: 4px; }

.faq-layout { display: grid; grid-template-columns: 0.72fr 1.28fr; gap: 80px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  font-weight: 850;
  list-style: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary::after { content: "+"; position: absolute; right: 4px; font-size: 1.5rem; font-weight: 400; }
.faq-list details[open] summary::after { content: "–"; }
.faq-list p { margin: 0; padding: 0 42px 24px 0; color: var(--muted); }
.faq-list a { color: var(--pink-dark); font-weight: 750; }

.resources { display: grid; grid-template-columns: 0.8fr 1fr auto; gap: 24px; align-items: end; }
.resource-card {
  display: flex;
  min-height: 235px;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  border-radius: var(--radius-md);
  color: var(--ink);
  background: linear-gradient(140deg, #ffe4ed, #f3e9ff);
  text-decoration: none;
}
.resource-card span { color: var(--pink-dark); font-size: 0.76rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.09em; }
.resource-card strong { font-family: Georgia, serif; font-size: 1.65rem; line-height: 1.08; font-weight: 500; }
.resource-card em { font-style: normal; font-weight: 850; }
.resource-link { align-self: center; color: var(--pink-dark); font-weight: 850; text-underline-offset: 4px; }

.final-cta { padding-top: 0; }
.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 60px;
  padding: clamp(34px, 7vw, 80px);
  border-radius: 42px;
  background: linear-gradient(135deg, #ffe0ea, #f0e7ff 55%, #ffeadb);
}
.final-cta-inner > div:first-child { max-width: 700px; }
.final-cta-inner > .launch-actions { max-width: 480px; justify-content: flex-end; }

.site-footer {
  width: var(--shell);
  margin: 0 auto;
  padding: 64px 0 30px;
  display: grid;
  grid-template-columns: 1.8fr repeat(3, 0.7fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}
.footer-main p { max-width: 500px; color: var(--muted); font-size: 0.84rem; }
.site-footer > div:not(.footer-main):not(.footer-bottom) { display: flex; flex-direction: column; gap: 9px; }
.site-footer strong { margin-bottom: 4px; font-size: 0.82rem; }
.site-footer a { color: var(--muted); text-decoration: none; font-size: 0.84rem; }
.site-footer a:hover { color: var(--pink-dark); }
.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.78rem;
}

@media (max-width: 980px) {
  .site-header { grid-template-columns: auto 1fr; }
  .site-header nav { display: none; }
  .site-header > .button { justify-self: end; }
  .hero-message { grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr); gap: 34px; }
  .hero h1 { font-size: clamp(3.4rem, 7vw, 5.2rem); }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .experience, .plans-layout, .trust-layout, .faq-layout { grid-template-columns: 1fr; }
  .experience-points { max-width: 760px; width: 100%; margin: 0 auto; }
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
  .resources { grid-template-columns: 1fr 1fr; }
  .resource-link { grid-column: 2; }
  .final-cta-inner { grid-template-columns: 1fr; }
  .final-cta-inner > .launch-actions { justify-content: flex-start; }
}

@media (max-width: 720px) {
  :root { --shell: min(100% - 28px, 600px); --radius-lg: 26px; }
  .status-bar { justify-content: flex-start; overflow-x: auto; white-space: nowrap; }
  .site-header { min-height: 70px; }
  .brand img { height: 38px; }
  .hero { padding-top: 42px; padding-bottom: 64px; }
  .hero-message { grid-template-columns: 1fr; gap: 18px; }
  .hero h1 { font-size: clamp(3.25rem, 14.5vw, 4.8rem); }
  .hero-support { padding: 0; }
  .hero-video { margin-top: 28px; padding: 12px; border-radius: 22px; }
  .video-heading { align-items: flex-start; flex-direction: column; gap: 2px; }
  .video-heading strong { font-size: 0.82rem; }
  .video-play { min-height: 54px; gap: 10px; padding: 7px 17px 7px 8px; }
  .video-play span { width: 38px; height: 38px; font-size: 0.82rem; }
  .video-play strong { font-size: 0.84rem; }
  .proof-strip { grid-template-columns: 1fr; }
  .proof-strip div { border-right: 0; border-bottom: 1px solid var(--line); }
  .proof-strip div:last-child { border-bottom: 0; }
  .section { padding: 82px 0; }
  .section-intro h2, .trust-heading h2, .final-cta h2 { font-size: clamp(2.65rem, 13vw, 4rem); }
  .steps, .feature-grid, .plan-cards, .trust-grid, .resources { grid-template-columns: 1fr; }
  .steps article { min-height: 220px; }
  .feature-card { min-height: 350px; }
  .experience-points { padding: 14px; }
  .experience-points article { grid-template-columns: 38px 1fr; padding: 18px; }
  .plans-layout, .trust-layout, .faq-layout { gap: 40px; }
  .resources .resource-link { grid-column: 1; }
  .final-cta { padding-inline: 0; }
  .final-cta-inner { width: calc(100% - 20px); gap: 24px; padding: 32px 22px; border-radius: 28px; }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-main { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 6px; }
}

@media (max-width: 430px) {
  .site-header > .button { min-height: 38px; padding-inline: 14px; }
  .hero-video video { border-radius: 14px; }
  .video-play strong { display: none; }
  .video-play { min-width: 58px; min-height: 58px; padding: 6px; }
  .video-play span { width: 44px; height: 44px; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-main, .footer-bottom { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
