/* SelectPayroll Implementation Kickoff portal.
   Brand tokens match selecthcm.com and the training library, so the three
   properties read as one system. */

:root {
  /* Brand */
  --sage: #98B4A0;
  --sage-deep: #7c9a86;
  --pine: #1C231A;
  --pine-2: #2b3527;
  --saffron: #F7CE5F;
  --orange: #F68C4A;
  /* Neutrals derived from the brand greens */
  --paper: #f6f8f5;
  --sage-tint: #eef3ef;
  --sage-tint-2: #dde8e0;
  --ink: #1C231A;
  --muted: #5e6b60;
  --line: #e4e9e3;
  --white: #ffffff;
  /* System */
  --r-lg: 20px; --r: 14px; --r-sm: 10px; --r-pill: 999px;
  --sh-sm: 0 1px 2px rgba(28,35,26,0.06);
  --sh: 0 10px 30px -14px rgba(28,35,26,0.30);
  --sh-lg: 0 28px 70px -28px rgba(28,35,26,0.45);
  --display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --body: 'Open Sans', system-ui, sans-serif;
  --wrap: 1080px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; scroll-padding-top: 132px; }
body { font-family: var(--body); color: var(--ink); background: var(--paper); -webkit-font-smoothing: antialiased; line-height: 1.6; }
img { display: block; max-width: 100%; }
a { color: var(--pine); }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }

.btn {
  font-family: var(--display); font-weight: 700; font-size: 16px; letter-spacing: .01em;
  color: #fff; background: var(--pine); border: none; border-radius: var(--r);
  padding: 14px 20px; cursor: pointer; text-decoration: none; display: inline-block;
  transition: background .15s, transform .08s, box-shadow .15s;
}
.btn:hover { background: var(--pine-2); box-shadow: var(--sh); transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid var(--sage); outline-offset: 2px; }
.btn-light { background: var(--white); color: var(--pine); border: 1px solid var(--line); }
.btn-light:hover { background: var(--sage-tint); }

.link-btn {
  background: none; border: none; color: var(--muted); font-family: var(--body);
  font-size: 14px; cursor: pointer; border-radius: var(--r-sm); padding: 6px 10px;
}
.link-btn:hover { color: var(--ink); background: var(--sage-tint); }

/* ── Gate ─────────────────────────────────────────────────────────────── */
.gate {
  min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 24px;
  background:
    radial-gradient(1100px 560px at 82% -12%, rgba(152,180,160,0.40), transparent 60%),
    radial-gradient(900px 520px at -8% 112%, rgba(28,35,26,0.10), transparent 55%),
    var(--paper);
}
.gate-card {
  width: 100%; max-width: 430px; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 46px 40px 34px; text-align: center;
}
.gate-logo { height: 46px; width: auto; margin: 0 auto 24px; }
.gate-title { font-family: var(--display); font-weight: 800; font-size: 30px; letter-spacing: -0.025em; color: var(--pine); line-height: 1.2; }
.gate-sub { color: var(--muted); font-size: 15px; margin: 10px 0 26px; }
.gate-input {
  width: 100%; font-family: var(--body); font-size: 16px; padding: 14px 16px;
  border: 1px solid var(--line); border-radius: var(--r); background: var(--paper);
  outline: none; margin-bottom: 14px; transition: border-color .15s, box-shadow .15s, background .15s;
}
.gate-input:focus { border-color: var(--sage); background: var(--white); box-shadow: 0 0 0 4px var(--sage-tint); }
.gate-card .btn { width: 100%; }
.gate-error { color: #b4452f; font-size: 14px; margin-top: 14px; }
.gate-help { color: var(--muted); font-size: 13px; margin-top: 22px; }

/* ── Top bar + section nav ────────────────────────────────────────────── */
.topbar { position: sticky; top: 0; z-index: 50; background: rgba(246,248,245,0.92); backdrop-filter: blur(10px); border-bottom: 1px solid var(--line); }
.topbar-inner { max-width: var(--wrap); margin: 0 auto; padding: 12px 28px; display: flex; align-items: center; gap: 12px; }
.topbar-logo { height: 26px; width: auto; }
.topbar-x { color: var(--sage-deep); font-size: 15px; }
.topbar-client { height: 26px; width: auto; }
.topbar-client-name { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--pine); }
.topbar-action { margin-left: 0; }
.topbar-action:first-of-type { margin-left: auto; }

