/* ═══════════════════════════════════════════════
   LifeLine Assistive Technologies
   Warm Refuge Design System
   ═══════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;1,9..144,400&family=Atkinson+Hyperlegible+Next:ital,wght@0,400;0,500;0,600;0,700;1,400&display=swap');

/* ── Tokens ────────────────────────────────── */
:root {
  --cream:       #F5F0E8;
  --cream-dark:  #EDE6D9;
  --warm-white:  #FDFBF7;
  --parchment:   #F9F5ED;
  --bark:        #2C2418;
  --bark-light:  #4A3D2E;
  --bark-muted:  #7A6E5D;
  --ember:       #C45B3F;
  --ember-dark:  #A84832;
  --ember-glow:  rgba(196, 91, 63, 0.12);
  --teal:        #3D8B8B;
  --teal-dark:   #2E6B6B;
  --teal-soft:   rgba(61, 139, 139, 0.1);
  --gold:        #D4A843;
  --gold-soft:   rgba(212, 168, 67, 0.15);
  --sage:        #7A9E7E;
  --card:        #FFFFFF;
  --card-border: #E8E1D5;
  --shadow-sm:   0 1px 3px rgba(44, 36, 24, 0.06);
  --shadow-md:   0 4px 16px rgba(44, 36, 24, 0.08);
  --shadow-lg:   0 8px 32px rgba(44, 36, 24, 0.12);
  --shadow-xl:   0 16px 48px rgba(44, 36, 24, 0.16);
  --radius-sm:   6px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-xl:   32px;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body:    'Atkinson Hyperlegible Next', 'Atkinson Hyperlegible', system-ui, sans-serif;
  --ease-out:    cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--bark);
  background: var(--cream);
  overflow-x: hidden;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  html { scroll-behavior: auto; }
}

/* ── Typography ────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--bark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 400; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { max-width: 68ch; }

a {
  color: var(--ember);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
a:hover { color: var(--ember-dark); }
a:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ── Layout ────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1400px; }

section {
  padding: clamp(4rem, 8vw, 7rem) 0;
}

/* ── Navigation ────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(232, 225, 213, 0.6);
  transition: box-shadow 0.3s ease;
}

.nav--scrolled { box-shadow: var(--shadow-sm); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--bark);
}

.nav__logo-mark {
  width: 36px;
  height: 36px;
  background: var(--ember);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.nav__logo-mark::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 1px;
}

.nav__logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav__links a {
  text-decoration: none;
  color: var(--bark-muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav__links a:hover { color: var(--bark); }

.nav__cta {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.25rem;
  background: var(--ember);
  color: var(--warm-white) !important;
  border-radius: var(--radius-xl);
  font-weight: 600;
  font-size: 0.88rem;
  transition: background 0.2s ease, transform 0.2s var(--ease-spring);
}

.nav__cta:hover {
  background: var(--ember-dark);
  transform: translateY(-1px);
}

.nav__mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--bark);
}

/* ── Hero ──────────────────────────────────── */
.hero {
  padding-top: calc(72px + clamp(4rem, 8vw, 6rem));
  padding-bottom: clamp(4rem, 8vw, 6rem);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--ember-glow) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--teal-soft) 0%, transparent 70%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.4rem 1rem;
  background: var(--gold-soft);
  border: 1px solid rgba(212, 168, 67, 0.25);
  border-radius: var(--radius-xl);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--bark-light);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s var(--ease-out) both;
}

.hero__badge::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

.hero h1 {
  margin-bottom: 1.25rem;
  animation: fadeInDown 0.8s var(--ease-out) 0.1s both;
}

.hero h1 em {
  font-style: italic;
  color: var(--ember);
}

.hero__sub {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--bark-muted);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  animation: fadeInDown 0.8s var(--ease-out) 0.2s both;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInDown 0.8s var(--ease-out) 0.3s both;
}

/* ── Buttons ───────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
}

.btn:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

.btn--primary {
  background: var(--ember);
  color: var(--warm-white);
  box-shadow: 0 2px 8px rgba(196, 91, 63, 0.3);
}

.btn--primary:hover {
  background: var(--ember-dark);
  color: var(--warm-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 91, 63, 0.35);
}

.btn--secondary {
  background: transparent;
  color: var(--bark);
  border: 1.5px solid var(--card-border);
}

.btn--secondary:hover {
  border-color: var(--bark-muted);
  background: var(--warm-white);
  transform: translateY(-2px);
  color: var(--bark);
}

/* ── Stats Bar ─────────────────────────────── */
.stats {
  background: var(--warm-white);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
  padding: 2.5rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stats__item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 600;
  color: var(--ember);
  line-height: 1.2;
}

