/* ==========================================================================
   LiDARo landing — dark, cinematic, on-device 3D scanning studio.
   No external dependencies. Legal pages (privacy.html / terms.html) share
   this sheet via: site-header, brand, site-nav, container, main.legal,
   .effective, .inline, site-footer — keep those working.
   ========================================================================== */

:root {
  --bg: #0a0d11;
  --bg-elev: #10151b;
  --card: #131a21;
  --card-hover: #18202a;
  --border: #222b35;
  --border-strong: #2d3844;
  --text: #eef2f5;
  --dim: #9aa6b2;
  --dim-2: #7b8895;
  --accent: #46c8bc;
  --accent-strong: #5fe3d6;
  --accent-dark: #2f9c92;
  --accent-ink: #06211e;
  --grad: linear-gradient(120deg, #46c8bc 0%, #43b8d4 55%, #4e9de0 100%);
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-card: 0 10px 40px rgba(0, 0, 0, 0.35);
  --wrap: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 76px; }

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

.faq-list summary:focus-visible,
.play-overlay:focus-visible { outline-offset: -3px; }

/* Visually hidden (screen-reader only) */
.vh {
  position: absolute;
  width: 1px; height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.skip-link {
  position: absolute;
  top: -48px; left: 16px;
  z-index: 100;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 650;
  padding: 10px 18px;
  border-radius: 0 0 12px 12px;
  text-decoration: none;
  transition: top 0.15s ease;
}

.skip-link:focus { top: 0; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI",
    Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

::selection { background: rgba(70, 200, 188, 0.35); }

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

.container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Header / nav (glass) ---------- */

header.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 13, 17, 0.72);
  -webkit-backdrop-filter: saturate(1.4) blur(16px);
  backdrop-filter: saturate(1.4) blur(16px);
  border-bottom: 1px solid rgba(34, 43, 53, 0.7);
}

.site-header .container {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 700;
  font-size: 1.06rem;
  letter-spacing: 0.05em;
}

.brand img { width: 34px; height: 34px; border-radius: 8px; }

nav.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

nav.site-nav a {
  color: var(--dim);
  text-decoration: none;
  font-size: 0.93rem;
  transition: color 0.15s ease;
}

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

nav.site-nav a.nav-cta {
  color: var(--accent-ink);
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-weight: 650;
  transition: background 0.15s ease, transform 0.15s ease;
}

nav.site-nav a.nav-cta:hover { background: var(--accent-strong); color: var(--accent-ink); }

/* Landing only (body.home): collapse section anchors on small screens.
   Legal pages keep their nav links — they have no .nav-cta to fall back on. */
@media (max-width: 820px) {
  .home nav.site-nav a:not(.nav-cta) { display: none; }
}

/* ---------- Buttons ---------- */

.cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 650;
  font-size: 1rem;
  line-height: 1.2;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
    transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:active { transform: translateY(1px); }

.btn-secondary {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.btn-secondary:hover { border-color: var(--accent); color: var(--accent-strong); }

/* App Store badge (official-style, self-contained) */
.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  background: #000;
  border: 1px solid #3a4450;
  border-radius: 13px;
  padding: 9px 20px 10px 16px;
  text-decoration: none;
  color: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, transform 0.15s ease;
}

.store-badge:hover {
  border-color: #5a6673;
  transform: translateY(-1px);
}

.store-badge:active { transform: translateY(1px); }

.store-badge svg { width: 26px; height: 31px; flex: none; }

.store-badge .txt { display: flex; flex-direction: column; line-height: 1.16; text-align: left; }
.store-badge .txt small { font-size: 0.68rem; font-weight: 500; color: #cfd6dd; letter-spacing: 0.01em; }
.store-badge .txt strong { font-size: 1.18rem; font-weight: 600; letter-spacing: 0.005em; }

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

.hero {
  position: relative;
  padding: 84px 0 64px;
  overflow: hidden;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.hero::before {
  width: 560px; height: 560px;
  left: -160px; top: -180px;
  background: rgba(70, 200, 188, 0.14);
}

.hero::after {
  width: 520px; height: 520px;
  right: -140px; bottom: -220px;
  background: rgba(78, 157, 224, 0.12);
}

.hero .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.72fr);
  gap: 56px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.5rem, 5.4vw, 3.9rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.022em;
  margin-bottom: 20px;
}

.hero-copy h1 .grad {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy .tagline {
  font-size: 1.14rem;
  color: var(--dim);
  max-width: 34em;
  margin-bottom: 30px;
}

.trust-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 22px;
  color: var(--dim-2);
  font-size: 0.9rem;
}

.trust-row span { display: inline-flex; align-items: center; gap: 7px; }

.trust-row .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex: none;
}

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; }

