:root {
  color-scheme: light;
  --bg: #edf2ee;
  --bg-deep: #e4eae5;
  --surface: #f8faf8;
  --surface-high: #ffffff;
  --surface-soft: rgba(31, 36, 39, 0.035);
  --text: #1f2427;
  --muted: #4c5751;
  --faint: #66736a;
  --line: rgba(31, 36, 39, 0.11);
  --line-strong: rgba(31, 36, 39, 0.21);
  --mint: #2f6944;
  --mint-light: #245737;
  --mint-dark: #326946;
  --on-mint: #f6faf7;
  --shadow: rgba(32, 46, 37, 0.15);
  --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", sans-serif;
  --font-rounded: ui-rounded, "SF Pro Rounded", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: clip;
  color: var(--text);
  background:
    radial-gradient(circle at 78% 4%, rgba(207, 239, 215, 0.1), transparent 25rem),
    linear-gradient(145deg, var(--bg) 0%, var(--bg-deep) 100%);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
}

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

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 10px;
  color: var(--on-mint);
  background: var(--mint);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 2px solid var(--mint);
  outline-offset: 4px;
}

.site-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-rounded);
  font-size: 1rem;
  font-weight: 700;
}

.brand img {
  border-radius: 10px;
  box-shadow: 0 7px 18px var(--shadow);
}

.site-nav {
  font-weight: 600;
  display: flex;
  justify-content: flex-end;
  gap: 26px;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-nav a:hover,
.site-footer a:hover {
  color: var(--text);
}

.section-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  align-items: center;
  gap: 46px;
  min-height: 700px;
  padding: 34px 0 90px;
}

