/* ============================================================
   Stoop landing — single page
   Brand tokens mirror design-mockups/00-brand-identity.html
   ============================================================ */

:root {
  --bone:        #F5F2EC;
  --bone-warm:   #EFE9DC;
  --paper:       #FFFFFF;
  --coal:        #1C1B1F;
  --slate:       #5C5A60;
  --stone:       #A3A0A6;
  --mist:        #D8D5DA;
  --ember:       #C9462E;
  --ember-tint:  #F4D8CD;
  --amber:       #D4A04C;
  --amber-tint:  #F1E1C2;
  --sage:        #5E7560;
  --sage-tint:   #DDE5DD;
  --hairline:    rgba(28, 27, 31, 0.12);

  --font-display: 'Inter Tight', 'Inter', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, sans-serif;
  --font-mono:    'JetBrains Mono', ui-monospace, monospace;
  --font-quote:   'Newsreader', Georgia, serif;

  --radius-sm: 10px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  color: var(--coal);
  background: var(--bone);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: var(--ember); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; height: auto; display: block; }

/* ====== Scroll reveal ====== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ====== Topbar ====== */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px max(24px, 5vw);
  background: rgba(245, 242, 236, 0.85);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--hairline);
}

.brand {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--coal);
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }

.brand-mark {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 28px;
  letter-spacing: -0.06em;
  line-height: 1;
}
.brand-mark .dot { color: var(--ember); }

.brand-wordmark { font-size: 18px; letter-spacing: -0.03em; }

.topnav {
  display: flex;
  gap: 28px;
}
.topnav a {
  color: var(--slate);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.topnav a:hover { color: var(--coal); text-decoration: none; }
.topnav a[aria-current="page"] { color: var(--ember); }

@media (max-width: 720px) {
  .topnav { display: none; }
}

/* ====== Section primitives ====== */
main { padding-top: 0; }

.section {
  padding: 120px max(24px, 5vw);
  max-width: 1200px;
  margin: 0 auto;
}

.section-warm {
  background: var(--bone-warm);
  max-width: 100%;
}
.section-warm > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-coal {
  background: var(--coal);
  color: var(--bone);
  max-width: 100%;
  padding-top: 110px;
  padding-bottom: 110px;
}
.section-coal > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-quote {
  text-align: center;
  padding: 130px 24px;
  background: var(--coal);
  color: var(--bone);
  max-width: 100%;
}

.section-final-cta { text-align: center; padding: 130px max(24px, 5vw); }

.section-eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 16px;
}
.eyebrow-light { color: var(--mist); }

.section-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 5vw, 54px);
  letter-spacing: -0.035em;
  line-height: 1.05;
  color: var(--coal);
  margin-bottom: 60px;
  max-width: 900px;
}
.section-title-light { color: var(--bone); }
.section-title-center { margin-left: auto; margin-right: auto; text-align: center; }

.lede {
  font-size: clamp(17px, 1.8vw, 19px);
  line-height: 1.55;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 32px;
}
.lede-light { color: var(--mist); }
.lede-center { margin-left: auto; margin-right: auto; text-align: center; max-width: 640px; }

/* ====== Hero ====== */
.hero {
  padding: 80px max(24px, 5vw) 100px;
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero { padding: 60px 24px 80px; }
}

.hero-copy { max-width: 640px; }

.eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ember);
  margin-bottom: 28px;
}

.headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(40px, 7vw, 84px);
  letter-spacing: -0.045em;
  line-height: 1.0;
  color: var(--coal);
  margin-bottom: 32px;
}

.headline em {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  color: var(--ember);
  letter-spacing: -0.02em;
}

.subhead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.45;
  color: var(--slate);
  margin-bottom: 44px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: -0.01em;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.cta:hover { text-decoration: none; transform: translateY(-2px); }

.cta-primary {
  background: var(--coal);
  color: var(--bone);
  box-shadow: 0 2px 0 var(--ember);
}
.cta-primary:hover { box-shadow: 0 5px 0 var(--ember); }

.cta-icon { flex-shrink: 0; }

.cta-label {
  display: block;
  font-size: 10px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  opacity: 0.65;
  font-weight: 600;
  margin-bottom: 2px;
}
.cta-sub { display: block; font-size: 16px; font-weight: 800; }

.cta-secondary {
  background: transparent;
  color: var(--coal);
  border: 1px solid var(--hairline);
  padding: 18px 24px;
}
.cta-secondary:hover { background: rgba(28,27,31,0.04); }