.stats__item span {
  font-size: 0.88rem;
  color: var(--bark-muted);
}

/* ── Problem Section ───────────────────────── */
.problem {
  background: var(--cream);
}

.problem__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.problem__text h2 {
  margin-bottom: 1.25rem;
}

.problem__text p {
  color: var(--bark-muted);
  margin-bottom: 1rem;
}

.problem__cards {
  display: grid;
  gap: 1rem;
}

.problem__card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.problem__card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.problem__card-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.problem__card-icon--red    { background: var(--ember-glow); }
.problem__card-icon--teal   { background: var(--teal-soft); }
.problem__card-icon--gold   { background: var(--gold-soft); }

.problem__card h4 { margin-bottom: 0.25rem; }

.problem__card p {
  font-size: 0.9rem;
  color: var(--bark-muted);
  line-height: 1.5;
}

/* ── How It Works (Phases) ─────────────────── */
.phases {
  background: var(--warm-white);
}

.phases__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3.5rem;
}

.phases__header p {
  color: var(--bark-muted);
  margin: 1rem auto 0;
}

.phase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(3rem, 6vw, 5rem);
}

.phase:nth-child(even) { direction: rtl; }
.phase:nth-child(even) > * { direction: ltr; }

.phase__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.phase__label--before { color: var(--teal); }
.phase__label--during { color: var(--ember); }
.phase__label--after  { color: var(--sage); }

.phase__label::before {
  content: '';
  width: 24px;
  height: 2px;
  border-radius: 1px;
  background: currentColor;
}

.phase h3 { margin-bottom: 0.75rem; }

.phase p {
  color: var(--bark-muted);
  margin-bottom: 1.25rem;
}

.phase__features {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.phase__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--bark-light);
}

.phase__features li::before {
  content: '~';
  flex-shrink: 0;
  color: var(--bark-muted);
  font-weight: 600;
  margin-top: 1px;
}

.phase__screenshot {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--card-border);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s ease;
}

.phase__screenshot:hover {
  transform: scale(1.015);
  box-shadow: var(--shadow-xl);
}

.phase__screenshot img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Hero Screenshot ───────────────────────── */
.hero-screenshot {
  margin-top: 3rem;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s var(--ease-out) 0.5s both;
}

.hero-screenshot__frame {
  max-width: 900px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--card-border);
}

.hero-screenshot__frame img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── Platform Section ──────────────────────── */
.platform {
  background: var(--cream);
}

.platform__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.platform__header p {
  color: var(--bark-muted);
  margin: 1rem auto 0;
}

.platform__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.platform__card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.platform__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.platform__card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.platform__card h4 { margin-bottom: 0.4rem; }

.platform__card p {
  font-size: 0.9rem;
  color: var(--bark-muted);
  line-height: 1.55;
}

/* ── Privacy Section ───────────────────────── */
.privacy-section {
  background: var(--bark);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}

.privacy-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(61, 139, 139, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(196, 91, 63, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.privacy-section .container { position: relative; z-index: 1; }

.privacy-section h2 { color: var(--cream); }

.privacy-section p { color: rgba(245, 240, 232, 0.7); }

.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 5rem);
  align-items: center;
}

.privacy__text h2 { margin-bottom: 1rem; }

.privacy__text > p { margin-bottom: 1.5rem; }

.privacy__features {
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.privacy__features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(245, 240, 232, 0.85);
}

.privacy__features li::before {
  content: '\2713';
  flex-shrink: 0;
  color: var(--teal);
  font-weight: 700;
}

.privacy__visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.privacy__badge {
  background: rgba(245, 240, 232, 0.06);
  border: 1px solid rgba(245, 240, 232, 0.1);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  transition: background 0.3s ease;
}

.privacy__badge:hover {
  background: rgba(245, 240, 232, 0.1);
}

.privacy__badge-icon {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.privacy__badge strong {
  display: block;
  font-size: 0.85rem;
  color: var(--cream);
  margin-bottom: 0.2rem;
}

.privacy__badge span {
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.5);
}

