:root {
  --bg: #fbfaff;
  --bg-soft: #f4f0ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #080b45;
  --muted: #7778a8;
  --primary: #7c4dff;
  --primary-2: #b28cff;
  --primary-3: #ebe1ff;
  --line: rgba(124, 77, 255, 0.12);
  --shadow-soft: 0 24px 60px rgba(124, 77, 255, 0.16);
  --shadow-strong: 0 32px 80px rgba(80, 56, 174, 0.24);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: 1180px;
  --ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background:
    radial-gradient(circle at top left, rgba(178, 140, 255, 0.14), transparent 28%),
    radial-gradient(circle at 90% 12%, rgba(124, 77, 255, 0.1), transparent 24%),
    linear-gradient(180deg, #ffffff 0%, var(--bg) 34%, #ffffff 100%);
  color: var(--text);
  font-family: "Inter", "SF Pro Display", "SF Pro Text", system-ui, sans-serif;
}

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

img,
svg {
  display: block;
}

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

.page-shell {
  position: relative;
  overflow: clip;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: absolute;
  inset: auto;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: -1;
}

.page-shell::before {
  top: 8rem;
  left: -10rem;
  background: rgba(176, 158, 255, 0.18);
}

.page-shell::after {
  top: 52rem;
  right: -12rem;
  background: rgba(144, 109, 255, 0.18);
}

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 4.75rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: saturate(180%) blur(18px);
  background: rgba(251, 250, 255, 0.72);
  border-bottom: 1px solid rgba(124, 77, 255, 0.08);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.brand-mark {
  display: block;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.9rem;
  box-shadow: 0 14px 32px rgba(124, 77, 255, 0.24);
  object-fit: cover;
  flex: 0 0 auto;
}

.brand-name {
  font-size: 1.7rem;
}

.store-button {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.95rem 1.3rem;
  border-radius: 1.3rem;
  color: white;
  background: linear-gradient(135deg, #8e6cff 0%, #6e45ff 100%);
  box-shadow: 0 16px 32px rgba(108, 74, 255, 0.22);
  transition:
    transform var(--ease),
    box-shadow var(--ease),
    filter var(--ease);
}

.store-button:hover,
.store-button:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 22px 38px rgba(108, 74, 255, 0.28);
  filter: saturate(1.06);
}

.store-button:focus-visible {
  outline: 2px solid rgba(124, 77, 255, 0.3);
  outline-offset: 3px;
}

.store-button--small {
  padding: 0.85rem 1.15rem;
}

.store-button__icon {
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 auto;
}

.store-button__icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.store-button__text {
  display: grid;
  gap: 0.05rem;
  line-height: 1;
}

.store-button__eyebrow {
  font-size: 0.72rem;
  opacity: 0.84;
}

.store-button__title {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero {
  padding-top: 3.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: 2rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: #8876c9;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title,
.section-heading h2,
.cta-copy h2 {
  margin: 0;
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.hero-title {
  max-width: 10ch;
  font-size: clamp(3.6rem, 7vw, 6.9rem);
}

.hero-title span,
.cta-copy h2 span {
  background: linear-gradient(135deg, #7c4dff 0%, #ad8fff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-text,
.hero-note,
.benefit-card p,
.step-card p,
.cta-copy p,
.footer-copy,
.footer-links a {
  color: var(--muted);
}

.hero-text {
  max-width: 30rem;
  margin: 1.4rem 0 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  line-height: 1.6;
}

.hero-actions {
  margin-top: 2rem;
}

.hero-note {
  margin: 1rem 0 0;
  font-size: 1rem;
}

.hero-visual {
  position: relative;
  min-height: 44rem;
  display: grid;
  place-items: center;
}

.hero-shape {
  position: absolute;
  right: 6%;
  top: 4.5rem;
  width: min(100%, 28rem);
  aspect-ratio: 1;
  border-radius: 42% 58% 54% 46% / 42% 42% 58% 58%;
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.14) 30%, transparent 32%),
    radial-gradient(circle at 58% 70%, rgba(124, 77, 255, 0.2), transparent 42%),
    linear-gradient(145deg, rgba(247, 242, 255, 0.95), rgba(181, 154, 255, 0.74) 58%, rgba(136, 99, 255, 0.9));
  box-shadow:
    0 34px 80px rgba(124, 77, 255, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.7);
  filter: saturate(1.05);
  z-index: 0;
  animation: floatOrb 11s ease-in-out infinite;
}

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

.hero-glow--back {
  top: 5rem;
  right: 3rem;
  width: 24rem;
  height: 24rem;
  background: radial-gradient(circle, rgba(160, 123, 255, 0.28), transparent 68%);
  animation: hazePulse 9s ease-in-out infinite;
}

.hero-glow--front {
  right: 8rem;
  bottom: 4rem;
  width: 16rem;
  height: 16rem;
  background: radial-gradient(circle, rgba(255, 214, 244, 0.3), transparent 70%);
  filter: blur(26px);
  animation: hazePulse 11s ease-in-out infinite 1s;
}

.hero-device-stack {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 44rem;
}

.hero-phone-card {
  position: relative;
  margin: 0;
}

.hero-phone-card::after {
  content: "";
  position: absolute;
  inset: auto 12% -1.4rem;
  height: 2rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111, 85, 223, 0.26), transparent 70%);
  filter: blur(16px);
  z-index: -1;
}

.hero-phone-card--front {
  position: absolute;
  right: 12%;
  bottom: 3rem;
  width: min(100%, 18.5rem);
  z-index: 2;
  transform: rotate(8deg);
  animation: phoneFrontFloat 8s ease-in-out infinite;
}

.hero-phone-card--back {
  position: absolute;
  left: 14%;
  top: 4rem;
  width: min(100%, 14.25rem);
  z-index: 1;
  opacity: 0.97;
  transform: rotate(-11deg);
  animation: phoneBackFloat 9s ease-in-out infinite;
}

.hero-phone-image {
  display: block;
  width: 100%;
  height: auto;
  filter:
    drop-shadow(0 34px 70px rgba(41, 30, 104, 0.18))
    drop-shadow(0 10px 26px rgba(124, 77, 255, 0.14));
}

.spark,
.hero-deco {
  position: absolute;
  pointer-events: none;
}

.spark {
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 0.2rem;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.7), rgba(234, 214, 255, 0.9));
  box-shadow: 0 0 18px rgba(124, 77, 255, 0.26);
  animation: sparkle 7s ease-in-out infinite;
}

