/* herpep.app. One stylesheet for every page. Light only.
   Spacing sits on an 8 px grid. One type scale: display, h2, h3, lead, body, small, caption.
   Depth: a tight contact shadow plus a wide ambient one, and a fine inner highlight on white. */

:root {
  color-scheme: light;

  --ground: #FFF1F4;
  --accent: #C22C59;
  --accent-2: #E4577F;
  --line-accent: #D2386A;
  --ink: #1F1B1C;
  --ink-2: #5E5558;
  --ink-3: #6F6568;
  --white: #FFFFFF;
  --line: rgba(31, 27, 28, 0.08);
  --chip: rgba(31, 27, 28, 0.06);
  --star: #F2A33A;
  --dark: rgba(31, 27, 28, 0.94);

  --t-display-xl: clamp(48px, 12.4vw, 80px);
  --t-display: clamp(34px, 8.8vw, 60px);
  --t-h2: clamp(28px, 7.2vw, 48px);
  --t-h3: 20px;
  --t-lead: clamp(18px, 4.6vw, 21px);
  --t-body: 16px;
  --t-small: 14px;
  --t-caption: 12px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-ios: cubic-bezier(0.32, 0.72, 0, 1);

  --gutter: 24px;
  --wrap: 1280px;
  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --sh-contact: 0 1px 1px rgba(92, 24, 48, 0.04), 0 2px 6px rgba(92, 24, 48, 0.05);
  --sh-ambient: 0 24px 48px -20px rgba(92, 24, 48, 0.16), 0 56px 96px -40px rgba(92, 24, 48, 0.14);
  --sh-card: var(--sh-contact), var(--sh-ambient);
  --sh-float: 0 2px 4px rgba(92, 24, 48, 0.05), 0 16px 32px -12px rgba(92, 24, 48, 0.22);
  --hl: inset 0 1px 0 rgba(255, 255, 255, 0.95), inset 0 0 0 1px rgba(255, 255, 255, 0.55);

  --grain: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n' color-interpolation-filters='sRGB'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncR type='linear' slope='6' intercept='-2.5'/%3E%3CfeFuncG type='linear' slope='6' intercept='-2.5'/%3E%3CfeFuncB type='linear' slope='6' intercept='-2.5'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: 80px;
}
@media (prefers-reduced-motion: no-preference) {
  html:not(.fx) { scroll-behavior: smooth; }
}

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-stopped { overflow: clip; }
.lenis [data-lenis-prevent] { overscroll-behavior: contain; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font);
  font-size: var(--t-body);
  line-height: 1.55;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}

img, svg { display: block; max-width: 100%; }
img { height: auto; }
a { color: inherit; }
button { font: inherit; color: inherit; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
p { text-wrap: pretty; }
ul { padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 8px;
}

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

.skip {
  position: fixed;
  top: 16px; left: 16px;
  z-index: 100;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 0.2s var(--ease);
}
.skip:focus { transform: none; }

.wrap {
  width: 100%;
  max-width: calc(var(--wrap) + var(--gutter) * 2);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Type ---------- */

.t-h2, .sec-head h2, .private-copy h2, .faq h2, .closing h2, .story-heads h2 {
  font-size: var(--t-h2);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.028em;
}
.t-lead { font-size: var(--t-lead); font-weight: 500; line-height: 1.35; letter-spacing: -0.012em; }

/* Masked lines: each line rises out of its own clip. */
.ln { display: block; overflow: clip; padding: 0 0.06em 0.12em; margin: 0 -0.06em -0.12em; }
.ln > span { display: block; }
.split-mask { padding-bottom: 0.12em; margin-bottom: -0.12em; }

/* ---------- Shared bits ---------- */

.chip {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--chip);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.9);
  font-size: var(--t-caption);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink);
}

.stars { display: inline-flex; gap: 2px; color: var(--star); }
.stars svg { width: 14px; height: 14px; }

.pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  font-size: var(--t-small);
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  /* No transform or opacity transitions here: GSAP animates those on the hero pills. */
  transition: box-shadow 0.4s var(--ease), background-color 0.3s var(--ease), filter 0.2s;
}
.pill:active { filter: brightness(0.94); }
.pill--glass {
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  box-shadow: var(--hl), 0 0 16px rgba(255, 255, 255, 0.45), 0 8px 24px -8px rgba(92, 24, 48, 0.18);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  backdrop-filter: blur(16px) saturate(1.3);
}
.pill--dark {
  background: var(--dark);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14), 0 2px 4px rgba(31, 27, 28, 0.12), 0 12px 24px -12px rgba(31, 27, 28, 0.5);
}
.pill--soon { cursor: default; }
.pill--soon:active { filter: none; }
@media (hover: hover) {
  a.pill--glass:hover { background: rgba(255, 255, 255, 0.95); }
  a.pill--dark:hover { background: #000; }
}

.store { display: flex; justify-content: center; }
.store-badge {
  display: inline-block;
  border-radius: 10px;
  line-height: 0;
  transition: filter 0.2s;
}
.store-badge:active { filter: brightness(0.9); }
.store-badge img { width: auto; height: 56px; }

.glass {
  background: rgba(255, 255, 255, 0.64);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  backdrop-filter: blur(20px) saturate(1.4);
  box-shadow: var(--hl), var(--sh-float);
}

.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: var(--grain);
  background-size: 220px 220px;
  mix-blend-mode: screen;
  opacity: 0.12;
}

