/* Tomafoco — landing page
   Design importado de "Site Tomafoco.dc.html" (Claude Design). */

:root {
  --navy: #08143E;
  --navy-deep: #050E2C;
  --bg: #F6F9FB;
  --white: #fff;
  --cyan: #17B9EB;
  --cyan-soft: #94DCF2;
  --teal: #0D6985;
  --ink-soft: #56658C;
  --muted: #8A97B5;
  --on-cyan: #062038;
  --line: rgba(8, 20, 62, .09);
  --line-strong: rgba(8, 20, 62, .12);
  --line-light: rgba(255, 255, 255, .14);
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, sans-serif;
  --mono: ui-monospace, SFMono-Regular, Menlo, monospace;
  --wrap: 1120px;
  --pad-x: 28px;
  --header-h: 64px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  text-wrap: pretty;
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--cyan); }

img { max-width: 100%; }

code { font-family: var(--mono); }

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

.page { width: 100%; overflow-x: hidden; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  background: var(--cyan);
  color: var(--on-cyan);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 620;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; color: var(--on-cyan); }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
}
.wrap-narrow { max-width: 820px; }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 20, 62, .92);
  backdrop-filter: saturate(140%) blur(12px);
  -webkit-backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(148, 220, 242, .14);
}

.header-inner {
  padding: 14px var(--pad-x);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  color: #fff;
  font-size: 17px;
  font-weight: 640;
  letter-spacing: -.02em;
}
.brand:hover { color: #fff; }

/* Ícone do app usado como marca no cabeçalho e no rodapé. */
.brand-icon {
  width: 28px;
  height: 28px;
  display: block;
  flex: none;
  border-radius: 7px;
}

.footer-icon {
  width: 20px;
  height: 20px;
  display: block;
  flex: none;
  border-radius: 5px;
}

.nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 13.5px;
}
.nav a { color: rgba(255, 255, 255, .66); }
.nav a:hover { color: var(--cyan-soft); }

/* ---------- Botões ---------- */

.btn {
  display: inline-block;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  border-radius: 10px;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}

.btn-primary {
  background: var(--cyan);
  color: var(--on-cyan);
  font-weight: 640;
}
.btn-primary:hover { background: var(--cyan-soft); color: var(--on-cyan); }

.btn-ghost {
  border: 1px solid rgba(148, 220, 242, .32);
  color: #fff;
  font-weight: 520;
  background: transparent;
}
.btn-ghost:hover { border-color: var(--cyan-soft); color: var(--cyan-soft); }

.btn-sm {
  font-size: 13.5px;
  font-weight: 620;
  padding: 9px 16px;
  border-radius: 8px;
}

.btn-lg { font-size: 15.5px; padding: 14px 26px; }
.btn-ghost.btn-lg { padding: 13px 22px; }

/* ---------- Seções ---------- */

.section { padding: 84px var(--pad-x); scroll-margin-top: var(--header-h); }
.section-white { background: var(--white); }
.section-bg { background: var(--bg); }
.section-navy { background: var(--navy); color: #fff; }
.section-divide { border-bottom: 1px solid rgba(8, 20, 62, .08); }

.eyebrow {
  margin: 0 0 14px;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow-light { color: var(--cyan-soft); }

.h2 {
  margin: 0 0 44px;
  font-size: 38px;
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 640;
}
.h2-narrow { max-width: 20em; }
.h2-wide { max-width: 22em; }
.h2-tight { margin-bottom: 18px; line-height: 1.08; }

/* ---------- Hero ---------- */

.hero { padding: 88px var(--pad-x) 96px; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 64px;
  align-items: center;
}

.hero .eyebrow { margin-bottom: 22px; }

.hero h1 {
  margin: 0 0 24px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: -.035em;
  font-weight: 660;
  max-width: 15em;
}

.hero-lead {
  margin: 0 0 34px;
  font-size: 19px;
  line-height: 1.55;
  color: rgba(255, 255, 255, .72);
  max-width: 30em;
}

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

.hero-meta {
  margin: 22px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  line-height: 1.7;
  color: rgba(148, 220, 242, .72);
}

.hero-shot-wrap { display: flex; justify-content: center; }

.hero-shot {
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(148, 220, 242, .16), rgba(148, 220, 242, 0));
  border: 1px solid rgba(148, 220, 242, .18);
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, .7);
}
.hero-shot img {
  display: block;
  width: 320px;
  height: auto;
  border-radius: 17px;
}

