:root {
  --jl-font-serif: "Source Serif 4", "Iowan Old Style", "Palatino Linotype", Georgia, serif;
  --jl-font-sans: "IBM Plex Sans", "Avenir Next", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --jl-canvas: #ffffff;
  --jl-surface: #ffffff;
  --jl-surface-cool: #f7f8fb;
  --jl-surface-mineral: #edf2f7;
  --jl-ink: #11151d;
  --jl-ink-soft: #2f3743;
  --jl-muted: #46515f;
  --jl-muted-quiet: #5f6b7a;
  --jl-line: #d4dbe6;
  --jl-line-strong: #8a98b0;
  --jl-accent: #465b86;
  --jl-accent-clear: #7188b8;
  --jl-accent-soft: rgba(70, 91, 134, 0.12);
  --jl-accent-focus: rgba(113, 136, 184, 0.34);
  --jl-header: #0f141f;
  --jl-header-line: rgba(255, 255, 255, 0.18);
  --jl-shadow-minimal: 0 1px 2px rgba(13, 19, 29, 0.05), 0 5px 14px rgba(13, 19, 29, 0.045);
  --jl-radius-field: 6px;
  --jl-radius-control: 7px;
  --jl-radius-surface: 8px;
  --jl-wrap: min(936px, calc(100% - 48px));
  --jl-duration: 180ms;
  --jl-ease: cubic-bezier(0.2, 0, 0, 1);
}

html {
  scroll-padding-top: 88px;
  overflow-x: clip;
}

body.route-page {
  margin: 0;
  background: var(--jl-canvas);
  color: var(--jl-ink);
  font: 400 17px/1.66 var(--jl-font-sans);
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

.route-page button,
.route-page input,
.route-page select,
.route-page textarea {
  font-family: var(--jl-font-sans);
}

.route-page a {
  color: inherit;
  text-decoration-color: currentColor;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.route-page :focus-visible {
  outline: 3px solid var(--jl-accent-focus);
  outline-offset: 4px;
}

.route-site-header {
  height: 72px;
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--jl-header);
  border: 0;
  border-bottom: 1px solid var(--jl-header-line);
  color: #ffffff;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.route-header-inner {
  width: var(--jl-wrap);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.route-brand-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  max-width: min(286px, 54vw);
  color: #ffffff;
  line-height: 0;
  text-decoration: none;
}

.route-brand-link picture,
.route-brand-logo {
  display: block;
}

.route-brand-logo {
  width: auto;
  height: 52px;
  aspect-ratio: 400 / 84;
}

.route-site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 400;
  white-space: nowrap;
}

.route-site-nav a,
.route-nav-menu-trigger {
  color: inherit;
  text-decoration: none;
  transition: color var(--jl-duration) var(--jl-ease);
}

.route-nav-menu {
  position: relative;
}

.route-nav-menu-trigger,
.route-mobile-menu-toggle {
  border: 0;
  background: transparent;
  color: inherit;
  padding: 0;
}

.route-nav-menu-trigger {
  font-size: inherit;
}

.route-site-nav a:hover,
.route-site-nav a:focus-visible,
.route-nav-menu-trigger:hover,
.route-nav-menu-trigger:focus-visible {
  color: #ffffff;
}

.route-nav-menu-panel {
  position: absolute;
  top: calc(100% + 16px);
  right: -18px;
  z-index: 120;
  display: grid;
  gap: 2px;
  min-width: 190px;
  padding: 10px;
  background: var(--jl-header);
  border: 1px solid var(--jl-header-line);
  border-radius: 6px;
  box-shadow: 0 8px 20px rgba(13, 19, 29, 0.16);
  color: rgba(255, 255, 255, 0.82);
}

.route-nav-menu-panel[hidden] {
  display: none;
}

.route-nav-menu-panel a {
  padding: 8px 9px;
  border-radius: 4px;
}

.route-nav-menu-panel a:hover,
.route-nav-menu-panel a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
}

.route-mobile-menu-toggle,
.route-mobile-menu {
  display: none;
}

.route-mobile-menu-toggle {
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 6px;
}

.route-mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  background: #ffffff;
  transition: transform var(--jl-duration) var(--jl-ease), opacity var(--jl-duration) var(--jl-ease);
}

.route-mobile-menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.route-mobile-menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.route-mobile-menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.route-mobile-menu {
  position: absolute;
  top: 72px;
  right: max(17px, calc((100vw - var(--jl-wrap)) / 2));
  z-index: 120;
  width: min(286px, calc(100vw - 34px));
  padding: 10px;
  background: var(--jl-header);
  border: 1px solid var(--jl-header-line);
  border-radius: 6px;
  box-shadow: 0 10px 24px rgba(13, 19, 29, 0.18);
}