.device {
  position: relative;
  width: min(300px, 78vw);
  border-radius: 46px;
  background: #05070a;
  border: 1px solid #2c3641;
  box-shadow:
    inset 0 0 0 9px #12181f,
    0 24px 70px rgba(0, 0, 0, 0.55),
    0 4px 18px rgba(0, 0, 0, 0.4);
  padding: 13px;
}

.device::after {
  content: "";
  position: absolute;
  top: 22px; left: 50%;
  transform: translateX(-50%);
  width: 84px; height: 24px;
  border-radius: 999px;
  background: #05070a;
  z-index: 2;
}

.device .screen {
  border-radius: 34px;
  overflow: hidden;
  aspect-ratio: 1180 / 2556;
  background: #0d1117;
}

.device .screen video,
.device .screen img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.device.small { width: min(240px, 100%); border-radius: 38px; padding: 10px; }
.device.small::after { top: 17px; width: 66px; height: 19px; }
.device.small .screen { border-radius: 29px; }

@media (max-width: 900px) {
  .hero { padding: 56px 0 48px; }
  .hero .container { grid-template-columns: 1fr; gap: 44px; }
  .hero-copy { text-align: center; }
  .hero-copy .tagline { margin-left: auto; margin-right: auto; }
  .cta-row { justify-content: center; }
  .trust-row { justify-content: center; }
}

/* ---------- Format pills strip ---------- */

.formats {
  padding: 10px 0 6px;
}

.formats .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.formats .label {
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dim-2);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pill {
  font-size: 0.88rem;
  font-weight: 600;
  font-family: ui-monospace, "SF Mono", SFMono-Regular, Menlo, monospace;
  color: var(--dim);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 999px;
  padding: 6px 14px;
}

.pill em { color: var(--accent); font-style: normal; }

/* ---------- Section base ---------- */

section { padding: 72px 0; position: relative; }

.section-kicker {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

section h2 {
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 750;
  letter-spacing: -0.015em;
  line-height: 1.12;
  margin-bottom: 14px;
}

section p.section-lead {
  color: var(--dim);
  font-size: 1.06rem;
  max-width: 44em;
  margin-bottom: 40px;
}

/* Scroll-reveal — hidden state only when JS is confirmed running
   (html.js is added by an inline script; without JS everything stays visible). */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--d, 0s);
}

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Minecraft showcase ---------- */

.showcase {
  background:
    radial-gradient(700px 340px at 80% 0%, rgba(70, 200, 188, 0.07), transparent 70%),
    var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.showcase-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr);
  gap: 40px;
  align-items: end;
  margin-bottom: 36px;
}

.showcase-head .aside {
  color: var(--dim);
  font-size: 0.98rem;
  padding-bottom: 6px;
}

@media (max-width: 820px) {
  .showcase-head { grid-template-columns: 1fr; gap: 12px; }
}

.video-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card);
  background: #000;
}

.video-frame video { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }

.video-frame .play-overlay {
  font: inherit;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(0deg, rgba(5, 8, 11, 0.35), rgba(5, 8, 11, 0.08));
  border: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}

.video-frame .play-overlay:hover { background: linear-gradient(0deg, rgba(5, 8, 11, 0.5), rgba(5, 8, 11, 0.12)); }

.video-frame .play-overlay .play-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(10, 13, 17, 0.82);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  font-weight: 650;
  font-size: 1rem;
  border-radius: 999px;
  padding: 14px 26px 14px 18px;
}

