/* =========================================================
   Verafeel marketing site — shared stylesheet
   Tokens mirror the app's design system (lib/theme.ts / _ds/tokens/*.css)
   ========================================================= */

:root {
  /* Brand base */
  --vf-cream: #FAF7F2;
  --vf-white: #FFFFFF;
  --vf-teal: #6FA89C;
  --vf-deep-teal: #3F6F65;
  --vf-lavender: #E4DEF2;
  --vf-lavender-solid: #B8A9E0;
  --vf-lavender-text: #5B4B8A;
  --vf-mint: #DDEEEA;
  --vf-mint-solid: #8FC4B7;
  --vf-amber: #E0B15C;
  --vf-charcoal: #3A3A3A;
  --vf-muted: #8A8780;
  --vf-border: #E8E4DA;
  --vf-dark: #201E1B;

  --vf-sand-100: #F4F1E9;
  --vf-sand-200: #EFEBE2;
  --vf-rule: #C9C2B2;

  /* Emotion palette (Plutchik) */
  --vf-joy: #7FBF9B;
  --vf-trust: #8FC4B7;
  --vf-fear: #7A8FBF;
  --vf-surprise: #E8D46B;
  --vf-sadness: #8FA6D8;
  --vf-disgust: #A9A76B;
  --vf-anger: #D0997B;
  --vf-anticipation: #E0B15C;

  /* Avatar-mark palette */
  --vf-mark-curiosity: #6FA89C;
  --vf-mark-honesty: #3F6F65;
  --vf-mark-memory: #B8A9E0;
  --vf-mark-patience: #D9C08A;
  --vf-mark-growth: #A3B899;
  --vf-mark-stillness: #9FB0BF;
  --vf-mark-connection: #C98A9E;
  --vf-mark-clarity: #7FA8C9;

  /* Support tints */
  --vf-tint-crisis: #FBF1EF;
  --vf-tint-crisis-border: #E9CFC8;
  --vf-tint-crisis-title: #7A4A3F;
  --vf-tint-crisis-body: #9C6E63;

  /* Fonts */
  --vf-font-display: 'Quicksand', system-ui, sans-serif;
  --vf-font-body: 'Inter', system-ui, sans-serif;

  /* Radius */
  --vf-radius-card: 16px;
  --vf-radius-card-lg: 18px;
  --vf-radius-sheet: 26px;
  --vf-radius-pill: 999px;

  /* Motion */
  --vf-ease-standard: cubic-bezier(.4, 0, .2, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--vf-cream);
  color: var(--vf-charcoal);
  font-family: var(--vf-font-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, p, figure { margin: 0; }
img, svg { max-width: 100%; display: block; }
a { color: var(--vf-deep-teal); }
a:hover { color: #2E534B; }
button { font: inherit; }

.container {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-narrow {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.container-legal {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Animations ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
@keyframes bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(6px); } }
@keyframes pulseDot { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
@keyframes blobDrift {
  0%, 100% { transform: translate(0,0) rotate(0deg) scale(1); }
  33% { transform: translate(14px,-18px) rotate(5deg) scale(1.05); }
  66% { transform: translate(-12px,14px) rotate(-4deg) scale(.97); }
}
@keyframes slowScroll {
  0%, 10% { transform: translateY(0); }
  48%, 58% { transform: translateY(-230px); }
  96%, 100% { transform: translateY(0); }
}
/* Scroll reveal is IntersectionObserver-driven (script.js), not animation-timeline:
   view() — that CSS feature passes @supports in current Chromium but was found to
   render unreliably (elements getting stuck at their pre-animation opacity:0 state
   with no way to recover, verified via computed-style inspection: the DOM/CSS state
   reported everything correct while the compositor never painted it). IntersectionObserver
   is universally reliable. Progressive enhancement: script.js only ever ADDS the
   .js-fade-init class that this rule depends on, so elements are always visible by
   default and only get the fade behavior once JS confirms it can also reveal them. */
.fade-in-view.js-fade-init {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .9s ease, transform .9s ease;
}
.fade-in-view.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto !important; }
}

/* =========================================================
   Site header / nav
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--vf-cream);
  border-bottom: 1px solid var(--vf-border);
}
.nav {
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 14px 28px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  color: var(--vf-charcoal);
}
.nav-logo span {
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: -0.01em;
}
.nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 24px;
  margin-left: auto;
}
.nav-link {
  font-family: var(--vf-font-body);
  font-size: 14.5px;
  color: var(--vf-charcoal);
  text-decoration: none;
}
.nav-link:hover { color: var(--vf-deep-teal); }
.nav-link[aria-current="page"] {
  color: var(--vf-deep-teal);
  font-weight: 500;
}
.nav-cta {
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: 14px;
  color: var(--vf-white);
  background: var(--vf-teal);
  padding: 10px 18px;
  border-radius: var(--vf-radius-pill);
  text-decoration: none;
}
.nav-cta:hover { opacity: .75; color: var(--vf-white); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--vf-border);
  background: var(--vf-white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { display: block; }

@media (max-width: 720px) {
  .nav-links {
    display: none;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding-top: 6px;
  }
  .nav-links.is-open { display: flex; }
  .nav { flex-wrap: wrap; }
  .nav-toggle { display: flex; }
  .nav-cta { order: 99; }
}

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--vf-font-display);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: var(--vf-radius-pill);
  border: none;
  cursor: pointer;
  transition: opacity .15s ease, border-color .15s ease;
}
.btn:hover { opacity: .75; }
.btn-primary { background: var(--vf-teal); color: var(--vf-white); }
.btn-primary:hover { color: var(--vf-white); }
.btn-secondary {
  background: var(--vf-white);
  color: var(--vf-deep-teal);
  border: 1px solid var(--vf-border);
}
.btn-secondary:hover { opacity: 1; border-color: var(--vf-teal); }
.btn-ondark {
  background: rgba(255,255,255,0.6);
  color: #2E2350;
}
.btn-onteal {
  background: var(--vf-cream);
  color: var(--vf-deep-teal);
}
.btn-small {
  font-family: var(--vf-font-body);
  font-weight: 500;
  font-size: 13.5px;
  color: var(--vf-deep-teal);
  background: var(--vf-cream);
  border: 1px solid var(--vf-border);
  padding: 9px 15px;
  border-radius: var(--vf-radius-pill);
  text-decoration: none;
  display: inline-block;
}
.btn-small:hover { border-color: var(--vf-teal); color: var(--vf-deep-teal); }

/* =========================================================
   Generic section shells
   ========================================================= */
.section { padding: 96px 24px; font-family: var(--vf-font-body); }
.section-tight { padding: 64px 24px; }
.section--cream { background: var(--vf-cream); color: var(--vf-charcoal); }
.section--mint { background: var(--vf-mint); color: #163027; }
.section--lavender { background: var(--vf-lavender-solid); color: #2E2350; }
.section--amber { background: var(--vf-amber); color: #3D2B08; }
.section--deepteal { background: var(--vf-deep-teal); color: var(--vf-cream); }
.section--white { background: var(--vf-white); color: var(--vf-charcoal); }

.eyebrow {
  display: block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--vf-deep-teal);
}
.eyebrow-onmint { color: #1E4438; }
.eyebrow-onlav { color: #4A3A78; }
.eyebrow-onamber { color: #6B4E12; }
.eyebrow-onteal { color: #BFE0D8; }

.section-title {
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: clamp(24px, 3.6vw, 34px);
  margin: 10px 0 0;
  text-wrap: balance;
}
.section-lead {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--vf-muted);
  margin-top: 16px;
  max-width: 620px;
}

/* =========================================================
   Hero (full-bleed centered) blocks
   ========================================================= */
.hero-block {
  min-height: 86vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  position: relative;
  overflow: hidden;
}
.hero-block--tall { min-height: 88vh; }
.hero-block--short { min-height: 70vh; }
.blob-layer {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.blob-layer svg { animation: blobDrift 16s ease-in-out infinite; max-width: 130%; }
.hero-content { position: relative; z-index: 3; }

.badge-pill {
  font-size: 12.5px;
  font-weight: 500;
  background: rgba(255,255,255,0.55);
  color: var(--vf-deep-teal);
  padding: 7px 15px;
  border-radius: var(--vf-radius-pill);
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.badge-pill .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulseDot 2.4s ease-in-out infinite;
}

.hero-title {
  margin: 0;
  font-family: var(--vf-font-display);
  font-weight: 700;
  line-height: 1.14;
  font-size: clamp(34px, 6.4vw, 60px);
  text-wrap: balance;
}
.hero-block--tall .hero-title,
.hero-block--short .hero-title { line-height: 1.16; font-size: clamp(30px, 5.6vw, 52px); }

.hero-copy {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.7;
  margin-top: 22px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 32px;
}
.hero-kicker {
  font-family: var(--vf-font-display);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  margin-bottom: 22px;
}

.scroll-hint {
  position: absolute;
  left: 50%;
  bottom: 30px;
  transform: translateX(-50%);
  font-size: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  color: var(--vf-muted);
}
.scroll-hint span { animation: bob 1.8s ease-in-out infinite; }

/* =========================================================
   "Try it" mood picker card
   ========================================================= */
.try-card {
  margin-top: 34px;
  width: 100%;
  max-width: 380px;
  background: var(--vf-white);
  border: 1px solid var(--vf-border);
  border-radius: var(--vf-radius-sheet);
  padding: 26px;
  text-align: left;
  color: var(--vf-charcoal);
  box-shadow: 0 30px 70px -28px rgba(0,0,0,0.28);
}
.try-card-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vf-muted);
}
.try-card-question {
  font-family: var(--vf-font-display);
  font-weight: 600;
  font-size: 17px;
  margin-top: 8px;
}
.mood-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.mood-chip {
  font-family: var(--vf-font-body);
  font-size: 13.5px;
  font-weight: 500;
  padding: 9px 15px;
  border-radius: var(--vf-radius-pill);
  cursor: pointer;
  transition: all .15s ease;
  background: var(--vf-cream);
  border: 1px solid var(--vf-border);
  color: var(--vf-charcoal);
}
.mood-chip.is-picked {
  background: var(--vf-mint);
  border-color: var(--vf-teal);
  color: var(--vf-deep-teal);
}
.followup {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--vf-border);
  animation: fadeUp .4s ease both;
}
.followup-label {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--vf-lavender-text);
}
.followup-question {
  font-family: var(--vf-font-display);
  font-weight: 600;
  font-size: 15px;
  color: var(--vf-lavender-text);
  margin-top: 8px;
}
.followup-opts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}
.followup-opt {
  font-size: 13px;
  padding: 10px 13px;
  border-radius: 12px;
  background: rgba(184,169,224,0.22);
  color: var(--vf-lavender-text);
}
.followup-reset {
  margin-top: 16px;
  font-size: 12px;
  color: var(--vf-muted);
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
  font-family: var(--vf-font-body);
}

/* =========================================================
   Marks grid ("pick your mark")
   ========================================================= */
.marks-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 30px 20px;
  max-width: 580px;
  width: 100%;
  margin-top: 28px;
}
.mark-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
}
.mark-circle {
  width: 62px; height: 62px;
  border-radius: 50%;
  background: var(--vf-white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px -12px rgba(0,0,0,0.22);
  border: 2.5px solid transparent;
  transition: border-color .15s ease, transform .15s ease;
}
.mark-item.is-selected .mark-circle {
  border-color: #2E2350;
  transform: scale(1.06);
}
.mark-item.is-selected .mark-label::after {
  content: " \2713";
}
.mark-label {
  font-family: var(--vf-font-display);
  font-weight: 600;
  font-size: 13px;
}
.marks-hint {
  margin-top: 22px;
  font-size: 13px;
  color: #4A3A78;
  min-height: 18px;
}

/* =========================================================
   Showcase: phone frames
   ========================================================= */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 270px));
  gap: 48px 40px;
  margin-top: 48px;
  justify-content: center;
}
.phone-frame {
  width: 250px;
  max-width: 100%;
  border-radius: 34px;
  background: #0F0E0C;
  padding: 10px;
  box-shadow: 0 24px 48px -20px rgba(0,0,0,0.28);
  margin: 0 auto;
}
.phone-screen {
  width: 100%;
  height: 520px;
  border-radius: 25px;
  background: var(--vf-cream);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}
