:root {
  --background: #fff8f0;
  --surface: #ffffff;
  --surface-soft: rgba(255, 255, 255, 0.78);
  --text: #151515;
  --muted: #6d6670;
  --primary: #ff5a7a;
  --lavender: #a78bfa;
  --lime: #b6ff6a;
  --yellow: #ffe66d;
  --cyan: #bfe9f7;
  --line: rgba(21, 21, 21, 0.08);
  --line-strong: rgba(21, 21, 21, 0.14);
  --shadow: 0 20px 50px rgba(21, 21, 21, 0.1);
  --soft-shadow: 0 10px 24px rgba(21, 21, 21, 0.07);
  --radius-card: 28px;
  --radius-control: 18px;
  --container: 1120px;
  --gutter: 24px;
  --header-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: ui-rounded, "SF Pro Rounded", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image: radial-gradient(rgba(21, 21, 21, 0.14) 0.7px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
  z-index: 20;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px max(var(--gutter), calc((100vw - var(--container)) / 2));
  background: rgba(255, 248, 240, 0.78);
  border-bottom: 1px solid rgba(21, 21, 21, 0.06);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 19px;
  font-weight: 900;
}

.brand img {
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(255, 90, 122, 0.18);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 14px;
  font-weight: 800;
}

.nav-links a,
.nav-cta,
.button,
.quiet-button,
.request-actions button,
.shield-card button {
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.nav-links a:hover,
.nav-cta:hover,
.button:hover,
.quiet-button:hover,
.request-actions button:hover,
.shield-card button:hover {
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 17px;
  border-radius: 999px;
  background: var(--text);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.hero {
  position: relative;
  min-height: calc(92svh - var(--header-height));
  isolation: isolate;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 72px max(var(--gutter), calc((100vw - var(--container)) / 2)) 42px;
}

.hero-bg,
.hero::after {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg {
  background-image: url("assets/generated/hero-bg.png");
  background-size: cover;
  background-position: center;
  filter: saturate(1.04);
  transform: scale(1.02);
}

.hero::after {
  content: "";
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 248, 240, 0.96) 0%, rgba(255, 248, 240, 0.88) 34%, rgba(255, 248, 240, 0.35) 68%, rgba(255, 248, 240, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 248, 240, 0.55), rgba(255, 248, 240, 0.96));
}

.hero-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: 58px;
  align-items: center;
}

.hero-copy {
  max-width: 690px;
  min-width: 0;
}

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

h1 {
  font-size: 96px;
  line-height: 0.92;
  font-weight: 950;
  overflow-wrap: break-word;
}

#hero-title {
  margin-left: -0.045em;
}

.hero-claim {
  margin-top: 18px;
  color: var(--text);
  font-size: 31px;
  line-height: 1.08;
  font-weight: 900;
  max-width: 560px;
  overflow-wrap: break-word;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 900;
}

.button.primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 122, 0.28);
}

.button.secondary {
  background: rgba(21, 21, 21, 0.07);
  color: var(--text);
}

.hero-product {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.duo-moment {
  position: relative;
  width: min(100%, 480px);
  min-height: 520px;
  padding: 34px 0 76px;
  display: grid;
  place-items: center;
}

.duo-moment::before {
  content: "";
  position: absolute;
  inset: 34px 4px 54px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 42% 48%, rgba(255, 90, 122, 0.22), transparent 32%),
    radial-gradient(circle at 68% 40%, rgba(167, 139, 250, 0.18), transparent 30%),
    rgba(255, 255, 255, 0.18);
  filter: blur(2px);
}

