:root {
  --gold: var(--color-moss);
  --lavender: var(--color-marigold);
  --raised: var(--color-stone);
  --line: color-mix(in srgb, var(--lavender) 32%, transparent);
  --soft-line: color-mix(in srgb, var(--color-text) 12%, transparent);
  --page: min(1220px, calc(100vw - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-bg); overflow-x: clip; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 85% 4%, color-mix(in srgb, var(--lavender) 16%, transparent), transparent 28rem),
    linear-gradient(160deg, var(--color-bg), color-mix(in srgb, var(--color-bg) 83%, black));
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: var(--type-2);
  line-height: 1.5;
  min-width: 320px;
  overflow-x: clip;
}

button, a { font: inherit; }
a { color: inherit; }
h1, h2, h3, p, ul { margin: 0; }
h1, h2, h3 { text-wrap: balance; }
h1, h2 { letter-spacing: -0.045em; }
em { color: var(--gold); font-style: normal; }

.topbar {
  align-items: center;
  backdrop-filter: blur(18px);
  background: color-mix(in srgb, var(--color-bg) 78%, transparent);
  border: 1px solid var(--soft-line);
  border-radius: 18px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  left: 50%;
  max-width: 1160px;
  padding: 10px 12px 10px 16px;
  position: fixed;
  top: 16px;
  transform: translateX(-50%);
  width: calc(100vw - 32px);
  z-index: 20;
}

.brand {
  align-items: center;
  display: inline-flex;
  font-size: var(--type-3);
  font-weight: 700;
  gap: 8px;
  letter-spacing: -0.04em;
  text-decoration: none;
  width: max-content;
}

.brand__owl { height: 30px; object-fit: contain; width: 30px; }
.topbar nav { display: flex; gap: 34px; }
.topbar nav a {
  color: var(--color-text-muted);
  font-size: var(--type-1);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--motion-duration) var(--motion-easing);
}
.topbar nav a:hover { color: var(--color-text); }

.nav-action {
  background: var(--color-text);
  border-radius: 12px;
  color: var(--color-bg);
  font-size: var(--type-1);
  font-weight: 700;
  justify-self: end;
  padding: 9px 14px;
  text-decoration: none;
}

.hero {
  align-items: center;
  display: grid;
  gap: 68px;
  grid-template-columns: minmax(0, 0.9fr) minmax(420px, 1.1fr);
  margin: 0 auto;
  min-height: 920px;
  padding: 148px 0 80px;
  position: relative;
  width: var(--page);
}

.orb {
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
}
.orb--one {
  background: var(--lavender);
  height: 280px;
  right: -150px;
  top: 120px;
  width: 280px;
}
.orb--two {
  background: var(--gold);
  bottom: 80px;
  height: 170px;
  left: -130px;
  opacity: 0.1;
  width: 170px;
}

.eyebrow, .app-kicker, .step {
  color: var(--lavender);
  font-family: var(--font-mono);
  font-size: var(--type-0);
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(3.75rem, 6.6vw, 6.8rem);
  font-weight: 700;
  line-height: 0.94;
  margin-top: 20px;
  max-width: 9ch;
}

.hero__lede {
  color: var(--color-text-muted);
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.52;
  margin-top: 28px;
  max-width: 34rem;
}

.hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 36px;
}

.cta {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 16px;
  color: var(--color-bg);
  display: inline-flex;
  font-weight: 700;
  gap: 38px;
  justify-content: space-between;
  min-height: 52px;
  padding: 14px 18px;
  text-decoration: none;
  transition: transform var(--motion-duration) var(--motion-easing), background var(--motion-duration) var(--motion-easing);
}
.cta:hover { background: color-mix(in srgb, var(--gold) 86%, white); transform: translateY(-2px); }
.cta:active { transform: translateY(0); }
.cta--wide { display: flex; width: 100%; }

