/* ================================================================
   Cheatah — landing styles
   Aesthetic: Editorial Warm Print
   Fraunces (variable serif, soft axis) + DM Sans + JetBrains Mono
   ================================================================ */

/* ---------- Tokens ---------- */
:root {
  --paper: #F2EBDD;
  --paper-soft: #FAF4E8;
  --paper-card: #FFFFFF;
  --paper-line: rgba(42, 22, 16, 0.08);

  --ink: #2A1610;
  --ink-light: #5A3520;
  --ink-muted: #8A7461;
  --ink-faded: rgba(42, 22, 16, 0.55);

  --flame: #E07A2A;
  --flame-deep: #C25E18;
  --flame-soft: #F2A35A;
  --flame-glow: rgba(224, 122, 42, 0.18);

  --sage: #9B9772;

  --serif: "Fraunces", "Times New Roman", serif;
  --sans:  "DM Sans", system-ui, -apple-system, sans-serif;
  --mono:  "JetBrains Mono", ui-monospace, "SF Mono", monospace;

  --w-max: 1180px;
  --w-prose: 720px;

  --rad-sm: 12px;
  --rad-md: 20px;
  --rad-lg: 32px;
  --rad-xl: 44px;

  --shadow-sm: 0 1px 2px rgba(42, 22, 16, 0.04), 0 4px 12px rgba(42, 22, 16, 0.04);
  --shadow-md: 0 4px 16px rgba(42, 22, 16, 0.06), 0 16px 32px rgba(42, 22, 16, 0.06);
  --shadow-phone: 0 30px 60px -15px rgba(42, 22, 16, 0.28), 0 12px 24px -8px rgba(42, 22, 16, 0.12);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  margin: 0;
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  font-feature-settings: "ss01", "cv11";
}

/* Grain texture overlay — applied to everything */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.5;
  mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200' viewBox='0 0 200 200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.09 0 0 0 0 0.06 0 0 0 0.32 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
  background-size: 200px 200px;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
::selection { background: var(--flame-glow); color: var(--ink); }

/* ---------- Typography ---------- */
.serif { font-family: var(--serif); font-variation-settings: "SOFT" 80, "opsz" 144, "wght" 600; }
.serif-display {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 600;
  letter-spacing: -0.02em;
  line-height: 1;
}
.serif-italic {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
}
.mono {
  font-family: var(--mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 500;
}

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--w-max); margin-inline: auto; padding-inline: clamp(20px, 4vw, 40px); }
.relative { position: relative; z-index: 2; }
.section { padding-block: clamp(72px, 11vw, 144px); position: relative; z-index: 2; }
.section-sm { padding-block: clamp(48px, 7vw, 88px); position: relative; z-index: 2; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--flame-deep);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: currentColor;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper-soft);
  padding: 14px 22px;
  border-radius: 999px;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  background: var(--ink-light);
  transform: translateY(-1px);
}
.btn-flame {
  background: var(--flame);
  color: var(--ink);
  padding: 16px 26px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 10px 24px -8px var(--flame), 0 4px 8px rgba(42, 22, 16, 0.12);
}
.btn-flame:hover {
  background: var(--flame-soft);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px var(--flame), 0 6px 12px rgba(42, 22, 16, 0.18);
}
.btn-appstore {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: var(--ink);
  color: var(--paper-soft);
  padding: 14px 24px;
  border-radius: var(--rad-md);
  box-shadow: var(--shadow-md);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.btn-appstore:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(42, 22, 16, 0.28); }
.btn-appstore svg { width: 30px; height: 30px; flex: 0 0 30px; }
.btn-appstore .lbl-sm { display: block; font-size: 10px; font-weight: 400; opacity: 0.75; line-height: 1; margin-bottom: 4px; letter-spacing: 0.04em; }
.btn-appstore .lbl-lg { display: block; font-size: 18px; font-weight: 600; line-height: 1; letter-spacing: -0.01em; }

/* Strip nav/back/footer chrome when privacy page is opened from inside the iOS app (?mobileApp=true) */
.mobile-app .nav,
.mobile-app .privacy-back,
.mobile-app .foot { display: none; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(242, 235, 221, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--paper-line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 16px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "wght" 600;
  font-size: 1.45rem;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.brand img {
  width: 40px; height: 40px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(42, 22, 16, 0.16);
}
.brand-tag {
  font-family: var(--mono);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-muted);
  padding: 3px 7px;
  border: 1px solid var(--paper-line);
  border-radius: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-light);
}
.nav-links a { transition: color 160ms ease; }
.nav-links a:hover, .nav-links a.is-active { color: var(--flame-deep); }
@media (max-width: 720px) {
  .nav-links { display: none; }
  .brand-tag { display: none; }
}

