:root {
  --canvas: #fff2f5;
  --canvas-warm: #fbe8ed;
  --blush: #f7d9e0;
  --rose: #efbcc8;
  --rose-deep: #e49baa;
  --ink: #2f2524;
  --muted: #7f726c;
  --muted-strong: #665b56;
  --line: rgba(90, 67, 61, 0.12);
  --line-soft: rgba(90, 67, 61, 0.08);
  --accent: #d63652;
  --accent-deep: #b71f3d;
  --accent-soft: rgba(214, 54, 82, 0.11);
  --surface: rgba(255, 252, 249, 0.72);
  --surface-strong: rgba(255, 252, 249, 0.86);
  --shadow: 0 28px 80px rgba(122, 82, 77, 0.12);
  --shadow-strong: 0 42px 100px rgba(96, 65, 62, 0.16);
  --radius-lg: 34px;
  --radius-md: 24px;
  --radius-pill: 999px;
  --page-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  position: relative;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(247, 217, 224, 0.8), transparent 34%),
    radial-gradient(circle at 82% 0%, rgba(239, 188, 200, 0.7), transparent 25%),
    radial-gradient(circle at 70% 78%, rgba(252, 205, 216, 0.42), transparent 28%),
    linear-gradient(180deg, var(--canvas) 0%, var(--canvas-warm) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent 26%);
  opacity: 0.9;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.04)),
    radial-gradient(rgba(60, 40, 38, 0.035) 0.6px, transparent 0.6px);
  background-size: auto, 8px 8px;
  opacity: 0.18;
  mix-blend-mode: multiply;
}

a {
  color: inherit;
}

img,
svg {
  display: block;
}

.site-shell {
  position: relative;
  isolation: isolate;
}

.site-header,
.site-footer,
.hero-grid,
.section,
.page-main {
  width: min(calc(100% - 48px), var(--page-width));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 14px;
  background: linear-gradient(180deg, rgba(255, 242, 245, 0.92), rgba(255, 242, 245, 0.48));
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(90, 67, 61, 0.08);
}

.brandmark {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brandmark-symbol {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.66);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 26px rgba(122, 82, 77, 0.08);
}

.brandmark-symbol svg {
  width: 22px;
  fill: var(--accent);
}

.brandmark-word {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.site-nav {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  transition: color 180ms ease;
}

.site-nav a[aria-current="page"] {
  color: var(--ink);
}

.site-nav a[aria-current="page"]::after,
.site-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 1px;
  background: var(--accent);
}

.hero {
  position: relative;
  min-height: calc(100svh - 86px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 18px;
}

.hero-wordmark-backdrop {
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(6.8rem, 24vw, 20rem);
  line-height: 0.84;
  letter-spacing: 0.03em;
  color: rgba(183, 31, 61, 0.06);
  pointer-events: none;
  user-select: none;
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.55), transparent 22%),
    radial-gradient(circle at 72% 18%, rgba(214, 54, 82, 0.1), transparent 20%),
    radial-gradient(circle at 82% 82%, rgba(247, 217, 224, 0.98), transparent 20%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), transparent 34%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 56px;
  padding: 76px 0 88px;
}

.hero-copy {
  max-width: 580px;
  position: relative;
  z-index: 1;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  line-height: 0.95;
}

.hero-copy h1,
.page-hero h1 {
  font-size: clamp(4.2rem, 9vw, 7.6rem);
  max-width: 7ch;
  letter-spacing: -0.03em;
}

.hero-body,
.page-hero p,
.detail-copy p,
.manifesto-grid p,
.detail-item p,
.support-tile p,
.support-panel p,
.faq-list p,
.policy-prose p,
.policy-card li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.hero-body {
  margin: 28px 0 0;
  max-width: 24ch;
  color: var(--muted-strong);
  font-size: 1.18rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  min-height: 54px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button-primary {
  color: #fff9f8;
  background: linear-gradient(135deg, #ea4965 0%, var(--accent-deep) 100%);
  box-shadow: 0 20px 38px rgba(214, 54, 82, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(90, 67, 61, 0.14);
  background: rgba(255, 247, 249, 0.6);
  backdrop-filter: blur(14px);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.hero-meta span:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 1px;
  background: rgba(90, 67, 61, 0.14);
}

.hero-note,
.page-note,
.footer-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-note {
  margin-top: 20px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  padding-top: 24px;
}

.floating-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(8px);
  animation: drift 8s ease-in-out infinite;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: 6px;
  right: -10px;
  background: rgba(239, 188, 200, 0.62);
}

.orb-two {
  width: 220px;
  height: 220px;
  bottom: 30px;
  left: -4px;
  background: rgba(214, 54, 82, 0.12);
  animation-delay: -2.4s;
}

.phone-stage {
  position: relative;
  width: min(100%, 440px);
  padding: 46px 38px 34px;
}

.phone-stage::before {
  content: "";
  position: absolute;
  inset: 8% 6%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(214, 54, 82, 0.22), transparent 62%);
  filter: blur(24px);
}

.phone-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 42px;
  background: linear-gradient(180deg, rgba(66, 50, 49, 0.98), rgba(32, 24, 24, 0.98));
  box-shadow: var(--shadow-strong);
}

