:root {
  --brand: #ff5d8f;
  --brand-strong: #db3568;
  --brand-deep: #861f46;
  --rose-soft: #fff0f5;
  --lilac: #eee8ff;
  --peach: #fff0e7;
  --yellow: #fff2b4;
  --mint: #e9f8ef;
  --blue: #eaf3ff;
  --ink: #30262e;
  --ink-soft: #554852;
  --muted: #766c74;
  --surface: #ffffff;
  --surface-soft: #fbf8fb;
  --page: #fffdfd;
  --border: rgba(73, 45, 63, 0.11);
  --shadow-sm: 0 12px 30px rgba(89, 55, 75, 0.08);
  --shadow-md: 0 26px 70px rgba(101, 55, 82, 0.13);
  --shadow-phone: 0 48px 100px rgba(87, 45, 68, 0.25);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --radius-xl: 48px;
  --container: 1200px;
  --header-height: 78px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--page);
  color: var(--ink);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.download-modal-open {
  overflow: hidden;
}

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

button,
input,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
}

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

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

svg {
  display: block;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.svg-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(255, 93, 143, .42);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-bottom-color: rgba(75, 39, 61, .08);
  background: rgba(255, 253, 253, .88);
  box-shadow: 0 12px 30px rgba(88, 51, 72, .06);
  backdrop-filter: blur(18px) saturate(145%);
}

.header-inner {
  width: min(calc(100% - 48px), var(--container));
  height: var(--header-height);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex-shrink: 0;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
}

.brand span {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand strong {
  font-size: 17px;
  letter-spacing: .06em;
}


.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-left: auto;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 600;
  transition: color .2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 3px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--brand);
  transform: translateX(-50%) scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
  color: var(--brand-strong);
}

.desktop-nav a:hover::after,
.desktop-nav a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}

.header-cta {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(255, 93, 143, .22);
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  color: var(--brand-strong);
  font-size: 14px;
  font-weight: 700;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.header-cta svg {
  width: 17px;
  height: 17px;
  transition: transform .2s ease;
}

.header-cta:hover {
  background: var(--brand);
  color: #fff;
  transform: translateY(-1px);
}

.header-cta:hover svg {
  transform: translateX(3px);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: 860px;
  padding: 150px 0 92px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 177, 206, .24), transparent 25%),
    radial-gradient(circle at 92% 15%, rgba(211, 198, 255, .28), transparent 28%),
    linear-gradient(180deg, #fff9fc 0%, #fffdfd 75%, #fff 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .22;
  background-image: radial-gradient(rgba(102, 60, 83, .22) .7px, transparent .7px);
  background-size: 18px 18px;
  mask-image: linear-gradient(to bottom, #000, transparent 72%);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-glow-a {
  width: 330px;
  height: 330px;
  right: -100px;
  top: 210px;
  background: rgba(255, 204, 220, .34);
}

.hero-glow-b {
  width: 220px;
  height: 220px;
  left: -80px;
  bottom: 50px;
  background: rgba(228, 218, 255, .38);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr);
  align-items: center;
  gap: 60px;
}

.hero-copy {
  padding-bottom: 24px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--brand-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
}

.eyebrow span {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 680px;
  margin: 28px 0 24px;
  color: var(--ink);
  font-size: clamp(48px, 5.15vw, 76px);
  line-height: 1.14;
  letter-spacing: -.055em;
}

.hero h1 em {
  display: block;
  color: var(--brand-strong);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 36px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 750;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.button svg {
  width: 19px;
  height: 19px;
  transition: transform .2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:hover svg {
  transform: translateX(3px);
}

.button-primary {
  background: linear-gradient(135deg, #ff7b9f, var(--brand-strong));
  box-shadow: 0 16px 32px rgba(219, 53, 104, .24);
  color: #fff;
}

.button-primary:hover {
  box-shadow: 0 20px 40px rgba(219, 53, 104, .31);
}

.button-secondary {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, .72);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: rgba(255, 93, 143, .34);
  color: var(--brand-strong);
  box-shadow: var(--shadow-sm);
}

.platform-proof {
  margin-top: 42px;
}

.platform-proof > span {
  color: #9a8d96;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
}

.platform-proof ul {
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  list-style: none;
}

.platform-proof li {
  min-height: 36px;
  padding: 0 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(75, 45, 63, .08);
  border-radius: 999px;
  background: rgba(255, 255, 255, .72);
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.platform-proof svg {
  width: 15px;
  height: 15px;
  color: var(--brand);
}

.hero-product {
  position: relative;
  min-height: 655px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-product::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(255, 93, 143, .13);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .94) 0%, rgba(255, 236, 244, .48) 54%, transparent 70%);
}

.hero-product::after {
  content: "";
  position: absolute;
  width: 420px;
  height: 110px;
  bottom: 0;
  border-radius: 50%;
  background: rgba(115, 58, 88, .13);
  filter: blur(28px);
}

.phone-shell {
  position: relative;
  z-index: 3;
  width: 342px;
  height: 684px;
  padding: 9px;
  border: 1px solid rgba(73, 41, 58, .34);
  border-radius: 52px;
  background: #292329;
  box-shadow: var(--shadow-phone);
  transform: rotate(1.6deg);
}

.phone-shell::before {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(255, 255, 255, .22);
  border-radius: 47px;
  pointer-events: none;
}

.phone-speaker {
  position: absolute;
  z-index: 5;
  top: 17px;
  left: 50%;
  width: 102px;
  height: 27px;
  border-radius: 999px;
  background: #211d21;
  transform: translateX(-50%);
}

.phone-screen {
  height: 100%;
  overflow: hidden;
  border-radius: 43px;
  background: #f4f3f9;
}

.app-hero {
  position: relative;
  height: 350px;
  overflow: hidden;
}

.app-hero > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
}

.app-hero-shade {
  position: absolute;
  inset: auto 0 0;
  height: 120px;
  background: linear-gradient(to bottom, transparent, #f4f3f9 92%);
}

.couple-status {
  position: absolute;
  z-index: 2;
  top: 48px;
  left: 50%;
  width: 220px;
  text-align: center;
  transform: translateX(-50%);
}

.avatar-pair {
  display: flex;
  align-items: center;
  justify-content: center;
}

.avatar-pair img,
.avatar-pair b {
  width: 38px;
  height: 38px;
  border: 2px solid #fff;
  border-radius: 50%;
  box-shadow: 0 5px 12px rgba(99, 46, 74, .14);
}

.avatar-pair b {
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, .86);
  color: var(--brand);
  font-size: 23px;
  font-weight: 400;
}

.avatar-pair span {
  width: 18px;
  height: 14px;
  margin: 0 2px;
  background: var(--brand);
  clip-path: path("M9 13C4 9 1 7 1 4.5A3.5 3.5 0 0 1 7.5 2.7L9 4l1.5-1.3A3.5 3.5 0 0 1 17 4.5C17 7 14 9 9 13Z");
}

.couple-status p {
  display: inline-block;
  margin: 7px 0 0;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 91, 139, .88);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
}

