:root {
  --bg: #fafafa;
  --surface: #ffffff;
  --surface-muted: #f3f3f3;
  --ink: #111111;
  --ink-soft: #4a4a4a;
  --ink-muted: #767676;
  --ink-faint: #a3a3a3;
  --line: #e5e5e5;
  --accent: #111111;
  --accent-hover: #333333;
  --accent-soft: #f0f0f0;
  --accent-warm: #666666;
  --clinical: #111111;
  --clinical-soft: #f0f0f0;
  --status-stable: #111111;
  --status-monitor: #666666;
  --status-maintain: #333333;

  /* Aliases used in funnel sections */
  --teal: var(--accent);
  --teal-soft: rgba(17, 17, 17, 0.06);
  --clay: var(--accent-warm);
  --cream: var(--surface-muted);
  --ink-1: var(--ink);
  --hairline: var(--line);

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(17, 17, 17, 0.04);
  --shadow-md: 0 12px 40px rgba(17, 17, 17, 0.06);

  --font: "DM Sans", -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "DM Sans", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-brand: "DM Sans", var(--font-display);
  --section-gap: 64px;
  --section-stack: 36px;
  --ease: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: -0.011em;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.hero-title,
.section-head h2,
.curve-title,
.final-cta h2,
.plan-card-head h3,
.step-card h3,
.vet-card h3,
.faq-item summary,
.plan-amount,
.proof-num,
.testimonial blockquote,
.med-copy h2 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.is-filtered-out {
  display: none !important;
}

/* Journey gate */
html.needs-journey body {
  overflow: hidden;
}

html.needs-journey .site-shell {
  visibility: hidden;
  pointer-events: none;
}

html.has-pet .journey-gate {
  display: none !important;
}

.site-shell[hidden] {
  display: none !important;
}

.site-shell {
  opacity: 1;
}

.site-shell.is-entering {
  opacity: 0;
}

.journey-gate {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: var(--bg);
  transition: opacity 500ms var(--ease-out);
}

.journey-gate[hidden] {
  display: none !important;
}

.journey-gate.is-exiting {
  opacity: 0;
  pointer-events: none;
}

.journey-gate-inner {
  width: min(640px, 100%);
  text-align: center;
}

.journey-brand {
  display: inline-block;
  margin-bottom: 48px;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ink);
}

.journey-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.journey-lead {
  margin: 0 0 40px;
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.journey-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.journey-card {
  position: relative;
  padding: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 300ms var(--ease), box-shadow 300ms var(--ease), transform 300ms var(--ease-out);
}

.journey-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.journey-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.journey-card-label {
  display: block;
  padding: 16px;
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--ink);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--surface);
  border-bottom: 1px solid transparent;
  transition: border-color 300ms var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 20px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.brand-wordmark {
  display: block;
  width: auto;
  height: 34px;
  object-fit: contain;
}

.brand-wordmark--compact {
  height: 28px;
}

.assflow-brand .brand-wordmark {
  height: 28px;
}

.brand-mark {
  display: none;
}

.brand-logo {
  display: none;
}

.brand-mark-inner {
  display: none;
}

.brand-word {
  display: none;
}

.brand-word-top {
  display: none;
}

.brand-word-bottom {
  display: none;
}

.brand-word-base {
  display: none;
}

.brand-word-accent {
  display: none;
}

.assflow-brand .brand-word-bottom {
  display: none;
}

.assflow-brand .brand-mark {
  display: none;
}

.brand-dot {
  display: none;
}

.site-nav {
  display: flex;
  gap: 32px;
}

.site-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 200ms var(--ease);
}

.site-nav a:hover {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pet-toggle {
  display: flex;
  padding: 4px;
  background: var(--surface-muted);
  border-radius: var(--radius-pill);
}

.pet-toggle-btn {
  padding: 8px 14px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease);
}

.pet-toggle-btn.is-active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--ink);
  transition: transform 300ms var(--ease), opacity 300ms var(--ease);
}

.menu-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 28px;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition: background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease), transform 200ms var(--ease);
}

.btn:hover {
  opacity: 1;
}

.btn-sm {
  min-height: 44px;
  padding: 0 20px;
  font-size: 0.875rem;
}

.btn-dark {
  color: var(--surface);
  background: var(--ink);
  border-color: var(--ink);
}

.btn-dark:hover {
  background: #333;
  border-color: #333;
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--ink-muted);
  background: var(--surface);
}

.btn-light {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.btn-light:hover {
  background: var(--surface-muted);
}

.btn-block {
  width: 100%;
}

.link-text {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--accent);
}

.link-text:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.price {
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Typography */
.eyebrow {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.7);
}

.section-head {
  max-width: 560px;
  margin-bottom: 28px;
}