.spark-1 {
  top: 13%;
  right: 11%;
}

.spark-2 {
  top: 26%;
  left: 9%;
  width: 0.35rem;
  height: 0.35rem;
}

.spark-3 {
  bottom: 20%;
  left: 14%;
}

.spark-4 {
  right: 5%;
  bottom: 28%;
  width: 0.35rem;
  height: 0.35rem;
  background: linear-gradient(135deg, rgba(255, 194, 158, 0.8), rgba(124, 77, 255, 0.7));
}

.hero-deco {
  z-index: 3;
  animation: sparkle 8s ease-in-out infinite;
}

.hero-deco--diamond {
  top: 16%;
  left: 14%;
  width: 0.9rem;
  height: 0.9rem;
  border-radius: 0.22rem;
  background: linear-gradient(135deg, rgba(124, 77, 255, 0.88), rgba(197, 179, 255, 0.95));
  transform: rotate(45deg);
  box-shadow: 0 0 24px rgba(124, 77, 255, 0.24);
}

.hero-deco--dot {
  top: 11%;
  right: 18%;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: rgba(255, 175, 202, 0.95);
  box-shadow: 0 0 20px rgba(255, 175, 202, 0.32);
  animation-delay: 0.8s;
}

.hero-deco--ring {
  bottom: 23%;
  left: 9%;
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 50%;
  border: 1px solid rgba(124, 77, 255, 0.28);
  background: radial-gradient(circle, rgba(255, 255, 255, 0.48), transparent 65%);
  animation-delay: 1.1s;
}

.hero-deco--pill {
  right: 6%;
  bottom: 16%;
  width: 3.6rem;
  height: 1rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(197, 179, 255, 0.88));
  box-shadow: 0 10px 24px rgba(124, 77, 255, 0.14);
  animation-delay: 1.6s;
}