.love-counter {
  position: absolute;
  z-index: 2;
  top: 132px;
  left: 50%;
  display: flex;
  align-items: baseline;
  gap: 5px;
  color: var(--brand-strong);
  transform: translateX(-50%);
}

.love-counter small {
  font-size: 9px;
}

.love-counter strong {
  padding: 4px 7px;
  border-radius: 7px;
  background: rgba(255, 255, 255, .78);
  font-family: "Arial Narrow", sans-serif;
  font-size: 22px;
  letter-spacing: .13em;
}

.love-counter span {
  font-size: 10px;
}

.app-content {
  position: relative;
  z-index: 2;
  margin-top: -34px;
  padding: 0 12px 14px;
}

.quick-apps {
  padding: 12px 7px 10px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 18px;
  background: rgba(255, 251, 253, .9);
  box-shadow: 0 10px 24px rgba(96, 60, 82, .09);
  backdrop-filter: blur(10px);
}

.quick-apps div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.quick-apps span {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
}

.quick-apps img {
  width: 39px;
  height: 39px;
  object-fit: contain;
}

.quick-apps small {
  color: #514851;
  font-size: 8px;
  white-space: nowrap;
}

.app-feature-grid {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}

.app-feature-grid article {
  position: relative;
  height: 72px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .92);
  border-radius: 13px;
  background: #fff;
}

.app-feature-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.app-feature-grid article > span {
  position: absolute;
  inset: 0;
  padding: 12px;
  display: flex;
  flex-direction: column;
}

.app-feature-grid b {
  font-size: 11px;
}

.app-feature-grid small {
  margin-top: 3px;
  color: #8a7c85;
  font-size: 7px;
}

.hero-note,
.hero-badge {
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(255, 255, 255, .88);
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 18px 42px rgba(84, 47, 68, .13);
  backdrop-filter: blur(14px);
}

.hero-note {
  min-width: 166px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 19px;
}

.hero-note svg {
  width: 30px;
  height: 30px;
  padding: 6px;
  border-radius: 10px;
  background: var(--rose-soft);
  color: var(--brand-strong);
}

.hero-note span {
  display: flex;
  flex-direction: column;
  line-height: 1.25;
}

.hero-note small {
  color: var(--muted);
  font-size: 10px;
}

.hero-note strong {
  margin-top: 4px;
  font-size: 14px;
}

.note-left {
  left: -8px;
  top: 145px;
  transform: rotate(-4deg);
}

.note-right {
  right: -14px;
  top: 315px;
  transform: rotate(3deg);
}

.hero-badge {
  right: 20px;
  bottom: 54px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 11px;
  font-weight: 750;
}

.hero-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28b968;
  box-shadow: 0 0 0 5px rgba(40, 185, 104, .11);
}

.promise-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.promise-track {
  width: min(calc(100% - 48px), var(--container));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 24px;
}

.promise-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.promise-track svg {
  width: 20px;
  height: 20px;
  color: var(--brand);
}

.promise-track i {
  width: 1px;
  height: 20px;
  background: var(--border);
}

.section {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 128px 0;
}

.section-heading {
  max-width: 810px;
  margin-bottom: 56px;
}

.section-heading.compact {
  max-width: 720px;
}

.section-heading h2,
.relationship-copy h2,
.privacy-copy h2,
.final-copy h2 {
  margin: 18px 0 20px;
  color: var(--ink);
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.2;
  letter-spacing: -.045em;
}

.section-heading p,
.relationship-copy > p,
.privacy-copy > p,
.final-copy > p {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.9;
}

.product-demo {
  padding-bottom: 112px;
}

.demo-stage {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  background: #fff;
  box-shadow: var(--shadow-md);
}

.demo-nav {
  padding: 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  border-radius: 32px;
  background: #f7f3f6;
}

.demo-nav button {
  min-height: 104px;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-content: center;
  column-gap: 14px;
  row-gap: 4px;
  border: 1px solid transparent;
  border-radius: 26px;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .2s ease;
}

.demo-nav button:hover {
  transform: translateY(-1px);
}

.demo-nav button[aria-selected="true"] {
  border-color: rgba(255, 93, 143, .13);
  background: #fff;
  box-shadow: 0 12px 28px rgba(76, 44, 62, .08);
}

.demo-nav button > span {
  grid-row: 1 / 3;
  align-self: center;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 93, 143, .1);
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
}

.demo-nav strong {
  font-size: 17px;
  line-height: 1.35;
}

.demo-nav small {
  margin-top: 0;
  color: rgba(63, 45, 57, .68);
  font-size: 13px;
  line-height: 1.45;
}

.demo-panels {
  position: relative;
}

.demo-panel {
  min-height: 560px;
  padding: 54px;
  display: grid;
  grid-template-columns: .86fr 1.14fr;
  align-items: center;
  gap: 60px;
  border-radius: 34px;
  background: linear-gradient(145deg, #fffafa, #faf6fa);
}

.demo-panel[hidden] {
  display: none;
}

.demo-panel.is-entering {
  animation: panelIn .38s var(--ease) both;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.soft-pill {
  display: inline-flex;
  min-height: 32px;
  padding: 0 13px;
  align-items: center;
  border-radius: 999px;
  background: var(--rose-soft);
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
}

.demo-copy h3 {
  margin: 20px 0 18px;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.28;
  letter-spacing: -.04em;
}

.demo-copy > p {
  margin: 0;
  color: var(--muted);
  line-height: 1.85;
}

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

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: inset 0 0 0 5px var(--rose-soft);
}

.demo-art {
  position: relative;
  min-height: 430px;
  border-radius: 34px;
  overflow: hidden;
}

.demo-art-record {
  background: linear-gradient(145deg, #ffdbe7, #f2eaff 65%, #fff);
}

.demo-art::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  top: -80px;
  right: -50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .5);
}

.memory-card {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .72);
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 22px 50px rgba(95, 52, 78, .14);
  backdrop-filter: blur(16px);
}

.memory-main {
  width: 56%;
  height: 77%;
  top: 11%;
  left: 10%;
  padding: 25px;
  border-radius: 28px;
  transform: rotate(-3deg);
}

.memory-main > span,
.memory-main > p {
  color: var(--muted);
  font-size: 11px;
}

.memory-main > strong {
  display: block;
  margin-top: 8px;
  font-size: 24px;
}

.memory-main > p {
  margin: 5px 0 15px;
}

.memory-photo {
  height: 60%;
  border-radius: 18px;
  /* Photo: Nathan Dumlao / Unsplash, NzUTNfNfJaA */
  background: linear-gradient(to top, rgba(255, 110, 145, .18), transparent), url("./assets/product/memory-sea.jpg") center 58% / cover;
}

.memory-date {
  top: 21%;
  right: 6%;
  width: 35%;
  padding: 17px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 20px;
  transform: rotate(4deg);
}

.memory-date svg {
  width: 29px;
  height: 29px;
  color: var(--brand-strong);
}

.memory-date span {
  display: flex;
  flex-direction: column;
}

.memory-date small,
.memory-count small,
.memory-count span {
  color: var(--muted);
  font-size: 9px;
}