.section-head-center {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h2,
.hero-title,
.subscribe-title {
  margin: 0;
  font-size: clamp(1.875rem, 4vw, 2.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
}

.section-lead {
  margin: 16px 0 0;
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

.section-lead-center {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hero-eyebrow {
  margin: 0 0 20px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

/* Hero */
.hero {
  padding: 64px 0 var(--section-gap);
}

.hero-grid {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
  line-height: 1.12;
}

.hero-lead {
  margin: 20px auto 28px;
  max-width: 42ch;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

.hero-cta {
  margin-top: 4px;
}

.hero-cta-note {
  margin: 14px 0 0;
  max-width: 40ch;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Unified landing CTAs */
.site-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.site-cta .btn-get-started {
  min-width: 240px;
}

.btn-hero-primary {
  width: 100%;
  max-width: 320px;
  min-height: 48px;
  font-size: 0.9375rem;
  font-weight: 500;
}

.hero-micro {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  color: var(--ink-muted);
}

/* Primary CTA with supporting line */
.btn-has-meta {
  flex-direction: column;
  gap: 3px;
  min-height: 60px;
  padding: 12px 28px;
  line-height: 1.2;
}

.btn-label {
  font-size: 1rem;
  font-weight: 600;
}

.btn-meta {
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  opacity: 0.88;
}

.final-cta .btn-light.btn-has-meta .btn-meta {
  color: var(--ink-muted);
  opacity: 1;
}

.hero-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: opacity 400ms var(--ease);
}

.hero-image.is-swapping {
  opacity: 0.5;
}

/* Assessment */
.assessment {
  padding: var(--section-gap) 0;
  background: var(--surface);
  border-top: none;
  border-bottom: none;
}

.ckd-quote {
  max-width: 520px;
  margin: 48px 0 0;
  padding: 28px 32px;
  border: none;
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--surface-muted);
}

.ckd-quote p {
  margin: 0 0 12px;
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.55;
  color: var(--ink);
}

.ckd-quote footer {
  font-size: 0.8125rem;
  font-style: normal;
  color: var(--ink-muted);
}

.concern-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.concern-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  text-align: left;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 250ms var(--ease), transform 250ms var(--ease-out), border-color 250ms var(--ease);
}

.concern-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.concern-card.is-selected {
  border-color: var(--accent);
  background: var(--accent-soft);
  box-shadow: var(--shadow-md);
}

.concern-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.concern-icon-skin { background: #f5e6d3; }
.concern-icon-gut { background: #dce8df; }
.concern-icon-joint { background: #dde4ef; }
.concern-icon-urinary { background: #e8dff0; }
.concern-icon-calm { background: #e8eef5; }
.concern-icon-heart { background: #f5dede; }

.explore {
  padding: 0 0 var(--section-gap);
  background: var(--surface);
}

.explore .section-head-center h2 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
}

.explore-arrow {
  margin-top: auto;
  font-size: 1.25rem;
  color: var(--ink-muted);
}

.concern-name {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--ink);
}

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

.concern-desc {
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.45;
}

/* Dedicated symptom assessment flow (Hims-style) */
html.assflow-open {
  overflow: hidden;
}

html.assflow-open .site-shell {
  visibility: hidden;
}

.assflow[hidden] {
  display: none !important;
}

.assflow {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  color: var(--ink);
}

.assflow-header {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.assflow-back,
.assflow-exit {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  font-family: var(--font);
  font-size: 1.25rem;
  color: var(--ink);
  cursor: pointer;
}

.assflow-back[hidden] {
  visibility: hidden;
  pointer-events: none;
}

.assflow-exit {
  grid-column: 3;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.assflow-exit:hover,
.assflow-back:hover {
  color: var(--ink);
}

.assflow-brand {
  grid-column: 2;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
}

.assflow-progress {
  height: 2px;
  background: var(--surface-muted);
  flex-shrink: 0;
}

.assflow-progress-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--accent);
  transition: width 400ms var(--ease-out);
}

.assflow-main {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 40px 24px 120px;
}

.assflow-footer {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 510;
  padding: 16px 24px calc(16px + env(safe-area-inset-bottom));
  background: linear-gradient(to top, var(--surface) 70%, rgba(255, 255, 255, 0));
  border-top: 1px solid transparent;
}

.assflow-footer:not([hidden]) {
  border-top-color: var(--line);
  background: var(--surface);
}

.assflow-footer[hidden] {
  display: none;
}

.assflow-footer .btn {
  max-width: 480px;
  margin: 0 auto;
}

.flow-step {
  max-width: 480px;
  margin: 0 auto;
  animation: flowStepIn 280ms var(--ease-out) both;
}

.flow-step-result {
  max-width: 400px;
}

@keyframes flowStepIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flow-step-label {
  margin: 0 0 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
}

.flow-title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 5vw, 1.75rem);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.22;
}

.flow-lead {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.flow-visual-hint {
  margin: 0 0 20px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--ink-muted);
}

.flow-fieldset-visual {
  margin: 0;
  padding: 0;
  border: none;
}

.flow-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.flow-fieldset-visual-wide .flow-visual-grid {
  grid-template-columns: repeat(6, 1fr);
}

.flow-fieldset-visual-wide .flow-visual-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.flow-fieldset-visual-wide .flow-visual-card:nth-child(4) {
  grid-column: 2 / 4;
}

.flow-fieldset-visual-wide .flow-visual-card:nth-child(5) {
  grid-column: 4 / 6;
}

.flow-visual-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition:
    border-color 200ms var(--ease),
    box-shadow 200ms var(--ease);
}

.flow-visual-card:hover {
  border-color: rgba(21, 89, 183, 0.35);
  box-shadow: var(--shadow-sm);
}

.flow-visual-card:has(input:checked) {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.flow-visual-card:has(input:checked) .flow-visual-caption {
  color: var(--ink);
  background: var(--accent-soft);
}

.flow-visual-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.flow-visual-media {
  display: block;
  aspect-ratio: 4 / 3;
  width: 100%;
  background: var(--bg);
  overflow: hidden;
}

.flow-visual-media--photo {
  aspect-ratio: 4 / 3;
  line-height: 0;
}

.flow-visual-photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: var(--bg);
}

.flow-visual-card--photo {
  border-radius: var(--radius-sm);
}

.flow-visual-card--photo .flow-visual-caption {
  padding: 10px 12px;
  font-size: 0.75rem;
  line-height: 1.35;
  text-align: center;
}

.flow-visual-card--photo:has(input:checked) {
  box-shadow: 0 0 0 2px var(--accent);
}

.flow-fieldset-visual-photo .flow-visual-grid {
  gap: 10px;
}

.flow-visual-media svg {
  display: block;
  width: 100%;
  height: 100%;
}

.flow-visual-caption {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
  color: var(--ink-soft);
  background: var(--surface);
  transition: background 200ms var(--ease);
}

.flow-visual-caption-title {
  display: block;
}

.flow-visual-caption-detail {
  display: block;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--ink-muted);
}

.section-tagline {
  margin: 16px 0 0;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--accent);
}

@media (min-width: 480px) {
  .flow-visual-caption {
    font-size: 0.8125rem;
    padding: 12px 14px;
  }
}

.flow-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-option,
.flow-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  color: var(--ink);
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 150ms var(--ease);
}

.flow-option:hover,
.flow-radio:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.flow-option:active,
.flow-radio:active {
  transform: scale(0.99);
}

.flow-option-label,
.flow-radio-text {
  flex: 1;
  line-height: 1.35;
}

.flow-option-arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: var(--ink-muted);
}

.flow-fieldset {
  margin: 0;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.flow-fieldset-radio {
  gap: 10px;
}

.flow-check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.flow-radio {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 200ms var(--ease), background 200ms var(--ease), transform 150ms var(--ease);
}

.flow-radio:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.flow-radio:active {
  transform: scale(0.99);
}

.flow-check:has(input:checked),
.flow-radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.flow-check-urgent:has(input:checked) {
  border-color: #b54a4a;
  background: #fdf0f0;
}

.flow-check input,
.flow-radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.flow-check-box {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  transition: border-color 200ms var(--ease), background 200ms var(--ease);
}

.flow-check:has(input:checked) .flow-check-box {
  border-color: var(--accent);
  background: var(--accent);
  box-shadow: inset 0 0 0 3px var(--surface);
}

.flow-check-urgent:has(input:checked) .flow-check-box {
  border-color: #b54a4a;
  background: #b54a4a;
}

.flow-check-text {
  flex: 1;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.flow-urgent-label {
  margin: 28px 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #b54a4a;
}

.flow-fieldset-urgent {
  margin-bottom: 8px;
}

.flow-error {
  margin: 16px 0 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: #b54a4a;
}

.flow-error[hidden] {
  display: none;
}

/* Outcome screens inside flow */
.assflow-main .quiz-eyebrow {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--accent);
}

.assflow-main .quiz-title {
  margin: 0 0 8px;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.assflow-main .quiz-desc {
  margin: 0 0 24px;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

.assflow-main .quiz-result-outcome .quiz-title {
  font-size: 1.375rem;
  line-height: 1.35;
  margin-bottom: 20px;
}

.assflow-main .quiz-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.assflow-main .quiz-actions .btn {
  flex: 1;
  min-width: 120px;
}

.assflow-main .quiz-reported {
  margin: 0 0 16px;
  padding: 16px 16px 16px 32px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.quiz-reported li {
  margin-bottom: 6px;
}

.quiz-reported li:last-child {
  margin-bottom: 0;
}

.quiz-duration {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink-muted);
}

.quiz-note {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

.quiz-result-urgent .quiz-note {
  background: #fdf0f0;
  color: #6b3a3a;
}

.quiz-result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.quiz-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.quiz-result-outcome .quiz-title {
  font-size: 1.375rem;
  line-height: 1.35;
  margin-bottom: 20px;
}

.quiz-you-reported {
  margin-bottom: 20px;
}

.quiz-you-label,
.quiz-milestones-label,
.quiz-stories-label {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.quiz-milestones {
  margin-bottom: 24px;
}

.quiz-milestone-list {
  margin: 0;
  padding: 0 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.quiz-milestone-list li {
  margin-bottom: 6px;
}

.quiz-milestone-list li:last-child {
  margin-bottom: 0;
}

.quiz-stories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.outcome-timeline {
  margin-bottom: 32px;
}

.outcome-timeline-label {
  margin: 0 0 20px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.outcome-timeline-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding-top: 8px;
}

.outcome-timeline-track::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: var(--line);
}

.outcome-timeline-node {
  position: relative;
  text-align: center;
}

.outcome-timeline-dot {
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--surface);
  box-shadow: 0 0 0 1px var(--line);
}

.outcome-timeline-text {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.quiz-recap {
  margin-bottom: 20px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: var(--surface-muted);
}

.quiz-recap-label {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
  text-transform: uppercase;
}

.quiz-recap .quiz-reported {
  margin-bottom: 8px;
  padding: 0 0 0 16px;
  background: transparent;
}

.quiz-recap .quiz-duration {
  margin-bottom: 0;
}

.story-card {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius-sm);
  background: var(--bg);
  border: 1px solid var(--line);
}

.story-photo {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.story-meta {
  margin: 0 0 8px;
  font-size: 0.875rem;
  color: var(--ink);
}

.story-change {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.story-change span {
  font-weight: 600;
  color: var(--ink-muted);
}

.story-quote {
  margin: 10px 0 0;
  padding: 0;
  border: none;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.45;
  color: var(--accent);
}

.quiz-vet-callout {
  margin-bottom: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--ink);
  color: var(--surface);
}

.quiz-vet-callout-urgent {
  background: #3d2020;
}

.quiz-vet-badge {
  display: inline-block;
  margin-bottom: 10px;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quiz-vet-title {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.quiz-vet-desc {
  margin: 0 0 16px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.78);
}

.quiz-vet-callout .btn-dark {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--surface);
}

.quiz-vet-callout .btn-dark:hover {
  background: var(--surface-muted);
}

.quiz-formula-soft {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  line-height: 1.5;
  text-align: center;
  color: var(--ink-muted);
}

.quiz-formula-soft strong {
  color: var(--ink-soft);
  font-weight: 600;
}

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

.result-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--accent-soft);
  border: 2px solid rgba(45, 90, 69, 0.15);
}

.result-eyebrow {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.result-title {
  margin: 0 0 8px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.result-desc {
  margin: 0 0 24px;
  color: var(--ink-soft);
  line-height: 1.6;
}

.result-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.result-price {
  font-size: 1.25rem;
  font-weight: 700;
}

/* Possibilities */
.possibilities {
  padding: 80px 0;
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.possibilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.possibility-card {
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--bg);
  border: 1px solid var(--line);
}

.possibility-card h3 {
  margin: 0 0 10px;
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.possibility-card p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.possibilities-cta {
  text-align: center;
}

/* How it works */
.how {
  padding: 80px 0;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step-num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 50%;
  background: var(--ink);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--surface);
}

.steps h3 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 600;
}

.steps p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* Spotlight */
.spotlight {
  padding: 40px 0 80px;
}

.spotlight-card {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 48px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.spotlight-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, var(--surface-muted), var(--bg));
}

.product-pack {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 220px;
  border-radius: 16px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.product-line {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.product-name {
  margin-top: 4px;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.spotlight-ingredients {
  margin: 24px 0;
  padding: 0;
  list-style: none;
}

.spotlight-ingredients li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.spotlight-footer {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

/* Why */
.why {
  padding: 80px 0;
  background: var(--surface-muted);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.why-card {
  padding: 28px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
}

.why-card h3 {
  margin: 0 0 10px;
  font-size: 1rem;
  font-weight: 600;
}

.why-card p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.55;
}

/* Vet band */
.vet-band {
  padding: 80px 0;
}

.vet-band-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.vet-band-body {
  margin: 16px 0 24px;
  font-size: 1.0625rem;
  color: var(--ink-muted);
  line-height: 1.65;
}

.vet-band-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

/* Subscribe */
.subscribe {
  padding: 80px 0 100px;
  background: var(--accent);
  color: var(--surface);
}

.subscribe-inner {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: center;
}

.subscribe-lead {
  margin: 16px 0 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}

.subscribe-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.subscribe-card-label {
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  opacity: 0.8;
}

.subscribe-card-price {
  margin: 0 0 20px;
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.subscribe-card-price span {
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.7;
}

.subscribe-card-list {
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
}

.subscribe-card-list li {
  padding: 8px 0;
  font-size: 0.9375rem;
  opacity: 0.9;
}

.subscribe-card-list li::before {
  content: "✓ ";
  font-weight: 700;
}

/* Footer */
.site-footer {
  padding: 64px 0 32px;
  background: var(--surface);
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
}

.footer-tagline {
  margin: 12px 0 0;
  max-width: 32ch;
  font-size: 0.9375rem;
  color: var(--ink-muted);
}

.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.footer-nav span {
  display: block;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.footer-nav a {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9375rem;
  color: var(--ink-soft);
}

.footer-nav a:hover {
  color: var(--ink);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-top: 24px;
  flex-wrap: wrap;
}

.footer-bottom p {
  margin: 0;
  max-width: 480px;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.footer-legal {
  display: flex;
  gap: 24px;
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--ink-muted);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Responsive */
@media (max-width: 900px) {
  .spotlight-card,
  .vet-band-grid,
  .subscribe-inner {
    grid-template-columns: 1fr;
  }

  .concern-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .why-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    top: 65px;
    flex-direction: column;
    gap: 0;
    padding: 16px 24px;
    background: var(--bg);
    border-top: 1px solid var(--line);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .pet-toggle {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .journey-cards {
    grid-template-columns: 1fr;
  }

  .concern-grid,
  .steps,
  .why-grid,
  .possibilities-grid {
    grid-template-columns: 1fr;
  }

  .outcome-timeline-track {
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 0;
  }

  .outcome-timeline-track::before {
    display: none;
  }

  .outcome-timeline-dot {
    margin: 0 0 10px;
  }

  .outcome-timeline-text {
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .care-pillars,
  .healthspan-grid,
  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-chart-card {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    max-width: none;
  }
}

/* ─── Hims-inspired health system ─── */

.btn-get-started,
.assflow-footer .btn,
.quiz-vet-callout .btn {
  color: var(--surface);
  background: var(--clinical);
  border-color: var(--clinical);
  font-weight: 500;
}

/* Plan cards: screening is step 1, not buying a plan */
.plans-grid .btn-outline.btn-get-started {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  font-weight: 600;
}

.plans-grid .btn-outline.btn-get-started:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
  opacity: 1;
}

.btn-get-started:hover,
.assflow-footer .btn:hover,
.quiz-vet-callout .btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  opacity: 1;
}

.btn-ghost {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
  border-radius: var(--radius-pill);
}

.btn-ghost:hover {
  border-color: var(--ink);
  background: var(--surface-muted);
  opacity: 1;
}

.clinic-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--surface-muted);
  border: none;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-soft);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-stable);
  box-shadow: none;
}

.hero-clinic {
  position: relative;
  overflow: hidden;
  padding: 72px 0 56px;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
}

@media (min-width: 768px) {
  .hero-clinic {
    padding: 96px 0 72px;
  }
}

.hero-clinic::before {
  display: none;
}

/* Subtle line-art cats — decorative only */
.cat-decor {
  position: absolute;
  pointer-events: none;
  color: var(--accent);
  opacity: 0.07;
  z-index: 0;
}

.cat-decor--hero {
  width: min(320px, 42vw);
  right: -2%;
  top: 8%;
}

.cat-decor--how {
  width: min(200px, 28vw);
  left: -2%;
  bottom: 12%;
  opacity: 0.05;
}

.cat-decor--curve {
  width: min(160px, 22vw);
  left: 3%;
  top: 18%;
  opacity: 0.045;
}

.cat-decor--final {
  width: min(260px, 36vw);
  right: 4%;
  bottom: 10%;
  color: #fff;
  opacity: 0.08;
}

.hero-clinic .wrap,
.how.clinic-section .wrap,
.final-cta .wrap {
  position: relative;
  z-index: 1;
}

.curve-section {
  position: relative;
  overflow: hidden;
}

.curve-section .wrap {
  position: relative;
  z-index: 1;
}

.how.clinic-section,
.final-cta {
  position: relative;
  overflow: hidden;
}

@media (max-width: 720px) {
  .cat-decor--hero {
    width: 200px;
    right: -12%;
    top: 2%;
    opacity: 0.045;
  }

  .cat-decor--how,
  .cat-decor--curve,
  .cat-decor--final {
    display: none;
  }
}

.hero-gain-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 16px 20px;
  background: rgba(29, 46, 68, 0.92);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(29, 46, 68, 0.22);
}

.hero-gain-badge-num {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--accent-warm);
}

.hero-gain-badge-sub {
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.88;
  max-width: 14ch;
  line-height: 1.35;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 40px 0 0;
  padding: 0;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--surface-muted);
  overflow: hidden;
}

.hero-metrics div {
  padding: 20px 22px;
  background: var(--surface-muted);
}

.hero-metrics dt {
  margin: 0 0 4px;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ink);
}

.hero-image-clinic {
  position: relative;
}

.hero-image-clinic .hero-image {
  border-radius: var(--radius-lg);
  border: none;
}

.hero-chart-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.98);
  border: none;
  box-shadow: var(--shadow-sm);
}

.hero-chart-label {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-muted);
}