/* ---------- Hero ---------- */
.hero { padding-block: clamp(60px, 9vw, 130px) clamp(40px, 6vw, 80px); position: relative; z-index: 2; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
@media (max-width: 920px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }

.hero-eyebrow { margin-bottom: 28px; opacity: 0; animation: rise 700ms 50ms ease-out forwards; }
.hero-title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 600;
  font-size: clamp(3rem, 7.4vw, 5.8rem);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--ink);
  opacity: 0;
  animation: rise 800ms 150ms ease-out forwards;
}
.hero-title em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  color: var(--flame-deep);
  position: relative;
  display: inline-block;
}
.hero-title em::after {
  content: "";
  position: absolute;
  left: -2%; right: -2%; bottom: 0.04em;
  height: 0.16em;
  background: var(--flame-glow);
  z-index: -1;
  border-radius: 4px;
  transform: skew(-8deg);
}

.hero-sub {
  font-size: clamp(1.05rem, 1.4vw, 1.22rem);
  line-height: 1.55;
  color: var(--ink-light);
  max-width: 520px;
  margin: 28px 0 0;
  opacity: 0;
  animation: rise 800ms 280ms ease-out forwards;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  opacity: 0;
  animation: rise 800ms 410ms ease-out forwards;
}
.hero-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  color: var(--ink-muted);
}
.paws {
  display: inline-flex;
  gap: 4px;
  color: var(--flame);
}
.paws svg { width: 18px; height: 18px; }

.hero-art {
  position: relative;
  opacity: 0;
  animation: rise 900ms 360ms ease-out forwards;
}
.hero-art-glow {
  position: absolute;
  inset: -8% -4%;
  background: radial-gradient(60% 60% at 50% 50%, var(--flame-glow) 0%, transparent 65%);
  filter: blur(20px);
  z-index: 0;
}
.phone {
  position: relative;
  border-radius: var(--rad-xl);
  box-shadow: var(--shadow-phone);
  display: block;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  transform: rotate(2.2deg);
  transition: transform 600ms ease;
}
.phone:hover { transform: rotate(0deg); }

/* decorative paw scatter */
.paw-scatter {
  position: absolute;
  pointer-events: none;
  color: var(--flame);
  opacity: 0.5;
}
.paw-scatter svg { width: 28px; height: 28px; }
.paw-1 { top: -14px; right: 8%; transform: rotate(-18deg); }
.paw-2 { bottom: 4%; left: -18px; transform: rotate(22deg); opacity: 0.35; }
.paw-3 { top: 22%; right: -22px; transform: rotate(34deg); opacity: 0.25; }

/* speech sticker (right of phone) */
.sticker {
  position: absolute;
  z-index: 3;
  background: var(--paper-card);
  border: 1px solid var(--paper-line);
  border-radius: var(--rad-lg);
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
  font-size: 0.84rem;
  color: var(--ink-light);
  line-height: 1.4;
  transform: rotate(-3deg);
}
.sticker strong { color: var(--ink); font-weight: 700; }
.sticker-1 { top: 8%; left: -30px; }
.sticker-2 { bottom: 8%; right: -10px; transform: rotate(2.5deg); }
@media (max-width: 920px) {
  .sticker-1 { display: none; }
  .sticker-2 { right: 8px; bottom: -8px; }
}

/* ---------- Marquee ---------- */
.marquee {
  background: var(--ink);
  color: var(--paper-soft);
  overflow: hidden;
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--ink-light);
  border-bottom: 1px solid var(--ink-light);
}
.marquee-track {
  display: flex;
  align-items: center;
  padding-block: 22px;
  white-space: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
}
.marquee-item {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  font-style: italic;
  font-size: 1.6rem;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding-inline-end: 56px;
}
.marquee-item svg { width: 22px; height: 22px; color: var(--flame); }

/* ---------- Pillars ---------- */
.pillars-head {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
  margin-bottom: clamp(48px, 7vw, 88px);
}
@media (max-width: 880px) { .pillars-head { grid-template-columns: 1fr; align-items: start; gap: 24px; } }

.h-section {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 600;
  font-size: clamp(2.2rem, 4.6vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 16px 0 0;
  color: var(--ink);
}
.h-section em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  color: var(--flame-deep);
}
.section-lede {
  font-size: 1.12rem;
  line-height: 1.55;
  color: var(--ink-light);
  max-width: 480px;
  margin: 0;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--paper-line);
  border: 1px solid var(--paper-line);
  border-radius: var(--rad-lg);
  overflow: hidden;
}
@media (max-width: 880px) { .pillars { grid-template-columns: 1fr; } }