.secnav { max-width: var(--wrap); margin: 0 auto; padding: 0 28px 10px; display: flex; gap: 4px; overflow-x: auto; scrollbar-width: none; }
.secnav::-webkit-scrollbar { display: none; }
.secnav a {
  font-family: var(--display); font-weight: 600; font-size: 13.5px; color: var(--muted);
  text-decoration: none; padding: 7px 13px; border-radius: var(--r-pill); white-space: nowrap;
  transition: background .15s, color .15s;
}
.secnav a:hover { background: var(--sage-tint); color: var(--ink); }
.secnav a.on { background: var(--pine); color: #fff; }

/* ── Type scale ───────────────────────────────────────────────────────── */
.eyebrow { font-family: var(--display); font-weight: 700; font-size: 12.5px; letter-spacing: .1em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 12px; }
.eyebrow-light { color: var(--sage); }
.sec-title { font-family: var(--display); font-weight: 800; font-size: clamp(28px, 4vw, 40px); letter-spacing: -0.03em; line-height: 1.15; color: var(--pine); }
.sec-title-light { color: #fff; }
.sec-lede { color: var(--muted); font-size: 17px; margin-top: 14px; max-width: 62ch; }
.sec-lede-light { color: rgba(255,255,255,0.72); }
.sec-lede-tight { margin-top: 8px; font-size: 15.5px; }
.sub-head { font-family: var(--display); font-weight: 800; font-size: 22px; letter-spacing: -0.02em; color: var(--pine); margin-top: 64px; }
.sub-head-light { color: #fff; }
.col-head { font-family: var(--display); font-weight: 800; font-size: 15px; letter-spacing: .06em; text-transform: uppercase; color: var(--sage-deep); margin-bottom: 18px; }

.sec { padding: 84px 0; }
.sec-alt { background: var(--sage-tint); }
.sec-dark { background: var(--pine); }
.band { background: var(--white); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 28px 0; }

/* ── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  padding: 76px 0 64px;
  background:
    radial-gradient(900px 460px at 88% -20%, rgba(152,180,160,0.38), transparent 62%),
    var(--paper);
}
.hero-title { font-family: var(--display); font-weight: 800; font-size: clamp(34px, 5.4vw, 56px); letter-spacing: -0.035em; line-height: 1.08; color: var(--pine); max-width: 19ch; }
.hero-lede { color: var(--muted); font-size: 18px; margin-top: 20px; max-width: 58ch; }
.hero-facts { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 30px; }
.fact { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-pill); padding: 9px 17px; font-size: 14px; box-shadow: var(--sh-sm); }
.fact b { font-family: var(--display); font-weight: 700; }

/* ── Key dates band ───────────────────────────────────────────────────── */
.keydates { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: 10px; }
.kd { padding: 12px 16px; border-radius: var(--r); background: var(--paper); }
.kd-label { font-size: 12px; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); font-family: var(--display); font-weight: 700; }
.kd-value { font-family: var(--display); font-weight: 800; font-size: 21px; letter-spacing: -0.02em; color: var(--pine); margin-top: 3px; }
.kd-value.tbd { color: var(--sage-deep); font-size: 17px; }

/* ── Team ─────────────────────────────────────────────────────────────── */
.team-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 42px; }
.people { display: grid; gap: 12px; }
.person { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 20px; box-shadow: var(--sh-sm); }
.person-name { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--pine); }
.person-title { color: var(--muted); font-size: 14px; margin-top: 1px; }
.person-links { margin-top: 9px; display: flex; flex-wrap: wrap; gap: 14px; font-size: 14px; }
.person-links a { color: var(--sage-deep); text-decoration: none; font-weight: 600; }
.person-links a:hover { color: var(--pine); text-decoration: underline; }
.person-empty { border-style: dashed; color: var(--muted); font-size: 14.5px; box-shadow: none; background: transparent; }

