:root {
  --site-max: 1500px;
  --page-max: 1240px;
  --background: #fcf8ff;
  --background-deep: #f4ecff;
  --surface: rgba(255, 255, 255, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.88);
  --surface-soft: rgba(248, 241, 255, 0.92);
  --line: rgba(126, 102, 191, 0.18);
  --line-strong: rgba(126, 102, 191, 0.28);
  --ink: #17133a;
  --muted: #6f678f;
  --violet: #8d68ff;
  --violet-strong: #7147f2;
  --violet-soft: rgba(141, 104, 255, 0.16);
  --pink-soft: rgba(255, 219, 240, 0.54);
  --gold-soft: rgba(255, 222, 156, 0.36);
  --shadow-soft: 0 22px 60px rgba(56, 36, 113, 0.08);
  --shadow-large: 0 42px 110px rgba(56, 36, 113, 0.16);
  --radius-xl: 42px;
  --radius-lg: 30px;
  --radius-md: 20px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 225, 242, 0.92), transparent 20rem),
    radial-gradient(circle at 86% 10%, rgba(226, 214, 255, 0.96), transparent 24rem),
    radial-gradient(circle at 80% 74%, rgba(255, 236, 201, 0.42), transparent 18rem),
    linear-gradient(180deg, #fefcff 0%, #faf4ff 38%, #fff9fe 100%);
  font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

body::before {
  background:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.88), transparent 16rem),
    radial-gradient(circle at 72% 8%, rgba(255, 255, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 88% 88%, rgba(255, 255, 255, 0.54), transparent 18rem);
}

body::after {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(247, 239, 255, 0.08), rgba(255, 255, 255, 0));
  opacity: 0.8;
}

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

a {
  color: inherit;
}

main {
  position: relative;
  width: min(100%, var(--site-max));
  margin: 0 auto;
}

.download-page main {
  min-height: 100svh;
}

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

.site-header {
  position: absolute;
  top: 0;
  left: 50%;
  width: min(100%, var(--site-max));
  transform: translateX(-50%);
  z-index: 40;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 22px;
  padding-bottom: 12px;
}

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

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(255, 243, 249, 0.92), rgba(243, 234, 255, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 14px 30px rgba(56, 36, 113, 0.08);
}

.brand-mark img {
  width: 30px;
  height: 30px;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
h1,
h2,
h3 {
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.06em;
}

.brand-copy strong {
  font-size: 1rem;
  line-height: 1;
}

.brand-copy span,
.hero-body,
.value-body,
.promise-item p,
.site-footer p,
.cta-body {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.brand-copy span {
  font-size: 0.84rem;
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  padding: 8px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 14px 40px rgba(56, 36, 113, 0.06);
  backdrop-filter: blur(18px);
}

.topnav a {
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--muted);
  white-space: nowrap;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.topnav a:hover,
.topnav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--violet-strong);
  outline: none;
  transform: translateY(-1px);
}

.topnav .nav-support {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  box-shadow: 0 16px 28px rgba(113, 71, 242, 0.22);
}

.hero {
  position: relative;
  min-height: clamp(780px, 100svh, 1120px);
  padding: 132px 0 84px;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 32%, rgba(255, 255, 255, 0.68), transparent 18rem),
    radial-gradient(circle at 88% 18%, rgba(236, 225, 255, 0.82), transparent 22rem),
    radial-gradient(circle at 76% 84%, rgba(255, 220, 238, 0.44), transparent 18rem);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.88fr);
  gap: clamp(24px, 4vw, 68px);
  align-items: start;
  min-height: clamp(680px, calc(100svh - 190px), 900px);
}

.hero-copy {
  max-width: 560px;
}

.eyebrow,
.value-label {
  display: inline-block;
  margin: 0 0 14px;
  color: var(--violet-strong);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.3;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
}

h1 {
  max-width: 8.4ch;
  font-size: clamp(3.6rem, 8vw, 6.9rem);
  line-height: 0.9;
}

h2 {
  max-width: 11ch;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
  line-height: 0.94;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.18;
}

.gradient-word {
  color: transparent;
  background: linear-gradient(135deg, #a382ff 0%, #7a54f6 46%, #f48fd7 100%);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-body,
.value-body,
.cta-body {
  margin-top: 22px;
  font-size: 1.08rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 24px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease,
    border-color 180ms ease, color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--violet), var(--violet-strong));
  box-shadow: 0 18px 36px rgba(113, 71, 242, 0.24);
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.64);
  box-shadow: 0 16px 32px rgba(56, 36, 113, 0.07);
  backdrop-filter: blur(16px);
}

.store-button {
  justify-content: flex-start;
  min-width: 214px;
  min-height: 66px;
  padding: 10px 18px 10px 16px;
  gap: 12px;
  text-align: left;
}

.store-button.is-hidden {
  display: none;
}