/* ---------- Problema ---------- */

.statement {
  margin: 0 0 20px;
  font-size: 30px;
  line-height: 1.32;
  letter-spacing: -.02em;
  font-weight: 560;
}
.statement-sub {
  margin: 0;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.statement-sub strong { color: var(--navy); font-weight: 620; }

/* ---------- Como funciona ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.step {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: start;
}
.step-num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--cyan);
  padding-top: 3px;
}
.step h3 {
  margin: 0 0 7px;
  font-size: 19px;
  font-weight: 620;
  letter-spacing: -.015em;
}
.step p {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Demo interativa ---------- */

.demo {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 26px;
  box-shadow: 0 20px 40px -28px rgba(8, 20, 62, .28);
}

.demo-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 20px;
}

.demo-kicker {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

.demo-chip {
  font-family: var(--mono);
  font-size: 11px;
  padding: 4px 9px;
  border-radius: 6px;
  background: rgba(8, 20, 62, .06);
  color: var(--ink-soft);
  white-space: nowrap;
}
.demo-chip.is-focusing {
  background: rgba(23, 185, 235, .14);
  color: var(--teal);
}

.demo-body {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 26px;
  align-items: center;
}

.ring { position: relative; width: 160px; height: 160px; }
.ring svg { width: 160px; height: 160px; transform: rotate(-90deg); }
.ring circle[data-demo="ring"] { transition: stroke-dashoffset .2s linear, stroke .3s ease; }

.ring-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.ring-clock {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -.03em;
  font-variant-numeric: tabular-nums;
}
.ring-task { font-size: 12px; color: var(--muted); text-align: center; }

.demo-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.demo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 12px;
  border-radius: 9px;
  background: var(--bg);
  border: 1px solid rgba(8, 20, 62, .06);
}
.demo-row-name { font-size: 14px; font-weight: 500; }
.demo-row-status {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
}
.demo-row-status.is-blocked { color: var(--teal); }

.demo-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 20, 62, .07);
}