.quiet-link {
  color: var(--color-text);
  font-size: var(--type-1);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: var(--lavender);
  text-underline-offset: 6px;
}
.quiet-link--light { display: inline-block; margin-top: 28px; }
.fine-print { color: var(--color-text-muted); font-size: var(--type-0); margin-top: 22px; }

.hero__stage {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 690px;
  perspective: 1200px;
  position: relative;
}

.phone {
  background: linear-gradient(155deg, var(--raised), var(--color-surface));
  border: 1px solid var(--line);
  border-radius: 36px;
  box-shadow: 0 28px 90px color-mix(in srgb, black 36%, transparent);
  color: var(--color-text);
  display: flex;
  flex-direction: column;
  gap: 13px;
  min-height: 610px;
  overflow: hidden;
  padding: 17px;
  position: relative;
  width: 320px;
}

.hero__stage > .phone {
  animation: float 6s ease-in-out infinite;
  min-height: 650px;
  transform: rotateY(-7deg) rotateX(2deg);
  width: 344px;
}

.phone__bar {
  color: var(--color-text-muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: 9px;
  justify-content: space-between;
  letter-spacing: 0.06em;
  padding: 0 4px;
}

.app-head { align-items: center; display: flex; justify-content: space-between; }
.app-head h3, .phone > h3 {
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.08;
  margin-top: 3px;
}
.phone > h3 { font-size: 31px; }
.app-kicker { font-size: 9px; }
.avatar {
  align-items: center;
  background: var(--lavender);
  border-radius: 999px;
  color: var(--color-bg);
  display: flex;
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 600;
  height: 36px;
  justify-content: center;
  width: 36px;
}

.today-photo {
  background:
    radial-gradient(circle at 50% 45%, color-mix(in srgb, var(--gold) 24%, transparent), transparent 48%),
    color-mix(in srgb, var(--color-bg) 52%, var(--raised));
  border-radius: 24px;
  display: flex;
  flex: 1;
  min-height: 258px;
  overflow: hidden;
  position: relative;
}
.today-photo::before {
  border: 1px solid color-mix(in srgb, var(--gold) 24%, transparent);
  border-radius: 50%;
  content: '';
  height: 210px;
  left: 50%;
  position: absolute;
  top: 44%;
  transform: translate(-50%, -50%);
  width: 210px;
}
.phone-owl {
  align-self: center;
  height: 205px;
  margin: auto;
  object-fit: contain;
  position: relative;
  width: 205px;
  z-index: 1;
}
.today-photo > p {
  align-items: flex-end;
  background: linear-gradient(transparent, color-mix(in srgb, var(--color-bg) 92%, transparent));
  bottom: 0;
  display: flex;
  justify-content: space-between;
  left: 0;
  padding: 42px 16px 14px;
  position: absolute;
  right: 0;
  z-index: 2;
}
.today-photo p span { font-size: var(--type-1); font-weight: 600; }
.today-photo p b { color: var(--gold); font-family: var(--font-mono); font-size: var(--type-1); }

.week { display: grid; gap: 6px; grid-template-columns: repeat(7, 1fr); }
.day {
  align-items: center;
  color: var(--color-text-muted);
  display: flex;
  flex-direction: column;
  font-family: var(--font-mono);
  font-size: 8px;
  gap: 5px;
}
.day i { background: var(--lavender); border-radius: 999px; height: 24px; opacity: 0.65; width: 24px; }
.day--now { color: var(--gold); }
.day--now i { background: var(--gold); box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 18%, transparent); opacity: 1; }
.day--quiet i { background: transparent; border: 1px solid var(--line); }

.app-card {
  background: color-mix(in srgb, var(--raised) 72%, transparent);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 13px;
}
.app-card__top { align-items: center; display: flex; justify-content: space-between; }
.app-card__top span { font-size: var(--type-1); font-weight: 600; }
.app-card__top small { color: var(--color-text-muted); font-size: 8px; }
.metrics { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 11px; }
.metrics p { border-right: 1px solid var(--soft-line); display: grid; gap: 2px; padding-left: 10px; }
.metrics p:first-child { padding-left: 0; }
.metrics p:last-child { border: 0; }
.metrics b { color: var(--gold); font-family: var(--font-mono); font-size: var(--type-1); font-weight: 600; }
.metrics span { color: var(--color-text-muted); font-size: 8px; }