.route-mobile-menu nav,
.route-mobile-menu-group,
.route-mobile-services-panel {
  display: grid;
}

.route-mobile-menu a,
.route-mobile-services-trigger {
  padding: 10px;
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.route-mobile-services-trigger {
  appearance: none;
  border: 0;
  background: transparent;
  border-radius: 4px;
  cursor: pointer;
  font: inherit;
  text-align: left;
  width: 100%;
}

.route-mobile-services-trigger {
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
}

.route-mobile-services-panel[hidden] {
  display: none;
}

.route-mobile-services-panel a {
  padding-left: 22px;
}

.route-mobile-menu a:hover,
.route-mobile-menu a:focus-visible,
.route-mobile-services-trigger:hover,
.route-mobile-services-trigger:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
}

.route-page > header:not(.route-site-header) {
  position: static;
  top: auto;
  z-index: auto;
}

.route-page h1,
.route-page h2,
.route-page h3 {
  color: var(--jl-ink);
}

.route-page input,
.route-page select,
.route-page textarea {
  border-color: var(--jl-line-strong);
  border-radius: var(--jl-radius-field);
  color: var(--jl-ink);
}

.route-page input:focus,
.route-page select:focus,
.route-page textarea:focus {
  border-color: var(--jl-accent-clear);
  box-shadow: 0 0 0 3px var(--jl-accent-focus), inset 0 1px 1px rgba(13, 19, 29, 0.03);
}

.route-page button {
  transition: background var(--jl-duration) var(--jl-ease), color var(--jl-duration) var(--jl-ease), border-color var(--jl-duration) var(--jl-ease), box-shadow var(--jl-duration) var(--jl-ease), transform var(--jl-duration) var(--jl-ease);
}

.route-page .privacy,
.route-page .notice,
.route-page .successBox,
.route-page .inlineWarn,
.route-page .resource {
  color: var(--jl-muted);
}

/* Leave preparation route */
.route-leave .shell {
  max-width: 1032px;
  padding: 42px 24px 84px;
}

.route-leave .brandbar {
  padding: 0 0 22px;
  border-bottom: 1px solid var(--jl-line);
}

.route-leave .brand {
  color: var(--jl-ink);
  font-family: var(--jl-font-sans);
  font-weight: 600;
  letter-spacing: 0;
}

.route-leave .brand small,
.route-leave .secure {
  color: var(--jl-muted);
  font-weight: 400;
}

.route-leave .card {
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-surface);
  box-shadow: var(--jl-shadow-minimal);
}

.route-leave .cover {
  margin-top: 38px;
  padding: clamp(36px, 5vw, 58px);
}

.route-leave .eyebrow,
.route-leave .scale-key,
.route-leave .rating-sub,
.route-leave .review-row .k {
  color: var(--jl-muted);
}

.route-leave h1,
.route-leave h2,
.route-leave .next-box h3 {
  font-family: var(--jl-font-serif);
  letter-spacing: 0;
}

.route-leave h1 {
  font-size: clamp(42px, 6.4vw, 64px);
  line-height: 1.02;
}

.route-leave h2 {
  font-size: clamp(31px, 4.4vw, 43px);
}

.route-leave .lead,
.route-leave .step-intro {
  color: var(--jl-ink-soft);
}

.route-leave .meta,
.route-leave .notice,
.route-leave .choice,
.route-leave .rating,
.route-leave .rate-label {
  border-color: var(--jl-line);
  border-radius: var(--jl-radius-control);
}

.route-leave .meta,
.route-leave .notice {
  background: var(--jl-surface-cool);
}

.route-leave .choice:hover {
  border-color: var(--jl-line-strong);
}

.route-leave .choice input,
.route-leave .rate-label input {
  accent-color: var(--jl-accent);
}

.route-leave .choice:has(input:checked),
.route-leave .rate-label:has(input:checked) {
  border-color: var(--jl-accent);
  box-shadow: 0 0 0 1px var(--jl-accent);
  background: var(--jl-accent-soft);
  color: var(--jl-ink);
}

.route-leave .btn {
  border-radius: var(--jl-radius-control);
  border-color: var(--jl-line-strong);
  font-weight: 600;
}

.route-leave .btn.primary,
.route-leave .progress-bar,
.route-leave .next-box {
  background: var(--jl-accent);
  border-color: var(--jl-accent);
  color: #ffffff;
}

.route-leave .progress-track {
  background: var(--jl-surface-mineral);
}