.btn-demo {
  font-size: 14.5px;
  font-weight: 620;
  padding: 11px 20px;
  border-radius: 9px;
  flex: none;
}
.btn-demo:hover { background: var(--teal); color: #fff; }

.demo-hint { font-size: 12.5px; line-height: 1.5; color: var(--muted); }

/* ---------- Recursos ---------- */

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
  background: var(--bg);
  transition: border-color .15s ease;
}
.card:hover { border-color: var(--cyan-soft); }
.card h3 {
  margin: 0 0 10px;
  font-size: 18.5px;
  font-weight: 620;
  letter-spacing: -.015em;
}
.card p {
  margin: 0 0 12px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.card-note {
  margin: 0 !important;
  font-size: 13.5px !important;
  line-height: 1.6;
  color: var(--teal) !important;
}

.cards-footnote {
  margin: 26px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ---------- Diferença ---------- */

.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.compare-col {
  border: 1px solid var(--line-light);
  border-radius: 14px;
  padding: 26px;
}
.compare-col-ours {
  border-color: rgba(23, 185, 235, .45);
  background: rgba(23, 185, 235, .07);
}

.compare-title {
  margin: 0 0 18px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .5);
}
.compare-title-ours { color: var(--cyan-soft); }

.compare-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15.5px;
  line-height: 1.5;
  color: rgba(255, 255, 255, .62);
}
.compare-list-ours { color: #fff; }

.compare-footnote {
  margin: 24px 0 0;
  font-size: 14.5px;
  line-height: 1.7;
  color: rgba(148, 220, 242, .8);
  max-width: 52em;
}

/* ---------- Privacidade ---------- */

.privacy-grid {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: start;
}
.privacy-lead {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.spec-list { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.spec-row {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.spec-row-last { border-bottom: 1px solid var(--line); }
.spec-row dt { font-size: 14.5px; font-weight: 620; }
.spec-row dd {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
}

/* ---------- Veja o app ---------- */

#app .h2 { margin-bottom: 28px; }

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.tab {
  cursor: pointer;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 560;
  padding: 9px 15px;
  border-radius: 8px;
  border: 1px solid var(--line-strong);
  background: var(--white);
  color: var(--ink-soft);
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.tab:hover { border-color: var(--cyan-soft); color: var(--navy); }
.tab[aria-selected="true"] {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.shot-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 32px;
  align-items: center;
  box-shadow: 0 24px 48px -34px rgba(8, 20, 62, .35);
}

.shot-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
  background: var(--bg);
  border-radius: 12px;
  padding: 20px;
}
.shot-frame img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 420px;
  border-radius: 8px;
  box-shadow: 0 12px 28px -16px rgba(8, 20, 62, .4);
}

.shot-title {
  margin: 0 0 12px;
  font-size: 22px;
  font-weight: 640;
  letter-spacing: -.02em;
}
.shot-caption {
  margin: 0;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* ---------- Limites ---------- */

#limites .h2 { margin-bottom: 20px; }

.limits-lead {
  margin: 0 0 34px;
  font-size: 17.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 44em;
}

.limits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px 28px;
  font-size: 15px;
  line-height: 1.55;
}
.limits li { padding: 14px 0; border-top: 1px solid var(--line); }

/* ---------- FAQ ---------- */

#faq .h2 { margin-bottom: 34px; }

.faq { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid rgba(8, 20, 62, .1); }
.faq:not(:empty)::after {
  content: "";
  display: block;
  border-top: 1px solid rgba(8, 20, 62, .1);
}

.faq-q {
  width: 100%;
  cursor: pointer;
  background: none;
  border: 0;
  font-family: inherit;
  text-align: left;
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--navy);
}
.faq-q:hover { color: var(--teal); }
.faq-q span:first-child {
  font-size: 17px;
  font-weight: 560;
  letter-spacing: -.01em;
}
.faq-sign {
  font-family: var(--mono);
  font-size: 16px;
  color: var(--cyan);
  flex: none;
}

.faq-a {
  margin: 0;
  padding: 0 0 22px;
  max-width: 60ch;
  font-size: 15.5px;
  line-height: 1.65;
  color: var(--ink-soft);
}
.faq-a[hidden] { display: none; }

/* ---------- Download ---------- */

#download { padding: 92px var(--pad-x); }

.download-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.h2-download {
  margin-bottom: 18px;
  font-size: 44px;
  line-height: 1.04;
  letter-spacing: -.035em;
  font-weight: 660;
}

.download-lead {
  margin: 0 0 28px;
  font-size: 17.5px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .72);
  max-width: 26em;
}
#download .btn-lg { font-size: 16px; padding: 15px 28px; }

.download-price {
  margin: 16px 0 0;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(148, 220, 242, .72);
}

.fact-list {
  margin: 0;
  display: flex;
  flex-direction: column;
  font-family: var(--mono);
  font-size: 13px;
}
.fact {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
  border-top: 1px solid var(--line-light);
}
.fact-last { border-bottom: 1px solid var(--line-light); }
.fact dt { color: rgba(255, 255, 255, .5); }
.fact dd { margin: 0; text-align: right; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, .5);
  padding: 34px var(--pad-x);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .8);
  font-weight: 560;
}
.footer-link { color: inherit; }
.footer-link:hover { color: var(--cyan-soft); }
.footer-meta { font-family: var(--mono); font-size: 12px; }

/* ---------- Modal de cadastro ---------- */

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px var(--pad-x);
  background: rgba(5, 14, 44, .68);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  overflow-y: auto;
  animation: modal-fade .16s ease;
}
.modal-backdrop[hidden] { display: none; }

.modal {
  position: relative;
  width: 100%;
  max-width: 460px;
  margin: auto;
  padding: 32px 32px 28px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 24px 64px rgba(5, 14, 44, .38);
  animation: modal-rise .18s ease;
}

@keyframes modal-fade { from { opacity: 0; } to { opacity: 1; } }
@keyframes modal-rise { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}
.modal-close:hover { background: var(--bg); color: var(--navy); }

.modal-title {
  margin: 8px 0 0;
  font-size: 28px;
  font-weight: 680;
  letter-spacing: -.025em;
}

.modal-lead {
  margin: 10px 0 0;
  color: var(--ink-soft);
  font-size: 15.5px;
  line-height: 1.6;
}

.modal-form { margin-top: 22px; }

.field { display: block; margin-bottom: 14px; }

.field-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 620;
  color: var(--navy);
}

