:root {
  --fp-ink: #102844;
  --fp-ink-soft: #3d5572;
  --fp-muted: #667991;
  --fp-teal: #2475e8;
  --fp-teal-dark: #1558b7;
  --fp-teal-pale: #eaf2ff;
  --fp-mint: #cfe2ff;
  --fp-lime: #d9e8ff;
  --fp-blue: #2475e8;
  --fp-blue-pale: #eaf2ff;
  --fp-orange: #f27a3d;
  --fp-orange-pale: #fff0e7;
  --fp-red: #b84343;
  --fp-paper: #f7faff;
  --fp-white: #ffffff;
  --fp-line: #dbe6f3;
  --fp-line-strong: #bdcfe4;
  --fp-surface: #f7faff;
  --fp-radius-sm: 14px;
  --fp-radius: 22px;
  --fp-radius-lg: 34px;
  --fp-shell: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--fp-paper);
  color: var(--fp-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

body.menu-open { overflow: hidden; }

img, svg { display: block; max-width: 100%; }

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

button, input, select, textarea { font: inherit; }

button { color: inherit; }

:focus-visible {
  outline: 3px solid rgba(37, 99, 235, 0.45);
  outline-offset: 3px;
}

.skip-link {
  background: var(--fp-ink);
  border-radius: 0 0 10px 10px;
  color: white;
  left: 16px;
  padding: 10px 14px;
  position: fixed;
  top: -80px;
  z-index: 1000;
}

.skip-link:focus { top: 0; }

.visually-hidden {
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.display-heading {
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  letter-spacing: -0.045em;
  line-height: 1.04;
  margin: 0;
  max-width: 780px;
}

.muted-on-dark {
  color: rgba(255, 255, 255, 0.68);
  max-width: 700px;
}

.site-shell { width: var(--fp-shell); margin-inline: auto; }

.site-header {
  background: rgba(247, 250, 255, 0.94);
  border-bottom: 1px solid rgba(189, 207, 228, 0.78);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(18px);
}

.header-inner {
  align-items: center;
  display: flex;
  height: 76px;
  justify-content: space-between;
  gap: 24px;
}

.site-brand {
  align-items: center;
  display: inline-flex;
  flex: 0 0 auto;
}

.site-brand img { height: 38px; width: auto; }

.desktop-nav {
  align-items: center;
  display: flex;
  gap: 6px;
}

.desktop-nav > a,
.nav-menu-button {
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--fp-ink-soft);
  cursor: pointer;
  font-size: 0.88rem;
  font-weight: 700;
  padding: 10px 13px;
}

.desktop-nav > a:hover,
.desktop-nav > a[aria-current="page"] { background: var(--fp-teal-pale); color: var(--fp-teal-dark); }

.desktop-nav .nav-download { background: var(--fp-teal-dark); color: white; padding-inline: 18px; }
.desktop-nav .nav-download:hover { background: #0f478f; color: white; }

.nav-menu-button {
  align-items: center;
  display: none;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

.nav-menu-button svg { height: 23px; width: 23px; }
.nav-menu-button[aria-expanded="true"] svg { display: none; }
.nav-menu-button[aria-expanded="true"]::before { content: "×"; font-size: 1.85rem; font-weight: 500; line-height: 1; }

.mobile-nav {
  align-content: start;
  background: var(--fp-paper);
  border-top: 1px solid var(--fp-line);
  display: none;
  height: calc(100vh - 76px);
  inset: 100% 0 auto;
  overflow-y: auto;
  padding: 16px 20px 22px;
  position: absolute;
  z-index: 99;
}

.mobile-nav.open { display: grid; }
.mobile-nav a { border-bottom: 1px solid var(--fp-line); font-weight: 750; padding: 13px 4px; }
.mobile-nav a:last-child { border: 0; }

.icon {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 22px;
}

.eyebrow {
  align-items: center;
  color: var(--fp-teal-dark);
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 850;
  gap: 9px;
  letter-spacing: 0.11em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.eyebrow-dot {
  background: var(--fp-teal);
  border-radius: 50%;
  height: 8px;
  width: 8px;
}

.hero {
  background:
    radial-gradient(circle at 8% 8%, rgba(207, 226, 255, 0.72), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 100%);
  border-bottom: 1px solid var(--fp-line);
  overflow: hidden;
  padding: clamp(44px, 6vw, 82px) 0 48px;
}

.hero-grid {
  align-items: center;
  display: grid;
  gap: clamp(34px, 5vw, 72px);
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
}

.hero-copy-block { max-width: 620px; }

.hero h1,
.page-hero h1 {
  font-size: clamp(2.75rem, 5.3vw, 5.25rem);
  font-weight: 830;
  letter-spacing: -0.058em;
  line-height: 0.98;
  margin: 0;
}

.hero h1 span,
.page-hero h1 span { color: var(--fp-teal); }

.hero-lead,
.page-lead {
  color: var(--fp-ink-soft);
  font-size: clamp(1.03rem, 1.35vw, 1.2rem);
  line-height: 1.7;
  margin: 24px 0 0;
  max-width: 660px;
}

.hero-actions,
.button-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 0.92rem;
  font-weight: 800;
  gap: 10px;
  justify-content: center;
  min-height: 50px;
  padding: 0 21px;
  transition: background-color 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--fp-teal-dark); color: white; }
.button-primary:hover { background: #0f478f; }
.button-secondary { background: white; border-color: var(--fp-line-strong); color: var(--fp-ink); }
.button-secondary:hover { border-color: var(--fp-teal); color: var(--fp-teal-dark); }
.button-light { background: white; color: var(--fp-teal-dark); }
.button-quiet { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.28); color: white; }
.button .icon { height: 19px; width: 19px; }

.hero-proof {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 36px;
}

.proof-item {
  border-left: 2px solid var(--fp-teal);
  padding-left: 12px;
}

.proof-item strong { display: block; font-size: 1rem; }
.proof-item span { color: var(--fp-muted); display: block; font-size: 0.78rem; line-height: 1.45; margin-top: 2px; }

.hero-visual { min-height: 520px; position: relative; }

.hero-photo {
  border: 1px solid var(--fp-line-strong);
  border-radius: var(--fp-radius-lg);
  height: 520px;
  object-fit: cover;
  object-position: 62% center;
  width: 100%;
}

.live-card {
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--fp-line-strong);
  border-radius: 20px;
  bottom: 22px;
  left: 22px;
  max-width: 310px;
  padding: 16px;
  position: absolute;
}

.live-card-head { align-items: center; display: flex; gap: 12px; }
.live-avatar { align-items: center; background: var(--fp-teal-pale); border-radius: 14px; color: var(--fp-teal-dark); display: flex; flex: 0 0 auto; height: 48px; justify-content: center; width: 48px; }
.live-avatar .icon { height: 25px; width: 25px; }
.live-card h2 { font-size: 1rem; line-height: 1.3; margin: 0; }
.live-card p { color: var(--fp-muted); font-size: 0.8rem; margin: 2px 0 0; }
.status-pill { align-items: center; background: var(--fp-teal-pale); border-radius: 999px; color: var(--fp-teal-dark); display: inline-flex; font-size: 0.72rem; font-weight: 850; gap: 7px; margin-top: 13px; padding: 7px 10px; }
.status-pill::before { background: var(--fp-teal); border-radius: 50%; content: ""; height: 7px; width: 7px; }

.category-band { background: white; border-bottom: 1px solid var(--fp-line); padding: 20px 0; }
.category-list { display: grid; gap: 10px; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.category-item { align-items: center; border: 1px solid var(--fp-line); border-radius: 16px; display: flex; gap: 9px; min-height: 58px; padding: 10px 12px; }
.category-item .icon { color: var(--fp-teal); flex: 0 0 auto; height: 20px; width: 20px; }
.category-item span { font-size: 0.78rem; font-weight: 760; line-height: 1.3; }

.section { padding: clamp(72px, 8vw, 112px) 0; }
.section-compact { padding: clamp(48px, 6vw, 78px) 0; }
.section-tint { --fp-surface: #eef4ff; background: #eef4ff; border-block: 1px solid var(--fp-line); }
.section-dark { --fp-surface: var(--fp-ink); background: var(--fp-ink); color: white; }

.section-heading {
  align-items: end;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.6fr);
  margin-bottom: 38px;
}

.section-heading.single { display: block; max-width: 760px; }
.section-heading h2 { font-size: clamp(2.1rem, 4vw, 3.8rem); letter-spacing: -0.045em; line-height: 1.05; margin: 0; }
.section-heading p { color: var(--fp-muted); margin: 0; }
.section-dark .section-heading p { color: rgba(255, 255, 255, 0.68); }
.section-dark .eyebrow { color: var(--fp-mint); }

.journey-tabs { border-bottom: 1px solid var(--fp-line-strong); display: flex; gap: 8px; margin-bottom: 24px; }
.journey-tab {
  align-items: center;
  background: transparent;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--fp-muted);
  cursor: pointer;
  display: inline-flex;
  font-weight: 820;
  gap: 9px;
  padding: 13px 16px 12px;
}
.journey-tab[aria-selected="true"] { border-bottom-color: var(--fp-teal); color: var(--fp-teal-dark); }
.journey-tab .icon { height: 20px; width: 20px; }
.journey-panel[hidden] { display: none; }

.journey-layout {
  display: grid;
  gap: 22px;
  grid-template-columns: minmax(0, 1.55fr) minmax(290px, 0.62fr);
}

.journey-steps {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.journey-step {
  background: white;
  border: 1px solid var(--fp-line);
  border-radius: var(--fp-radius);
  min-height: 205px;
  padding: 20px;
  position: relative;
}

.journey-step::after {
  color: var(--fp-line-strong);
  content: "→";
  font-size: 1.4rem;
  position: absolute;
  right: -20px;
  top: 48%;
  z-index: 2;
}

.journey-step:nth-child(3n)::after,
.journey-step:last-child::after { display: none; }

.step-top { align-items: center; display: flex; justify-content: space-between; }
.step-number { color: var(--fp-muted); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; }
.step-icon { align-items: center; background: var(--fp-teal-pale); border-radius: 12px; color: var(--fp-teal-dark); display: flex; height: 42px; justify-content: center; width: 42px; }
.step-icon .icon { height: 22px; width: 22px; }
.journey-step h3 { font-size: 1.03rem; line-height: 1.3; margin: 22px 0 7px; }
.journey-step p { color: var(--fp-muted); font-size: 0.84rem; line-height: 1.55; margin: 0; }
.reaction { border-top: 1px solid var(--fp-line); color: var(--fp-teal-dark); display: block; font-size: 0.73rem; font-weight: 820; margin-top: 15px; padding-top: 11px; }

.journey-preview {
  background: var(--fp-ink);
  border-radius: var(--fp-radius);
  color: white;
  display: flex;
  flex-direction: column;
  min-height: 422px;
  overflow: hidden;
  padding: 22px;
}
.preview-label { color: var(--fp-mint); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.12em; text-transform: uppercase; }
.journey-preview h3 { font-size: 1.55rem; line-height: 1.15; margin: 10px 0 0; }
.preview-card { background: white; border-radius: 18px; color: var(--fp-ink); margin-top: 24px; padding: 16px; }
.preview-card-top { align-items: center; display: flex; gap: 11px; }
.preview-avatar { align-items: center; background: var(--fp-teal-pale); border-radius: 13px; color: var(--fp-teal-dark); display: flex; height: 44px; justify-content: center; width: 44px; }
.preview-avatar .icon { height: 23px; width: 23px; }
.preview-card strong { display: block; font-size: 0.9rem; }
.preview-card small { color: var(--fp-muted); display: block; font-size: 0.72rem; }
.preview-line { align-items: center; border-top: 1px solid var(--fp-line); display: flex; font-size: 0.78rem; justify-content: space-between; margin-top: 12px; padding-top: 12px; }
.preview-line span:last-child { color: var(--fp-teal-dark); font-weight: 820; }
.preview-action { background: var(--fp-lime); border-radius: 999px; color: var(--fp-ink); font-size: 0.82rem; font-weight: 850; margin-top: auto; padding: 12px 14px; text-align: center; }
.preview-note { color: rgba(255, 255, 255, 0.62); font-size: 0.75rem; margin: 12px 0 0; }

.flow-map { display: grid; gap: 13px; }
.flow-lane { align-items: stretch; display: grid; gap: 8px; grid-template-columns: 160px repeat(6, minmax(0, 1fr)); }
.lane-title { align-items: center; border-radius: 14px; display: flex; font-size: 0.8rem; font-weight: 850; gap: 9px; padding: 14px; }
.lane-title.customer { background: var(--fp-blue-pale); color: var(--fp-teal-dark); }
.lane-title.provider { background: var(--fp-teal-pale); color: var(--fp-teal-dark); }
.lane-title .icon { height: 19px; width: 19px; }
.flow-node { align-items: center; background: white; border: 1px solid var(--fp-line); border-radius: 14px; display: flex; font-size: 0.75rem; font-weight: 760; justify-content: center; min-height: 58px; padding: 9px; position: relative; text-align: center; }
.flow-node::after { color: var(--fp-line-strong); content: "›"; font-size: 1.25rem; position: absolute; right: -8px; z-index: 2; }
.flow-node:last-child::after { display: none; }

.feature-grid { display: grid; gap: 16px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { background: white; border: 1px solid var(--fp-line); border-radius: var(--fp-radius); min-height: 250px; padding: 22px; }
.feature-card.accent { background: var(--fp-teal); border-color: var(--fp-teal); color: white; }
.feature-card.orange { background: var(--fp-orange-pale); border-color: #ffd4bd; }
.feature-card.blue { background: var(--fp-blue-pale); border-color: #ccdcff; }
.feature-icon { align-items: center; background: var(--fp-teal-pale); border-radius: 14px; color: var(--fp-teal-dark); display: flex; height: 48px; justify-content: center; width: 48px; }
.feature-card.accent .feature-icon { background: rgba(255, 255, 255, 0.15); color: white; }
.feature-card.orange .feature-icon { background: white; color: var(--fp-orange); }
.feature-card.blue .feature-icon { background: white; color: var(--fp-blue); }
.feature-card h3 { font-size: 1.2rem; line-height: 1.3; margin: 24px 0 9px; }
.feature-card p { color: var(--fp-muted); font-size: 0.88rem; margin: 0; }
.feature-card.accent p { color: rgba(255, 255, 255, 0.74); }
.feature-link { color: var(--fp-teal-dark); display: inline-flex; font-size: 0.82rem; font-weight: 850; margin-top: 18px; }
.feature-card.accent .feature-link { color: white; }

.readiness-grid,
.visit-grid,
.page-split {
  align-items: center;
  display: grid;
  gap: clamp(30px, 6vw, 86px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.work-hours-card {
  background: white;
  border: 1px solid var(--fp-line-strong);
  border-radius: 28px;
  color: var(--fp-ink);
  padding: 22px;
}
.work-hours-top { align-items: center; display: flex; justify-content: space-between; }
.work-hours-top strong { font-size: 1rem; }
.duty-toggle { align-items: center; background: var(--fp-teal-pale); border-radius: 999px; color: var(--fp-teal-dark); display: inline-flex; font-size: 0.75rem; font-weight: 850; gap: 8px; padding: 8px 11px; }
.duty-toggle::before { background: var(--fp-teal); border-radius: 50%; content: ""; height: 8px; width: 8px; }
.week-row { display: grid; gap: 7px; grid-template-columns: repeat(7, 1fr); margin: 20px 0; }
.day-chip { align-items: center; background: #f1f5fb; border-radius: 12px; color: var(--fp-muted); display: flex; font-size: 0.7rem; font-weight: 780; height: 42px; justify-content: center; }
.day-chip.active { background: var(--fp-teal); color: white; }
.work-window { align-items: center; border-block: 1px solid var(--fp-line); display: flex; justify-content: space-between; padding: 14px 0; }
.work-window span { color: var(--fp-muted); font-size: 0.8rem; }
.work-window strong { font-size: 0.88rem; }
.ready-banner { align-items: center; background: var(--fp-lime); border-radius: 16px; color: var(--fp-ink); display: flex; gap: 11px; margin-top: 16px; padding: 14px; }
.ready-banner .icon { color: var(--fp-teal); flex: 0 0 auto; }
.ready-banner strong { display: block; font-size: 0.92rem; }
.ready-banner span { display: block; font-size: 0.72rem; margin-top: 1px; }

.gate-list { display: grid; gap: 10px; margin-top: 24px; }
.gate-row { align-items: center; background: white; border: 1px solid var(--fp-line); border-radius: 14px; display: flex; gap: 11px; padding: 12px 14px; }
.gate-row .icon { color: var(--fp-teal); flex: 0 0 auto; height: 20px; width: 20px; }
.gate-row span { color: var(--fp-ink-soft); font-size: 0.84rem; }

.trust-board { background: #0d315f; border-radius: var(--fp-radius-lg); color: white; overflow: hidden; padding: clamp(28px, 5vw, 54px); }
.trust-grid { display: grid; gap: 12px; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-top: 28px; }
.trust-signal { background: rgba(255, 255, 255, 0.07); border: 1px solid rgba(255, 255, 255, 0.12); border-radius: 16px; min-height: 120px; padding: 15px; }
.trust-signal .icon { color: var(--fp-mint); height: 22px; width: 22px; }
.trust-signal strong { display: block; font-size: 0.86rem; margin-top: 20px; }
.trust-signal span { color: rgba(255, 255, 255, 0.62); display: block; font-size: 0.72rem; margin-top: 4px; }
.membership-row { align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.14); display: grid; gap: 20px; grid-template-columns: 1fr auto; margin-top: 28px; padding-top: 24px; }
.membership-row p { color: rgba(255, 255, 255, 0.66); margin: 5px 0 0; }
.membership-badge { background: var(--fp-lime); border-radius: 999px; color: var(--fp-ink); font-size: 0.78rem; font-weight: 850; padding: 10px 14px; }

.visit-preview { background: white; border: 1px solid var(--fp-line-strong); border-radius: 28px; padding: 22px; }
.visit-head { align-items: center; display: flex; gap: 13px; }
.visit-family { align-items: center; background: var(--fp-blue-pale); border-radius: 15px; color: var(--fp-blue); display: flex; height: 52px; justify-content: center; width: 52px; }
.visit-family .icon { height: 26px; width: 26px; }
.visit-head h3 { font-size: 1rem; margin: 0; }
.visit-head p { color: var(--fp-muted); font-size: 0.76rem; margin: 2px 0 0; }
.visit-timeline { display: grid; gap: 0; margin-top: 22px; }
.visit-event { display: grid; gap: 12px; grid-template-columns: 22px 1fr; min-height: 62px; }
.visit-event-marker { align-items: center; display: flex; flex-direction: column; }
.visit-event-marker::before { background: var(--fp-teal); border: 4px solid var(--fp-teal-pale); border-radius: 50%; content: ""; height: 16px; width: 16px; }
.visit-event:not(:last-child) .visit-event-marker::after { background: var(--fp-line-strong); content: ""; flex: 1; width: 1px; }
.visit-event strong { display: block; font-size: 0.82rem; }
.visit-event span { color: var(--fp-muted); display: block; font-size: 0.72rem; margin-top: 1px; }
.privacy-note { align-items: center; background: var(--fp-teal-pale); border-radius: 14px; color: var(--fp-teal-dark); display: flex; font-size: 0.75rem; font-weight: 760; gap: 9px; padding: 12px; }
.privacy-note .icon { flex: 0 0 auto; height: 19px; width: 19px; }

.pricing-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.pricing-card { background: white; border: 1px solid var(--fp-line); border-radius: var(--fp-radius); padding: 22px; }
.pricing-card .mode { color: var(--fp-teal-dark); font-size: 0.72rem; font-weight: 850; letter-spacing: 0.1em; text-transform: uppercase; }
.pricing-card h3 { font-size: 1.2rem; margin: 14px 0 8px; }
.pricing-card p { color: var(--fp-muted); font-size: 0.84rem; margin: 0; }
.pricing-example { border-top: 1px solid var(--fp-line); display: grid; gap: 8px; margin-top: 18px; padding-top: 16px; }
.pricing-line { align-items: center; display: flex; font-size: 0.78rem; justify-content: space-between; }
.pricing-line span:last-child { font-weight: 820; }
.pricing-total { border-top: 1px dashed var(--fp-line-strong); font-size: 0.86rem; margin-top: 3px; padding-top: 9px; }

.app-grid { display: grid; gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.app-card { background: white; border: 1px solid var(--fp-line); border-radius: 28px; display: grid; gap: 22px; grid-template-columns: auto 1fr; padding: 24px; }
.app-card.provider { background: #eff5ff; border-color: var(--fp-line-strong); }
.app-icon { border-radius: 20px; height: 78px; width: 78px; }
.app-card h3 { font-size: 1.35rem; margin: 0; }
.app-card p { color: var(--fp-muted); font-size: 0.84rem; margin: 7px 0 0; }
.app-actions { display: flex; flex-wrap: wrap; gap: 10px; grid-column: 1 / -1; }
.store-button { align-items: center; background: var(--fp-teal-dark); border-radius: 14px; color: white; display: inline-flex; font-size: 0.8rem; font-weight: 800; gap: 9px; min-height: 46px; padding: 0 15px; }
.store-button:hover { background: #0f478f; }
.store-button .icon { height: 19px; width: 19px; }
.store-button.disabled { background: #e9eeee; color: var(--fp-muted); cursor: default; }

.site-cta { background: var(--fp-teal); border-radius: var(--fp-radius-lg); color: white; display: grid; gap: 28px; grid-template-columns: 1fr auto; padding: clamp(28px, 5vw, 52px); }
.site-cta h2 { font-size: clamp(2rem, 4vw, 3.8rem); letter-spacing: -0.045em; line-height: 1.04; margin: 0; }
.site-cta p { color: rgba(255, 255, 255, 0.75); margin: 13px 0 0; max-width: 660px; }
.site-cta .button-row { align-self: center; justify-content: flex-end; margin: 0; }

.site-footer { background: #091f3b; color: white; margin-top: 80px; padding: 52px 0 26px; }
.footer-grid { display: grid; gap: 44px; grid-template-columns: 1.2fr repeat(3, 0.55fr); }
.footer-brand img { filter: none; height: 40px; width: auto; }
.footer-brand p { color: rgba(255, 255, 255, 0.57); font-size: 0.82rem; margin: 15px 0 0; max-width: 330px; }
.footer-column strong { display: block; font-size: 0.82rem; margin-bottom: 12px; }
.footer-column a { color: rgba(255, 255, 255, 0.6); display: block; font-size: 0.78rem; padding: 5px 0; }
.footer-column a:hover { color: white; }
.footer-bottom { align-items: center; border-top: 1px solid rgba(255, 255, 255, 0.1); color: rgba(255, 255, 255, 0.46); display: flex; font-size: 0.72rem; justify-content: space-between; margin-top: 38px; padding-top: 22px; }

.page-hero { background: linear-gradient(135deg, #eaf2ff 0%, #f8fbff 56%, #edf4ff 100%); border-bottom: 1px solid var(--fp-line); padding: clamp(58px, 8vw, 104px) 0; }
.page-hero-grid { align-items: center; display: grid; gap: 56px; grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.62fr); }
.page-hero-card { background: white; border: 1px solid var(--fp-line-strong); border-radius: 28px; padding: 24px; }
.page-hero-card .big-icon { align-items: center; background: var(--fp-teal-pale); border-radius: 18px; color: var(--fp-teal-dark); display: flex; height: 62px; justify-content: center; width: 62px; }
.page-hero-card .big-icon .icon { height: 31px; width: 31px; }
.page-hero-card h2 { font-size: 1.25rem; margin: 22px 0 8px; }
.page-hero-card p { color: var(--fp-muted); font-size: 0.86rem; margin: 0; }
.page-nav { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 26px; }
.page-nav a { background: white; border: 1px solid var(--fp-line); border-radius: 999px; color: var(--fp-ink-soft); font-size: 0.76rem; font-weight: 760; padding: 8px 11px; }

.detail-list { display: grid; gap: 13px; }
.detail-row { background: white; border: 1px solid var(--fp-line); border-radius: 18px; display: grid; gap: 14px; grid-template-columns: auto 1fr; padding: 17px; }
.detail-index { align-items: center; background: var(--fp-teal-pale); border-radius: 12px; color: var(--fp-teal-dark); display: flex; font-size: 0.74rem; font-weight: 850; height: 38px; justify-content: center; width: 38px; }
.detail-row h3 { font-size: 1rem; margin: 0; }
.detail-row p { color: var(--fp-muted); font-size: 0.82rem; margin: 4px 0 0; }
.callout { background: var(--fp-teal-pale); border-left: 3px solid var(--fp-teal); border-radius: 0 15px 15px 0; color: var(--fp-teal-dark); margin-top: 22px; padding: 16px 18px; }

/* Plain-language explanation patterns shared by the public help pages. */
.explain-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.explain-card { background: white; border: 1px solid var(--fp-line); border-radius: var(--fp-radius); padding: 22px; }
.explain-card.tint { background: var(--fp-teal-pale); border-color: var(--fp-line-strong); }
.explain-card.blue { background: var(--fp-blue-pale); border-color: #ccdcff; }
.explain-card.orange { background: var(--fp-orange-pale); border-color: #ffd4bd; }
.explain-card h3 { font-size: 1.12rem; margin: 0 0 8px; }
.explain-card > p { color: var(--fp-muted); font-size: .86rem; margin: 0; }
.mini-checks { display: grid; gap: 9px; list-style: none; margin: 18px 0 0; padding: 0; }
.mini-checks li { align-items: start; color: var(--fp-ink-soft); display: grid; font-size: .82rem; gap: 9px; grid-template-columns: 20px 1fr; }
.mini-checks li::before { align-items: center; background: var(--fp-teal); border-radius: 50%; color: white; content: "✓"; display: inline-flex; font-size: .66rem; font-weight: 900; height: 18px; justify-content: center; margin-top: 1px; width: 18px; }

.step-strip { display: grid; gap: 12px; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); margin-top: 28px; }
.step-chip { background: white; border: 1px solid var(--fp-line); border-radius: 18px; min-height: 150px; padding: 18px; position: relative; }
.step-chip:not(:last-child)::after { align-items: center; background: var(--fp-teal); border: 4px solid var(--fp-surface); border-radius: 50%; color: white; content: "›"; display: flex; font-size: 1.05rem; height: 28px; justify-content: center; position: absolute; right: -20px; top: 25px; width: 28px; z-index: 2; }
.step-chip .step-tag { color: var(--fp-teal-dark); display: block; font-size: .7rem; font-weight: 900; letter-spacing: .08em; margin-bottom: 16px; text-transform: uppercase; }
.step-chip strong { display: block; font-size: .94rem; }
.step-chip p { color: var(--fp-muted); font-size: .78rem; margin: 7px 0 0; }

.tier-path { display: grid; gap: 10px; grid-template-columns: repeat(5, minmax(0, 1fr)); margin-top: 26px; }
.tier-card { align-items: center; background: white; border: 1px solid var(--fp-line); border-radius: 18px; display: flex; flex-direction: column; min-height: 130px; padding: 18px 12px; text-align: center; }
.tier-card::before { background: var(--tier-color, #dce5e3); border: 6px solid color-mix(in srgb, var(--tier-color, #dce5e3) 22%, white); border-radius: 50%; content: ""; height: 28px; margin-bottom: 14px; width: 28px; }
.tier-card strong { font-size: .9rem; }
.tier-card span { color: var(--fp-muted); font-size: .7rem; margin-top: 4px; }
.tier-card.newbie { --tier-color: #aab5b3; }
.tier-card.bronze { --tier-color: #b56f3a; }
.tier-card.silver { --tier-color: #8fa3ad; }
.tier-card.gold { --tier-color: #e2ad1f; }
.tier-card.platinum { --tier-color: #4fa9aa; }

.support-grid { display: grid; gap: 15px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
.support-card { background: white; border: 1px solid var(--fp-line); border-radius: 20px; padding: 20px; }
.support-card .support-icon { align-items: center; background: var(--fp-teal-pale); border-radius: 13px; color: var(--fp-teal-dark); display: flex; height: 42px; justify-content: center; width: 42px; }
.support-card .support-icon .icon { height: 21px; width: 21px; }
.support-card h3 { font-size: 1rem; margin: 18px 0 7px; }
.support-card p { color: var(--fp-muted); font-size: .8rem; margin: 0; }
.support-card a { color: var(--fp-teal-dark); display: inline-flex; font-size: .78rem; font-weight: 850; margin-top: 14px; }

.decision-path { display: grid; gap: 12px; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 24px; }
.decision-node { background: white; border: 1px solid var(--fp-line); border-radius: 18px; min-height: 130px; padding: 18px; position: relative; }
.decision-node:not(:last-child)::after { color: var(--fp-teal); content: "→"; font-size: 1.2rem; font-weight: 900; position: absolute; right: -20px; top: 48%; z-index: 2; }
.decision-node strong { display: block; font-size: .92rem; }
.decision-node p { color: var(--fp-muted); font-size: .78rem; margin: 7px 0 0; }
.plain-note { background: #fff8ed; border: 1px solid #ffd9ad; border-radius: 16px; color: #74431e; font-size: .82rem; margin-top: 20px; padding: 14px 16px; }

.error-page { align-items: center; background: linear-gradient(145deg, #eaf2ff, #f7faff); display: flex; min-height: calc(100vh - 76px); padding: 60px 0; }
.error-card { background: white; border: 1px solid var(--fp-line-strong); border-radius: 32px; margin: 0 auto; max-width: 700px; padding: clamp(30px, 7vw, 70px); text-align: center; }
.error-code { color: var(--fp-teal); font-size: clamp(4.5rem, 13vw, 9rem); font-weight: 900; letter-spacing: -0.08em; line-height: 0.8; }
.error-card h1 { font-size: clamp(1.8rem, 4vw, 3rem); margin: 28px 0 10px; }
.error-card p { color: var(--fp-muted); margin: 0 auto; max-width: 520px; }
.error-card .button-row { justify-content: center; }

@media (max-width: 1040px) {
  .desktop-nav > a:not(.nav-download) { display: none; }
  .nav-menu-button { display: inline-flex; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-copy-block { max-width: 760px; }
  .hero-visual { min-height: 470px; }
  .hero-photo { height: 470px; }
  .category-list { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .section-heading { grid-template-columns: 1fr; }
  .journey-layout { grid-template-columns: 1fr; }
  .journey-preview { min-height: 340px; }
  .flow-lane { grid-template-columns: repeat(3, 1fr); }
  .lane-title { grid-column: 1 / -1; }
  .flow-node:nth-child(4)::after { display: none; }
  .footer-grid { grid-template-columns: 1fr repeat(3, 0.7fr); }
}

@media (max-width: 920px) {
  .step-strip { grid-template-columns: 1fr; }
  .step-chip { min-height: 0; }
  .step-strip .step-chip:not(:last-child)::after { bottom: -21px; display: flex; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .step-strip .step-chip:last-child::after { display: none; }
}

@media (max-width: 760px) {
  :root { --fp-shell: min(100% - 28px, 1180px); }
  .header-inner { height: 68px; }
  .site-brand img { height: 34px; }
  .mobile-nav { height: calc(100vh - 68px); inset-block-start: 100%; }
  .hero { padding-top: 42px; }
  .hero h1, .page-hero h1 { font-size: clamp(2.35rem, 9vw, 3.65rem); }
  .hero-proof { grid-template-columns: 1fr; }
  .hero-visual { min-height: 410px; }
  .hero-photo { height: 410px; object-position: 68% center; }
  .live-card { bottom: 14px; left: 14px; right: 14px; }
  .category-list { display: flex; overflow-x: auto; padding-bottom: 5px; scrollbar-width: none; }
  .category-list::-webkit-scrollbar { display: none; }
  .category-item { flex: 0 0 145px; }
  .journey-tabs { overflow-x: auto; }
  .journey-tab { flex: 0 0 auto; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step { min-height: 0; }
  .journey-step::after { bottom: -22px; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .journey-step:nth-child(3n)::after { display: block; }
  .journey-step:last-child::after { display: none; }
  .flow-lane { grid-template-columns: repeat(2, 1fr); }
  .flow-node:nth-child(4)::after { display: block; }
  .flow-node:nth-child(odd)::after { display: none; }
  .feature-grid, .pricing-grid, .support-grid { grid-template-columns: 1fr; }
  .explain-grid { grid-template-columns: 1fr; }
  .step-strip { grid-template-columns: 1fr; }
  .step-chip { min-height: 0; }
  .step-strip .step-chip:not(:last-child)::after { bottom: -21px; display: flex; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .step-strip .step-chip:last-child::after { display: none; }
  .tier-path { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .decision-path { grid-template-columns: 1fr; }
  .decision-node:not(:last-child)::after { bottom: -21px; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .readiness-grid, .visit-grid, .page-split, .page-hero-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .membership-row { align-items: start; grid-template-columns: 1fr; }
  .app-grid { grid-template-columns: 1fr; }
  .site-cta { grid-template-columns: 1fr; }
  .site-cta .button-row { justify-content: flex-start; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 460px) {
  .desktop-nav .nav-download { display: none; }
  .hero-actions .button, .button-row .button { width: 100%; }
  .hero-visual { min-height: 360px; }
  .hero-photo { height: 360px; }
  .live-card { padding: 13px; }
  .flow-lane { grid-template-columns: 1fr; }
  .flow-node::after { bottom: -17px; display: block; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .flow-node:nth-child(odd)::after { display: block; }
  .flow-node:last-child::after { display: none; }
  .trust-grid { grid-template-columns: 1fr; }
  .step-strip, .tier-path { grid-template-columns: 1fr; }
  .step-chip::after, .step-chip:nth-child(2n)::after { bottom: -21px; display: flex; left: 50%; right: auto; top: auto; transform: rotate(90deg); }
  .step-chip:last-child::after { display: none; }
  .app-card { grid-template-columns: 1fr; }
  .app-actions { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
}