.hero-chart-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-chart-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
}

.hero-chart-list li:first-child {
  border-top: none;
  padding-top: 0;
}

.chart-tag {
  flex-shrink: 0;
  padding: 2px 8px;
  border-radius: var(--radius-pill);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.chart-tag-stable {
  background: rgba(5, 150, 105, 0.12);
  color: var(--status-stable);
}

.chart-tag-monitor {
  background: rgba(217, 119, 6, 0.12);
  color: var(--status-monitor);
}

.chart-tag-maintain {
  background: var(--clinical-soft);
  color: var(--clinical);
}

.clinic-section {
  padding: var(--section-gap) 0;
}

.clinic-section-muted {
  background: var(--surface-muted);
  border-top: none;
  border-bottom: none;
}

.intake-preview {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 48px;
}

.intake-step-preview {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.intake-step-num {
  flex-shrink: 0;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--accent);
}

.intake-step-preview h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  font-weight: 600;
}

.intake-step-preview p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.care-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.care-pillar {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.care-pillar-icon {
  display: block;
  margin-bottom: 16px;
  font-size: 0.875rem;
  color: var(--accent);
}

.care-pillar h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.care-pillar p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.healthspan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.healthspan-card {
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: none;
  box-shadow: var(--shadow-sm);
}

.healthspan-phase {
  display: block;
  margin-bottom: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--accent);
}