.cta-ghost-light {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(245, 242, 236, 0.25);
  padding: 14px 22px;
  font-size: 14px;
}
.cta-ghost-light:hover { background: rgba(245, 242, 236, 0.08); }

.microcopy {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--stone);
  max-width: 620px;
  line-height: 1.6;
}
.microcopy-center { margin-top: 28px; text-align: center; margin-left: auto; margin-right: auto; }

.final-cta-row { margin-top: 36px; display: flex; justify-content: center; }

/* ====== Phone mockup ====== */
.hero-mockup {
  display: flex;
  justify-content: center;
  align-items: center;
}

.phone {
  position: relative;
  width: 100%;
  max-width: 320px;
  aspect-ratio: 320 / 660;
  background: var(--coal);
  border-radius: 44px;
  padding: 12px;
  box-shadow:
    0 30px 60px -20px rgba(28, 27, 31, 0.25),
    0 12px 32px -12px rgba(28, 27, 31, 0.18),
    inset 0 0 0 1px rgba(245, 242, 236, 0.06);
}

.phone-notch {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: 102px;
  height: 26px;
  background: #000;
  border-radius: 14px;
  z-index: 2;
}

.phone-screen {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  background: var(--bone);
  padding: 36px 20px 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phone-screen-today { gap: 14px; }

/* Inline mock components — match TodayHeroCard look */
.m-mono-eyebrow {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}
.m-h1 {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.045em;
  color: var(--coal);
  line-height: 1.0;
  margin-top: 6px;
}
.m-h1-em {
  font-family: var(--font-quote);
  font-weight: 500;
  font-style: italic;
  font-size: 17px;
  color: var(--ember);
  letter-spacing: -0.01em;
  line-height: 1.1;
  margin-top: 4px;
}

.m-hero-card {
  background: var(--coal);
  border-radius: 18px;
  padding: 14px 14px 12px;
  color: var(--bone);
  position: relative;
  overflow: hidden;
}
.m-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 90%, rgba(201, 70, 46, 0.25), transparent 55%);
  pointer-events: none;
}

.m-card-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.m-tag {
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.6);
}
.m-trend {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 600;
  color: var(--sage);
  background: rgba(245, 242, 236, 0.1);
  padding: 3px 7px;
  border-radius: 999px;
}

.m-hero-body { display: flex; gap: 12px; align-items: center; margin-bottom: 12px; }

.m-ring {
  position: relative;
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}
.m-ring svg { width: 100%; height: 100%; }
.m-ring-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.m-ring-score {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--ember);
  line-height: 1;
}
.m-ring-cap {
  font-family: var(--font-mono);
  font-size: 9px;
  color: rgba(245, 242, 236, 0.55);
  margin-top: 2px;
}

.ring-anim {
  animation: ringFill 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.4s both;
}
@keyframes ringFill {
  from { stroke-dashoffset: 264; }
  to   { stroke-dashoffset: 83; }
}
@media (prefers-reduced-motion: reduce) {
  .ring-anim { animation: none; }
}

.m-hero-meta { flex: 1; min-width: 0; }
.m-pattern {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.02em;
  color: var(--bone);
  line-height: 1.15;
}
.m-mono-cap {
  font-family: var(--font-mono);
  font-size: 8px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
  margin-top: 4px;
}

.m-cta {
  width: 100%;
  background: var(--ember);
  color: var(--bone);
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: -0.01em;
  padding: 10px 14px;
  border: 0;
  border-radius: 11px;
  cursor: pointer;
  box-shadow: 0 4px 14px -4px rgba(201, 70, 46, 0.55);
}

.m-meta-strip {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(245, 242, 236, 0.55);
  text-align: center;
}

/* ====== How it works ====== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.how-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.how-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px -16px rgba(28, 27, 31, 0.18);
}

.how-num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--ember);
  margin-bottom: 24px;
}

.how-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  color: var(--coal);
  margin-bottom: 12px;
}

.how-card p {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 880px) {
  .how-grid { grid-template-columns: 1fr; }
}

/* ====== Split (AI engine, Journal) ====== */
.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 80px;
  align-items: center;
}

.split-reverse > .split-mockup { order: -1; }

@media (max-width: 980px) {
  .split { grid-template-columns: 1fr; gap: 56px; }
  .split-reverse > .split-mockup { order: 0; }
}

.split-copy .section-title { font-size: clamp(30px, 4vw, 44px); margin-bottom: 24px; }