.route-leave .privacy {
  text-align: left;
}

/* First appointment forms route */
.route-forms > header:not(.route-site-header) {
  background: var(--jl-surface);
  border-bottom: 1px solid var(--jl-line);
  padding: 28px 26px 22px;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.route-forms .headerInner,
.route-forms .app,
.route-forms .progressWrap,
.route-forms .stepNav,
.route-forms .main {
  max-width: 936px;
}

.route-forms .headerInner {
  width: var(--jl-wrap);
}

.route-forms header:not(.route-site-header) h1 {
  color: var(--jl-accent);
  font-family: var(--jl-font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.route-forms .statusPill,
.route-forms .progressLabel,
.route-forms .panelTitle p,
.route-forms .small,
.route-forms .sectionBreak p,
.route-forms .legalText,
.route-forms .reviewCard ul {
  color: var(--jl-muted);
}

.route-forms .app {
  padding: 42px 24px 84px;
}

.route-forms .progressTrack {
  background: var(--jl-surface-mineral);
}

.route-forms .progressBar {
  background: var(--jl-accent);
}

.route-forms .stepNav {
  gap: 10px;
}

.route-forms .stepBtn {
  color: var(--jl-muted-quiet);
  border-radius: var(--jl-radius-control) !important;
}

.route-forms .stepBtn.active {
  color: var(--jl-ink);
}

.route-forms .stepBtn.done {
  color: var(--jl-accent);
}

.route-forms .panel {
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-surface);
  box-shadow: var(--jl-shadow-minimal);
  padding: clamp(30px, 5vw, 52px);
}

.route-forms .panelTitle {
  text-align: left;
}

.route-forms .panelTitle h2,
.route-forms .sectionBreak h3,
.route-forms .legalText h3,
.route-forms .reviewCard h3 {
  font-family: var(--jl-font-serif);
  letter-spacing: 0;
}

.route-forms .panelTitle h2 {
  font-size: clamp(34px, 4.8vw, 46px);
  line-height: 1.04;
}

.route-forms .successBox,
.route-forms .inlineWarn,
.route-forms .legalText,
.route-forms .reviewCard,
.route-forms .checkItem,
.route-forms .choiceCard,
.route-forms .pillCheck,
.route-forms .scoreBox,
.route-forms .sigBox,
.route-forms .scaleTable {
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-control);
  background: var(--jl-surface);
}

.route-forms .successBox,
.route-forms .inlineWarn,
.route-forms .scoreBox {
  background: var(--jl-surface-cool);
}

.route-forms .checkItem:has(input:checked),
.route-forms .choiceCard:has(input:checked),
.route-forms .pillCheck:has(input:checked) {
  border-color: var(--jl-accent-clear);
  background: var(--jl-accent-soft);
  color: var(--jl-ink);
}

.route-forms input,
.route-forms textarea,
.route-forms select,
.route-forms .checkItem input,
.route-forms .choiceCard input,
.route-forms .pillCheck input,
.route-forms .scaleTable input {
  accent-color: var(--jl-accent);
}

.route-forms button,
.route-forms .actionLink {
  background: var(--jl-accent);
  border-radius: var(--jl-radius-control) !important;
  color: #ffffff;
  font-weight: 600;
}

.route-forms button:hover,
.route-forms .actionLink:hover {
  background: #394d73;
}

.route-forms button.secondary {
  background: #ffffff;
  border: 1px solid var(--jl-line-strong);
  color: var(--jl-ink);
}

.route-forms button.secondary:hover {
  background: var(--jl-surface-cool);
}

.route-forms .stepBtn {
  background: transparent;
  border: 0;
  color: var(--jl-muted-quiet);
  box-shadow: none;
}

.route-forms .stepBtn:hover,
.route-forms .stepBtn:focus-visible {
  background: var(--jl-accent-soft);
  color: var(--jl-ink);
}

.route-forms .required {
  color: #8c2f39;
}

/* Deep Rest route */
.route-deeprest {
  background: var(--jl-canvas);
}

.route-deeprest .app {
  width: min(980px, calc(100% - 48px));
  max-width: 980px;
  padding: 0 0 90px;
}

.route-deeprest .topbar {
  margin: 0;
  padding: 13px 24px;
  background: var(--jl-surface);
  border-bottom: 1px solid var(--jl-line);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.route-deeprest .top-inner {
  max-width: 936px;
}

.route-deeprest .brand,
.route-deeprest .section-label,
.route-deeprest .media-label,
.route-deeprest .day-pill,
.route-deeprest .eyebrow {
  letter-spacing: 0.08em;
}

.route-deeprest .brand {
  color: var(--jl-ink);
  font-family: var(--jl-font-sans);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.route-deeprest .progress-track {
  background: var(--jl-surface-mineral);
}

.route-deeprest .progress-bar {
  background: var(--jl-accent);
}

.route-deeprest .progress-label,
.route-deeprest .section-label,
.route-deeprest .media-label,
.route-deeprest .hero p,
.route-deeprest .setup-copy,
.route-deeprest .info-card p,
.route-deeprest .morning-card p,
.route-deeprest .previous-day-sheet p,
.route-deeprest .chip,
.route-deeprest .anchor label,
.route-deeprest .rate-group > span,
.route-deeprest .reflection label,
.route-deeprest .sheet-rating > span,
.route-deeprest .sheet-title span,
.route-deeprest .footer {
  color: var(--jl-muted);
}

.route-deeprest .hero {
  padding: 76px 0 46px;
  text-align: left;
}

.route-deeprest .hero h1 {
  font-family: var(--jl-font-serif);
  font-size: clamp(40px, 6.2vw, 68px);
  line-height: 1.03;
  letter-spacing: 0;
  max-width: 760px;
  margin-left: 0;
}

.route-deeprest .hero p {
  max-width: 680px;
  margin-left: 0;
  font-size: 19px;
  line-height: 1.62;
}

.route-deeprest .eyebrow,
.route-deeprest .day-pill,
.route-deeprest .info-card.action span,
.route-deeprest .sheet-link,
.route-deeprest .resource a {
  color: var(--jl-accent);
}

.route-deeprest .hero-meta {
  justify-content: flex-start;
}

.route-deeprest .chip,
.route-deeprest .setup,
.route-deeprest .day-card,
.route-deeprest .finish,
.route-deeprest .info-card,
.route-deeprest .morning-card,
.route-deeprest .previous-day-sheet,
.route-deeprest .notice,
.route-deeprest .anchor,
.route-deeprest .sheet-rating {
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-surface);
  box-shadow: none;
}

.route-deeprest .setup,
.route-deeprest .day-card,
.route-deeprest .finish {
  box-shadow: var(--jl-shadow-minimal);
}

.route-deeprest .setup,
.route-deeprest .day-card,
.route-deeprest .finish {
  padding: clamp(26px, 4.2vw, 40px);
}

.route-deeprest .setup h2,
.route-deeprest .day-card h2,
.route-deeprest .finish h2 {
  font-family: var(--jl-font-serif);
  letter-spacing: 0;
  font-size: clamp(31px, 4.2vw, 44px);
}

.route-deeprest .video-shell {
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-surface);
  box-shadow: var(--jl-shadow-minimal);
}

.route-deeprest .info-card.action,
.route-deeprest .info-card.wind,
.route-deeprest .morning-card,
.route-deeprest .previous-day-sheet,
.route-deeprest .notice,
.route-deeprest .anchor,
.route-deeprest textarea,
.route-deeprest .check-row span {
  background: var(--jl-surface-cool);
}

.route-deeprest .day-jump {
  max-width: 100%;
  padding: 8px 0 18px;
}

.route-deeprest .day-jump button,
.route-deeprest .rate-dot,
.route-deeprest .sheet-rate,
.route-deeprest .done-ring {
  border: 1px solid var(--jl-line-strong);
  box-shadow: none;
}

.route-deeprest .day-jump button.active,
.route-deeprest .rate-dot.selected,
.route-deeprest .sheet-rate.selected,
.route-deeprest .next-button {
  background: var(--jl-accent);
  border-color: var(--jl-accent);
  color: #ffffff;
}

.route-deeprest .day-jump button.done,
.route-deeprest .done-ring.complete,
.route-deeprest .check-row input:checked + span {
  background: var(--jl-accent-soft);
  border-color: var(--jl-accent);
  color: var(--jl-accent);
  box-shadow: none;
}

.route-deeprest .audio-card {
  background: var(--jl-header);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--jl-radius-surface);
  box-shadow: 0 1px 2px rgba(13, 19, 29, 0.14), 0 4px 12px rgba(13, 19, 29, 0.1);
}