.tab-preview {
  align-items: center;
  border-top: 1px solid var(--soft-line);
  color: var(--color-text-muted);
  display: grid;
  font-size: 8px;
  gap: 2px;
  grid-template-columns: repeat(5, 1fr);
  margin: auto -17px -17px;
  min-height: 46px;
  padding: 9px 8px 8px;
  text-align: center;
}
.tab-preview b { color: var(--gold); font-weight: 600; }

.signal-card {
  align-items: center;
  backdrop-filter: blur(12px);
  background: color-mix(in srgb, var(--raised) 86%, transparent);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 14px 36px color-mix(in srgb, black 22%, transparent);
  display: flex;
  gap: 11px;
  padding: 12px 15px;
  position: absolute;
  z-index: 2;
}
.signal-card > span {
  align-items: center;
  background: color-mix(in srgb, var(--gold) 18%, transparent);
  border-radius: 11px;
  color: var(--gold);
  display: flex;
  height: 34px;
  justify-content: center;
  width: 34px;
}
.signal-card p { display: grid; }
.signal-card b { font-size: var(--type-0); }
.signal-card small { color: var(--color-text-muted); font-family: var(--font-mono); font-size: 8px; }
.signal-card--top { right: 4%; top: 20%; }
.signal-card--bottom { bottom: 19%; left: 0; }

