:root {
  --ink: #0A0B0C;
  --surface: #16171A;
  --paper: #F2EEE7;
  --paper-bright: #F8F5EF;
  --accent: #C9A96A;
  --text-secondary: rgba(242, 238, 231, .66);
  --text-tertiary: rgba(242, 238, 231, .5);
  --text-quaternary: rgba(242, 238, 231, .4);
  --hairline: rgba(255, 255, 255, .07);
  --hairline-strong: rgba(255, 255, 255, .12);
  --display: 'Cormorant Garamond', serif;
  --ui: 'Hanken Grotesk', sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

html, body {
  margin: 0;
  overflow-x: hidden;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--ui);
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
h1, h2, h3, p { margin: 0; }

.dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===== NAV ===== */
.nav {
  max-width: 1200px;
  margin: 0 auto;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand { display: flex; align-items: center; gap: 10px; color: var(--accent); }
.brand-name { font-family: var(--display); font-size: 24px; font-weight: 500; letter-spacing: .01em; color: var(--paper); }
.nav-links { display: flex; align-items: center; gap: 38px; font-size: 14px; color: var(--text-secondary); }
.nav-links a { color: var(--text-secondary); }
.nav-links a:hover { color: var(--paper); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  color: var(--accent);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: 2px;
  border: 1px solid var(--hairline-strong);
  border-radius: 100px;
  padding: 3px;
}
.lang-switch button {
  background: none;
  border: none;
  color: var(--text-tertiary);
  font-family: var(--ui);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .02em;
  border-radius: 100px;
  padding: 6px 12px;
  cursor: pointer;
}
.lang-switch button.is-active {
  background: var(--paper);
  color: var(--ink);
}

/* ===== HERO ===== */
.hero { position: relative; max-width: 1200px; margin: 0 auto; padding: 60px 40px 110px; overflow: hidden; }
.hero-glow {
  position: absolute; top: -60px; right: 120px; width: 560px; height: 560px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent), transparent 62%);
  pointer-events: none;
}
.hero-inner { position: relative; display: grid; grid-template-columns: 1.05fr .95fr; gap: 40px; align-items: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600;
  letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 26px;
}
h1 {
  font-family: var(--display); font-weight: 500; font-size: 82px; line-height: 1.05;
  letter-spacing: -.01em; color: var(--paper-bright);
}
h1 em, .features h2 em, .join-copy h2 em, .cta-band h2 em, .faq-heading em { font-style: italic; color: var(--accent); }
.lede { font-size: 18px; line-height: 1.6; color: var(--text-secondary); max-width: 480px; margin-top: 26px; }

.store-badges { display: flex; align-items: center; gap: 14px; margin-top: 34px; flex-wrap: wrap; }
.store-badge {
  position: relative; display: inline-flex; align-items: center; gap: 11px;
  background: rgba(242, 238, 231, .08); border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(242, 238, 231, .55); border-radius: 14px; padding: 12px 22px; cursor: default;
}
.store-badge-text { display: flex; flex-direction: column; line-height: 1.15; text-align: left; }
.store-badge-text small { font-size: 10px; letter-spacing: .06em; }
.store-badge-text { font-size: 16px; font-weight: 600; }
.soon-pill {
  position: absolute; top: -9px; right: 14px; background: var(--accent); color: var(--ink);
  border-radius: 100px; padding: 2px 9px; font-size: 10px; font-weight: 700; letter-spacing: .06em;
}

