/* =========================================================
   Niblet — Landing Page Styles
   ========================================================= */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body, h1, h2, h3, h4, p, figure, blockquote, dl, dd, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, picture, svg { display: block; max-width: 100%; }
button, input { font: inherit; color: inherit; }
a { color: inherit; text-decoration: none; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ---------- Design tokens ---------- */
:root {
  --bg: #0A1124;
  --bg-soft: #0D1530;
  --bg-elevated: #101a38;
  --surface: rgba(255, 255, 255, 0.06);
  --surface-strong: rgba(255, 255, 255, 0.09);
  --surface-border: rgba(255, 255, 255, 0.12);
  --text-primary: #FFFFFF;
  --text-secondary: rgba(255, 255, 255, 0.6);
  --text-tertiary: rgba(255, 255, 255, 0.38);
  --accent-primary: #6A4CFF;
  --accent-secondary: #1FA9B8;
  --gradient-start: #4F3FFF;
  --gradient-end: #1FA9B8;
  --shadow-color: rgba(3, 6, 20, 0.55);
  --nav-bg: rgba(10, 17, 36, 0.72);
  --overlay-line: rgba(255, 255, 255, 0.08);
  --store-disabled-bg: rgba(255, 255, 255, 0.05);
  --store-disabled-border: rgba(255, 255, 255, 0.14);
  --success: #2DBE6C;
  --scrim-strong: rgba(10, 17, 36, .92);
  --scrim-mid: rgba(10, 17, 36, .55);

  --font-display: -apple-system, BlinkMacSystemFont, "SF Pro Rounded", ui-rounded, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --container: 1160px;
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --ease: cubic-bezier(.16, 1, .3, 1);
}

:root[data-theme="light"] {
  --bg: #F4F5FA;
  --bg-soft: #ECEEF6;
  --bg-elevated: #FFFFFF;
  --surface: rgba(10, 17, 36, 0.04);
  --surface-strong: rgba(10, 17, 36, 0.06);
  --surface-border: rgba(10, 17, 36, 0.09);
  --text-primary: #0B1020;
  --text-secondary: rgba(11, 16, 32, 0.62);
  --text-tertiary: rgba(11, 16, 32, 0.42);
  --shadow-color: rgba(20, 26, 50, 0.14);
  --nav-bg: rgba(244, 245, 250, 0.78);
  --overlay-line: rgba(10, 17, 36, 0.08);
  --store-disabled-bg: rgba(10, 17, 36, 0.03);
  --store-disabled-border: rgba(10, 17, 36, 0.12);
  --scrim-strong: rgba(244, 245, 250, .94);
  --scrim-mid: rgba(244, 245, 250, .6);
}

/* ---------- Base ---------- */
body {
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .4s var(--ease), color .4s var(--ease);
}

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

section { position: relative; }

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-secondary);
  margin-bottom: 14px;
}

.gradient-text {
  background: linear-gradient(100deg, var(--gradient-start), var(--gradient-end));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-head h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: -.02em;
  margin-bottom: 16px;
}

.section-head p {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.6vw, 18px);
}

.section-pad { padding: 140px 0; }
.section-alt { background: var(--bg-soft); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  padding: 15px 28px;
  border: none;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), opacity .2s;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn-primary {
  color: #fff;
  background: linear-gradient(100deg, var(--gradient-start), var(--gradient-end));
  box-shadow: 0 8px 30px -6px rgba(106, 76, 255, .55);
}
.btn-primary:hover { box-shadow: 0 12px 40px -6px rgba(106, 76, 255, .7); transform: translateY(-2px); }