.route-deeprest .audio-top span,
.route-deeprest .time-row {
  color: rgba(255, 255, 255, 0.74);
}

.route-deeprest .play {
  border-radius: 50%;
}

.route-deeprest textarea {
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-field);
}

.route-deeprest .fab {
  right: 22px;
  bottom: 22px;
  border-radius: var(--jl-radius-control);
  background: var(--jl-accent);
  box-shadow: var(--jl-shadow-minimal);
}

/* FMLA paid-search landing page */
.route-fmla {
  min-height: 100vh;
}

.fmla-wrap,
.route-footer-inner {
  width: var(--jl-wrap);
  margin: 0 auto;
}

.fmla-hero {
  overflow: hidden;
  padding: 82px 0 86px;
  background: var(--jl-canvas);
  border-bottom: 1px solid var(--jl-line);
}

.fmla-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.fmla-inquiry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 72px;
  align-items: start;
}

.fmla-hero-copy {
  max-width: 760px;
}

.fmla-wave-art {
  display: block;
  max-width: 100%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.fmla-hero-art {
  width: min(430px, 100%);
  justify-self: end;
  --fmla-art-opacity: 0.78;
  opacity: var(--fmla-art-opacity);
}

.route-section-label {
  margin: 0 0 18px;
  color: var(--jl-accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
}

.fmla-hero h1,
.fmla-section h2,
.fmla-final-cta h2,
.fmla-inquiry-card h3 {
  margin: 0;
  color: var(--jl-ink);
  font-family: var(--jl-font-serif);
  font-weight: 520;
  letter-spacing: 0;
}

.fmla-hero h1 {
  max-width: 760px;
  font-size: clamp(41px, 5.2vw, 62px);
  line-height: 1.03;
}

.fmla-hero p,
.fmla-section-heading p,
.fmla-process-list span,
.fmla-final-cta p,
.fmla-helper,
.fmla-field small {
  color: var(--jl-ink-soft);
}

.fmla-hero-copy > p {
  max-width: 720px;
  margin: 26px 0 0;
  font-size: 18px;
  line-height: 1.66;
}

.fmla-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px 22px;
  margin-top: 32px;
}

.fmla-hero-actions span {
  max-width: 420px;
  color: var(--jl-muted);
  font-size: 14px;
  line-height: 1.5;
}

.fmla-primary-link,
.fmla-primary-button,
.fmla-secondary-button,
.fmla-small-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 43px;
  border-radius: var(--jl-radius-control);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.fmla-primary-link,
.fmla-primary-button {
  border: 1px solid var(--jl-accent);
  background: var(--jl-accent);
  color: #ffffff;
  padding: 11px 17px;
}

.route-fmla .fmla-primary-link {
  color: #ffffff;
}

.fmla-primary-link:hover,
.fmla-primary-link:focus-visible,
.fmla-primary-button:hover,
.fmla-primary-button:focus-visible {
  background: #394d73;
  border-color: #394d73;
}

.fmla-primary-button:disabled {
  border-color: var(--jl-line-strong);
  background: var(--jl-surface-mineral);
  color: var(--jl-muted);
  cursor: not-allowed;
}

.fmla-secondary-button,
.fmla-small-button {
  border: 1px solid var(--jl-line-strong);
  background: var(--jl-surface);
  color: var(--jl-ink);
  padding: 10px 15px;
}

.fmla-secondary-button:hover,
.fmla-secondary-button:focus-visible,
.fmla-small-button:hover,
.fmla-small-button:focus-visible {
  background: var(--jl-surface-cool);
}

.fmla-secondary-button:disabled {
  color: var(--jl-muted-quiet);
  cursor: not-allowed;
  opacity: 0.72;
}

.fmla-inquiry-card {
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-surface);
  box-shadow: var(--jl-shadow-minimal);
}

