:root {
  --bg-0: #0a0b1f;
  --bg-1: #11122e;
  --bg-2: #181a3a;
  --panel: #1b2436;
  --panel-2: #243044;
  --ink-0: #f4f1ff;
  --ink-1: #cdd0e8;
  --ink-2: #8e93b6;
  --line: rgba(180, 170, 220, 0.14);
  --aurora-cyan: #7FE7E2;
  --aurora-violet: #B57EFF;
  --gold: #E9C46A;
  --gold-deep: #b88a2c;
  --magenta: #ff6fa3;
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --pad-x: 20px;
  --section-gap: 96px;
  --max-w: 1200px;
  --display: 'Cinzel', 'Times New Roman', serif;
  --body: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  color: var(--ink-1);
  background: var(--bg-0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3 { font-family: var(--display); font-weight: 600; color: var(--ink-0); margin: 0; line-height: 1.15; letter-spacing: 0.01em; text-wrap: balance; }
p { margin: 0; text-wrap: pretty; }

.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

/* Header */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(10, 11, 31, 0.78);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.site-header .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x); max-width: var(--max-w); margin: 0 auto;
  gap: 24px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand-logo {
  width: 36px; height: 36px; border-radius: 10px;
  box-shadow: 0 0 0 1px rgba(233, 196, 106, 0.3), 0 6px 18px -6px rgba(127,231,226,0.5);
}
.brand-name {
  font-family: var(--display);
  font-size: 18px; color: var(--ink-0); letter-spacing: 0.06em;
  text-transform: uppercase;
}
.brand-name span { color: var(--aurora-cyan); }
.nav {
  display: flex; align-items: center; gap: 28px;
}
.nav a {
  font-size: 14px; font-weight: 500; color: var(--ink-1);
  letter-spacing: 0.02em; padding: 6px 0;
  position: relative;
  white-space: nowrap;
  transition: color 0.2s ease;
}
.nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--aurora-cyan);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.nav a:hover { color: var(--ink-0); }
.nav a:hover::after { transform: scaleX(1); }
.header-cta {
  display: inline-flex; align-items: center; gap: 8px;
  height: 42px; padding: 0 18px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold) 0%, var(--gold-deep) 100%);
  color: #1a1208; font-weight: 600; font-size: 14px;
  box-shadow: 0 8px 22px -8px rgba(233,196,106,0.55), inset 0 1px 0 rgba(255,255,255,0.4);
  transition: transform 0.15s ease, filter 0.2s ease;
  white-space: nowrap; flex-shrink: 0;
}
.header-cta:hover { transform: translateY(-1px); filter: brightness(1.06); }
.header-cta:active { transform: translateY(0); }

.menu-toggle {
  display: none;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink-0);
  width: 42px; height: 42px; border-radius: 10px;
  cursor: pointer;
}
.menu-toggle:hover { background: rgba(255,255,255,0.08); }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 52px; padding: 0 30px;
  border-radius: 999px; border: 0;
  font-family: var(--body); font-weight: 600; font-size: 17px; letter-spacing: 0.01em;
  background: linear-gradient(180deg, #ffe09a 0%, var(--gold) 45%, var(--gold-deep) 100%);
  color: #1a1208; cursor: pointer; white-space: nowrap;
  box-shadow:
    0 14px 38px -10px rgba(233,196,106,0.55),
    0 0 0 1px rgba(255,224,154,0.5) inset,
    0 -2px 0 rgba(0,0,0,0.18) inset;
  transition: transform 0.18s ease, box-shadow 0.25s ease, filter 0.2s ease;
}
.btn-primary:hover { transform: translateY(-2px); filter: brightness(1.05);
  box-shadow: 0 22px 50px -12px rgba(233,196,106,0.7), 0 0 0 1px rgba(255,224,154,0.6) inset, 0 -2px 0 rgba(0,0,0,0.18) inset; }
.btn-primary:active { transform: translateY(0); filter: brightness(0.96); }

