/*!
 * fl-intent-ui.css
 * PathReady / RealReady — Florida Intent-to-Path Module
 * Shared styles for the launcher cards, the adaptive question flow and the
 * Path Snapshot result. Reuses the existing RealReady Florida design
 * tokens (--oh-*) already defined on every V7 Florida page so the module
 * never needs its own competing color system.
 *
 * Accessibility (Spec V1.4 Section 12):
 *  - visible focus rings (:focus-visible)
 *  - 44px minimum tap targets
 *  - reduced-motion support
 *  - no horizontal overflow at 390px
 */

/* The integration point sits directly after </header>, outside of any
   page-specific .oh-wrap container, so without this the widget bleeds to
   full viewport width while the rest of the page sits in a centered
   max-width column. Mirrors the site's own .oh-wrap convention exactly,
   with hardcoded fallbacks so this still works if --max-w isn't defined. */
#fl-mount-point { width: 100%; max-width: var(--max-w, 1140px); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }

/* ---------- Guide signup messages ---------- */
.fl-signup-message {
  display: block;
  margin: 0.75rem 0 0;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-weight: 600;
  line-height: 1.45;
}

.fl-signup-message--success {
  color: #eafff6;
  background: rgba(47, 125, 126, 0.32);
  border: 1px solid rgba(110, 206, 206, 0.55);
}

.fl-signup-message--error {
  color: #fff1ec;
  background: rgba(154, 84, 47, 0.30);
  border: 1px solid rgba(255, 190, 160, 0.55);
}

.fl-intent, .fl-launcher { font-family: var(--font-sans, -apple-system, sans-serif); }