.fmla-section {
  padding: 86px 0;
  background: var(--jl-canvas);
  border-bottom: 1px solid var(--jl-line);
}

.fmla-process-section,
.fmla-inquiry-section {
  background: var(--jl-surface-cool);
}

.fmla-experience-section {
  overflow: hidden;
}

.fmla-section-heading {
  max-width: 620px;
}

.fmla-section-heading h2,
.fmla-final-cta h2 {
  font-size: clamp(32px, 4.2vw, 46px);
  line-height: 1.06;
}

.fmla-section-heading p:not(.route-section-label) {
  margin: 18px 0 0;
}

.fmla-editorial-grid {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: clamp(56px, 8vw, 104px);
  align-items: start;
}

.fmla-experience-art {
  width: min(420px, 96%);
  margin-top: clamp(36px, 7vw, 70px);
  --fmla-art-opacity: 0.7;
  opacity: var(--fmla-art-opacity);
}

.fmla-experience-passages {
  display: grid;
  gap: 30px;
}

.fmla-editorial-item {
  padding-bottom: 30px;
  border-bottom: 1px solid var(--jl-line);
}

.fmla-editorial-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.fmla-editorial-item span {
  display: block;
  color: var(--jl-accent);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.fmla-editorial-item h3 {
  margin: 0;
  font-family: var(--jl-font-serif);
  font-size: clamp(24px, 2.6vw, 31px);
  font-weight: 520;
  line-height: 1.15;
}

.fmla-editorial-item p {
  max-width: 560px;
  margin: 14px 0 0;
  color: var(--jl-muted);
  line-height: 1.62;
}

.fmla-split {
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.fmla-leave-composition {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(280px, 0.86fr);
  grid-template-areas:
    "heading art"
    "list art";
  gap: 34px clamp(58px, 7vw, 96px);
  align-items: center;
}

.fmla-leave-composition .fmla-section-heading {
  grid-area: heading;
}

.fmla-leave-art {
  grid-area: art;
  width: min(500px, 100%);
  justify-self: end;
  --fmla-art-opacity: 0.86;
  opacity: var(--fmla-art-opacity);
}

.fmla-help-list {
  grid-area: list;
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--jl-line-strong);
}

.fmla-help-list li {
  padding: 13px 0;
  border-bottom: 1px solid var(--jl-line);
  color: var(--jl-ink-soft);
  font-weight: 500;
}

.fmla-process-intro {
  max-width: 520px;
}

.fmla-process-list {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.9fr) minmax(0, 1.12fr);
  gap: clamp(26px, 5.5vw, 62px);
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: fmla-process;
  align-items: start;
}