.promo-banner {
  display: flex; align-items: center; gap: 22px; max-width: 480px; margin-top: 30px;
  background: linear-gradient(135deg, color-mix(in srgb, var(--accent) 10%, var(--ink)), var(--ink));
  border: 1px solid color-mix(in srgb, var(--accent) 35%, transparent);
  border-radius: 18px; padding: 20px 26px;
}
.promo-discount { flex: none; font-family: var(--display); font-style: italic; font-weight: 600; font-size: 34px; line-height: 1; color: var(--accent); }
.promo-divider { flex: none; align-self: stretch; width: 1px; background: color-mix(in srgb, var(--accent) 30%, transparent); }
.promo-copy { display: flex; flex-direction: column; gap: 6px; }
.promo-label { font-size: 11.5px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.promo-body { font-size: 14.5px; font-weight: 600; line-height: 1.4; color: var(--paper-bright); }

.waitlist-form { display: flex; align-items: stretch; gap: 10px; margin-top: 22px; max-width: 440px; }
.waitlist-form input {
  flex: 1; min-width: 0; background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 100px; padding: 14px 22px; font-size: 14px; font-family: var(--ui); color: var(--paper); outline: none;
}
.waitlist-form input::placeholder { color: rgba(242, 238, 231, .4); }
.waitlist-form input:focus { border-color: var(--accent); }
.waitlist-form button {
  background: var(--paper); color: var(--ink); border: none; border-radius: 100px; padding: 14px 24px;
  font-size: 14px; font-weight: 600; font-family: var(--ui); white-space: nowrap; cursor: pointer;
}
.waitlist-form button:hover { background: var(--paper-bright); }
.form-note { font-size: 13px; color: var(--text-quaternary); margin-top: 12px; min-height: 1.4em; }
.form-note.is-success { color: var(--accent); }
.form-note.is-error { color: #B5544A; }

.mini-facts { display: flex; align-items: center; gap: 18px; margin-top: 24px; font-size: 13px; color: var(--text-quaternary); flex-wrap: wrap; }
.mini-facts .sep { width: 3px; height: 3px; border-radius: 50%; background: rgba(242, 238, 231, .3); }

/* hero visual — ported 1:1 from Moments Landing.html's IOSDevice frame (ios-frame.jsx) */
.hero-visual { position: relative; height: 620px; display: flex; align-items: center; justify-content: center; }

.phone-tilt { position: relative; width: 290px; height: 630px; transform: rotate(3deg); z-index: 2; }
.phone-scale {
  position: absolute; top: 0; left: 0; width: 402px; height: 874px;
  transform: scale(.72); transform-origin: top left;
  filter: drop-shadow(0 60px 100px rgba(0, 0, 0, .85));
}
.phone-3d { width: 402px; height: 874px; position: relative; transform: perspective(2200px) rotateY(-10deg); transform-style: preserve-3d; }

.phone-edge {
  position: absolute; inset: -13px; transform: translateX(7px); border-radius: 64px;
  background: linear-gradient(180deg, #3a3a3f 0%, #232327 18%, #3f3f45 42%, #1e1e22 60%, #38383d 84%, #19191c 100%);
}
.phone-button {
  position: absolute; right: -22px; top: 236px; width: 4px; height: 100px; border-radius: 0 2.5px 2.5px 0;
  background: linear-gradient(180deg, #8e8e96 0%, #4a4a50 8%, #5d5d64 50%, #3e3e44 92%, #7c7c84 100%);
}
.phone-rim {
  position: absolute; inset: -13px; border-radius: 64px;
  background: linear-gradient(145deg, #b9b9bf 0%, #5a5a61 8%, #2c2c31 22%, #4e4e55 40%, #26262b 58%, #57575e 76%, #1f1f23 90%, #8e8e96 100%);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, .35), inset 0 -1px 1px rgba(255, 255, 255, .14), 0 2px 3px rgba(0, 0, 0, .5);
}
.phone-rim-inner { position: absolute; inset: -10px; border-radius: 61px; background: linear-gradient(145deg, #3c3c41, #1a1a1d 45%, #313136); }
.phone-glass-border { position: absolute; inset: -8px; border-radius: 59px; background: #050506; box-shadow: inset 0 0 3px rgba(255, 255, 255, .06); }

.phone-device {
  width: 402px; height: 874px; border-radius: 48px; overflow: hidden; position: relative; background: #000;
  box-shadow: 0 40px 80px rgba(0, 0, 0, .18), 0 0 0 1px rgba(0, 0, 0, .12);
  font-family: -apple-system, system-ui, sans-serif;
}
.phone-dynamic-island {
  position: absolute; top: 11px; left: 50%; transform: translateX(-50%);
  width: 126px; height: 37px; border-radius: 24px; background: #000; z-index: 50;
}
.phone-statusbar {
  position: absolute; top: 0; left: 0; right: 0; z-index: 10;
  display: flex; gap: 154px; align-items: center; justify-content: center;
  padding: 21px 24px 19px; box-sizing: border-box;
}
.phone-time {
  flex: 1; height: 22px; display: flex; align-items: center; justify-content: center;
  font-family: -apple-system, 'SF Pro', system-ui; font-weight: 590; font-size: 17px; line-height: 22px; color: #fff;
}
.phone-status-icons { flex: 1; height: 22px; display: flex; align-items: center; justify-content: center; gap: 7px; }

.phone-screen { position: absolute; inset: 0; }
.phone-bg-photo { position: absolute; inset: 0; background: url("assets/phone-bg.jpg") center/cover; }
.phone-gradient-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10, 11, 12, .35) 0%, rgba(10, 11, 12, 0) 30%, rgba(10, 11, 12, .2) 58%, var(--ink) 100%);
}
.phone-text-block { position: absolute; left: 0; right: 0; bottom: 44px; text-align: center; color: var(--paper); }
.phone-glass-reflection {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(108deg, rgba(255, 255, 255, .09) 0%, rgba(255, 255, 255, .035) 24%, rgba(255, 255, 255, 0) 42%);
}
.phone-home-indicator {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 60; height: 34px;
  display: flex; justify-content: center; align-items: flex-end; padding-bottom: 8px; pointer-events: none;
}
.phone-home-indicator span { width: 139px; height: 5px; border-radius: 100px; background: rgba(255, 255, 255, .7); }

.phone-eyebrow {
  display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600;
  letter-spacing: .16em; text-transform: uppercase; color: var(--accent); margin-bottom: 13px;
}
.phone-title { font-family: var(--display); font-size: 46px; line-height: 1; color: var(--paper-bright); }
.phone-sub { font-size: 16px; color: var(--text-tertiary); margin-top: 8px; }
.phone-cta {
  margin: 24px 36px 0; background: var(--paper); color: var(--ink); border-radius: 100px;
  padding: 18px; font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px;
}
.polaroid {
  position: absolute; width: 130px; background: #fffdf9; border-radius: 3px; padding: 8px 8px 0;
  box-shadow: 0 26px 50px -16px rgba(0, 0, 0, .7);
}
.polaroid-photo { aspect-ratio: 1; border-radius: 1px; background: linear-gradient(140deg, #d9c9a6, #7c6a4a) center/cover; }
.polaroid-photo-a { background-image: url("assets/polaroid-a.jpg"); }
.polaroid-photo-b { background-image: url("assets/polaroid-b.jpg"); }
.polaroid-caption { height: 26px; display: flex; align-items: center; justify-content: flex-end; padding: 0 2px; font-family: var(--display); font-style: italic; font-size: 11px; color: #16130d; }
.polaroid-caption-b { font-family: var(--ui); font-style: normal; font-size: 8px; letter-spacing: .04em; color: #b3ac9e; }
.polaroid-a { left: -10px; top: 40px; transform: rotate(-9deg); z-index: 1; }
.polaroid-b { right: -30px; bottom: 60px; transform: rotate(7deg); z-index: 3; width: 118px; }

/* ===== MOTTO ===== */
.motto { max-width: 900px; margin: 0 auto; padding: 30px 40px 84px; text-align: center; color: var(--accent); }
.motto-mark { margin-bottom: 24px; }
.motto-quote { font-family: var(--display); font-style: italic; font-weight: 500; font-size: 44px; line-height: 1.12; color: var(--paper-bright); }
.motto-sub { font-size: 13px; font-weight: 600; letter-spacing: .24em; text-transform: uppercase; color: var(--accent); margin-top: 22px; }

/* ===== HOW IT WORKS ===== */
.how { border-top: 1px solid var(--hairline); background: #0C0D10; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.eyebrow-label { font-size: 12px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--text-quaternary); margin-bottom: 40px; }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.how-num { font-family: var(--display); font-size: 48px; color: var(--accent); line-height: 1; }
.how-step h3 { font-family: var(--display); font-weight: 500; font-size: 26px; margin: 14px 0 10px; color: var(--paper-bright); }
.how-step p { font-size: 15px; line-height: 1.6; color: var(--text-secondary); }

/* ===== FEATURES ===== */
.features { max-width: 1200px; margin: 0 auto; padding: 90px 40px 30px; }
.features h2 {
  font-family: var(--display); font-size: 52px; font-weight: 500; line-height: 1.05; max-width: 620px; color: var(--paper-bright);
}
.feature-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 46px; }
.feature-card {
  background: var(--surface); border: 1px solid var(--hairline); border-radius: 20px; padding: 30px;
  display: flex; align-items: center; gap: 26px;
}
.feature-card h3 { font-family: var(--display); font-size: 24px; color: var(--paper-bright); }
.feature-card p { font-size: 14px; line-height: 1.55; color: var(--text-secondary); margin-top: 7px; }

.feature-icon-frames {
  flex: none; width: 84px; height: 60px; border-radius: 14px; background: #000;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, .9), inset 0 0 0 1px rgba(255, 255, 255, .06);
  position: relative; overflow: hidden;
}
.frame-num { position: absolute; top: 50%; transform: translateY(-50%); font-family: var(--display); font-style: italic; }
.frame-num-side { font-size: 24px; color: rgba(242, 238, 231, .45); }
.frame-num-side:first-child { left: -2px; }
.frame-num-side:last-child { right: -2px; }
.frame-num-mid { left: 50%; transform: translate(-50%, -50%); font-size: 34px; font-weight: 600; color: #fff; }

.feature-icon-circle {
  flex: none; width: 64px; height: 64px; border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}

.feature-icon-corners { flex: none; width: 64px; height: 64px; border-radius: 16px; border: 1px solid var(--hairline-strong); position: relative; }
.corner { position: absolute; width: 14px; height: 14px; border: 2px solid var(--accent); }
.corner-tl { top: 11px; left: 11px; border-right: none; border-bottom: none; border-radius: 3px 0 0 0; }
.corner-tr { top: 11px; right: 11px; border-left: none; border-bottom: none; border-radius: 0 3px 0 0; }
.corner-bl { bottom: 11px; left: 11px; border-right: none; border-top: none; border-radius: 0 0 0 3px; }
.corner-br { bottom: 11px; right: 11px; border-left: none; border-top: none; border-radius: 0 0 3px 0; }
.corner-dot { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 18px; height: 2px; background: var(--accent); border-radius: 2px; }

.feature-icon-bars { flex: none; display: flex; gap: 7px; }
.bar { width: 22px; height: 46px; border-radius: 100px; }
.bar-1 { background: #C9A96A; }
.bar-2 { background: #C27D6E; }
.bar-3 { background: #5E7C99; }

.feature-icon-lines { flex: none; width: 64px; height: 64px; border-radius: 16px; border: 1px solid var(--hairline-strong); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 4px; }
.line { height: 2px; border-radius: 2px; }
.line-1 { width: 26px; background: var(--accent); }
.line-2 { width: 18px; background: rgba(242, 238, 231, .35); }
.line-3 { width: 22px; background: rgba(242, 238, 231, .35); }

/* ===== JOIN / QR ===== */
.join { max-width: 1200px; margin: 0 auto; padding: 80px 40px; }
.join-card {
  background: linear-gradient(160deg, var(--surface), #0C0D10); border: 1px solid var(--hairline-strong);
  border-radius: 28px; padding: 54px; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: center;
}
.join-copy h2 { font-family: var(--display); font-weight: 500; font-size: 46px; line-height: 1.04; color: var(--paper-bright); }
.join-copy p { font-size: 16px; line-height: 1.6; color: var(--text-secondary); max-width: 420px; margin-top: 20px; }
.join-stats { display: flex; gap: 26px; margin-top: 28px; }
.join-stat-num { font-family: var(--display); font-size: 30px; color: var(--paper-bright); }
.join-stat-label { font-size: 12px; color: var(--text-tertiary); margin-top: 2px; }
.join-stat-sep { width: 1px; background: rgba(255, 255, 255, .1); }
.join-qr { display: flex; flex-direction: column; align-items: center; }
.qr-frame { background: #F4F0E9; border-radius: 24px; padding: 20px; box-shadow: 0 24px 50px -18px rgba(0, 0, 0, .7); }
.qr-caption { font-size: 13px; color: var(--text-tertiary); margin-top: 16px; letter-spacing: .04em; }

/* ===== EVENT TYPES ===== */
.event-types { max-width: 1200px; margin: 0 auto; padding: 10px 40px 80px; }
.event-types-inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; justify-content: center; }
.event-types-label { font-size: 13px; color: var(--text-quaternary); margin-right: 8px; }
.event-pill {
  display: inline-flex; align-items: center; gap: 9px; border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 100px; padding: 9px 16px; font-size: 13.5px; font-family: var(--ui); color: rgba(242, 238, 231, .8);
  background: none; cursor: pointer; transition: border-color .15s, background-color .15s;
}
.event-pill:hover { border-color: rgba(255, 255, 255, .22); }
.event-pill.is-active { border-color: var(--accent); background: rgba(255, 255, 255, .06); color: var(--paper); }
.event-dot { width: 11px; height: 11px; border-radius: 50%; flex: none; }

/* ===== FAQ ===== */
.faq { max-width: 760px; margin: 0 auto; padding: 90px 40px; border-top: 1px solid var(--hairline); }
.faq-heading { font-family: var(--display); font-weight: 500; font-size: 40px; line-height: 1.15; color: var(--paper-bright); margin: 14px 0 40px; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-top: 1px solid var(--hairline); padding: 22px 0; }
.faq-item:last-child { border-bottom: 1px solid var(--hairline); }
.faq-item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; cursor: pointer;
  list-style: none; font-family: var(--ui); font-weight: 600; font-size: 16px; color: var(--paper-bright);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-chevron { flex: none; color: var(--text-tertiary); transition: transform .2s ease; }
.faq-item[open] .faq-chevron { transform: rotate(90deg); }
.faq-item p { font-size: 14.5px; line-height: 1.65; color: var(--text-secondary); margin: 14px 0 0; max-width: 640px; }

/* ===== CTA BAND ===== */
.cta-band { position: relative; border-top: 1px solid var(--hairline); overflow: hidden; }
.cta-glow {
  position: absolute; left: 50%; top: -40%; transform: translateX(-50%); width: 760px; height: 760px; border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 16%, transparent), transparent 60%); pointer-events: none;
}
.cta-inner { position: relative; max-width: 820px; margin: 0 auto; padding: 96px 40px; text-align: center; }
.cta-band h2 { font-family: var(--display); font-weight: 500; font-size: 60px; line-height: 1.05; color: var(--paper-bright); }
.cta-inner > p { font-size: 17px; line-height: 1.6; color: var(--text-secondary); max-width: 520px; margin: 22px auto 0; }
.waitlist-form-wide { justify-content: center; margin: 34px auto 0; }

/* ===== FOOTER ===== */
.footer { border-top: 1px solid var(--hairline); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 34px 40px; display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.brand-footer { color: rgba(242, 238, 231, .55); }
.brand-footer .brand-name { font-size: 18px; color: rgba(242, 238, 231, .7); }
.footer-links { display: flex; gap: 24px; font-size: 13px; color: var(--text-tertiary); }
.footer-links a:hover { color: var(--paper); }
.footer-copy { font-size: 13px; color: var(--text-quaternary); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .nav { padding: 20px 22px; }
  .nav-links { gap: 10px; }
  .nav-links a { display: none; }
  .badge { padding: 8px 14px; font-size: 12px; }
  .hero { padding: 26px 22px 80px; text-align: center; }
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-glow { top: -80px; left: 50%; right: auto; transform: translateX(-50%); width: 420px; height: 420px; }
  h1 { font-size: 46px; }
  .lede { margin-left: auto; margin-right: auto; }
  .eyebrow, .mini-facts, .store-badges, .waitlist-form { justify-content: center; }
  .waitlist-form, .promo-banner { margin-left: auto; margin-right: auto; }
  .hero-visual { height: 420px; margin-top: 38px; transform: scale(.82); }
  .motto { padding: 38px 26px 56px; }
  .motto-quote { font-size: 30px; }
  .how-grid { grid-template-columns: 1fr; gap: 34px; }
  .section-inner { padding: 48px 22px; }
  .features { padding: 56px 22px 10px; }
  .features h2 { font-size: 36px; }
  .feature-grid { grid-template-columns: 1fr; gap: 14px; }
  .feature-card { border-radius: 18px; padding: 22px; }
  .join { padding: 46px 22px; }
  .join-card { grid-template-columns: 1fr; padding: 34px 26px; text-align: center; border-radius: 24px; }
  .join-copy p { margin-left: auto; margin-right: auto; }
  .join-stats { justify-content: center; }
  .join-qr { margin-top: 10px; }
  .event-types { padding: 10px 22px 56px; }
  .faq { padding: 56px 22px; }
  .faq-heading { font-size: 28px; }
  .faq-item summary { font-size: 15px; }
  .cta-inner { padding: 64px 26px; }
  .cta-band h2 { font-size: 38px; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .store-badges { flex-direction: column; align-items: stretch; }
  .waitlist-form { flex-direction: column; }
  .waitlist-form button { padding: 14px; }
}

/* ===== LEGAL PAGES ===== */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 40px 110px;
}
.legal h1 { font-family: var(--display); font-weight: 500; font-size: 46px; line-height: 1.05; color: var(--paper-bright); }
.legal .legal-updated { font-size: 13px; color: var(--text-quaternary); margin-top: 14px; }
.legal h2 {
  font-family: var(--display); font-weight: 500; font-size: 28px; color: var(--paper-bright);
  margin-top: 52px; margin-bottom: 14px;
}
.legal p { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-top: 12px; }
.legal ul { margin: 12px 0 0; padding-left: 20px; }
.legal li { font-size: 15px; line-height: 1.7; color: var(--text-secondary); margin-top: 8px; }
.legal a { color: var(--accent); text-decoration: underline; }

@media (max-width: 900px) {
  .legal { padding: 30px 22px 70px; }
  .legal h1 { font-size: 34px; }
}