.play-btn .tri {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.play-btn .tri::after {
  content: "";
  display: block;
  margin-left: 3px;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent var(--accent-ink);
}

.showcase .fine {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--dim-2);
}

/* ---------- Feature grid (scan modes) ---------- */

.modes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 1020px) { .modes-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 560px)  { .modes-grid { grid-template-columns: 1fr; } }

.mode-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.mode-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.mode-card .shot {
  aspect-ratio: 780 / 1120;
  overflow: hidden;
  background: #0d1117;
  border-bottom: 1px solid var(--border);
}

.mode-card .shot img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
}

.mode-card .body { padding: 18px 20px 22px; }

.mode-card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mode-card h3 .tag {
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--accent);
  border: 1px solid rgba(70, 200, 188, 0.4);
  border-radius: 6px;
  padding: 2px 6px;
  text-transform: uppercase;
}

.mode-card p { color: var(--dim); font-size: 0.93rem; }

/* Small feature tiles */
.tiles {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

@media (max-width: 820px) { .tiles { grid-template-columns: 1fr; } }

.tile {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.tile h3 { font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.tile p { color: var(--dim); font-size: 0.92rem; }

.tile .ico {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(70, 200, 188, 0.1);
  border: 1px solid rgba(70, 200, 188, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  color: var(--accent-strong);
}

.tile .ico svg { width: 20px; height: 20px; }

/* ---------- Animate section ---------- */

.animate-section .container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

@media (max-width: 900px) {
  .animate-section .container { grid-template-columns: 1fr; gap: 40px; }
}

.animate-copy ul {
  list-style: none;
  margin-top: 22px;
  display: grid;
  gap: 12px;
}

.animate-copy ul li {
  position: relative;
  padding-left: 30px;
  color: var(--dim);
  font-size: 0.97rem;
}

.animate-copy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 5px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: rgba(70, 200, 188, 0.14);
  border: 1px solid rgba(70, 200, 188, 0.5);
}

.animate-copy ul li::after {
  content: "";
  position: absolute;
  left: 4.5px; top: 9.5px;
  width: 7px; height: 4px;
  border-left: 1.6px solid var(--accent-strong);
  border-bottom: 1.6px solid var(--accent-strong);
  transform: rotate(-45deg);
}

.animate-copy ul li strong { color: var(--text); font-weight: 650; }

.animate-visual {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: center;
}

@media (max-width: 560px) {
  .animate-visual { grid-template-columns: 1fr; justify-items: center; }
  .animate-visual .device.small { width: min(240px, 78vw); }
}

.flip-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: #fff;
  box-shadow: var(--shadow-card);
}

.flip-card video { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }

.flip-card figcaption {
  font-size: 0.8rem;
  color: var(--dim-2);
  text-align: center;
  padding: 10px 12px;
  background: var(--card);
  border-top: 1px solid var(--border);
}

/* ---------- Gallery (scroll-snap) ---------- */

.gallery { padding-top: 0; }

.gallery .rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: min(230px, 62vw);
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 24px 22px;
  max-width: var(--wrap);
  margin: 0 auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border-strong) transparent;
}

.gallery .rail figure { scroll-snap-align: center; }

.gallery .rail img {
  width: 100%;
  border-radius: 22px;
  border: 1px solid var(--border-strong);
  background: #0d1117;
}

.gallery .rail figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--dim-2);
}

/* ---------- Privacy band ---------- */

.privacy-band {
  background:
    radial-gradient(600px 300px at 20% 100%, rgba(70, 200, 188, 0.06), transparent 70%),
    var(--bg-elev);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.privacy-band h2 { margin-bottom: 10px; }

.privacy-band p {
  color: var(--dim);
  max-width: 40em;
  margin: 0 auto;
}

.privacy-band .lock {
  width: 52px; height: 52px;
  margin: 0 auto 20px;
  border-radius: 16px;
  background: rgba(70, 200, 188, 0.1);
  border: 1px solid rgba(70, 200, 188, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-strong);
}

.privacy-band .lock svg { width: 24px; height: 24px; }

/* ---------- Pricing ---------- */

.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(290px, 100%), 1fr));
  gap: 22px;
  align-items: stretch;
  max-width: 860px;
}