.fmla-process-list li {
  position: relative;
  min-height: 0;
  padding: 18px 0 0;
  border-top: 1px solid var(--jl-line-strong);
  counter-increment: fmla-process;
}

.fmla-process-list li:nth-child(2) {
  margin-top: 30px;
}

.fmla-process-list li:nth-child(3) {
  margin-top: 8px;
}

.fmla-process-list li::before {
  position: static;
  width: 30px;
  height: 30px;
  margin-bottom: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--jl-line-strong);
  border-radius: 50%;
  background: var(--jl-surface-cool);
  color: var(--jl-accent);
  content: counter(fmla-process);
  font-size: 13px;
  font-weight: 600;
}

.fmla-process-list strong,
.fmla-process-list span {
  display: block;
}

.fmla-process-list strong {
  color: var(--jl-ink);
}

.fmla-process-list span {
  margin-top: 4px;
  font-size: 15px;
  line-height: 1.55;
}

.fmla-process-art {
  width: min(780px, 100%);
  margin: 38px 0 0;
  --fmla-art-opacity: 0.82;
  opacity: var(--fmla-art-opacity);
}

.fmla-inquiry-art {
  width: min(340px, 100%);
  margin-top: 32px;
  --fmla-art-opacity: 0.64;
  opacity: var(--fmla-art-opacity);
}

.fmla-inquiry-card {
  padding: clamp(26px, 4vw, 42px);
}

.fmla-card-top {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--jl-muted);
  font-size: 13px;
  font-weight: 600;
}

.fmla-progress {
  height: 4px;
  margin: 14px 0 30px;
  overflow: hidden;
  background: var(--jl-surface-mineral);
  border-radius: 999px;
}

.fmla-progress span {
  display: block;
  width: 14%;
  height: 100%;
  background: var(--jl-accent);
  transition: width var(--jl-duration) var(--jl-ease);
}

.fmla-live {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.fmla-step h3 {
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.12;
}

.fmla-helper,
.fmla-privacy-note {
  margin: 14px 0 0;
  font-size: 15px;
  line-height: 1.58;
}

.fmla-privacy-note,
.fmla-unavailable,
.fmla-error,
.fmla-confirmation {
  padding: 14px 15px;
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-control);
  background: var(--jl-surface-cool);
  color: var(--jl-muted);
  font-size: 14px;
}

.fmla-options {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.fmla-option {
  width: 100%;
  min-height: 58px;
  padding: 14px 15px;
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-control);
  background: var(--jl-surface);
  color: var(--jl-ink-soft);
  text-align: left;
}

.fmla-option b,
.fmla-option span {
  display: block;
}

.fmla-option b {
  color: var(--jl-ink);
  font-weight: 600;
}

.fmla-option span {
  margin-top: 4px;
  color: var(--jl-muted);
  font-size: 14px;
}

.fmla-option:hover {
  border-color: var(--jl-line-strong);
  background: var(--jl-surface-cool);
}

.fmla-option.selected {
  border-color: var(--jl-accent);
  background: var(--jl-accent-soft);
  box-shadow: 0 0 0 1px var(--jl-accent);
}