/* ── Waitlist Section ──────────────────────── */
.waitlist {
  background: var(--parchment);
  text-align: center;
}

.waitlist__inner {
  max-width: 560px;
  margin: 0 auto;
}

.waitlist h2 { margin-bottom: 0.75rem; }

.waitlist p {
  color: var(--bark-muted);
  margin: 0 auto 2rem;
}

.waitlist__form {
  display: flex;
  gap: 0.75rem;
  max-width: 480px;
  margin: 0 auto;
}

.waitlist__input {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-xl);
  background: var(--card);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--bark);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.waitlist__input::placeholder { color: var(--bark-muted); }

.waitlist__input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px var(--teal-soft);
}

.waitlist__note {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--bark-muted);
}

/* ── Built By Section ──────────────────────── */
.built-by {
  background: var(--cream);
  text-align: center;
}

.built-by__inner {
  max-width: 640px;
  margin: 0 auto;
}

.built-by blockquote {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  font-weight: 400;
  color: var(--bark-light);
  line-height: 1.6;
  margin-bottom: 1.5rem;
  position: relative;
  padding: 0 1rem;
}

.built-by blockquote::before {
  content: '\201C';
  position: absolute;
  top: -0.3em;
  left: -0.5em;
  font-size: 3rem;
  color: var(--ember);
  opacity: 0.3;
  font-family: var(--font-display);
}

.built-by cite {
  font-style: normal;
  font-size: 0.95rem;
  color: var(--bark-muted);
}

.built-by cite strong {
  color: var(--bark);
  display: block;
  margin-bottom: 0.15rem;
}

/* ── Footer ────────────────────────────────── */
.footer {
  background: var(--bark);
  color: rgba(245, 240, 232, 0.6);
  padding: 3rem 0;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.footer__brand-mark {
  width: 28px;
  height: 28px;
  background: var(--ember);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__brand-mark::after {
  content: '';
  width: 14px;
  height: 2px;
  background: var(--warm-white);
  border-radius: 1px;
}

.footer__brand span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 500;
}

.footer__info p {
  font-size: 0.82rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer__links {
  display: flex;
  gap: 3rem;
}

.footer__col h5 {
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.75rem;
}

.footer__col ul {
  list-style: none;
  display: grid;
  gap: 0.4rem;
}

.footer__col a {
  color: rgba(245, 240, 232, 0.6);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s ease;
}

.footer__col a:hover { color: var(--cream); }

.footer__bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(245, 240, 232, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

/* ── Section Labels ────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ember);
  margin-bottom: 0.75rem;
}

.section-label::before {
  content: '';
  width: 20px;
  height: 2px;
  background: var(--ember);
  border-radius: 1px;
}

/* ── Animations ────────────────────────────── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ────────────────────────────── */
@media (max-width: 968px) {
  .problem__grid,
  .phase,
  .privacy__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .phase:nth-child(even) { direction: ltr; }

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

  .stats__grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 640px) {
  body { font-size: 16px; }

  .nav__links { display: none; }
  .nav__mobile-toggle { display: block; }

  .nav__links--open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--cream);
    padding: 1.5rem;
    border-bottom: 1px solid var(--card-border);
    box-shadow: var(--shadow-md);
  }

  .platform__grid { grid-template-columns: 1fr; }
  .privacy__visual { grid-template-columns: 1fr 1fr; }

  .waitlist__form { flex-direction: column; }
  .waitlist__form .btn { width: 100%; justify-content: center; }

  .footer__inner { flex-direction: column; }
  .footer__links { flex-direction: column; gap: 1.5rem; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .hero__actions { flex-direction: column; align-items: center; }
  .hero__actions .btn { width: 100%; max-width: 300px; justify-content: center; }
}

/* ── Privacy Policy Page ───────────────────── */
.legal {
  padding-top: calc(72px + 3rem);
  min-height: 100vh;
}

.legal h1 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 0.5rem;
}

.legal__updated {
  color: var(--bark-muted);
  font-size: 0.9rem;
  margin-bottom: 3rem;
}

.legal h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--card-border);
}

.legal h2:first-of-type {
  border-top: none;
  padding-top: 0;
}

.legal p,
.legal li {
  color: var(--bark-light);
  margin-bottom: 0.75rem;
}

.legal ul, .legal ol {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal li { margin-bottom: 0.4rem; }

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