/* WisoraAI — wisoraai.com
   Ocean palette lifted from the app (palettes.dart _oceanLight).
   Headings: Manrope · Body: Inter (same faces the app ships). */

@font-face {
  font-family: "Manrope";
  src: url("/assets/fonts/Manrope-Variable.woff2") format("woff2-variations");
  font-weight: 200 800;
  font-display: swap;
}
@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/Inter-Variable.woff2") format("woff2-variations");
  font-weight: 100 900;
  font-display: swap;
}

:root {
  --primary: #5b89b8;
  --primary-strong: #40668f;   /* darkened for 4.5:1 text/buttons */
  --primary-hover: #4c769f;
  --primary-light: #bbcfe4;
  --primary-subtle: #eaf1f8;
  --accent: #cb9a5c;
  --accent-strong: #8a6231;    /* darkened for text use */
  --accent-light: #e8d2b2;
  --accent-subtle: #f6eee2;
  --bg: #f6f7f9;
  --card: #edeff2;
  --card-elev: #ffffff;
  --text: #272b30;
  --text-2: #515861;
  --text-3: #6c757f;
  --border: #d6dbe1;
  --ok: #3e9b63;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgb(39 43 48 / .06), 0 2px 8px rgb(39 43 48 / .05);
  --shadow-md: 0 2px 6px rgb(39 43 48 / .07), 0 12px 32px rgb(39 43 48 / .10);
  --font-head: "Manrope", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --header-h: 64px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-strong); text-decoration: none; }
a:hover { text-decoration: underline; }
p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

h1, h2, h3 {
  font-family: var(--font-head);
  font-weight: 750;
  line-height: 1.15;
  letter-spacing: -0.015em;
  color: var(--text);
  margin: 0 0 .5em;
  text-wrap: balance;
}

.container { width: min(1120px, 100% - 48px); margin-inline: auto; }
@media (max-width: 640px) { .container { width: min(1120px, 100% - 40px); } }

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 100;
  background: var(--text); color: #fff; padding: 10px 16px; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible { outline: 3px solid var(--primary); outline-offset: 2px; border-radius: 4px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-head); font-weight: 700; font-size: 16px;
  padding: 13px 26px; border-radius: 999px; border: 2px solid transparent;
  cursor: pointer; transition: background .2s, color .2s, border-color .2s, transform .15s;
  min-height: 44px;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }
.btn-primary { background: var(--primary-strong); color: #fff; }
.btn-primary:hover { background: var(--primary-hover); }
.btn-ghost { background: transparent; color: var(--primary-strong); border-color: var(--primary-light); }
.btn-ghost:hover { border-color: var(--primary-strong); background: var(--primary-subtle); }
.btn-sm { padding: 9px 18px; font-size: 15px; min-height: 40px; }

/* ---------- Store badges ---------- */
.store-badges { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 28px; }
.store-badges-center { justify-content: center; }
/* Official Apple badge artwork — never restyle or recolor the image itself. */
.badge-store { display: inline-flex; transition: transform .15s; }
.badge-store:hover { text-decoration: none; transform: translateY(-1px); }
.badge-store img { height: 52px; width: auto; }
/* Not Apple/Google artwork: a plain "coming soon" chip for the unlaunched
   Android app, matched to the badge height so the row stays even. */
.badge-soon {
  display: inline-flex; align-items: center; height: 52px; padding: 0 18px;
  border: 1.5px dashed var(--border); border-radius: 10px;
  color: var(--text-3); background: transparent; cursor: default;
}
.badge-soon-text { display: flex; flex-direction: column; gap: 1px; line-height: 1.15; }
.badge-soon-text small { font-size: 11px; }
.badge-soon-text strong { font-family: var(--font-head); font-size: 16px; font-weight: 700; }
.store-badges-sm .badge-store img, .store-badges-sm .badge-soon { height: 44px; }
.store-badges-sm .badge-soon-text strong { font-size: 14px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--border) 60%, transparent);
}
.header-inner { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-head); font-weight: 800; font-size: 21px; color: var(--text);
  letter-spacing: -0.02em;
}
.brand:hover { text-decoration: none; }
.brand em { font-style: normal; color: var(--primary-strong); }
.brand img { border-radius: 8px; }