.store-button.is-disabled {
  cursor: default;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 32px rgba(56, 36, 113, 0.07);
}

.store-button.is-disabled:hover,
.store-button.is-disabled:focus-visible {
  transform: none;
}

.store-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

.store-icon svg {
  width: 100%;
  height: 100%;
}

.store-copy {
  display: grid;
  gap: 2px;
}

.store-kicker {
  font-size: 0.72rem;
  line-height: 1;
  font-weight: 800;
  opacity: 0.82;
}

.store-label {
  font-size: 1.02rem;
  line-height: 1.08;
}

.store-icon-play .play-blue {
  fill: #4285f4;
}

.store-icon-play .play-green {
  fill: #34a853;
}

.store-icon-play .play-yellow {
  fill: #fbbc04;
}

.store-icon-play .play-red {
  fill: #ea4335;
}

.hero-signals {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
}

.hero-signals li,
.value-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 12px 26px rgba(56, 36, 113, 0.06);
  font-size: 0.86rem;
  font-weight: 800;
  color: var(--ink);
  backdrop-filter: blur(14px);
}

.hero-visual {
  position: relative;
  display: grid;
  justify-items: end;
}

.hero-poster {
  position: relative;
  width: min(100%, 460px);
  padding: 16px;
  border-radius: 44px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at top right, rgba(255, 222, 238, 0.72), transparent 12rem),
    radial-gradient(circle at bottom left, rgba(234, 223, 255, 0.84), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(248, 240, 255, 0.84));
  box-shadow: var(--shadow-large);
  animation: float-poster 8.5s ease-in-out infinite;
}

.hero-poster::before {
  content: "";
  position: absolute;
  inset: -18px -24px;
  border-radius: 54px;
  background: radial-gradient(circle at center, rgba(174, 145, 255, 0.3), transparent 64%);
  z-index: -1;
  filter: blur(8px);
}

.hero-poster img {
  width: 100%;
  height: auto;
  border-radius: 32px;
}

.floating-note {
  position: absolute;
  left: -18px;
  bottom: 11%;
  max-width: 220px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.66);
  box-shadow: 0 20px 38px rgba(56, 36, 113, 0.08);
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.45;
  backdrop-filter: blur(14px);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.22) 34%, rgba(195, 164, 255, 0.28) 70%, rgba(255, 255, 255, 0.1) 100%);
  box-shadow: inset 0 -20px 40px rgba(200, 180, 255, 0.2), 0 20px 42px rgba(113, 71, 242, 0.08);
  backdrop-filter: blur(10px);
  animation: drift-orb 15s ease-in-out infinite;
}

.hero-orb-one {
  top: 11%;
  right: 8%;
  width: 132px;
  height: 132px;
}

.hero-orb-two {
  top: 28%;
  right: 22%;
  width: 54px;
  height: 54px;
  animation-delay: -4s;
}

.hero-orb-three {
  left: 7%;
  bottom: 14%;
  width: 88px;
  height: 88px;
  animation-delay: -7s;
}

.promise-section,
.value-section,
.cta-section {
  padding: 28px 0;
}

.promise-shell,
.value-shell,
.cta-shell {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
}

.promise-shell {
  padding: clamp(28px, 4vw, 40px);
  background:
    radial-gradient(circle at 12% 24%, rgba(255, 226, 241, 0.68), transparent 14rem),
    radial-gradient(circle at 88% 20%, rgba(232, 220, 255, 0.84), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(249, 243, 255, 0.86));
}

.section-head {
  max-width: 700px;
}

.section-head h2 {
  max-width: 11.6ch;
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 28px;
}

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

.promise-index {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--violet-strong);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.promise-item h3 {
  margin-bottom: 10px;
}

.value-shell {
  --section-accent: var(--violet-strong);
  --section-ring: rgba(113, 71, 242, 0.18);
  --section-soft: rgba(245, 239, 255, 0.92);
  --section-glow: rgba(165, 141, 255, 0.32);
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 14% 18%, var(--section-soft), transparent 16rem),
    radial-gradient(circle at 88% 18%, var(--section-glow), transparent 16rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(249, 243, 255, 0.88));
}

.tone-lilac {
  --section-accent: #7147f2;
  --section-ring: rgba(113, 71, 242, 0.16);
  --section-soft: rgba(245, 238, 255, 0.98);
  --section-glow: rgba(169, 143, 255, 0.34);
}

.tone-compare {
  --section-accent: #6c53ed;
  --section-ring: rgba(108, 83, 237, 0.16);
  --section-soft: rgba(247, 250, 235, 0.94);
  --section-glow: rgba(210, 250, 136, 0.28);
}

.tone-sun {
  --section-accent: #7b58f6;
  --section-ring: rgba(123, 88, 246, 0.16);
  --section-soft: rgba(255, 246, 233, 0.96);
  --section-glow: rgba(255, 199, 103, 0.24);
}