.duo-phone-row {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 408px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.duo-phone {
  position: relative;
  width: clamp(158px, 46%, 208px);
  padding: 8px;
  border-radius: 34px;
  background:
    linear-gradient(145deg, #26222d 0%, #07070a 54%, #19141b 100%);
  box-shadow:
    0 24px 50px rgba(21, 21, 21, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -10px 18px rgba(255, 255, 255, 0.04);
}

.duo-phone.left {
  z-index: 1;
  transform: rotate(-4deg) translateY(24px);
}

.duo-phone.right {
  z-index: 2;
  margin-left: -20px;
  transform: rotate(4deg) translateY(-18px);
}

.duo-phone::before,
.duo-phone::after {
  content: "";
  position: absolute;
  width: 4px;
  border-radius: 4px;
  background: #141218;
  opacity: 0.92;
}

.duo-phone::before {
  left: -4px;
  top: 92px;
  height: 62px;
}

.duo-phone::after {
  right: -4px;
  top: 118px;
  height: 76px;
}

.duo-phone-screen {
  position: relative;
  min-height: 338px;
  padding: 64px 16px 24px;
  border-radius: 27px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 38%),
    linear-gradient(180deg, #fffdf8 0%, var(--background) 72%, #fff2e8 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(21, 21, 21, 0.04),
    inset 0 -22px 38px rgba(255, 90, 122, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: center;
}

.duo-phone-screen::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 62px;
  height: 19px;
  border-radius: 999px;
  background: #050507;
  transform: translateX(-50%);
}

.duo-mascot {
  width: 108px;
  filter: drop-shadow(0 12px 16px rgba(21, 21, 21, 0.1));
}

.duo-mascot.wave {
  width: 124px;
}

.duo-phone-title {
  max-width: 160px;
  color: var(--text);
  font-size: 28px;
  line-height: 0.98;
  font-weight: 950;
  overflow-wrap: break-word;
}

.duo-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(21, 21, 21, 0.08);
  color: rgba(21, 21, 21, 0.74);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  white-space: nowrap;
}

.duo-status-pill.confirmed {
  color: var(--text);
  background: rgba(182, 255, 106, 0.52);
}

.duo-status-pill.shared {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 48px;
  min-height: 40px;
  padding: 0 18px;
  background: var(--primary);
  color: #fff;
  box-shadow: 0 14px 28px rgba(255, 90, 122, 0.22);
  font-size: 14px;
  transform: translateX(-50%);
}

.duo-privacy-note {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 4px;
  width: max-content;
  max-width: min(100%, 360px);
  color: rgba(21, 21, 21, 0.66);
  font-size: 14px;
  line-height: 1.28;
  font-weight: 850;
  text-align: center;
  transform: translateX(-50%);
}

.phone-frame {
  position: relative;
  width: 100%;
  max-width: 348px;
  padding: 10px;
  border-radius: 46px;
  background:
    linear-gradient(145deg, #23202a 0%, #07070a 52%, #18131a 100%);
  box-shadow:
    0 26px 58px rgba(21, 21, 21, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    inset 0 -10px 20px rgba(255, 255, 255, 0.04);
}

.phone-frame::before,
.phone-frame::after {
  content: "";
  position: absolute;
  background: #141218;
  opacity: 0.92;
}

.phone-frame::before {
  left: -4px;
  top: 104px;
  width: 4px;
  height: 74px;
  border-radius: 4px 0 0 4px;
}

.phone-frame::after {
  right: -4px;
  top: 140px;
  width: 4px;
  height: 96px;
  border-radius: 0 4px 4px 0;
}

.phone-status {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  color: #fff;
  height: 36px;
  padding: 0 18px 2px;
  font-size: 13px;
  font-weight: 900;
}

.phone-time {
  justify-self: start;
}

.dynamic-island {
  width: 76px;
  height: 22px;
  border-radius: 999px;
  background: #050507;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.07),
    0 1px 2px rgba(0, 0, 0, 0.45);
}

.phone-indicators {
  justify-self: end;
  min-width: 70px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.signal {
  width: 16px;
  height: 10px;
  border-radius: 2px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.92) 0 40%, transparent 40% 100%),
    linear-gradient(to right, transparent 0 20%, rgba(255, 255, 255, 0.92) 20% 40%, transparent 40% 50%, rgba(255, 255, 255, 0.92) 50% 70%, transparent 70% 80%, rgba(255, 255, 255, 0.92) 80% 100%);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
}

.wifi {
  width: 13px;
  height: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-45deg);
}

.battery {
  position: relative;
  width: 25px;
  height: 12px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 4px;
  overflow: visible;
}

.battery::before {
  content: "";
  position: absolute;
  right: -5px;
  top: 3px;
  width: 3px;
  height: 4px;
  border-radius: 0 2px 2px 0;
  background: rgba(255, 255, 255, 0.92);
}

.battery::after {
  content: "";
  position: absolute;
  inset: 2px 6px 2px 2px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.92);
}

.phone-content {
  position: relative;
  overflow: hidden;
  min-height: 610px;
  padding: 24px 22px 42px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.96), transparent 36%),
    linear-gradient(180deg, #fffdf8 0%, var(--background) 72%, #fff2e8 100%);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(21, 21, 21, 0.04),
    inset 0 -24px 42px rgba(255, 90, 122, 0.05);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
}