.field-input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  font-family: inherit;
  font-size: 15.5px;
  transition: border-color .15s ease;
}
.field-input:focus { border-color: var(--cyan); }
.field-input[aria-invalid="true"] { border-color: #C2384A; }
.field-input:disabled { background: var(--bg); color: var(--muted); }

.field-error {
  margin: 0 0 14px;
  color: #C2384A;
  font-size: 13.5px;
  line-height: 1.5;
}
.field-error[hidden] { display: none; }

.modal-submit { width: 100%; text-align: center; }
.modal-submit[disabled] { opacity: .6; cursor: progress; }

.modal-fineprint {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 12.5px;
  line-height: 1.55;
}

.download-icon {
  display: block;
  width: 96px;
  height: 96px;
  margin-bottom: 22px;
  border-radius: 22px;
  box-shadow: 0 14px 34px rgba(2, 8, 26, .45);
}

.download-note {
  margin: 8px 0 0;
  color: var(--cyan-soft);
  font-size: 13.5px;
}

body.is-modal-open { overflow: hidden; }

/* ---------- Página de texto (privacidade) ---------- */

.legal-head { padding-bottom: 56px; }
.legal-head h1 {
  margin: 0 0 20px;
  font-size: 44px;
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 660;
  max-width: 16em;
}

.legal-toc {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  font-size: 13.5px;
}
.legal-toc a { color: var(--cyan-soft); }
.legal-toc a:hover { color: #fff; }

.legal { max-width: 720px; }

.legal h2 {
  margin: 52px 0 14px;
  font-size: 23px;
  line-height: 1.2;
  letter-spacing: -.02em;
  font-weight: 660;
  scroll-margin-top: calc(var(--header-h) + 16px);
}
.legal h2:first-child { margin-top: 0; }

.legal h3 {
  margin: 28px 0 10px;
  font-size: 16px;
  font-weight: 640;
}

.legal p,
.legal li {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.68;
}

.legal p { margin: 0 0 14px; }

.legal ul { margin: 0 0 14px; padding-left: 20px; }
.legal li { margin-bottom: 8px; }
.legal li strong { color: var(--navy); font-weight: 620; }

.legal-note {
  margin: 40px 0 0;
  padding: 18px 20px;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
}
.legal-note p { margin: 0; font-size: 14.5px; }

.legal-updated {
  margin: 40px 0 0;
  font-family: var(--mono);
  font-size: 12.5px;
  color: var(--muted);
}

/* ---------- Responsivo ---------- */

@media (max-width: 960px) {
  .section { padding: 64px var(--pad-x); }
  .hero { padding: 64px var(--pad-x) 72px; }
  .hero h1 { font-size: 44px; }
  .h2 { font-size: 32px; }
  .h2-download { font-size: 36px; }
  .statement { font-size: 25px; }

  .hero-grid,
  .steps-grid,
  .privacy-grid,
  .download-grid { grid-template-columns: 1fr; gap: 40px; }

  .cards,
  .limits { grid-template-columns: repeat(2, 1fr); }

  .compare { grid-template-columns: 1fr; }

  .shot-panel { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 720px) {
  :root { --pad-x: 20px; }

  .header-inner { gap: 14px; flex-wrap: wrap; }
  .nav {
    order: 3;
    width: 100%;
    margin-left: 0;
    gap: 16px;
    overflow-x: auto;
    padding-bottom: 2px;
    -webkit-overflow-scrolling: touch;
  }
  .nav a { white-space: nowrap; }
  .btn-sm { margin-left: auto; }

  .hero h1 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .h2 { font-size: 27px; }
  .h2-download { font-size: 32px; }
  .statement { font-size: 22px; }

  .cards,
  .limits { grid-template-columns: 1fr; }

  .demo { padding: 20px; }
  .demo-body { grid-template-columns: 1fr; justify-items: center; gap: 20px; }
  .demo-rows { width: 100%; }
  .demo-foot { flex-direction: column; align-items: flex-start; }

  .spec-row { grid-template-columns: 1fr; gap: 6px; }

  .shot-panel { padding: 18px; }
  .shot-frame { min-height: 0; padding: 14px; }

  .fact { flex-direction: column; gap: 4px; }
  .fact dd { text-align: left; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 10px; }

  .modal { padding: 26px 20px 22px; border-radius: 14px; }
  .modal-title { font-size: 24px; }

  .legal-head h1 { font-size: 32px; }
  .legal h2 { font-size: 20px; margin-top: 40px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}