.tone-price {
  --section-accent: #6f48f1;
  --section-ring: rgba(111, 72, 241, 0.16);
  --section-soft: rgba(255, 243, 250, 0.96);
  --section-glow: rgba(255, 207, 108, 0.24);
}

.tone-result {
  --section-accent: #7552f4;
  --section-ring: rgba(117, 82, 244, 0.16);
  --section-soft: rgba(255, 244, 248, 0.96);
  --section-glow: rgba(255, 177, 210, 0.24);
}

.value-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(32px, 4.6vw, 64px);
  align-items: center;
}

.value-section.reverse .value-copy {
  order: 2;
}

.value-section.reverse .value-media {
  order: 1;
}

.value-label {
  color: var(--section-accent);
}

.value-points {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 26px 0 0;
  list-style: none;
}

.value-points li {
  position: relative;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.value-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--section-accent);
  box-shadow: 0 0 0 8px var(--section-ring);
  transform: translateY(-50%);
}

.value-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.value-media {
  position: relative;
  display: grid;
  place-items: center;
}

.screen-frame {
  --screen-tilt: 0deg;
  position: relative;
  width: min(100%, 420px);
  padding: 14px;
  border-radius: 38px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 239, 255, 0.82));
  box-shadow: var(--shadow-large);
  animation: float-screen 8s ease-in-out infinite;
}

.screen-frame::before {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: 52px;
  background: radial-gradient(circle at center, var(--section-glow), transparent 66%);
  filter: blur(8px);
  z-index: -1;
}

.screen-frame img {
  width: 100%;
  height: auto;
  border-radius: 28px;
}

.tilt-left {
  --screen-tilt: -2.4deg;
}

.tilt-right {
  --screen-tilt: 2.4deg;
}

.reverse .screen-frame {
  animation-delay: -3s;
}

.cta-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(260px, 0.52fr);
  gap: clamp(24px, 4vw, 52px);
  align-items: center;
  padding: clamp(28px, 4vw, 44px);
  background:
    radial-gradient(circle at 18% 26%, rgba(255, 228, 242, 0.72), transparent 16rem),
    radial-gradient(circle at 82% 24%, rgba(232, 222, 255, 0.88), transparent 18rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(248, 242, 255, 0.9));
}

.cta-copy h2 {
  max-width: 11ch;
}

.cta-quote {
  margin: 24px 0 0;
  color: var(--violet-strong);
  font-size: 0.96rem;
  font-weight: 800;
}

.cta-visual {
  display: grid;
  place-items: center;
  min-height: 320px;
}

.cta-mark {
  position: relative;
  width: min(100%, 240px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.18) 36%, rgba(180, 154, 255, 0.24) 70%, rgba(255, 255, 255, 0.12) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(244, 236, 255, 0.68));
  box-shadow: var(--shadow-large);
  backdrop-filter: blur(18px);
  animation: pulse-mark 9s ease-in-out infinite;
}

.cta-mark img {
  width: 112px;
  height: 112px;
  position: relative;
  z-index: 3;
  filter: drop-shadow(0 12px 22px rgba(113, 71, 242, 0.18));
}

.cta-glow,
.cta-orb {
  position: absolute;
  border-radius: 50%;
}

.cta-glow {
  inset: auto;
  filter: blur(12px);
  z-index: 1;
}

.cta-glow-one {
  width: 160px;
  height: 160px;
  background: rgba(255, 179, 223, 0.34);
  left: 12%;
  bottom: 18%;
}

.cta-glow-two {
  width: 160px;
  height: 160px;
  background: rgba(153, 122, 255, 0.3);
  right: 12%;
  top: 16%;
}

.cta-orb {
  border: 1px solid rgba(255, 255, 255, 0.7);
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.2) 35%, rgba(203, 177, 255, 0.28) 72%, rgba(255, 255, 255, 0.12) 100%);
  box-shadow: inset 0 -14px 24px rgba(197, 173, 255, 0.2), 0 18px 36px rgba(113, 71, 242, 0.08);
  backdrop-filter: blur(10px);
  z-index: 2;
}

.cta-orb-one {
  width: 44px;
  height: 44px;
  top: 18%;
  right: -6%;
}

.cta-orb-two {
  width: 62px;
  height: 62px;
  bottom: 6%;
  left: -8%;
}

.site-footer {
  padding: 28px 0 48px;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(126, 102, 191, 0.14);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.footer-brand strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Sora", "Avenir Next", "Segoe UI", sans-serif;
  letter-spacing: -0.04em;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--muted);
}

.download-hero {
  position: relative;
  min-height: clamp(720px, 100svh, 980px);
  padding: 132px 0 76px;
  overflow: clip;
}