/* The phone, drawn in CSS: titanium band, black bezel, Dynamic Island. */
.phone {
  --pw: 300px;
  position: relative;
  width: var(--pw);
  padding: calc(var(--pw) * 0.03);
  border-radius: calc(var(--pw) * 0.155);
  background: #0D0C0D;
  box-shadow:
    inset 0 0 0 calc(var(--pw) * 0.005) #4A4549,
    0 0 0 calc(var(--pw) * 0.007) #E6DFE3,
    0 0 0 calc(var(--pw) * 0.0115) #A79CA3,
    0 2px 6px rgba(40, 10, 22, 0.18),
    0 30px 60px -28px rgba(110, 26, 58, 0.55),
    0 70px 120px -60px rgba(110, 26, 58, 0.4);
}
.phone::before,
.phone::after {
  content: "";
  position: absolute;
  width: calc(var(--pw) * 0.011);
  border-radius: 2px;
  background: linear-gradient(90deg, #8E838A, #D4CBD0);
}
.phone::before {
  left: calc(var(--pw) * -0.019);
  top: 17%;
  height: 4.5%;
  box-shadow: 0 calc(var(--pw) * 0.13) 0 0 #B3A9AE, 0 calc(var(--pw) * 0.27) 0 0 #B3A9AE;
}
.phone::after {
  right: calc(var(--pw) * -0.019);
  top: 25%;
  height: 11%;
}
.phone-screen {
  position: relative;
  aspect-ratio: 1320 / 2868;
  border-radius: calc(var(--pw) * 0.125);
  overflow: hidden;
  background: var(--ground);
  isolation: isolate;
  transform: translateZ(0);
}
.phone-screen > img:only-child {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.island {
  position: absolute;
  z-index: 5;
  top: calc(var(--pw) * 0.054);
  left: 50%;
  width: calc(var(--pw) * 0.268);
  height: calc(var(--pw) * 0.079);
  border-radius: 999px;
  background: #000;
  transform: translateX(-50%);
}

/* Layered app screens inside the story phone: content scrolls under the status bar and the pinned bar. */
.scr { position: absolute; inset: 0; overflow: hidden; }
.scr--app { background: var(--ground); }
.scr[data-scr="results"] { z-index: 2; }
.scr--lock { z-index: 3; width: 100%; height: 100%; object-fit: cover; }
.scr-content { position: absolute; left: 0; top: 0; width: 100%; will-change: transform; }
.scr-status { position: absolute; z-index: 2; left: 0; top: 0; width: 100%; }
.scr-bar { position: absolute; z-index: 2; left: 0; bottom: 0; width: 100%; }

/* ---------- Ambient ground: soft hue that shifts between sections as you scroll ---------- */

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.amb {
  position: absolute;
  inset: -10%;
  opacity: 0;
  will-change: opacity;
}
.amb--pink { background: radial-gradient(60% 50% at 80% 30%, rgba(247, 197, 214, 0.55), rgba(247, 197, 214, 0) 70%), radial-gradient(50% 40% at 10% 80%, rgba(251, 220, 230, 0.6), rgba(251, 220, 230, 0) 70%); }
.amb--peach { background: radial-gradient(60% 50% at 15% 25%, rgba(252, 214, 200, 0.55), rgba(252, 214, 200, 0) 70%), radial-gradient(50% 40% at 90% 85%, rgba(252, 225, 214, 0.55), rgba(252, 225, 214, 0) 70%); }
.amb--lilac { background: radial-gradient(60% 50% at 85% 70%, rgba(226, 208, 244, 0.55), rgba(226, 208, 244, 0) 70%), radial-gradient(50% 40% at 15% 20%, rgba(240, 222, 248, 0.55), rgba(240, 222, 248, 0) 70%); }

/* ---------- Header ---------- */

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  pointer-events: none;
}
.site-header > * { pointer-events: auto; }

.hdr-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 calc(var(--gutter) + 0px) 0 var(--gutter);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.5) 60%, rgba(255, 255, 255, 0));
  transition: opacity 0.4s var(--ease);
}
.hdr-bar::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 0 -16px 0;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  -webkit-mask-image: linear-gradient(180deg, #000 40%, transparent);
  mask-image: linear-gradient(180deg, #000 40%, transparent);
  pointer-events: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--ink);
}
.brand img { width: 28px; height: 28px; border-radius: 8px; box-shadow: 0 2px 6px -2px rgba(160, 30, 72, 0.4); }
.brand span { font-size: 19px; font-weight: 800; letter-spacing: -0.015em; }

.menu-btn {
  position: relative;
  width: 48px; height: 48px;
  margin-right: -12px;
  border: 0;
  background: none;
  cursor: pointer;
}
.menu-btn span {
  position: absolute;
  left: 14px;
  width: 20px; height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.2s;
}
.menu-btn span:nth-child(1) { top: 17px; }
.menu-btn span:nth-child(2) { top: 23px; }
.menu-btn span:nth-child(3) { top: 29px; }
.menu-open .menu-btn span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-open .menu-btn span:nth-child(2) { opacity: 0; }
.menu-open .menu-btn span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.hdr-cta, .hdr-links, .hdr-pill { display: none; }

