/* ============================================================
   Veliy — "Liquid Amber" web design system v4
   Unified .phone class with parent context selectors
   Mirrors the iOS app's tokens (Shared/DesignTokens.swift)
   ============================================================ */

/* ---------- Design tokens ---------- */
:root {
  /* Brand — terracotta */
  --accent: #964824;
  --accent-hover: #77320E;
  --accent-subtle: rgba(150, 72, 36, 0.07);
  --accent-subtle-solid: #FFDBCD;

  /* Secondary — sage */
  --secondary: #506358;
  --secondary-subtle: rgba(80, 99, 88, 0.06);
  --secondary-subtle-solid: #D2E8DA;

  /* Backgrounds — warm cream */
  --bg: #F9F9FC;
  --bg-elevated: #FFFFFF;
  --bg-secondary: #F3F3F6;
  --bg-tint: #FBF4EF;

  /* Text — coffee system */
  --text-primary: #1A1C1E;
  --text-secondary: #382C23;
  --text-tertiary: #5E4D40;

  /* Borders */
  --border-subtle: #DAC1B8;
  --divider: #E2E2E5;

  /* Semantic */
  --warning: #D2832A;
  --success: #506358;

  /* Radii */
  --r-card: 20px;
  --r-hero: 28px;
  --r-sub: 14px;
  --r-pill: 999px;

  /* Spacing — 8px grid */
  --s-xs: 4px;
  --s-s: 8px;
  --s-m: 16px;
  --s-l: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;
  --s-giant: 64px;

  /* Shadows — subtle, paper-like */
  --shadow-card: 0 3px 8px rgba(0, 0, 0, 0.04);
  --shadow-card-2: 0 4px 12px rgba(0, 0, 0, 0.04), 0 12px 28px rgba(0, 0, 0, 0.03);
  --shadow-float: 0 4px 16px rgba(0, 0, 0, 0.06);
  --shadow-accent: 0 4px 8px rgba(150, 72, 36, 0.08);
  --shadow-phone: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 2px 4px rgba(0,0,0,0.02), 0 12px 40px rgba(0,0,0,0.06), 0 40px 80px rgba(0,0,0,0.04);

  /* Typography */
  --serif: "New York", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --sans: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Segoe UI", system-ui, sans-serif;
  --mono: "SF Mono", "JetBrains Mono", "Roboto Mono", monospace;

  /* Motion — matches DesignTokens.Motion.entranceSpring */
  --ease-entrance: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-snappy: cubic-bezier(0.34, 1.56, 0.64, 1);

  --container: 1120px;
  --container-narrow: 760px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --accent: #D68A61;
    --accent-hover: #E8A07A;
    --accent-subtle: rgba(214, 138, 97, 0.1);
    --accent-subtle-solid: #3A2418;

    --secondary: #7FA08C;
    --secondary-subtle: rgba(127, 160, 140, 0.08);
    --secondary-subtle-solid: #1F2E25;

    --bg: #18181A;
    --bg-elevated: #1E1E20;
    --bg-secondary: #262628;
    --bg-tint: #20180F;

    --text-primary: #F3F3F6;
    --text-secondary: #C6B7B0;
    --text-tertiary: #94877F;

    --border-subtle: #4C423C;
    --divider: #3F3F40;

    --warning: #E6A250;

    --shadow-card: 0 3px 8px rgba(0, 0, 0, 0.3);
    --shadow-card-2: 0 4px 12px rgba(0, 0, 0, 0.3), 0 12px 28px rgba(0, 0, 0, 0.25);
    --shadow-float: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-phone: 0 0 0 1px rgba(255,255,255,0.04) inset, 0 2px 4px rgba(0,0,0,0.15), 0 12px 40px rgba(0,0,0,0.25), 0 40px 80px rgba(0,0,0,0.15);
  }
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "kern" 1, "liga" 1;
  overflow-x: hidden;
}

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

a { color: var(--accent); text-decoration: none; transition: color .2s var(--ease-entrance); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--text-primary);
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin: 0;
}

p { margin: 0; }

ul, ol { margin: 0; padding: 0; }

::selection { background: var(--accent-subtle-solid); color: var(--accent-hover); }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-l);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: var(--s-giant) 0; }
.section--tight { padding: var(--s-xxl) 0; }