.download-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 26%, rgba(255, 255, 255, 0.72), transparent 18rem),
    radial-gradient(circle at 84% 22%, rgba(236, 225, 255, 0.82), transparent 22rem),
    radial-gradient(circle at 74% 80%, rgba(255, 220, 238, 0.46), transparent 18rem);
  pointer-events: none;
}

.download-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.72fr);
  align-items: start;
  gap: clamp(28px, 6vw, 88px);
}

.download-copy {
  max-width: 620px;
  padding-top: clamp(96px, 11vh, 132px);
}

.download-copy h1 {
  max-width: 8.2ch;
}

.download-visual {
  display: grid;
  justify-items: end;
}

.download-poster {
  width: min(100%, 390px);
}

.download-signals {
  max-width: 640px;
}

.download-footer {
  margin-top: -96px;
  position: relative;
  z-index: 2;
}

.download-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
}

.download-modal.is-open {
  display: grid;
}

.download-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 58, 0.28);
  backdrop-filter: blur(14px);
}

.download-modal-panel {
  position: relative;
  width: min(100%, 480px);
  padding: 30px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow-large);
}

.download-modal-panel h2 {
  max-width: 11ch;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 0.98;
}

.download-modal-copy {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.62;
}

.download-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: rgba(248, 241, 255, 0.96);
  font: 800 1rem/1 "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  cursor: pointer;
}

.download-waitlist-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.download-waitlist-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 800;
}

.download-waitlist-form input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: 700 1rem/1.2 "Manrope", "Avenir Next", "Segoe UI", sans-serif;
  outline: none;
}

.download-waitlist-form input:focus {
  border-color: var(--violet);
  box-shadow: 0 0 0 4px rgba(141, 104, 255, 0.14);
}

.download-waitlist-form .button {
  width: 100%;
}

.download-form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.5;
}

@keyframes float-poster {
  0%,
  100% {
    transform: translateY(0) rotate(-1.2deg);
  }
  50% {
    transform: translateY(-14px) rotate(1.2deg);
  }
}

@keyframes float-screen {
  0%,
  100% {
    transform: translateY(0) rotate(var(--screen-tilt));
  }
  50% {
    transform: translateY(-12px) rotate(var(--screen-tilt));
  }
}

@keyframes drift-orb {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(0, -16px, 0) scale(1.04);
  }
}

@keyframes pulse-mark {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

@media (max-width: 1100px) {
  .hero-inner,
  .value-inner,
  .cta-shell,
  .download-hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 24px;
  }

  .hero-copy,
  .section-head {
    max-width: 100%;
  }

  .hero-visual,
  .value-media,
  .cta-visual,
  .download-visual {
    justify-items: center;
  }

  .floating-note {
    left: auto;
    right: -8px;
    bottom: 6%;
  }

  .hero-poster {
    width: min(100%, 390px);
  }

  .download-poster {
    width: min(100%, 360px);
  }

  .download-copy {
    padding-top: 0;
  }

  .value-section.reverse .value-copy,
  .value-section.reverse .value-media {
    order: initial;
  }
}

@media (max-width: 900px) {
  .promise-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-inner {
    min-height: auto;
  }

  h1 {
    max-width: 9.4ch;
  }

  .hero-poster {
    width: min(100%, 460px);
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 28px), var(--page-max));
  }

  .header-inner,
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .topnav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .topnav::-webkit-scrollbar {
    display: none;
  }

  .download-nav {
    display: none;
  }

  .hero {
    padding-top: 168px;
    padding-bottom: 52px;
  }

  .download-hero {
    padding-top: 148px;
    padding-bottom: 130px;
  }

  h1 {
    font-size: clamp(3rem, 14vw, 4.4rem);
  }

  h2 {
    max-width: none;
    font-size: clamp(2.15rem, 10vw, 3.2rem);
  }

  .hero-body,
  .value-body,
  .cta-body {
    font-size: 1rem;
  }

  .hero-signals,
  .value-tags {
    gap: 10px;
  }

  .hero-signals {
    margin-top: 22px;
  }

  .hero-signals li,
  .value-tags span {
    min-height: 38px;
    font-size: 0.82rem;
  }

  .button {
    min-height: 54px;
    padding: 0 20px;
  }

  .store-button {
    width: 100%;
    min-width: 0;
  }

  .hero-poster,
  .screen-frame {
    padding: 12px;
    border-radius: 30px;
  }

  .download-poster {
    width: min(100%, 330px);
  }

  .hero-poster img,
  .screen-frame img {
    border-radius: 22px;
  }

  .floating-note {
    position: relative;
    right: auto;
    bottom: auto;
    margin-top: 18px;
    max-width: 100%;
  }

  .tilt-left,
  .tilt-right {
    transform: none;
  }

  .cta-mark {
    width: min(100%, 220px);
  }

  .download-footer {
    margin-top: -96px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0ms !important;
  }
}