/* Sections */
section { padding: var(--section-gap) 0; position: relative; }
.eyebrow {
  display: inline-flex;
  align-self: flex-start;
  width: auto;
  max-width: max-content;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--aurora-cyan); font-weight: 600;
  padding: 6px 14px;
  border: 1px solid rgba(127,231,226,0.3);
  border-radius: 999px;
  background: rgba(127,231,226,0.06);
  margin-bottom: 24px;
}
.section-head .eyebrow, .companion .eyebrow, .final .eyebrow { align-self: center; margin-left: auto; margin-right: auto; }
.section-head { text-align: center; max-width: 820px; margin: 0 auto 56px; }
.section-head h2 { font-size: clamp(30px, 3.6vw, 52px); margin: 0 0 14px; line-height: 1.12; }
.section-head p { color: var(--ink-1); font-size: clamp(15px, 1.2vw, 17px); max-width: 660px; margin: 0 auto; }

/* HERO (Block 1) */
.hero {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url('../images/bg.webp');
  background-size: cover; background-position: center;
  filter: saturate(0.92);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(10,11,31,0.55) 0%, rgba(10,11,31,0.85) 60%, rgba(10,11,31,0.98) 100%),
    linear-gradient(180deg, rgba(10,11,31,0.7) 0%, rgba(10,11,31,0.55) 30%, rgba(10,11,31,0.98) 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(6,7,20,0.4);
  z-index: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  justify-items: center;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.hero-copy { max-width: 620px; }
.hero-copy h1 {
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  margin: 0 0 24px;
}
.hero-copy h1 .grad {
  background: linear-gradient(120deg, var(--aurora-cyan) 0%, var(--aurora-violet) 70%, var(--magenta) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-copy p.lede {
  font-size: clamp(16px, 1.4vw, 18px);
  color: var(--ink-1);
  max-width: 560px;
  margin-bottom: 32px;
}
.hero-copy p.lede + p.lede { margin-top: -16px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

.hero-art {
  position: relative;
  aspect-ratio: 604/660;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
}
.hero-art .glow {
  position: absolute; inset: 6% 8%;
  background: radial-gradient(closest-side, rgba(181,126,255,0.55), rgba(127,231,226,0.18) 40%, transparent 75%);
  filter: blur(34px);
  z-index: 0;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:0.85;transform:scale(1);} 50%{opacity:1;transform:scale(1.05);} }
.hero-art img.character {
  position: relative;
  width: 100%; height: 100%;
  object-fit: contain;
  z-index: 2;
  filter: drop-shadow(0 30px 40px rgba(0,0,0,0.55));
}
.hero-art .rune { position: absolute; pointer-events: none; width: 60px; height: 60px; opacity: 0.85; }
.hero-art .rune.r1 { top: 8%; left: -2%; animation: float 7s ease-in-out infinite; }
.hero-art .rune.r2 { bottom: 14%; right: -4%; animation: float 8s ease-in-out infinite reverse; }
.hero-art .rune.r3 { top: 38%; right: -6%; width: 38px; height: 38px; animation: float 9s ease-in-out infinite; }
@keyframes float { 0%,100%{transform: translateY(0) rotate(0);} 50%{transform: translateY(-14px) rotate(8deg);} }
.hero-art .moon {
  position: absolute; top: -2%; right: 8%;
  width: 70px; height: 70px;
  background: radial-gradient(closest-side, rgba(255,251,220,0.95), rgba(255,251,220,0.0) 70%);
  filter: blur(2px);
  z-index: 1;
}

/* Block 2: Building Your Hero — split with phone screenshots */
.character-build {
  background:
    radial-gradient(900px 400px at 80% 0%, rgba(181,126,255,0.10), transparent 70%),
    radial-gradient(700px 400px at 0% 100%, rgba(127,231,226,0.08), transparent 70%),
    var(--bg-0);
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.split-grid.reverse { grid-template-columns: 1.1fr 1fr; }
.split-grid h2 { font-size: clamp(30px, 3.6vw, 48px); margin: 0 0 24px; line-height: 1.12; }
.split-grid p { font-size: 16px; color: var(--ink-1); margin-bottom: 14px; max-width: 560px; }
.split-grid .copy { display: flex; flex-direction: column; }

/* Game-art: single picture from the game in alternating sections */
.game-art {
  display: flex;
  justify-content: center;
  align-items: center;
}
.game-art img {
  height: 460px;
  width: auto;
  max-width: 100%;
  border-radius: 24px;
  box-shadow:
    0 40px 80px -30px rgba(0,0,0,0.7),
    0 0 0 1px rgba(127,231,226,0.18),
    0 0 0 6px rgba(20,22,42,0.55);
  background: #0d0e25;
  object-fit: cover;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.game-art:hover img {
  transform: translateY(-4px) scale(1.01);
  box-shadow:
    0 50px 90px -30px rgba(0,0,0,0.8),
    0 0 0 1px rgba(127,231,226,0.32),
    0 0 0 6px rgba(20,22,42,0.7);
}
.game-art.wide img {
  width: 100%;
  height: auto;
  max-height: 460px;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Block 3: During the Session — chips */
.session {
  background: var(--bg-0);
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 20px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 999px;
  background: rgba(127,231,226,0.08);
  border: 1px solid rgba(127,231,226,0.28);
  color: var(--ink-0); font-size: 14px; font-weight: 500;
}
.chip.violet { background: rgba(181,126,255,0.10); border-color: rgba(181,126,255,0.32); }
.chip.gold { background: rgba(233,196,106,0.10); border-color: rgba(233,196,106,0.35); color: var(--gold); }
.chip.magenta { background: rgba(255,111,163,0.10); border-color: rgba(255,111,163,0.35); }

/* Block 4: How It Works — feature list */
.how {
  background:
    linear-gradient(180deg, var(--bg-0) 0%, #0c0d24 100%);
}
.how-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 80px;
  align-items: center;
}
.how-grid h2 { font-size: clamp(30px, 3.6vw, 48px); margin: 0 0 20px; line-height: 1.18; }
.how-grid .how-intro { margin: 0 0 32px; }
.how-list { display: grid; gap: 14px; }
.how-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 20px;
  background: linear-gradient(180deg, rgba(36,48,68,0.5) 0%, rgba(27,36,54,0.35) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.how-item:hover { border-color: rgba(127,231,226,0.35); transform: translateX(4px); }
.how-item .ico {
  flex-shrink: 0;
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, rgba(181,126,255,0.22), rgba(127,231,226,0.18));
  border: 1px solid rgba(255,255,255,0.08);
  color: var(--aurora-cyan);
}
.how-item h3 { font-family: var(--body); font-weight: 600; font-size: 16px; color: var(--ink-0); margin-bottom: 2px; }
.how-item p { font-size: 14px; color: var(--ink-2); margin: 0; }
.how-note {
  margin-top: 24px;
  padding: 18px 22px;
  border-left: 3px solid var(--gold);
  background: rgba(233,196,106,0.06);
  border-radius: 8px;
  font-style: italic;
  color: var(--ink-0);
  font-size: 16px;
}

/* Block 5: FAQ */
.faq {
  background: var(--bg-0);
}
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 14px; }
.faq-item {
  background: linear-gradient(180deg, rgba(36,48,68,0.5) 0%, rgba(27,36,54,0.35) 100%);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.faq-item[open] { border-color: rgba(127,231,226,0.35); }
.faq-item summary {
  list-style: none;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px;
  font-family: var(--display); font-size: 19px;
  color: var(--ink-0); cursor: pointer;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(127,231,226,0.12);
  border: 1px solid rgba(127,231,226,0.3);
  color: var(--aurora-cyan);
  display: grid; place-items: center; flex-shrink: 0;
  transition: transform 0.25s ease, background 0.2s ease;
}
.faq-item[open] summary .plus { transform: rotate(45deg); background: rgba(127,231,226,0.22); }
.faq-item .answer { padding: 0 24px 22px; color: var(--ink-1); font-size: 15px; line-height: 1.7; }

/* Block 6: Companion */
.companion {
  background:
    radial-gradient(900px 500px at 50% 100%, rgba(181,126,255,0.18), transparent 70%),
    var(--bg-0);
}
.companion .companion-inner { max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.companion .companion-inner .eyebrow { align-self: center; }
.companion .companion-inner p { max-width: 640px; margin-left: auto; margin-right: auto; }
.companion h2 { font-size: clamp(30px, 3.5vw, 46px); margin: 0 0 24px; line-height: 1.12; }
.companion p { font-size: 17px; color: var(--ink-1); margin-bottom: 12px; }
.companion .em { color: var(--ink-0); font-family: var(--display); font-size: 22px; margin-top: 24px; display: block; }

/* Final block */
.final {
  position: relative;
}
.final .cta-banner {
  background:
    linear-gradient(135deg, rgba(181,126,255,0.25), rgba(127,231,226,0.18) 60%, rgba(233,196,106,0.18) 100%),
    var(--bg-1);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  overflow: hidden;
  border: 1px solid var(--line);
  position: relative;
}
.final .cta-banner .final-inner { position: relative; z-index: 1; max-width: 760px; margin: 0 auto; text-align: center; display: flex; flex-direction: column; align-items: center; }
.final .cta-banner .copy { gap: 0; align-items: center; }
.final .cta-banner h2 { text-align: center; }
.final .cta-banner p { margin-left: auto; margin-right: auto; max-width: 540px; }
.final .cta-banner .cta-actions { justify-content: center; }
.final .cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(closest-side at 20% 30%, rgba(181,126,255,0.4), transparent 60%),
              radial-gradient(closest-side at 80% 70%, rgba(127,231,226,0.35), transparent 60%);
  opacity: 0.7; pointer-events: none;
}
.final h2 { font-size: clamp(30px, 4vw, 52px); position: relative; margin: 0 0 18px; line-height: 1.12; }
.final p { color: var(--ink-1); margin: 0 0 30px; max-width: 540px; position: relative; font-size: 17px; }
.final .cta-actions { display: flex; flex-wrap: wrap; gap: 14px; position: relative; }

/* FOOTER */
.site-footer {
  background: #07081a;
  border-top: 1px solid var(--line);
  padding: 40px 0 28px;
}
.footer-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr;
  gap: 24px; align-items: center;
}
.footer-grid .left { display: inline-flex; align-items: center; gap: 12px; }
.footer-grid .left .brand-logo { width: 32px; height: 32px; }
.footer-grid .left strong {
  font-family: var(--display); font-size: 17px; color: var(--ink-0);
  letter-spacing: 0.06em; text-transform: uppercase;
}
.footer-grid .center { text-align: center; font-size: 14px; color: var(--ink-2); }
.footer-grid .right {
  display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end;
}
.footer-grid .right a {
  color: var(--ink-1); font-size: 14px;
  position: relative; padding: 4px 0;
  transition: color 0.2s ease;
}
.footer-grid .right a:hover { color: var(--aurora-cyan); }
.footer-grid .right a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 1px; background: var(--aurora-cyan);
  transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease;
}
.footer-grid .right a:hover::after { transform: scaleX(1); }

/* Legal pages */
.legal-hero {
  padding: 64px 0 32px;
  background: radial-gradient(900px 400px at 50% -10%, rgba(181,126,255,0.18), transparent 70%);
  border-bottom: 1px solid var(--line);
}
.legal-hero h1 { font-size: clamp(36px, 5vw, 56px); margin-bottom: 8px; }
.legal-hero p { color: var(--ink-2); font-size: 14px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px;
  height: 40px; padding: 0 16px; margin-bottom: 22px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  color: var(--ink-0); font-size: 14px; font-weight: 500;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.back-btn:hover { background: rgba(255,255,255,0.08); border-color: rgba(127,231,226,0.45); transform: translateX(-2px); }
.legal-body { padding: 56px 0 96px; }
.legal-body article { max-width: 800px; margin: 0 auto; }
.legal-body h2 { font-size: 26px; margin: 36px 0 12px; color: var(--ink-0); padding-bottom: 8px; border-bottom: 1px solid var(--line); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 18px; margin: 22px 0 8px; color: var(--ink-0); font-family: var(--body); font-weight: 600; }
.legal-body p, .legal-body li { color: var(--ink-1); font-size: 16px; line-height: 1.75; margin-bottom: 12px; }
.legal-body ul, .legal-body ol { padding-left: 22px; margin-bottom: 14px; }
.legal-body strong { color: var(--ink-0); }
.legal-body a { color: var(--aurora-cyan); text-decoration: underline; text-underline-offset: 3px; }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed; inset: 0; z-index: 60;
  background: #05060f;
  padding: 72px var(--pad-x) 24px;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}
.mobile-menu-close {
  position: absolute; top: 14px; right: var(--pad-x);
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: transparent; border: none;
  color: var(--ink-0); cursor: pointer;
  border-radius: 8px;
}
.mobile-menu-close:hover { background: rgba(255,255,255,0.06); }
body:has(.mobile-menu.open) { overflow: hidden; }
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 16px 0;
  font-size: 18px; color: var(--ink-0);
  border-bottom: 1px solid var(--line);
  font-weight: 500;
}
.mobile-menu .header-cta { margin-top: 24px; height: 52px; justify-content: center; display: inline-flex; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .nav { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-grid; place-items: center; }
}

@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; justify-items: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; max-width: 640px; margin: 0 auto; }
  .hero-copy .eyebrow { order: 0; align-self: center; }
  .hero-copy p.lede { margin-left: auto; margin-right: auto; }
  .hero-art { order: 4; max-width: 480px; margin: 0 auto; }
}
@media (max-width: 900px) {
  :root { --section-gap: 64px; --pad-x: 18px; }
  .hero { padding: 64px 0 56px; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .hero-copy h1 { order: 1; text-align: center; }
  .hero-copy p.lede { order: 2; margin-left: auto; margin-right: auto; text-align: center; }
  .hero-copy p.lede + p.lede { margin-top: 8px; }
  .hero-copy .hero-actions { order: 3; justify-content: center; margin-top: 8px; }
  .hero-art { order: 4; max-width: 420px; }

  .split-grid, .split-grid.reverse, .how-grid {
    grid-template-columns: 1fr; gap: 48px; text-align: center;
  }
  .split-grid p, .how-grid p { margin-left: auto; margin-right: auto; }
  .split-grid .copy, .how-grid .copy { align-items: center; text-align: center; }
  .split-grid .copy h2, .how-grid .copy h2,
  .split-grid .copy h3 { text-align: center; }
  .split-grid .copy .eyebrow, .how-grid .copy .eyebrow { align-self: center; }
  .chips { justify-content: center; }
  .how-list { text-align: left; }
  .how-grid h2 { text-align: center; }
  .how-grid .how-intro { text-align: center; }
  .game-art img { height: auto; width: 100%; max-width: 460px; max-height: 460px; }
  .game-art.wide img { aspect-ratio: 16/9; }
  .final .cta-banner { padding: 48px 22px; }
  .footer-grid { grid-template-columns: 1fr; text-align: center; gap: 14px; }
  .footer-grid .left { justify-content: center; }
  .footer-grid .right { justify-content: center; }
  .btn-primary { width: 100%; max-width: 360px; }
}

@media (max-width: 480px) {
  :root { --section-gap: 56px; --pad-x: 16px; }
  .hero { padding: 48px 0 48px; }
  .hero-copy h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-copy p.lede { font-size: 15px; }
  .brand-name { font-size: 15px; }
  .legal-body h2 { font-size: 22px; }
  .legal-body p, .legal-body li { font-size: 15px; }
  .companion .em { font-size: 18px; }
  .faq-item summary { font-size: 16px; padding: 18px 18px; }
}