/* ---------- Wordmark & brand ---------- */
.wordmark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}
.wordmark--lg { font-size: 15px; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--bg) 78%, transparent);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--divider);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: var(--s-l);
  list-style: none;
}
.nav__links a {
  color: var(--text-tertiary);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__links a:hover,
.nav__links a.is-active { color: var(--text-primary); }
.nav__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--s-s);
  height: 36px;
  padding: 0 var(--s-m);
  border-radius: var(--r-pill);
  background: var(--text-primary);
  color: var(--bg);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform .25s var(--ease-snappy), opacity .2s;
}
.nav__cta:hover { transform: scale(0.97); color: var(--bg); opacity: 0.92; }
@media (max-width: 640px) {
  .nav__links { gap: var(--s-m); }
  .nav__links a { font-size: 13px; }
  .nav__cta { display: none; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-s);
  height: 52px;
  padding: 0 var(--s-xl);
  border-radius: var(--r-card);
  border: none;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform .25s var(--ease-snappy), background .2s, box-shadow .2s;
  text-decoration: none;
}
.btn:hover { transform: scale(0.97); }
.btn--primary {
  background: var(--accent);
  color: #FFF;
  box-shadow: var(--shadow-accent);
}
.btn--primary:hover { background: var(--accent-hover); color: #FFF; }
.btn--ghost {
  background: transparent;
  color: var(--text-primary);
  box-shadow: inset 0 0 0 1px var(--border-subtle);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 1px var(--accent); color: var(--accent); }
.btn--sm { height: 40px; padding: 0 var(--s-l); font-size: 14px; border-radius: var(--r-pill); }

/* ---------- Pills / badges ---------- */
.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-s);
  height: 32px;
  padding: 0 var(--s-m);
  border-radius: var(--r-pill);
  background: var(--bg-secondary);
  color: var(--text-tertiary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.pill--accent { background: var(--accent-subtle-solid); color: var(--accent-hover); }
.pill--sage { background: var(--secondary-subtle-solid); color: var(--secondary); }
.pill__dot { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }

/* ================================================================
   HERO
   ================================================================ */
.hero { padding: var(--s-giant) 0 var(--s-xxl); position: relative; }
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--s-xxl);
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s-s);
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: var(--s-l);
}
.hero__title {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
}
.hero__title em { font-style: italic; color: var(--accent); }
.hero__sub {
  margin-top: var(--s-l);
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  line-height: 1.55;
  color: var(--text-tertiary);
  max-width: 30em;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: var(--s-m); margin-top: var(--s-xl); }
.hero__note {
  margin-top: var(--s-l);
  font-size: 13px;
  color: var(--text-tertiary);
  display: inline-flex;
  align-items: center;
  gap: var(--s-s);
}

/* Hero visual — centered phone with glow + floating snippets */
.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 56px 0;
}

.hero__glow {
  position: absolute;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,72,36,0.07) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
}

/* Phone base — shared by hero and gallery */
.phone {
  position: relative;
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow-phone);
}
.phone__notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: var(--bg-elevated);
  border-radius: 0 0 18px 18px;
  z-index: 2;
}
.phone__screen {
  width: 100%;
  aspect-ratio: 9 / 19.5;
  overflow: hidden;
  border-radius: 36px;
}
.phone__screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero phone context */
.hero__visual .phone {
  width: 280px;
  z-index: 1;
  animation: phoneFloat 6s ease-in-out infinite;
}
.hero__visual .phone--hero { width: 300px; }

/* Gallery phone context */
.gallery .phone {
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
  padding: 8px;
  border-radius: 42px;
  box-shadow: var(--shadow-card-2), 0 0 0 1px var(--border-subtle);
}
.gallery .phone__screen {
  border-radius: 34px;
  background: var(--bg);
}
.gallery .phone__screen img {
  object-position: top center;
}
.gallery .phone__notch {
  top: 8px;
  width: 96px;
  height: 26px;
  background: var(--text-primary);
  border-radius: 0 0 16px 16px;
}
.gallery .phone--lg { max-width: 320px; }
.gallery .phone--sm { max-width: 220px; }

@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Floating snippets — elegant side elements (v6 fix) */
.hero__snippet {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: 16px;
  padding: 12px 16px;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.04),
    0 8px 24px rgba(0,0,0,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: snippetFloat 5s ease-in-out infinite;
}
.hero__snippet--left {
  top: 12%;
  left: -20px;
  animation-delay: -1.5s;
}
.hero__snippet--right {
  bottom: 16%;
  right: -20px;
  animation-delay: -3s;
}
.hero__snippet-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--accent-subtle);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hero__snippet-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.hero__snippet-body {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.hero__snippet-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-tertiary);
}
.hero__snippet-value {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.2;
}

@keyframes snippetFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: var(--s-xxl); }
  .hero__visual { order: 2; max-width: 380px; margin: 0 auto; padding: 48px 0; }
  .hero__snippet--left { left: 0; }
  .hero__snippet--right { right: 0; }
}

/* ================================================================
   SECTION HEADINGS
   ================================================================ */