.hero-copy {
  position: relative;
  z-index: 5;
  max-width: 610px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 650px;
  margin-bottom: 24px;
  font-family: var(--font-rounded);
  font-size: clamp(3.7rem, 6vw, 5.35rem);
  font-weight: 680;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

h2 {
  margin-bottom: 20px;
  font-family: var(--font-rounded);
  font-size: clamp(2.45rem, 4.5vw, 4rem);
  font-weight: 620;
  letter-spacing: -0.045em;
  line-height: 1;
}

h3 {
  margin-bottom: 10px;
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 580px;
  margin-bottom: 30px;
  color: var(--muted);
  font-size: 1.26rem;
  font-weight: 400;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  line-height: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.store-badge:hover,
.store-badge:focus-visible {
  transform: translateY(-1px);
}

.store-badge img {
  display: block;
  height: 48px;
  width: auto;
  border-radius: 10px;
}

.store-badge {
  border-color: transparent;
  box-shadow: 0 12px 34px rgba(31, 36, 39, 0.14);
}

.final-cta > p.badge-note {
  margin: -8px 0 14px;
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.price-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero {
  grid-template-columns: minmax(0, 1fr);
  gap: 48px;
  text-align: center;
}
.hero-copy { max-width: 900px; margin: 0 auto; }
.hero h1 { margin-inline: auto; font-size: clamp(2.8rem, 5.8vw, 5.2rem); }
.hero-lede { max-width: 720px; margin-left: auto; margin-right: auto; }
.hero-actions { justify-content: center; }
.hero-actions .store-badge img { height: 64px; }
.section-download { margin-top: 30px; }
.section-download .store-badge img { height: 44px; }
.purchase-price .store-badge { margin-top: 16px; }
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  container-type: inline-size;
}
.macbook-pro { position: relative; width: 84%; margin-inline: auto; padding: 0 4%; container-type: inline-size; filter: drop-shadow(0 28px 28px #00000025); }
.device-composition { position: relative; padding-bottom: 4%; }
.hero-phone-placeholder,
.hero-widget-placeholder {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.7cqw;
  color: #d8f5df;
  background: linear-gradient(145deg, #343b3f, #1f2427);
  box-shadow: 0 14px 35px #0004;
  text-align: center;
}
.hero-phone-placeholder {
  left: 11%;
  bottom: 0;
  width: 20%;
  aspect-ratio: 0.48;
  border: clamp(3px, 0.6cqw, 7px) solid #151618;
  border-radius: 3.5cqw;
  outline: 1px solid #727779;
}
.placeholder-island { position: absolute; top: 3%; width: 38%; height: 4%; border-radius: 99px; background: #101113; }
.hero-widget-placeholder { right: 11%; bottom: 0; width: 17%; aspect-ratio: 1; border: 1px dashed #cfeFD76b; border-radius: 3cqw; }
.hero-phone-placeholder > svg,
.hero-widget-placeholder > svg { width: 3cqw; height: 3cqw; margin-bottom: 0.6cqw; opacity: 0.7; }
.hero-phone-placeholder strong,
.hero-widget-placeholder strong { font-size: clamp(9px, 1.5cqw, 17px); }
.hero-phone-placeholder > span:last-child,
.hero-widget-placeholder > span:last-child { max-width: 80%; font-size: clamp(8px, 1cqw, 11px); line-height: 1.35; color: #b4bfba; }

.macbook-lid {
  position: relative;
  padding: 1.1% 1.1% 1.7%;
  border: 1px solid #68696c;
  border-radius: 2.1cqw 2.1cqw 0.7cqw 0.7cqw;
  background: #101113;
  box-shadow: inset 0 0 0 2px #2d2e30, 0 0 0 1px #0008;
}
.macbook-screen { position: relative; overflow: hidden; border-radius: 1.2cqw 1.2cqw 0.2cqw 0.2cqw; }
.macbook-screen > img { display: block; width: 100%; height: auto; }
.macbook-notch { position: absolute; top: 1.5%; left: 44%; width: 12%; height: 2.4%; background: #101113; border-radius: 0 0 0.5cqw 0.5cqw; }
.macbook-notch::after { content: ""; position: absolute; left: 50%; top: 30%; width: 0.35cqw; height: 0.35cqw; border-radius: 50%; background: #17232e; box-shadow: 0 0 0 1px #24282c; }
.macbook-base { position: relative; width: 108.7%; margin-left: -4.35%; height: 2.7cqw; border-radius: 0.2cqw 0.2cqw 45% 45% / 0.2cqw 0.2cqw 70% 70%; background: linear-gradient(#5c5d60, #38393c 32%, #252629 70%, #141517); box-shadow: inset 0 1px #939497; }
.macbook-base > span { position: absolute; top: 0; left: 42%; width: 16%; height: 36%; border-radius: 0 0 1cqw 1cqw; background: linear-gradient(90deg, #343537, #505153 50%, #343537); box-shadow: inset 0 -1px #7778; }
.hero-stage figcaption { margin-top: 26px; color: var(--text); font-size: 0.9rem; }
.hero-stage figcaption span { display: block; margin-top: 6px; color: var(--muted); font-size: 0.72rem; }

.earnings-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 188px;
  padding: 21px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  color: #fff;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.22);
}

.earnings-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.earnings-card strong {
  overflow: hidden;
  font-size: 0.84rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.earnings-card small {
  color: rgba(255, 255, 255, 0.46);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.earnings-card b {
  margin-top: auto;
  font-family: var(--font-rounded);
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 590;
  letter-spacing: -0.05em;
  line-height: 1;
}

.earnings-card > span {
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.7rem;
}

.mint-card {
  color: #fff;
  background: linear-gradient(145deg, #343b3f, #202527);
}

.mint-card b {
  color: #d8f5df;
}

.ocean-card {
  background: linear-gradient(145deg, #1d4a64, #0a1a2e);
}

.ocean-card b {
  color: #bce9ff;
}

.plum-card {
  background: linear-gradient(145deg, #4b2d55, #20122f);
}

.plum-card b {
  color: #f0c9ff;
}

.cream-card {
  border-color: rgba(53, 54, 39, 0.12);
  color: #332f26;
  background: linear-gradient(145deg, #fffbed, #dfd8bd);
}

.cream-card b {
  color: #485b32;
}

.cream-card small,
.cream-card > span {
  color: rgba(51, 47, 38, 0.52);
}

.statement {
  display: grid;
  max-width: 940px;
  justify-items: center;
  padding: 110px 0 150px;
  text-align: center;
}

.statement h2 {
  max-width: 920px;
}

.statement > p:last-child {
  max-width: 700px;
  margin: 0;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.feature-split,
.privacy-section,
.calculation-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 82px;
  padding: 120px 0;
}

.widget-wall {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  min-height: 470px;
  padding: 28px;
}

.widget-wall::before {
  position: absolute;
  inset: 0;
  border: 1px solid var(--line);
  border-radius: 40px;
  background:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 34px 34px;
  content: "";
  mask-image: linear-gradient(145deg, #000, transparent 85%);
  opacity: 0.45;
}

.widget-wall .earnings-card {
  z-index: 1;
  aspect-ratio: 1;
}

.widget-wall .earnings-card:nth-child(2) {
  transform: translateY(70px);
}

.widget-wall .earnings-card:nth-child(3) {
  transform: translateX(36px);
}

.feature-copy > p:not(.eyebrow),
.section-heading > p:not(.eyebrow),
.privacy-copy > p:not(.eyebrow),
.calculation-section p,
.purchase-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.icon-list {
  display: grid;
  gap: 20px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.icon-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  align-items: center;
  gap: 14px;
  color: var(--text);
  line-height: 1.5;
}

.icon-list svg {
  width: 22px;
  color: var(--mint);
}

.control-section,
.platform-section,
.setup-section,
.faq-section,
.purchase-section {
  padding: 120px 0;
}

.section-heading {
  max-width: 770px;
  margin-bottom: 50px;
}

.control-layout { display: grid; grid-template-columns: 1fr 1fr; align-items: start; gap: 90px; }
.control-layout .section-heading { margin: 0; }
.control-layout h2 { max-width: 520px; }
.control-options { margin: 0; }
.control-options > div { padding: 24px 0; border-bottom: 1px solid var(--line); }
.control-options > div:first-child { padding-top: 8px; }
.control-options dt { margin-bottom: 8px; font-size: 1.1rem; font-weight: 650; }
.control-options dd { margin: 0; color: var(--muted); line-height: 1.6; }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.platform-card {
  min-height: 450px;
}

.platform-art {
  position: relative;
  display: grid;
  height: 270px;
  margin-bottom: 26px;
  place-items: center;
}

.platform-art::before,
.platform-art span {
  display: block;
  content: "";
}

.mac-art::before {
  width: 88%;
  aspect-ratio: 1.55;
  border: 5px solid var(--text);
  border-radius: 10px;
  background: linear-gradient(145deg, #343b3f, #202527);
  box-shadow: inset 0 0 0 2px var(--line);
}

.mac-art span {
  position: absolute;
  bottom: 25px;
  width: 58%;
  height: 8px;
  border-radius: 0 0 30px 30px;
  background: var(--text);
}

.iphone-art::before {
  width: 112px;
  height: 230px;
  border: 5px solid var(--text);
  border-radius: 27px;
  background: linear-gradient(145deg, #343b3f, #202527);
}

.iphone-art span {
  position: absolute;
  top: 31px;
  width: 45px;
  height: 12px;
  border-radius: 20px;
  background: var(--text);
}

.ipad-art::before {
  width: 205px;
  height: 245px;
  border: 5px solid var(--text);
  border-radius: 17px;
  background: linear-gradient(145deg, #343b3f, #202527);
}

.ipad-art span {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--text);
  transform: translateY(-108px);
}

.privacy-section {
  margin-top: 80px;
  padding: 100px 70px;
  border: 1px solid rgba(207, 239, 215, 0.18);
  border-radius: 36px;
  background:
    radial-gradient(circle at 0 0, rgba(207, 239, 215, 0.13), transparent 34rem),
    rgba(0, 0, 0, 0.08);
}

.privacy-section {
  background:
    radial-gradient(circle at 0 0, rgba(47, 105, 68, 0.1), transparent 34rem),
    rgba(255, 255, 255, 0.3);
}

.text-link {
  display: inline-flex;
  gap: 8px;
  margin-top: 14px;
  color: var(--mint);
  font-weight: 650;
}

.trust-list {
  display: grid;
  gap: 6px;
}

.trust-list > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: start;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.trust-list > div:first-child {
  border-top: 0;
}

.trust-list svg {
  width: 22px;
  height: 22px;
  color: var(--mint);
}

.trust-list span {
  display: grid;
  gap: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.trust-list strong {
  color: var(--text);
}

.setup-panel { padding: 48px; border: 1px solid var(--line); border-radius: 28px; background: #f8faf8; }
.setup-panel .section-heading { margin-bottom: 36px; }
.setup-panel .section-download { margin-top: 36px; }
.steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 32px; margin: 0; padding: 0; list-style: none; }
.steps li { border-top: 1px solid #c5d8c9; padding-top: 22px; }
.step-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 28px; color: var(--mint); }
.step-top > span { font-family: var(--font-rounded); font-size: 1.6rem; font-weight: 600; }
.step-top > svg { width: 25px; height: 25px; }
.steps h3 { font-size: 1.18rem; }
.steps p { margin: 0; color: var(--muted); line-height: 1.65; }

.calculation-section {
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.fine-print {
  font-size: 0.9rem !important;
}

.purchase-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 70px;
  padding: 64px 72px;
  border: 1px solid #bdd4c1;
  border-radius: 32px;
  background: linear-gradient(120deg, #e1eee3, #d1e6d6);
}
.purchase-copy > img { margin-bottom: 28px; border-radius: 15px; box-shadow: 0 8px 20px #254c3720; }
.purchase-card h2 { margin-bottom: 18px; color: #234532; }
.purchase-card p { max-width: 470px; margin: 0; color: #496151; }
.purchase-price { display: flex; flex-direction: column; align-items: center; gap: 12px; min-width: 240px; }
.purchase-price strong { color: #234532; font-family: var(--font-rounded); font-size: clamp(4.5rem, 7.5vw, 7rem); font-weight: 600; letter-spacing: -0.07em; line-height: 1; white-space: nowrap; }
.purchase-price strong > span { display: inline-block; margin-right: 4px; font-size: 0.5em; vertical-align: 0.45em; letter-spacing: 0; }
.purchase-price > span { font-size: 0.95rem; color: #496151; }

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  gap: 20px;
  font-size: 1.05rem;
  font-weight: 650;
  cursor: pointer;
}

.faq-list summary::after {
  flex: 0 0 auto;
  color: var(--mint);
  content: "+";
  font-size: 1.4rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  max-width: 780px;
  margin: -3px 0 26px;
  color: var(--muted);
  line-height: 1.65;
}

.final-cta {
  display: grid;
  justify-items: center;
  padding: 120px 0 135px;
  text-align: center;
}

.final-cta > img {
  margin-bottom: 30px;
  border-radius: 20px;
  box-shadow: 0 18px 40px var(--shadow);
}

.final-cta h2 {
  max-width: 760px;
}

.final-cta > p {
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 1.1rem;
}

.site-footer {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 35px 0 45px;
  border-top: 1px solid var(--line);
}

.site-footer p {
  justify-self: end;
  text-align: right;
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Supporting pages */
.page-main {
  min-height: calc(100vh - 180px);
}

.page-hero {
  max-width: 900px;
  padding: 90px 0 55px;
}

.page-hero h1 {
  margin-bottom: 20px;
}

.page-hero > p {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.2rem;
  line-height: 1.65;
}

.page-content {
  display: grid;
  max-width: 900px;
  gap: 0;
  padding-bottom: 110px;
}

.page-content article,
.help-card {
  padding: 32px 0;
  border-top: 1px solid var(--line);
}

.page-content h2 {
  margin-bottom: 14px;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.page-content h3 {
  margin-top: 24px;
}

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

.page-content li + li {
  margin-top: 8px;
}

.page-content a {
  color: var(--mint);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.page-updated {
  color: var(--faint) !important;
  font-size: 0.9rem !important;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 900px;
  padding-bottom: 110px;
}

.help-card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface-soft);
}

.help-card svg {
  width: 24px;
  margin-bottom: 38px;
  color: var(--mint);
}

.help-card p {
  margin-bottom: 20px;
  color: var(--muted);
  line-height: 1.6;
}

.help-card a {
  color: var(--mint);
  font-weight: 650;
}

.contact-panel {
  max-width: 760px;
  margin-bottom: 120px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--surface-soft);
}

.contact-panel p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-panel a {
  color: var(--mint);
  font-size: 1.15rem;
  font-weight: 680;
}

@media (max-width: 1040px) {
  .hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

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

  .hero-stage {
    width: 100%;
    margin: 0 auto;
  }

  .control-layout,
  .feature-split,
  .privacy-section,
  .calculation-section {
    grid-template-columns: 1fr;
  }

  .feature-copy {
    order: -1;
  }

  .platform-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .steps li:last-child {
    grid-column: 1 / -1;
  }

  .privacy-section {
    padding: 70px 52px;
  }
}

@media (max-width: 720px) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 28px, 520px);
  }

  .site-header {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .site-nav {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 22px;
  }

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

  h2 {
    font-size: clamp(2.25rem, 11vw, 3.1rem);
  }

  .hero {
    min-height: 0;
    padding: 48px 0 72px;
  }

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

  .hero-actions {
    align-items: center;
    flex-direction: column;
  }

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

  .statement {
    padding: 80px 0 100px;
    text-align: left;
  }

  .statement {
    justify-items: start;
  }

  .feature-split,
  .control-section,
  .platform-section,
  .privacy-section,
  .setup-section,
  .calculation-section,
  .purchase-section,
  .faq-section {
    padding: 82px 0;
  }

  .widget-wall {
    min-height: 390px;
    padding: 14px;
  }

  .widget-wall .earnings-card {
    width: 100%;
    min-width: 0;
    min-height: 155px;
    padding: 17px;
    border-radius: 20px;
  }

  .widget-wall .earnings-card:nth-child(3) {
    transform: translateX(15px);
  }

  .platform-grid,
  .steps,
  .help-grid {
    grid-template-columns: 1fr;
  }

  .steps li:last-child {
    grid-column: auto;
  }

  .control-layout { gap: 22px; }

  .platform-card {
    min-height: 0;
  }

  .privacy-section {
    width: min(100% - 28px, 520px);
    margin-top: 25px;
    padding: 60px 28px;
  }

  .purchase-card {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 34px 26px;
  }

  .purchase-price {
    align-items: flex-start;
    min-width: 0;
    padding-top: 28px;
    border-top: 1px solid #bdd4c1;
  }

  .site-footer { grid-template-columns: auto 1fr; gap: 12px; }
  .site-footer .brand { font-size: 0.85rem; gap: 7px; }
  .site-footer .brand img { width: 32px; height: 32px; }
  .site-footer p { font-size: 0.72rem; }
  .setup-panel { padding: 28px 22px; }


  .page-hero {
    padding-top: 55px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