.healthspan-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 600;
}

.healthspan-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

.why-card-clinic {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.clinic-band {
  background: var(--ink);
  color: var(--surface);
}

.clinic-band h2 {
  color: var(--surface);
}

.clinic-band .eyebrow {
  color: rgba(255, 255, 255, 0.65);
}

.clinic-band .vet-band-body {
  color: rgba(255, 255, 255, 0.72);
}

.clinic-band .btn-light,
.clinic-band .btn-get-started {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--surface);
}

.clinic-band .btn-light:hover,
.clinic-band .btn-get-started:hover {
  background: var(--surface-muted);
  border-color: var(--surface-muted);
  opacity: 1;
}

.assflow-clinic {
  background: var(--surface);
}

.assflow-clinic .assflow-main {
  background: var(--surface);
}

.flow-check:has(input:checked) {
  border-color: var(--clinical);
  background: var(--surface-muted);
}

.flow-radio:has(input:checked) {
  border-color: var(--accent);
  background: var(--surface-muted);
}

.quiz-vet-callout {
  background: var(--clinical);
  border: none;
  border-radius: var(--radius-lg);
}

.assflow-brand-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.assflow-program-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ink-faint);
}

.assflow-clinic .assflow-header {
  background: var(--surface);
}

.assflow-clinic .assflow-progress-fill {
  background: var(--accent);
}

.story-card-clinic {
  background: var(--surface);
  border-color: var(--line);
}

.story-card-clinic .story-quote {
  color: var(--clinical);
}

.outcome-timeline-dot {
  background: var(--clinical);
}

/* ─── Life journey (scrollable healthspan) ─── */

.life-journey {
  padding-top: var(--section-stack);
  padding-bottom: var(--section-gap);
  background: var(--surface-muted);
}

.life-journey-intro {
  max-width: 640px;
  margin-bottom: 40px;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.life-journey-shell {
  position: relative;
  margin-bottom: 0;
}

.life-journey-rail {
  position: absolute;
  top: 52px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--line);
  z-index: 0;
}

.life-journey-rail-fill {
  display: block;
  height: 100%;
  width: 0%;
  background: var(--clinical);
  transition: width 300ms var(--ease-out);
}

.life-journey-nav-wrap {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
  padding: 0 max(24px, calc((100% - 1200px) / 2 + 24px));
}

.life-journey-nav {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.life-journey-nav::-webkit-scrollbar {
  display: none;
}

.life-journey-nav-btn {
  flex-shrink: 0;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--surface);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 300ms var(--ease);
  position: relative;
}

.life-journey-nav-btn:hover {
  border-color: var(--ink-muted);
  color: var(--ink);
}

.life-journey-nav-btn.is-active {
  background: var(--clinical);
  border-color: var(--clinical);
  color: var(--surface);
  box-shadow: none;
}

.life-journey-nav-btn.is-current:not(.is-active) {
  border-color: var(--clinical);
  color: var(--clinical);
  box-shadow: inset 0 0 0 1px var(--clinical);
}

.life-journey-scroller {
  position: relative;
  z-index: 1;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 8px max(24px, calc((100% - 1200px) / 2 + 24px)) 24px;
}

.life-journey-scroller::-webkit-scrollbar {
  display: none;
}

.life-journey-scroller:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.life-journey-track {
  display: flex;
  gap: 20px;
  width: max-content;
}

.life-stage-card {
  flex: 0 0 min(92vw, 760px);
  scroll-snap-align: center;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 0;
  min-height: 480px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.life-stage-card:hover {
  box-shadow: var(--shadow-sm);
}

.life-stage-card.is-active {
  box-shadow: var(--shadow-md);
}

.life-stage-card.is-current {
  border: 1px solid var(--clinical);
  box-shadow: var(--shadow-md);
}

.life-stage-card[data-stage="young"],
.life-stage-card[data-stage="prime"],
.life-stage-card[data-stage="mature"],
.life-stage-card[data-stage="senior"],
.life-stage-card[data-stage="geriatric"] {
  --stage-color: var(--clinical);
  --stage-bg: var(--surface-muted);
}

.life-stage-card.is-current {
  border-color: var(--clinical);
  background: var(--surface);
}

.life-stage-visual {
  position: relative;
  background: linear-gradient(135deg, var(--stage-bg), var(--surface));
  overflow: hidden;
}

.life-stage-image {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--stage-color);
  opacity: 0.08;
}

.focal-points-layer {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: stretch;
  padding: 40px;
}

.focal-point {
  position: relative;
}

.focal-point-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(6px);
  font-family: var(--font);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  transition: all 250ms var(--ease);
}

.focal-point-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--stage-color);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.focal-point-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--stage-color);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  transition: transform 250ms var(--ease);
}

.focal-point-btn[aria-expanded="true"] .focal-point-icon {
  transform: rotate(45deg);
}

.focal-point-expand {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.92);
  color: white;
  font-size: 0.8125rem;
  line-height: 1.6;
  z-index: 10;
  animation: slideDown 250ms var(--ease-out);
  max-width: 320px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.focal-point-expand p {
  margin: 0;
}

.life-stage-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px;
  overflow-y: auto;
}

.life-stage-ages {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stage-color);
}

.life-stage-card h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--ink);
}

.life-stage-human {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--stage-color);
}

.life-stage-summary {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.life-stage-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.life-stage-block-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stage-color);
}

.life-stage-responsibility {
  margin: 0;
  font-size: 0.8875rem;
  line-height: 1.6;
  color: var(--ink-soft);
  font-weight: 500;
}

.life-journey-hint {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.8125rem;
  color: var(--ink-faint);
}

/* Age carousel — kitten to geriatric */
.age-carousel {
  background: var(--bg);
}

.age-carousel .life-journey-lead {
  max-width: 42ch;
  margin: 12px auto 0;
  text-align: center;
  color: var(--ink-soft);
}

.age-carousel .life-journey-shell {
  margin-bottom: 0;
}

.age-carousel .life-journey-foot {
  max-width: none;
  align-items: center;
}

.age-carousel-card {
  flex: 0 0 min(88vw, 380px);
  grid-template-columns: 1fr;
  min-height: auto;
  scroll-snap-align: center;
}

.age-carousel-visual {
  position: relative;
  min-height: 300px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: var(--surface);
}

.age-stage-photo {
  display: block;
  width: 280px;
  height: 280px;
  max-width: min(100%, 280px);
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center center;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}

.age-cat-art {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  opacity: 1;
}

.age-carousel-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 1;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  background: var(--clinical);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.age-carousel-content {
  padding: 22px 22px 26px;
}

.age-carousel-content h3 {
  margin: 6px 0 18px;
  font-size: 1.125rem;
  line-height: 1.3;
}

.age-carousel-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.age-carousel-col-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.age-carousel-col--watch .age-carousel-col-label {
  color: var(--ink-soft);
}

.age-carousel-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.age-carousel-list li {
  position: relative;
  padding-left: 14px;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-soft);
}

.age-carousel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

.age-carousel-col--watch .age-carousel-list li::before {
  background: var(--accent-warm);
}

.age-carousel-note {
  margin: 0;
  padding-top: 14px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.age-carousel .life-stage-ages {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stage-color);
}