.value-list {
  list-style: none;
  margin-top: 12px;
}
.value-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 16px;
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}
.value-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  background: var(--ember);
  border-radius: 2px;
}
.value-list strong { color: var(--coal); }
.value-list em { font-style: italic; }

/* Split mockup card */
.card {
  border-radius: var(--radius-lg);
  padding: 24px;
}

.card-light {
  background: var(--paper);
  color: var(--coal);
  border: 1px solid var(--hairline);
}
.card-ember-border {
  position: relative;
  overflow: hidden;
}
.card-ember-border::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--ember);
}

.card-eyebrow {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 14px;
}
.dot-i { color: var(--ember); margin-right: 4px; }

.card-h {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
  color: var(--coal);
  margin-bottom: 16px;
}

.card-bullets { display: flex; flex-direction: column; gap: 12px; }

.card-bullet {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.card-bullet p {
  font-size: 14px;
  color: var(--coal);
  line-height: 1.5;
  flex: 1;
}

.bullet-icon {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  line-height: 1;
}
.bullet-amber { background: var(--amber-tint); }
.bullet-ember { background: var(--ember-tint); }
.bullet-sage  { background: var(--sage-tint); }

.card-footer-mono {
  margin-top: 14px;
  font-family: var(--font-mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ====== Quote ====== */
.big-quote { max-width: 800px; margin: 0 auto; }

.big-quote p {
  font-family: var(--font-quote);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(30px, 5vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: var(--bone);
}

.big-quote cite {
  font-family: var(--font-mono);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mist);
}

/* ====== Features grid ====== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-3px);
  border-color: rgba(28, 27, 31, 0.18);
  box-shadow: 0 8px 20px -10px rgba(28, 27, 31, 0.15);
}

.feature-icon { font-size: 30px; margin-bottom: 16px; line-height: 1; }

.feature-card h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--coal);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--slate);
  line-height: 1.55;
}

@media (max-width: 1000px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px)  { .feature-grid { grid-template-columns: 1fr; } }

/* ====== Trust ====== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 880px) { .trust-grid { grid-template-columns: 1fr; gap: 48px; } }

.trust-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
@media (max-width: 480px) { .trust-stats { grid-template-columns: 1fr; } }

.trust-stat {
  border-left: 1px solid rgba(245, 242, 236, 0.15);
  padding-left: 18px;
}
.trust-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 54px;
  color: var(--ember);
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 8px;
}
.trust-lab {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--mist);
  line-height: 1.45;
  letter-spacing: 0.04em;
  max-width: 220px;
}

.trust-footer {
  text-align: center;
  margin-top: 70px;
}

/* ====== Pricing ====== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
}
@media (max-width: 720px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
}
.price-card-pro {
  background: var(--coal);
  color: var(--bone);
  border-color: transparent;
  position: relative;
  overflow: hidden;
}
.price-card-pro::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(201, 70, 46, 0.22), transparent 55%);
  pointer-events: none;
}
.price-card-pro > * { position: relative; z-index: 1; }

.price-tier {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.price-tier-pro { color: var(--ember); }

.price-badge {
  background: var(--ember);
  color: var(--bone);
  font-family: var(--font-mono);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 8px;
  border-radius: 999px;
}

.price-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  letter-spacing: -0.04em;
  margin-bottom: 4px;
}
.price-card-pro .price-amount { color: var(--bone); }
.price-amount-unit {
  font-size: 16px;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: -0.01em;
}
.price-card-pro .price-amount-unit { color: var(--mist); }

.price-cycle {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--stone);
  letter-spacing: 0.08em;
  margin-bottom: 28px;
}
.price-card-pro .price-cycle { color: var(--mist); }

.price-list { list-style: none; }
.price-list li {
  font-size: 14px;
  color: var(--slate);
  padding: 8px 0;
  border-top: 1px solid var(--hairline);
}
.price-list li:first-child { border-top: 0; padding-top: 0; }
.price-card-pro .price-list li { color: var(--mist); border-top-color: rgba(245, 242, 236, 0.1); }

/* ====== Legal pages ====== */
.section-legal { padding-top: 100px; padding-bottom: 100px; }
.section-legal .section-title { margin-bottom: 16px; max-width: 760px; }

.legal-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--stone);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 48px;
}

.legal-prose {
  max-width: 760px;
  color: var(--coal);
}

.legal-prose h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.025em;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--coal);
}
.legal-prose h3:first-child { margin-top: 0; }