.phone-notch {
  position: absolute;
  top: 7px; left: 50%;
  transform: translateX(-50%);
  width: 54px; height: 14px;
  border-radius: 8px;
  background: #0F0E0C;
  z-index: 5;
}
.showcase-caption { margin-top: 16px; max-width: 250px; margin-left: auto; margin-right: auto; }
.showcase-caption-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 14px; }
.showcase-caption-body { font-size: 12.5px; color: var(--vf-muted); margin-top: 4px; line-height: 1.5; }

/* Phone 1: Home screen */
.ph-home-body { padding: 38px 16px 16px; flex: 1; display: flex; flex-direction: column; position: relative; }
.ph-blob-deco { position: absolute; top: 26px; right: -30px; opacity: .3; }
.ph-date { font-size: 9.5px; color: var(--vf-muted); position: relative; }
.ph-question { font-family: var(--vf-font-display); font-weight: 700; font-size: 19px; color: var(--vf-charcoal); line-height: 1.25; position: relative; }
.ph-writebox { margin-top: 16px; height: 56px; border-bottom: 1.5px solid var(--vf-rule); position: relative; font-size: 10.5px; color: #B7B2A5; padding-top: 2px; }
.ph-continue { margin-top: 14px; background: var(--vf-teal); border-radius: 22px; padding: 9px 16px; display: flex; align-items: center; gap: 5px; align-self: flex-end; }
.ph-continue span { font-family: var(--vf-font-display); font-weight: 600; color: #fff; font-size: 11.5px; }
.ph-quicktap { margin-top: 22px; text-align: center; font-size: 10px; color: var(--vf-deep-teal); }
.ph-progress-card { margin-top: 14px; background: var(--vf-mint); border-radius: 14px; padding: 13px; }
.ph-progress-label { font-size: 9px; color: var(--vf-muted); }
.ph-progress-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 13.5px; color: var(--vf-charcoal); margin-top: 3px; }
.ph-progress-track { height: 5px; background: var(--vf-sand-200); border-radius: 3px; margin-top: 9px; overflow: hidden; }
.ph-progress-fill { width: 14%; height: 100%; background: var(--vf-teal); }
.ph-progress-sub { font-size: 9px; color: var(--vf-muted); margin-top: 5px; }
.ph-tabbar { background: #F1EEE6; border-top: 1px solid var(--vf-border); display: flex; justify-content: space-around; padding: 8px 0 10px; margin: auto -16px -16px; }
.ph-tab { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.ph-tab-icon { width: 14px; height: 14px; border-radius: 3px; }
.ph-tab-icon--active { background: var(--vf-teal); }
.ph-tab-icon--inactive { border: 1.4px solid #B7B2A5; }
.ph-tab span { font-size: 8px; color: var(--vf-muted); }
.ph-tab span.is-active { color: var(--vf-deep-teal); }

/* Phone 2: Deep dive scroll */
.ph-scroll-viewport { padding: 38px 0 0; flex: 1; overflow: hidden; }
.ph-scroll-content { padding: 0 16px 20px; animation: slowScroll 26s ease-in-out infinite; }
.ph-back { font-size: 11px; color: var(--vf-deep-teal); }
.ph-dd-title { font-family: var(--vf-font-display); font-weight: 700; font-size: 20px; color: var(--vf-charcoal); line-height: 1.25; margin-top: 8px; }
.ph-dd-sub { font-size: 10px; color: var(--vf-muted); margin-top: 3px; }
.ph-dd-section-label { font-size: 9px; color: var(--vf-muted); margin-top: 16px; }
.ph-bars { margin-top: 8px; display: flex; flex-direction: column; gap: 6px; }
.ph-bar-row { display: flex; align-items: center; gap: 6px; }
.ph-bar-row span:first-child { font-size: 9px; width: 38px; }
.ph-bar-track { flex: 1; height: 6px; background: var(--vf-sand-200); border-radius: 4px; overflow: hidden; }
.ph-bar-fill { height: 100%; }
.ph-bar-row span:last-child { font-size: 8.5px; color: var(--vf-muted); }
.ph-dd-note { font-size: 8.5px; color: var(--vf-muted); margin-top: 6px; }
.ph-pattern-card { margin-top: 7px; background: #fff; border: 1px solid var(--vf-border); border-radius: 12px; padding: 10px; }
.ph-pattern-title { font-size: 10.5px; color: var(--vf-charcoal); font-weight: 500; }
.ph-pattern-sub { font-size: 8.5px; color: var(--vf-muted); margin-top: 2px; }
.ph-trend-card { margin-top: 7px; background: var(--vf-mint); border-radius: 12px; padding: 10px; }
.ph-trend-text { font-size: 10px; color: var(--vf-charcoal); }
.ph-trend-bars { display: flex; align-items: flex-end; gap: 3px; height: 26px; margin-top: 8px; }
.ph-trend-bars div { flex: 1; background: var(--vf-mint-solid); border-radius: 2px; }
.ph-note-card { margin-top: 7px; background: var(--vf-mint); border-radius: 12px; padding: 10px; }
.ph-note-card div { font-size: 10px; color: var(--vf-charcoal); }

/* Phone 3: Report */
.ph-report-body { padding: 38px 16px 16px; flex: 1; display: flex; flex-direction: column; }
.ph-report-brand { display: flex; align-items: center; gap: 8px; }
.ph-report-brand-name { font-family: var(--vf-font-display); font-weight: 700; font-size: 13px; color: var(--vf-charcoal); }
.ph-report-brand-sub { font-size: 9.5px; color: var(--vf-muted); }
.ph-report-dates { display: flex; gap: 20px; margin-top: 13px; }
.ph-report-dates > div div:first-child { font-size: 8px; color: var(--vf-muted); }
.ph-report-dates > div div:last-child { font-family: var(--vf-font-display); font-weight: 600; font-size: 10.5px; color: var(--vf-charcoal); margin-top: 2px; }
.ph-report-stats { display: flex; gap: 24px; margin-top: 11px; }
.ph-report-stats > div div:first-child { font-size: 8px; color: var(--vf-muted); }
.ph-report-stats > div div:last-child { font-family: var(--vf-font-display); font-weight: 700; font-size: 22px; color: var(--vf-charcoal); }
.ph-report-common { margin-top: 11px; }
.ph-report-common-label { font-size: 8px; color: var(--vf-muted); }
.ph-report-common-val { font-family: var(--vf-font-display); font-weight: 700; font-size: 13px; color: var(--vf-deep-teal); margin-top: 3px; }
.ph-report-avgs-label { font-size: 8px; color: var(--vf-muted); margin-top: 12px; }
.ph-report-rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 6px 0; margin-top: 8px; }
.ph-report-ring { text-align: center; }
.ph-report-ring div { font-size: 7px; color: var(--vf-muted); }
.ph-report-movement-label { font-size: 8px; color: var(--vf-muted); margin-top: 9px; }
.ph-report-movement { margin-top: 5px; }
.ph-report-movement-sub { font-size: 8px; color: var(--vf-muted); }
.ph-report-movement-val { font-family: var(--vf-font-display); font-weight: 700; font-size: 13px; color: var(--vf-charcoal); margin-top: 2px; }
.ph-report-watermark { display: flex; align-items: center; gap: 6px; margin-top: auto; }
.ph-report-watermark span { font-size: 8.5px; color: #B7B2A5; }

/* =========================================================
   Frameworks / Plutchik wheel
   ========================================================= */
.frameworks-row { display: flex; gap: 48px; align-items: center; margin-top: 44px; flex-wrap: wrap; }
.frameworks-list { flex: 1; min-width: 280px; display: flex; flex-direction: column; gap: 18px; }
.framework-item { display: flex; gap: 14px; flex-wrap: wrap; }
.framework-name { font-family: var(--vf-font-display); font-weight: 700; font-size: 13px; color: var(--vf-deep-teal); width: 130px; flex-shrink: 0; }
.framework-desc { font-size: 14.5px; line-height: 1.6; flex: 1; min-width: 220px; }

/* =========================================================
   Steps grid (calibration)
   ========================================================= */
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 24px; margin-top: 40px; }
.step-card { background: rgba(255,255,255,0.6); border-radius: var(--vf-radius-card-lg); padding: 24px; }
.step-num { font-family: var(--vf-font-display); font-weight: 700; font-size: 20px; }
.step-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 15.5px; margin: 10px 0 0; }
.step-desc { font-size: 13.5px; line-height: 1.6; margin: 6px 0 0; opacity: .9; }

/* =========================================================
   Compare (typical mood tracker vs Verafeel)
   ========================================================= */
.compare-row { display: flex; gap: 28px; margin-top: 44px; align-items: flex-end; flex-wrap: wrap; justify-content: center; }
.compare-col { width: 200px; }
.compare-label { text-align: center; font-family: var(--vf-font-display); font-weight: 600; font-size: 13px; margin-bottom: 12px; }
.compare-frame { border-radius: 26px; padding: 8px; }
.compare-frame--dark { background: #1a1a1a; }
.compare-frame--black { background: #0F0E0C; }
.compare-screen { height: 340px; border-radius: 18px; padding: 30px 14px 14px; }
.compare-screen--generic { background: #E9E9E7; filter: grayscale(1); }
.compare-screen--vf { background: var(--vf-cream); }
.compare-today { font-size: 9px; }
.compare-generic .compare-today { color: #6b6b68; }
.compare-vf .compare-today { color: var(--vf-muted); }
.compare-headline { font-family: var(--vf-font-display); font-weight: 700; font-size: 14px; margin-top: 4px; }
.compare-generic .compare-headline { color: #333; }
.compare-vf .compare-headline { color: var(--vf-charcoal); margin-top: 10px; }
.compare-emojis { display: flex; justify-content: space-between; margin-top: 18px; }
.compare-emoji { width: 30px; height: 30px; border-radius: 50%; background: #B9B9B4; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.compare-tag { display: inline-block; margin-top: 16px; font-size: 10px; background: #D8D8D4; color: #6b6b68; padding: 4px 9px; border-radius: 8px; }
.compare-done { margin-top: 60px; font-size: 9.5px; color: #8a8a86; text-align: center; }
.compare-vf-ask { margin-top: 16px; background: var(--vf-lavender); border-radius: 12px; padding: 10px 12px; }
.compare-vf-ask-label { font-size: 8px; font-weight: 500; text-transform: uppercase; color: var(--vf-lavender-text); opacity: .8; }
.compare-vf-ask-q { font-family: var(--vf-font-display); font-weight: 600; font-size: 11px; color: var(--vf-lavender-text); margin-top: 3px; }
.compare-note { text-align: center; margin: 32px auto 0; font-size: 13px; color: #6B4E12; max-width: 480px; }

/* =========================================================
   Waitlist form
   ========================================================= */
.waitlist-form {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3;
}
.waitlist-input {
  font-family: var(--vf-font-body);
  font-size: 15px;
  padding: 14px 20px;
  border-radius: var(--vf-radius-pill);
  border: 1px solid var(--vf-border);
  background: var(--vf-white);
  color: var(--vf-charcoal);
  width: 300px;
  max-width: 80vw;
}
.waitlist-submit {
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: 14.5px;
  color: var(--vf-deep-teal);
  background: var(--vf-cream);
  padding: 14px 26px;
  border-radius: var(--vf-radius-pill);
  border: none;
  cursor: pointer;
}
.waitlist-submit:hover { opacity: .75; }
.waitlist-success {
  margin-top: 34px;
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: 17px;
  position: relative;
  z-index: 3;
}
.waitlist-error {
  margin-top: 16px;
  font-size: 13.5px;
  font-weight: 500;
  color: #F6E1D8;
  position: relative;
  z-index: 3;
}
.waitlist-fineprint {
  font-size: 12.5px;
  margin-top: 20px;
  position: relative;
  z-index: 3;
  opacity: .85;
}
.waitlist-fineprint a { color: inherit; font-weight: 600; }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer {
  background: var(--vf-dark);
  color: rgba(250,247,242,0.62);
  font-family: var(--vf-font-body);
  font-size: 13.5px;
  line-height: 1.7;
}
.footer-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 64px 24px 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
}
.footer-brand { max-width: 300px; }
.footer-brand-row { display: flex; align-items: center; gap: 9px; }
.footer-brand-row span { font-family: var(--vf-font-display); font-weight: 700; font-size: 18px; color: var(--vf-cream); }
.footer-tagline { margin: 14px 0 0; }
.footer-col-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 13px; color: var(--vf-cream); letter-spacing: 0.04em; }
.footer-links { display: flex; flex-direction: column; gap: 7px; margin-top: 14px; }
.footer-links a { color: inherit; text-decoration: none; }
.footer-links a:hover { color: var(--vf-cream); }
.footer-bottom {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 24px 40px;
  border-top: 1px solid rgba(250,247,242,0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  font-size: 12.5px;
}
.footer-bottom .disclaimer { margin-left: auto; }

/* =========================================================
   Inner pages: header band + content sections
   ========================================================= */
.page-header {
  background: var(--vf-cream);
  font-family: var(--vf-font-body);
  color: var(--vf-charcoal);
  position: relative;
  overflow: hidden;
}
.page-header-blob { position: absolute; top: -130px; right: -120px; opacity: .3; pointer-events: none; }
.page-header-inner { max-width: 760px; margin: 0 auto; padding: 88px 24px 56px; position: relative; }
.page-header-inner--wide { max-width: 1000px; }
.page-title {
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.15;
  margin: 12px 0 0;
  text-wrap: balance;
}
.page-lead { font-size: 17px; line-height: 1.75; color: var(--vf-muted); margin: 20px 0 0; max-width: 620px; }
.page-updated { font-size: 13px; color: var(--vf-muted); margin-top: 20px; }

.content-band {
  background: var(--vf-white);
  border-top: 1px solid var(--vf-border);
  border-bottom: 1px solid var(--vf-border);
  font-family: var(--vf-font-body);
  color: var(--vf-charcoal);
}
.content-inner { max-width: 760px; margin: 0 auto; padding: 64px 24px; display: flex; flex-direction: column; gap: 36px; }
.content-block { border-top: 1px solid var(--vf-border); padding-top: 36px; }
.content-block:first-child { border-top: none; padding-top: 0; }
.content-h2 { font-family: var(--vf-font-display); font-weight: 600; font-size: 21px; margin: 0; }
.content-p { font-size: 15.5px; line-height: 1.8; margin: 12px 0 0; }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; margin-top: 20px; }
.info-card { background: var(--vf-cream); border: 1px solid var(--vf-border); border-radius: var(--vf-radius-card-lg); padding: 20px; }
.info-card-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 15px; }
.info-card-body { font-size: 13.5px; line-height: 1.65; color: var(--vf-muted); margin: 8px 0 0; }

.avatar-row { display: flex; gap: 20px; align-items: flex-start; margin-top: 18px; flex-wrap: wrap; }
.avatar-circle {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--vf-mint);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--vf-font-display);
  font-weight: 700; font-size: 22px; color: var(--vf-deep-teal);
  flex-shrink: 0;
}
.avatar-info { flex: 1; min-width: 260px; }
.avatar-name { font-family: var(--vf-font-display); font-weight: 700; font-size: 17px; }
.avatar-role { font-size: 13px; color: var(--vf-muted); margin-top: 2px; }
.avatar-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.cta-band { background: var(--vf-cream); font-family: var(--vf-font-body); color: var(--vf-charcoal); }
.cta-band-inner { max-width: 760px; margin: 0 auto; padding: 64px 24px 80px; text-align: center; }
.cta-title { font-family: var(--vf-font-display); font-weight: 700; font-size: clamp(22px, 3.4vw, 30px); margin: 0; text-wrap: balance; }
.cta-lead { font-size: 15.5px; line-height: 1.75; color: var(--vf-muted); margin: 14px auto 0; max-width: 520px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin-top: 26px; }

/* Contact page */
.email-card { background: var(--vf-mint); border-radius: var(--vf-radius-card-lg); padding: 32px; text-align: center; }
.email-card-label { font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: #1E4438; }
.email-card-link {
  display: inline-block;
  font-family: var(--vf-font-display);
  font-weight: 700;
  font-size: clamp(20px, 3.6vw, 28px);
  color: var(--vf-deep-teal);
  text-decoration: none;
  margin-top: 10px;
  word-break: break-word;
}
.email-card-sub { font-size: 14px; line-height: 1.7; color: #1E4438; margin: 12px auto 0; max-width: 440px; opacity: .85; }
.social-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; }

.crisis-box {
  background: var(--vf-tint-crisis);
  border: 1px solid var(--vf-tint-crisis-border);
  border-radius: var(--vf-radius-card-lg);
  padding: 22px;
}
.crisis-box-title { font-family: var(--vf-font-display); font-weight: 600; font-size: 15px; color: var(--vf-tint-crisis-title); }
.crisis-box-body { font-size: 14px; line-height: 1.7; color: var(--vf-tint-crisis-body); margin: 8px 0 0; }
.crisis-box--hero {
  background: var(--vf-tint-crisis);
  border: 1px solid var(--vf-tint-crisis-border);
  border-radius: var(--vf-radius-card-lg);
  padding: 26px;
}
.crisis-box--hero .content-h2 { color: var(--vf-tint-crisis-title); }
.crisis-box--hero .content-p { color: var(--vf-tint-crisis-body); }

/* FAQ */
.faq-group-label {
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--vf-deep-teal); margin-top: 44px; display: block;
}
.faq-group-label:first-child { margin-top: 0; }
.faq-list { display: flex; flex-direction: column; margin-top: 8px; }
.faq-item { border-bottom: 1px solid var(--vf-border); padding: 22px 0; }
.faq-q { font-family: var(--vf-font-display); font-weight: 600; font-size: 16.5px; }
.faq-a { font-size: 15px; line-height: 1.8; color: var(--vf-muted); margin: 8px 0 0; }
.faq-cta {
  background: var(--vf-mint);
  border-radius: var(--vf-radius-card-lg);
  padding: 26px;
  margin-top: 44px;
  text-align: center;
}
.faq-cta-title { font-family: var(--vf-font-display); font-weight: 700; font-size: 18px; color: #163027; }
.faq-cta-body { font-size: 14.5px; line-height: 1.7; color: #1E4438; margin: 8px auto 16px; max-width: 420px; opacity: .85; }

/* Legal pages */
.legal-layout { max-width: 1000px; margin: 0 auto; padding: 56px 24px 72px; display: flex; gap: 56px; align-items: flex-start; flex-wrap: wrap; }
.legal-toc { width: 200px; flex-shrink: 0; position: sticky; top: 88px; }
.legal-toc-label { font-size: 11.5px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; color: var(--vf-muted); }
.legal-toc-links { display: flex; flex-direction: column; gap: 9px; margin-top: 14px; }
.legal-toc-links a { font-size: 13.5px; text-decoration: none; }
.legal-content { flex: 1; min-width: 320px; max-width: 640px; }
.legal-section { border-top: 1px solid var(--vf-border); margin-top: 32px; padding-top: 32px; }
.legal-section:first-child { border-top: none; margin-top: 0; padding-top: 0; }
.legal-section--highlight {
  border-top: none; margin-top: 0; padding-top: 0;
  background: var(--vf-mint);
  border-radius: var(--vf-radius-card-lg);
  padding: 26px;
}
.legal-section--highlight .content-h2 { color: #163027; }
.legal-section--highlight .content-p { color: #1E4438; }
.legal-section--warn {
  border-top: none; margin-top: 0; padding-top: 0;
  background: var(--vf-tint-crisis);
  border: 1px solid var(--vf-tint-crisis-border);
  border-radius: var(--vf-radius-card-lg);
  padding: 26px;
}
.legal-section--warn .content-h2 { color: var(--vf-tint-crisis-title); }
.legal-section--warn .content-p { color: var(--vf-tint-crisis-body); }
.legal-see-also { margin-top: 24px; font-size: 14px; color: var(--vf-muted); }

@media (max-width: 760px) {
  .legal-toc { position: static; width: 100%; order: 2; }
  .legal-content { order: 1; }
  .legal-toc-links { flex-direction: row; flex-wrap: wrap; gap: 8px 16px; }
}

/* =========================================================
   Responsive tweaks
   ========================================================= */
@media (max-width: 640px) {
  .section { padding: 64px 20px; }
  .hero-block, .hero-block--tall, .hero-block--short { padding: 56px 20px; }
  .frameworks-row { flex-direction: column; align-items: flex-start; }
  .footer-bottom .disclaimer { margin-left: 0; }
  .compare-row { gap: 36px; }
  .page-header-inner { padding: 64px 20px 40px; }
}