.proof {
  border-bottom: 1px solid var(--soft-line);
  border-top: 1px solid var(--soft-line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 0 auto;
  width: var(--page);
}
.proof p { display: grid; gap: 7px; padding: 27px 34px; }
.proof p + p { border-left: 1px solid var(--soft-line); }
.proof b { color: var(--gold); font-family: var(--font-mono); font-size: 9px; letter-spacing: 0.12em; }
.proof span { color: var(--color-text-muted); font-size: var(--type-1); }

.product { padding: 150px 0 170px; }
.section-head { margin: 0 auto; max-width: 760px; text-align: center; width: calc(100vw - 48px); }
.section-head h2, .principles h2, .pricing h2 {
  font-size: clamp(2.8rem, 5.4vw, 5.4rem);
  font-weight: 600;
  line-height: 1;
  margin-top: 18px;
}
.section-head > p:last-child {
  color: var(--color-text-muted);
  font-size: var(--type-3);
  margin: 27px auto 0;
  max-width: 610px;
}

.screen-gallery {
  display: grid;
  gap: 44px;
  grid-template-columns: repeat(4, 320px);
  margin: 88px auto 0;
  overflow-x: auto;
  padding: 32px max(32px, calc((100vw - 1400px) / 2)) 80px;
  scrollbar-color: var(--lavender) transparent;
}
.gallery-item { min-width: 0; }
.gallery-item--lift { transform: translateY(46px); }
.gallery-item > p {
  color: var(--color-text-muted);
  display: flex;
  font-family: var(--font-mono);
  font-size: var(--type-0);
  gap: 12px;
  margin-bottom: 15px;
}
.gallery-item > p span { color: var(--gold); }
.screen-gallery .phone { box-shadow: 0 26px 60px color-mix(in srgb, black 26%, transparent); }

.timer {
  align-items: center;
  background: var(--gold);
  border: 0;
  border-radius: 18px;
  color: var(--color-bg);
  display: grid;
  gap: 10px;
  grid-template-columns: 42px 1fr auto;
  margin-top: 9px;
  padding: 14px;
  text-align: left;
}
.timer__icon {
  align-items: center;
  background: color-mix(in srgb, white 34%, transparent);
  border-radius: 13px;
  display: flex;
  font-size: 22px;
  height: 42px;
  justify-content: center;
}
.timer > span:nth-child(2) { display: grid; }
.timer small { font-family: var(--font-mono); font-size: 8px; letter-spacing: 0.1em; }
.timer b { font-size: var(--type-2); }
.timer i { font-style: normal; }

.quick-grid { display: grid; gap: 10px; grid-template-columns: 1fr 1fr; }
.quick-grid > div {
  background: var(--raised);
  border: 1px solid var(--line);
  border-radius: 18px;
  color: var(--color-text);
  display: grid;
  gap: 3px;
  padding: 15px;
  text-align: left;
}
.quick-grid > div > span { color: var(--lavender); font-size: 20px; }
.quick-grid b { font-size: var(--type-1); }
.quick-grid small { color: var(--color-text-muted); font-family: var(--font-mono); font-size: 8px; }

.timeline { background: color-mix(in srgb, var(--color-bg) 40%, transparent); border-radius: 20px; flex: 1; padding: 8px 14px; }
.timeline p { align-items: center; display: grid; gap: 9px; grid-template-columns: 9px 1fr auto; padding: 14px 0; }
.timeline p + p { border-top: 1px solid var(--soft-line); }
.timeline__dot { background: var(--gold); border-radius: 99px; height: 8px; width: 8px; }
.timeline__dot--lavender { background: var(--lavender); }
.timeline b { font-size: var(--type-1); }
.timeline small { color: var(--color-text-muted); font-family: var(--font-mono); font-size: 8px; }

.flow-card {
  background: linear-gradient(160deg, var(--raised), var(--color-surface));
  border: 1px solid var(--line);
  border-radius: 30px;
  box-shadow: 0 26px 60px color-mix(in srgb, black 26%, transparent);
  min-height: 610px;
  overflow: hidden;
  padding: 25px 22px;
  position: relative;
  width: 320px;
}
.flow-card h3 { font-size: 34px; font-weight: 600; letter-spacing: -0.045em; line-height: 1.02; margin-top: 8px; }
.flow-card__character { height: 142px; margin: 2px auto -4px; text-align: center; }
.flow-owl { height: 142px; object-fit: contain; width: 142px; }
.choice-list { display: grid; gap: 9px; margin-top: 22px; }
.choice {
  align-items: center;
  background: color-mix(in srgb, var(--color-bg) 44%, transparent);
  border: 1px solid var(--soft-line);
  border-radius: 15px;
  display: grid;
  font-size: var(--type-0);
  gap: 9px;
  grid-template-columns: 24px 1fr;
  line-height: 1.35;
  padding: 12px;
}
.choice i { color: var(--color-text-muted); font-style: normal; }
.choice b { font-weight: 500; }
.choice--active { background: color-mix(in srgb, var(--gold) 13%, transparent); border-color: var(--gold); }
.choice--active i { color: var(--gold); }
.button-preview {
  background: var(--gold);
  border: 0;
  border-radius: 15px;
  color: var(--color-bg);
  display: flex;
  font-weight: 700;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 15px;
  width: 100%;
}

.flow-card--payment { display: flex; flex-direction: column; }
.moon-mark {
  align-items: center;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 20%, transparent), transparent 66%);
  display: flex;
  height: 126px;
  justify-content: center;
  margin: 2px auto -5px;
  width: 160px;
}
.moon-owl { height: 132px; object-fit: contain; width: 132px; }
.flow-lede { color: var(--color-text-muted); font-size: var(--type-1); line-height: 1.45; margin: 13px 0 14px; }
.plan {
  align-items: center;
  border: 1px solid var(--soft-line);
  border-radius: 15px;
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding: 11px 12px;
}
.plan > span { display: grid; }
.plan b { font-size: var(--type-1); }
.plan small { color: var(--color-text-muted); font-size: 8px; }
.plan strong { font-family: var(--font-mono); font-size: var(--type-2); }
.plan strong small { font-family: var(--font-display); font-weight: 400; }
.plan--active { background: color-mix(in srgb, var(--gold) 11%, transparent); border-color: var(--gold); }
.purchase-note { color: var(--color-text-muted); font-size: 8px; margin-top: 9px; text-align: center; }