.site-nav { display: flex; gap: 4px; margin-inline: auto; }
.site-nav a {
  font-family: var(--font-head); font-weight: 600; font-size: 15.5px; color: var(--text-2);
  padding: 8px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.site-nav a:hover { color: var(--text); background: var(--card); text-decoration: none; }
.site-nav a[aria-current="page"] { color: var(--primary-strong); background: var(--primary-subtle); }

.header-actions { display: flex; align-items: center; gap: 14px; }
.lang-switch {
  font-family: var(--font-head); font-weight: 600; font-size: 14px; color: var(--text-2);
  padding: 6px 10px; border-radius: 8px; border: 1px solid var(--border);
}
.lang-switch:hover { color: var(--text); border-color: var(--text-3); text-decoration: none; }

.nav-toggle {
  display: none; background: none; border: 0; color: var(--text); padding: 10px; margin: -6px;
  cursor: pointer; border-radius: 10px;
}
.nav-toggle .i-close { display: none; }
.nav-toggle[aria-expanded="true"] .i-open { display: none; }
.nav-toggle[aria-expanded="true"] .i-close { display: block; }

@media (max-width: 900px) {
  .site-nav {
    display: none;
    position: absolute; top: var(--header-h); left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 12px 20px 18px;
    background: var(--bg); border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 12px 14px; font-size: 17px; }
  .nav-toggle { display: inline-flex; }
  .lang-switch { display: none; }
  .site-nav .lang-switch-mobile { display: block; }
}
@media (min-width: 901px) { .lang-switch-mobile { display: none !important; } }

/* ---------- Hero ---------- */
.hero { padding: 72px 0 40px; overflow: hidden; }
.hero-grid {
  display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: center;
}
.eyebrow {
  font-family: var(--font-head); font-weight: 700; font-size: 14px;
  letter-spacing: .08em; text-transform: uppercase; color: var(--accent-strong);
  margin: 0 0 14px;
}
.hero h1 { font-size: clamp(34px, 4.6vw, 54px); margin-bottom: 20px; }
.hero h1 em { font-style: normal; color: var(--primary-strong); position: relative; }
.lead { font-size: 19px; color: var(--text-2); max-width: 56ch; }
.hero-note { margin-top: 18px; font-size: 14.5px; color: var(--text-3); }

.hero-visual { position: relative; display: flex; justify-content: center; }
.layer-rings { position: absolute; inset: 0; display: grid; place-items: center; z-index: 0; }
.layer-rings span {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--primary-light); opacity: .55;
  width: 420px; height: 420px;
}
.layer-rings span + span { width: 560px; height: 560px; border-color: var(--accent-light); opacity: .5; }

/* ---------- Device frame ---------- */
.device { margin: 0; position: relative; z-index: 1; width: min(300px, 78vw); }
.device-frame {
  position: relative;
  border-radius: 46px;
  background: #1b1e22;
  padding: 12px;
  box-shadow:
    inset 0 0 0 2px #3a4046,
    0 24px 60px rgb(39 43 48 / .28),
    0 4px 14px rgb(39 43 48 / .18);
}
.device-frame img, .device-frame svg { border-radius: 35px; width: 100%; height: auto; }
.device-island {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 28%; height: 24px; border-radius: 999px; background: #1b1e22; z-index: 2;
}
.device-sm { width: min(260px, 70vw); }
.device-sm .device-frame { border-radius: 40px; padding: 10px; }
.device-sm .device-frame img { border-radius: 31px; }
.device-sm .device-island { top: 19px; height: 21px; }
/* iPad Pro 12.9" capture (2048×2732 → 3:4). Squarer frame, thinner bezel,
   no dynamic island — the real device has none. */