.btn-ghost {
  color: var(--text-primary);
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(20px);
}
.btn-ghost:hover { background: var(--surface-strong); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  transition: background-color .4s var(--ease), border-color .4s var(--ease), backdrop-filter .4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: var(--nav-bg);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border-bottom-color: var(--overlay-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 18px -4px rgba(106, 76, 255, .65);
}
.brand-mark img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text-secondary);
}
.nav-links a { transition: color .25s; }
.nav-links a:hover { color: var(--text-primary); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toggle-pill {
  display: flex;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
}
.toggle-pill button {
  border: none;
  background: transparent;
  color: var(--text-secondary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12.5px;
  padding: 6px 11px;
  border-radius: 999px;
  cursor: pointer;
  transition: background-color .25s, color .25s;
}
.toggle-pill button.active {
  background: var(--surface-strong);
  color: var(--text-primary);
}

.icon-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  cursor: pointer;
  transition: background-color .25s, transform .3s;
}
.icon-btn:hover { background: var(--surface-strong); }
.icon-btn svg { width: 17px; height: 17px; }
.icon-btn .icon-moon { display: none; }
:root[data-theme="light"] .icon-btn .icon-sun { display: none; }
:root[data-theme="light"] .icon-btn .icon-moon { display: block; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-collage { position: absolute; inset: 0; overflow: hidden; }
.collage-tile {
  position: absolute;
  object-fit: cover;
  border-radius: 26px;
  filter: blur(1px) saturate(1.05);
  opacity: .5;
  box-shadow: 0 30px 90px -25px rgba(0, 0, 0, .65);
}
:root[data-theme="light"] .collage-tile { opacity: .32; }
.collage-tile.tile-1 {
  width: clamp(200px, 24vw, 320px);
  height: clamp(420px, 50vw, 660px);
  top: -70px; left: 1%;
  transform: rotate(-9deg);
}
.collage-tile.tile-2 {
  width: clamp(220px, 26vw, 340px);
  height: clamp(440px, 52vw, 700px);
  top: -30px; right: 2%;
  transform: rotate(7deg);
}
.collage-tile.tile-3 {
  width: clamp(190px, 22vw, 300px);
  height: clamp(400px, 46vw, 620px);
  bottom: -180px; left: 36%;
  transform: rotate(-4deg);
  opacity: .34;
}
:root[data-theme="light"] .collage-tile.tile-3 { opacity: .22; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 58% at 50% 34%, var(--scrim-strong) 0%, var(--scrim-mid) 48%, transparent 78%),
    linear-gradient(180deg, transparent, var(--bg) 94%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  opacity: .35;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
}
:root[data-theme="light"] .hero-grain { opacity: .08; }

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 22px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  backdrop-filter: blur(16px);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .02em;
  color: var(--text-secondary);
  margin-bottom: 28px;
}
.badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--accent-secondary);
  box-shadow: 0 0 0 0 rgba(31, 169, 184, .6);
  animation: pulse 2.2s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(31, 169, 184, .55); }
  70% { box-shadow: 0 0 0 8px rgba(31, 169, 184, 0); }
  100% { box-shadow: 0 0 0 0 rgba(31, 169, 184, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .badge .dot { animation: none; }
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -.03em;
  font-size: clamp(40px, 8vw, 84px);
  line-height: 1.04;
  max-width: 950px;
  margin-bottom: 24px;
}

.hero-sub {
  max-width: 580px;
  color: var(--text-secondary);
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-platforms {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-tertiary);
  margin-top: 18px;
  letter-spacing: .01em;
}

/* Waitlist form */
.waitlist-form {
  display: flex;
  gap: 10px;
  width: 100%;
  max-width: 460px;
}
.waitlist-form input {
  flex: 1;
  min-width: 0;
  padding: 15px 20px;
  border-radius: 999px;
  border: 1px solid var(--surface-border);
  background: var(--surface);
  color: var(--text-primary);
  backdrop-filter: blur(16px);
  font-size: 15px;
  transition: border-color .25s, background-color .25s;
}
.waitlist-form input::placeholder { color: var(--text-tertiary); }
.waitlist-form input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: var(--surface-strong);
}
.waitlist-form button {
  flex-shrink: 0;
}
.waitlist-form button .spinner {
  display: none;
  width: 15px; height: 15px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4);
  border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.waitlist-form.is-loading button .label { display: none; }