.person-blurb { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.5; }

/* The always-on team line, under the roster. */
.support { margin-top: 16px; background: var(--pine); border-radius: var(--r); padding: 20px 22px; }
.support-name { font-family: var(--display); font-weight: 800; font-size: 16.5px; color: #fff; }
.support-links { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 8px; }
.support-links a { color: var(--saffron); font-family: var(--display); font-weight: 700; font-size: 15px; text-decoration: none; }
.support-links a:hover { text-decoration: underline; }
.support-blurb { color: rgba(255,255,255,0.72); font-size: 14.5px; margin-top: 10px; line-height: 1.5; }

/* ── Services ─────────────────────────────────────────────────────────── */
.svc-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; margin-top: 42px; align-items: start; }
.svc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px 26px 24px; box-shadow: var(--sh-sm); }
.svc-phase { display: inline-block; font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--sage-deep); background: var(--sage-tint); border-radius: var(--r-pill); padding: 4px 11px; margin-bottom: 12px; }
.svc-title { font-family: var(--display); font-weight: 800; font-size: 18.5px; letter-spacing: -0.02em; color: var(--pine); line-height: 1.25; }
.svc ul { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.svc li { font-size: 15px; padding-left: 22px; position: relative; color: #3d4a3e; }
.svc li::before { content: ''; position: absolute; left: 2px; top: 9px; width: 7px; height: 7px; border-radius: 50%; background: var(--sage); }

.addons { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 10px; margin-top: 26px; }
/* Name, price, and note each get their own line. They used to sit side by side
   with the price set to `nowrap`, which meant a price like "$0.40 per employee,
   per payroll" could not wrap and pushed straight out of the card. Stacking is
   immune to however long a proposal's pricing wording happens to be. */
.addon { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 15px 18px; min-width: 0; }
.addon-name { font-family: var(--display); font-weight: 700; font-size: 15px; color: var(--pine); line-height: 1.35; overflow-wrap: anywhere; }
.addon-price { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--sage-deep); margin-top: 4px; overflow-wrap: anywhere; }
.addon-note { font-size: 13.5px; color: var(--muted); margin-top: 5px; overflow-wrap: anywhere; }

/* ── Welcome kit ──────────────────────────────────────────────────────── */
.kit-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.kit { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 26px; box-shadow: var(--sh-sm); }
.kit-title { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--pine); }
.kit ul { list-style: none; margin-top: 14px; display: grid; gap: 9px; }
.kit li { font-size: 15px; padding-left: 24px; position: relative; color: #3d4a3e; }
.kit li::before { content: '✓'; position: absolute; left: 0; top: 0; color: var(--sage-deep); font-weight: 700; }

/* ── Phases ───────────────────────────────────────────────────────────── */
.phases { list-style: none; margin-top: 44px; display: grid; gap: 10px; }
.phase { display: grid; grid-template-columns: 54px 1fr auto; gap: 20px; align-items: center; background: rgba(255,255,255,0.055); border: 1px solid rgba(255,255,255,0.10); border-radius: var(--r); padding: 18px 22px; }
.phase-n { font-family: var(--display); font-weight: 800; font-size: 26px; color: var(--sage); text-align: center; }
.phase-name { font-family: var(--display); font-weight: 700; font-size: 17.5px; color: #fff; }
.phase-detail { color: rgba(255,255,255,0.66); font-size: 14.5px; margin-top: 3px; }
.phase-meta { text-align: right; }
.phase-time { font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--saffron); white-space: nowrap; }
.phase-meet { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 3px; white-space: nowrap; }

.phase-body { min-width: 0; }
.phase-bullets { list-style: none; margin-top: 14px; display: grid; gap: 8px; }
.phase-bullets li { font-size: 14.5px; color: rgba(255,255,255,0.82); padding-left: 20px; position: relative; }
.phase-bullets li::before { content: ''; position: absolute; left: 2px; top: 8px; width: 6px; height: 6px; border-radius: 50%; background: var(--sage); }

/* Employee training library callout, inside the Training phase. */
.training-callout { margin-top: 18px; background: rgba(247,206,95,0.10); border: 1px solid rgba(247,206,95,0.30); border-radius: var(--r); padding: 18px 20px; min-width: 0; }
.training-title { font-family: var(--display); font-weight: 800; font-size: 15.5px; color: var(--saffron); }
.training-body { color: rgba(255,255,255,0.72); font-size: 14.5px; margin-top: 6px; }
.training-links { display: flex; flex-wrap: wrap; gap: 12px 18px; margin-top: 14px; align-items: center; }
.training-link { color: #fff; font-family: var(--display); font-weight: 700; font-size: 15px; word-break: break-all; }
.training-pw { display: inline-flex; flex-wrap: wrap; align-items: baseline; gap: 4px 8px; font-size: 13px; color: rgba(255,255,255,0.66); background: rgba(0,0,0,0.28); border: 1px solid rgba(247,206,95,0.42); border-radius: var(--r-sm); padding: 8px 14px; min-width: 0; max-width: 100%; }
.training-pw b { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--saffron); letter-spacing: .03em; }
.training-pw-missing { color: rgba(255,255,255,0.45); font-style: italic; background: none; border-style: dashed; border-color: rgba(255,255,255,0.2); }

/* ── Power of Attorney ────────────────────────────────────────────────── */
.poa-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 16px; margin-top: 36px; }
.poa-point { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm); min-width: 0; }
.poa-point-title { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--pine); line-height: 1.3; }
.poa-point-detail { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }

.de2088 { display: grid; grid-template-columns: 1fr 420px; gap: 32px; align-items: center; margin-top: 20px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--sh-sm); }
.de2088-copy { min-width: 0; }
.de2088-title { font-family: var(--display); font-weight: 800; font-size: 19px; color: var(--pine); letter-spacing: -0.015em; }
.de2088-body { color: var(--muted); font-size: 15px; margin-top: 10px; line-height: 1.6; }
.de2088-callout { background: #fef7e4; border: 1px solid #f3e2b0; border-radius: var(--r-sm); padding: 12px 15px; margin-top: 14px; font-size: 15px; color: #7a5a12; font-family: var(--display); font-weight: 600; line-height: 1.5; }
.de2088-where { color: var(--muted); font-size: 14.5px; margin-top: 12px; }
.de2088-tip { color: var(--sage-deep); font-size: 14px; margin-top: 8px; }
.de2088-link { display: inline-block; margin-top: 12px; font-family: var(--display); font-weight: 700; font-size: 14px; color: var(--pine); text-decoration: underline; text-underline-offset: 3px; }
.de2088-link:hover { color: var(--sage-deep); }
.de2088-fig { min-width: 0; }
.de2088-fig svg { width: 100%; height: auto; display: block; filter: drop-shadow(0 8px 22px rgba(28,35,26,0.10)); }
.de2088-fig figcaption { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 10px; font-style: italic; }

@media (max-width: 900px) {
  .de2088 { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
}

/* The two data-transfer routes, side by side. */
/* Equal width and equal height, so the two routes read as a fair side-by-side
   choice rather than one looking like an afterthought. EasySwitch carries more
   content, so `stretch` keeps the shorter card from ending in a ragged edge. */
.paths { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; align-items: stretch; }
.path { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: var(--r); padding: 20px; min-width: 0; }
.path-easyswitch { background: rgba(152,180,160,0.14); border-color: rgba(152,180,160,0.42); }
.path-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px 10px; }
.path-name { font-family: var(--display); font-weight: 800; font-size: 17px; color: #fff; }
.path-tag { font-family: var(--display); font-weight: 700; font-size: 10.5px; letter-spacing: .08em; text-transform: uppercase; border-radius: var(--r-pill); padding: 4px 10px; background: rgba(255,255,255,0.10); color: rgba(255,255,255,0.62); }
.path-tag-rec { background: var(--saffron); color: #5c4406; }
.path-summary { color: rgba(255,255,255,0.80); font-size: 14.5px; margin-top: 9px; }
.path ul { list-style: none; margin-top: 14px; display: grid; gap: 7px; }
.path li { font-size: 14px; color: rgba(255,255,255,0.74); padding-left: 18px; position: relative; overflow-wrap: anywhere; }
.path li::before { content: ''; position: absolute; left: 0; top: 8px; width: 5px; height: 5px; border-radius: 50%; background: var(--sage); }
.path-time { font-family: var(--display); font-weight: 700; font-size: 13.5px; color: var(--saffron); margin-top: 8px; }

/* The access request is the single action EasySwitch depends on, so it gets
   its own panel rather than sitting quietly at the bottom of a bullet list. */
.path-access { margin-top: 18px; background: rgba(247,206,95,0.12); border: 1px solid rgba(247,206,95,0.34); border-radius: var(--r-sm); padding: 16px 18px; display: grid; gap: 8px; }
.path-access-intro { font-family: var(--display); font-weight: 700; font-size: 14.5px; color: var(--saffron); margin-bottom: 4px; line-height: 1.45; }
.path-access .wf-value { font-size: 14.5px; }
.wf { display: flex; gap: 10px; font-size: 14px; align-items: baseline; }
.wf-label { color: rgba(255,255,255,0.5); min-width: 74px; flex-shrink: 0; }
.wf-value { color: #fff; font-family: var(--display); font-weight: 600; overflow-wrap: anywhere; min-width: 0; }

/* Partnership cards sit on the light section, not the dark one. */
.work-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; margin-top: 40px; }
.work { background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm); min-width: 0; }
.work-title { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--pine); line-height: 1.3; }
.work-blurb { color: var(--muted); font-size: 14.5px; margin-top: 8px; line-height: 1.55; }

/* ── Timeline ─────────────────────────────────────────────────────────── */
.tl { margin-top: 42px; display: grid; gap: 0; }
.tl-row { display: grid; grid-template-columns: 206px 34px 1fr; gap: 0; align-items: stretch; }
.tl-date { text-align: right; padding: 16px 22px 16px 0; }
.tl-d { font-family: var(--display); font-weight: 800; font-size: 17px; color: var(--pine); letter-spacing: -0.01em; }
.tl-d.tbd { color: var(--sage-deep); font-weight: 700; font-size: 14.5px; }
.tl-rail { position: relative; }
.tl-rail::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--sage-tint-2); transform: translateX(-50%); }
.tl-row:first-child .tl-rail::before { top: 26px; }
.tl-row:last-child .tl-rail::before { bottom: calc(100% - 26px); }
.tl-dot { position: absolute; left: 50%; top: 22px; width: 12px; height: 12px; border-radius: 50%; background: var(--sage); border: 2.5px solid var(--paper); transform: translateX(-50%); }
.tl-dot.key { background: var(--pine); width: 15px; height: 15px; top: 20px; }
.tl-dot.tbd { background: var(--white); border-color: var(--sage-tint-2); }
.tl-body { padding: 16px 0 16px 22px; }
.tl-label { font-family: var(--display); font-weight: 700; font-size: 16px; color: var(--pine); }
.tl-help { color: var(--muted); font-size: 14px; margin-top: 2px; }
.tbd-note { margin-top: 28px; background: #fef7e4; color: #7a5a12; border: 1px solid #f3e2b0; border-radius: var(--r); padding: 13px 17px; font-size: 14.5px; }

/* ── Next steps ───────────────────────────────────────────────────────── */
.steps { display: grid; gap: 10px; margin-top: 42px; }
.step { display: grid; grid-template-columns: 44px 1fr auto; gap: 18px; align-items: center; background: var(--white); border: 1px solid var(--line); border-radius: var(--r); padding: 18px 22px; }
.step-n { font-family: var(--display); font-weight: 800; font-size: 15px; color: var(--white); background: var(--pine); border-radius: 50%; width: 30px; height: 30px; display: grid; place-items: center; }
.step-title { font-family: var(--display); font-weight: 700; font-size: 16.5px; color: var(--pine); }
.step-detail { color: var(--muted); font-size: 14.5px; margin-top: 2px; }
.owner { font-family: var(--display); font-weight: 700; font-size: 11.5px; letter-spacing: .07em; text-transform: uppercase; border-radius: var(--r-pill); padding: 5px 12px; white-space: nowrap; }
.owner-client { background: var(--saffron); color: #6b4e08; }
.owner-select { background: var(--sage-tint-2); color: #40573f; }
.owner-both { background: var(--pine); color: #fff; }

.qa { margin-top: 56px; background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px; box-shadow: var(--sh-sm); }
.qa-title { font-family: var(--display); font-weight: 800; font-size: 21px; color: var(--pine); letter-spacing: -0.02em; }
.qa-body { color: var(--muted); font-size: 16px; margin: 10px 0 20px; max-width: 60ch; }

/* ── Footer ───────────────────────────────────────────────────────────── */
.foot { background: var(--pine); padding: 52px 0; }
.foot-inner { text-align: center; }
.foot-logo { height: 30px; width: auto; margin: 0 auto 18px; }
.foot-tag { font-family: var(--display); font-weight: 600; color: var(--sage); font-size: 15px; }
.foot-meta { color: rgba(255,255,255,0.34); font-size: 13px; margin-top: 12px; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 860px) {
  html { scroll-padding-top: 118px; }
  .sec { padding: 60px 0; }
  .wrap { padding: 0 20px; }
  .team-cols { grid-template-columns: 1fr; gap: 34px; }
  .topbar-inner { padding: 10px 20px; }
  .secnav { padding: 0 20px 9px; }
  .topbar-client, .topbar-x { display: none; }
  .phase { grid-template-columns: 40px 1fr; row-gap: 8px; }
  .phase-meta { grid-column: 2; text-align: left; display: flex; gap: 14px; }
  .phase-meet { margin-top: 0; }
  .paths { grid-template-columns: 1fr; }
  .step { grid-template-columns: 34px 1fr; row-gap: 8px; }
  .step .owner { grid-column: 2; justify-self: start; }
  .tl-row { grid-template-columns: 108px 28px 1fr; }
  .tl-date { padding-right: 14px; }
  .tl-d { font-size: 15px; }
  .hero { padding: 52px 0 46px; }
}

/* ── Print: the leave-behind, on paper ────────────────────────────────── */
@media print {
  .topbar, .foot, .qa .btn { display: none !important; }
  body { background: #fff; }
  .sec, .hero { padding: 22px 0; break-inside: avoid; }
  .sec-dark { background: #fff; }
  .sec-dark .sec-title-light, .sec-dark .work-title, .sec-dark .phase-name, .sec-dark .wf-value { color: #000; }
  .sec-dark .sec-lede-light, .sec-dark .phase-detail, .sec-dark .work-blurb, .sec-dark li, .sec-dark .wf-label { color: #333; }
  .sec-dark .eyebrow-light, .sec-dark .phase-n { color: #55705c; }
  .sec-dark .sub-head-light { color: #000; }
  .phase, .work { border-color: #ccc; background: #fff; }
  .phase-time { color: #7a5a12; }
  .sec-alt { background: #fff; }
  .svc, .kit, .person, .step, .addon { box-shadow: none; break-inside: avoid; }
}
