/* ==========================================================================
   popzybaby.com — styles
   Palette mirrors the app's violet brand (ContractionTimer src/theme/theme.ts,
   BRANDS.violet): lavender-white ground, violet primary, ink-violet text, and
   the violet night of the dark theme for the dark bands. One colour family;
   red is used only for the urgent callout, as the app keeps it for danger.
   Mobile-first. No frameworks.
   ========================================================================== */

@font-face {
  font-family: "Nunito";
  font-style: normal;
  font-weight: 200 1000;
  font-display: swap;
  src: url("/assets/fonts/nunito-latin.woff2") format("woff2");
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg-1: #fbf8ff;
  --bg-2: #f0e9ff;
  --bg: #f5f0ff;
  --white: #ffffff;
  --surface-alt: #f3eeff;
  --selected: #ede6ff;
  --primary: #5b3fd6;
  --primary-deep: #4a31b8;
  --accent: #7c5cf2;
  --accent-text: #6a4be6;
  --accent-soft: rgba(124, 92, 242, 0.12);
  --on-night-accent: #c9b6ff;
  --ink: #241a3f;
  --text: #241a3f;
  --muted: #7e7597;
  --muted-2: #a39bb8;
  --line: rgba(60, 40, 140, 0.09);
  --night-1: #2b1f57;
  --night-2: #1a1339;
  --night-3: #100b24;
  --danger: #d93a4a;
  --danger-soft: #fdecee;
  --bubble: radial-gradient(circle at 34% 30%, #f5edff 0%, #b99bff 42%, #7c5cf2 100%);
  --radius: 20px;
  --radius-lg: 28px;
  --shadow-card: 0 10px 30px -12px rgba(91, 69, 168, 0.22);
  --font: "Nunito", ui-rounded, "SF Pro Rounded", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --max: 1120px;
  --gutter: 20px;
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: inherit; }

h1, h2, h3, h4 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.01em;
  font-weight: 800;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
  border-radius: 6px;
}

.container {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

.section { padding: 64px 0; }

.section__head {
  max-width: 660px;
  margin: 0 auto 36px;
  text-align: center;
}

.section__head h2 {
  font-size: clamp(28px, 4.5vw, 40px);
  margin-bottom: 12px;
  text-wrap: balance;
}

.section__head p {
  color: var(--muted);
  font-size: 17px;
}

.section__cta {
  text-align: center;
  margin-top: 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 12px;
}

.muted { color: var(--muted-2); }

/* The brand sphere, the app's one recurring object. */
.bubble,
.brand__bubble {
  display: inline-block;
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--bubble);
  box-shadow: 0 6px 14px -6px rgba(74, 49, 184, 0.7), inset -2px -3px 6px rgba(74, 49, 184, 0.25);
}

.bubble { display: block; width: 72px; height: 72px; }
.bubble--lg { width: 96px; height: 96px; margin: 0 auto 22px; animation: breathe 10s ease-in-out infinite; }

@keyframes breathe {
  0%, 100% { transform: scale(0.86); }
  40% { transform: scale(1.06); }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 15px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
  white-space: nowrap;
}

.btn:active { transform: scale(0.97); }

.btn--violet {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 24px -10px rgba(74, 49, 184, 0.7);
}

.btn--violet:hover { background: var(--primary-deep); }

.btn--ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn--ghost:hover { background: var(--selected); }

/* Store badges */
.store-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.store-btn {
  display: inline-block;
  border-radius: 9px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.store-btn img { width: 160px; height: 48px; }

a.store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px -12px rgba(0, 0, 0, 0.5);
}

a.store-btn:active { transform: scale(0.97); }

.store-btn--soon img { opacity: 0.4; filter: grayscale(1); }

.store__rating--soon {
  max-width: 160px;
  white-space: normal;
  text-align: center;
  line-height: 1.3;
}