.device-ipad { width: min(420px, 88vw); }
.device-ipad .device-frame { border-radius: 30px; padding: 14px; }
.device-ipad .device-frame img { border-radius: 18px; }
.device-ipad .device-island { display: none; }
.device-pair {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 20px; flex-wrap: wrap;
}
.device-pair .device-hero, .device-pair .device-sm { width: min(210px, 46vw); }
.device-caption {
  margin-top: 14px; text-align: center;
  font-size: 13.5px; color: var(--text-3);
}
.device-card { width: min(220px, 64vw); margin-inline: auto; }
.device-card .device-frame { border-radius: 34px; padding: 9px; box-shadow: inset 0 0 0 2px #3a4046, 0 12px 30px rgb(39 43 48 / .18); }
.device-card .device-frame img { border-radius: 26px; }
.device-card .device-island { top: 17px; height: 18px; }

/* ---------- Trust strip ---------- */
.trust { padding: 48px 0 8px; }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.trust-card {
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
}
.trust-card h2 { font-size: 19px; margin: 16px 0 8px; }
.trust-card p { color: var(--text-2); font-size: 15.5px; }
.icon-chip {
  display: inline-grid; place-items: center; width: 46px; height: 46px;
  border-radius: 14px; background: var(--primary-subtle); color: var(--primary-strong);
}
.trust-card:nth-child(2) .icon-chip { background: var(--accent-subtle); color: var(--accent-strong); }

/* ---------- Sections ---------- */
section { scroll-margin-top: calc(var(--header-h) + 12px); }
.section-title { font-size: clamp(26px, 3.4vw, 38px); text-align: center; margin-bottom: 14px; }
.section-sub { text-align: center; color: var(--text-2); max-width: 62ch; margin: 0 auto 36px; font-size: 17px; }
.section-link { text-align: center; margin-top: 32px; }
.section-link a { font-family: var(--font-head); font-weight: 700; }

/* ---------- How it works ---------- */
.how { padding: 88px 0 40px; }
.how-steps {
  list-style: none; margin: 44px 0 0; padding: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
  counter-reset: step;
}
.how-steps-3 { grid-template-columns: repeat(3, 1fr); }
.how-step {
  position: relative; background: var(--card-elev); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 26px 22px 22px; box-shadow: var(--shadow-sm);
}
.step-n {
  display: inline-grid; place-items: center; width: 38px; height: 38px; border-radius: 12px;
  background: var(--primary-strong); color: #fff;
  font-family: var(--font-head); font-weight: 800; font-size: 17px;
  margin-bottom: 14px;
}
.how-step:nth-child(3) .step-n { background: var(--accent-strong); }
.how-step h3 { font-size: 17.5px; margin-bottom: 6px; }
.how-step p { font-size: 15px; color: var(--text-2); }

/* ---------- Features ---------- */
.features { padding: 88px 0 24px; }
.feature-rows { display: flex; flex-direction: column; gap: 72px; margin-top: 56px; }
.feature-row {
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 56px; align-items: center;
}
.feature-row.is-flipped .feature-visual { order: 2; }
/* iPhone + iPad side by side needs the full container width, so this row
   stacks (copy above, devices below) instead of splitting into columns. */
.feature-row.is-pair { grid-template-columns: 1fr; gap: 36px; text-align: center; }
.feature-row.is-pair .feature-copy { order: -1; }
.feature-row.is-pair .feature-copy p { margin-inline: auto; }
.feature-visual { display: flex; justify-content: center; }
.feature-copy h3 { font-size: clamp(22px, 2.6vw, 28px); }
.feature-copy p { color: var(--text-2); font-size: 17px; max-width: 52ch; }

/* ---------- Honest answers ---------- */
.honest { padding: 88px 0 40px; }
.honest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.honest-card {
  background: var(--accent-subtle); border: 1px solid var(--accent-light);
  border-radius: var(--radius-lg); padding: 28px;
}
.honest-card h3 { font-size: 19px; color: var(--accent-strong); margin-bottom: 10px; }
.honest-card p { font-size: 15.5px; color: var(--text-2); }

/* ---------- Pricing ---------- */
.pricing { padding: 88px 0 40px; }
.trial-pill {
  width: fit-content; margin: 0 auto 36px;
  background: var(--primary-subtle); color: var(--primary-strong);
  border: 1px solid var(--primary-light); border-radius: 999px;
  font-family: var(--font-head); font-weight: 700; font-size: 14.5px;
  padding: 8px 18px;
}
.price-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 22px; justify-content: center; }
.price-card {
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 32px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
}
.price-card.is-featured { border-color: var(--primary-light); box-shadow: var(--shadow-md); }
.price-card h3 { font-size: 20px; }
.price { margin: 4px 0 18px; }
.price strong { font-family: var(--font-head); font-size: 40px; font-weight: 800; letter-spacing: -0.02em; }
.price span { color: var(--text-3); font-size: 16px; }
.price-card ul { list-style: none; margin: 0 0 26px; padding: 0; display: grid; gap: 10px; }
.price-card li { padding-left: 28px; position: relative; font-size: 15.5px; color: var(--text-2); }
.price-card li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--primary-subtle);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2340668f' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E");
  background-size: 11px; background-position: center; background-repeat: no-repeat;
}
.price-card .btn { margin-top: auto; }
.pricing-note { text-align: center; color: var(--text-3); font-size: 14.5px; margin-top: 26px; }