.principles {
  align-items: start;
  border-top: 1px solid var(--soft-line);
  display: grid;
  gap: 80px;
  grid-template-columns: 0.9fr 1.1fr;
  margin: 0 auto;
  padding: 150px 0;
  width: var(--page);
}
.principles__intro { position: sticky; top: 140px; }
.principles__owl { display: block; height: 190px; margin: 42px 0 0 auto; object-fit: contain; width: 190px; }
.feature-list { border-top: 1px solid var(--soft-line); }
.feature-row {
  align-items: baseline;
  border-bottom: 1px solid var(--soft-line);
  display: grid;
  gap: 24px;
  grid-template-columns: 40px 0.75fr 1fr;
  padding: 30px 0;
}
.feature-row > span { color: var(--gold); font-family: var(--font-mono); font-size: var(--type-0); }
.feature-row h3 { font-size: var(--type-3); font-weight: 600; }
.feature-row p { color: var(--color-text-muted); font-size: var(--type-1); }

.privacy-panel {
  background:
    radial-gradient(circle at 80% 0, color-mix(in srgb, var(--gold) 20%, transparent), transparent 34rem),
    var(--color-text);
  border-radius: 38px;
  color: var(--color-bg);
  margin: 60px auto 0;
  max-width: 1320px;
  padding: 90px clamp(28px, 7vw, 100px);
  width: calc(100vw - 32px);
}
.privacy-panel .eyebrow { color: color-mix(in srgb, var(--color-bg) 58%, var(--lavender)); }
.privacy-panel h2 { font-size: clamp(3rem, 6.4vw, 6.5rem); font-weight: 600; letter-spacing: -0.055em; line-height: 0.95; max-width: 11ch; }
.privacy-panel > p:nth-of-type(2) { color: color-mix(in srgb, var(--color-bg) 72%, transparent); font-size: var(--type-3); margin-top: 28px; max-width: 52ch; }
.privacy-points { border-top: 1px solid color-mix(in srgb, var(--color-bg) 18%, transparent); display: grid; gap: 16px; grid-template-columns: repeat(3, 1fr); margin-top: 64px; padding-top: 26px; }
.privacy-points span { font-family: var(--font-mono); font-size: var(--type-0); }

.pricing {
  align-items: center;
  display: grid;
  gap: 120px;
  grid-template-columns: 1fr 460px;
  margin: 0 auto;
  padding: 150px 0;
  width: var(--page);
}
.pricing__copy > p:nth-of-type(2) { color: var(--color-text-muted); font-size: var(--type-3); margin-top: 24px; max-width: 38rem; }
.price-card {
  background: linear-gradient(160deg, var(--raised), var(--color-surface));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 70px color-mix(in srgb, black 20%, transparent);
  padding: 28px;
}
.price-card header { align-items: center; display: flex; justify-content: space-between; }
.price-card header span { font-size: var(--type-3); font-weight: 600; }
.price-card header b { background: color-mix(in srgb, var(--gold) 14%, transparent); border-radius: 999px; color: var(--gold); font-size: var(--type-0); padding: 7px 10px; }
.price { align-items: baseline; display: flex; margin-top: 34px; }
.price strong { color: var(--color-text); font-family: var(--font-mono); font-size: 62px; font-weight: 500; letter-spacing: -0.06em; }
.price span, .price-alt { color: var(--color-text-muted); font-size: var(--type-1); }
.price-card ul { list-style: none; margin: 24px 0; padding: 0; }
.price-card li { border-top: 1px solid var(--soft-line); color: var(--color-text-muted); font-size: var(--type-1); padding: 12px 0 12px 24px; position: relative; }
.price-card li::before { color: var(--gold); content: '✓'; left: 1px; position: absolute; }
.price-card > small { color: var(--color-text-muted); display: block; font-size: 9px; line-height: 1.4; margin-top: 12px; text-align: center; }