.fmla-branch {
  margin-top: 24px;
  padding: 18px;
  border: 1px solid var(--jl-line);
  border-radius: var(--jl-radius-control);
  background: var(--jl-surface-cool);
}

.fmla-branch h4 {
  margin: 0;
  color: var(--jl-ink);
  font-size: 16px;
}

.fmla-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.fmla-field {
  display: grid;
  gap: 7px;
  color: var(--jl-ink);
  font-size: 14px;
  font-weight: 600;
}

.fmla-field input,
.fmla-field textarea {
  width: 100%;
  padding: 12px 13px;
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-field);
  color: var(--jl-ink);
  font: 400 16px/1.5 var(--jl-font-sans);
}

.fmla-field textarea {
  min-height: 128px;
  resize: vertical;
}

.fmla-field small {
  font-size: 12px;
  font-weight: 400;
}

.fmla-note-field,
.fmla-review,
.fmla-edit-list,
.fmla-error,
.fmla-unavailable,
.fmla-confirmation {
  grid-column: 1 / -1;
}

.fmla-review {
  display: grid;
  margin-top: 24px;
  border-top: 1px solid var(--jl-line-strong);
}

.fmla-review-row {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--jl-line);
  font-size: 14px;
}

.fmla-review-row b {
  color: var(--jl-muted);
  font-weight: 500;
}

.fmla-review-row span {
  color: var(--jl-ink);
}

.fmla-edit-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.fmla-error {
  margin-top: 22px;
  border-color: rgba(140, 47, 57, 0.35);
  background: rgba(140, 47, 57, 0.07);
  color: #7d2430;
}

.fmla-unavailable,
.fmla-confirmation {
  margin-top: 22px;
}

.fmla-confirmation h3 {
  margin: 0 0 8px;
  font-family: var(--jl-font-serif);
  font-size: 24px;
}

.fmla-confirmation p {
  margin: 8px 0 0;
}

.fmla-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--jl-line);
}

.fmla-faq-list {
  border-top: 1px solid var(--jl-line-strong);
}

.route-fmla .accordion-item {
  border-bottom: 1px solid var(--jl-line);
}

.route-fmla .accordion-item h3 {
  margin: 0;
}

.route-fmla .accordion-trigger {
  width: 100%;
  min-height: 66px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--jl-ink);
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}

.route-fmla .accordion-trigger span:first-child {
  font-family: var(--jl-font-serif);
  font-size: 22px;
  font-weight: 520;
  line-height: 1.24;
}

.route-fmla .accordion-mark {
  position: relative;
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
}

.route-fmla .accordion-mark::before,
.route-fmla .accordion-mark::after {
  position: absolute;
  inset: 9px 2px auto;
  display: block;
  height: 1px;
  background: var(--jl-accent-clear);
  content: "";
  transition: transform var(--jl-duration) var(--jl-ease);
}

.route-fmla .accordion-mark::after {
  transform: rotate(90deg);
}

.route-fmla .accordion-item.is-open {
  margin: 0 -10px;
  padding: 0 10px;
  background: var(--jl-surface);
  border: 1px solid var(--jl-line-strong);
  border-radius: var(--jl-radius-control);
  box-shadow: var(--jl-shadow-minimal);
}

.route-fmla .accordion-item.is-open + .accordion-item {
  border-top-color: transparent;
}

.route-fmla .accordion-item.is-open .accordion-mark::after {
  transform: rotate(0deg);
}

.route-fmla .accordion-panel {
  color: var(--jl-muted);
  padding: 0 42px 25px 0;
}

.route-fmla .accordion-panel p {
  margin: 0;
}

.fmla-final-cta {
  padding: 76px 0;
  background: var(--jl-surface-cool);
  border-bottom: 1px solid var(--jl-line);
}

.fmla-final-cta .fmla-wrap {
  max-width: 720px;
}

.fmla-final-cta p {
  margin: 18px 0 26px;
}

.js .fmla-reveal {
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 560ms var(--jl-ease),
    transform 560ms var(--jl-ease);
  transition-delay: var(--fmla-reveal-delay, 0ms);
}

.js .fmla-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .fmla-wave-art.fmla-reveal.is-visible {
  opacity: var(--fmla-art-opacity);
}

.route-footer {
  padding: 28px 0;
  background: var(--jl-surface);
  border-top: 1px solid var(--jl-line);
  color: var(--jl-muted);
  font-size: 13px;
}

.route-footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.route-footer a {
  color: var(--jl-ink-soft);
}