.life-journey-foot {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  max-width: 560px;
}

.life-journey-footnote {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

@media (max-width: 768px) {
  .life-stage-card {
    grid-template-columns: 1fr;
    min-height: auto;
    flex-basis: min(88vw, 100%);
  }

  .age-carousel-card {
    flex: 0 0 min(92vw, 360px);
  }

  .age-carousel-columns {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .age-carousel-visual {
    min-height: 260px;
    padding: 20px;
  }

  .age-stage-photo {
    width: 220px;
    height: 220px;
    max-width: min(100%, 220px);
  }

  .life-stage-photo {
    min-height: 180px;
  }

  .life-stage-content {
    padding: 24px;
  }

  .life-journey-rail {
    display: none;
  }
}

/* ─── RHS interactive content ─── */

.life-stage-rhs {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.02);
  border-left: 3px solid var(--stage-color);
  min-height: 200px;
  transition: all 300ms var(--ease);
}

.rhs-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: fadeIn 300ms var(--ease-out);
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.rhs-stat {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.rhs-stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--stage-color);
}

.rhs-stat-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.rhs-stat-benchmark {
  font-size: 0.75rem;
  color: var(--ink-muted);
  padding: 4px 8px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.03);
}

.rhs-graph-wrap {
  flex: 1;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
}

.rhs-graph {
  width: 100%;
  height: 100%;
  max-width: 150px;
}

.rhs-explanation {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
  font-weight: 500;
}

.focal-point-btn {
  padding: 10px 14px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all 250ms var(--ease);
}

.focal-point-btn:hover {
  background: rgba(255, 255, 255, 0.95);
  border-color: var(--stage-color);
  color: var(--stage-color);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.focal-point-btn.is-active {
  background: var(--stage-color);
  border-color: var(--stage-color);
  color: white;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

/* ─── Age gate ─── */

.age-gate {
  --age-accent: #111111;
  --age-surface: #ffffff;
  --age-bg-soft: #f3f3f3;
  --aj-ink: #111111;
  --aj-muted: #767676;
  --aj-line: #e5e5e5;
  --aj-art-stroke: #111111;
  --aj-art-fill: #111111;
  position: fixed;
  inset: 0;
  z-index: 400;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: max(40px, 8vh) 24px 48px;
  background: #ffffff;
  overflow-y: auto;
}

.age-gate-inner {
  position: relative;
  z-index: 1;
  width: min(480px, 100%);
}

.age-gate.age-theme-young,
.age-gate.age-theme-prime,
.age-gate.age-theme-mature,
.age-gate.age-theme-senior,
.age-gate.age-theme-geriatric {
  --age-accent: #111111;
  --aj-art-fill: #111111;
  background: #ffffff;
}

.age-gate[hidden] {
  display: none !important;
}

.age-gate-brand {
  display: inline-block;
  margin-bottom: 40px;
}

.age-gate-eyebrow {
  margin: 0 0 12px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--age-accent);
}

.age-gate-title {
  margin: 0 0 12px;
  font-size: clamp(1.75rem, 5vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.age-gate-lead {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--ink-muted);
}

.age-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.age-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.age-field-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}

.age-input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  font-family: var(--font);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
  transition: border-color 200ms var(--ease), box-shadow 200ms var(--ease);
}

.age-input:focus {
  outline: none;
  border-color: var(--age-accent);
  box-shadow: 0 0 0 3px var(--age-bg-soft);
}

.age-experience {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered motion only when the browser allows it */
@media (prefers-reduced-motion: no-preference) {
  .age-experience:not(.is-revealed) {
    opacity: 0;
    transform: translateY(12px);
  }

  .age-experience.is-revealed {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out);
  }
}

/* Always show content once the result panel is open */
#age-result-panel:not([hidden]) .age-experience {
  opacity: 1;
  transform: translateY(0);
}

.age-chapter-headline {
  margin: 0 0 24px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.5rem, 4.5vw, 2rem);
  font-weight: 600;
  font-style: italic;
  line-height: 1.25;
  color: var(--ink);
}

.age-human-reveal {
  margin-bottom: 24px;
  padding: 28px 22px;
  border-radius: var(--radius-md);
  background: var(--age-surface);
  border: 1px solid var(--line);
  text-align: center;
}

.age-human-cat-years {
  margin: 0 0 4px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.age-human-cat-num {
  font-size: 1rem;
  color: var(--age-accent);
}

.age-human-number {
  margin: 0;
  font-size: clamp(3.25rem, 14vw, 5rem);
  font-weight: 700;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--ink);
}

.age-human-unit {
  margin: 8px 0 16px;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.age-human-line {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.age-stage-pill {
  display: inline-block;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: var(--age-bg-soft);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--age-accent);
}

.age-love-moment {
  margin-bottom: 24px;
  padding: 28px 26px;
  border-radius: var(--radius-md);
  background: var(--age-love-bg);
  border: 1px solid var(--age-love-border);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.06);
}

.age-love-title {
  margin: 0 0 14px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.625rem, 5vw, 2.125rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.age-love-body {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--ink-soft);
}

.age-watch-card {
  margin-bottom: 8px;
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: var(--surface);
  border: 1px solid var(--line);
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .age-experience:not(.is-revealed) .age-watch-card {
    opacity: 0;
    transform: translateY(8px);
  }

  .age-experience.is-revealed .age-watch-card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 600ms var(--ease-out) 1.4s, transform 600ms var(--ease-out) 1.4s;
  }
}

.age-watch-title {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.age-watch-list {
  margin: 0 0 14px;
  padding-left: 18px;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.age-watch-list li {
  margin-bottom: 8px;
}

.age-watch-list li:last-child {
  margin-bottom: 0;
}

.age-watch-note {
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.age-experience.is-revealed .age-chapter-headline,
.age-experience.is-revealed .age-human-reveal,
.age-experience.is-revealed .age-love-moment {
  opacity: 1;
  transform: translateY(0);
}

.age-experience.is-revealed .age-chapter-headline {
  animation: ageFadeUp 700ms var(--ease-out) 80ms both;
}

.age-experience.is-revealed .age-human-reveal {
  animation: ageFadeUp 700ms var(--ease-out) 280ms both;
}

.age-experience.is-revealed .age-love-moment {
  animation: ageFadeUp 800ms var(--ease-out) 700ms both;
}

@keyframes ageFadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.age-result-actions {
  margin-top: 20px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 500ms var(--ease-out), transform 500ms var(--ease-out);
}

.age-result-actions:not([hidden]) {
  opacity: 1;
  transform: translateY(0);
}

.age-gate .btn-get-started,
.age-gate .btn-block {
  background: var(--age-accent);
  border-color: var(--age-accent);
}

.age-gate .btn-get-started:hover,
.age-gate .btn-block:hover {
  filter: brightness(0.92);
}

body[data-age-theme="young"] .hero-clinic,
body[data-age-theme="prime"] .hero-clinic,
body[data-age-theme="mature"] .hero-clinic,
body[data-age-theme="senior"] .hero-clinic,
body[data-age-theme="geriatric"] .hero-clinic {
  background: var(--surface);
}

/* ─────────────────────────────────────────────
   Feline vitality curve — single-canvas data viz
   ───────────────────────────────────────────── */

.curve-section {
  --c-ink: #1d2e44;
  --c-ink-soft: #56616f;
  --c-ink-faint: #8b94a1;
  --c-bg: #f7f4ee;
  --c-surface: #ffffff;
  --c-line: #e7e0d4;
  --c-managed: #1559b7;
  --c-unmanaged: #c98a3f;
  --c-band: rgba(21, 89, 183, 0.12);
  padding: clamp(64px, 9vw, 112px) 0;
  background: var(--c-bg);
  color: var(--c-ink);
}

.curve-head {
  max-width: 720px;
  margin-bottom: 40px;
}

.curve-head .eyebrow {
  color: var(--c-managed);
}

.curve-title {
  margin: 0 0 18px;
  font-size: clamp(1.875rem, 4vw, 2.875rem);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--c-ink);
}

.curve-lead {
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--c-ink-soft);
}

.curve-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  margin-bottom: 20px;
}

.curve-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--c-ink-soft);
}