.phone-frame::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 124px;
  height: 18px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(22, 18, 18, 0.9);
}

.phone-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 42px;
  background: linear-gradient(130deg, rgba(255, 255, 255, 0.16), transparent 18%, transparent 82%, rgba(255, 255, 255, 0.08));
  pointer-events: none;
}

.phone-screen {
  min-height: 720px;
  padding: 24px 20px 22px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 24% 18%, rgba(247, 217, 224, 0.96), transparent 24%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.52), transparent 18%),
    radial-gradient(circle at 50% 56%, rgba(214, 54, 82, 0.06), transparent 28%),
    linear-gradient(180deg, #fff3f5 0%, #fbe7ed 100%);
}

.phone-topline,
.phone-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.76rem;
  color: var(--muted);
}

.phone-topline {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.phone-title {
  color: var(--ink);
  letter-spacing: 0.14em;
  text-transform: none;
}

.phone-person {
  margin-top: 54px;
  text-align: center;
}

.phone-name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 2.6rem;
}

.phone-role {
  margin: 10px 0 0;
  color: var(--muted);
}

.phone-heart-wrap {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.phone-heart-scene {
  position: relative;
  width: 280px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-heart-scene::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 108, 138, 0.28) 0%, rgba(255, 108, 138, 0.1) 38%, rgba(255, 108, 138, 0) 76%);
  filter: blur(18px);
  transform: scale(1.1);
}

.phone-heart-scene::after {
  content: "";
  position: absolute;
  inset: 24px;
  border-radius: 50%;
  border: 1px solid rgba(255, 167, 188, 0.22);
  opacity: 0.72;
}

.heart-core {
  position: relative;
  width: 230px;
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: heart-breathe 3.4s ease-in-out infinite;
}

.heart-core::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(183, 31, 61, 0.16) 0%, rgba(183, 31, 61, 0.04) 52%, rgba(183, 31, 61, 0) 78%);
  filter: blur(14px);
  z-index: -1;
}

.heart-core::after {
  content: "";
  position: absolute;
  width: 118px;
  height: 18px;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(128, 28, 44, 0.12);
  filter: blur(8px);
  z-index: -1;
}

.hero-heart-svg {
  width: 220px;
  height: auto;
  overflow: visible;
  filter: drop-shadow(0 22px 28px rgba(191, 25, 59, 0.14));
}

.hero-heart-drop {
  fill: rgba(122, 19, 41, 0.12);
  transform: translateY(10px) scale(0.985);
  transform-origin: center;
  filter: blur(2px);
}