/* ---------- Closing ---------- */
.closing { padding: 96px 0 104px; }
.closing-inner {
  text-align: center; background: var(--primary-subtle);
  border: 1px solid var(--primary-light); border-radius: 28px;
  padding: 64px 32px;
}
.closing h2 { font-size: clamp(26px, 3.4vw, 38px); }
.closing p { color: var(--text-2); font-size: 17px; }

/* ---------- Inner pages ---------- */
.page-hero { padding: 72px 0 24px; }
.page-hero h1 { font-size: clamp(30px, 4vw, 46px); max-width: 22ch; }
.page-hero .lead { font-size: 18.5px; }
.support-email { margin-top: 26px; }

.doc-sections { padding: 40px 0 8px; }
.doc-section { padding: 44px 0; border-top: 1px solid var(--border); }
.doc-section:first-child { border-top: 0; }
.doc-section h2 { font-size: clamp(22px, 2.8vw, 30px); }
.doc-section p { color: var(--text-2); font-size: 16.5px; max-width: 66ch; }
.doc-section strong { color: var(--text); }
.doc-section.has-visual { display: grid; grid-template-columns: 1.25fr .75fr; gap: 56px; align-items: center; }
.doc-section.has-visual.is-flipped .doc-visual { order: -1; }
.doc-visual { display: flex; justify-content: center; }

/* ---------- Parents ---------- */
.controls { padding: 56px 0 24px; }
.control-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 44px; }
.control-card {
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px 20px; text-align: center; box-shadow: var(--shadow-sm);
}
.control-card h3 { font-size: 17px; margin: 20px 0 6px; }
.control-card p { font-size: 14.5px; color: var(--text-2); }
.setup { padding-top: 72px; }
.data-note { padding: 48px 0 8px; }
.data-note-inner {
  display: flex; gap: 22px; align-items: flex-start;
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 30px 32px; box-shadow: var(--shadow-sm);
}
.data-note h2 { font-size: 20px; margin-bottom: 6px; }
.data-note p { color: var(--text-2); }

/* ---------- FAQ ---------- */
.faq { padding: 32px 0 40px; }
.faq-container { max-width: 780px; }
.faq-group { margin-bottom: 44px; }
.faq-group h2 { font-size: 22px; margin-bottom: 16px; }
.faq-item {
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius);
  margin-bottom: 10px; overflow: hidden;
}
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  cursor: pointer; list-style: none;
  font-family: var(--font-head); font-weight: 700; font-size: 16.5px;
  padding: 18px 22px; min-height: 44px;
  transition: background .2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--primary-subtle); }
.faq-item .chev { flex: none; color: var(--text-3); transition: transform .25s; }
.faq-item[open] .chev { transform: rotate(180deg); }
.faq-item[open] summary { color: var(--primary-strong); }
.faq-item p { padding: 0 22px 20px; color: var(--text-2); font-size: 15.5px; max-width: 68ch; }

/* ---------- Support ---------- */
.support-topics { padding: 48px 0 8px; }
.topics-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 36px; }
.topic-card {
  background: var(--card-elev); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 26px 28px; box-shadow: var(--shadow-sm);
}
.topic-card h3 { font-size: 17.5px; margin-bottom: 8px; }
.topic-card p { font-size: 15px; color: var(--text-2); }
.support-links { padding: 56px 0 88px; }
.support-links-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.support-links h2 { font-size: 17px; }
.support-links p { color: var(--text-2); }