.phone-content::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 14px;
  width: 94px;
  height: 5px;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.22);
  transform: translateX(-50%);
}

.ready-pill,
.local-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(21, 21, 21, 0.08);
  font-size: 13px;
  font-weight: 900;
}

.phone-mascot {
  width: 190px;
  margin: 4px auto 0;
}

.phone-content h2,
.phone-content h3 {
  font-size: 31px;
  line-height: 1.02;
  font-weight: 950;
}

.phone-content p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 800;
}

.pair-pulse {
  position: relative;
  width: 174px;
  height: 92px;
  margin: 2px auto;
}

.pair-pulse.large {
  width: 220px;
  height: 122px;
}

.pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.pulse.coral,
.pulse.lavender {
  width: 86px;
  height: 86px;
  animation: breathe 3.4s ease-in-out infinite alternate;
}

.pair-pulse.large .pulse.coral,
.pair-pulse.large .pulse.lavender {
  width: 108px;
  height: 108px;
}

.pulse.coral {
  background: rgba(255, 90, 122, 0.78);
  margin-left: -32px;
}

.pulse.lavender {
  background: rgba(167, 139, 250, 0.78);
  margin-left: 32px;
}

.pulse.lime {
  width: 30px;
  height: 30px;
  background: rgba(182, 255, 106, 0.86);
  box-shadow: 0 0 26px rgba(182, 255, 106, 0.42);
}

.timer {
  font-size: 58px;
  line-height: 1;
  font-weight: 950;
  font-variant-numeric: tabular-nums;
}

.timer.xl {
  font-size: 74px;
}

.quiet-button {
  width: 100%;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  background: rgba(21, 21, 21, 0.07);
  color: var(--text);
  font-size: 15px;
  font-weight: 900;
  cursor: pointer;
}

.icon-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  flex: 0 0 auto;
}

.icon-circle.lime {
  background: var(--lime);
}

.icon-circle.lavender {
  background: var(--lavender);
}

.icon-circle.yellow {
  background: var(--yellow);
}

.icon-circle.coral {
  background: var(--primary);
}

section:not(.hero) {
  max-width: var(--container);
  margin: 0 auto;
  padding: 86px var(--gutter);
}

.section-copy {
  max-width: 620px;
  min-width: 0;
}

.section-copy.wide {
  max-width: 760px;
}

.section-copy.centered {
  margin: 0 auto;
  text-align: center;
}

.section-copy h2,
.mood-copy h2,
.final-cta h2 {
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
}

.section-copy p,
.mood-copy p,
.final-cta p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 680;
}

.reframe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 52px;
  align-items: center;
}

.soft-image-frame,
.glass-art,
.mood-section {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--soft-shadow);
}

.soft-image-frame {
  border-radius: 34px;
  aspect-ratio: 3 / 4;
  transform: rotate(2deg);
}

.soft-image-frame img,
.glass-art img,
.mood-section > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.step-card,
.product-card,
.shield-card,
.pause-note-card,
.privacy-grid article {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  box-shadow: var(--soft-shadow);
}

.step-card {
  min-height: 235px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.step-number,
.mini-label {
  display: block;
  color: rgba(21, 21, 21, 0.46);
  font-size: 12px;
  line-height: 1;
  font-weight: 950;
  text-transform: uppercase;
}

.step-card h3,
.product-card h3,
.shield-card h3,
.pause-note-card h3,
.privacy-grid h3 {
  font-size: 24px;
  line-height: 1.08;
  font-weight: 950;
}

.step-card p,
.product-card p,
.shield-card p,
.pause-note-card p,
.privacy-grid p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 680;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.78fr);
  gap: 54px;
  align-items: center;
}