.hero-deco--blur {
  z-index: 0;
  border-radius: 50%;
  filter: blur(18px);
  animation: hazePulse 10s ease-in-out infinite;
}

.hero-deco--blur-a {
  top: 34%;
  left: 4%;
  width: 8rem;
  height: 8rem;
  background: radial-gradient(circle, rgba(196, 175, 255, 0.28), transparent 70%);
}

.hero-deco--blur-b {
  right: 4%;
  top: 42%;
  width: 6rem;
  height: 6rem;
  background: radial-gradient(circle, rgba(255, 206, 239, 0.26), transparent 72%);
  animation-delay: 1.3s;
}

.hero-deco--blur-c {
  left: 24%;
  bottom: 17%;
  width: 5rem;
  height: 5rem;
  background: radial-gradient(circle, rgba(182, 157, 255, 0.22), transparent 70%);
  animation-delay: 2.1s;
}

.hero-deco--star {
  top: 30%;
  right: 7%;
  width: 0.72rem;
  height: 0.72rem;
  border-radius: 0.2rem;
  background: linear-gradient(135deg, rgba(255, 196, 160, 0.95), rgba(124, 77, 255, 0.72));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(255, 190, 160, 0.26);
  animation-delay: 0.55s;
}

.hero-deco--mini-dot {
  top: 23%;
  left: 24%;
  width: 0.38rem;
  height: 0.38rem;
  border-radius: 50%;
  background: rgba(160, 118, 255, 0.95);
  box-shadow: 0 0 16px rgba(124, 77, 255, 0.22);
  animation-delay: 1.4s;
}

.hero-deco--mini-dot-b {
  bottom: 29%;
  right: 22%;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: rgba(255, 183, 225, 0.92);
  box-shadow: 0 0 18px rgba(255, 183, 225, 0.24);
  animation-delay: 1.9s;
}

.hero-deco--spark-line {
  top: 18%;
  right: 30%;
  width: 1.8rem;
  height: 0.16rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(173, 144, 255, 0.95), rgba(255, 255, 255, 0.12));
  box-shadow: 0 0 14px rgba(124, 77, 255, 0.18);
  animation-delay: 0.9s;
}

.hero-deco--tiny-diamond {
  bottom: 16%;
  left: 20%;
  width: 0.54rem;
  height: 0.54rem;
  border-radius: 0.15rem;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(187, 164, 255, 0.95));
  transform: rotate(45deg);
  box-shadow: 0 0 18px rgba(187, 164, 255, 0.22);
  animation-delay: 2.4s;
}

.hero-deco--tiny-pill {
  top: 44%;
  left: 7%;
  width: 1rem;
  height: 0.42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(201, 187, 255, 0.94));
  box-shadow: 0 0 14px rgba(124, 77, 255, 0.16);
  animation-delay: 1.1s;
}

.spark-5,
.spark-6 {
  position: absolute;
}

.spark-5 {
  top: 18%;
  right: 12%;
}

.spark-6 {
  bottom: 24%;
  left: 10%;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-heading h2,
.cta-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4rem);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.benefit-card {
  padding: 2rem 1.4rem;
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(154, 131, 255, 0.09);
  border: 1px solid rgba(124, 77, 255, 0.08);
}

.benefit-icon,
.step-number {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.3rem;
  border-radius: 50%;
  color: var(--primary);
  font-size: 1.55rem;
  font-weight: 700;
  background:
    radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.72) 32%, transparent 35%),
    linear-gradient(180deg, rgba(167, 141, 255, 0.18), rgba(124, 77, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 30px rgba(154, 131, 255, 0.14);
}

.benefit-card h3,
.step-card h3 {
  margin: 0 0 0.65rem;
  font-size: 1.16rem;
  letter-spacing: -0.03em;
}

.benefit-card p,
.step-card p,
.cta-copy p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.65;
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}

.step-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: center;
  padding: 1.6rem;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 40px rgba(154, 131, 255, 0.08);
  border: 1px solid rgba(124, 77, 255, 0.08);
}