.footer {
  align-items: center;
  border-top: 1px solid var(--soft-line);
  color: var(--color-text-muted);
  display: grid;
  font-size: var(--type-0);
  gap: 24px;
  grid-template-columns: 1fr 2fr 1fr;
  margin: 0 auto;
  padding: 34px 0 46px;
  width: var(--page);
}
.footer p { text-align: center; }
.footer > a:last-child { justify-self: end; }

.share-page {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding: 32px 20px;
}
.card {
  background: linear-gradient(160deg, var(--raised), var(--color-surface));
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: 0 28px 80px color-mix(in srgb, black 30%, transparent);
  overflow: hidden;
  padding: 18px;
  text-align: center;
  width: min(420px, 100%);
}
.card__frame {
  align-items: center;
  background: radial-gradient(circle, color-mix(in srgb, var(--gold) 20%, transparent), transparent), var(--color-bg);
  border-radius: 20px;
  display: flex;
  justify-content: center;
  min-height: 330px;
}
.card__photo-placeholder { color: var(--gold); font-size: var(--type-3); font-weight: 700; }
.card__badge { color: var(--gold); font-family: var(--font-mono); font-size: var(--type-0); margin-top: 22px; text-transform: uppercase; }
.card__name { font-size: var(--type-4); margin-top: 8px; }
.card__body { color: var(--color-text-muted); font-size: var(--type-1); margin: 10px auto 0; max-width: 32ch; }
.card__meta { align-items: baseline; display: flex; gap: 18px; justify-content: center; margin-top: 16px; }
.card__age { color: var(--gold); font-family: var(--font-mono); font-size: var(--type-3); }
.card__date { color: var(--color-text-muted); font-family: var(--font-mono); font-size: var(--type-0); }
.card .cta { margin-top: 22px; }

a:focus-visible, button:focus-visible {
  outline: 3px solid var(--color-text);
  outline-offset: 4px;
}

@keyframes float {
  0%, 100% { transform: rotateY(-7deg) rotateX(2deg) translateY(0); }
  50% { transform: rotateY(-5deg) rotateX(1deg) translateY(-10px); }
}

@media (max-width: 980px) {
  .topbar { grid-template-columns: 1fr 1fr; }
  .topbar nav { display: none; }
  .hero { gap: 34px; grid-template-columns: 1fr 0.9fr; }
  .hero h1 { font-size: clamp(3.3rem, 7vw, 5rem); }
  .hero__stage > .phone { transform: none; width: 320px; }
  .signal-card { display: none; }
  .principles { gap: 50px; grid-template-columns: 1fr; }
  .principles__intro { position: static; }
  .pricing { gap: 50px; grid-template-columns: 1fr 420px; }
}

@media (max-width: 760px) {
  :root { --page: calc(100vw - 32px); }
  .topbar { top: 8px; }
  .nav-action { font-size: 11px; }
  .hero { display: block; min-height: 0; padding-top: 132px; }
  .hero h1 { font-size: clamp(3.4rem, 16vw, 5.3rem); }
  .hero__stage { margin-top: 60px; min-height: 660px; }
  .hero__stage > .phone { animation: none; }
  .proof { grid-template-columns: 1fr; }
  .proof p { padding: 20px 4px; }
  .proof p + p { border-left: 0; border-top: 1px solid var(--soft-line); }
  .product { padding: 110px 0; }
  .screen-gallery { grid-template-columns: repeat(4, 290px); }
  .screen-gallery .phone, .screen-gallery .flow-card { width: 290px; }
  .gallery-item--lift { transform: none; }
  .principles { padding: 100px 0; }
  .feature-row { gap: 12px; grid-template-columns: 32px 1fr; }
  .feature-row p { grid-column: 2; }
  .privacy-panel { border-radius: 26px; padding-bottom: 60px; padding-top: 60px; }
  .privacy-points { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; padding: 100px 0; }
  .price-card { width: 100%; }
  .footer { grid-template-columns: 1fr; text-align: center; }
  .footer .brand, .footer > a:last-child { justify-self: center; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__stage > .phone { animation: none; }
  .cta { transition: none; }
}