.hero-heart-main {
  fill: url(#heroHeartFill);
}

.hero-heart-depth {
  fill: url(#heroHeartDepth);
}

.phone-heart-badge {
  position: absolute;
  right: 18px;
  bottom: 32px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 249, 250, 0.88);
  border: 1px solid rgba(214, 54, 82, 0.12);
  box-shadow: 0 22px 34px rgba(183, 31, 61, 0.12);
  display: grid;
  place-items: center;
  text-align: center;
}

.phone-heart-badge strong {
  display: block;
  color: var(--accent-deep);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.9rem;
  line-height: 1;
}

.phone-heart-badge span {
  display: block;
  margin-top: 3px;
  color: var(--accent-deep);
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.phone-prompt {
  margin: 8px 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.phone-subprompt {
  margin: 10px 0 0;
  max-width: 20ch;
  text-align: center;
}

.phone-receive-strip {
  margin-top: 16px;
  padding: 12px 14px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(214, 54, 82, 0.1);
  background: rgba(255, 249, 250, 0.72);
}

.phone-receive-strip p {
  margin: 0;
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.receive-bars {
  display: inline-flex;
  gap: 4px;
}

.receive-bar {
  width: 13px;
  height: 6px;
  border-radius: 999px;
  background: rgba(214, 54, 82, 0.12);
}

.receive-bar.is-active {
  background: linear-gradient(90deg, #f1637f 0%, var(--accent) 100%);
}

.phone-stats {
  gap: 16px;
}

.phone-stats > div {
  width: calc(50% - 8px);
  padding: 18px 16px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.54);
  border: 1px solid var(--line-soft);
}

.stat-value {
  display: block;
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
}

.stat-label {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.section,
.page-main {
  padding-bottom: 120px;
}

.section {
  padding-top: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 40px;
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  letter-spacing: -0.03em;
}

.section-heading.narrow h2 {
  max-width: 12ch;
}

.ritual-step h3,
.support-panel h2,
.faq-list h3,
.policy-card h2,
.prose-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.ritual-step h3,
.support-panel h2,
.faq-list h3,
.policy-card h2,
.prose-block h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  line-height: 1.05;
}

.ritual-number,
.tile-kicker {
  color: var(--muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.ritual-section {
  padding-top: 28px;
  border-top: 1px solid rgba(90, 67, 61, 0.1);
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.ritual-step {
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.ritual-step h3 {
  margin-top: 14px;
}

.ritual-step p {
  margin: 12px 0 0;
}

.download-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 44px;
  align-items: start;
  padding-top: 56px;
  padding-bottom: 144px;
  border-top: 1px solid rgba(90, 67, 61, 0.1);
}

.download-copy {
  max-width: 620px;
}

.download-band .section-heading,
.download-copy .eyebrow {
  margin-bottom: 0;
}

.download-band h2 {
  max-width: 10ch;
  font-size: clamp(3rem, 6vw, 5.2rem);
  letter-spacing: -0.03em;
}

.download-body {
  max-width: 38ch;
  margin: 24px 0 0;
  color: var(--muted-strong);
  font-size: 1.06rem;
  line-height: 1.8;
}

.download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.download-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  margin-top: 34px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.download-label {
  display: inline-block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.download-notes p {
  margin: 12px 0 0;
}

.download-panel {
  display: grid;
  gap: 18px;
}

.qr-card {
  padding: 30px;
  border-radius: 30px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.72), transparent 36%),
    linear-gradient(180deg, rgba(255, 252, 249, 0.92) 0%, rgba(251, 232, 237, 0.92) 100%);
  border: 1px solid rgba(90, 67, 61, 0.1);
  box-shadow: 0 28px 62px rgba(122, 82, 77, 0.12);
}

.qr-kicker {
  display: inline-block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.qr-shell {
  width: 224px;
  height: 224px;
  margin-top: 20px;
  border-radius: 28px;
  background: #fffdfb;
  border: 1px solid rgba(90, 67, 61, 0.12);
  display: grid;
  place-items: center;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.qr-pattern {
  width: 160px;
  height: 160px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.qr-pattern span {
  border-radius: 8px;
  background: rgba(47, 37, 36, 0.12);
}

.qr-pattern span:nth-child(1),
.qr-pattern span:nth-child(2),
.qr-pattern span:nth-child(5),
.qr-pattern span:nth-child(7),
.qr-pattern span:nth-child(8),
.qr-pattern span:nth-child(9),
.qr-pattern span:nth-child(11),
.qr-pattern span:nth-child(13),
.qr-pattern span:nth-child(14),
.qr-pattern span:nth-child(16) {
  background: rgba(47, 37, 36, 0.86);
}

.qr-card strong {
  display: block;
  margin-top: 22px;
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1.05;
}

.qr-card p {
  margin: 12px 0 0;
}

.launch-meta {
  padding: 24px 26px;
  border-top: 1px solid var(--line);
}

.launch-meta-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: 1px solid var(--line-soft);
}

.launch-meta-row:last-child {
  border-bottom: 0;
}

.launch-meta-row span,
.mini-note {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.launch-meta-row strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 700;
}

.page-main {
  padding-top: 48px;
}

.page-hero {
  max-width: 820px;
  padding: 50px 0 74px;
}

.page-hero p {
  max-width: 46ch;
  margin: 24px 0 0;
}

.policy-grid,
.support-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
}

.policy-card,
.support-panel {
  padding: 28px;
  border: 1px solid rgba(90, 67, 61, 0.08);
  border-radius: var(--radius-md);
  background: var(--surface-strong);
  box-shadow: 0 18px 44px rgba(122, 82, 77, 0.06);
}

.policy-list {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.policy-list li + li {
  margin-top: 10px;
}

.policy-prose,
.faq-block {
  margin-top: 48px;
}

.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding-bottom: 96px;
}

.support-layout-secondary {
  margin-top: 28px;
}

.prose-block + .prose-block {
  margin-top: 28px;
}

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

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

.site-footer {
  padding: 0 0 48px;
  color: var(--muted);
  border-top: 1px solid rgba(90, 67, 61, 0.08);
}

.footer-links {
  display: flex;
  gap: 18px;
  margin: 12px 0;
}

.footer-links a {
  text-decoration: none;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(0, -18px, 0) scale(1.04);
  }
}

@keyframes heart-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .ritual-steps,
  .download-band,
  .policy-grid,
  .support-layout {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding-top: 36px;
  }

  .hero-wordmark-backdrop {
    top: 78px;
    transform: translateX(-50%);
    font-size: clamp(5.4rem, 24vw, 10rem);
  }

  .phone-stage {
    width: min(100%, 420px);
    margin: 0 auto;
  }

  .download-panel {
    max-width: 420px;
  }

}

@media (max-width: 720px) {
  .site-header,
  .site-footer,
  .hero-grid,
  .section,
  .page-main {
    width: min(calc(100% - 32px), var(--page-width));
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    padding-top: 18px;
  }

  .site-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .hero-copy h1,
  .page-hero h1 {
    max-width: 9ch;
  }

  .hero-grid {
    gap: 22px;
    padding-top: 24px;
    padding-bottom: 64px;
  }

  .hero-copy {
    position: relative;
    z-index: 1;
  }

  .hero-visual {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    padding-top: 8px;
    opacity: 1;
    pointer-events: none;
  }

  .phone-stage {
    width: min(100%, 360px);
    padding: 0 0 10px;
    transform: none;
    transform-origin: center;
  }

  .hero-body {
    font-size: 1.08rem;
  }

  .hero-meta {
    gap: 12px;
    max-width: 19rem;
  }

  .hero-meta span {
    gap: 12px;
  }

  .hero-meta span:not(:last-child)::after {
    width: 18px;
  }

  .phone-screen {
    min-height: auto;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
  }

  .phone-heart-scene {
    width: 320px;
    height: 320px;
  }

  .heart-core {
    width: 286px;
    height: 276px;
  }

  .hero-heart-svg {
    width: 272px;
    filter: drop-shadow(0 28px 34px rgba(191, 25, 59, 0.2));
  }

  .phone-heart-badge {
    display: none;
  }

  .phone-name {
    font-size: 2.2rem;
  }

  .phone-stage::before {
    inset: 6% 4%;
    background: radial-gradient(circle, rgba(214, 54, 82, 0.34), rgba(214, 54, 82, 0) 64%);
    filter: blur(18px);
  }

  .phone-frame {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .phone-frame::before,
  .phone-frame::after,
  .phone-topline,
  .phone-person,
  .phone-prompt,
  .phone-subprompt,
  .phone-receive-strip,
  .phone-stats {
    display: none;
  }

  .phone-heart-wrap {
    padding: 0;
  }

  .phone-heart-scene::before {
    inset: 0;
    background: radial-gradient(circle, rgba(255, 108, 138, 0.34) 0%, rgba(255, 108, 138, 0.12) 42%, rgba(255, 108, 138, 0) 78%);
    filter: blur(20px);
    transform: scale(1.12);
  }

  .phone-heart-scene::after {
    inset: 18px;
    border: 1px solid rgba(255, 167, 188, 0.3);
    opacity: 0.82;
  }

  .heart-core::before {
    inset: -28px;
    background: radial-gradient(circle, rgba(183, 31, 61, 0.2) 0%, rgba(183, 31, 61, 0.05) 56%, rgba(183, 31, 61, 0) 80%);
    filter: blur(18px);
  }

  .heart-core::after {
    width: 146px;
    height: 24px;
    bottom: 12px;
    background: rgba(128, 28, 44, 0.14);
    filter: blur(10px);
  }

  .page-main,
  .section {
    padding-bottom: 88px;
  }

  .page-actions {
    padding-bottom: 72px;
  }

  .download-actions,
  .download-notes {
    grid-template-columns: 1fr;
  }

  .qr-shell {
    width: min(100%, 224px);
  }

  .launch-meta-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

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

  .reveal,
  .reveal.is-visible,
  .floating-orb,
  .heart-core {
    opacity: 1;
    animation: none;
    transition: none;
    transform: none;
  }
}
