/* ============================================================
   Soma — landing page styles
   Calm, warm, minimal. Mirrors the app's monochrome,
   premium aesthetic with a soft paper background.
   ============================================================ */

:root {
  /* Palette — warm near-black + off-white ink, single calm accent.
     Tokens are semantic: --paper = background, --ink = foreground.
     A dark theme just means paper is dark and ink is light, so primary
     buttons become light pills with dark text — same as the app's dark UI. */
  --paper:        #14110C;   /* main background — warm near-black */
  --paper-soft:   #19150F;   /* alternating sections, slightly lifted */
  --paper-card:   #1E1A13;   /* cards / surfaces */
  --ink:          #F3EEE4;   /* primary text & light pill buttons */
  --ink-soft:     #C3BBAD;   /* secondary text */
  --muted:        #918979;   /* tertiary / meta text */
  --line:         rgba(255, 255, 255, 0.09);
  --line-strong:  rgba(255, 255, 255, 0.17);
  --accent:       #9CB093;   /* lifted sage — readable on dark */
  --accent-soft:  #CDBBA0;   /* warm clay highlight */
  --dark:         #0D0B07;   /* deepest block (practices, footer) */
  --dark-soft:    #17130D;   /* cards inside the deepest block */
  --on-dark:      #F1ECE2;
  --on-dark-mute: #A89F90;

  --radius-sm: 12px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 36px;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.30), 0 4px 14px rgba(0, 0, 0, 0.28);
  --shadow:    0 12px 32px rgba(0, 0, 0, 0.42), 0 2px 8px rgba(0, 0, 0, 0.32);
  --shadow-lg: 0 36px 80px rgba(0, 0, 0, 0.58), 0 10px 28px rgba(0, 0, 0, 0.42);

  --font-serif: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans:  "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --maxw: 1120px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
em { font-style: italic; }
img, svg { display: block; max-width: 100%; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--paper);
  padding: 10px 16px;
  border-radius: 0 0 10px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

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

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: 24px;
}
.narrow { max-width: 760px; }
.center { text-align: center; }

.section { padding: 96px 0; }
.section-soft { background: var(--paper-soft); }

@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 0 0 20px;
}
.eyebrow-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(156, 176, 147, 0.22);
}
.center-eyebrow { justify-content: center; }
.eyebrow.on-dark, .on-dark { color: var(--accent-soft); }

.section-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.2rem + 2.6vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.section-lead {
  margin-top: 18px;
  font-size: 1.1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.section-head {
  max-width: 660px;
  margin: 0 auto 56px;
  text-align: center;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 1rem;
  padding: 15px 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease),
              box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 10px 18px; font-size: 0.95rem; }