.curve-legend-swatch {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  flex-shrink: 0;
}

.curve-legend-swatch--managed { background: var(--c-managed); }
.curve-legend-swatch--unmanaged {
  background: var(--c-unmanaged);
  background-image: repeating-linear-gradient(90deg, var(--c-unmanaged) 0 5px, transparent 5px 9px);
  background-color: transparent;
}
.curve-legend-swatch--band {
  height: 12px;
  width: 22px;
  border-radius: 3px;
  background: var(--c-band);
  border: 1px solid rgba(47, 122, 111, 0.25);
}

/* Canvas layout */
.curve-canvas {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, 1fr);
  gap: 28px;
  align-items: start;
}

.curve-plot {
  position: relative;
  padding: 16px 12px 8px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.06);
}

.curve-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

/* Bold "added years" callout over the healthspan band */
.curve-gain {
  position: absolute;
  top: clamp(20px, 4%, 40px);
  right: clamp(20px, 4%, 44px);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  max-width: 220px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(47, 122, 111, 0.22);
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(26, 22, 18, 0.08);
  pointer-events: none;
}

.curve-gain-eyebrow {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
}

.curve-gain-num {
  margin: 2px 0 4px;
  font-size: clamp(1.75rem, 3.4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--c-managed);
}

.curve-gain-sub {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--c-ink-soft);
}

@media (max-width: 600px) {
  .curve-gain {
    position: static;
    max-width: none;
    align-items: flex-start;
    text-align: left;
    margin-top: 12px;
    background: rgba(47, 122, 111, 0.06);
    backdrop-filter: none;
  }
}

/* Axis + grid */
.curve-grid { stroke: var(--c-line); stroke-width: 1; }
.curve-axis-label,
.curve-y-title { fill: var(--c-ink-faint); font-size: 13px; font-family: var(--font); }
.curve-y-title { font-size: 12px; letter-spacing: 0.04em; }

/* Stage zones */
.curve-zone { cursor: pointer; }
.curve-zone-hit { fill: transparent; }
.curve-zone-band {
  fill: transparent;
  transition: fill 250ms var(--ease);
}
.curve-zone:hover .curve-zone-band { fill: rgba(26, 22, 18, 0.025); }
.curve-zone.is-selected .curve-zone-band { fill: rgba(47, 122, 111, 0.07); }
.curve-zone-label {
  fill: var(--c-ink-faint);
  font-size: 13px;
  font-weight: 500;
  font-family: var(--font);
  transition: fill 250ms var(--ease);
}
.curve-zone-age { fill: var(--c-ink-faint); font-size: 11px; font-family: var(--font); opacity: 0.75; }
.curve-zone:hover .curve-zone-label,
.curve-zone.is-selected .curve-zone-label { fill: var(--c-ink); }
.curve-zone:focus { outline: none; }
.curve-zone:focus-visible .curve-zone-band { fill: rgba(47, 122, 111, 0.1); }

/* Lines + area */
.curve-area { fill: var(--c-band); stroke: none; }
.curve-line { fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }
.curve-line--managed { stroke: var(--c-managed); }
.curve-line--unmanaged {
  stroke: var(--c-unmanaged);
  stroke-dasharray: 2 8;
  stroke-width: 2.5;
}

/* Stage dots */
.curve-stage-dot {
  fill: var(--c-surface);
  stroke: var(--c-managed);
  stroke-width: 2.5;
  cursor: pointer;
  transition: r 200ms var(--ease), fill 200ms var(--ease);
}
.curve-stage-dot:hover { r: 7.5; }
.curve-stage-dot.is-selected {
  fill: var(--c-managed);
  r: 7.5;
}

/* You are here */
.curve-here-line {
  stroke: var(--c-ink);
  stroke-width: 1.5;
  stroke-dasharray: 3 4;
  opacity: 0.4;
}
.curve-here-dot {
  fill: var(--c-ink);
  stroke: var(--c-surface);
  stroke-width: 2.5;
}
.curve-here-label {
  fill: var(--c-ink);
  font-size: 12px;
  font-weight: 600;
  font-family: var(--font);
}

/* Detail panel */
.curve-detail {
  display: flex;
  padding: 32px;
  background: var(--c-surface);
  border: 1px solid var(--c-line);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(26, 22, 18, 0.06);
}

.curve-detail-inner {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
  animation: curveDetailIn 420ms var(--ease-out) both;
}

@keyframes curveDetailIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.curve-detail-eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-managed);
}

.curve-detail-title {
  margin: 0;
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.18;
  color: var(--c-ink);
}

.curve-detail-bio {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

/* Habit drivers — why the curve bends */
.curve-drivers {
  margin: 2px 0;
}

.curve-drivers-head {
  margin: 0 0 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-ink-faint);
}

.curve-driver-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curve-driver {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.curve-driver-dir {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1;
}

.curve-driver--lift .curve-driver-dir {
  color: var(--c-managed);
  background: rgba(47, 122, 111, 0.12);
}

.curve-driver--drop .curve-driver-dir {
  color: var(--c-unmanaged);
  background: rgba(194, 112, 61, 0.12);
}

.curve-driver-text {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--c-ink-soft);
}

.curve-driver-text strong {
  color: var(--c-ink);
  font-weight: 600;
}

.curve-metrics {
  display: flex;
  flex-direction: column;
  gap: 1px;
  margin: 6px 0 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--c-line);
}

.curve-metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px;
  background: var(--c-bg);
}

.curve-metric-k {
  font-size: 0.8125rem;
  color: var(--c-ink-soft);
}

.curve-metric-v {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-ink);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* Footer */
.curve-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--c-line);
}

.curve-foot-note {
  margin: 0;
  max-width: 52ch;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--c-ink-soft);
}

@media (max-width: 880px) {
  .curve-canvas {
    grid-template-columns: 1fr;
  }
  .curve-zone-label { font-size: 15px; }
  .curve-zone-age { font-size: 13px; }
  .curve-axis-label { font-size: 15px; }
}

/* ─────────────────────────────────────────────
   Funnel sections
   ───────────────────────────────────────────── */

.btn-outline {
  color: var(--ink-1);
  background: transparent;
  border-color: var(--hairline);
}
.btn-outline:hover {
  border-color: var(--teal);
  color: var(--teal);
  opacity: 1;
}

/* Proof bar */
.proof-bar {
  position: relative;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  background: var(--surface);
}

.proof-bar::after {
  display: none;
}
.proof-bar-foot {
  margin: 0;
  padding: 0 0 20px;
  text-align: center;
  font-size: 0.6875rem;
  color: var(--ink-muted);
  line-height: 1.5;
}

.proof-bar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 24px 0 8px;
}

/* Founder story */
.why-section {
  background: var(--surface-muted);
}

.why-section.clinic-section {
  padding-bottom: var(--section-stack);
}

.why-section .why-grid {
  display: block;
  max-width: 42rem;
  margin: 0 auto;
}

.why-section .why-copy h2 {
  margin: 8px 0 16px;
  font-size: clamp(1.5rem, 3.5vw, 2.125rem);
  line-height: 1.2;
}

.why-section .why-lead {
  margin: 0 0 16px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
}

.why-section .why-copy p:not(.eyebrow):not(.why-lead):not(.why-signoff) {
  margin: 0 0 16px;
  color: var(--ink-soft);
  line-height: 1.65;
}

.why-section .why-signoff {
  margin: 24px 0 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-soft);
}
.ig-social {
  padding-top: 0;
}

.ig-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 32px;
}

.ig-card {
  padding: 20px 18px;
  border-radius: 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.ig-card-quote {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink);
}

.ig-card-meta {
  margin: 0;
  font-size: 0.75rem;
  color: var(--ink-muted);
}

.ig-handle {
  font-weight: 600;
  color: var(--accent);
}

/* Result preview on LP */
.result-preview-section {
  padding: var(--section-stack) 0 var(--section-gap);
  background: var(--surface-muted);
}

#how.clinic-section {
  padding-bottom: var(--section-stack);
}

#how.clinic-section + .result-preview-section {
  padding-top: var(--section-stack);
}

.result-preview-section + .vets.clinic-section-muted {
  padding-top: var(--section-stack);
}