.store {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.store__rating {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  white-space: nowrap;
}

.store__rating b { color: var(--ink); font-weight: 800; }
.store__rating .star { color: #ffb02e; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 248, 255, 0.84);
  backdrop-filter: saturate(160%) blur(12px);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  border-bottom: 1px solid var(--line);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  font-weight: 900;
  font-size: 23px;
  letter-spacing: -0.02em;
  color: var(--primary);
}

.nav {
  display: none;
  gap: 26px;
  font-weight: 700;
  font-size: 15px;
}

.nav a {
  text-decoration: none;
  color: var(--muted);
}

.nav a:hover,
.nav a[aria-current] { color: var(--primary); }

.header .btn { padding: 10px 18px; font-size: 14px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: 40px 0 56px;
  background:
    radial-gradient(70% 60% at 85% 0%, rgba(124, 92, 242, 0.16), transparent 65%),
    radial-gradient(50% 40% at 0% 100%, rgba(124, 92, 242, 0.10), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 100%);
}

.hero__grid {
  display: grid;
  gap: 40px;
  align-items: center;
}

.hero__copy { text-align: center; }

.hero__icon {
  width: 88px;
  height: 88px;
  border-radius: 22px;
  margin: 0 auto 20px;
  box-shadow: 0 18px 36px -16px rgba(74, 49, 184, 0.55);
}

.hero h1 {
  font-size: clamp(34px, 6.2vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.04;
  font-weight: 900;
}

.hero h1 .accent { color: var(--primary); display: inline-block; }

.hero__lead {
  margin-top: 16px;
  font-size: clamp(19px, 2.6vw, 23px);
  font-weight: 800;
  color: var(--ink);
}

.hero__sub {
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 17px;
  max-width: 520px;
}

.hero__specific {
  margin: 10px auto 0;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--accent-text);
  max-width: 520px;
}

.hero .store-buttons {
  justify-content: center;
  margin-top: 28px;
}

.fineprint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--muted-2);
}

/* Visual: the wide store photo, the timer screen in a phone, and a rule card. */
.hero__visual {
  position: relative;
  width: min(100%, 460px);
  margin: 0 auto;
  aspect-ratio: 1 / 0.92;
}

.hero__photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 1024 / 500;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(43, 31, 87, 0.45);
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__phone {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 34%;
}

.hero__card {
  position: absolute;
  left: 0;
  bottom: 9%;
  width: 56%;
  display: grid;
  gap: 8px;
  padding: 14px 16px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-card);
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
}

.hero__card-title {
  display: flex;
  align-items: center;
  gap: 8px;
  line-height: 1.25;
}

.hero__dot {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0 rgba(124, 92, 242, 0.5);
  animation: pulse 2s ease-out infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(124, 92, 242, 0.5); }
  80%, 100% { box-shadow: 0 0 0 10px rgba(124, 92, 242, 0); }
}

.hero__bar {
  display: block;
  height: 7px;
  border-radius: 999px;
  background: rgba(91, 63, 214, 0.12);
  overflow: hidden;
}

.hero__bar span {
  display: block;
  height: 100%;
  width: 100%;
  border-radius: inherit;
  background: var(--accent);
  animation: fill 3.2s ease-out 0.4s both;
}

@keyframes fill { from { width: 6%; } to { width: 100%; } }

.hero__card-meta {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--muted);
}

/* ---------- Phone frame ---------- */
.phone {
  position: relative;
  width: 100%;
  aspect-ratio: 828 / 1800;
  background: linear-gradient(160deg, #3b3848 0%, #1a1824 35%, #0e0d14 100%);
  border-radius: 15% / 6.9%;
  padding: 3%;
  box-shadow:
    0 40px 70px -30px rgba(16, 11, 36, 0.6),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14);
}

.phone img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  border-radius: 13% / 6%;
  background: var(--bg);
}

/* ---------- How it works ---------- */
.steps {
  display: grid;
  gap: 20px;
}

.step {
  position: relative;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 24px;
  box-shadow: var(--shadow-card);
}

.step__icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--primary);
}

.step__icon svg { width: 34px; height: 34px; }

.step__num {
  position: absolute;
  top: 18px;
  left: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--bubble);
  color: #fff;
  font-weight: 900;
  font-size: 15px;
  text-shadow: 0 1px 2px rgba(58, 32, 140, 0.35);
  box-shadow: 0 8px 18px -8px rgba(74, 49, 184, 0.8);
}

.step h3 { font-size: 21px; margin-bottom: 8px; }
.step p { color: var(--muted); font-size: 15.5px; }

/* ---------- 5-1-1 rule band ---------- */
.rule-band {
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}

.rule-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 760px;
  margin: 0 auto;
}