@media (prefers-reduced-motion: reduce) {
  .route-page *,
  .route-page *::before,
  .route-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 760px) {
  :root {
    --jl-wrap: min(100% - 34px, 620px);
  }

  body.route-page {
    font-size: 16px;
    line-height: 1.62;
  }

  .route-site-nav {
    display: none;
  }

  .route-header-inner {
    gap: 18px;
  }

  .route-site-header {
    position: sticky;
  }

  .route-mobile-menu-toggle {
    display: inline-flex;
    flex: 0 0 auto;
  }

  .route-mobile-menu:not([hidden]) {
    display: block;
  }

  .route-brand-link {
    max-width: min(230px, calc(100vw - 96px));
  }

  .route-brand-logo {
    width: min(230px, calc(100vw - 96px));
    height: auto;
    aspect-ratio: 400 / 84;
  }

  .route-leave .shell,
  .route-forms .app {
    padding: 30px 17px 70px;
  }

  .route-leave .brandbar {
    align-items: flex-start;
  }

  .route-leave .cover {
    margin-top: 26px;
    padding: 28px;
  }

  .route-leave h1 {
    font-size: 38px;
  }

  .route-leave .meta-grid,
  .route-leave .choice-grid,
  .route-leave .row2 {
    grid-template-columns: 1fr;
  }

  .route-forms > header:not(.route-site-header) {
    padding: 24px 17px 18px;
  }

  .route-forms .headerInner {
    width: var(--jl-wrap);
  }

  .route-forms .panel {
    padding: 30px 22px;
  }

  .route-forms .panelTitle h2 {
    font-size: 34px;
  }

  .route-forms .actions,
  .route-forms .actionsLeft,
  .route-forms .actionsRight {
    width: 100%;
  }

  .route-forms .actions button,
  .route-forms .actions a {
    flex: 1 1 150px;
  }

  .route-deeprest .app {
    width: min(100% - 34px, 620px);
    padding-bottom: 78px;
  }

  .route-deeprest .topbar {
    padding: 12px 17px;
  }

  .route-deeprest .top-inner {
    gap: 12px;
  }

  .route-deeprest .hero {
    padding: 56px 0 34px;
  }

  .route-deeprest .hero h1 {
    font-size: 38px;
  }

  .route-deeprest .hero p {
    font-size: 17px;
  }

  .route-deeprest .setup,
  .route-deeprest .day-card,
  .route-deeprest .finish {
    padding: 22px;
  }

  .route-deeprest .anchor-grid,
  .route-deeprest .content-grid,
  .route-deeprest .reflection,
  .route-deeprest .finish-grid,
  .route-deeprest .rating-grid {
    grid-template-columns: 1fr;
  }

  .route-deeprest .fab {
    right: 17px;
    bottom: 17px;
    max-width: calc(100vw - 34px);
  }

  .fmla-hero {
    padding: 62px 0 68px;
  }

  .fmla-hero-grid,
  .fmla-inquiry-grid,
  .fmla-split,
  .fmla-editorial-grid,
  .fmla-leave-composition,
  .fmla-process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fmla-leave-composition {
    grid-template-areas:
      "heading"
      "art"
      "list";
  }

  .fmla-hero-art {
    width: min(320px, 92vw);
    justify-self: start;
    --fmla-art-opacity: 0.62;
  }

  .fmla-experience-art,
  .fmla-leave-art,
  .fmla-process-art,
  .fmla-inquiry-art {
    width: 100%;
    max-width: 390px;
    justify-self: start;
  }

  .fmla-experience-art {
    margin-top: 26px;
  }

  .fmla-process-list li:nth-child(2),
  .fmla-process-list li:nth-child(3) {
    margin-top: 0;
  }

  .fmla-section,
  .fmla-final-cta {
    padding: 64px 0;
  }

  .fmla-fields {
    grid-template-columns: 1fr;
  }

  .fmla-review-row {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .fmla-actions,
  .route-footer-inner {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .route-leave .shell,
  .route-forms .app {
    padding-left: 14px;
    padding-right: 14px;
  }

  .route-leave .cover {
    padding: 26px 22px;
  }

  .route-forms .stepNav {
    gap: 4px;
  }

  .route-forms .stepText b {
    font-size: 10px;
  }

  .route-deeprest .topbar {
    padding-left: 14px;
    padding-right: 14px;
  }

  .route-deeprest .fab {
    position: static;
    width: 100%;
    margin: 18px auto 0;
    display: flex;
    justify-content: center;
  }

  .fmla-hero h1 {
    font-size: 38px;
  }

  .fmla-inquiry-card {
    padding: 22px;
  }

  .route-fmla .accordion-trigger span:first-child {
    font-size: 20px;
  }
}