#vets.clinic-section-muted {
  padding-bottom: var(--section-gap);
}

.result-preview-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
  padding: 32px;
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}

.result-preview-copy h2 {
  margin: 8px 0 12px;
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.result-preview-copy p:last-child {
  margin: 0;
  color: var(--ink-soft);
  line-height: 1.6;
}

.result-preview-demo {
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  text-align: center;
}

.result-preview-demo-label,
.result-preview-demo-note {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.result-preview-demo-note {
  margin-top: 10px;
  text-transform: none;
  font-weight: 500;
  letter-spacing: 0;
  color: var(--ink-muted);
}

.result-preview-meter,
.gate-result-preview-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 14px 0 10px;
}

.result-preview-seg,
.gate-result-preview-seg {
  padding: 10px 6px;
  border-radius: 10px;
  font-size: 0.625rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  background: var(--surface-muted);
  color: var(--ink-muted);
  border: 1px solid transparent;
}

.result-preview-seg.is-active,
.gate-result-preview-seg.is-active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent);
}

.seg-low.is-active { border-color: var(--ink); background: var(--accent-soft); color: var(--ink); }
.seg-medium.is-active { border-color: var(--ink); background: var(--accent-soft); color: var(--ink); }
.seg-high.is-active { border-color: #a8372e; background: rgba(168, 55, 46, 0.08); color: #a8372e; }

.result-preview-demo-caption,
.gate-result-preview-tier {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--ink);
}

.result-preview-cta {
  margin-top: 20px;
}

.testimonials-compact {
  margin-top: 0;
}

.curve-section-compact .curve-head {
  text-align: center;
}

.curve-section-compact .curve-lead {
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
}

.curve-section-compact .curve-foot {
  padding-top: 24px;
}

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

  .result-preview-card {
    grid-template-columns: 1fr;
    padding: 24px 20px;
  }
}

@media (max-width: 767px) {
  body {
    padding-bottom: calc(88px + env(safe-area-inset-bottom));
  }

  .how.clinic-section {
    padding-top: 48px;
  }

  .steps-grid {
    margin-top: 28px;
  }
}
.proof-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
}
.proof-num {
  font-size: clamp(1.375rem, 3vw, 1.875rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.proof-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-muted);
}

/* How it works steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}
.step-card {
  position: relative;
  padding: 28px 24px;
  background: var(--surface);
  border: 1px solid var(--hairline);
  border-radius: var(--radius-md);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-bottom: 16px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
  background: var(--surface-muted);
  border-radius: var(--radius-pill);
}
.step-card h3 {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink-1);
}
.step-card p {
  margin: 0 0 16px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.step-meta {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--ink-muted);
}
.how-cta {
  margin-top: 28px;
}

.how-cta-note {
  font-size: 0.8125rem;
  color: var(--ink-soft);
}

/* Plans / pricing */
.plans { background: var(--cream); }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
  align-items: start;
}
.plan-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 22px;
}
.plan-card-featured {
  border-color: var(--teal);
  box-shadow: 0 24px 60px rgba(47, 122, 111, 0.16);
}
.plan-badge {
  position: absolute;
  top: -12px;
  left: 26px;
  padding: 5px 12px;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--teal);
  border-radius: 999px;
}
.plan-card-head h3 {
  margin: 0 0 6px;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-1);
}
.plan-tagline {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.plan-price {
  margin: 20px 0;
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.plan-amount {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--ink-1);
}
.plan-period {
  font-size: 0.9375rem;
  color: var(--ink-soft);
}
.plan-feature-list {
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plan-feature-list li {
  position: relative;
  padding-left: 26px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--ink-soft);
}
.plan-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-weight: 700;
  color: var(--teal);
}
.plan-card .btn { margin-top: auto; }
.plans-disclaimer {
  margin: 28px auto 0;
  max-width: 680px;
  text-align: center;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Vets + testimonials */
.vets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.vets-grid--two {
  grid-template-columns: repeat(2, minmax(220px, 320px));
  justify-content: center;
}

.vet-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--hairline);
  border-radius: 22px;
}
.vet-photo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  margin-bottom: 16px;
}

.vet-avatar {
  display: grid;
  place-items: center;
  width: 84px;
  height: 84px;
  margin-bottom: 16px;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  box-shadow: 0 14px 30px rgba(21, 89, 183, 0.2);
}

.vet-card h3 {
  margin: 0 0 4px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-1);
}
.vet-cred {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--ink-soft);
}
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 28px;
}
.testimonial {
  margin: 0;
  padding: 26px;
  background: var(--cream);
  border: 1px solid var(--hairline);
  border-radius: 20px;
}
.testimonial blockquote {
  margin: 0 0 16px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink-1);
}
.testimonial figcaption {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--teal);
}

/* FAQ */
.faq { background: var(--cream); }
.faq-wrap { max-width: 760px; }
.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
}
.faq-item {
  border-bottom: 1px solid var(--hairline);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 4px;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--ink-1);
  cursor: pointer;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  transition: transform 200ms var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 4px 22px;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--ink-soft);
}

/* Final CTA band */
.final-cta {
  background: var(--ink-1);
  color: #fff;
}
.final-cta h2 { color: #fff; }
.final-cta-inner {
  max-width: 680px;
  margin: 0 auto;
}
.final-cta-body {
  margin: 14px 0 8px;
  font-size: 1.0625rem;
  line-height: 1.6;
  opacity: 0.92;
}
.final-cta-note {
  margin-top: 4px;
  font-size: 0.8125rem;
  opacity: 0.75;
}

/* Sticky mobile CTA */
.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--hairline);
  transform: translateY(110%);
  transition: transform 320ms var(--ease);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  max-width: 560px;
  margin: 0 auto;
}
.sticky-cta-text {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.sticky-cta .btn-get-started {
  width: 100%;
  max-width: 360px;
  min-height: 52px;
}
@media (min-width: 768px) {
  .sticky-cta { display: none; }
}

/* Hims warm hero image */
.hero-image-clinic .hero-image {
  aspect-ratio: 3 / 2;
}

/* Medication + compliance section */
.med { background: var(--bg); }
.med-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.med-visual img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.med-copy .eyebrow { color: var(--accent-warm); }
.med-copy h2 {
  margin: 12px 0 18px;
  font-size: clamp(1.875rem, 3.4vw, 2.75rem);
  line-height: 1.1;
  color: var(--ink);
}
.med-lead {
  margin: 0 0 24px;
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.med-points {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.med-points li {
  position: relative;
  padding-left: 28px;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.med-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent-warm);
  opacity: 0.85;
}
.med-points strong { color: var(--ink); font-weight: 600; }

.compliance-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.compliance-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 14px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-soft);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
}
.compliance-badge::before {
  content: "✓";
  font-weight: 700;
  color: var(--accent);
}

/* Product lineup band in plans */
.plans-lineup {
  margin: 8px 0 44px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.plans-lineup img { width: 100%; display: block; }

/* Funnel responsive */
@media (max-width: 880px) {
  .steps-grid,
  .plans-grid,
  .vets-grid,
  .testimonials { grid-template-columns: 1fr; }
  .proof-bar-grid { grid-template-columns: repeat(2, 1fr); row-gap: 24px; }
  .how-cta { flex-direction: column; gap: 12px; }
  .med-grid { grid-template-columns: 1fr; }
  .med-visual { order: -1; }
  .site-cta .btn-get-started { width: 100%; max-width: 360px; }
  .hero-cta .btn-ghost { width: 100%; max-width: 360px; }
}

/* ---- Healthy aging score: age step ---------------------------------------- */
.flow-age {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}
.flow-age-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--ink-muted);
}
.flow-age-input {
  width: 100%;
  padding: 16px 0 12px;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
  font-family: var(--font);
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
  transition: border-color 200ms var(--ease);
}
.flow-age-input:focus {
  outline: none;
  border-bottom-color: var(--accent);
  box-shadow: none;
}
.flow-age-readout {
  margin: 12px 0 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: none;
  color: var(--ink-muted);
  font-size: 0.875rem;
  line-height: 1.5;
}
.flow-age-readout strong { color: var(--accent); }
.flow-age-band,
.flow-age-readout .flow-age-band {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* ---- Healthy aging score: result ------------------------------------------ */
.score-result {
  text-align: center;
}

.score-meter {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin: 0 0 20px;
}
.score-meter-seg {
  padding: 10px 8px;
  border-radius: 10px;
  background: var(--surface-muted);
  border: 1px solid var(--line);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink-faint);
  transition: all 200ms var(--ease);
}
.score-meter-seg.is-active.seg-low {
  background: var(--accent-soft);
  border-color: var(--ink);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(17, 17, 17, 0.08);
}
.score-meter-seg.is-active.seg-medium {
  background: #fff0ea;
  border-color: #ff815f;
  color: #b94e31;
  box-shadow: 0 4px 14px rgba(255, 129, 95, 0.22);
}
.score-meter-seg.is-active.seg-high {
  background: #fff0ea;
  border-color: #d94b3d;
  color: #a8372e;
  box-shadow: 0 4px 14px rgba(217, 75, 61, 0.2);
}