.memory-date strong {
  font-size: 15px;
}

.memory-count {
  right: 9%;
  bottom: 12%;
  width: 31%;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  transform: rotate(-2deg);
}

.memory-count strong {
  color: var(--brand-strong);
  font-size: 27px;
  line-height: 1.15;
}

.demo-art-together {
  background: linear-gradient(145deg, #fff0d5, #ffe2e9 58%, #f1ebff);
}

.task-board {
  position: absolute;
  width: 58%;
  top: 10%;
  left: 8%;
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .88);
  box-shadow: 0 24px 54px rgba(104, 63, 79, .14);
  transform: rotate(-2deg);
}

.task-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 14px;
  font-weight: 750;
}

.task-head strong {
  color: var(--brand-strong);
}

.task-progress {
  height: 7px;
  margin: 16px 0 20px;
  overflow: hidden;
  border-radius: 99px;
  background: #f0e7ec;
}

.task-progress span {
  display: block;
  width: 36%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #ff9ab5, var(--brand-strong));
}

.task-board ul {
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
  list-style: none;
}

.task-board li {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 12px;
}

.task-board li i {
  width: 17px;
  height: 17px;
  border: 1px solid #d9cbd2;
  border-radius: 6px;
}

.task-board li.done {
  color: #9b8c94;
  text-decoration: line-through;
}

.task-board li.done i {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: inset 0 0 0 4px #fff;
}