.section-head { max-width: 38em; margin-bottom: var(--s-xxl); }
.section-head__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--text-tertiary); margin-bottom: var(--s-m);
}
.section-head__title { font-size: clamp(1.9rem, 4vw, 2.8rem); letter-spacing: -0.02em; }
.section-head__title em { font-style: italic; color: var(--accent); }
.section-head__sub { margin-top: var(--s-m); font-size: 1.05rem; color: var(--text-tertiary); line-height: 1.55; }
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }

/* ================================================================
   FEATURE CARDS
   ================================================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-l);
}
@media (max-width: 860px) { .feature-grid { grid-template-columns: 1fr; } }

.card {
  background: var(--bg-elevated);
  border-radius: var(--r-card);
  border: 1px solid var(--divider);
  padding: var(--s-xl);
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-entrance), box-shadow .35s var(--ease-entrance);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-2);
}
.card__index {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: var(--s-m);
  order: -1;
}
.card__title { font-size: 1.5rem; margin-bottom: var(--s-m); }
.card__desc { color: var(--text-tertiary); font-size: 15px; line-height: 1.6; }
.card__list { list-style: none; margin-top: var(--s-m); display: grid; gap: var(--s-s); }
.card__list li {
  position: relative;
  padding-left: 20px;
  font-size: 14px;
  color: var(--text-secondary);
}
.card__list li::before {
  content: "";
  position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}

.icon-chip {
  width: 44px; height: 44px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--accent-subtle);
  color: var(--accent);
  margin-bottom: var(--s-l);
}
.icon-chip--sage { background: var(--secondary-subtle); color: var(--secondary); }

/* ================================================================
   PRIVACY STATEMENT
   ================================================================ */
.statement {
  background: var(--bg-tint);
  border-radius: var(--r-hero);
  padding: var(--s-xxl) var(--s-xl);
  border: 1px solid var(--border-subtle);
  position: relative;
  overflow: hidden;
}
.statement::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(150,72,36,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.statement__inner { max-width: 44em; position: relative; z-index: 1; }
.statement__title { font-size: clamp(1.8rem, 4vw, 2.6rem); letter-spacing: -0.02em; }
.statement__title em { font-style: italic; color: var(--accent); }
.statement__list {
  list-style: none;
  margin-top: var(--s-xl);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-l);
}
@media (max-width: 720px) { .statement__list { grid-template-columns: 1fr; } }
.statement__list li {
  display: flex; gap: var(--s-m); align-items: flex-start;
  font-size: 15px; color: var(--text-secondary);
}
.statement__list svg { flex-shrink: 0; margin-top: 2px; color: var(--secondary); }

/* ================================================================
   SCREENSHOT GALLERY
   ================================================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-l);
  align-items: end;
}
@media (max-width: 860px) { .gallery { grid-template-columns: 1fr; } }
.shot {
  text-align: center;
}

.shot .phone { margin-bottom: var(--s-m); }
.shot--center { transform: translateY(-24px); }
@media (max-width: 860px) { .shot--center { transform: none; } }
.shot__caption { font-size: 13px; color: var(--text-tertiary); }
.shot__caption strong { color: var(--text-secondary); font-weight: 600; display: block; font-family: var(--serif); font-size: 15px; margin-bottom: 2px; }

/* ================================================================
   PRICING
   ================================================================ */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-l);
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }
.price-card {
  background: var(--bg-elevated);
  border-radius: var(--r-card);
  border: 1px solid var(--divider);
  padding: var(--s-xl);
  box-shadow: var(--shadow-card);
  transition: transform .35s var(--ease-entrance), box-shadow .35s var(--ease-entrance);
}
.price-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-card-2);
}
.price-card--featured {
  border-color: var(--accent);
  box-shadow: var(--shadow-accent);
  position: relative;
}
.price-card__plan { font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); }
.price-card__price { font-family: var(--serif); font-size: 2.4rem; color: var(--text-primary); margin: var(--s-s) 0 var(--s-xs); }
.price-card__price small { font-size: 0.9rem; color: var(--text-tertiary); font-family: var(--sans); }
.price-card__features { list-style: none; margin-top: var(--s-l); display: grid; gap: var(--s-s); }
.price-card__features li { position: relative; padding-left: 24px; font-size: 14px; color: var(--text-secondary); }
.price-card__features li::before {
  content: ""; position: absolute; left: 0; top: 7px;
  width: 14px; height: 8px;
  border-left: 2px solid var(--accent); border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

/* ================================================================
   CTA BAND
   ================================================================ */
.cta-band {
  text-align: center;
  padding: var(--s-giant) 0;
}
.cta-band__title { font-size: clamp(2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
.cta-band__title em { font-style: italic; color: var(--accent); }
.cta-band__sub { margin: var(--s-m) auto var(--s-xl); max-width: 30em; color: var(--text-tertiary); font-size: 1.05rem; }

/* ================================================================
   FOOTER
   ================================================================ */
.footer {
  border-top: 1px solid var(--divider);
  padding: var(--s-xxl) 0 var(--s-xl);
  margin-top: var(--s-giant);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-xxl);
  margin-bottom: var(--s-xxl);
}
@media (max-width: 720px) { .footer__grid { grid-template-columns: 1fr 1fr; gap: var(--s-xl); } }
.footer__brand { font-family: var(--serif); font-size: 1.4rem; color: var(--text-primary); }
.footer__tagline { margin-top: var(--s-s); color: var(--text-tertiary); font-size: 14px; max-width: 22em; }
.footer__col h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--s-m); }
.footer__col ul { list-style: none; display: grid; gap: var(--s-s); }
.footer__col a { color: var(--text-secondary); font-size: 14px; }
.footer__col a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: var(--s-l); border-top: 1px solid var(--divider);
  font-size: 13px; color: var(--text-tertiary);
}
@media (max-width: 560px) { .footer__bottom { flex-direction: column; gap: var(--s-s); text-align: center; } }