.step-number {
  margin: 0;
  width: 4.5rem;
  height: 4.5rem;
  font-size: 1.8rem;
}

.step-arrow {
  color: rgba(124, 77, 255, 0.68);
  font-size: 2.4rem;
  line-height: 1;
  transform: translateY(-0.2rem);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(18rem, 1fr);
  align-items: center;
  gap: 1.5rem;
  padding: 2rem;
}

.cta-copy p {
  max-width: 22rem;
  margin-top: 1.1rem;
  margin-bottom: 1.7rem;
  font-size: 1.15rem;
}

.cta-cloud-wrap {
  position: relative;
  justify-self: center;
  width: min(100%, 30rem);
  min-height: 27rem;
  display: grid;
  place-items: center;
}

.cta-cloud {
  position: relative;
  z-index: 2;
  width: min(100%, 25rem);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 36px 46px rgba(126, 96, 255, 0.18))
    drop-shadow(0 0 40px rgba(199, 183, 255, 0.34));
  animation: floatOrb 9s ease-in-out infinite reverse;
}

.cloud-float,
.cloud-haze {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
}

.cloud-float {
  background:
    radial-gradient(circle at 30% 28%, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.24) 36%, transparent 38%),
    linear-gradient(180deg, rgba(236, 230, 255, 0.96), rgba(183, 165, 255, 0.7));
  box-shadow:
    0 12px 24px rgba(148, 112, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  animation: cloudDrift 8s ease-in-out infinite;
}

.cloud-float--back {
  z-index: 1;
  opacity: 0.4;
  filter: blur(3px);
}

.cloud-float--front {
  z-index: 3;
}

.cloud-float--1 {
  top: 14%;
  right: 10%;
  width: 1rem;
  height: 1rem;
  animation-delay: 0.3s;
}

.cloud-float--2 {
  top: 28%;
  left: 8%;
  width: 0.7rem;
  height: 0.7rem;
  animation-delay: 1.2s;
}

.cloud-float--3 {
  right: 12%;
  bottom: 20%;
  width: 1.3rem;
  height: 0.72rem;
  border-radius: 999px;
  animation-delay: 0.8s;
}

.cloud-float--4 {
  left: 10%;
  bottom: 14%;
  width: 2.8rem;
  height: 1.35rem;
  animation-delay: 1.6s;
}

.cloud-float--5 {
  top: 8%;
  left: 18%;
  width: 2rem;
  height: 0.95rem;
  animation-delay: 0.5s;
}

.cloud-haze {
  background: radial-gradient(circle, rgba(171, 145, 255, 0.24), transparent 68%);
  filter: blur(18px);
  z-index: 0;
  animation: hazePulse 10s ease-in-out infinite;
}

.cloud-haze--1 {
  width: 11rem;
  height: 11rem;
  top: 2%;
  right: 6%;
}

.cloud-haze--2 {
  width: 9rem;
  height: 9rem;
  bottom: 8%;
  left: 8%;
  animation-delay: 2s;
}

.site-footer {
  padding: 1.25rem 0 2rem;
}

.legal-page {
  min-height: 100vh;
}

.legal-main {
  padding: 4rem 0 5rem;
}

.legal-shell {
  max-width: 54rem;
  margin: 0 auto;
}

.legal-card {
  padding: 2rem;
  border-radius: 2rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(124, 77, 255, 0.08);
  box-shadow: 0 24px 60px rgba(124, 77, 255, 0.08);
}

.legal-kicker {
  margin: 0 0 0.85rem;
  color: #8876c9;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.legal-title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: -0.06em;
  line-height: 0.94;
}