.split.local {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 0.92fr);
}

.proof-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.proof-list li {
  position: relative;
  padding-left: 28px;
  color: rgba(21, 21, 21, 0.78);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}

.proof-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--lime);
}

.product-card {
  padding: 26px;
}

.invite-card {
  display: grid;
  gap: 18px;
}

.card-mascot {
  width: 240px;
  justify-self: center;
}

.request-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.request-actions button,
.shield-card button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
}

.request-actions button:first-child,
.shield-card button {
  background: var(--primary);
  color: #fff;
}

.request-actions button:last-child {
  background: rgba(21, 21, 21, 0.07);
  color: var(--text);
}

.glass-art {
  border-radius: 38px;
  aspect-ratio: 1;
}

.setup-list {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.setup-list div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--line);
  font-size: 16px;
}

.active-showcase {
  margin-top: 42px;
  display: grid;
  grid-template-columns: minmax(310px, 430px) minmax(280px, 420px);
  justify-content: center;
  align-items: stretch;
  gap: 34px;
}

.session-preview {
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 230, 109, 0.28), transparent 38%),
    linear-gradient(180deg, #fffdf8 0%, #fff8f0 100%);
  border: 1px solid rgba(21, 21, 21, 0.08);
  box-shadow: var(--shadow);
}

.session-preview-top {
  min-height: 58px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(21, 21, 21, 0.07);
  color: rgba(21, 21, 21, 0.52);
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}

.session-preview-content {
  min-height: 490px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.session-preview-content h3 {
  max-width: 330px;
  font-size: 38px;
  line-height: 1;
  font-weight: 950;
}

.session-preview-content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.35;
  font-weight: 850;
}

.session-preview .quiet-button {
  max-width: 280px;
}

.active-companion {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
}

.shield-card,
.pause-note-card {
  padding: 30px;
  display: grid;
  gap: 14px;
  align-content: center;
}

.shield-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 240, 0.82)),
    url("assets/generated/soft-flowers.png");
  background-size: cover;
  background-blend-mode: screen;
}

.pause-note-card {
  background:
    radial-gradient(circle at 88% 10%, rgba(186, 137, 255, 0.22), transparent 34%),
    radial-gradient(circle at 12% 90%, rgba(255, 92, 126, 0.16), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 252, 245, 0.86));
}

.shield-card h3,
.pause-note-card h3 {
  font-size: 34px;
  line-height: 1.02;
}

.pause-note-list {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.pause-note-list span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(21, 21, 21, 0.72);
  font-size: 14px;
  line-height: 1.2;
  font-weight: 900;
}

.session-story {
  position: relative;
}

.session-story-heading {
  max-width: 760px;
}

.session-story-heading h2 {
  margin-top: 12px;
  font-size: 58px;
  line-height: 0.98;
  font-weight: 950;
}

.session-story-heading p:not(.mini-label) {
  margin-top: 18px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.5;
  font-weight: 680;
}

.session-story-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 58px;
  align-items: start;
}

.story-visual {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  display: grid;
  justify-items: center;
  gap: 18px;
}

.story-phone {
  position: relative;
  width: min(100%, 336px);
  padding: 12px;
  border-radius: 38px;
  background: #17171d;
  box-shadow: var(--shadow);
}

.story-phone::before,
.story-phone::after {
  content: "";
  position: absolute;
  top: 126px;
  width: 5px;
  height: 76px;
  border-radius: 999px;
  background: #17171d;
}

.story-phone::before {
  left: -4px;
}

.story-phone::after {
  right: -4px;
  height: 110px;
}

.story-phone-screen {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 230, 109, 0.22), transparent 34%),
    linear-gradient(180deg, #fffdf8 0%, #fff8f0 100%);
}

.story-phone-state {
  position: absolute;
  inset: 0;
  padding: 74px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px) scale(0.98);
  pointer-events: none;
  transition: opacity 260ms ease, transform 260ms ease;
}