.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: var(--shadow-sm);
}
.btn-primary:hover { background: #fff; transform: translateY(-1px); box-shadow: var(--shadow); }

.btn-outline {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-outline:hover { border-color: var(--ink); transform: translateY(-1px); }

/* ---------- App Store badge ---------- */
.appstore-badge {
  display: inline-block;
  border-radius: 10px;
  /* hairline keeps the black badge legible on the dark background */
  box-shadow: var(--shadow-sm), inset 0 0 0 1px rgba(255, 255, 255, 0.12);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.appstore-badge svg { border-radius: 10px; display: block; }
.appstore-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(20, 17, 12, 0.72);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(20, 17, 12, 0.9);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}
.brand-mark { color: var(--accent); display: inline-flex; }
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.header-nav {
  display: flex;
  gap: 34px;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.header-nav a { position: relative; transition: color 0.2s var(--ease); }
.header-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 1.5px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.header-nav a:hover { color: var(--ink); }
.header-nav a:hover::after { transform: scaleX(1); }

@media (max-width: 860px) {
  .header-nav { display: none; }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: 72px 0 96px;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: -240px; right: -160px;
  width: 760px; height: 760px;
  background: radial-gradient(circle at center,
              rgba(205, 187, 160, 0.16) 0%,
              rgba(156, 176, 147, 0.08) 40%,
              transparent 70%);
  filter: blur(10px);
  z-index: 0;
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.hero-copy { max-width: 560px; }

.hero-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 1.5rem + 4.4vw, 4.1rem);
  line-height: 1.04;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.hero-title em { color: var(--accent); font-style: italic; }

.hero-sub {
  margin-top: 24px;
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
}

.hero-actions {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.hero-note { font-size: 0.92rem; color: var(--muted); }

.hero-trust {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.hero-trust .dot { color: var(--line-strong); }

@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-copy { max-width: 620px; }
  .hero-visual { justify-self: center; }
}

/* ---------- Phone mockup ---------- */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.phone {
  position: relative;
  width: 290px;
  aspect-ratio: 290 / 600;
  background: #0e0c09;
  border-radius: 46px;
  padding: 12px;
  box-shadow: var(--shadow-lg);
  border: 1px solid #2a2620;
}
.phone-screen {
  width: 100%; height: 100%;
  background: #0f0f0f;     /* matches the app screenshot bg while it loads */
  border-radius: 36px;
  overflow: hidden;
}
/* Real app screenshot fills the device screen edge to edge */
.phone-shot {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* ---------- Floating practice card ---------- */
.float-card {
  position: absolute;
  bottom: 40px; left: -58px;
  width: 206px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px 16px;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.float-card-row { display: flex; align-items: center; gap: 12px; }
.float-card-icon {
  flex: none;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(156, 176, 147, 0.16);
  color: var(--accent);
}
.float-card-title { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.float-card-meta { font-size: 0.78rem; color: var(--muted); }
.float-card-bar {
  margin-top: 12px;
  height: 5px;
  border-radius: 4px;
  background: var(--line);
  overflow: hidden;
}
.float-card-bar span {
  display: block; height: 100%;
  background: var(--accent);
  border-radius: 4px;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
@media (max-width: 460px) {
  .float-card { left: -10px; width: 188px; }
}
@media (prefers-reduced-motion: reduce) {
  .float-card { animation: none; }
}

/* ============================================================
   STRIP
   ============================================================ */
.strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--paper-card);
}
.strip-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--ink-soft);
}
.strip-dot { color: var(--accent-soft); font-size: 0.7rem; }

/* ============================================================
   EMPATHY
   ============================================================ */
.empathy { padding-top: 110px; padding-bottom: 110px; }
.empathy .section-lead { font-size: 1.25rem; color: var(--ink-soft); margin-top: 22px; }
.empathy .section-lead em { color: var(--accent); }
@media (max-width: 720px) { .empathy { padding: 72px 0; } }

/* ============================================================
   STEPS
   ============================================================ */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  counter-reset: step;
}
.step {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.step:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.step-num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--accent);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}
.step-title { font-size: 1.3rem; margin-bottom: 10px; color: var(--ink); }
.step-text { color: var(--ink-soft); font-size: 1rem; }

@media (max-width: 820px) {
  .steps { grid-template-columns: 1fr; gap: 18px; }
}

/* ============================================================
   BENEFIT CARDS
   ============================================================ */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.card {
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--line-strong); }
.card-icon {
  display: grid;
  place-items: center;
  width: 50px; height: 50px;
  border-radius: 14px;
  background: rgba(156, 176, 147, 0.14);
  color: var(--accent);
  margin-bottom: 20px;
}
.card-icon svg { width: 24px; height: 24px; }
.card-title { font-size: 1.22rem; margin-bottom: 8px; color: var(--ink); }
.card-text { color: var(--ink-soft); font-size: 0.98rem; }

@media (max-width: 900px) { .cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .cards { grid-template-columns: 1fr; } }

/* ============================================================
   SHOWCASE
   ============================================================ */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.check-list {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.check-list li {
  position: relative;
  padding-left: 32px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}
.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(156, 176, 147, 0.18);
}
.check-list li::after {
  content: "";
  position: absolute;
  left: 7px; top: 8px;
  width: 4px; height: 8px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.showcase-visual { display: flex; justify-content: center; }
.chip-stack {
  width: 100%;
  max-width: 400px;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow);
}
.chip-stack-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  font-size: 0.95rem;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
}
.chip.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.chip-result {
  margin-top: 22px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--paper);
  border: 1px solid var(--line);
}
.chip-result-tag {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
}
.chip-result-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 4px;
}
.chip-result-meta { font-size: 0.88rem; color: var(--muted); }
.chip-result-steps { display: flex; gap: 6px; margin-top: 16px; }
.chip-result-steps span {
  flex: 1; height: 5px; border-radius: 3px;
  background: var(--line);
}
.chip-result-steps span:first-child { background: var(--accent); }