.legal-subtitle {
  max-width: 34rem;
  margin: 1.15rem 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.legal-content {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
}

.legal-section {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(124, 77, 255, 0.1);
}

.legal-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.legal-section h2 {
  margin: 0 0 0.7rem;
  font-size: 1.2rem;
  letter-spacing: -0.03em;
}

.legal-section p,
.legal-section li {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.legal-section p {
  margin: 0;
}

.legal-section ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-meta {
  margin-top: 2rem;
  color: #958fbe;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-links a,
.footer-copy {
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

.reveal-on-load,
.reveal-phone,
.reveal-on-scroll,
.reveal-arrow {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 700ms ease,
    transform 700ms var(--ease);
}

.reveal-phone {
  transform: translate3d(24px, 16px, 0);
}

.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.reveal-delay-1 {
  transition-delay: 120ms;
}

.reveal-delay-2 {
  transition-delay: 240ms;
}

@keyframes floatOrb {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2.6deg);
  }
}

@keyframes phoneFrontFloat {
  0%,
  100% {
    transform: rotate(8deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(6deg) translate3d(0.2rem, -0.7rem, 0);
  }
}

@keyframes phoneBackFloat {
  0%,
  100% {
    transform: rotate(-11deg) translate3d(0, 0, 0);
  }
  50% {
    transform: rotate(-9deg) translate3d(-0.25rem, -0.85rem, 0);
  }
}

@keyframes sparkle {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translateY(-10px) scale(1.18);
    opacity: 1;
  }
}

@keyframes cloudDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0.35rem, -0.5rem, 0);
  }
}

@keyframes hazePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.32;
  }
  50% {
    transform: scale(1.08);
    opacity: 0.5;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .cta-panel,
  .steps-row,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 2rem;
  }

  .hero-copy {
    text-align: center;
  }

  .hero-title,
  .hero-text {
    margin-inline: auto;
  }

  .hero-actions {
    display: grid;
    justify-items: center;
  }

  .hero-visual {
    min-height: auto;
    margin-top: 1rem;
  }

  .hero-device-stack {
    min-height: 38rem;
    width: min(100%, 32rem);
  }

  .hero-shape {
    right: 10%;
    top: 4.8rem;
    width: min(100%, 22rem);
  }

  .hero-phone-card--back {
    left: 10%;
    top: 2.8rem;
    width: min(100%, 12.5rem);
  }

  .hero-phone-card--front {
    right: 10%;
    bottom: 2rem;
    width: min(100%, 15.4rem);
  }

  .hero-glow--back {
    top: 3rem;
    right: 1rem;
    width: 18rem;
    height: 18rem;
  }

  .hero-glow--front {
    right: 4rem;
    bottom: 2rem;
    width: 11rem;
    height: 11rem;
  }

  .steps-row {
    gap: 1rem;
  }

  .step-arrow {
    display: none;
  }

  .cta-panel {
    padding: 1.6rem;
    text-align: center;
  }

  .cta-copy p {
    margin-inline: auto;
  }

  .cta-cloud-wrap {
    min-height: 22rem;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 3.5rem 0;
  }

  .brand-name {
    font-size: 1.45rem;
  }

  .header-inner {
    align-items: flex-start;
  }

  .store-button--small {
    padding: 0.8rem 1rem;
  }

  .store-button__title {
    font-size: 1rem;
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(3rem, 12vw, 4.4rem);
  }

  .hero-note {
    font-size: 0.95rem;
  }

  .hero-device-stack {
    min-height: 28rem;
    width: min(100%, 22rem);
  }

  .hero-shape {
    right: 12%;
    top: 4.5rem;
    width: min(100%, 15rem);
  }

  .hero-phone-card--back {
    left: 4%;
    top: 1.7rem;
    width: min(100%, 8.8rem);
  }

  .hero-phone-card--front {
    right: 4%;
    bottom: 1.2rem;
    width: min(100%, 11.3rem);
  }

  .hero-deco--ring,
  .hero-deco--pill,
  .hero-deco--blur-b,
  .hero-deco--spark-line,
  .hero-deco--tiny-pill {
    display: none;
  }

  .cta-cloud-wrap {
    width: min(100%, 22rem);
    min-height: 18rem;
  }

  .cta-cloud {
    width: min(100%, 19rem);
  }

  .benefit-card,
  .step-card {
    padding: 1.4rem 1.1rem;
  }

  .legal-main {
    padding: 3rem 0 4rem;
  }

  .legal-card {
    padding: 1.4rem;
    border-radius: 1.5rem;
  }
}

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

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

  .reveal-on-load,
  .reveal-phone,
  .reveal-on-scroll,
  .reveal-arrow {
    opacity: 1;
    transform: none;
  }
}