.rule-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 22px 10px 20px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.rule-tile__n {
  font-size: clamp(54px, 11vw, 88px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.04em;
  background: linear-gradient(160deg, #b99bff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.rule-tile__unit {
  margin-top: 4px;
  font-weight: 900;
  font-size: 17px;
}

.rule-tile__label {
  margin-top: 2px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.3;
}

.rule-note {
  max-width: 660px;
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-size: 16px;
}

/* ---------- Night bands (screenshots, final CTA) ---------- */
.night {
  position: relative;
  color: #fff;
  background:
    radial-gradient(70% 55% at 50% 0%, rgba(124, 92, 242, 0.35), transparent 60%),
    linear-gradient(180deg, var(--night-1) 0%, var(--night-2) 55%, var(--night-3) 100%);
  overflow: hidden;
}

.night .section__head p { color: rgba(255, 255, 255, 0.72); }
.night .eyebrow { color: var(--on-night-accent); }

.shots {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding: 8px var(--gutter) 24px;
  margin: 0 calc(-1 * var(--gutter));
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

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

.shot {
  flex: 0 0 auto;
  width: 224px;
  scroll-snap-align: center;
  margin: 0;
  text-align: center;
}

.shot figcaption {
  margin-top: 14px;
  font-weight: 800;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.9);
}

.cta { text-align: center; }
.cta h2 { font-size: clamp(26px, 4vw, 36px); margin-bottom: 24px; }
.cta .store-buttons { justify-content: center; }
.night .store__rating { color: rgba(255, 255, 255, 0.7); }
.night .store__rating b { color: #fff; }
.night .store-btn--soon img { opacity: 0.5; }

/* ---------- Features ---------- */
.feature-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: 1fr;
}

.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-card);
}

.feature__icon {
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
}

.feature__icon svg { width: 26px; height: 26px; }
.feature h3 { font-size: 18px; margin-bottom: 4px; }
.feature p { color: var(--muted); font-size: 15px; }

/* ---------- Positions ---------- */
.soft { background: var(--bg-2); }

.pos-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.pos {
  margin: 0;
}

.pos img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
}

.pos figcaption {
  margin-top: 10px;
  font-weight: 800;
  font-size: 15px;
  color: var(--ink);
}

.pos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 8px 0 16px;
}

.pos-grid .pos figcaption { font-size: 13.5px; margin-top: 6px; }
.pos-grid .pos img { border: 1px solid var(--line); box-shadow: none; }

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 12px;
}

.faq {
  background: var(--white);
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  border: 1px solid transparent;
}

.faq[open] { border-color: rgba(124, 92, 242, 0.35); }

.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 56px 18px 20px;
  font-weight: 800;
  font-size: 17px;
  position: relative;
  border-radius: 18px;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 20px;
  top: 50%;
  width: 12px;
  height: 12px;
  border-right: 2.5px solid var(--primary);
  border-bottom: 2.5px solid var(--primary);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq[open] summary::after { transform: translateY(-30%) rotate(-135deg); }

.faq__body {
  padding: 0 20px 20px;
  color: var(--muted);
  font-size: 16px;
}