/* ---------- Blog ---------- */
.blog-list { padding: 24px 0 72px; }
.blog-container { max-width: 720px; }
.post-card {
  background: var(--card-elev); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px 30px; margin-bottom: 18px;
  box-shadow: var(--shadow-sm);
}
.post-card h2 { font-size: 22px; margin: 8px 0 10px; }
.post-card h2 a { color: var(--text); }
.post-card h2 a:hover { color: var(--primary-strong); text-decoration: none; }
.post-card p { color: var(--text-2); font-size: 16px; }
.post-meta {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--text-3); margin: 0;
}
.post-lang {
  border: 1px solid var(--border); border-radius: 999px;
  padding: 1px 8px; font-size: 11.5px; letter-spacing: .04em;
}
.post-more { margin-top: 14px; }
.post-more a { font-family: var(--font-head); font-weight: 700; font-size: 15px; }
.blog-note { color: var(--text-3); font-size: 14.5px; margin-top: 22px; }

.post { padding: 64px 0 24px; }
.post-container { max-width: 700px; }
.post h1 { font-size: clamp(28px, 3.6vw, 40px); margin: 14px 0 16px; }
.post .lead { font-size: 18.5px; }
.post-body { margin-top: 34px; }
.post-body h2 {
  font-size: clamp(20px, 2.4vw, 25px); margin: 40px 0 12px;
  padding-top: 26px; border-top: 1px solid var(--border);
}
.post-body p { color: var(--text-2); font-size: 17px; line-height: 1.7; }
.post-body strong { color: var(--text); }
.post-body a { font-weight: 600; }
.post-back { margin-top: 44px; font-family: var(--font-head); font-weight: 700; }

/* ---------- 404 ---------- */
.notfound { padding: 96px 0 120px; }
.notfound-inner { text-align: center; max-width: 56ch; margin-inline: auto; }
.notfound h1 { font-size: clamp(28px, 3.8vw, 42px); }
.notfound .lead { margin-inline: auto; }
.notfound-links { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer { background: #272b30; color: #c9ced4; }
.site-footer a { color: #e6e9ec; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding: 56px 0 36px;
}
.footer-brand .brand { color: #fff; }
.footer-brand .brand em { color: var(--primary-light); }
.footer-brand p { margin-top: 14px; font-size: 15px; color: #aab1b8; max-width: 34ch; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h3 {
  color: #8d959d; font-size: 13px; letter-spacing: .08em; text-transform: uppercase;
  margin-bottom: 6px;
}
.footer-col a { font-size: 15.5px; width: fit-content; }
.footer-bottom { border-top: 1px solid #3a4046; padding: 20px 0 26px; }
.footer-bottom p { font-size: 13.5px; color: #8d959d; }
.site-footer .badge-store { background: #3a4046; }
.site-footer .badge-store:hover { background: #454c53; }
.site-footer .badge-soon { background: transparent; border-color: #4a525a; color: #aab1b8; }

/* ---------- Responsive ---------- */
@media (max-width: 1000px) {
  .how-steps { grid-template-columns: repeat(2, 1fr); }
  .control-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .hero { padding-top: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 52px; text-align: center; }
  .hero-copy .lead { margin-inline: auto; }
  .store-badges { justify-content: center; }
  .trust-grid, .honest-grid { grid-template-columns: 1fr; }
  .feature-row, .doc-section.has-visual { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .feature-row.is-flipped .feature-visual, .doc-section.has-visual.is-flipped .doc-visual { order: 0; }
  .feature-copy p, .doc-section p { margin-inline: auto; }
  .price-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .topics-grid, .support-links-inner { grid-template-columns: 1fr; }
  .how-steps-3 { grid-template-columns: 1fr; }
  .layer-rings span { width: 300px; height: 300px; }
  .layer-rings span + span { width: 400px; height: 400px; }
  .page-hero h1, .page-hero .lead { margin-inline: 0; }
}
@media (max-width: 560px) {
  .how-steps { grid-template-columns: 1fr; }
  .control-grid { grid-template-columns: 1fr; }
  .store-badges .badge-store { flex: 1 1 100%; justify-content: center; }
  .closing-inner { padding: 44px 20px; }
}