.waitlist-form.is-loading button .spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.waitlist-wrap { display: flex; flex-direction: column; align-items: center; }
.form-msg {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  min-height: 20px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.form-msg.show { opacity: 1; transform: translateY(0); }
.form-msg.success { color: var(--accent-secondary); }
.form-msg.error { color: #FF7A7A; }

.waitlist-form.hidden, .waitlist-disclaimer.hidden { display: none; }
.waitlist-disclaimer {
  margin-top: 16px;
  font-size: 13px;
  color: var(--text-tertiary);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { transition: opacity .4s ease; transform: none !important; }
}

/* ---------- Point grid (icon + copy lists) ---------- */
.point-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 760px;
  margin: 0 auto 64px;
}
@media (min-width: 700px) {
  .point-grid { grid-template-columns: 1fr 1fr; gap: 32px 48px; }
}
.point-item { display: flex; gap: 16px; align-items: flex-start; text-align: left; }
.point-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(106, 76, 255, .22), rgba(31, 169, 184, .18));
  border: 1px solid var(--surface-border);
  flex-shrink: 0;
}
.point-icon svg { width: 19px; height: 19px; stroke: var(--accent-secondary); }
.point-item h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16.5px;
  margin-bottom: 5px;
  letter-spacing: -.005em;
}
.point-item p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Import diagram (History section) ---------- */
.import-diagram {
  max-width: 640px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--surface-border);
  border-radius: var(--radius-lg);
  padding: 44px 32px;
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}
.import-chips { display: flex; flex-direction: column; gap: 12px; }
.import-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--surface-strong);
  border: 1px solid var(--surface-border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
}
.import-chip .dot-src { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.import-chip.letterboxd .dot-src { background: #00E054; }
.import-chip.imdb .dot-src { background: #F5C518; }
.import-arrow { color: var(--text-tertiary); flex-shrink: 0; }
.import-arrow svg { width: 26px; height: 26px; }
.import-target { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.import-target .brand-mark { width: 56px; height: 56px; border-radius: 16px; }
.import-check {
  position: absolute;
  bottom: 26px; right: -8px;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--success);
  display: flex; align-items: center; justify-content: center;
  border: 3px solid var(--bg);
}
.import-check svg { width: 11px; height: 11px; stroke: #fff; }
.import-target span { font-size: 12.5px; font-weight: 600; color: var(--text-secondary); }

/* ---------- Phone gallery (reused across sections) ---------- */
.phone-gallery {
  display: flex;
  gap: 28px;
  overflow-x: auto;
  padding: 20px 4px 40px;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}
.phone-gallery::-webkit-scrollbar { height: 6px; }
.phone-gallery::-webkit-scrollbar-thumb { background: var(--surface-border); border-radius: 3px; }

.phone-slide {
  flex: 0 0 auto;
  scroll-snap-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  will-change: transform;
}

.iphone-frame {
  width: 230px;
  height: 470px;
  border-radius: 42px;
  background: linear-gradient(160deg, #1a2340, #0c1226);
  border: 6px solid #05070f;
  box-shadow:
    0 0 0 2px rgba(255,255,255,.06) inset,
    0 30px 60px -20px var(--shadow-color);
  position: relative;
  padding: 10px;
  overflow: hidden;
}
:root[data-theme="light"] .iphone-frame {
  border-color: #0c1226;
}
.iphone-notch {
  position: absolute;
  top: 10px; left: 50%;
  transform: translateX(-50%);
  width: 90px; height: 22px;
  background: #05070f;
  border-radius: 12px;
  z-index: 3;
}
.iphone-screen {
  width: 100%; height: 100%;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.iphone-screen img,
.iphone-screen video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #0c1226;
}

.phone-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ---------- Showcase (media rows: video/image pairs & trios) ---------- */
.showcase-grid {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}
@media (min-width: 760px) {
  .showcase-grid {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 56px;
  }
}
@media (min-width: 960px) {
  .iphone-frame--hero { width: 260px; height: 532px; }
}

.showcase-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 300px;
}
.showcase-item .iphone-frame { margin-bottom: 28px; }
.showcase-item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.showcase-item p {
  color: var(--text-secondary);
  font-size: 14.5px;
  line-height: 1.6;
}

/* ---------- Compare table ---------- */
.compare-wrap {
  max-width: 900px;
  margin: 0 auto;
  overflow-x: auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--surface-border);
  background: var(--surface);
  backdrop-filter: blur(16px);
}
.compare-table { width: 100%; border-collapse: collapse; min-width: 620px; }
.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: center;
  font-size: 13.5px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--overlay-line);
}
.compare-table thead th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--text-secondary);
  padding-top: 22px;
}
.compare-table th:first-child,
.compare-table td:first-child {
  text-align: left;
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
  padding-left: 22px;
}
.compare-table .col-niblet { background: linear-gradient(180deg, rgba(106, 76, 255, .14), rgba(31, 169, 184, .06)); }
.compare-table thead .col-niblet { color: var(--text-primary); }
.compare-table tbody tr:last-child td { border-bottom: none; }
.compare-table svg { width: 16px; height: 16px; margin: 0 auto; display: block; }
.compare-icon-yes { color: var(--success); }
.compare-icon-no { color: var(--text-tertiary); }