.plans-cta {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.plans-cta .hint { color: var(--dim-2); font-size: 0.9rem; }

.plan {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plan.highlight {
  border-color: rgba(70, 200, 188, 0.55);
  background:
    radial-gradient(420px 200px at 100% 0%, rgba(70, 200, 188, 0.08), transparent 70%),
    var(--card);
}

.plan .flag {
  position: absolute;
  top: -12px; right: 22px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--accent-ink);
  background: var(--accent);
  border-radius: 999px;
  padding: 4px 12px;
}

.plan h3 { font-size: 1.22rem; margin-bottom: 4px; }

.plan .price {
  font-size: 1.02rem;
  color: var(--accent-strong);
  font-weight: 700;
  margin-bottom: 18px;
}

.plan ul { list-style: none; display: grid; gap: 9px; }

.plan ul li {
  padding-left: 26px;
  position: relative;
  color: var(--dim);
  font-size: 0.94rem;
}

.plan ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

.plan p.note {
  margin-top: 18px;
  font-size: 0.83rem;
  color: var(--dim-2);
}

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

.faq-list { max-width: 760px; display: grid; gap: 12px; }

.faq-list details {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-list details[open] { border-color: var(--border-strong); }

.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 52px 18px 22px;
  font-weight: 650;
  font-size: 0.99rem;
  position: relative;
}

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

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--dim-2);
  transition: transform 0.2s ease;
}

.faq-list details[open] summary::after { transform: translateY(-50%) rotate(45deg); color: var(--accent); }

.faq-list .faq-body {
  padding: 0 22px 20px;
  color: var(--dim);
  font-size: 0.94rem;
}

.faq-list .faq-body a { color: var(--accent); text-decoration: none; }
.faq-list .faq-body a:hover { text-decoration: underline; }

/* ---------- Final CTA ---------- */

.final-cta { text-align: center; padding: 88px 0 96px; position: relative; overflow: hidden; }

.final-cta::before {
  content: "";
  position: absolute;
  left: 50%; bottom: -260px;
  transform: translateX(-50%);
  width: 720px; height: 460px;
  border-radius: 50%;
  background: rgba(70, 200, 188, 0.1);
  filter: blur(90px);
  pointer-events: none;
}

.final-cta .container { position: relative; }

.final-cta img.app-icon {
  width: 88px; height: 88px;
  border-radius: 21px;
  margin: 0 auto 26px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5);
}

.final-cta h2 { margin-bottom: 12px; }

.final-cta p { color: var(--dim); margin-bottom: 30px; }

.final-cta .cta-row { justify-content: center; }

/* ---------- Support / callout ---------- */

.callout {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--dim);
}

.callout strong { color: var(--text); }
.callout p + p { margin-top: 6px; }

a.inline { color: var(--accent); text-decoration: none; }
a.inline:hover { text-decoration: underline; }

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

footer.site-footer {
  border-top: 1px solid var(--border);
  padding: 34px 0 50px;
  font-size: 0.88rem;
  color: var(--dim-2);
}

.site-footer .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.site-footer nav { display: flex; gap: 18px; flex-wrap: wrap; }

.site-footer a { color: var(--dim); text-decoration: none; }
.site-footer a:hover { color: var(--accent); }

/* ---------- Legal pages (privacy.html / terms.html) ---------- */

main.legal {
  padding: 48px 0 24px;
  max-width: 760px;
  margin: 0 auto;
}

main.legal h1 { font-size: 2rem; margin-bottom: 4px; }

main.legal p.effective {
  color: var(--dim);
  font-size: 0.9rem;
  margin-bottom: 36px;
}

main.legal h2 { font-size: 1.25rem; margin: 34px 0 10px; }

main.legal p, main.legal li { color: var(--dim); margin-bottom: 10px; }

main.legal ul { padding-left: 22px; margin-bottom: 10px; }

main.legal strong { color: var(--text); }