.readmore {
  color: var(--accent-text);
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.readmore:hover { text-decoration: underline; }

/* ---------- Disclaimer + urgent callout ---------- */
.disclaimer {
  max-width: 760px;
  margin: 40px auto 0;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px dashed rgba(124, 92, 242, 0.4);
  font-size: 14px;
  color: var(--muted);
  text-align: center;
}

.callout {
  margin: 20px 0 8px;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 15px;
}

.callout p { margin: 0 !important; }

.callout--urgent {
  background: var(--danger-soft);
  border-left: 4px solid var(--danger);
}

.page .callout--urgent p { color: #5a1e27; }
.page .callout--urgent a { color: var(--danger); font-weight: 800; white-space: nowrap; }

/* ---------- Footer ---------- */
.footer {
  background: var(--night-3);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 36px;
}

.footer__top {
  display: grid;
  gap: 28px;
  align-items: center;
  text-align: center;
}

.footer .brand { color: #fff; }

.footer__tag {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
}

.footer .store-buttons { justify-content: center; }
.footer .store-btn--soon img { opacity: 0.5; }

.footer__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 24px;
  margin-top: 36px;
  font-weight: 700;
  font-size: 15px;
}

.footer__links a { color: rgba(255, 255, 255, 0.85); text-decoration: none; }
.footer__links a:hover { color: #fff; text-decoration: underline; }

.footer__lang {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.45);
}

.footer__lang a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer__lang a:hover { color: #fff; text-decoration: underline; }
.footer__lang [aria-current] { color: #fff; }

.footer__legal {
  margin-top: 18px;
  text-align: center;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
}

.footer__legal p + p { margin-top: 6px; }

/* ---------- Content pages ---------- */
.page { padding: 40px 0 80px; }

.page__inner {
  max-width: 740px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 22px;
  box-shadow: var(--shadow-card);
}

.page__inner--wide { max-width: 880px; }

.page h1 {
  font-size: clamp(29px, 5vw, 40px);
  margin-bottom: 8px;
  text-wrap: balance;
}

.page .updated {
  color: var(--muted-2);
  font-size: 14px;
  margin-bottom: 24px;
}

.page .updated time { font-variant-numeric: tabular-nums; }

.page h2 { font-size: 21px; margin: 32px 0 10px; }
.page h3 { font-size: 18px; margin: 24px 0 8px; }
.page p { color: var(--muted); margin-bottom: 12px; }

.page .lead {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.page ul { padding-left: 20px; list-style: disc; color: var(--muted); margin-bottom: 12px; }
.page ol { padding-left: 22px; list-style: decimal; color: var(--muted); margin: 0 0 12px; }
.page li { margin-bottom: 6px; }
.page ol li { margin-bottom: 8px; }
.page li b { color: var(--text); }
.page a { color: var(--accent-text); }
.page .btn--violet { color: #fff; }
.page .btn--ghost { color: var(--ink); }

/* Breadcrumbs */
.crumbs {
  font-size: 13px;
  font-weight: 700;
  color: var(--muted-2);
  margin-bottom: 14px;
}

.page .crumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
  color: var(--muted-2);
}

.page .crumbs li { margin: 0; }
.crumbs li + li::before { content: "›"; margin: 0 6px; }
.page .crumbs a { color: var(--muted); text-decoration: none; }
.page .crumbs a:hover { color: var(--primary); }

/* Article lists on hubs */
.page .article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: grid;
  gap: 10px;
}

.page .article-list li {
  background: var(--surface-alt);
  border-radius: 14px;
  padding: 14px 16px;
  margin: 0;
}

.page .article-list a {
  display: block;
  font-weight: 800;
  color: var(--ink);
  text-decoration: none;
}

.page .article-list a:hover { color: var(--primary); }

.article-list span {
  display: block;
  margin-top: 4px;
  font-size: 14.5px;
  color: var(--muted);
}

.page .article-list--compact li { padding: 10px 14px; }

/* Tables (compare pages) */
.table-wrap {
  overflow-x: auto;
  margin: 12px 0 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
}

.table {
  width: 100%;
  min-width: 600px;
  border-collapse: collapse;
  font-size: 15px;
}

.table th,
.table td {
  text-align: left;
  vertical-align: top;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

.table tr:last-child th,
.table tr:last-child td { border-bottom: 0; }

.table thead th { background: var(--selected); font-weight: 800; }
.table tbody th { font-weight: 800; color: var(--ink); width: 24%; }

.page .checked { font-size: 14px; color: var(--muted-2); }

/* Related links, helpful line, download block */
.related {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.page .related h2 { font-size: 18px; margin: 0 0 10px; }

.page .related ul {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page .related li { margin: 0; }
.related a { font-weight: 700; }

.page .helpful { margin-top: 28px; font-size: 14px; color: var(--muted-2); }

.download {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.page .download h2 { font-size: 21px; margin: 0 0 16px; }
.download .store-buttons { justify-content: center; }
.page .disclaimer { margin-top: 28px; }

/* ---------- Motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero__dot, .bubble--lg, .hero__bar span { animation: none; }
  .btn, .store-btn { transition: none; }
}

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
  .steps { grid-template-columns: repeat(3, 1fr); }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .shots { justify-content: center; }
  .pos-strip { grid-template-columns: repeat(4, 1fr); }
  .pos-grid { grid-template-columns: repeat(3, 1fr); }
  .footer__top { text-align: left; }
  .rule-tiles { gap: 18px; }
  .rule-tile { padding: 28px 14px 24px; }
}

@media (min-width: 900px) {
  .section { padding: 88px 0; }
  .nav { display: flex; }
  .hero { padding: 64px 0 88px; }
  .hero__grid { grid-template-columns: 1.02fr 0.98fr; gap: 48px; }
  .hero__copy { text-align: left; }
  .hero__icon { margin-left: 0; }
  .hero__sub, .hero__specific { margin-left: 0; }
  .hero .store-buttons { justify-content: flex-start; }
  .hero__visual { width: min(100%, 540px); margin-right: 0; }
  .feature-grid { grid-template-columns: repeat(3, 1fr); }
  .feature { flex-direction: column; padding: 24px; }
  .shot { width: 240px; }
  .footer__top { grid-template-columns: 1fr auto; }
  .footer .store-buttons { justify-content: flex-end; }
  .page__inner { padding: 48px 56px; }
}