.legal-prose p,
.legal-prose ul {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 16px;
}
.legal-prose ul { padding-left: 22px; }
.legal-prose li { margin-bottom: 8px; }
.legal-prose strong { color: var(--coal); font-weight: 700; }
.legal-prose em { font-style: italic; }
.legal-prose a { color: var(--ember); }

/* ====== Footer ====== */
.footer {
  background: var(--coal);
  color: var(--bone);
  padding: 80px max(24px, 5vw) 60px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-brand .brand-mark { font-size: 36px; color: var(--bone); display: inline-block; margin-bottom: 16px; }

.footer-tagline {
  font-family: var(--font-quote);
  font-style: italic;
  font-size: 16px;
  color: var(--mist);
  margin-bottom: 12px;
}

.footer-meta {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-links h4 {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--bone);
  margin-bottom: 10px;
  opacity: 0.8;
}
.footer-links a:hover { opacity: 1; text-decoration: none; color: var(--ember-tint); }

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

/* ====== Phone with real screenshot ====== */
.phone-screenshot {
  width: 100%;
  height: 100%;
  border-radius: 32px;
  display: block;
  object-fit: cover;
}

.phone-float {
  animation: phoneFloat 6s ease-in-out infinite;
}
@keyframes phoneFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-12px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone-float { animation: none; }
}

.phone-small {
  max-width: 280px;
  aspect-ratio: 280 / 600;
}
.phone-medium {
  max-width: 300px;
  aspect-ratio: 300 / 640;
}

/* ====== Trust bar between hero and how ====== */
.trust-bar {
  background: var(--bone-warm);
  padding: 18px 24px;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--slate);
  text-align: center;
}
.trust-sep { color: var(--stone); }

/* ====== How meta line ====== */
.how-meta {
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ember);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.how-meta-icon { font-size: 14px; text-transform: none; }

/* ====== Showcase (routine + compare) ====== */
.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 50px;
}
@media (max-width: 880px) { .showcase-grid { grid-template-columns: 1fr; gap: 60px; } }

.showcase-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.showcase-meta { max-width: 320px; text-align: center; }
.showcase-tag {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 10px;
}
.showcase-cap {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.55;
}

/* ====== Language switcher ====== */
.lang-switch { position: relative; margin-left: 12px; }

.lang-btn {
  background: transparent;
  border: 1px solid var(--hairline);
  border-radius: 999px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--coal);
  cursor: pointer;
  transition: background 0.15s ease;
}
.lang-btn:hover { background: rgba(28, 27, 31, 0.06); }

.lang-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
  list-style: none;
  padding: 6px;
  min-width: 160px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity 0.15s ease, visibility 0.15s ease, transform 0.15s ease;
  box-shadow: 0 12px 32px -16px rgba(28, 27, 31, 0.18);
  z-index: 60;
}
.lang-menu.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.lang-menu a {
  display: block;
  padding: 9px 12px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--coal);
  border-radius: 8px;
  text-decoration: none;
}
.lang-menu a:hover { background: var(--bone-warm); text-decoration: none; }

/* ====== Legal lede ====== */
.lede-legal {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  background: var(--bone-warm);
  border-left: 3px solid var(--ember);
  padding: 18px 22px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  margin-bottom: 32px;
  max-width: 760px;
}

/* ====== Legal table ====== */
.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 16px;
  border: 1px solid var(--hairline);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.legal-table th, .legal-table td {
  padding: 10px 14px;
  text-align: left;
  border-bottom: 1px solid var(--hairline);
  color: var(--slate);
  line-height: 1.5;
}
.legal-table th {
  background: var(--bone-warm);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--coal);
  font-weight: 700;
}
.legal-table tr:last-child td { border-bottom: 0; }

.legal-list {
  padding-left: 22px;
  margin-bottom: 16px;
}
.legal-list li {
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 10px;
}
.legal-list li strong { color: var(--coal); }

/* ====== Legal "in translation" banner ====== */
.legal-banner {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--amber-tint);
  border: 1px solid rgba(212, 160, 76, 0.35);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  margin-bottom: 32px;
  max-width: 760px;
}
.legal-banner-tag {
  flex-shrink: 0;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  background: rgba(255, 255, 255, 0.55);
  padding: 4px 10px;
  border-radius: 999px;
  margin-top: 1px;
}
.legal-banner p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--coal);
  margin: 0;
}