/* ---------- Download / App store section ---------- */
.download { padding: 150px 0 130px; }
.download-inner {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}
.download h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4.5vw, 44px);
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.download > .container > .download-inner > p {
  color: var(--text-secondary);
  font-size: clamp(15px, 1.8vw, 18px);
  margin-bottom: 44px;
}

.store-row {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.store-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 16px;
  background: var(--store-disabled-bg);
  border: 1px solid var(--store-disabled-border);
  cursor: not-allowed;
  position: relative;
  transition: border-color .3s;
}
.store-btn:hover { border-color: rgba(106,76,255,.4); }
.store-btn svg { width: 26px; height: 26px; color: var(--text-secondary); flex-shrink: 0; }
.store-btn .store-copy { text-align: left; }
.store-btn .store-copy .top {
  display:block;
  font-size: 11px;
  color: var(--text-tertiary);
  font-weight: 600;
}
.store-btn .store-copy .bottom {
  display:block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--text-primary);
}
.store-btn .soon-chip {
  position: absolute;
  top: -9px; right: -9px;
  background: linear-gradient(100deg, var(--gradient-start), var(--gradient-end));
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .03em;
  padding: 3px 8px;
  border-radius: 999px;
  text-transform: uppercase;
}

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--overlay-line);
  padding: 48px 0 36px;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
}
.footer-links {
  display: flex;
  gap: 26px;
  font-size: 14px;
  color: var(--text-secondary);
}
.footer-links a:hover { color: var(--text-primary); }
.footer-bottom {
  margin-top: 26px;
  padding-top: 26px;
  border-top: 1px solid var(--overlay-line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12.5px;
  color: var(--text-tertiary);
}

/* ---------- Legal pages ---------- */
.legal-main { padding: 150px 0 100px; }
.legal-header { max-width: 720px; margin: 0 auto 50px; }
.legal-header h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 5vw, 46px);
  letter-spacing: -.02em;
  margin-bottom: 14px;
}
.legal-header .updated { color: var(--text-tertiary); font-size: 14px; }

.legal-body {
  max-width: 720px;
  margin: 0 auto;
  color: var(--text-secondary);
  font-size: 15.5px;
  line-height: 1.8;
}
.legal-body h2 {
  font-family: var(--font-display);
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -.01em;
}
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { margin-bottom: 16px; }
.legal-body ul { margin: 0 0 16px; padding-left: 20px; list-style: disc; }
.legal-body li { margin-bottom: 8px; }
.legal-body a { color: var(--accent-secondary); text-decoration: underline; text-underline-offset: 3px; }
.legal-body strong { color: var(--text-primary); }
[data-lang-block] { display: none; }
[data-lang-block].active { display: block; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .nav-links { display: none; }
}

@media (max-width: 640px) {
  .point-grid { gap: 22px; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { width: 100%; }
  .store-row { flex-direction: column; align-items: stretch; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-bottom { flex-direction: column; }
  .hero { padding: 120px 0 70px; }
  .section-pad { padding: 90px 0; }
  .download { padding: 90px 0; }
  .import-diagram { padding: 32px 22px; gap: 16px; }
}