@media (max-width: 860px) {
  .showcase-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* ============================================================
   DARK SECTION (practices)
   ============================================================ */
.section-dark {
  background: var(--dark);
  color: var(--on-dark);
}
.section-dark .section-title { color: var(--on-dark); }
.section-dark .section-lead { color: var(--on-dark-mute); }

.practice-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.practice {
  border: 1px solid rgba(239, 233, 223, 0.14);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  background: var(--dark-soft);
  transition: transform 0.3s var(--ease), border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.practice:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 183, 159, 0.4);
  background: #2a241c;
}
.practice h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.35rem;
  margin-bottom: 10px;
  color: var(--on-dark);
}
.practice p { color: var(--on-dark-mute); font-size: 0.97rem; }

@media (max-width: 900px) { .practice-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .practice-grid { grid-template-columns: 1fr; } }

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 820px;
  margin: 0 auto;
  align-items: stretch;
}
.plan {
  position: relative;
  background: var(--paper-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}
.plan-featured {
  border-color: var(--accent);
  box-shadow: var(--shadow), 0 0 0 1px rgba(156, 176, 147, 0.25), 0 0 60px rgba(156, 176, 147, 0.08);
  background: #221C14;
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--paper);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-head { margin-bottom: 6px; }
.plan-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 8px;
}
.plan-price { display: flex; align-items: baseline; gap: 6px; }
.plan-price .amount {
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
}
.plan-price .per { color: var(--muted); font-size: 1rem; }
.plan-note { margin-top: 10px; color: var(--ink-soft); font-size: 0.95rem; }
.plan-features {
  margin: 22px 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-features li {
  position: relative;
  padding-left: 28px;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.plan-features li::before {
  content: "";
  position: absolute;
  left: 4px; top: 7px;
  width: 5px; height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.plan-cta { margin-top: auto; width: 100%; }
.pricing-fineprint {
  text-align: center;
  margin-top: 26px;
  font-size: 0.86rem;
  color: var(--muted);
}

@media (max-width: 720px) {
  .pricing { grid-template-columns: 1fr; gap: 28px; }
  .plan-featured { order: -1; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  list-style: none;
  padding: 24px 4px;
  font-size: 1.12rem;
  font-weight: 500;
  color: var(--ink);
  transition: color 0.2s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "";
  flex: none;
  width: 13px; height: 13px;
  border-right: 2px solid var(--muted);
  border-bottom: 2px solid var(--muted);
  transform: rotate(45deg);
  transition: transform 0.3s var(--ease);
  margin-top: -4px;
}
.faq-item[open] summary { color: var(--accent); }
.faq-item[open] summary::after { transform: rotate(-135deg); margin-top: 4px; }
.faq-item summary:hover { color: var(--accent); }
.faq-body {
  padding: 0 4px 26px;
  color: var(--ink-soft);
  font-size: 1.02rem;
  max-width: 620px;
}
.faq-body em { color: var(--ink); font-style: italic; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(170deg, var(--paper-soft), var(--paper));
  padding: 110px 0;
  border-top: 1px solid var(--line);
}
.final-mark { color: var(--accent); display: inline-flex; margin-bottom: 24px; }
.final-title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(2rem, 1.3rem + 3vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 620px;
  margin: 0 auto;
}
.final-sub {
  margin: 22px auto 36px;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 500px;
}
.final-cta .appstore-badge { margin: 0 auto; }
.final-note { margin-top: 18px; font-size: 0.9rem; color: var(--muted); }

@media (max-width: 720px) { .final-cta { padding: 80px 0; } }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--dark);
  color: var(--on-dark);
  padding: 64px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239, 233, 223, 0.12);
}
.footer-brand .brand { color: var(--on-dark); }
.footer-brand .brand-mark { color: var(--accent-soft); }
.footer-tagline {
  margin-top: 14px;
  color: var(--on-dark-mute);
  font-size: 0.98rem;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--on-dark-mute);
  font-weight: 600;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  color: var(--on-dark);
  font-size: 0.96rem;
  padding: 6px 0;
  opacity: 0.85;
  transition: opacity 0.2s var(--ease), color 0.2s var(--ease);
}
.footer-col a:hover { opacity: 1; color: var(--accent-soft); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 28px;
  font-size: 0.85rem;
  color: var(--on-dark-mute);
}
.footer-disclaimer { max-width: 420px; }

@media (max-width: 760px) {
  .footer-inner { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { gap: 20px; }
}

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  transition-delay: calc(var(--reveal-delay, 0) * 90ms);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