.pillar {
  background: var(--paper-soft);
  padding: 40px 34px 36px;
  transition: background 240ms ease;
  position: relative;
}
.pillar:hover { background: var(--paper-card); }
.pillar-num {
  font-family: var(--serif);
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 400;
  font-size: 2.6rem;
  color: var(--flame);
  line-height: 1;
  letter-spacing: -0.02em;
}
.pillar-title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 600;
  font-size: 1.6rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 22px 0 12px;
  color: var(--ink);
}
.pillar-text {
  font-size: 0.98rem;
  color: var(--ink-light);
  line-height: 1.6;
  margin: 0;
}

/* ---------- How it works ---------- */
.how {
  background: var(--ink);
  color: var(--paper-soft);
  position: relative;
  z-index: 2;
}
.how::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 12% 18%, rgba(224, 122, 42, 0.10) 0%, transparent 40%),
                    radial-gradient(circle at 88% 80%, rgba(224, 122, 42, 0.06) 0%, transparent 50%);
  pointer-events: none;
}
.how-head { text-align: center; max-width: 640px; margin: 0 auto clamp(56px, 8vw, 96px); position: relative; z-index: 1; }
.how-head .eyebrow { color: var(--flame-soft); }
.how-head .h-section { color: var(--paper-soft); }
.how-head .h-section em { color: var(--flame-soft); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4.5vw, 56px);
  position: relative;
  z-index: 1;
}
@media (max-width: 880px) { .steps { grid-template-columns: 1fr; } }

.step { text-align: left; }
.step-num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  font-style: italic;
  font-size: clamp(5.5rem, 9.5vw, 8.5rem);
  line-height: 0.85;
  color: transparent;
  -webkit-text-stroke: 1.5px var(--flame);
  display: block;
  margin-bottom: 8px;
  letter-spacing: -0.04em;
}
.step-phone-wrap { position: relative; margin: 16px 0 24px; }
.step-phone {
  border-radius: var(--rad-lg);
  box-shadow: 0 30px 60px -25px rgba(0,0,0,0.5);
  width: 100%;
  max-width: 280px;
  margin-inline: auto;
  display: block;
}
.step-title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 600;
  font-size: 1.6rem;
  line-height: 1.1;
  color: var(--paper-soft);
  margin: 0 0 10px;
  letter-spacing: -0.015em;
}
.step-text { color: rgba(250, 244, 232, 0.7); font-size: 0.98rem; line-height: 1.55; margin: 0; max-width: 320px; }

/* ---------- Philosophy / pull-quote ---------- */
.philosophy {
  background: var(--paper);
  position: relative;
  z-index: 2;
}
.philosophy-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
@media (max-width: 920px) { .philosophy-grid { grid-template-columns: 1fr; gap: 40px; } }

.pull-quote {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.022em;
  margin: 16px 0 0;
  color: var(--ink);
}
.pull-quote em {
  font-style: italic;
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  color: var(--flame-deep);
}
.philosophy-list { list-style: none; padding: 0; margin: 32px 0 0; }
.philosophy-list li {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-top: 1px solid var(--paper-line);
  font-size: 1.02rem;
  color: var(--ink-light);
  line-height: 1.5;
}
.philosophy-list li:last-child { border-bottom: 1px solid var(--paper-line); }
.philosophy-list li strong { color: var(--ink); font-weight: 700; }
.philosophy-list .bullet {
  font-family: var(--serif);
  font-style: italic;
  color: var(--flame);
  font-size: 1.5rem;
  line-height: 1;
}

.philosophy-art { position: relative; }
.philosophy-art .phone { transform: rotate(-2deg); max-width: 380px; }