/* ---------- Launcher (contextual / light tiers) ---------- */
.fl-launcher {
  background: var(--oh-card, #fff);
  border: 1px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-lg, 11px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.07));
  padding: 16px 18px;
  margin: 22px 0;
  max-width: 100%;
}
.fl-launcher--light { padding: 12px 16px; }
.fl-launcher__eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--oh-red, #2F7D7E); margin: 0 0 6px;
}
.fl-launcher__btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--oh-red, #2F7D7E); color: #fff; border: none;
  border-radius: var(--radius-md, 6px); padding: 10px 16px;
  font-size: 0.92rem; font-weight: 600; font-family: inherit; cursor: pointer;
  min-height: 44px; line-height: 1.2;
  transition: background .15s;
}
.fl-launcher__btn:hover { background: var(--oh-link-hover, #1D5A5B); }
.fl-launcher__arrow { font-weight: 400; }
.fl-launcher__sub { font-size: 0.83rem; color: var(--oh-text-muted, #607A76); margin: 8px 0 0; line-height: 1.5; }

/* ---------- Panel (full tier + expanded contextual/light) ---------- */
.fl-intent, .fl-intent__panel {
  background: var(--oh-card, #fff);
  border: 1px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-lg, 11px);
  box-shadow: var(--shadow-md, 0 5px 18px rgba(0,0,0,.10));
  padding: 22px 22px 24px;
  margin: 24px 0;
  max-width: 100%;
  box-sizing: border-box;
}
.fl-intent--contextual.fl-intent, .fl-intent--light.fl-intent { padding: 0; background: none; border: none; box-shadow: none; margin: 0; }
.fl-intent__head { margin-bottom: 16px; }
.fl-intent__eyebrow {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--oh-red, #2F7D7E); margin: 0 0 6px;
}
.fl-intent__title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.28rem; font-weight: 700; color: var(--oh-graphite, #1D2B2E);
  margin: 0 0 6px; line-height: 1.2;
}
.fl-intent__sub { font-size: 0.9rem; color: var(--oh-text-mid, #3D5450); margin: 0; line-height: 1.5; }
.fl-intent__body { margin-top: 4px; }

/* ---------- Progress + steps ---------- */
.fl-progress { font-size: 0.74rem; color: var(--oh-text-faint, #8FA8A4); font-weight: 600; letter-spacing: .02em; margin: 0 0 10px; text-transform: uppercase; }
.fl-step { border: none; margin: 0 0 14px; padding: 0; }
.fl-step__legend {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 1.06rem; font-weight: 600; color: var(--oh-graphite, #1D2B2E);
  margin: 0 0 12px; padding: 0; line-height: 1.35;
}

/* ---------- Option buttons (radiogroup) ---------- */
.fl-options { display: flex; flex-direction: column; gap: 8px; }
.fl-options--grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.fl-option {
  display: flex; align-items: center; text-align: left; flex-wrap: wrap; gap: 4px;
  background: var(--oh-ivory, #FAFCFB); border: 1.5px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-md, 6px); padding: 12px 14px;
  font-size: 0.9rem; font-family: inherit; color: var(--oh-text, #1A2A28); cursor: pointer;
  min-height: 44px; width: 100%; box-sizing: border-box;
  transition: border-color .15s, background .15s;
}
.fl-option:hover { border-color: var(--oh-red-2, #3B9293); }
.fl-option--selected { background: var(--oh-red-bg, #E8F3F2); border-color: var(--oh-red, #2F7D7E); font-weight: 600; }
.fl-option--suggested:not(.fl-option--selected) { border-color: var(--oh-copper, #9A6A2F); border-style: dashed; }
.fl-option__suggested-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  color: var(--oh-copper, #9A6A2F); margin-left: auto; padding-left: 10px; white-space: nowrap;
}
.fl-option__label { line-height: 1.35; flex: 1 1 auto; min-width: 0; }

/* ---------- Checkboxes (modifier list) ---------- */
.fl-checkbox {
  display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap;
  padding: 9px 4px; cursor: pointer; min-height: 44px;
  font-size: 0.88rem; color: var(--oh-text, #1A2A28);
}
.fl-checkbox__input { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--oh-red, #2F7D7E); }
.fl-checkbox__text { line-height: 1.45; }
.fl-checkbox--carried { background: var(--oh-red-bg, #E8F3F2); border-radius: var(--radius-sm, 3px); }
.fl-checkbox__carried-tag {
  font-size: 0.66rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase;
  color: var(--oh-red, #2F7D7E); margin-left: 8px; white-space: nowrap; align-self: center;
}

/* ---------- Buttons ---------- */
.fl-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  font-size: 0.88rem; font-weight: 600; border-radius: var(--radius-md, 6px);
  padding: 10px 16px; min-height: 44px; cursor: pointer; border: none;
  font-family: inherit;
}
.fl-btn--primary { background: var(--oh-red, #2F7D7E); color: #fff; }
.fl-btn--primary:hover { background: var(--oh-link-hover, #1D5A5B); }
.fl-btn--secondary { background: var(--oh-steel-bg, #EAF1EF); color: var(--oh-steel-dark, #304844); }
.fl-btn--secondary:hover { background: var(--oh-sand, #E3EDED); }
.fl-btn--text { background: none; color: var(--oh-link, #2F7D7E); padding: 10px 4px; text-decoration: underline; }
.fl-btn--chip { background: var(--oh-ivory, #FAFCFB); border: 1.5px solid var(--oh-rule, #d7dedd); color: var(--oh-text-mid, #3D5450); padding: 8px 18px; }
.fl-btn--chip-selected { background: var(--oh-red, #2F7D7E); border-color: var(--oh-red, #2F7D7E); color: #fff; }
.fl-btn:disabled { opacity: .6; cursor: default; }
.fl-back { margin-bottom: 10px; padding-left: 0; }

/* ---------- Optional free text ---------- */
.fl-optional-text { margin: 4px 0 16px; }
.fl-optional-text__consent { margin-top: 4px; }
.fl-optional-text__summary { font-size: 0.85rem; color: var(--oh-link, #2F7D7E); cursor: pointer; padding: 8px 0; min-height: 44px; display: flex; align-items: center; }
.fl-optional-text__input {
  width: 100%; box-sizing: border-box; border: 1.5px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-md, 6px); padding: 10px 12px; font-size: 0.88rem;
  font-family: inherit; margin-top: 6px; resize: vertical;
}

/* ---------- Date / select inputs ---------- */
.fl-date-input, .fl-select {
  width: 100%; box-sizing: border-box; min-height: 44px;
  border: 1.5px solid var(--oh-rule, #d7dedd); border-radius: var(--radius-md, 6px);
  padding: 9px 12px; font-size: 0.92rem; font-family: inherit; margin: 6px 0 14px;
  background: #fff; color: var(--oh-text, #1A2A28);
}
.fl-field-label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--oh-graphite, #1D2B2E); margin-bottom: 4px; }
.fl-field-help { font-size: 0.76rem; color: var(--oh-text-faint, #8FA8A4); margin: -8px 0 12px; }
.fl-intent__scope { margin: 6px 0 0; line-height: 1.45; }

/* ---------- Path Status Card (round 3) ---------- */
.fl-status-card {
  background: #fff; border: 1.5px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-md, 6px); padding: 18px 18px 16px; margin-top: 6px;
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(29,43,46,0.07));
}
.fl-status-card--confirm_before_paying { border-left: 4px solid #A14A2C; }
.fl-status-card--different_path { border-left: 4px solid #5C5446; }
.fl-status-card--one_detail_missing { border-left: 4px solid var(--oh-copper, #9A6A2F); }
.fl-status-card--compare_before_choosing { border-left: 4px solid var(--oh-steel-dark, #304844); }
.fl-status-card--clear_next_step { border-left: 4px solid var(--oh-red, #2F7D7E); }
.fl-status-card__title { font-family: var(--font-serif, Georgia, serif); font-size: 1rem; font-weight: 700; color: var(--oh-text-faint, #8FA8A4); margin: 0 0 10px; text-transform: uppercase; font-size: 0.72rem; letter-spacing: .04em; }
.fl-status-card__status-row { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
.fl-status-card__confidence { font-size: 0.82rem; color: var(--oh-text-mid, #3D5450); }
.fl-status-card__row { padding: 8px 0; border-top: 1px solid var(--oh-rule-light, #DDE9E7); }
.fl-status-card__row:first-of-type { border-top: none; padding-top: 0; }
.fl-status-card__label { font-size: 0.7rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-faint, #8FA8A4); margin-bottom: 3px; }
.fl-status-card__value { font-size: 0.96rem; color: var(--oh-text, #1A2A28); line-height: 1.5; font-weight: 600; }
.fl-status-card__value--action { font-weight: 700; }

/* ---------- Primary Action Card (round 4) ---------- */
.fl-primary-action-cards { margin: 10px 0 0; }
.fl-primary-action-card {
  display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap;
  background: var(--oh-graphite, #1D2B2E); border: 1px solid var(--oh-graphite, #1D2B2E); border-radius: var(--radius-md, 6px);
  padding: 16px 18px; text-decoration: none; cursor: pointer; transition: background .15s;
}
.fl-primary-action-card:hover { background: var(--oh-graphite-2, #24383B); }
.fl-primary-action-card__text { min-width: 0; flex: 1 1 auto; }
.fl-primary-action-card__kicker { font-size: 0.66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: rgba(255,255,255,0.55); display: block; margin-bottom: 4px; }
.fl-primary-action-card__label { font-size: 1rem; font-weight: 700; color: #fff; display: block; margin-bottom: 4px; }
.fl-primary-action-card__desc { font-size: 0.84rem; color: rgba(255,255,255,0.78); line-height: 1.45; margin: 0; }
.fl-primary-action-card__cta { font-size: 0.8rem; font-weight: 700; color: #fff; white-space: nowrap; flex-shrink: 0; }
.fl-primary-action-card:focus-visible { outline: 2px solid #fff; outline-offset: 2px; }

/* ---------- Action Cards (round 3) ---------- */
.fl-action-cards { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 0; }
.fl-action-card {
  display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap;
  background: #fff; border: 1px solid var(--oh-rule, #d7dedd); border-radius: var(--radius-md, 6px);
  padding: 12px 14px; text-decoration: none; transition: border-color .15s, background .15s;
}
.fl-action-card:hover { border-color: var(--oh-red-2, #3B9293); background: var(--oh-ivory, #FAFCFB); }
.fl-action-card__text { min-width: 0; }
.fl-action-card__kicker { font-size: 0.66rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-faint, #8FA8A4); display: block; margin-bottom: 2px; }
.fl-action-card__label { font-size: 0.9rem; font-weight: 600; color: var(--oh-graphite, #1D2B2E); text-decoration: underline; }
.fl-action-card__cta { font-size: 0.78rem; font-weight: 700; color: var(--oh-red, #2F7D7E); white-space: nowrap; flex-shrink: 0; }

/* ---------- Path Snapshot ---------- */
.fl-snapshot {
  background: var(--oh-parchment, #EEF3F0); border: 1px solid var(--oh-rule, #d7dedd);
  border-radius: var(--radius-md, 6px); padding: 18px 18px 16px; margin-top: 14px;
}
.fl-snapshot__head { display: flex; align-items: center; justify-content: space-between; gap: 10px; flex-wrap: wrap; margin-bottom: 14px; }
.fl-snapshot__title { font-family: var(--font-serif, Georgia, serif); font-size: 1.12rem; font-weight: 700; color: var(--oh-graphite, #1D2B2E); margin: 0; }
.fl-badge { font-size: 0.7rem; font-weight: 700; letter-spacing: .02em; text-transform: uppercase; padding: 4px 10px; border-radius: 999px; white-space: nowrap; }
.fl-badge--clear { background: var(--oh-red-bg, #E8F3F2); color: var(--oh-red, #2F7D7E); }
.fl-badge--detail { background: var(--oh-copper-bg, #F8F0E2); color: var(--oh-copper, #9A6A2F); }
.fl-badge--official { background: #F4E3DE; color: #A14A2C; }
.fl-badge--compare { background: var(--oh-steel-bg, #EAF1EF); color: var(--oh-steel-dark, #304844); }
.fl-badge--different { background: #EDEAE3; color: #5C5446; }
.fl-snapshot__row { padding: 10px 0; border-top: 1px solid var(--oh-rule-light, #DDE9E7); }
.fl-snapshot__row:first-of-type { border-top: none; padding-top: 0; }
.fl-snapshot__label { font-size: 0.7rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-faint, #8FA8A4); margin-bottom: 4px; }
.fl-snapshot__value { font-size: 0.92rem; color: var(--oh-text, #1A2A28); line-height: 1.55; }
.fl-snapshot__list { margin: 0; padding-left: 20px; }
.fl-snapshot__list li { margin-bottom: 4px; }
.fl-link { color: var(--oh-link, #2F7D7E); text-decoration: underline; font-weight: 600; word-break: break-word; }
.fl-link:hover { color: var(--oh-link-hover, #1D5A5B); }

/* ---------- Save / email / feedback ---------- */
.fl-followup { margin-top: 18px; display: flex; flex-direction: column; gap: 14px; }
.fl-save-row { display: flex; flex-direction: column; gap: 6px; }
.fl-save-note { font-size: 0.82rem; color: var(--oh-red, #2F7D7E); margin: 0; min-height: 1.2em; }
.fl-email-box { display: flex; flex-direction: column; gap: 8px; }
.fl-email-formwrap[hidden] { display: none; }
.fl-email-form { display: flex; flex-wrap: wrap; gap: 8px; align-items: flex-start; }
.fl-email-input {
  flex: 1 1 220px; min-height: 44px; box-sizing: border-box;
  border: 1.5px solid var(--oh-rule, #d7dedd); border-radius: var(--radius-md, 6px);
  padding: 9px 12px; font-size: 16px; font-family: inherit;
}
.fl-email-msg { width: 100%; font-size: 0.82rem; margin: 4px 0 0; min-height: 1.2em; color: var(--oh-red, #2F7D7E); }
.fl-email-msg--error { color: #B3361C; }

.fl-feedback { border-top: 1px solid var(--oh-rule-light, #DDE9E7); padding-top: 14px; }
.fl-feedback__q { font-size: 0.88rem; font-weight: 600; color: var(--oh-graphite, #1D2B2E); margin: 0 0 8px; }
.fl-feedback__row { display: flex; gap: 8px; margin-bottom: 10px; flex-wrap: wrap; }
.fl-feedback__unresolved[hidden] { display: none; }
.fl-feedback__unresolved { display: flex; flex-direction: column; gap: 8px; }

/* ---------- Screen-reader only ---------- */
.fl-sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.fl-sr-status { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }

/* ---------- Focus visibility (WCAG) ---------- */
.fl-intent button:focus-visible,
.fl-launcher button:focus-visible,
.fl-intent a:focus-visible,
.fl-intent input:focus-visible,
.fl-intent select:focus-visible,
.fl-intent textarea:focus-visible {
  outline: 3px solid #1D5A5B;
  outline-offset: 2px;
}

/* ====================================================================
   ROADMAP (round 11 — "Concept C+"): 6 numbered stages + a wide
   parallel-lane stage 3 + a distinct exam-gate stage 4 + a subordinate
   after-activation strip, replacing round 7-10's 8-step grid +
   milestone tracker + per-step "Check this step" buttons. Exactly one
   diagnostic-feeling CTA exists anywhere in this component: the header
   "Find my place in this roadmap" button. Every per-stage action is a
   plain reading-style link.
   ==================================================================== */
#fl-roadmap-mount { width: 100%; max-width: var(--max-w, 1140px); margin: 0 auto; padding: 0 20px; box-sizing: border-box; }
.fl-roadmap, .fl-roadmap * { box-sizing: border-box; max-width: 100%; }
.fl-roadmap { padding: 32px 0 48px; }
.fl-roadmap--compact { padding: 24px 0 32px; }

/* ---- header: title block first, "Typical path" summary second --
   in source order on every breakpoint. There is deliberately no
   mobile reorder trick here (an earlier draft used `order:-1` on the
   summary card to push it above the title on narrow screens; that is
   exactly what produced stacked/overlapping content above the page's
   sticky nav and is why it was removed). ---- */
.fl-roadmap__header {
  display: grid; grid-template-columns: 1fr 270px; gap: 28px;
  align-items: start; margin: 0 0 22px; padding-bottom: 22px;
  border-bottom: 1px solid var(--oh-rule, #C8D8D5);
}
.fl-roadmap--compact .fl-roadmap__header { grid-template-columns: 1fr; }
.fl-roadmap__header-main { min-width: 0; }
.fl-roadmap__eyebrow { font-size: 0.72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; color: var(--oh-red, #2F7D7E); margin: 0 0 6px; }
.fl-roadmap__title { font-family: var(--font-serif, Georgia, serif); font-weight: 700; font-size: 1.55rem; line-height: 1.22; color: var(--oh-graphite, #1D2B2E); margin: 0 0 8px; max-width: 620px; }
.fl-roadmap--compact .fl-roadmap__title { font-size: 1.05rem; }
.fl-roadmap__intro { font-size: 0.92rem; color: var(--oh-text-mid, #3D5450); line-height: 1.55; margin: 0 0 12px; max-width: 540px; }
.fl-roadmap__see-list { margin: 0 0 14px; padding: 0; list-style: none; max-width: 480px; }
.fl-roadmap__see-list-label { font-size: 0.72rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-faint, #8FA8A4); margin: 0 0 6px; }
.fl-roadmap__see-list li { font-size: 0.82rem; color: var(--oh-text-mid, #3D5450); padding-left: 16px; position: relative; line-height: 1.5; margin-bottom: 3px; }
.fl-roadmap__see-list li::before { content: "\2014"; position: absolute; left: 0; color: var(--oh-red, #2F7D7E); }
.fl-roadmap__disclaimer { font-size: 0.76rem; color: var(--oh-text-faint, #8FA8A4); margin: 0 0 14px; line-height: 1.45; max-width: 560px; }
.fl-roadmap__cta {
  font-family: inherit; font-size: 0.92rem; font-weight: 700; color: #fff;
  background: var(--oh-graphite, #1D2B2E); border: none; border-radius: var(--radius-md, 6px);
  padding: 12px 20px; cursor: pointer; display: inline-flex; align-items: center; gap: 9px;
  box-shadow: 0 4px 16px rgba(22,33,31,0.10); transition: background .15s, transform .1s;
}
.fl-roadmap__cta:hover { background: var(--oh-link-hover, #1D5A5B); }
.fl-roadmap__cta:active { transform: translateY(1px); }
.fl-roadmap__cta-helper { display: block; font-size: 0.76rem; color: var(--oh-text-faint, #8FA8A4); margin-top: 8px; max-width: 420px; line-height: 1.4; }

/* ---- "Typical path" summary card ---- */
.fl-roadmap__summary { background: var(--oh-graphite, #1D2B2E); color: #fff; border-radius: var(--radius-md, 6px); padding: 16px; align-self: stretch; }
.fl-roadmap__summary-label { font-size: 0.66rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--oh-red-bg, #E8F3F2); margin: 0 0 12px; opacity: .85; }
.fl-roadmap__summary-item { display: flex; gap: 8px; align-items: flex-start; margin-bottom: 12px; }
.fl-roadmap__summary-item:last-child { margin-bottom: 0; }
.fl-roadmap__summary-icon { color: var(--oh-red-bg, #E8F3F2); font-size: 13px; line-height: 1.3; flex-shrink: 0; }
.fl-roadmap__summary-text { font-size: 0.78rem; line-height: 1.45; color: #E7EFEE; }

/* ---- detour banners (confirmation-first / different-path / later-cycle) ---- */
.fl-roadmap__detour { display: flex; gap: 12px; align-items: flex-start; border-radius: var(--radius-md, 6px); padding: 14px 16px; margin: 0 0 18px; border: 1.5px solid; }
.fl-roadmap__detour--confirmation,
.fl-roadmap__detour--conditional { background: var(--oh-confirm-bg, #F6E5DF); border-color: var(--oh-confirm-border, #A1492C); }
.fl-roadmap__detour--different { background: var(--oh-detour-bg, #EFEBE2); border-color: var(--oh-detour-border, #5C5446); }
.fl-roadmap__detour-icon { font-size: 17px; line-height: 1; padding-top: 1px; flex-shrink: 0; }
.fl-roadmap__detour-body { flex: 1; min-width: 0; }
.fl-roadmap__detour-tag { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; margin-bottom: 4px; }
.fl-roadmap__detour--confirmation .fl-roadmap__detour-tag,
.fl-roadmap__detour--conditional .fl-roadmap__detour-tag { color: var(--oh-confirm-border, #A1492C); }
.fl-roadmap__detour--different .fl-roadmap__detour-tag { color: var(--oh-detour-border, #5C5446); }
.fl-roadmap__detour-text { margin: 0 0 6px; font-size: 0.86rem; line-height: 1.5; color: var(--oh-text, #1A2A28); }
.fl-roadmap__detour-link { font-size: 0.8rem; font-weight: 700; text-decoration: underline; }
.fl-roadmap__detour--confirmation .fl-roadmap__detour-link,
.fl-roadmap__detour--conditional .fl-roadmap__detour-link { color: var(--oh-confirm-border, #A1492C); }
.fl-roadmap__detour--different .fl-roadmap__detour-link { color: var(--oh-detour-border, #5C5446); }

/* ---- Florida timing note ---- */
.fl-roadmap__timing { background: var(--oh-red-bg, #E8F3F2); border: 1px solid #D9ECEA; border-radius: var(--radius-md, 6px); padding: 12px 16px; display: flex; gap: 14px; align-items: flex-start; margin: 0 0 22px; }
.fl-roadmap__timing-tag { font-size: 0.68rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--oh-link-hover, #1D5A5B); flex-shrink: 0; padding-top: 2px; white-space: nowrap; }
.fl-roadmap__timing p { margin: 0; font-size: 0.86rem; line-height: 1.5; color: var(--oh-text, #1A2A28); }

/* ---- stage deck ---- */
.fl-roadmap__deck { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.fl-stage {
  grid-column: span 1; background: var(--oh-card, #FFFFFF); border: 1.5px solid var(--oh-rule, #C8D8D5);
  border-radius: var(--radius-lg, 11px); padding: 18px; box-shadow: 0 1px 2px rgba(22,33,31,0.04);
  display: flex; flex-direction: column; gap: 9px; position: relative;
}
.fl-stage--wide { grid-column: span 2; }
.fl-stage__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; flex-wrap: wrap; }
.fl-stage__num { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; flex-shrink: 0; background: var(--oh-graphite, #1D2B2E); color: #fff; font-family: var(--font-serif, Georgia, serif); font-size: 0.84rem; font-weight: 600; }
.fl-stage__tags { display: flex; gap: 6px; flex-wrap: wrap; justify-content: flex-end; }
.fl-stage__badge { font-size: 0.62rem; font-weight: 700; letter-spacing: .02em; color: var(--oh-link-hover, #1D5A5B); background: var(--oh-red-bg, #E8F3F2); border-radius: 999px; padding: 3px 9px; white-space: nowrap; }
.fl-stage__statustag { font-size: 0.62rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; white-space: nowrap; padding-top: 2px; }
.fl-stage__statustag--current, .fl-stage__statustag--start { color: var(--oh-link-hover, #1D5A5B); }
.fl-stage__statustag--next { color: var(--oh-copper, #9A6A2F); }
.fl-stage__statustag--prior { color: var(--oh-text-faint, #8FA8A4); }
.fl-stage__title { font-family: var(--font-serif, Georgia, serif); font-weight: 700; font-size: 1.04rem; line-height: 1.3; color: var(--oh-graphite, #1D2B2E); margin: 0; }
.fl-stage__desc { font-size: 0.82rem; line-height: 1.5; color: var(--oh-text-mid, #3D5450); margin: 0; }

/* ---- per-stage microline: the "decision hook" -- hidden on
   compressed-weight cards EXCEPT the exam-gate, which always shows its
   full detail regardless of weight (see "Stage 4 gate" block below). ---- */
.fl-stage__microline { font-size: 0.74rem; line-height: 1.45; color: var(--oh-text-mid, #3D5450); background: var(--oh-ivory, #FAFCFB); border-left: 2.5px solid var(--oh-rule-strong, #C3CFCC); padding: 6px 10px; margin: 0; }
.fl-stage__microline strong { color: var(--oh-graphite, #1D2B2E); font-weight: 700; }
.fl-stage--expanded .fl-stage__microline, .fl-stage--balanced .fl-stage__microline { border-left-color: var(--oh-red, #2F7D7E); }
.fl-stage--compressed .fl-stage__microline { display: none; }
.fl-stage__link { font-size: 0.8rem; font-weight: 700; color: var(--oh-red, #2F7D7E); text-decoration: none; border-bottom: 1.5px solid currentColor; align-self: flex-start; padding-bottom: 1px; }
.fl-stage__link:hover { color: var(--oh-link-hover, #1D5A5B); text-decoration: none; }

/* ---- weight tiers: expanded (current) / secondary (adjacent) /
   compressed (everything else). "balanced" is the pre-check mode --
   every stage equal weight, nothing expanded or compressed yet. ---- */
.fl-stage--expanded { border-color: var(--oh-red, #2F7D7E); border-width: 2px; background: var(--oh-red-bg, #E8F3F2); }
.fl-stage--balanced.fl-stage--typical-start { border-color: var(--oh-red, #2F7D7E); border-style: dashed; background: var(--oh-card, #fff); }
.fl-stage--secondary { padding: 15px 18px; }
.fl-stage--secondary .fl-stage__title { font-size: 0.96rem; }
.fl-stage--compressed { padding: 14px 16px; gap: 5px; }
.fl-stage--compressed .fl-stage__desc { display: none; }
.fl-stage--compressed .fl-stage__title { font-size: 0.9rem; }
.fl-stage--compressed .fl-stage__num { width: 22px; height: 22px; font-size: 0.7rem; }

/* ---- Stage 3: parallel lanes (wide card) ---- */
.fl-lanes { display: grid; grid-template-columns: 1fr auto 1fr; gap: 14px; align-items: stretch; margin-top: 2px; }
.fl-lane { border: 1.5px dashed var(--oh-rule-strong, #C3CFCC); border-radius: var(--radius-md, 6px); padding: 13px; display: flex; flex-direction: column; gap: 8px; background: var(--oh-ivory, #FAFCFB); }
.fl-lane--education { border-color: #9FBFC0; }
.fl-lane--application { border-color: #C9AE8A; }
.fl-lane__label { font-size: 0.66rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-mid, #3D5450); margin: 0; }
.fl-lane__item { display: flex; flex-direction: column; gap: 3px; }
.fl-lane__item + .fl-lane__item { padding-top: 8px; border-top: 1px solid var(--oh-rule, #C8D8D5); }
.fl-lane__item-title { font-size: 0.82rem; font-weight: 700; color: var(--oh-graphite, #1D2B2E); }
.fl-lane__focus-dot { display: inline-flex; align-items: center; gap: 5px; font-size: 0.64rem; font-weight: 700; color: var(--oh-link-hover, #1D5A5B); margin-bottom: 1px; }
.fl-lane__focus-dot::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--oh-red, #2F7D7E); display: inline-block; }
.fl-lanes__divider { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 6px; color: var(--oh-text-faint, #8FA8A4); font-size: 0.66rem; font-weight: 600; text-align: center; width: 56px; }
.fl-lanes__divider-line { width: 1.5px; flex: 1; background: var(--oh-rule-strong, #C3CFCC); min-height: 14px; }

/* ---- Stage 4: exam gate / merge checkpoint -- the single deliberate
   visual departure in an otherwise quiet deck. Per the bug fix in this
   round: a gate card ALWAYS shows its description + microline (never
   collapses to title-only the way a normal compressed stage does) and
   never force-stretches to match Stage 3's lane height -- both of
   which previously left it looking hollow next to the wide stage. ---- */
.fl-stage--gate { background: var(--oh-gate-bg, #EFF6F5); border: 1.5px solid var(--oh-gate-accent, #3D6B6E); border-top-width: 5px; align-self: start; }
.fl-stage--gate::before { content: ""; position: absolute; left: 50%; top: -5px; transform: translate(-50%, -50%) rotate(45deg); width: 13px; height: 13px; background: var(--oh-gate-accent, #3D6B6E); border-radius: 3px; }
.fl-stage--gate .fl-stage__num { background: var(--oh-gate-accent, #3D6B6E); }
.fl-stage--gate .fl-stage__title { color: var(--oh-gate-accent, #3D6B6E); }
.fl-stage--gate.fl-stage--compressed .fl-stage__desc { display: block; }
.fl-stage--gate.fl-stage--compressed .fl-stage__microline { display: block; }
.fl-stage--gate .fl-stage__microline { background: var(--oh-gate-bg-strong, #E3EEED); border-left-color: var(--oh-gate-accent, #3D6B6E); }
.fl-gate__icon-row { display: flex; align-items: center; gap: 7px; }
.fl-gate__icon { width: 20px; height: 20px; border-radius: 5px; background: var(--oh-gate-bg-strong, #E3EEED); display: inline-flex; align-items: center; justify-content: center; font-size: 11px; color: var(--oh-gate-accent, #3D6B6E); flex-shrink: 0; }
.fl-gate__merge-note { font-size: 0.64rem; font-weight: 700; letter-spacing: .02em; color: var(--oh-gate-accent, #3D6B6E); text-transform: uppercase; }

/* ---- after-activation strip: lighter, subordinate maintenance row,
   deliberately not a 7th/8th numbered stage card ---- */
.fl-after { margin-top: 18px; padding: 10px 14px; border-top: 1px solid var(--oh-rule, #C8D8D5); background: #F5F7F6; border-radius: var(--radius-sm, 3px); display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.fl-after__label { font-size: 0.66rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-text-faint, #8FA8A4); margin: 0; flex-shrink: 0; }
.fl-after__microline { font-size: 0.68rem; color: var(--oh-text-faint, #8FA8A4); margin: 0; flex-shrink: 0; font-style: italic; }
.fl-after__items { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; flex: 1 1 auto; }
.fl-after__item { display: flex; align-items: baseline; gap: 6px; }
.fl-after__item:not(:last-child)::after { content: "\00b7"; color: var(--oh-rule-strong, #C3CFCC); margin-left: 12px; }
.fl-after__item-title { font-size: 0.74rem; font-weight: 700; color: var(--oh-text-mid, #3D5450); margin: 0; }
.fl-after__item-title--current { color: var(--oh-link-hover, #1D5A5B); text-decoration: underline; }
.fl-after__item-link { font-size: 0.72rem; font-weight: 600; color: var(--oh-red, #2F7D7E); text-decoration: underline; }

/* ---- different-path: dim the whole deck, suppress status tags --
   nothing should read as "current" when the path doesn't apply ---- */
.fl-roadmap--dimmed .fl-stage { opacity: .55; }
.fl-roadmap--dimmed .fl-stage--expanded,
.fl-roadmap--dimmed .fl-stage--secondary { opacity: .55; border-color: var(--oh-rule, #C8D8D5) !important; background: var(--oh-card, #fff) !important; }
.fl-roadmap--dimmed .fl-stage__statustag { display: none; }
.fl-roadmap--dimmed .fl-after { opacity: .55; }

/* =====================================================================
   COMPACT SUBPAGE CARD -- a small, dense orientation card (page focus /
   related stage / one-line explanation / parallel-or-next relationship
   / one CTA), replacing the previous oversized dashed placeholder box.
   ===================================================================== */
.fl-compact { max-width: 420px; background: var(--oh-card, #fff); border: 1.5px solid var(--oh-rule, #C8D8D5); border-radius: var(--radius-lg, 11px); padding: 18px; box-shadow: 0 1px 2px rgba(22,33,31,0.04); }
.fl-compact__status-tag { display: inline-block; font-size: 0.62rem; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; color: var(--oh-link-hover, #1D5A5B); background: var(--oh-red-bg, #E8F3F2); border-radius: 999px; padding: 3px 10px; margin: 0 0 12px; }
.fl-compact__line { display: flex; gap: 6px; font-size: 0.82rem; margin-bottom: 8px; flex-wrap: wrap; }
.fl-compact__line-label { font-weight: 700; color: var(--oh-text-faint, #8FA8A4); flex-shrink: 0; }
.fl-compact__line-value { color: var(--oh-graphite, #1D2B2E); font-weight: 600; }
.fl-compact__explainer { font-size: 0.82rem; color: var(--oh-text-mid, #3D5450); line-height: 1.5; margin: 0 0 10px; }
.fl-compact__focus-box { border: 1.5px solid var(--oh-red, #2F7D7E); border-radius: var(--radius-sm, 3px); padding: 10px 12px; margin: 0 0 10px; background: var(--oh-red-bg, #E8F3F2); }
.fl-compact__focus-box[data-page-default="true"] { border-style: dashed; background: var(--oh-card, #fff); }
.fl-compact__focus-box .fl-compact__line { margin-bottom: 0; }
.fl-compact__focus-box .fl-compact__line-label { color: var(--oh-link-hover, #1D5A5B); }
.fl-compact__guide-link { display: block; font-size: 0.8rem; font-weight: 700; color: var(--oh-red, #2F7D7E); text-decoration: underline; margin: 0 0 12px; }
.fl-compact__cta {
  width: 100%; font-family: inherit; font-size: 0.86rem; font-weight: 700; color: #fff;
  background: var(--oh-graphite, #1D2B2E); border: none; border-radius: var(--radius-sm, 3px);
  padding: 10px 14px; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  transition: background .15s;
}
.fl-compact__cta:hover { background: var(--oh-link-hover, #1D5A5B); }
.fl-compact__empty { font-size: 0.84rem; color: var(--oh-text-mid, #3D5450); margin: 0 0 12px; }

/* ---------- responsive ---------- */
@media (max-width: 920px) {
  .fl-roadmap__deck { grid-template-columns: repeat(2, 1fr); }
  .fl-stage--wide { grid-column: span 2; }
}
@media (max-width: 700px) {
  .fl-roadmap__header { grid-template-columns: 1fr; }
  .fl-roadmap__summary { margin-top: 4px; }
}
@media (max-width: 560px) {
  .fl-roadmap__deck { grid-template-columns: 1fr; }
  .fl-stage--wide { grid-column: span 1; }
  .fl-stage--gate { align-self: stretch; }
  .fl-lanes { grid-template-columns: 1fr; }
  .fl-lanes__divider { width: 100%; flex-direction: row; padding: 4px 0; }
  .fl-lanes__divider-line { width: auto; height: 1.5px; flex: 1; min-height: 0; }
  .fl-roadmap__title { font-size: 1.32rem; }
  .fl-roadmap__cta { width: 100%; justify-content: center; }
  .fl-after { flex-direction: column; align-items: flex-start; gap: 6px; }
  .fl-after__items { flex-direction: column; align-items: flex-start; gap: 6px; }
  .fl-after__item:not(:last-child)::after { content: ""; margin-left: 0; }
}
@media (max-width: 480px) {
  .fl-roadmap { padding-left: 14px; padding-right: 14px; }
}

/* ---------- No horizontal overflow at narrow widths ---------- */
@media (max-width: 480px) {
  .fl-intent, .fl-launcher { padding-left: 16px; padding-right: 16px; }
  .fl-options--grid { grid-template-columns: 1fr; }
  .fl-email-input { flex-basis: 100%; }
  .fl-snapshot { padding-left: 14px; padding-right: 14px; }
}
.fl-intent, .fl-launcher, .fl-intent * , .fl-launcher * { max-width: 100%; box-sizing: border-box; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .fl-intent, .fl-launcher, .fl-option, .fl-btn { transition: none !important; }
}

/* ============================================================
   ROADMAP WORKSPACE + CONTENT-TO-PATH BRIDGE
   Added for: Concept C (Path Map Workspace) integration.
   Local semantic aliases only — no new color tokens, no global
   token migration. Every value below resolves to an existing
   --oh-* variable already defined in the page's :root.
   ============================================================ */
.fl-workspace, .fl-bridge, .fl-detour-card {
  --fl-ink:          var(--oh-graphite);
  --fl-primary:      var(--oh-red);
  --fl-primary-2:    var(--oh-red-2);
  --fl-primary-soft: var(--oh-red-bg);
  --fl-steel:        var(--oh-steel);
  --fl-steel-bg:     var(--oh-steel-bg);
  --fl-copper:       var(--oh-copper);
  --fl-copper-bg:    var(--oh-copper-bg);
  --fl-ivory:        var(--oh-ivory);
  --fl-parchment:    var(--oh-parchment);
  --fl-card:         var(--oh-card);
  --fl-line:         var(--oh-rule);
  --fl-line-light:   var(--oh-rule-light);
  --fl-text:         var(--oh-text);
  --fl-text-mid:     var(--oh-text-mid);
  --fl-text-muted:   var(--oh-text-muted);
  --fl-text-faint:   var(--oh-text-faint);
  --fl-link-hover:   var(--oh-link-hover);
}

/* ---------- Workspace shell: main (diagnosis) + rail ---------- */
.fl-workspace {
  width: 100%; max-width: var(--max-w, 1140px); margin: 0 auto;
  padding: 0 20px; box-sizing: border-box;
  display: grid; grid-template-columns: minmax(0,1.15fr) minmax(0,1fr);
  gap: 16px; align-items: start;
}
.fl-workspace, .fl-workspace * { box-sizing: border-box; }
@media (max-width: 900px) {
  .fl-workspace { grid-template-columns: minmax(0,1fr); padding: 0 16px; }
}
.fl-workspace__main { min-width: 0; }
.fl-workspace__rail {
  background: var(--fl-card);
  border: 1px solid var(--fl-line);
  border-radius: var(--radius-lg, 11px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.06));
  padding: 18px 18px 20px;
  min-width: 0;
  position: sticky; top: calc(var(--nav-h, 52px) + 14px);
}
@media (max-width: 900px) { .fl-workspace__rail { position: static; } }

/* ---------- Rail tabs ---------- */
.fl-rail__tabs {
  display: flex; gap: 18px; margin-bottom: 16px;
  border-bottom: 1px solid var(--fl-line);
}
.fl-rail__tab {
  appearance: none; background: none; border: none; cursor: pointer;
  font-family: inherit; font-size: 0.86rem; font-weight: 600; color: var(--fl-text-muted);
  padding: 0 0 11px; margin-bottom: -1px;
  border-bottom: 2px solid transparent;
  min-height: 44px;
}
.fl-rail__tab:focus-visible { outline: 2px solid var(--fl-primary); outline-offset: 2px; }
.fl-rail__tab.is-active { color: var(--fl-ink); border-color: var(--fl-ink); }
.fl-rail__panel[hidden] { display: none; }

.fl-rail__heading { font-size: 0.95rem; font-weight: 700; color: var(--fl-ink); margin: 0 0 2px; }
.fl-rail__sub { font-size: 0.78rem; color: var(--fl-text-muted); margin: 0 0 16px; }

/* ---------- Path tab: stage rows ---------- */
.fl-rail__row {
  display: flex; align-items: center; gap: 8px 11px; flex-wrap: wrap;
  padding: 9px 9px; border-radius: 10px; position: relative;
}
.fl-rail__row + .fl-rail__row { margin-top: 1px; }
.fl-rail__marker {
  flex-shrink: 0; width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--fl-line); background: var(--fl-card);
  display: flex; align-items: center; justify-content: center;
}
.fl-rail__marker svg { width: 11px; height: 11px; }
.fl-rail__label { flex: 1 1 120px; min-width: 0; font-size: 0.86rem; font-weight: 500; color: var(--fl-text-mid); line-height: 1.3; }

.fl-rail__row--earlier .fl-rail__marker { background: var(--fl-steel); border-color: var(--fl-steel); }
.fl-rail__row--earlier .fl-rail__label { color: var(--fl-ink); }

.fl-rail__row--current { background: var(--fl-primary-soft); border-left: 3px solid var(--fl-primary); padding-left: 7px; }
.fl-rail__row--current .fl-rail__marker { border-color: var(--fl-primary); }
.fl-rail__row--current .fl-rail__marker::after { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--fl-primary); }
.fl-rail__row--current .fl-rail__label { color: var(--fl-ink); font-weight: 700; }

.fl-rail__row--next .fl-rail__marker { border-style: dashed; border-color: var(--fl-primary); }
.fl-rail__row--upcoming .fl-rail__label { color: var(--fl-text-muted); }

.fl-rail__tag {
  margin-left: auto; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--fl-primary); background: var(--fl-primary-soft); padding: 3px 7px; border-radius: 5px;
  white-space: normal; text-align: right; max-width: 11rem; line-height: 1.25;
}

/* Gate rows — visually distinct without implying completion */
.fl-rail__row--gate {
  background: var(--fl-parchment); opacity: 0.9;
}
.fl-rail__row--gate .fl-rail__marker { background: var(--fl-steel); border-color: var(--fl-steel); }
.fl-rail__row--gate .fl-rail__label { color: var(--fl-text-mid); font-style: italic; }
.fl-rail__gate-tag {
  margin-left: auto; font-size: 0.58rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--fl-text-muted);
}

/* Stage 3 parallel-lane hint chip */
.fl-rail__lane-hint {
  display: block; font-size: 0.68rem; color: var(--fl-text-faint);
  margin: 2px 0 4px 41px;
}

.fl-rail__divider {
  display: flex; align-items: center; gap: 8px; margin: 12px 3px 5px;
  font-size: 0.6rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--fl-text-muted);
}
.fl-rail__divider::after { content: ""; flex: 1; height: 1px; background: var(--fl-line); }

.fl-rail__different { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--fl-line); }
.fl-rail__different-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fl-text-muted); margin: 0 0 9px; }
.fl-rail__diff-row {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 9px; border: 1px dashed var(--fl-line); border-radius: 9px;
  font-size: 0.82rem; font-weight: 500; color: var(--fl-text-mid); margin-bottom: 7px;
  min-height: 44px;
}
.fl-rail__diff-row svg { width: 13px; height: 13px; opacity: 0.45; flex-shrink: 0; }

/* ---------- Guides tab: quiet card list (not a blog grid) ---------- */
.fl-guide-list { display: flex; flex-direction: column; gap: 8px; }
.fl-guide-card {
  display: block; padding: 11px 12px; border: 1px solid var(--fl-line-light);
  border-radius: 10px; background: var(--fl-ivory);
}
.fl-guide-card__stage {
  display: block; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--fl-primary); margin-bottom: 4px;
}
.fl-guide-card__title { display: block; font-size: 0.88rem; font-weight: 700; color: var(--fl-ink); margin-bottom: 3px; line-height: 1.3; }
.fl-guide-card__reason { display: block; font-size: 0.8rem; color: var(--fl-text-muted); line-height: 1.4; margin-bottom: 8px; }
.fl-guide-card__cta {
  display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 700; color: var(--fl-primary);
  min-height: 24px;
}
.fl-guide-card:hover .fl-guide-card__cta { color: var(--fl-link-hover); }
.fl-guide-verify-note {
  margin-top: 10px; padding: 10px 11px; border-radius: 9px; background: var(--fl-parchment);
  font-size: 0.76rem; color: var(--fl-text-muted); line-height: 1.5;
}
.fl-guide-empty { font-size: 0.84rem; color: var(--fl-text-muted); line-height: 1.5; }

/* ---------- Content-to-path bridge module (on SEO guide pages) ---------- */
.fl-bridge {
  background: var(--fl-parchment); border: 1px solid var(--fl-line-light); border-radius: var(--radius-md, 6px);
  padding: 14px 16px; margin: 22px 0; max-width: 100%;
}
.fl-bridge__eyebrow { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fl-primary); margin: 0 0 6px; }
.fl-bridge__line { font-size: 0.9rem; color: var(--fl-text); line-height: 1.5; margin: 0 0 11px; }
.fl-bridge__line strong { color: var(--fl-ink); }
.fl-bridge__ctas { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.fl-bridge__cta { font-size: 0.82rem; font-weight: 700; color: var(--fl-primary); min-height: 24px; display: inline-flex; align-items: center; }
.fl-bridge__cta:hover { color: var(--fl-link-hover); }
.fl-bridge__cta--muted { color: var(--fl-text-muted); }

/* ---------- Detour card (different-path pages) ---------- */
.fl-detour-card {
  background: var(--fl-copper-bg); border: 1.5px solid var(--fl-copper); border-radius: var(--radius-md, 6px);
  padding: 14px 16px; margin: 22px 0; max-width: 100%;
}
.fl-detour-card__tag { display: block; font-size: 0.64rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--fl-copper); margin: 0 0 6px; }
.fl-detour-card__line { font-size: 0.9rem; color: var(--fl-text); line-height: 1.5; margin: 0 0 10px; }
.fl-detour-card__ctas { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.fl-detour-card__cta { font-size: 0.82rem; font-weight: 700; color: var(--fl-copper); min-height: 24px; display: inline-flex; align-items: center; }
.fl-detour-card__cta:hover { color: var(--oh-link-hover, #1D5A5B); }


/* ---------- Journey result header (replaces the old status-card title) ---------- */
.fl-journey-result {
  background: var(--fl-card, var(--oh-card));
  border: 1px solid var(--fl-line, var(--oh-rule));
  border-radius: var(--radius-lg, 11px);
  box-shadow: var(--shadow-sm, 0 1px 3px rgba(0,0,0,.06));
  padding: 20px 22px 18px;
  margin-bottom: 14px;
}
.fl-journey-result__eyebrow {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--fl-primary, var(--oh-red)); margin: 0 0 8px;
}
.fl-journey-result__headline {
  font-family: var(--font-serif, Georgia, serif);
  font-size: clamp(1.15rem, 2.4vw, 1.5rem); font-weight: 700; line-height: 1.28;
  color: var(--fl-ink, var(--oh-graphite)); margin: 0 0 10px;
}
.fl-journey-result__explanation {
  font-size: 0.92rem; color: var(--fl-text-mid, var(--oh-text-mid)); line-height: 1.55; margin: 0 0 14px; max-width: 56ch;
}
.fl-journey-result__meta { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.fl-journey-result__confidence { font-size: 0.78rem; color: var(--fl-text-muted, var(--oh-text-muted)); }
.fl-journey-result__blocker {
  margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--fl-line-light, var(--oh-rule-light));
  display: flex; flex-wrap: wrap; gap: 6px 10px; align-items: baseline;
}
.fl-journey-result__blocker-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--fl-text-faint, var(--oh-text-faint)); }
.fl-journey-result__blocker-value { font-size: 0.86rem; color: var(--fl-text, var(--oh-text)); }

/* ---------- Main-column current-stage guide cards ---------- */
.fl-workspace__stage-guides { margin-top: 14px; }
.fl-workspace__stage-guides-label {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
  color: var(--fl-text-muted, var(--oh-text-muted)); margin: 0 0 8px;
}
.fl-guide-list--main { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 10px; }
@media (max-width: 640px) { .fl-guide-list--main { grid-template-columns: minmax(0,1fr); } }
.fl-guide-list--main .fl-guide-card { background: var(--fl-card, var(--oh-card)); }


@media (max-width: 560px) {
  .fl-workspace__rail { padding: 16px 14px 18px; }
  .fl-rail__tabs { gap: 14px; }
}

/* =====================================================================
   Journey layer (V2) — persistent Journey object surfaces
   ---------------------------------------------------------------------
   Visual system per RealReady design direction:
   - navy / graphite / ivory carry the global structure
   - Florida teal-green is the STATE ACCENT only (chips, current markers)
   - copper/gold is reserved for gate / warning / timing states
   Tokens are scoped with --fl-* so content-page --oh-* tokens are
   untouched; teal intentionally aliases the page's state accent.
   ===================================================================== */
:root {
  --fl-navy-deep: #08203D;
  --fl-navy: #0D2B52;
  --fl-navy-border: #183B63;
  --fl-ivory: #F7F7F4;
  --fl-card: #FFFFFF;
  --fl-border: #E5E7EB;
  --fl-text: #1F2937;
  --fl-text-muted: #6B7280;
  --fl-chip-bg: #EEF4FA;
  --fl-teal: var(--oh-red, #2F7D7E);
  --fl-teal-dark: var(--oh-link-hover, #1D5A5B);
  --fl-teal-bg: var(--oh-red-bg, #E8F3F2);
  --fl-copper: var(--oh-copper, #9A6A2F);
  --fl-copper-bg: var(--oh-copper-bg, #F8F0E2);
  --fl-gold: #B89B5E;
  --fl-amber-bg: #FFF7E6;
  --fl-green: #2F6B4F;
}

/* ---------- Intent chips bar ---------- */
.fl-chips {
  display: flex; flex-wrap: wrap; align-items: center; gap: 8px;
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-left: 3px solid var(--fl-navy);
  border-radius: var(--radius-lg, 11px);
  padding: 12px 16px;
  margin: 18px 0;
  font-family: var(--font-sans, -apple-system, sans-serif);
}
.fl-chips__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--fl-navy); margin-right: 4px;
}
.fl-chip-wrap { position: relative; display: inline-flex; }
.fl-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fl-chip-bg); color: var(--fl-navy);
  border: 1px solid var(--fl-border); border-radius: 999px;
  padding: 7px 14px; min-height: 36px;
  font-size: .85rem; font-weight: 600; font-family: inherit;
  cursor: pointer; text-decoration: none;
  transition: border-color .15s, background .15s;
}
.fl-chip:hover { border-color: var(--fl-navy); }
.fl-chip:focus-visible { outline: 2px solid var(--fl-navy); outline-offset: 2px; }
.fl-chip--state { background: var(--fl-navy); color: #fff; border-color: var(--fl-navy); }
.fl-chip--stage { background: var(--fl-teal-bg); color: var(--fl-teal-dark); border-color: var(--fl-teal); }
.fl-chip--unset { background: var(--fl-card); color: var(--fl-text-muted); border-style: dashed; }
.fl-chip--suggested { border-style: dashed; }
.fl-chip--different { background: var(--fl-copper-bg); color: var(--fl-copper); border-color: var(--fl-copper); }
.fl-chip__caret { font-size: .7rem; opacity: .65; }
.fl-chip__suggested {
  font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase;
  background: var(--fl-card); color: var(--fl-teal-dark);
  border: 1px dashed var(--fl-teal); border-radius: 999px; padding: 1px 7px;
}
.fl-chips__diff-link { font-size: .8rem; font-weight: 600; color: var(--fl-copper); text-decoration: underline; }
.fl-chips__quiz {
  margin-left: auto;
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: .82rem; font-weight: 600; color: var(--fl-teal-dark);
  text-decoration: underline; text-underline-offset: 3px;
  min-height: 36px; padding: 4px 6px;
}
.fl-chips__quiz:hover { color: var(--fl-navy); }
.fl-chip__menu {
  position: absolute; top: calc(100% + 6px); left: 0; z-index: 60;
  min-width: 240px; background: var(--fl-card);
  border: 1px solid var(--fl-border); border-radius: var(--radius-md, 10px);
  box-shadow: 0 12px 32px rgba(8, 32, 61, .16);
  padding: 6px; display: flex; flex-direction: column; gap: 2px;
}
.fl-chip__option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  background: none; border: none; border-radius: 8px; cursor: pointer;
  font-family: inherit; font-size: .86rem; font-weight: 500; color: var(--fl-text);
  padding: 10px 12px; min-height: 40px; text-align: left; width: 100%;
}
.fl-chip__option:hover { background: var(--fl-chip-bg); }
.fl-chip__option.is-current { font-weight: 700; color: var(--fl-navy); background: var(--fl-teal-bg); }
.fl-chip__option-check { color: var(--fl-teal-dark); font-weight: 700; }
@media (max-width: 640px) {
  .fl-chips { padding: 10px 12px; }
  .fl-chips__quiz { margin-left: 0; }
  .fl-chip__menu { min-width: 210px; }
}

/* ---------- Journey result: stage chip + itinerary ---------- */
.fl-journey-result__stagechip {
  display: inline-flex; align-items: center;
  background: var(--fl-navy); color: #fff;
  border-radius: 999px; padding: 4px 12px; margin-bottom: 10px;
  font-size: .74rem; font-weight: 700; letter-spacing: .03em;
}
.fl-itinerary {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-radius: var(--radius-lg, 11px);
  padding: 18px 18px 14px;
  margin: 16px 0;
}
.fl-itinerary__head { margin-bottom: 12px; }
.fl-itinerary__title { margin: 0 0 4px; font-size: 1.02rem; font-weight: 700; color: var(--fl-navy); }
.fl-itinerary__sub { margin: 0; font-size: .86rem; color: var(--fl-text-muted); line-height: 1.5; }
.fl-itinerary__rows { display: flex; flex-direction: column; }
.fl-itin-row {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 12px 0; border-top: 1px solid var(--fl-border);
  position: relative;
}
.fl-itin-row:first-child { border-top: none; }
.fl-itin-row__marker {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .76rem; font-weight: 700;
  background: var(--fl-chip-bg); color: var(--fl-navy);
  border: 1px solid var(--fl-border);
}
.fl-itin-row--lane .fl-itin-row__marker { background: var(--fl-teal-bg); color: var(--fl-teal-dark); border-color: var(--fl-teal); }
.fl-itin-row--focus { background: var(--fl-teal-bg); border-radius: 10px; padding-left: 10px; padding-right: 10px; border-top-color: transparent; }
.fl-itin-row--focus + .fl-itin-row { border-top-color: transparent; }
.fl-itin-row--parallel .fl-itin-row__marker { background: var(--fl-card); color: var(--fl-text-muted); }
.fl-itin-row--confirm .fl-itin-row__marker,
.fl-itin-row--gate .fl-itin-row__marker { background: var(--fl-amber-bg); color: var(--fl-copper); border-color: var(--fl-gold); }
.fl-itin-row--gate { background: var(--fl-copper-bg); border-radius: 10px; padding-left: 10px; padding-right: 10px; }
.fl-itin-row__body { flex: 1 1 auto; min-width: 0; }
.fl-itin-row__kicker {
  display: block; font-size: .66rem; font-weight: 700; letter-spacing: .06em;
  text-transform: uppercase; color: var(--fl-text-muted); margin-bottom: 2px;
}
.fl-itin-row--confirm .fl-itin-row__kicker,
.fl-itin-row--gate .fl-itin-row__kicker { color: var(--fl-copper); }
.fl-itin-row--focus .fl-itin-row__kicker { color: var(--fl-teal-dark); }
.fl-itin-row__text { margin: 0; font-size: .9rem; line-height: 1.5; color: var(--fl-text); }
.fl-itin-row__link {
  display: inline-block; margin-top: 4px; font-size: .84rem; font-weight: 600;
  color: var(--fl-teal-dark); text-decoration: underline; text-underline-offset: 3px;
}
.fl-itinerary__note { margin: 10px 0 0; font-size: .78rem; color: var(--fl-text-muted); }

/* ---------- Journey mini-panel (guide pages) ---------- */
.fl-mini-panel {
  background: var(--fl-card);
  border: 1px solid var(--fl-border);
  border-left: 3px solid var(--fl-navy);
  border-radius: var(--radius-lg, 11px);
  padding: 14px 18px;
  margin: 18px 0;
  font-family: var(--font-sans, -apple-system, sans-serif);
}
.fl-mini-panel__eyebrow {
  font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  color: var(--fl-navy); margin: 0 0 10px;
}
.fl-mini-panel__summary { margin: -2px 0 12px; font-size: .9rem; line-height: 1.45; color: var(--fl-text); }
.fl-mini-panel__grid {
  display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px;
  margin-bottom: 12px;
}
.fl-mini-panel__cell {
  border-left: 2px solid var(--fl-border); padding-left: 10px;
  display: flex; flex-direction: column; gap: 2px; min-width: 0;
}
.fl-mini-panel__cell--gate { border-left-color: var(--fl-gold); }
.fl-mini-panel__cell--gate .fl-mini-panel__value { color: var(--fl-copper); }
.fl-mini-panel__cell--unset .fl-mini-panel__value { color: var(--fl-text-muted); font-weight: 500; }
.fl-mini-panel__label {
  font-size: .64rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--fl-text-muted);
}
.fl-mini-panel__value { font-size: .88rem; font-weight: 650; color: var(--fl-text); line-height: 1.35; }
.fl-mini-panel__ctas { display: flex; flex-wrap: wrap; align-items: center; gap: 14px; }
.fl-mini-panel__confirm {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--fl-navy); color: #fff; border: none;
  border-radius: var(--radius-md, 8px); padding: 9px 16px; min-height: 40px;
  font-family: inherit; font-size: .86rem; font-weight: 650; cursor: pointer;
  transition: background .15s;
}
.fl-mini-panel__confirm:hover { background: var(--fl-navy-deep); }
.fl-mini-panel__save { color: var(--fl-teal-dark); }
.fl-mini-panel__confirm:focus-visible { outline: 2px solid var(--fl-navy); outline-offset: 2px; }
.fl-mini-panel__confirmed {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fl-teal-bg); color: var(--fl-teal-dark);
  border: 1px solid var(--fl-teal); border-radius: 999px;
  padding: 7px 14px; font-size: .82rem; font-weight: 700;
}
.fl-mini-panel__cta {
  background: none; border: none; cursor: pointer; font-family: inherit; padding: 4px 0;
  font-size: .82rem; font-weight: 600; color: var(--fl-teal-dark);
  text-decoration: underline; text-underline-offset: 3px; min-height: 36px;
  display: inline-flex; align-items: center;
}
.fl-mini-panel__cta--muted { color: var(--fl-text-muted); }
.fl-mini-panel__cta--muted:hover { color: var(--fl-navy); }
@media (max-width: 640px) {
  .fl-mini-panel__grid { grid-template-columns: 1fr; gap: 8px; }
}

/* ---------- Rail: single surface additions ---------- */
.fl-rail__stage-objects { margin-top: 4px; }
.fl-guide-card--rail { margin-bottom: 8px; }
.fl-rail__tag--suggested {
  background: var(--fl-card); color: var(--fl-teal-dark);
  border: 1px dashed var(--fl-teal);
}
.fl-rail__confirm {
  margin-left: auto; flex: 0 0 auto;
  background: var(--fl-navy); color: #fff; border: none;
  border-radius: 999px; padding: 4px 10px; min-height: 28px;
  font-family: inherit; font-size: .7rem; font-weight: 700; cursor: pointer;
}
.fl-rail__confirm:hover { background: var(--fl-navy-deep); }

/* ---------- Deck: suggested status tag ---------- */
.fl-stage__statustag--suggested {
  background: var(--fl-card); color: var(--fl-teal-dark);
  border: 1px dashed var(--fl-teal);
}

/* ---------- Detour: journey note ---------- */
.fl-detour-card__journey-note {
  margin: 8px 0 0; font-size: .8rem; color: var(--fl-text-muted); font-style: italic;
}

@media (prefers-reduced-motion: reduce) {
  .fl-chip, .fl-mini-panel__confirm { transition: none; }
}

/* ---------- Journey home shell (workspace driven by Journey object) ---------- */
.fl-journey-home { display: flex; flex-direction: column; }
.fl-journey-result--suggested { border-style: dashed; }
.fl-badge--suggested {
  background: var(--fl-card); color: var(--fl-teal-dark);
  border: 1px dashed var(--fl-teal);
}
.fl-journey-result__confirm {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--fl-navy); color: #fff; border: none;
  border-radius: 999px; padding: 7px 14px; min-height: 36px;
  font-family: inherit; font-size: .8rem; font-weight: 700; cursor: pointer;
  transition: background .15s;
}
.fl-journey-result__confirm:hover { background: var(--fl-navy-deep); }
.fl-journey-result__confirm:focus-visible { outline: 2px solid var(--fl-navy); outline-offset: 2px; }
.fl-journey-home__quizrow {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  padding: 12px 2px 4px; border-top: 1px solid var(--fl-border); margin-top: 4px;
}
.fl-journey-home__quizhint { font-size: .84rem; color: var(--fl-text-muted); }
.fl-journey-home__quizbtn {
  background: none; border: none; cursor: pointer; font-family: inherit;
  font-size: .84rem; font-weight: 650; color: var(--fl-teal-dark);
  text-decoration: underline; text-underline-offset: 3px; min-height: 36px; padding: 4px 2px;
}
.fl-journey-home__quizbtn:hover { color: var(--fl-navy); }

/* ---------- Journey zone (canonical page: journey shell above the SEO hub) ---------- */
.fl-journey-zone { padding: 18px 0 10px; background: var(--fl-ivory); }
#fl-journey-chips-mount {
  width: 100%; max-width: var(--max-w, 1140px); margin: 0 auto;
  padding: 0 20px; box-sizing: border-box;
}
#fl-roadmap-mount .fl-roadmap--full {
  max-width: var(--max-w, 1140px); margin-left: auto; margin-right: auto;
}

/* ---------- Journey V2.3A saved guides ---------- */
.fl-guide-card { position: relative; }
.fl-guide-card__link { display: block; color: inherit; text-decoration: none; min-width: 0; }
.fl-guide-card__link:focus-visible { outline: 2px solid var(--fl-primary, #2F7D7E); outline-offset: 3px; border-radius: 8px; }
.fl-guide-save {
  margin-top: 8px;
  border: 1px solid rgba(47,125,126,.35);
  background: #fff;
  color: var(--fl-primary, #2F7D7E);
  border-radius: 999px;
  padding: 5px 10px;
  font-size: .74rem;
  line-height: 1;
  font-weight: 700;
  cursor: pointer;
}
.fl-guide-save:hover,
.fl-guide-save:focus-visible { border-color: var(--fl-primary, #2F7D7E); background: var(--fl-primary-soft, #E8F3F2); outline: none; }
.fl-guide-save.is-saved { background: var(--fl-primary, #2F7D7E); border-color: var(--fl-primary, #2F7D7E); color: #fff; }
.fl-rail__saved { margin-top: 18px; padding-top: 2px; }
.fl-saved-guide {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid var(--fl-line, #D7E2DF);
  border-radius: 10px;
  padding: 9px 10px;
  background: #fff;
  min-width: 0;
}
.fl-saved-guide + .fl-saved-guide { margin-top: 7px; }
.fl-saved-guide__body { min-width: 0; }
.fl-saved-guide__stage { display: block; margin-bottom: 2px; font-size: .68rem; font-weight: 700; color: var(--fl-text-muted, #6B7F7B); text-transform: uppercase; letter-spacing: .03em; }
.fl-saved-guide__title { display: block; color: var(--fl-ink, #1D2B2E); font-size: .83rem; font-weight: 700; line-height: 1.3; overflow-wrap: anywhere; }
.fl-saved-guide__title:hover { color: var(--fl-primary, #2F7D7E); }
.fl-saved-guide__remove {
  flex: 0 0 auto;
  border: 0;
  background: transparent;
  color: var(--fl-text-muted, #6B7F7B);
  font-size: .72rem;
  font-weight: 700;
  cursor: pointer;
  padding: 2px 0;
}
.fl-saved-guide__remove:hover,
.fl-saved-guide__remove:focus-visible { color: var(--fl-primary, #2F7D7E); text-decoration: underline; outline: none; }
@media (max-width: 520px) {
  .fl-saved-guide { flex-direction: column; }
}

/* ---------- Journey V2.3B return-visit continuation ---------- */
.fl-return-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 12px 0 14px;
  padding: 13px 14px;
  border: 1px solid rgba(47, 125, 126, .24);
  border-left: 4px solid var(--fl-primary, #2F7D7E);
  border-radius: 16px;
  background: #fbfdfb;
  box-shadow: 0 10px 24px rgba(20, 38, 42, .06);
}
.fl-return-card__text { min-width: 0; }
.fl-return-card__eyebrow {
  margin: 0 0 2px;
  color: var(--fl-primary, #2F7D7E);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.fl-return-card__copy,
.fl-return-card__question {
  margin: 0;
  color: var(--fl-ink, #1D2B2E);
  font-size: .9rem;
  line-height: 1.35;
}
.fl-return-card__question { margin-top: 2px; color: var(--fl-text-muted, #5D6F73); font-weight: 700; }
.fl-return-card__actions { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 8px; }
.fl-return-card__btn {
  border: 1px solid rgba(47, 125, 126, .26);
  border-radius: 999px;
  background: #fff;
  color: var(--fl-navy, #223B53);
  cursor: pointer;
  font-size: .82rem;
  font-weight: 800;
  padding: 8px 11px;
  white-space: nowrap;
}
.fl-return-card__btn--primary { background: var(--fl-primary, #2F7D7E); border-color: var(--fl-primary, #2F7D7E); color: #fff; }
.fl-return-card__btn:hover,
.fl-return-card__btn:focus-visible { border-color: var(--fl-primary, #2F7D7E); outline: none; box-shadow: 0 0 0 3px rgba(47, 125, 126, .15); }
@media (max-width: 700px) {
  .fl-return-card { align-items: stretch; flex-direction: column; }
  .fl-return-card__actions { justify-content: flex-start; }
  .fl-return-card__btn { white-space: normal; }
}

/* PR50 shared state-guide IA freeze helpers */
.rr-breadcrumb {
  max-width: 1180px;
  margin: 14px auto 0;
  padding: 0 20px;
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  align-items: center;
  overflow-x: auto;
  white-space: nowrap;
  color: rgba(35, 45, 56, 0.66);
  font: 600 0.82rem/1.4 system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.rr-breadcrumb a { color: inherit; text-decoration: none; }
.rr-breadcrumb a:hover { text-decoration: underline; }
.rr-breadcrumb [aria-current="page"] { color: rgba(20, 30, 42, 0.86); }
.rr-state-nav {
  display: flex;
  flex-wrap: nowrap !important;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
}
.rr-state-nav > a { flex: 0 0 auto; }