.session-story[data-active-step="dinner"] .story-phone-state[data-state="dinner"],
.session-story[data-active-step="tap"] .story-phone-state[data-state="tap"],
.session-story[data-active-step="apps"] .story-phone-state[data-state="apps"],
.session-story[data-active-step="offline"] .story-phone-state[data-state="offline"],
.session-story[data-active-step="return"] .story-phone-state[data-state="return"] {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.story-phone-state h3 {
  max-width: 260px;
  font-size: 30px;
  line-height: 1.02;
  font-weight: 950;
}

.story-phone-state p:not(.mini-label):not(.story-footnote) {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.35;
  font-weight: 850;
}

.story-mascot {
  width: 150px;
}

.story-mascot.wave {
  width: 180px;
}

.story-choice-row,
.story-request-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  gap: 8px;
}

.story-choice-row span,
.story-request-actions span,
.app-pause-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: rgba(21, 21, 21, 0.76);
  font-size: 13px;
  line-height: 1.2;
  font-weight: 900;
}

.story-request-actions {
  grid-template-columns: 1fr 1fr;
}

.story-request-actions span:first-child {
  background: var(--primary);
  border-color: transparent;
  color: #fff;
}

.app-pause-list {
  width: 100%;
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.app-pause-list span {
  justify-content: flex-start;
  min-height: 50px;
  padding: 0 14px;
}

.story-footnote {
  max-width: 260px;
  color: rgba(21, 21, 21, 0.54);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 850;
}

.story-caption {
  width: min(100%, 320px);
  min-height: 48px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  color: rgba(21, 21, 21, 0.72);
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.story-steps {
  display: grid;
  gap: 20px;
}

.story-step {
  min-height: 315px;
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 16px;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--soft-shadow);
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.story-step h3 {
  max-width: 520px;
  font-size: 42px;
  line-height: 1;
  font-weight: 950;
}

.story-step p {
  max-width: 560px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.45;
  font-weight: 700;
}

.session-story[data-active-step="dinner"] .story-step[data-story-step="dinner"],
.session-story[data-active-step="tap"] .story-step[data-story-step="tap"],
.session-story[data-active-step="apps"] .story-step[data-story-step="apps"],
.session-story[data-active-step="offline"] .story-step[data-story-step="offline"],
.session-story[data-active-step="return"] .story-step[data-story-step="return"] {
  transform: translateX(-8px);
  border-color: rgba(255, 90, 122, 0.28);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.mood-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  max-width: var(--container);
  margin: 0 auto;
  min-height: 560px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 42px;
  box-shadow: var(--soft-shadow);
}

section.mood-section:not(.hero) {
  padding: 0;
}

.mood-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0.5), rgba(21, 21, 21, 0.12));
}

.mood-copy {
  position: absolute;
  z-index: 1;
  left: 42px;
  bottom: 42px;
  max-width: 560px;
  color: #fff;
}

.mood-copy p {
  color: rgba(255, 255, 255, 0.86);
}

.privacy-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.privacy-grid article {
  min-height: 220px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(0, 1fr);
  gap: 48px;
  align-items: start;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border-radius: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--soft-shadow);
  overflow: hidden;
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 66px;
  padding: 0 22px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
}

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

summary::after {
  content: "+";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.07);
  font-size: 22px;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  padding: 0 22px 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
  font-weight: 680;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  gap: 46px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(255, 90, 122, 0.16), rgba(167, 139, 250, 0.16) 48%, rgba(182, 255, 106, 0.2)),
    var(--surface);
  border: 1px solid var(--line);
  border-radius: 42px;
  box-shadow: var(--soft-shadow);
}

.final-cta img {
  width: 100%;
}

.final-cta .button {
  margin-top: 28px;
}

.site-footer {
  max-width: var(--container);
  margin: 0 auto;
  padding: 30px var(--gutter) 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 780;
}

.footer-meta {
  display: grid;
  gap: 10px;
  justify-items: end;
  text-align: right;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
  color: rgba(21, 21, 21, 0.62);
  font-size: 13px;
  font-weight: 900;
}