.menu {
  position: absolute;
  z-index: 1;
  top: 0; left: 0; right: 0;
  padding: 80px var(--gutter) 24px;
  border-radius: 0 0 32px 32px;
  background: rgba(255, 255, 255, 0.84);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  backdrop-filter: blur(24px) saturate(1.4);
  box-shadow: var(--hl), 0 24px 64px -24px rgba(92, 24, 48, 0.28);
  opacity: 0;
  transform: translateY(-16px);
  visibility: hidden;
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease), visibility 0s linear 0.5s;
}
.menu-open .menu {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition: opacity 0.35s var(--ease), transform 0.5s var(--ease), visibility 0s;
}
.menu nav a {
  display: block;
  padding: 16px 8px;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  color: var(--ink);
}
.menu-pills {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  margin-top: 16px;
}
.menu-pills .pill { width: 100%; }
.menu-pills .pill--glass { background: rgba(255, 255, 255, 0.92); }

/* ---------- Hero and the pinned story ---------- */

.stage { position: relative; }

.stage-pin {
  position: relative;
  overflow: hidden;
  padding-bottom: 56px;
}

.stage-bg { position: absolute; inset: 0; pointer-events: none; }
.stage-bg--hero {
  background: linear-gradient(180deg, #FFFFFF 0%, #FBE9F0 17%, #F3CDE0 36%, #F7C5D1 56%, #FBCFC2 78%, #FAD6CA 100%);
}
.stage-bg--story {
  opacity: 0;
  background:
    radial-gradient(70% 40% at 50% 100%, rgba(236, 196, 232, 0.75), rgba(236, 196, 232, 0) 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FFF4F7 35%, #FBE3EC 70%, #F3D9EE 100%);
}
.stage-bg--dusk {
  opacity: 0;
  background:
    radial-gradient(70% 45% at 50% 100%, rgba(214, 196, 245, 0.8), rgba(214, 196, 245, 0) 70%),
    linear-gradient(180deg, #FFFFFF 0%, #FAF1FA 35%, #EFE0F4 70%, #E6D6F3 100%);
}
.stage-bg .grain { opacity: 0.14; }

.hero-copy {
  position: relative;
  z-index: 2;
  padding: 112px var(--gutter) 0;
  text-align: center;
}
.hero-copy h1 {
  max-width: 12.5em;
  margin: 0 auto;
  font-size: var(--t-display);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.035em;
}
.hero-sub {
  max-width: 21em;
  margin: 16px auto 0;
  color: rgba(31, 27, 28, 0.84);
}

.laurel {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: #4B3A40;
}
.laurel > svg { width: 22px; height: 44px; }
.laurel > svg:last-child { transform: scaleX(-1); }
.laurel-mid { display: grid; justify-items: center; gap: 4px; }
.laurel-mid strong { font-size: 15px; font-weight: 800; line-height: 1; }
.laurel-mid .stars svg { width: 13px; height: 13px; }
.laurel-mid span:last-child { font-size: var(--t-caption); font-weight: 500; line-height: 1.1; }

.stage-phone {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  margin-top: 40px;
  transform-origin: 50% 0;
  will-change: transform;
}
.phone-lift { will-change: transform; }
.stage-phone .phone { --pw: min(300px, 76vw); }

.hero-ctas {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 8px;
  max-width: 424px;
  margin: 24px auto 0;
  padding: 0 var(--gutter);
}
.hero-ctas .pill { width: 100%; }

.story {
  position: relative;
  z-index: 3;
  padding: 64px 0 0;
  text-align: center;
}
.story-heads { display: grid; padding: 0 var(--gutter); }
.story-heads h2 { grid-area: 1 / 1; margin: 0 auto; }

/* Review cards: a swipe carousel on phones, floating around the phone on wide screens. */
.rv { position: relative; z-index: 3; margin-top: 16px; }

.track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.track::-webkit-scrollbar { display: none; }
.track:focus-visible { outline-offset: -3px; border-radius: 24px; }
.track.is-gliding { scroll-snap-type: none; }
.track.is-dragging { scroll-snap-type: none; cursor: grabbing; }
@media (hover: hover) and (pointer: fine) {
  .stories .track { cursor: grab; }
}

.rv .track { padding: 8px calc(50% - 148px) 16px; }
.rv-card {
  flex: 0 0 296px;
  scroll-snap-align: center;
  padding: 16px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--hl), var(--sh-float);
  text-align: left;
}
.rv-top { display: flex; align-items: center; gap: 8px; }
.rv-top img { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; box-shadow: 0 0 0 2px #fff; }
.rv-name { font-size: var(--t-small); font-weight: 700; line-height: 1.2; }
.rv-top .stars { margin-top: 4px; }
.rv-top .stars svg { width: 12px; height: 12px; }
.rv-card blockquote p {
  margin-top: 8px;
  font-size: var(--t-small);
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink);
}

.dots { display: flex; justify-content: center; margin-top: 0; }
.dot {
  position: relative;
  width: 24px; height: 24px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}
.dot::before {
  content: "";
  position: absolute;
  top: 9px; left: 2px;
  width: 20px; height: 6px;
  border-radius: 3px;
  background: var(--ink);
  opacity: 0.2;
  transform: scaleX(0.3);
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.dot[aria-current="true"]::before { opacity: 0.88; transform: scaleX(1); }

.story-anchor { position: absolute; left: 0; width: 1px; height: 1px; }
.rv-card.is-off { display: none; }

/* ---------- Essential companion ---------- */

.essential { position: relative; }
.ess-pin {
  position: relative;
  display: grid;
  justify-items: center;
  padding: 96px 0 80px;
  overflow: clip;
}
.ess-line {
  position: relative;
  z-index: 2;
  font-size: var(--t-display-xl);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-align: center;
}
.ess-phone {
  position: relative;
  z-index: 1;
  margin: 32px 0;
  perspective: 1400px;
}
.ess-phone .phone { --pw: min(176px, 45vw); transform-style: preserve-3d; }
.obj {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  will-change: transform;
}
.obj img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 4px 4px rgba(120, 30, 60, 0.1)) drop-shadow(0 20px 20px rgba(120, 30, 60, 0.16));
}
@media (prefers-reduced-motion: no-preference) {
  .obj img { animation: bob 7s ease-in-out infinite; }
  .obj:nth-of-type(2n) img { animation-duration: 8.5s; animation-delay: -2s; }
  .obj:nth-of-type(3n) img { animation-duration: 6.2s; animation-delay: -4s; }
}
@keyframes bob {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-6px) rotate(1.5deg); }
}
/* Objects sit around the phone: left and top in % of the phone box, width in % of its width. */
.obj--pen { width: 76%; left: 68%; top: 12%; }
.obj--pen img { rotate: 28deg; }
.obj--cal { width: 46%; left: -52%; top: 3%; }
.obj--pill { width: 58%; left: -56%; top: 50%; }
.obj--glass { width: 46%; left: 102%; top: 54%; }
.obj--scale { width: 40%; left: -100%; top: 80%; display: none; }