.coupon-card {
  position: absolute;
  right: 6%;
  top: 24%;
  width: 38%;
  padding: 21px;
  display: flex;
  flex-direction: column;
  border: 1px dashed rgba(182, 75, 111, .37);
  border-radius: 22px;
  background: linear-gradient(145deg, #fff, #fff2f6);
  box-shadow: 0 20px 45px rgba(104, 63, 79, .14);
  transform: rotate(4deg);
}

.coupon-card > span {
  color: var(--brand-strong);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .16em;
}

.coupon-card strong {
  margin: 12px 0 17px;
  font-size: 17px;
}

.coupon-card small {
  color: var(--muted);
  font-size: 9px;
}

.streak-card {
  position: absolute;
  right: 16%;
  bottom: 9%;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 11px;
  border-radius: 20px;
  background: #2f2630;
  box-shadow: 0 20px 44px rgba(47, 38, 48, .22);
  color: #fff;
}

.streak-card svg {
  width: 31px;
  height: 31px;
  color: #ffb564;
}

.streak-card span {
  display: flex;
  flex-direction: column;
}

.streak-card strong {
  font-size: 20px;
  line-height: 1;
}

.streak-card small {
  margin-top: 4px;
  color: #c9bec6;
  font-size: 9px;
}

.demo-art-grow {
  background: linear-gradient(145deg, #f8e86e, #e4f5b1 48%, #ddf4ee);
}

.budget-card {
  position: absolute;
  width: 55%;
  top: 10%;
  left: 7%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: #302830;
  box-shadow: 0 24px 54px rgba(48, 40, 48, .22);
  color: #fff;
  transform: rotate(-3deg);
}

.budget-card > span {
  color: #c7bcc4;
  font-size: 10px;
}

.budget-card > strong {
  margin-top: 6px;
  font-size: 25px;
}

.budget-bars {
  height: 110px;
  margin-top: 25px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 7px;
}

.budget-bars i {
  flex: 1;
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(to top, #f2c945, #fff1a7);
}

.tree-card {
  position: absolute;
  right: 5%;
  top: 9%;
  width: 39%;
  min-height: 230px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  border-radius: 28px;
  background: rgba(255, 255, 255, .85);
  box-shadow: 0 22px 48px rgba(76, 84, 58, .15);
  transform: rotate(4deg);
}

.tree-card img {
  position: absolute;
  top: -10px;
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.tree-card span {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.tree-card strong {
  font-size: 14px;
}

.tree-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.game-card {
  position: absolute;
  right: 16%;
  bottom: 8%;
  min-width: 180px;
  padding: 15px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 19px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 42px rgba(76, 84, 58, .14);
}

.game-card svg {
  width: 34px;
  height: 34px;
  color: var(--brand-strong);
}

.game-card span {
  display: flex;
  flex-direction: column;
}

.game-card strong {
  font-size: 13px;
}

.game-card small {
  color: var(--muted);
  font-size: 9px;
}

.features {
  padding-top: 116px;
}

.feature-groups {
  display: grid;
  gap: 72px;
}

.feature-group-heading {
  margin-bottom: 24px;
  padding-top: 22px;
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr);
  gap: 28px;
  border-top: 1px solid var(--border);
}

.feature-group-heading > span {
  padding-top: 5px;
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.feature-group-heading h3 {
  margin: 0;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.25;
  letter-spacing: -.03em;
}

.feature-group-heading p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.feature-bento {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}

.feature-card {
  position: relative;
  grid-column: span 4;
  min-height: 270px;
  padding: 28px;
  overflow: hidden;
  border: 1px solid rgba(68, 39, 57, .08);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: 0 18px 45px rgba(73, 43, 61, .045);
}

.feature-card-large {
  grid-column: span 6;
  grid-row: span 2;
  min-height: 558px;
}

.feature-card-wide {
  grid-column: span 8;
  min-height: 280px;
}

.feature-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .74);
  border-radius: 16px;
  background: rgba(255, 255, 255, .64);
  box-shadow: 0 8px 18px rgba(83, 48, 69, .07);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-no {
  position: absolute;
  top: 29px;
  right: 29px;
  color: rgba(64, 42, 56, .34);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
}

.feature-card h4 {
  margin: 22px 0 8px;
  font-size: 25px;
  line-height: 1.2;
  letter-spacing: -.03em;
}

.feature-group-record .feature-card-large {
  grid-column: span 7;
  grid-row: span 2;
}

.feature-group-record .feature-lilac,
.feature-group-record .feature-peach {
  grid-column: span 5;
}

.feature-group-life .feature-yellow {
  grid-column: span 6;
}

.feature-group-life .feature-mint,
.feature-group-life .feature-blue {
  grid-column: span 3;
}

.feature-group-life .feature-card {
  min-height: 320px;
}

.feature-group-play .feature-dark {
  grid-column: span 7;
  min-height: 360px;
}

.feature-group-play .feature-card-wide {
  grid-column: span 5;
  min-height: 360px;
}

.feature-card > p,
.feature-card > div > p {
  max-width: 410px;
  margin: 0;
  color: rgba(63, 45, 57, .68);
  font-size: 14px;
  line-height: 1.75;
}

.feature-rose { background: linear-gradient(145deg, #fff4f7, #ffe2eb); }
.feature-lilac { background: linear-gradient(145deg, #f6f1ff, #e8ddff); }
.feature-peach { background: linear-gradient(145deg, #fff7ef, #ffe4d4); }
.feature-yellow { grid-column: span 6; background: linear-gradient(145deg, #fff6c9, #ffdf63); }
.feature-mint { background: linear-gradient(145deg, #f3fff7, #d7f3df); }
.feature-blue { background: linear-gradient(145deg, #f3f8ff, #dcecff); }
.feature-dark { grid-column: span 6; min-height: 410px; background: linear-gradient(145deg, #39303a, #241e25); color: #fff; }
.feature-coral { display: flex; align-items: center; justify-content: space-between; gap: 24px; padding-bottom: 54px; background: linear-gradient(135deg, #fff2ed, #ffc7ba); }

.feature-coral::after {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 27px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(160, 68, 59, .52) 0 64%, rgba(255, 255, 255, .58) 64% 100%);
  box-shadow: 0 10px 0 rgba(255, 255, 255, .2);
}

.feature-dark .feature-no,
.feature-dark > p {
  color: rgba(255, 255, 255, .55);
}

.diary-sheet {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  min-height: 242px;
  padding: 26px;
  border-radius: 25px;
  background: rgba(255, 255, 255, .82);
  box-shadow: 0 18px 40px rgba(104, 50, 76, .13);
  transform: rotate(-2deg);
}

.diary-sheet::after {
  content: "";
  position: absolute;
  width: 92px;
  height: 26px;
  top: -12px;
  left: 50%;
  background: rgba(255, 215, 225, .72);
  transform: translateX(-50%) rotate(2deg);
}

.diary-sheet small {
  color: var(--muted);
  font-size: 11px;
}

.diary-sheet strong {
  display: block;
  margin: 18px 0 25px;
  font-size: 22px;
}

.diary-sheet > span {
  display: block;
  width: 100%;
  height: 7px;
  margin-top: 13px;
  border-radius: 999px;
  background: #eadfe5;
}

.diary-sheet > span.short {
  width: 62%;
}

.mini-date {
  position: absolute;
  right: 26px;
  bottom: 24px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.mini-date strong {
  color: #8060c8;
  font-family: "Arial Narrow", sans-serif;
  font-size: 64px;
  line-height: .9;
}

.mini-date span {
  max-width: 70px;
  color: var(--muted);
  font-size: 9px;
}

.photo-stack {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 142px;
  height: 112px;
}

.photo-stack i {
  position: absolute;
  width: 85px;
  height: 100px;
  border: 7px solid #fff;
  border-bottom-width: 22px;
  border-radius: 8px;
  background: url("./assets/product/hero-cover.webp") center / cover;
  box-shadow: 0 12px 25px rgba(89, 52, 73, .14);
}

.photo-stack i:nth-child(1) { left: 0; top: 10px; transform: rotate(-12deg); }
.photo-stack i:nth-child(2) { left: 32px; top: 2px; transform: rotate(2deg); background-position: 30% center; }
.photo-stack i:nth-child(3) { right: 0; top: 12px; transform: rotate(12deg); background-position: 70% center; }

.feature-banner {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  width: auto;
  height: 42%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 22px;
  background: rgba(255, 201, 42, .28);
  pointer-events: none;
}

.feature-banner::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 199, 42, .92), transparent 13%, transparent 88%, rgba(255, 199, 42, .35));
}

.feature-banner img {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: multiply;
  opacity: .7;
  transform: scale(1.78);
  transform-origin: right center;
}

.mini-tasks {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  margin: 0;
  padding: 15px;
  display: grid;
  gap: 9px;
  border-radius: 17px;
  background: rgba(255, 255, 255, .68);
  list-style: none;
}

.mini-tasks li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-soft);
  font-size: 10px;
}

.mini-tasks i {
  width: 14px;
  height: 14px;
  border: 1px solid #8ec6a2;
  border-radius: 5px;
}

.mini-tasks li:first-child i,
.mini-tasks li:nth-child(2) i {
  background: #6fbd89;
  box-shadow: inset 0 0 0 3px #fff;
}

.mini-coupon {
  position: absolute;
  right: 25px;
  bottom: 22px;
  width: 150px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  border: 1px dashed #7cabe1;
  border-radius: 17px;
  background: rgba(255, 255, 255, .68);
  transform: rotate(-4deg);
}

.mini-coupon span {
  color: #5d8fc6;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .15em;
}

.mini-coupon strong {
  margin-top: 9px;
  font-size: 14px;
}

.tree-orbit {
  position: absolute;
  right: -8px;
  bottom: -28px;
  width: 248px;
  height: 248px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 224, 119, .12), transparent 65%);
}

.tree-orbit img {
  position: absolute;
  inset: 23px;
  width: calc(100% - 46px);
  height: calc(100% - 46px);
  object-fit: contain;
}

.tree-orbit span {
  position: absolute;
  top: 18px;
  left: 14px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--brand);
  box-shadow: 0 15px 30px rgba(255, 93, 143, .25);
}

.tree-orbit svg {
  width: 28px;
  height: 28px;
}

.checkin-number {
  flex-shrink: 0;
  min-width: 200px;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  color: #a0443b;
}

.checkin-number small {
  align-self: center;
  margin-right: 10px;
  color: rgba(96, 50, 48, .65);
}

.checkin-number strong {
  font-family: "Arial Narrow", sans-serif;
  font-size: 76px;
  line-height: .9;
}

.checkin-number span {
  margin-left: 7px;
  font-size: 15px;
  font-weight: 700;
}

@media (min-width: 901px) {
  .feature-group-life .feature-bento {
    grid-template-columns: 1.75fr 1fr 1fr;
  }

  .feature-group-life .feature-yellow,
  .feature-group-life .feature-mint,
  .feature-group-life .feature-blue {
    grid-column: auto;
  }
}

.relationship {
  padding-top: 90px;
}

.relationship-card {
  padding: 46px;
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  grid-template-areas:
    "visual copy"
    "visual points";
  align-items: start;
  column-gap: 64px;
  row-gap: 8px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff2f6, #f6f0ff 62%, #fff);
}

.relationship-visual {
  grid-area: visual;
  position: relative;
  min-height: 500px;
  padding: 32px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 12%, rgba(255, 120, 160, .18), transparent 29%),
    radial-gradient(circle at 88% 85%, rgba(142, 112, 215, .16), transparent 30%),
    linear-gradient(145deg, #fcecf3, #f7f1ff 58%, #fff);
}

.relationship-visual::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border: 1px solid rgba(255, 93, 143, .15);
  border-radius: 50%;
}

.connection-shell {
  position: relative;
  z-index: 1;
  width: min(100%, 460px);
  min-height: 430px;
  padding: 25px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, .84);
  border-radius: 30px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 28px 70px rgba(94, 52, 79, .13);
  backdrop-filter: blur(18px);
}

.connection-profiles {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
}

.connection-profile {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}

.connection-profile-ta {
  flex-direction: row-reverse;
  text-align: right;
}

.connection-avatar {
  width: 58px;
  height: 58px;
  flex: 0 0 58px;
  border: 4px solid #fff;
  border-radius: 50%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  box-shadow: 0 10px 24px rgba(99, 55, 78, .16);
}

.connection-avatar-me {
  background-image: url("./assets/product/avatar-female.jpg");
}

.connection-avatar-ta {
  background-image: url("./assets/product/avatar-male.jpg");
}

.connection-profile > span:last-child {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.connection-profile small,
.private-note small {
  color: var(--brand-strong);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.connection-profile strong {
  margin-top: 3px;
  font-size: 13px;
  white-space: nowrap;
}

.connection-line {
  display: flex;
  align-items: center;
}

.connection-line > i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, rgba(255, 93, 143, .08), rgba(255, 93, 143, .55));
}

.connection-line > i:last-child {
  background: linear-gradient(90deg, rgba(255, 93, 143, .55), rgba(255, 93, 143, .08));
}

.connection-line > span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 10px 22px rgba(255, 93, 143, .28);
  color: #fff;
}

.connection-line svg {
  width: 17px;
  height: 17px;
}

.binding-chip {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 26px;
  min-height: 48px;
  padding: 0 17px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(255, 255, 255, .8);
  border-radius: 999px;
  background: rgba(255, 255, 255, .84);
  box-shadow: 0 16px 36px rgba(84, 47, 68, .13);
  font-size: 12px;
  transform: translateX(-50%);
  backdrop-filter: blur(12px);
}

.connection-shell .binding-chip {
  position: static;
  align-self: center;
  min-height: 38px;
  margin-top: 18px;
  padding: 0 14px;
  font-size: 10px;
  transform: none;
}

.binding-chip span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #2bb66b;
  box-shadow: 0 0 0 5px rgba(43, 182, 107, .1);
}

.shared-board {
  margin-top: 15px;
  padding: 18px;
  border: 1px solid rgba(82, 50, 70, .08);
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(83, 48, 69, .07);
}

.shared-board-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.shared-board-head span {
  color: var(--brand-strong);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .14em;
}

.shared-board-head strong {
  font-size: 14px;
}

.shared-modules {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.shared-modules > div {
  min-width: 0;
  min-height: 104px;
  padding: 12px 9px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 16px;
  background: #faf7f9;
}

.shared-modules > div:nth-child(2) { background: #f5f1ff; }
.shared-modules > div:nth-child(3) { background: #fff8e3; }

.shared-modules > div > span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #fff;
  color: var(--brand-strong);
}

.shared-modules svg {
  width: 15px;
  height: 15px;
}

.shared-modules strong {
  margin-top: 11px;
  font-size: 11px;
}

.shared-modules small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

.private-note {
  min-height: 56px;
  margin-top: 12px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 11px;
  border: 1px dashed rgba(255, 93, 143, .28);
  border-radius: 17px;
  background: rgba(255, 245, 248, .82);
}

.private-note > svg {
  width: 22px;
  height: 22px;
  color: var(--brand-strong);
}

.private-note > span {
  display: flex;
  flex-direction: column;
}

.private-note strong {
  margin-top: 2px;
  font-size: 11px;
}

.relationship-copy {
  grid-area: copy;
  align-self: end;
  padding-top: 16px;
}

.relationship-copy h2 {
  max-width: 590px;
  font-size: clamp(42px, 3.7vw, 52px);
  line-height: 1.16;
}

.relationship-points {
  grid-area: points;
  margin-top: 12px;
  display: grid;
  gap: 2px;
}

.relationship-points > div {
  min-height: 86px;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 42px 116px 1fr;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.relationship-points > div:last-child {
  border-bottom: 0;
}

.relationship-points span {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
}

.relationship-points strong {
  font-size: 15px;
}

.relationship-points small {
  color: var(--muted);
  font-size: 13px;
}

.platforms {
  padding-bottom: 110px;
}

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

.platform-card {
  min-height: 520px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.platform-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.platform-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 15px;
}

.platform-icon svg {
  width: 24px;
  height: 24px;
}

.platform-icon.wechat { background: #e8f9ee; color: #20a85d; }
.platform-icon.alipay { background: #eaf4ff; color: #1677ff; }
.platform-icon.android { background: #edf8e5; color: #62a83d; }
.platform-icon.ios { background: #f1eef3; color: #4c424a; }

.status {
  min-height: 27px;
  padding: 0 10px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
}

.status.live {
  background: #eaf8f0;
  color: #18834b;
}

.status.soon {
  background: #f1edf3;
  color: #716572;
}

.platform-card h3 {
  margin: 24px 0 8px;
  font-size: 25px;
  line-height: 1.2;
}

.platform-card > p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.qr-preview {
  width: 100%;
  margin-top: auto;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: #faf8fa;
  cursor: zoom-in;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.qr-preview:hover {
  border-color: rgba(255, 93, 143, .28);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}

.qr-preview img {
  width: 160px;
  height: 160px;
  margin: 0 auto;
  border-radius: 14px;
  object-fit: cover;
}

.qr-preview span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.android-card {
  background: linear-gradient(180deg, #fff, #f5fbf0);
}

.android-visual {
  margin: 34px 0 26px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.android-visual img {
  width: 78px;
  height: 78px;
  border-radius: 24px;
  box-shadow: 0 14px 30px rgba(91, 55, 73, .15);
}

.android-visual span {
  display: flex;
  flex-direction: column;
}

.android-visual small {
  color: var(--muted);
  font-size: 10px;
}

.android-visual strong {
  margin-top: 4px;
  font-size: 14px;
}

.download-button {
  width: 100%;
  margin-top: auto;
  padding: 0 18px;
}

.download-button[aria-disabled="true"] {
  box-shadow: none;
  cursor: wait;
  opacity: .58;
}

.download-button[aria-busy="true"] {
  pointer-events: none;
}

.download-button svg {
  transform: none;
}

.download-note {
  min-height: 34px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
  text-align: center;
}

.ios-card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff, #f4eff5);
}

.soon-orbit {
  position: relative;
  width: 190px;
  height: 190px;
  margin: 48px auto 30px;
  display: grid;
  place-items: center;
  border: 1px solid #ddd3df;
  border-radius: 50%;
}

.soon-orbit::before,
.soon-orbit::after {
  content: "";
  position: absolute;
  border: 1px solid #e7dfe8;
  border-radius: 50%;
}

.soon-orbit::before { inset: 22px; }
.soon-orbit::after { inset: 52px; background: rgba(255, 255, 255, .7); }

.soon-orbit span,
.soon-orbit i {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.soon-orbit span { top: 20px; left: 35px; }
.soon-orbit i { right: 18px; bottom: 48px; background: #8d75d0; }
.soon-orbit b { position: relative; z-index: 2; font-size: 25px; letter-spacing: -.04em; }

.soon-label {
  margin-top: auto;
  padding: 15px;
  border: 1px dashed #d4c7d6;
  border-radius: 17px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.privacy {
  width: 100%;
  padding: 110px max(24px, calc((100vw - var(--container)) / 2));
  background: #2c242b;
}

.privacy-card {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 70px;
  color: #fff;
}

.section-kicker.light {
  color: #ff9fba;
}

.privacy-copy h2 {
  max-width: 550px;
  color: #fff;
  font-size: clamp(42px, 3.7vw, 52px);
  line-height: 1.18;
}

.privacy-copy > p {
  color: #c8bdc5;
}

.privacy-links {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}

.privacy-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.privacy-links svg {
  width: 17px;
  height: 17px;
  color: #ff9fba;
  transition: transform .2s ease;
}

.privacy-links a:hover svg {
  transform: translateX(3px);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.trust-grid article {
  min-height: 220px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 28px;
  background: rgba(255, 255, 255, .045);
  transition: background .2s ease, transform .2s ease;
}

.trust-grid article:hover {
  background: rgba(255, 255, 255, .075);
  transform: translateY(-3px);
}

.trust-grid svg {
  width: 31px;
  height: 31px;
  color: #ff8bad;
}

.trust-grid strong {
  display: block;
  margin-top: 30px;
  font-size: 17px;
}

.trust-grid p {
  margin: 8px 0 0;
  color: #bdb1ba;
  font-size: 12px;
  line-height: 1.7;
}

.faq {
  padding-top: 130px;
}

.faq-layout {
  display: grid;
  grid-template-columns: .72fr 1.28fr;
  gap: 90px;
}

.faq-heading {
  position: sticky;
  top: calc(var(--header-height) + 42px);
  align-self: start;
  margin: 0;
}

.faq-heading h2 {
  max-width: 440px;
  font-size: clamp(38px, 3.3vw, 48px);
  line-height: 1.2;
  letter-spacing: -.04em;
}

.faq-list {
  border-top: 1px solid var(--border);
}

.faq-list details {
  border-bottom: 1px solid var(--border);
}

.faq-list summary {
  min-height: 88px;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  font-size: 17px;
  font-weight: 750;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--muted);
  transition: transform .22s ease, color .22s ease;
}

.faq-list details[open] summary {
  color: var(--brand-strong);
}

.faq-list details[open] summary svg {
  color: var(--brand);
  transform: rotate(180deg);
}

.faq-list details p {
  max-width: 690px;
  margin: -3px 0 28px;
  color: var(--muted);
  line-height: 1.85;
}

.final-cta {
  padding-top: 40px;
}

.final-card {
  min-height: 500px;
  padding: 70px;
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 70px;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 10% 20%, rgba(255, 255, 255, .72), transparent 28%),
    linear-gradient(135deg, #ffe6ee, #eee7ff 58%, #fff4d6);
}

.final-art {
  position: relative;
  min-height: 330px;
  display: grid;
  place-items: center;
}

.final-art::before,
.final-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 93, 143, .16);
  border-radius: 50%;
}

.final-art::before { width: 330px; height: 330px; }
.final-art::after { width: 250px; height: 250px; }

.final-art img {
  position: relative;
  z-index: 2;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  filter: drop-shadow(0 26px 35px rgba(104, 55, 80, .18));
}

.final-art span,
.final-art i {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 9px rgba(255, 93, 143, .1);
}

.final-art span { top: 35px; right: 50px; }
.final-art i { left: 38px; bottom: 60px; width: 12px; height: 12px; background: #8d75d0; }

.final-copy h2 {
  max-width: 650px;
}

.final-copy h2 span {
  display: block;
}

.final-copy .button {
  margin-top: 30px;
}

.site-footer {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
  padding: 48px 0 28px;
}

.footer-main {
  padding: 40px 0;
  display: grid;
  grid-template-columns: .75fr 1fr 1.4fr;
  align-items: start;
  gap: 40px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.footer-main > p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.8;
}

.footer-main nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px 26px;
}

.footer-main nav a {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 650;
}

.footer-main nav a:hover {
  color: var(--brand-strong);
}

.footer-bottom {
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: #948891;
  font-size: 11px;
}

.footer-bottom a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-weight: 700;
}

.footer-bottom svg {
  width: 15px;
  height: 15px;
  transform: rotate(-90deg);
}

.qr-modal {
  position: fixed;
  z-index: 500;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.qr-modal[hidden] {
  display: none;
}

.qr-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 29, 36, .62);
  backdrop-filter: blur(8px);
}

.qr-dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 430px);
  padding: 40px;
  border-radius: 32px;
  background: #fff;
  box-shadow: 0 34px 90px rgba(38, 29, 36, .32);
  text-align: center;
  animation: dialogIn .28s var(--ease) both;
}

@keyframes dialogIn {
  from { opacity: 0; transform: translateY(12px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #f4eff3;
  cursor: pointer;
}

.modal-close svg {
  width: 20px;
  height: 20px;
}

.qr-dialog h2 {
  margin: 12px 0 20px;
  font-size: 28px;
}

.qr-dialog img {
  width: 270px;
  height: 270px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 22px;
}

.qr-dialog p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.download-modal[hidden] {
  display: none;
}

.download-modal {
  position: fixed;
  z-index: 550;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  transition: opacity 180ms ease;
}

.download-modal.is-visible {
  opacity: 1;
}

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(38, 29, 36, .62);
  backdrop-filter: blur(8px);
}

.download-modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  padding: 36px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 32px;
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 204, 220, .46), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, .99), rgba(255, 246, 250, .98));
  box-shadow: 0 34px 90px rgba(38, 29, 36, .32);
  transform: translateY(16px) scale(.98);
  transition: transform 180ms var(--ease);
}

.download-modal.is-visible .download-modal-card {
  transform: translateY(0) scale(1);
}

.download-modal-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(145deg, var(--brand), var(--brand-strong));
  box-shadow: 0 14px 30px rgba(219, 53, 104, .24);
  color: #fff;
}

.download-modal-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.download-modal-kicker {
  color: var(--brand-strong);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.download-modal-card h2 {
  margin: 8px 0 10px;
  color: var(--ink);
  font-size: clamp(25px, 5vw, 32px);
  line-height: 1.2;
}

.download-modal-status,
.download-modal-hint {
  color: var(--muted);
  line-height: 1.7;
}

.download-modal-status {
  min-height: 3.4em;
  margin: 0 0 22px;
  font-size: 14px;
}

.download-progress {
  position: relative;
  height: 12px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(219, 53, 104, .11);
}

.download-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-strong), #ff9b68);
  box-shadow: 0 0 18px rgba(255, 93, 143, .32);
  transition: width 160ms ease;
}

.download-progress.is-indeterminate .download-progress-bar {
  animation: download-progress-slide 1.15s ease-in-out infinite;
}

.download-progress-meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 12px;
}

.download-progress-meta strong {
  color: var(--ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.download-modal-action {
  width: 100%;
  min-height: 48px;
  margin-top: 24px;
  border: 1px solid rgba(219, 53, 104, .2);
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: var(--brand-strong);
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, border-color 160ms ease;
}

.download-modal-action:hover {
  border-color: rgba(219, 53, 104, .34);
  background: #fff;
  transform: translateY(-1px);
}

.download-modal-action:focus-visible {
  outline: 3px solid rgba(255, 93, 143, .25);
  outline-offset: 3px;
}

.download-modal-hint {
  margin: 14px 0 0;
  font-size: 11px;
  text-align: center;
}

@keyframes download-progress-slide {
  from { transform: translateX(-110%); }
  to { transform: translateX(245%); }
}

.toast {
  position: fixed;
  z-index: 600;
  left: 50%;
  bottom: 28px;
  max-width: min(90vw, 460px);
  padding: 13px 18px;
  border-radius: 999px;
  background: #30282f;
  box-shadow: 0 18px 42px rgba(48, 40, 47, .25);
  color: #fff;
  font-size: 12px;
  text-align: center;
  transform: translateX(-50%);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

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

@media (max-width: 1100px) {
  .desktop-nav { gap: 18px; }
  .hero-inner { grid-template-columns: 1fr 440px; gap: 20px; }
  .hero h1 { font-size: 56px; }
  .note-left { left: -4px; }
  .note-right { right: -2px; }
  .connection-profiles { grid-template-columns: minmax(0, 1fr) 50px minmax(0, 1fr); gap: 6px; }
  .connection-profile { gap: 7px; }
  .connection-avatar { width: 46px; height: 46px; flex-basis: 46px; border-width: 3px; }
  .connection-profile strong { font-size: 10px; }
  .connection-line > span { width: 28px; height: 28px; }
  .connection-line svg { width: 14px; height: 14px; }
  .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .platform-card { min-height: 500px; }
  .feature-card { grid-column: span 6; }
  .feature-card-large { grid-column: span 6; }
  .feature-yellow,
  .feature-dark,
  .feature-card-wide { grid-column: span 6; }
  .feature-coral { flex-direction: column; align-items: flex-start; }
  .checkin-number { align-self: flex-end; }
}

@media (max-width: 900px) {
  :root { --header-height: 70px; }
  .header-inner { width: min(calc(100% - 32px), var(--container)); }
  .desktop-nav,
  .header-cta { display: none; }
  .menu-button {
    width: 46px;
    height: 46px;
    margin-left: auto;
    display: grid;
    place-items: center;
    border: 1px solid var(--border);
    border-radius: 15px;
    background: rgba(255, 255, 255, .76);
    cursor: pointer;
  }
  .menu-button svg { width: 22px; height: 22px; }
  .menu-button .close-icon { display: none; }
  .menu-button[aria-expanded="true"] .menu-icon { display: none; }
  .menu-button[aria-expanded="true"] .close-icon { display: block; }
  .mobile-nav {
    width: min(calc(100% - 32px), var(--container));
    margin: 0 auto 14px;
    padding: 12px;
    display: grid;
    border: 1px solid var(--border);
    border-radius: 22px;
    background: rgba(255, 255, 255, .96);
    box-shadow: var(--shadow-md);
  }
  .mobile-nav[hidden] { display: none; }
  .mobile-nav a {
    min-height: 48px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    border-radius: 12px;
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
  }
  .mobile-nav a:hover { background: var(--rose-soft); color: var(--brand-strong); }
  .hero { min-height: auto; padding: 122px 0 78px; }
  .hero-inner { width: min(calc(100% - 32px), var(--container)); grid-template-columns: 1fr; gap: 56px; }
  .hero-copy { text-align: center; }
  .eyebrow { justify-content: center; }
  .hero h1,
  .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-actions,
  .platform-proof ul { justify-content: center; }
  .hero-product { max-width: 590px; width: 100%; margin: 0 auto; }
  .promise-track { width: min(calc(100% - 32px), var(--container)); }
  .section { width: min(calc(100% - 32px), var(--container)); padding: 96px 0; }
  .demo-panel { padding: 40px; grid-template-columns: 1fr; gap: 36px; }
  .demo-art { min-height: 420px; }
  .feature-group-record .feature-card-large { grid-column: span 12; }
  .feature-group-record .feature-lilac,
  .feature-group-record .feature-peach { grid-column: span 6; }
  .feature-group-life .feature-yellow { grid-column: span 12; }
  .feature-group-life .feature-mint,
  .feature-group-life .feature-blue { grid-column: span 6; }
  .feature-group-play .feature-dark,
  .feature-group-play .feature-card-wide { grid-column: span 12; }
  .relationship-card {
    padding: 30px;
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "visual"
      "points";
    gap: 32px;
  }
  .relationship-copy { padding-top: 0; }
  .relationship-visual { min-height: 460px; }
  .relationship-points { margin-top: -6px; }
  .privacy {
    width: 100%;
    padding: 90px max(24px, calc((100vw - var(--container)) / 2));
  }
  .privacy-card { grid-template-columns: 1fr; gap: 50px; }
  .faq-layout { grid-template-columns: 1fr; gap: 30px; }
  .faq-heading { position: static; }
  .final-card { padding: 48px; grid-template-columns: 1fr; gap: 20px; text-align: center; }
  .final-copy h2,
  .final-copy > p { margin-left: auto; margin-right: auto; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-main nav { grid-column: 1 / -1; justify-content: flex-start; }
}

@media (max-width: 680px) {
  .brand img { width: 38px; height: 38px; }
  .brand strong { font-size: 15px; }
  .hero { padding-top: 112px; }
  .hero h1 { margin-top: 20px; font-size: clamp(34px, 9.7vw, 42px); line-height: 1.16; }
  .hero-lead { font-size: 16px; line-height: 1.8; }
  .hero-actions { flex-direction: column; }
  .hero-actions .button { width: 100%; max-width: 340px; }
  .platform-proof ul { gap: 7px; }
  .platform-proof li { font-size: 11px; }
  .hero-product { min-height: 590px; transform: scale(.9); transform-origin: center top; margin-bottom: -60px; }
  .phone-shell { width: 320px; height: 640px; }
  .note-left { left: 0; top: 115px; }
  .note-right { right: 0; top: 350px; }
  .hero-badge { right: 8px; bottom: 20px; }
  .promise-track { min-height: 118px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 18px 0; }
  .promise-track span { justify-content: center; font-size: 12px; }
  .promise-track span:last-child { grid-column: 1 / -1; }
  .promise-track i { display: none; }
  .section { padding: 82px 0; }
  .privacy {
    width: 100%;
    padding: 82px 24px;
  }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .relationship-copy h2,
  .privacy-copy h2,
  .final-copy h2 { font-size: 36px; line-height: 1.24; }
  .relationship-copy h2,
  .final-copy h2 { font-size: 31px; line-height: 1.25; }
  .final-copy h2 span { display: inline; }
  .section-heading p,
  .relationship-copy > p,
  .privacy-copy > p,
  .final-copy > p { font-size: 15px; line-height: 1.8; }
  .demo-stage { padding: 9px; border-radius: 32px; }
  .demo-nav { grid-template-columns: 1fr; border-radius: 25px; }
  .demo-nav button { min-height: 78px; padding: 13px 15px; }
  .demo-nav button > span { width: 32px; height: 32px; }
  .demo-panel { min-height: auto; padding: 30px 20px 20px; border-radius: 26px; }
  .demo-copy h3 { font-size: 30px; }
  .demo-art { min-height: 420px; }
  .memory-main { width: 66%; left: 4%; padding: 18px; }
  .memory-main > strong { font-size: 19px; }
  .memory-date { width: 39%; right: 2%; padding: 12px; }
  .memory-count { width: 38%; right: 3%; padding: 14px; }
  .memory-count strong { font-size: 24px; }
  .task-board { width: 68%; left: 3%; padding: 19px; }
  .coupon-card { width: 43%; right: 2%; padding: 15px; }
  .streak-card { right: 7%; }
  .budget-card { width: 65%; left: 3%; padding: 18px; }
  .tree-card { width: 45%; right: 2%; }
  .game-card { right: 5%; }
  .feature-groups { gap: 64px; }
  .feature-group-heading {
    margin-bottom: 22px;
    padding-top: 18px;
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .feature-group-heading > span { padding-top: 0; }
  .feature-group-heading h3 { font-size: 24px; }
  .feature-group-heading p { font-size: 14px; }
  .feature-bento { grid-template-columns: 1fr; }
  .feature-card,
  .feature-card-large,
  .feature-yellow,
  .feature-dark,
  .feature-card-wide { grid-column: auto; min-height: 330px; }
  .feature-group-record .feature-card-large,
  .feature-group-record .feature-lilac,
  .feature-group-record .feature-peach,
  .feature-group-life .feature-yellow,
  .feature-group-life .feature-mint,
  .feature-group-life .feature-blue,
  .feature-group-play .feature-dark,
  .feature-group-play .feature-card-wide {
    grid-column: auto;
    grid-row: auto;
  }
  .feature-card-large { min-height: 610px; }
  .feature-group-life .feature-yellow { min-height: 390px; }
  .feature-dark { min-height: 520px; }
  .feature-coral { min-height: 380px; }
  .tree-orbit { right: 50%; transform: translateX(50%); }
  .checkin-number { min-width: 0; align-self: center; }
  .checkin-number strong { font-size: 78px; }
  .relationship-card { padding: 22px; gap: 26px; border-radius: 34px; }
  .relationship-visual { min-height: 390px; padding: 14px; border-radius: 28px; }
  .connection-shell { min-height: 0; padding: 16px; border-radius: 24px; }
  .connection-profiles { grid-template-columns: minmax(0, 1fr) 52px minmax(0, 1fr); gap: 6px; }
  .connection-profile { gap: 7px; }
  .connection-avatar { width: 46px; height: 46px; flex-basis: 46px; border-width: 3px; }
  .connection-profile strong { font-size: 11px; }
  .connection-line > span { width: 28px; height: 28px; }
  .connection-line svg { width: 14px; height: 14px; }
  .connection-shell .binding-chip { margin-top: 14px; }
  .shared-board { margin-top: 12px; padding: 14px; }
  .shared-board-head strong { font-size: 12px; }
  .shared-modules { margin-top: 12px; gap: 6px; }
  .shared-modules > div { min-height: 96px; padding: 10px 7px; }
  .shared-modules strong { font-size: 10px; }
  .shared-modules small { font-size: 7px; }
  .private-note { min-height: 52px; margin-top: 10px; padding: 0 12px; }
  .relationship-points { margin-top: 0; }
  .relationship-points > div { grid-template-columns: 34px 92px 1fr; }
  .relationship-points small { font-size: 11px; }
  .platform-grid { grid-template-columns: 1fr; }
  .platform-card { min-height: 0; padding: 26px; }
  .qr-preview { margin-top: 28px; padding: 14px; }
  .android-visual { margin: 28px 0 0; }
  .android-card .download-button { margin-top: 34px; }
  .soon-orbit { width: 164px; height: 164px; margin: 34px auto 24px; }
  .soon-label { margin-top: 0; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid article { min-height: 185px; }
  .faq-list summary { min-height: 78px; font-size: 15px; }
  .faq-list details p { font-size: 14px; }
  .final-card { padding: 38px 22px; border-radius: 34px; }
  .final-art { min-height: 280px; }
  .final-art::before { width: 280px; height: 280px; }
  .final-art::after { width: 210px; height: 210px; }
  .final-art img { width: 215px; height: 215px; }
  .footer-main { grid-template-columns: 1fr; }
  .footer-main nav { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .qr-dialog { padding: 34px 20px 28px; }
  .qr-dialog img { width: 240px; height: 240px; }
  .download-modal { align-items: end; padding: 12px; }
  .download-modal-card { width: 100%; padding: 28px 22px 22px; border-radius: 28px; }
}

@media (max-width: 410px) {
  .hero-product { transform: scale(.82); margin-bottom: -115px; }
  .note-left { left: -25px; }
  .note-right { right: -25px; }
  .connection-profiles { grid-template-columns: minmax(0, 1fr) 46px minmax(0, 1fr); gap: 5px; }
  .connection-profile { gap: 4px; }
  .connection-avatar { width: 40px; height: 40px; flex-basis: 40px; }
  .connection-profile strong { font-size: 9px; }
  .connection-line > span { width: 26px; height: 26px; }
  .demo-art { min-height: 390px; }
  .memory-date { top: 13%; }
  .memory-count { bottom: 7%; }
  .tree-card img { width: 140px; height: 140px; }
}

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

/* SEO content hub and factual annotations */
.demo-disclaimer {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  text-align: center;
}

.demo-disclaimer-dark {
  color: var(--text-soft);
  text-align: left;
}

.seo-hub {
  position: relative;
  isolation: isolate;
}

.seo-hub::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 calc(50% - 50vw);
  background:
    radial-gradient(circle at 15% 20%, rgba(238, 118, 142, 0.14), transparent 34%),
    linear-gradient(180deg, #fffaf8 0%, #ffffff 100%);
}

.seo-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1180px;
  margin: 42px auto 0;
  padding: 0 24px;
}

.seo-card {
  position: relative;
  display: flex;
  min-height: 210px;
  padding: 28px 28px 70px;
  flex-direction: column;
  gap: 12px;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(38, 26, 30, 0.09);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(69, 39, 47, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.seo-card:hover {
  transform: translateY(-5px);
  border-color: rgba(231, 88, 112, 0.3);
  box-shadow: 0 24px 60px rgba(69, 39, 47, 0.13);
}

.seo-card:focus-visible {
  outline: 3px solid rgba(255, 93, 143, 0.32);
  outline-offset: 4px;
}

.seo-card-arrow {
  position: absolute;
  right: 26px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  padding: 10px;
  color: var(--brand-strong);
  background: rgba(255, 93, 143, 0.09);
  border: 1px solid rgba(255, 93, 143, 0.16);
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.seo-card:hover .seo-card-arrow,
.seo-card:focus-visible .seo-card-arrow {
  color: #ffffff;
  background: var(--brand);
  transform: translateX(4px);
}

.seo-card span {
  color: var(--rose);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.seo-card strong {
  font-size: 21px;
  line-height: 1.35;
}

.seo-card p {
  margin: 0;
  color: var(--text-soft);
  line-height: 1.8;
}

.footer-bottom a {
  color: inherit;
}

@media (max-width: 900px) {
  .seo-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .seo-card-grid {
    grid-template-columns: 1fr;
    padding: 0 18px;
  }

  .seo-card {
    min-height: auto;
    padding: 24px 24px 66px;
  }

  .seo-card-arrow {
    right: 22px;
    bottom: 20px;
  }
}