.footer-links a,
.legal-page a {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.legal-body {
  min-height: 100svh;
}

.legal-nav {
  justify-content: center;
}

.legal-page {
  width: min(100% - 48px, 780px);
  margin: 0 auto;
  padding: 68px 0 88px;
}

.legal-back {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

.legal-page h1 {
  font-size: 54px;
  line-height: 1;
  font-weight: 950;
}

.legal-page section {
  max-width: none;
  margin: 38px 0 0;
  padding: 0;
}

.legal-page h2 {
  font-size: 22px;
  line-height: 1.18;
  font-weight: 950;
}

.legal-page h3 {
  margin: 22px 0 8px;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 950;
}

.legal-page p,
.legal-page li {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.72;
  font-weight: 680;
}

.legal-page p {
  margin-top: 12px;
}

.legal-page ul {
  margin: 12px 0 0;
  padding-left: 22px;
}

.legal-page a {
  color: var(--text);
  font-weight: 850;
}

.legal-updated {
  margin-top: 42px;
  color: rgba(21, 21, 21, 0.52);
  font-size: 13px;
}

.section-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 700ms ease, transform 700ms ease;
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes breathe {
  0% {
    transform: translate(-50%, -50%) scale(0.96);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
  }
}

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

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 240, 0.96) 0%, rgba(255, 248, 240, 0.88) 48%, rgba(255, 248, 240, 0.72) 100%);
  }

  .hero-inner,
  .reframe,
  .session-story-grid,
  .split,
  .split.local,
  .active-showcase,
  .faq,
  .final-cta {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 42px;
  }

  h1 {
    font-size: 76px;
  }

  .hero-claim {
    font-size: 28px;
  }

  .section-copy p,
  .mood-copy p,
  .final-cta p {
    font-size: 18px;
  }

  .duo-moment {
    width: min(100%, 430px);
    min-height: 470px;
    padding-bottom: 66px;
  }

  .steps-grid,
  .privacy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .session-story-heading h2 {
    font-size: 44px;
  }

  .session-story-grid {
    gap: 34px;
  }

  .story-visual {
    position: relative;
    top: auto;
  }

  .story-phone {
    width: min(100%, 336px);
  }

  .story-steps {
    gap: 14px;
  }

  .story-step {
    min-height: auto;
  }

  .session-story[data-active-step="dinner"] .story-step[data-story-step="dinner"],
  .session-story[data-active-step="tap"] .story-step[data-story-step="tap"],
  .session-story[data-active-step="apps"] .story-step[data-story-step="apps"],
  .session-story[data-active-step="offline"] .story-step[data-story-step="offline"],
  .session-story[data-active-step="return"] .story-step[data-story-step="return"] {
    transform: none;
  }

  .soft-image-frame {
    width: min(100%, 340px);
    justify-self: center;
  }

  .glass-art {
    max-width: 430px;
    justify-self: center;
  }

  .section-copy h2,
  .mood-copy h2,
  .final-cta h2 {
    font-size: 44px;
  }
}