/* ---------- Section heads ---------- */

.sec-head { max-width: 656px; }
.sec-head h2 { margin-top: 16px; }
.sec-head p, .private-copy p {
  margin-top: 16px;
  font-size: var(--t-body);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink-2);
}

/* ---------- Features ---------- */

.features { position: relative; padding: 56px 0 80px; }
.features .wrap { padding: 0 16px; }
.features .sec-head { padding: 0 8px; }

.fgrid {
  display: grid;
  gap: 24px;
  margin-top: 40px;
}
.fcard {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: var(--sh-card);
  isolation: isolate;
  transform: translateZ(0);
}
.fcard::after {
  content: "";
  position: absolute;
  z-index: 4;
  inset: 0;
  border-radius: inherit;
  box-shadow: var(--hl);
  pointer-events: none;
}
.fcard-text {
  position: absolute;
  z-index: 3;
  top: 0; left: 0; right: 0;
  padding: 24px 24px 64px;
  background: linear-gradient(180deg, #FFFFFF 0%, rgba(255, 255, 255, 0.88) 50%, rgba(255, 255, 255, 0) 100%);
}
.fcard h3 {
  font-size: var(--t-h3);
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.012em;
}
.fcard-text p {
  max-width: 30em;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-2);
}
.fart { position: absolute; inset: 0; z-index: 1; }
.par { will-change: transform; }

/* 1. Log a shot */
.fcard--log .fart {
  background:
    radial-gradient(60% 50% at 80% 90%, rgba(251, 207, 194, 0.9), rgba(251, 207, 194, 0) 70%),
    linear-gradient(170deg, #FFF3F6 0%, #FDDDE7 55%, #F9CCDA 100%);
}
.log-card {
  position: absolute;
  left: 50%;
  bottom: -24px;
  width: 74%;
  max-width: 288px;
  transform: translateX(-50%);
}
.log-card img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.85), 0 2px 6px rgba(110, 26, 58, 0.08), 0 32px 56px -24px rgba(110, 26, 58, 0.45);
}
.log-chip {
  position: absolute;
  left: 16px;
  bottom: 72px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}
.log-chip b { display: block; font-weight: 700; }
.log-chip .tick {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
}
.log-pen {
  position: absolute;
  right: 2%;
  top: 44%;
  width: 34%;
  max-width: 152px;
}
.log-pen img { rotate: -24deg; filter: drop-shadow(0 16px 16px rgba(120, 30, 60, 0.2)); }