/* ================================================================
   LEGAL PAGES
   ================================================================ */
.legal { padding: var(--s-xxl) 0 var(--s-giant); }
.legal__head { margin-bottom: var(--s-xxl); max-width: var(--container-narrow); }
.legal__eyebrow { font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: var(--s-m); }
.legal__title { font-size: clamp(2.2rem, 5vw, 3.2rem); letter-spacing: -0.02em; }
.legal__meta { margin-top: var(--s-m); color: var(--text-tertiary); font-size: 14px; }

.legal__layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: var(--s-xxl);
  align-items: start;
}
@media (max-width: 900px) { .legal__layout { grid-template-columns: 1fr; } .legal__toc { display: none; } }

.legal__toc {
  position: sticky; top: 88px;
  font-size: 13px;
}
.legal__toc h4 { font-family: var(--sans); font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: var(--s-m); }
.legal__toc ul { list-style: none; display: grid; gap: var(--s-s); }
.legal__toc a { color: var(--text-tertiary); display: block; padding: 4px 0; border-left: 2px solid transparent; padding-left: var(--s-s); }
.legal__toc a:hover, .legal__toc a.is-active { color: var(--accent); border-left-color: var(--accent); }

.legal__content { max-width: var(--container-narrow); }
.legal__content h2 { font-size: 1.6rem; margin: var(--s-xxl) 0 var(--s-m); scroll-margin-top: 88px; }
.legal__content h2:first-child { margin-top: 0; }
.legal__content h3 { font-family: var(--sans); font-size: 1rem; font-weight: 600; color: var(--text-primary); margin: var(--s-l) 0 var(--s-s); letter-spacing: 0; }
.legal__content p { margin: 0 0 var(--s-m); color: var(--text-secondary); font-size: 15px; line-height: 1.7; }
.legal__content ul, .legal__content ol { margin: 0 0 var(--s-m); padding-left: 1.3em; }
.legal__content li { margin-bottom: var(--s-s); color: var(--text-secondary); font-size: 15px; line-height: 1.65; }
.legal__content strong { color: var(--text-primary); font-weight: 600; }
.legal__content a { font-weight: 500; }
.legal__content hr { border: none; border-top: 1px solid var(--divider); margin: var(--s-xl) 0; }

.callout {
  background: var(--bg-tint);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-card);
  padding: var(--s-l) var(--s-xl);
  margin: var(--s-l) 0;
}
.callout__label { display: inline-flex; align-items: center; gap: 6px; font-size: 11px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--secondary); margin-bottom: var(--s-s); }
.callout p { color: var(--text-secondary); }

.contact-block {
  margin-top: var(--s-xl);
  padding: var(--s-xl);
  background: var(--bg-elevated);
  border: 1px solid var(--divider);
  border-radius: var(--r-card);
}
.contact-block a { font-weight: 600; }

/* ================================================================
   ENTRANCE ANIMATIONS
   ================================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { opacity: 0; animation: fadeUp .7s var(--ease-entrance) forwards; }
.reveal-1 { animation-delay: .05s; }
.reveal-2 { animation-delay: .13s; }
.reveal-3 { animation-delay: .21s; }
.reveal-4 { animation-delay: .29s; }
.reveal-5 { animation-delay: .37s; }

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

/* ================================================================
   UTILITIES
   ================================================================ */
.center { text-align: center; }
.mt-xl { margin-top: var(--s-xl); }
.mt-xxl { margin-top: var(--s-xxl); }
.text-tertiary { color: var(--text-tertiary); }
.mono { font-family: var(--mono); }