.score-headline {
  font-size: clamp(1.375rem, 4vw, 1.625rem) !important;
  margin: 0 0 10px !important;
  line-height: 1.25 !important;
}

.score-detail {
  margin: 0 0 20px;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

.score-next {
  margin: 0 0 24px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--ink);
}

.score-result-low .score-next { color: #0f4593; }
.score-result-medium .score-next { color: #b94e31; }
.score-result-high .score-next { color: #a8372e; }

.score-result .btn-block {
  max-width: 280px;
  margin: 0 auto;
}

.score-reassure {
  margin: 16px 0 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--ink-muted);
}

.score-result a.btn,
.score-result button[data-flow-goto].btn {
  color: #fff;
  background: var(--accent);
  border-color: var(--accent);
  text-decoration: none;
}
.score-result a.btn:hover,
.score-result button[data-flow-goto].btn:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  opacity: 1;
}

/* Young-cat caveat on medium/high results */
.score-young-note {
  margin: -8px 0 20px;
  padding: 12px 14px;
  border-left: 3px solid var(--accent-warm);
  background: var(--surface-muted);
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--ink-soft);
}

/* Prevention habits block on low-risk results */
.score-prevention {
  margin: 24px 0 4px;
  padding: 18px 18px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--bg);
}
.score-focus-prevention .score-prevention {
  border-color: rgba(21, 89, 183, 0.35);
  background: #f3f7f0;
}
.score-prevention-label {
  margin: 0 0 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--status-stable);
}
.score-prevention-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.score-prevention-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.score-prevention-item:last-child {
  border-bottom: none;
}
.score-prevention-habit {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}
.score-prevention-habit::before {
  content: "✓ ";
  color: var(--status-stable);
  font-weight: 700;
}
.score-prevention-why {
  font-size: 0.85rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.score-recap { margin-top: 24px; }
.score-recap-list {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.score-recap-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 14px;
  border-radius: 10px;
  background: var(--bg);
  border: 1px solid var(--line);
}
.score-recap-q {
  font-size: 0.9rem;
  color: var(--ink-muted);
}
.score-recap-a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  text-align: right;
}

/* During-quiz trust + stories */
.flow-trust-strip {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 28px 0 0;
  padding: 12px 14px;
  border-radius: 12px;
  background: var(--surface-muted);
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--ink-muted);
}

.flow-trust-dot {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--status-stable);
}

.flow-story {
  margin-top: 28px;
  padding: 16px 18px;
  border-radius: 16px;
  background: var(--bg);
  border: 1px solid var(--line);
}

.flow-story-compact {
  margin-top: 32px;
}

.flow-story-result {
  margin: 20px 0 24px;
  background: var(--surface-muted);
}

.flow-story-label {
  margin: 0 0 10px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.flow-story-ba {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  line-height: 1.4;
}

.flow-story-before {
  color: var(--ink-muted);
}

.flow-story-arrow {
  color: var(--ink-faint);
  font-weight: 600;
}

.flow-story-after {
  font-weight: 600;
  color: var(--status-stable);
}

.flow-story-quote {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  font-style: italic;
  color: var(--ink-soft);
}

.flow-story-result .flow-story-quote {
  font-size: 0.9375rem;
}

.flow-story-cite {
  display: block;
  margin: 10px 0 0;
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 600;
  color: var(--ink-muted);
}

/* Result CTA — explicit trust copy */
.score-meter-caption {
  margin: -14px 0 20px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.score-result-low .score-meter-caption { color: #0f4593; }
.score-result-medium .score-meter-caption { color: #b94e31; }
.score-result-high .score-meter-caption { color: #a8372e; }

.score-meter-seg {
  padding: 10px 6px;
  font-size: 0.72rem;
  line-height: 1.2;
}

.score-cta-box {
  margin: 24px 0;
  padding: 20px 18px;
  border-radius: var(--radius-md);
  background: var(--surface-muted);
  border: 1px solid var(--line);
}

.score-cta-box .score-action-label {
  margin: 0 0 6px;
}

.score-cta-box .score-action-value {
  margin: 0 0 16px;
}

.score-cta-box .btn {
  margin-bottom: 12px;
}

.score-cta-trust {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: var(--ink-muted);
}

/* Young-cat prevention result + community CTAs */
.score-result-prevention .score-prevention-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  margin: 0 0 20px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: #f3f7f0;
  border: 1px solid rgba(21, 89, 183, 0.22);
  text-align: center;
}

.score-prevention-badge-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--status-stable);
}

.score-prevention-badge-sub {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
}

.score-community-box {
  margin-top: 8px;
}

.flow-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 4px;
}

.flow-newsletter-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--surface);
}

.flow-newsletter-input:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-color: var(--accent);
}

.flow-newsletter-trust {
  margin-top: 0;
}

.flow-newsletter-success {
  margin: 0 0 12px;
  padding: 12px 14px;
  border-radius: 10px;
  background: #f3f7f0;
  border: 1px solid rgba(21, 89, 183, 0.22);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--status-stable);
  text-align: center;
}

.score-cta-divider {
  margin: 18px 0 14px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.score-community-box .btn-outline {
  color: var(--ink);
  background: var(--surface);
  border-color: var(--line);
}

.score-community-box .btn-outline:hover {
  border-color: var(--accent);
  color: var(--ink);
}

/* Phone gate — unlock result */
.whatsapp-gate {
  padding: 0;
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.gate-result-preview {
  position: relative;
  margin-bottom: 24px;
  padding: 20px 16px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, #fff 0%, var(--accent-soft) 100%);
  border: 1px solid var(--line);
  overflow: hidden;
}

.gate-result-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(5px);
  background: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

.gate-result-preview-label,
.gate-result-preview-blur {
  position: relative;
  z-index: 1;
  margin: 0;
}

.gate-result-preview-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.gate-result-preview-meter,
.gate-result-preview-tier {
  position: relative;
  z-index: 1;
}

.gate-result-preview-blur {
  margin-top: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}

.whatsapp-gate-trust {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 12px;
}

.whatsapp-gate-trust li {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.whatsapp-gate-trust li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 700;
}

.whatsapp-gate-title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 4vw, 1.5rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--ink);
}

.whatsapp-gate-lead {
  margin: 0 0 28px;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: var(--ink-soft);
}

.whatsapp-gate-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.whatsapp-gate-label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-muted);
}

.whatsapp-gate-input-wrap {
  display: flex;
  align-items: center;
  border: 2px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  overflow: hidden;
  transition: border-color 200ms var(--ease);
}

.whatsapp-gate-input-wrap:focus-within {
  border-color: var(--accent);
}

.whatsapp-gate-prefix {
  flex-shrink: 0;
  padding: 14px 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ink-muted);
  background: var(--bg);
  border-right: 1px solid var(--line);
}

.whatsapp-gate-input {
  flex: 1;
  padding: 14px 14px;
  border: none;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: transparent;
}

.whatsapp-gate-input:focus {
  outline: none;
}

.whatsapp-gate-input.error {
  animation: shake 200ms var(--ease);
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-4px); }
  75% { transform: translateX(4px); }
}

.whatsapp-gate-hint {
  margin: 4px 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-faint);
}

.whatsapp-gate-privacy {
  margin: 12px 0 0;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.45;
  color: var(--ink-faint);
}