@media (max-width: 640px) {
  :root {
    --gutter: 18px;
    --header-height: 68px;
  }

  .site-header {
    gap: 10px;
  }

  .brand {
    font-size: 17px;
  }

  .brand img {
    width: 36px;
    height: 36px;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 0 max(var(--gutter), env(safe-area-inset-left)) 54px;
  }

  .hero-bg {
    background-image: url("assets/generated/soft-flowers.png");
    background-position: center top;
    opacity: 0.96;
    filter: saturate(1.08) contrast(1.02);
    transform: scale(1.04);
  }

  .hero::after {
    background:
      linear-gradient(180deg, rgba(255, 248, 240, 0.44) 0%, rgba(255, 248, 240, 0.72) 48%, rgba(255, 248, 240, 0.94) 100%),
      linear-gradient(90deg, rgba(255, 248, 240, 0.72), rgba(255, 248, 240, 0.42));
  }

  .hero-inner {
    display: block;
  }

  h1 {
    font-size: clamp(54px, 16vw, 68px);
    letter-spacing: 0;
  }

  .hero-claim {
    font-size: 25px;
  }

  .hero-copy {
    min-height: calc(100svh - var(--header-height) - 22px);
    max-width: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 22px 0 82px;
  }

  .hero-actions {
    width: 100%;
    max-width: none;
  }

  .hero-actions,
  .request-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .phone-frame {
    width: min(100%, 300px);
    max-width: 300px;
  }

  .hero-product {
    justify-content: center;
    margin-top: 20px;
    padding-top: 22px;
  }

  .duo-moment {
    width: 100%;
    min-height: 392px;
    padding: 0 0 58px;
  }

  .duo-moment::before {
    inset: 24px 0 42px;
    border-radius: 32px;
  }

  .duo-phone-row {
    min-height: 314px;
  }

  .duo-phone {
    width: clamp(142px, 46%, 166px);
    padding: 7px;
    border-radius: 28px;
  }

  .duo-phone.left {
    transform: rotate(-4deg) translateY(18px);
  }

  .duo-phone.right {
    margin-left: -14px;
    transform: rotate(4deg) translateY(-12px);
  }

  .duo-phone::before {
    top: 78px;
    height: 50px;
  }

  .duo-phone::after {
    top: 100px;
    height: 62px;
  }

  .duo-phone-screen {
    min-height: 250px;
    padding: 48px 12px 18px;
    border-radius: 22px;
    gap: 9px;
  }

  .duo-phone-screen::before {
    top: 14px;
    width: 48px;
    height: 15px;
  }

  .duo-mascot {
    width: 78px;
  }

  .duo-mascot.wave {
    width: 92px;
  }

  .duo-phone-title {
    max-width: 124px;
    font-size: 22px;
  }

  .duo-status-pill {
    min-height: 28px;
    padding: 0 10px;
    font-size: 11px;
  }

  .duo-status-pill.shared {
    bottom: 36px;
    min-height: 36px;
    padding: 0 15px;
    font-size: 13px;
  }

  .duo-privacy-note {
    bottom: 0;
    max-width: 310px;
    font-size: 13px;
  }

  .phone-content {
    min-height: 590px;
    padding: 20px 18px;
  }

  .phone-content h2,
  .phone-content h3 {
    font-size: 28px;
  }

  .timer {
    font-size: 52px;
  }

  .timer.xl {
    font-size: 60px;
  }

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

  section:not(.hero) {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .section-copy h2,
  .session-story-heading h2,
  .mood-copy h2,
  .final-cta h2 {
    font-size: 36px;
  }

  .session-story-heading p:not(.mini-label) {
    font-size: 18px;
  }

  .story-phone {
    width: min(100%, 286px);
    padding: 10px;
    border-radius: 34px;
  }

  .story-phone::before,
  .story-phone::after {
    top: 112px;
  }

  .story-phone-screen {
    min-height: 520px;
    border-radius: 26px;
  }

  .story-phone-state {
    padding: 62px 18px 24px;
    gap: 13px;
  }

  .story-phone-state h3 {
    max-width: 235px;
    font-size: 25px;
  }

  .story-mascot {
    width: 124px;
  }

  .story-mascot.wave {
    width: 145px;
  }

  .story-choice-row {
    grid-template-columns: 1fr;
  }

  .story-choice-row span,
  .story-request-actions span,
  .app-pause-list span {
    min-height: 38px;
    font-size: 12px;
  }

  .story-caption {
    width: min(100%, 286px);
    border-radius: 22px;
    padding: 12px 14px;
  }

  .story-step {
    padding: 24px;
    border-radius: 24px;
  }

  .story-step h3 {
    font-size: 31px;
  }

  .story-step p {
    font-size: 16px;
  }

  .step-card,
  .privacy-grid article {
    min-height: auto;
    gap: 30px;
  }

  .mood-section {
    min-height: 520px;
    border-radius: 32px;
  }

  .mood-section::after {
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.08), rgba(21, 21, 21, 0.58));
  }

  .mood-copy {
    left: 24px;
    right: 24px;
    bottom: 26px;
  }

  summary {
    min-height: 60px;
    font-size: 16px;
  }

  .final-cta {
    gap: 18px;
    text-align: center;
  }

  .final-cta img {
    max-width: 280px;
    justify-self: center;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-meta {
    justify-items: start;
    text-align: left;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-page {
    width: min(100% - 36px, 780px);
    padding-top: 46px;
  }

  .legal-page h1 {
    font-size: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }
}