/* ---------- Stats moment ---------- */
.stats {
  background: var(--paper-soft);
  border-top: 1px solid var(--paper-line);
  border-bottom: 1px solid var(--paper-line);
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 4vw, 48px);
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; } }
.stat { text-align: left; padding-left: 18px; border-left: 2px solid var(--flame); }
.stat-num {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 500;
  font-size: clamp(3rem, 6vw, 4.6rem);
  line-height: 0.9;
  color: var(--ink);
  letter-spacing: -0.04em;
  display: block;
  margin-bottom: 8px;
}
.stat-num em { font-style: italic; color: var(--flame-deep); font-variation-settings: "SOFT" 100, "wght" 500; }
.stat-label {
  font-family: var(--mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  line-height: 1.4;
}

/* ---------- Final CTA ---------- */
.final {
  background: var(--ink);
  color: var(--paper-soft);
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.final::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(50% 50% at 75% 50%, rgba(224, 122, 42, 0.16) 0%, transparent 70%);
  pointer-events: none;
}
.final-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}
@media (max-width: 920px) { .final-grid { grid-template-columns: 1fr; gap: 40px; } }
.final-title {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 600;
  font-size: clamp(2.6rem, 6.4vw, 5rem);
  line-height: 0.98;
  letter-spacing: -0.025em;
  margin: 18px 0 0;
  color: var(--paper-soft);
}
.final-title em {
  font-style: italic;
  color: var(--flame-soft);
  font-variation-settings: "SOFT" 100, "wght" 500;
}
.final-sub {
  font-size: 1.12rem;
  color: rgba(250, 244, 232, 0.78);
  max-width: 460px;
  margin: 22px 0 36px;
  line-height: 1.55;
}
.final-meta {
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(250, 244, 232, 0.5);
  margin: 16px 0 0;
}
.final-art .phone {
  max-width: 460px;
  border-radius: var(--rad-xl);
  transform: rotate(-2deg);
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.55);
}

/* ---------- Footer ---------- */
.foot {
  background: var(--ink);
  color: rgba(250, 244, 232, 0.6);
  padding-block: 40px;
  border-top: 1px solid rgba(250, 244, 232, 0.08);
  position: relative;
  z-index: 2;
}
.foot-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  font-size: 0.88rem;
}
.foot .brand { color: var(--paper-soft); font-size: 1.2rem; }
.foot .brand img { width: 32px; height: 32px; }
.foot-links { display: flex; gap: 28px; font-weight: 500; }
.foot-links a:hover { color: var(--flame-soft); }
.foot-copy {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: rgba(250, 244, 232, 0.4);
}

/* ---------- Privacy page ---------- */
.privacy-main { padding-block: clamp(48px, 7vw, 88px) clamp(56px, 8vw, 112px); }
.privacy-prose { max-width: var(--w-prose); margin-inline: auto; }
.privacy-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--ink-muted);
  margin-bottom: 32px;
  transition: color 160ms ease;
}
.privacy-back:hover { color: var(--flame-deep); }
.privacy-head { padding-bottom: 36px; margin-bottom: 48px; border-bottom: 1px solid var(--paper-line); }
.privacy-h1 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 100, "opsz" 144, "wght" 600;
  font-size: clamp(2.6rem, 5.4vw, 4rem);
  line-height: 1;
  letter-spacing: -0.025em;
  margin: 16px 0 0;
  color: var(--ink);
}
.privacy-meta { font-size: 0.92rem; color: var(--ink-muted); margin: 18px 0 22px; }
.privacy-meta strong { color: var(--ink); font-weight: 600; }
.privacy-intro { font-size: 1.12rem; line-height: 1.6; color: var(--ink-light); margin: 0; }

.privacy-section { margin-bottom: 56px; }
.privacy-section h2 {
  font-family: var(--serif);
  font-variation-settings: "SOFT" 90, "opsz" 144, "wght" 600;
  font-size: clamp(1.6rem, 2.8vw, 2rem);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 18px;
  color: var(--ink);
}
.privacy-section h3 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.05rem;
  margin: 28px 0 10px;
  color: var(--ink);
}
.privacy-section p { color: var(--ink-light); line-height: 1.6; margin: 0 0 12px; }
.privacy-section ul { padding-left: 0; list-style: none; margin: 12px 0 16px; }
.privacy-section ul li {
  padding: 10px 0 10px 22px;
  position: relative;
  color: var(--ink-light);
  line-height: 1.55;
  border-bottom: 1px solid var(--paper-line);
}
.privacy-section ul li:last-child { border-bottom: none; }
.privacy-section ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 18px;
  width: 8px; height: 1px;
  background: var(--flame);
}
.privacy-section strong { color: var(--ink); font-weight: 600; }
.privacy-section a { color: var(--flame-deep); font-weight: 500; border-bottom: 1px solid var(--flame-glow); }
.privacy-section a:hover { color: var(--flame); }
.privacy-section em.note { font-style: italic; color: var(--ink-muted); font-size: 0.92rem; display: block; margin-top: 8px; }

/* ---------- Animations ---------- */
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-12.5%); }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .marquee-track { animation: none; }
  .phone { transform: none; }
}

/* ---------- Print ---------- */
@media print {
  body::before { display: none; }
  .nav, .marquee, .foot, .final { display: none; }
  body { background: white; color: black; }
}