/* 2. Perfect shot day */
.fcard--day .fart { background: linear-gradient(180deg, #FBF1FA 0%, #F2E1F5 55%, #EAD3F1 100%); }
.day-plot { position: absolute; left: 0; right: 0; bottom: 48px; height: 58%; }
.day-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.day-dot, .prog-dot {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: inset 0 0 0 3px var(--line-accent), 0 2px 6px rgba(120, 30, 60, 0.25);
  transform: translate(-50%, -50%);
}
.day-dot { left: 21.43%; top: 83.33%; }
.day-callout {
  position: absolute;
  left: calc(28% + 16px);
  top: 0;
  padding: 8px 16px;
  border-radius: 16px;
  font-size: 13px;
  line-height: 1.35;
}
.day-callout b { display: block; font-weight: 700; }
.day-callout span { color: var(--ink-2); font-weight: 500; }
.day-pen {
  position: absolute;
  left: 21.43%;
  top: 44%;
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  margin: -24px 0 0 -24px;
  border-radius: 50%;
}
.day-pen img { width: 32px; height: 32px; rotate: -34deg; }
.day-week {
  position: absolute;
  left: 0; right: 0; bottom: 16px;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  font-size: var(--t-caption);
  font-weight: 500;
  text-align: center;
  color: var(--ink-3);
}
.day-week .on { color: var(--accent); font-weight: 800; }

/* 3. Progress */
.fcard--progress .fart { background: linear-gradient(180deg, #FFF6F2 0%, #FDE6DC 60%, #FBD8CB 100%); }
.prog-plot { position: absolute; left: 0; right: 0; bottom: 72px; height: 52%; }
.prog-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.prog-dot--start { left: 5.71%; top: 20.67%; }
.prog-dot--now { left: 62.86%; top: 54%; }
.prog-start, .prog-goal { position: absolute; font-size: var(--t-caption); font-weight: 700; color: var(--ink-3); }
.prog-start { left: calc(5.71% - 8px); top: calc(20.67% - 32px); }
.prog-goal { left: 16px; top: calc(77.33% - 24px); }
.prog-chip {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 16px;
  font-size: 13px;
  font-weight: 700;
}
.prog-flag {
  position: absolute;
  left: 88.57%;
  top: 76%;
  width: 88px;
  margin: -76px 0 0 -26px;
}
.prog-flag img { filter: drop-shadow(0 14px 16px rgba(120, 30, 60, 0.2)); }

/* 4. Never miss a shot */
.fcard--remind { --la-h: calc(min(86%, 340px) * 0.353); }
.fcard--remind .fart { background: linear-gradient(160deg, #D9C3EA 0%, #E9C5DD 45%, #F3C9CF 80%, #F6D2C9 100%); }
.fcard--remind .fart::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--grain);
  background-size: 220px 220px;
  mix-blend-mode: screen;
  opacity: 0.1;
}
.remind-row {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: calc(32px + var(--la-h) + 16px);
  display: flex;
  gap: 16px;
  width: max-content;
  transform: translateX(-50%);
}
.remind-row img {
  width: clamp(96px, 32vw, 128px);
  border-radius: 22%;
  box-shadow: 0 2px 4px rgba(70, 20, 50, 0.1), 0 20px 36px -16px rgba(70, 20, 50, 0.5);
}
.remind-row .w1 { rotate: -4deg; }
.remind-row .w2 { rotate: 4deg; }
.la-banner {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 32px;
  width: 86%;
  max-width: 340px;
  transform: translateX(-50%);
}
.la-banner img { width: 100%; border-radius: 18px; box-shadow: 0 2px 4px rgba(70, 20, 50, 0.1), 0 24px 40px -18px rgba(70, 20, 50, 0.5); }
.remind-bell {
  position: absolute;
  z-index: 3;
  right: 4%;
  bottom: calc(32px + var(--la-h) - 24px);
  width: 64px;
}
.remind-bell img { rotate: 14deg; filter: drop-shadow(0 12px 14px rgba(120, 30, 60, 0.25)); }

/* 5. Private */
.fcard--private .fart {
  background:
    radial-gradient(55% 45% at 50% 70%, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0) 70%),
    linear-gradient(180deg, #FFF3F7 0%, #F8DDEA 60%, #F1D2EA 100%);
}
.priv-lock { position: absolute; left: calc(50% - min(20%, 84px)); top: 44%; width: 40%; max-width: 168px; }
.priv-lock img { filter: drop-shadow(0 4px 6px rgba(120, 30, 60, 0.1)) drop-shadow(0 24px 24px rgba(120, 30, 60, 0.2)); }
.priv-tag {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 8px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.priv-tag i {
  display: grid;
  place-items: center;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-style: normal;
}
.priv-tag--a { left: 16px; top: 40%; }
.priv-tag--b { right: 16px; top: 58%; }
.priv-tag--c { left: 24px; bottom: 32px; }

/* ---------- Private by design band ---------- */

.private {
  position: relative;
  padding: 80px 0;
  background:
    radial-gradient(62% 36% at 52% 45%, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 56%, rgba(255, 255, 255, 0) 100%),
    linear-gradient(86deg, rgba(234, 205, 242, 0.42) 0%, rgba(255, 228, 236, 0.5) 50%, rgba(251, 214, 200, 0.42) 100%);
}
.private-grid { display: grid; gap: 40px; }
.private-copy h2 { margin-top: 16px; }
.private-art {
  position: relative;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(60% 40% at 50% 34%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 70%),
    linear-gradient(165deg, #FBE4EE 0%, #F5CFE0 45%, #EFC6E6 75%, #F7D3CB 100%);
  box-shadow: var(--hl), var(--sh-card);
  transform: translateZ(0);
}
.private-art .grain { opacity: 0.12; }
.big-lock { position: absolute; left: calc(50% - min(26%, 116px)); top: 8%; width: 52%; max-width: 232px; }
.big-lock img { filter: drop-shadow(0 6px 8px rgba(120, 30, 60, 0.1)) drop-shadow(0 32px 32px rgba(120, 30, 60, 0.22)); }
.gcard {
  position: absolute;
  z-index: 2;
  left: 16px; right: 16px; bottom: 16px;
  padding: 16px 16px 16px;
  border-radius: 20px;
}
.gcard-title { font-size: var(--t-body); font-weight: 800; }
.gcard-sub { font-size: 13px; font-weight: 500; color: var(--ink-2); }
.gcard ul { margin-top: 8px; display: grid; gap: 8px; }
.gcard li { display: flex; align-items: flex-start; gap: 8px; font-size: var(--t-small); font-weight: 500; line-height: 1.35; }
.gcard li svg { flex: none; width: 18px; height: 18px; margin-top: 1px; color: var(--accent); }

/* ---------- Stories (large review cards) ---------- */

.stories { position: relative; padding: 56px 0 80px; }
.stories .track {
  gap: 24px;
  margin-top: 32px;
  padding: 8px 16px 24px;
  scroll-padding: 0 16px;
}
.st-card {
  position: relative;
  flex: 0 0 min(320px, 82vw);
  height: 496px;
  scroll-snap-align: start;
  border-radius: 24px;
  overflow: hidden;
  background: #F7E9EE;
  box-shadow: var(--sh-card);
  isolation: isolate;
  transform: translateZ(0);
}
.st-card::after { content: ""; position: absolute; z-index: 3; inset: 0; border-radius: inherit; box-shadow: var(--hl); pointer-events: none; }
.st-top { position: relative; z-index: 2; padding: 24px 24px 0; }
.st-stars {
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  box-shadow: var(--hl);
}
.st-card blockquote p {
  margin-top: 16px;
  font-size: 19px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.012em;
}
.st-photo { position: absolute; z-index: 1; left: 0; right: 0; bottom: 0; height: 62%; }
.st-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 30%;
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 28%);
  mask-image: linear-gradient(180deg, transparent 0%, #000 28%);
  pointer-events: none;
  -webkit-user-drag: none;
}
.st-photo figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 64px 24px 24px;
  background: linear-gradient(180deg, rgba(228, 87, 127, 0) 0%, rgba(194, 44, 89, 0.5) 60%, rgba(160, 30, 72, 0.74) 100%);
  color: var(--white);
  text-align: right;
}
.st-photo figcaption b { display: block; font-size: var(--t-h3); font-weight: 800; letter-spacing: -0.012em; }

/* ---------- FAQ ---------- */

.faq { position: relative; padding: 80px 24px; }
.faq-wrap { max-width: 808px; margin: 0 auto; }
.faq-list { display: grid; gap: 16px; margin-top: 32px; }
.faq-item {
  border-radius: 24px;
  background: var(--ground);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.7);
  transition: background-color 0.3s var(--ease);
}
.faq-item[open] { background: #FDEAF0; }
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px;
  list-style: none;
  cursor: pointer;
  border-radius: 24px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item h3 { font-size: 18px; font-weight: 500; line-height: 1.4; }
.faq-icon { position: relative; flex: none; width: 20px; height: 20px; }
.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  left: 1px; top: 9px;
  width: 18px; height: 2px;
  border-radius: 2px;
  background: rgba(31, 27, 28, 0.7);
  transition: transform 0.4s var(--ease-ios);
}
.faq-icon::after { transform: rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: rotate(0deg); }
.faq-a { padding: 0 24px 24px; }
.faq-a p { font-size: 15px; line-height: 1.6; color: #3F3639; }
.faq-a p + p { margin-top: 8px; }
.faq-a a { color: var(--accent); font-weight: 500; }
@media (prefers-reduced-motion: no-preference) {
  .faq-item[open] .faq-a { animation: faqIn 0.45s var(--ease-ios); }
}
@keyframes faqIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Closing ---------- */

.closing {
  position: relative;
  padding: 104px 40px 120px;
  overflow: clip;
  background:
    radial-gradient(72% 44% at 50% 78%, rgba(240, 180, 214, 0.62) 0%, rgba(240, 180, 214, 0) 72%),
    radial-gradient(38% 22% at 18% 88%, rgba(251, 210, 196, 0.55) 0%, rgba(251, 210, 196, 0) 76%),
    radial-gradient(40% 26% at 84% 70%, rgba(214, 196, 245, 0.5) 0%, rgba(214, 196, 245, 0) 76%);
  text-align: center;
}
.closing .grain { opacity: 0.1; }
.closing-in { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.closing p { margin-top: 16px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.closing .store { margin-top: 32px; }
.closing .pill { width: 100%; max-width: 312px; font-size: 17px; }

/* ---------- Footer ---------- */

.site-footer {
  position: relative;
  background: #1F1B1C;
  color: #EDE6E8;
  padding: 56px 0 40px;
}
.ft-grid { display: grid; gap: 40px; }
.site-footer .brand { color: var(--white); }
.site-footer .brand img { width: 32px; height: 32px; border-radius: 8px; }
.site-footer .brand span { font-size: 24px; }
.ft-mail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 15px;
  color: #CFC5C9;
  text-decoration: none;
}
.ft-mail:hover { color: var(--white); }
.ft-mail svg { width: 18px; height: 18px; }
.ft-legal { margin-top: 24px; max-width: 34em; font-size: var(--t-small); line-height: 1.55; color: #CFC5C9; }
.ft-cols { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 24px; }
.ft-h { font-size: var(--t-caption); font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: #A99EA2; }
.ft-cols ul { display: grid; gap: 12px; margin-top: 16px; }
.ft-cols a { font-size: 15px; color: #F4EEF0; text-decoration: none; }
.ft-cols a:hover { text-decoration: underline; text-underline-offset: 3px; }
.ft-bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--t-small);
  color: #A99EA2;
}

/* ---------- Reveals without GSAP (the sub pages) ---------- */

.io [data-reveal] {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease), transform 1.1s var(--ease);
  transition-delay: var(--d, 0ms);
}
.io [data-reveal].in { opacity: 1; transform: none; }

/* ---------- Motion mode: pinned hero story and pinned essential ---------- */

.fx .stage { height: 460svh; }
.fx .stage-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 560px;
  padding: 0;
}
.fx .hero-copy { position: absolute; left: 0; right: 0; top: 0; will-change: transform, opacity; }
.fx .stage-phone { position: absolute; left: 0; right: 0; top: 0; margin: 0; }
.fx .hero-ctas {
  position: absolute;
  left: 0; right: 0;
  bottom: max(24px, env(safe-area-inset-bottom));
  margin: 0 auto;
  will-change: transform, opacity;
}
.fx .story { position: absolute; left: 0; right: 0; top: 0; padding-top: 88px; }
.fx .story-heads .ln > span { transform: translateY(110%); }
.fx .rv { position: absolute; left: 0; right: 0; top: 0; margin: 0; opacity: 0; visibility: hidden; will-change: transform, opacity; }
.fx .stage-bg--story, .fx .stage-bg--dusk { will-change: opacity; }
.fx .scr[data-scr="results"] { transform: translateY(100%); }
.fx .scr--lock { transform: translateY(-100%); }

/* Until the page script has set its start states, keep the parts it animates in still. */
.fx:not(.ready) .hero-copy, .fx:not(.ready) .stage-phone, .fx:not(.ready) .hero-ctas { opacity: 0; }

.fx .essential { height: 200svh; }
.fx .ess-pin {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 600px;
  padding: 0;
  align-content: center;
}
.fx .ess-line, .fx .ess-phone .phone { will-change: transform, opacity; }

/* Static mode (no JavaScript, or Reduce Motion): the hero and the story stack. */
html:not(.fx) .stage-pin { display: flex; flex-direction: column; }
html:not(.fx) .hero-copy { order: 1; }
html:not(.fx) .stage-phone { order: 2; }
html:not(.fx) .hero-ctas { order: 3; }
html:not(.fx) .story { order: 4; }
html:not(.fx) .rv { order: 5; }
html:not(.fx) .stage-bg--story, html:not(.fx) .stage-bg--dusk { display: none; }
html:not(.fx) .story-heads h2:not(:first-child) { display: none; }
html:not(.fx) .scr[data-scr="results"], html:not(.fx) .scr--lock { display: none; }

/* ---------- Tablet ---------- */

@media (min-width: 640px) {
  :root { --gutter: 32px; }
  .rv .track { padding-left: calc(50% - 160px); padding-right: calc(50% - 160px); }
  .rv-card { flex-basis: 320px; }
  .fcard { height: 504px; }
  .stories .track { padding-left: 32px; padding-right: 32px; scroll-padding: 0 32px; }
  .st-card { flex-basis: 344px; height: 520px; }
  .ess-phone .phone { --pw: 232px; }
}

@media (min-width: 768px) {
  .fgrid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .fcard--private { grid-column: 1 / -1; }
  .private-grid { grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); align-items: center; gap: 48px; }
  .private-art { height: 520px; }
  .ft-grid { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); }
  .ft-cols { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ---------- Desktop ---------- */

@media (min-width: 1024px) {
  :root { --gutter: 80px; }

  .hdr-bar {
    height: 72px;
    padding: 0 48px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0));
  }
  .menu-btn, .menu { display: none; }
  .hdr-cta { display: flex; }
  .hdr-cta .pill { height: 40px; padding: 0 16px; font-size: var(--t-small); }
  .hdr-cta .store-badge img { height: 40px; }

  .hdr-pill {
    position: absolute;
    z-index: 3;
    top: 16px;
    left: 50%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 864px;
    height: 56px;
    padding: 0 8px 0 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    backdrop-filter: blur(20px) saturate(1.4);
    box-shadow: var(--hl), 0 2px 4px rgba(92, 24, 48, 0.04), 0 16px 40px -16px rgba(92, 24, 48, 0.3);
    transform: translateX(-50%);
    transition: opacity 0.45s var(--ease), transform 0.6s var(--ease);
  }
  .hdr-pill .brand span { font-size: 18px; }
  .hdr-pill .brand img { width: 24px; height: 24px; }
  .hdr-links { display: flex; gap: 4px; }
  .hdr-links a {
    padding: 8px 16px;
    border-radius: 12px;
    font-size: var(--t-small);
    font-weight: 500;
    text-decoration: none;
    color: var(--ink);
    transition: background-color 0.2s;
  }
  .hdr-links a:hover { background: rgba(31, 27, 28, 0.06); }

  .has-pill .hdr-bar { opacity: 0; pointer-events: none; }
  .has-pill.is-scrolled .hdr-bar { opacity: 1; pointer-events: auto; }
  .has-pill.is-scrolled .hdr-pill { opacity: 0; transform: translate(-50%, -12px); pointer-events: none; }
  .site-header:not(.has-pill) .hdr-pill { display: none; }
  .site-header:not(.has-pill) .hdr-bar .hdr-links { display: flex; margin-left: auto; margin-right: 16px; }

  .hero-copy { padding-top: 152px; }
  .hero-copy h1 { max-width: 17em; }
  .laurel { margin-top: 32px; }
  .stage-phone .phone { --pw: clamp(304px, calc((100svh - 200px) * 0.5), 424px); }
  .hero-ctas { grid-template-columns: 264px 264px; justify-content: center; gap: 16px; max-width: none; }
  .hero-ctas .pill { height: 60px; font-size: var(--t-body); }
  .hero-ctas .store-badge img { height: 60px; }

  .fx .story { padding-top: 104px; }
  .fx .rv { inset: 0; }
  .fx .rv .track { position: absolute; inset: 0; display: block; overflow: visible; padding: 0; }
  .fx .rv .dots { display: none; }
  .fx .rv-card { position: absolute; left: 0; top: 0; width: 344px; padding: 20px 24px 24px; }
  .fx .rv-card blockquote p { font-size: 15px; }

  .ess-pin {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    column-gap: 48px;
    padding: 120px 0;
  }
  .ess-line--a { justify-self: end; align-self: start; margin-top: 16%; text-align: right; }
  .ess-line--b { justify-self: start; align-self: end; margin-bottom: 18%; text-align: left; }
  .ess-phone { margin: 0; }
  .ess-phone .phone { --pw: min(272px, calc((100svh - 192px) / 2.1)); }
  .obj--pen { width: 70%; left: 58%; top: 10%; }
  .obj--cal { width: 42%; left: 112%; top: -1%; }
  .obj--pill { width: 56%; left: -52%; top: 58%; }
  .obj--glass { width: 42%; left: 72%; top: 86%; }
  .obj--scale { display: block; width: 40%; left: -104%; top: 80%; }

  .features { padding: 64px 0 128px; }
  .features .wrap { padding: 0 80px; }
  .features .sec-head { padding: 0; }
  .features .sec-head p { max-width: 26em; }
  .fgrid { grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 24px; margin-top: 48px; }
  .fcard { height: 440px; grid-column: span 2; }
  .fcard--log, .fcard--day { grid-column: span 3; height: 432px; }
  .fcard--private { grid-column: span 2; }
  .log-card { width: 232px; max-width: none; bottom: -48px; }
  .log-chip { left: 24px; bottom: 64px; }
  .log-pen { right: 6%; top: 36%; width: 152px; }
  .day-plot { height: 60%; }

  .private { padding: 128px 0; }
  .private-grid { grid-template-columns: 416px 528px; justify-content: center; gap: 104px; }
  .private-art { height: 560px; order: -1; }
  .private-copy p { font-size: 17px; max-width: 30em; }

  .stories { padding: 64px 0 128px; }
  .stories .track { gap: 24px; margin-top: 48px; padding: 8px 80px 24px; scroll-padding: 0 80px; }
  .st-card { flex-basis: 416px; height: 560px; }
  .st-top { padding: 32px 32px 0; }
  .st-card blockquote p { font-size: 21px; }

  .faq { padding: 128px 24px; }
  .faq h2 { text-align: center; }
  .faq-list { margin-top: 48px; }

  .closing { padding: 152px 40px 168px; }
  .closing p { font-size: 17px; }

  .site-footer { padding: 72px 0 48px; }
  .ft-grid { grid-template-columns: minmax(0, 1fr) minmax(0, 1.3fr); gap: 80px; }
}

/* ---------- Sub pages: Privacy, Terms, Support ---------- */

.page {
  position: relative;
  padding: 112px 0 80px;
  background:
    radial-gradient(80% 40% at 50% 0%, rgba(243, 205, 224, 0.75), rgba(243, 205, 224, 0) 70%),
    radial-gradient(40% 30% at 90% 10%, rgba(251, 207, 194, 0.55), rgba(251, 207, 194, 0) 70%),
    var(--white);
}
.page-head { max-width: 760px; margin: 0 auto; padding: 0 var(--gutter); text-align: center; }
.page-head h1 {
  margin-top: 16px;
  font-size: clamp(34px, 8vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}
.page-head .muted { margin-top: 16px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.doc { max-width: 760px; margin: 40px auto 0; padding: 0 16px; }
.doc-card {
  padding: 32px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--hl), var(--sh-card);
}
.doc-card h2 { margin: 40px 0 8px; font-size: 21px; font-weight: 800; line-height: 1.3; letter-spacing: -0.012em; }
.doc-card h2:first-child { margin-top: 0; }
.doc-card h3 { margin: 24px 0 8px; font-size: 17px; font-weight: 700; line-height: 1.35; }
.doc-card p, .doc-card li { font-size: var(--t-body); line-height: 1.65; color: #3F3639; }
.doc-card p + p { margin-top: 16px; }
.doc-card ul { margin: 8px 0; padding-left: 24px; list-style: disc; }
.doc-card li { margin: 8px 0; }
.doc-card li::marker { color: var(--accent-2); }
.doc-card a { color: var(--accent); text-underline-offset: 3px; }
.summary {
  margin: 0 0 24px;
  padding: 16px;
  border-radius: 16px;
  background: var(--ground);
  box-shadow: inset 0 0 0 1px rgba(228, 87, 127, 0.14);
}
.summary p { color: var(--ink); }
.contact-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 24px;
  margin-bottom: 32px;
  padding: 24px;
  border-radius: 24px;
  background: var(--ground);
  box-shadow: var(--hl);
}
.contact-card p { font-size: 15px; color: var(--ink-2); }
.contact-card p a { color: var(--accent); font-weight: 500; text-underline-offset: 3px; }
.contact-card a.pill { height: 48px; font-size: 15px; }

@media (min-width: 768px) {
  .page { padding: 152px 0 112px; }
  .doc { max-width: 824px; padding: 0 32px; }
  .doc-card { padding: 48px; }
}

/* Not found */
.nf { min-height: 70svh; display: grid; place-items: center; text-align: center; }
.nf p { margin-top: 16px; color: var(--ink-2); font-weight: 500; }
.nf .pill { margin-top: 24px; }
