:root {
  --ink: #17171a;
  --muted: #6e7076;
  --faint: #a5a6aa;
  --line: #e8e8e6;
  --soft: #f6f6f3;
  --paper: #fff;
  --sage: #f2f2f0;
  --green: #17171a;
  --warm: #f3f3f1;
  --alert: #17171a;
  --shadow: 0 34px 90px rgba(20, 20, 18, 0.09), 0 3px 12px rgba(20, 20, 18, 0.05);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}
button, input { font: inherit; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.shell { width: min(100% - 48px, 1280px); margin-inline: auto; }
.content-shell { width: min(100% - 48px, 1120px); margin-inline: auto; }

.site-header {
  position: relative;
  z-index: 20;
  background: rgba(255,255,255,.94);
}
.nav {
  height: 78px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
}
.wordmark { display: inline-flex; align-items: center; gap: 10px; width: max-content; font-size: 17px; font-weight: 800; letter-spacing: -.04em; }
.brand-mark { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: var(--ink); color: #fff; font-size: 15px; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a, .login-link { color: #4f5055; font-size: 12px; font-weight: 600; transition: color .2s ease; }
.nav-links a:hover, .login-link:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; justify-content: flex-end; gap: 22px; }
.nav-cta { min-height: 39px; display: inline-flex; align-items: center; padding: 0 16px; border-radius: 8px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease; }
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(23,23,26,.15); }
.menu-toggle { width: 40px; height: 40px; display: none; place-items: center; align-content: center; gap: 5px; padding: 0; border: 1px solid var(--line); border-radius: 8px; background: #fff; }
.menu-toggle span { width: 15px; height: 1px; background: var(--ink); transition: transform .2s ease; }
.menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(3px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-3px) rotate(-45deg); }

.hero { position: relative; padding: 48px 0 28px; background: #fff; }
.hero-guide { position: absolute; inset: 24px max(24px, calc((100vw - 1280px) / 2)) 0; pointer-events: none; border-left: 1px dashed #e5e5e3; border-right: 1px dashed #e5e5e3; }
.hero-inner { position: relative; display: flex; flex-direction: column; align-items: center; text-align: center; }
.announcement { min-height: 29px; display: inline-flex; align-items: center; gap: 8px; padding: 3px 10px 3px 4px; border: 1px solid var(--line); border-radius: 999px; color: #5f6065; background: rgba(255,255,255,.82); font-size: 11px; font-weight: 600; transition: border-color .2s ease, transform .2s ease; }
.announcement:hover { border-color: #c9cac7; transform: translateY(-1px); }
.announcement span { padding: 4px 7px; border-radius: 999px; background: var(--ink); color: #fff; font-size: 9px; text-transform: uppercase; letter-spacing: .05em; }
.announcement b { font-size: 17px; font-weight: 400; line-height: 1; }
.hero h1 { max-width: 980px; margin: 18px auto 0; font-size: clamp(48px, 5.35vw, 77px); font-weight: 700; line-height: 1.035; letter-spacing: -.063em; }
.hero-copy { max-width: 700px; margin: 16px auto 0; color: #575960; font-size: 15px; line-height: 1.65; }
.hero-actions { display: flex; justify-content: center; gap: 9px; margin-top: 20px; }
.button { min-height: 45px; display: inline-flex; align-items: center; justify-content: center; gap: 12px; padding: 0 17px; border: 1px solid var(--line); border-radius: 8px; font-size: 12px; font-weight: 700; transition: transform .2s ease, box-shadow .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); }
.button-dark { border-color: var(--ink); background: var(--ink); color: #fff; box-shadow: 0 8px 20px rgba(23,23,26,.11); }
.button-dark:hover { box-shadow: 0 12px 25px rgba(23,23,26,.18); }
.button-light { background: #fff; }
.button-light:hover { background: var(--soft); }
.hero-note { margin: 13px 0 0; color: #939498; font-size: 10px; }
.hero-note span { color: var(--green); }

.product-showcase { position: relative; padding: 28px 0 72px; background: #fff; }
.product-wrap { position: relative; }
.product-card { min-height: 475px; display: grid; grid-template-columns: 37% 63%; overflow: hidden; border: 1px solid #dfdfdc; border-radius: 22px; background: #fff; box-shadow: var(--shadow); }
.case-summary { padding: 31px 36px; border-right: 1px solid var(--line); }
.profile-row { display: flex; align-items: center; gap: 12px; }
.avatar { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 50%; color: var(--green); font-size: 10px; font-weight: 800; }
.avatar-sage { background: var(--sage); }
.profile-row div { display: grid; gap: 2px; }
.quiet { color: #9a9b9e; font-size: 10px; font-weight: 600; }
.profile-row strong { font-size: 13px; }
.case-summary > h2 { margin: 24px 0 4px; font-size: 25px; line-height: 1.15; letter-spacing: -.045em; }
.case-summary > p { margin: 0; color: var(--muted); font-size: 12px; }
.summary-list { display: grid; gap: 14px; margin-top: 27px; }
.summary-list > div { display: flex; align-items: center; gap: 12px; }
.summary-icon { width: 25px; height: 25px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 7px; color: #66686d; font-size: 12px; }
.summary-list p { display: grid; gap: 1px; margin: 0; }
.summary-list small, .case-health small { color: #98999d; font-size: 9px; }
.summary-list strong { font-size: 11px; font-weight: 650; }
.case-health { margin-top: 25px; padding-top: 19px; border-top: 1px solid var(--line); }
.case-health > div:first-child { display: flex; justify-content: space-between; font-size: 10px; }
.case-health > div:first-child span { color: var(--muted); }
.case-health > div:first-child strong { color: var(--green); }
.health-track { height: 5px; margin: 10px 0 8px; overflow: hidden; border-radius: 999px; background: #eee; }
.health-track i { display: block; width: 75%; height: 100%; border-radius: inherit; background: var(--green); }

.case-plan { padding: 31px 38px; }
.plan-head { display: flex; align-items: center; justify-content: space-between; }
.plan-head h2 { margin: 5px 0 0; font-size: 24px; letter-spacing: -.045em; }
.plan-controls { display: flex; gap: 6px; }
.plan-controls button { width: 31px; height: 31px; border: 1px solid var(--line); border-radius: 8px; background: #fff; color: #77787d; }
.team-tabs { display: flex; gap: 28px; margin-top: 23px; border-bottom: 1px solid var(--line); }
.team-tabs button { position: relative; padding: 0 0 12px; border: 0; background: transparent; color: #999a9d; font-size: 10px; cursor: pointer; }
.team-tabs button span { margin-left: 3px; color: #b1b2b5; }
.team-tabs button.active { color: var(--ink); font-weight: 700; }
.team-tabs button.active::after { content: ""; position: absolute; right: 0; bottom: -1px; left: 0; height: 2px; background: var(--ink); }
.task-table { margin-top: 5px; }
.task-row { min-height: 57px; display: grid; grid-template-columns: 23px 1fr auto; align-items: center; gap: 12px; border-bottom: 1px solid #eeeeec; }
.check { width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid #d7d8d5; border-radius: 6px; color: #fff; font-size: 10px; font-weight: 800; }
.task-complete .check { border-color: var(--green); background: var(--green); }
.task-alert .check { border-color: #cfcfcb; background: #f3f3f1; color: var(--alert); }
.task-row div { display: grid; gap: 4px; }
.task-row strong { font-size: 10px; font-weight: 650; }
.task-row small { color: #9a9b9e; font-size: 9px; }
.task-row time { color: #909196; font-size: 9px; }
.coordinator-note { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; margin-top: 15px; padding: 11px 13px; border: 1px solid #dededb; border-radius: 11px; background: #f7f7f5; }
.spark { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 8px; background: var(--green); color: #fff; font-size: 13px; }
.coordinator-note p { margin: 0; color: #626267; font-size: 9px; line-height: 1.55; }
.coordinator-note p strong { color: #28282b; }
.coordinator-note button { padding: 7px 10px; border: 1px solid #d7d7d4; border-radius: 7px; background: #fff; color: var(--ink); font-size: 9px; font-weight: 700; cursor: pointer; }
.product-fade { position: absolute; right: -3px; bottom: -4px; left: -3px; height: 90px; pointer-events: none; background: linear-gradient(to bottom, transparent, #fff 90%); }

.kicker, .dark-kicker { margin: 0; color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.dark-kicker { color: var(--ink); }

.coordination-section { position: relative; overflow: hidden; padding: 112px 0; border-top: 1px solid var(--line); background: #fff; color: var(--ink); }
.coordination-section::before { content: ""; position: absolute; inset: 0; opacity: .42; background-image: linear-gradient(#ededeb 1px, transparent 1px), linear-gradient(90deg, #ededeb 1px, transparent 1px); background-size: 64px 64px; mask-image: linear-gradient(90deg, #000, transparent 75%); }
.coordination-grid { position: relative; display: grid; grid-template-columns: 1fr 510px; align-items: center; gap: 86px; }
.not-another { margin: 52px 0 0; color: #77787c; font-size: 13px; font-weight: 600; line-height: 1.7; }
.coordination-copy h2 { margin: 22px 0 0; font-size: clamp(48px, 5.2vw, 70px); font-weight: 600; line-height: .98; letter-spacing: -.065em; }
.coordination-copy h2 em { color: var(--ink); font-style: normal; }
.coordination-lead { max-width: 510px; margin: 30px 0 0; color: #5d5f65; font-size: 16px; line-height: 1.75; }
.handoff-panel { overflow: hidden; border: 1px solid #dadad7; border-radius: 18px; background: #fff; box-shadow: 0 32px 70px rgba(20,20,18,.09); }
.handoff-head, .handoff-foot { min-height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid #e5e5e2; color: #77787c; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.live-status { display: inline-flex; align-items: center; gap: 7px; color: var(--ink); }
.live-status i { width: 6px; height: 6px; border-radius: 50%; background: var(--ink); box-shadow: 0 0 0 4px rgba(23,23,26,.08); }
.handoff-person { display: flex; align-items: center; gap: 12px; padding: 20px; }
.handoff-person p, .board-person p, .board-row p { display: grid; gap: 3px; margin: 0; }
.handoff-person strong { font-size: 12px; }
.handoff-person small { color: #88898d; font-size: 9px; }
.handoff-map { position: relative; height: 270px; margin: 0 20px 20px; border: 1px solid #e6e6e3; border-radius: 12px; background: radial-gradient(circle at center, #f2f2f0, transparent 45%), #fafaf8; }
.map-line { position: absolute; top: 50%; left: 50%; width: 258px; height: 1px; background: #c9c9c5; transform-origin: center; }
.map-line-one { transform: translate(-50%, -50%) rotate(31deg); }
.map-line-two { transform: translate(-50%, -50%) rotate(-31deg); }
.team-node, .plan-node { position: absolute; z-index: 2; display: grid; place-items: center; border: 1px solid #d5d5d1; background: #fff; font-size: 10px; font-weight: 700; }
.team-node { width: 88px; min-height: 54px; border-radius: 9px; }
.team-node small, .plan-node small { margin-top: 2px; color: #8a8b8e; font-size: 7px; font-weight: 600; }
.team-hr { top: 30px; left: 28px; }
.team-it { top: 30px; right: 28px; }
.team-manager { bottom: 30px; left: 28px; }
.team-office { right: 28px; bottom: 30px; }
.plan-node { top: 50%; left: 50%; width: 100px; height: 100px; border-color: var(--ink); border-radius: 50%; background: var(--ink); color: #fff; transform: translate(-50%, -50%); box-shadow: 0 0 0 12px rgba(23,23,26,.04); }
.plan-node i { width: 25px; height: 25px; display: grid; place-items: center; border-radius: 7px; background: #fff; color: var(--ink); font-style: normal; }
.plan-node strong { margin-top: 3px; font-size: 10px; }
.handoff-foot { border-top: 1px solid #e5e5e2; border-bottom: 0; justify-content: flex-start; gap: 25px; letter-spacing: 0; text-transform: none; }
.handoff-foot b { color: var(--ink); }
.handoff-foot .risk-count { margin-left: auto; color: var(--ink); }

.process-section { padding: 118px 0; background: #fff; }
.process-intro { display: grid; grid-template-columns: 1.15fr .85fr; column-gap: 70px; align-items: end; }
.process-intro .kicker { grid-column: 1 / -1; }
.process-intro h2 { max-width: 560px; margin: 20px 0 0; font-size: clamp(40px, 4.4vw, 58px); font-weight: 600; line-height: 1; letter-spacing: -.06em; }
.process-intro > p:last-child { max-width: 400px; margin: 0 0 6px; color: #5d5f65; font-size: 16px; line-height: 1.75; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin: 56px 0 0; padding: 0; border-top: 1px solid #d9d9d5; list-style: none; counter-reset: none; }
.process-steps li { display: flex; flex-direction: column; padding: 32px 40px 6px 0; }
.process-steps li + li { padding-left: 40px; border-left: 1px solid #e3e3e0; }
.step-top { display: flex; align-items: center; justify-content: space-between; }
.step-number { color: #c3c4c0; font-size: 42px; font-weight: 400; line-height: 1; letter-spacing: -.05em; }
.step-arrow { width: 32px; height: 32px; display: grid; place-items: center; border: 1px solid #d7d8d4; border-radius: 50%; color: #85868a; font-size: 14px; }
.step-arrow.step-done { border-color: var(--ink); background: var(--ink); color: #fff; }
.process-steps h3 { margin: 28px 0 0; font-size: 19px; letter-spacing: -.035em; }
.process-steps p { flex: 1; margin: 12px 0 0; color: var(--muted); font-size: 14px; line-height: 1.7; }
.step-meta { margin-top: 28px; padding-top: 15px; border-top: 1px solid #e3e3e0; color: #92948f; font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.control-section { padding: 112px 0; border-top: 1px solid var(--line); background: #fff; }
.control-grid { display: grid; grid-template-columns: .72fr 1.22fr .86fr; align-items: start; gap: 44px; }
.control-heading h2 { margin: 22px 0 0; font-size: clamp(40px, 4vw, 56px); font-weight: 600; line-height: 1; letter-spacing: -.065em; }
.control-heading > p:last-child { margin: 27px 0 0; color: #5d5f65; font-size: 15px; line-height: 1.75; }
.control-board { overflow: hidden; border: 1px solid #d9d9d6; border-radius: 15px; background: #fff; box-shadow: 0 28px 65px rgba(20,20,18,.1); }
.board-head, .board-foot { min-height: 46px; display: flex; align-items: center; justify-content: space-between; padding: 0 17px; border-bottom: 1px solid #e5e5e2; color: #7d7e82; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.board-person { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 11px; padding: 18px 17px; border-bottom: 1px solid #e5e5e2; }
.board-person .avatar { background: #f0f0ee; color: var(--ink); }
.board-person strong, .board-row strong { font-size: 10px; }
.board-person small, .board-row small { color: #8b8c8f; font-size: 8px; }
.board-health { padding: 6px 8px; border-radius: 999px; background: #f0f0ee; color: var(--ink); font-size: 7px; font-weight: 800; text-transform: uppercase; }
.board-row { min-height: 65px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 11px; padding: 10px 17px; border-bottom: 1px solid #e5e5e2; }
.board-row > span:last-child { color: #737479; font-size: 8px; font-weight: 700; }
.board-signal { width: 21px; height: 21px; display: grid; place-items: center; border: 1px solid #c7c7c3; border-radius: 6px; color: var(--ink); font-size: 9px; font-weight: 800; }
.board-warning .board-signal { border-color: #c7c7c3; background: #f3f3f1; color: var(--ink); }
.board-warning > span:last-child { color: var(--ink); }
.board-note { display: grid; grid-template-columns: 29px 1fr; gap: 10px; margin: 13px; padding: 13px; border-radius: 10px; background: #f1f1ef; }
.board-note > span { width: 29px; height: 29px; display: grid; place-items: center; border-radius: 7px; background: var(--ink); color: #fff; font-size: 11px; }
.board-note p { margin: 0; color: #626267; font-size: 8px; line-height: 1.55; }
.board-note p strong { color: var(--ink); font-size: 9px; }
.board-note div { grid-column: 2; display: flex; gap: 6px; }
.board-note button { padding: 6px 9px; border: 1px solid #cacac6; border-radius: 6px; background: transparent; color: #5f6064; font-size: 7px; font-weight: 800; cursor: pointer; }
.board-note button:last-child { border-color: var(--ink); background: var(--ink); color: #fff; }
.board-foot { border-top: 1px solid #e5e5e2; border-bottom: 0; letter-spacing: 0; text-transform: none; }
.board-foot span:last-child { color: var(--ink); font-weight: 800; }
.control-features { border-top: 1px solid #d8d8d4; }
.control-features article { padding: 24px 0 26px; border-bottom: 1px solid #d8d8d4; }
.control-features article > span { color: #66676b; font-size: 9px; font-weight: 800; letter-spacing: .1em; }
.control-features h3 { margin: 13px 0 0; font-size: 19px; letter-spacing: -.035em; }
.control-features p { margin: 9px 0 0; color: #63646a; font-size: 13px; line-height: 1.7; }

.pilot-section { padding: 100px 0; border-top: 1px solid var(--line); background: #fff; }
.pilot-grid { display: grid; grid-template-columns: 145px 1.15fr .85fr; column-gap: 54px; align-items: start; padding: 34px 0 0; border-top: 1px solid #d4d4d0; }
.pilot-label { display: grid; gap: 8px; }
.pilot-label span { color: #909195; font-size: 8px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.pilot-label strong { font-size: 12px; }
.pilot-copy h2 { max-width: 500px; margin: 19px 0 0; font-size: clamp(42px, 4.6vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.065em; }
.pilot-copy > p:last-child { max-width: 500px; margin: 24px 0 0; color: #5d5f65; font-size: 15px; line-height: 1.75; }
.pilot-list { margin: 2px 0 0; padding: 0; border-top: 1px solid #d8d8d4; list-style: none; }
.pilot-list li { display: grid; grid-template-columns: 35px 1fr; align-items: baseline; padding: 16px 0; border-bottom: 1px solid #d8d8d4; font-size: 13px; font-weight: 700; }
.pilot-list span { color: #96979a; font-size: 10px; }
.pilot-cta { grid-column: 2 / -1; min-height: 72px; display: flex; align-items: center; justify-content: space-between; margin-top: 48px; padding: 0 25px; border-radius: 10px; background: var(--ink); color: #fff; font-size: 12px; font-weight: 800; transition: transform .2s ease, box-shadow .2s ease; }
.pilot-cta:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(23,23,26,.16); }
.pilot-cta b { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; font-size: 13px; }

.footer { border-top: 1px solid var(--line); background: #fff; color: var(--ink); }
.footer-inner { min-height: 100px; display: grid; grid-template-columns: auto 1fr auto auto; align-items: center; gap: 34px; }
.footer .brand-mark { background: var(--ink); color: #fff; }
.footer-inner > p, .copyright { color: #85868a; font-size: 12px; }
.footer-links { display: flex; gap: 22px; }
.footer-links a { color: #626368; font-size: 12px; transition: color .2s ease; }
.footer-links a:hover { color: var(--ink); }

.echo-section { padding: 26px 0 0; background: #fff; }
.echo-band { overflow: hidden; padding: 30px 0; border-top: 1px solid var(--line); }
.echo-track { display: flex; align-items: center; gap: 40px; width: max-content; animation: echo-scroll 46s linear infinite; white-space: nowrap; }
.echo-track span { color: #b4b5b1; font-size: clamp(19px, 2.1vw, 26px); font-weight: 600; letter-spacing: -.04em; }
.echo-track span:nth-child(4n + 1) { color: var(--ink); }
.echo-track i { color: #dededb; font-size: 15px; font-style: normal; }
.echo-band:hover .echo-track { animation-play-state: paused; }
@keyframes echo-scroll { to { transform: translateX(-50%); } }
.features-section { padding: 118px 0 112px; border-top: 1px solid var(--line); background: #fff; }
.features-intro { display: grid; grid-template-columns: 1fr 1.1fr; column-gap: 70px; align-items: end; }
.features-intro .kicker { grid-column: 1 / -1; }
.features-intro h2 { margin: 20px 0 0; font-size: clamp(42px, 4.6vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.065em; }
.features-intro > p:last-child { max-width: 440px; margin: 0 0 6px; color: #5d5f65; font-size: 16px; line-height: 1.75; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; margin-top: 64px; overflow: hidden; border: 1px solid #d9d9d5; border-radius: 18px; background: #d9d9d5; }
.features-grid article { padding: 30px 28px 34px; background: #fff; transition: background .25s ease; }
.features-grid article:hover { background: #f8f8f4; }
.features-grid article > span { color: #b3b4b0; font-size: 13px; font-weight: 500; letter-spacing: -.03em; }
.features-grid h3 { margin: 34px 0 0; font-size: 17px; line-height: 1.25; letter-spacing: -.035em; }
.features-grid p { margin: 10px 0 0; color: #63646a; font-size: 12.5px; line-height: 1.65; }

.exit-section { padding: 112px 0; background: #121215; color: #f4f4f1; }
.exit-grid { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 80px; }
.exit-kicker { margin: 0; color: #8e8f94; font-size: 11px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.exit-copy h2 { margin: 22px 0 0; font-size: clamp(42px, 4.6vw, 62px); font-weight: 600; line-height: 1; letter-spacing: -.06em; }
.exit-lead { max-width: 520px; margin: 26px 0 0; color: #a9aaae; font-size: 16px; line-height: 1.75; }
.exit-points { margin: 38px 0 0; padding: 0; border-top: 1px solid rgba(255,255,255,.14); list-style: none; }
.exit-points li { display: grid; gap: 5px; padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.14); color: #a9aaae; font-size: 13px; line-height: 1.65; }
.exit-points strong { color: #f4f4f1; font-size: 14px; letter-spacing: -.02em; }
.exit-board { overflow: hidden; border: 1px solid rgba(255,255,255,.16); border-radius: 16px; background: #1a1a1e; box-shadow: 0 34px 80px rgba(0,0,0,.4); }
.exit-head, .exit-foot { min-height: 48px; display: flex; align-items: center; justify-content: space-between; padding: 0 18px; border-bottom: 1px solid rgba(255,255,255,.1); color: #8e8f94; font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.exit-person { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 12px; padding: 18px; border-bottom: 1px solid rgba(255,255,255,.1); }
.exit-avatar { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 50%; background: #2b2b30; color: #f4f4f1; font-size: 10px; font-weight: 800; }
.exit-person p { display: grid; gap: 3px; margin: 0; }
.exit-person strong { font-size: 12px; }
.exit-person small { color: #8e8f94; font-size: 9px; }
.exit-tag { padding: 6px 9px; border: 1px solid rgba(255,255,255,.2); border-radius: 999px; color: #f4f4f1; font-size: 7px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.exit-row { min-height: 62px; display: grid; grid-template-columns: 24px 1fr auto; align-items: center; gap: 12px; padding: 10px 18px; border-bottom: 1px solid rgba(255,255,255,.08); }
.exit-row p { display: grid; gap: 3px; margin: 0; }
.exit-row strong { font-size: 11px; }
.exit-row small { color: #8e8f94; font-size: 9px; }
.exit-row > span:last-child { color: #8e8f94; font-size: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.exit-check { width: 20px; height: 20px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.25); border-radius: 6px; color: #121215; font-size: 10px; font-weight: 800; }
.exit-done .exit-check { border-color: #f4f4f1; background: #f4f4f1; }
.exit-gate { background: rgba(255,255,255,.04); }
.exit-gate .exit-check { color: #f4f4f1; }
.exit-gate > span:last-child, .exit-gate strong { color: #fff; }
.exit-foot { border-top: 1px solid rgba(255,255,255,.1); border-bottom: 0; letter-spacing: .02em; }
.exit-foot span:last-child { color: #f4f4f1; }

.faq-section { padding: 104px 0; background: #fff; }
.faq-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; align-items: start; }
.faq-intro h2 { margin: 20px 0 0; max-width: 320px; font-size: clamp(34px, 3.4vw, 46px); font-weight: 600; line-height: 1.02; letter-spacing: -.06em; }
.faq-list { border-top: 1px solid #d9d9d5; }
.faq-list details { border-bottom: 1px solid #d9d9d5; }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 22px 0; font-size: 16px; font-weight: 700; letter-spacing: -.025em; cursor: pointer; list-style: none; transition: color .2s ease; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:hover { color: #55565b; }
.faq-list summary span { flex: 0 0 auto; width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid #d0d0cc; border-radius: 50%; color: #77787c; font-size: 15px; font-weight: 400; transition: transform .25s ease, background .25s ease, color .25s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); background: var(--ink); border-color: var(--ink); color: #fff; }
.faq-list details p { margin: 0; padding: 0 44px 24px 0; color: #5d5f65; font-size: 14px; line-height: 1.75; }

.motion-ready .reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.motion-ready .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 920px) {
  .nav { grid-template-columns: 1fr auto; }
  .nav-links { position: absolute; top: 68px; right: 0; left: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 10px 24px 20px; border-bottom: 1px solid var(--line); background: #fff; }
  .nav-links.is-open { display: flex; }
  .nav-links a { padding: 14px 0; border-bottom: 1px solid var(--line); font-size: 13px; }
  .menu-toggle { display: grid; }
  .login-link { display: none; }
  .product-card { grid-template-columns: 34% 66%; }
  .case-summary { padding: 32px 26px; }
  .case-plan { padding: 32px 28px; }
  .coordination-grid { grid-template-columns: 1fr 440px; gap: 42px; }
  .coordination-copy h2 { font-size: 52px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .exit-grid { grid-template-columns: 1fr; gap: 56px; }
  .exit-board { max-width: 560px; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .control-grid { grid-template-columns: 1fr 1fr; gap: 46px; }
  .control-heading { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1fr; align-items: end; gap: 40px; }
  .control-heading .dark-kicker { grid-column: 1 / -1; }
  .control-heading > p:last-child { margin-bottom: 4px; }
  .pilot-grid { grid-template-columns: 110px 1.15fr .85fr; column-gap: 30px; }
}

@media (max-width: 720px) {
  .shell, .content-shell { width: min(100% - 32px, 100%); }
  .nav { height: 68px; gap: 12px; }
  .nav-actions { gap: 8px; }
  .nav-cta { min-height: 36px; padding: 0 12px; }
  .hero { padding: 44px 0 24px; }
  .hero-guide { inset-inline: 15px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero h1 br { display: none; }
  .hero-copy { font-size: 13px; }
  .hero-actions { width: auto; flex-direction: row; }
  .hero-actions .button { width: auto; }
  .product-showcase { padding: 20px 0 58px; }
  .product-card { grid-template-columns: 1fr; border-radius: 15px; }
  .case-summary { padding: 25px 22px; border-right: 0; border-bottom: 1px solid var(--line); }
  .summary-list { grid-template-columns: repeat(3, 1fr); gap: 10px; }
  .summary-list > div { align-items: flex-start; }
  .summary-icon { display: none; }
  .case-plan { padding: 25px 20px; }
  .team-tabs { gap: 17px; overflow-x: auto; }
  .task-row { min-height: 62px; }
  .coordinator-note { grid-template-columns: auto 1fr; }
  .coordinator-note button { grid-column: 2; width: max-content; }
  .coordination-section { padding: 78px 0; }
  .coordination-section::before { mask-image: linear-gradient(#000, transparent); }
  .coordination-grid { grid-template-columns: 1fr; gap: 52px; }
  .coordination-copy h2 { font-size: 52px; }
  .not-another { margin-top: 36px; }
  .handoff-panel { max-width: 520px; }
  .process-section { padding: 78px 0; }
  .process-intro { grid-template-columns: 1fr; gap: 22px; }
  .process-intro h2 { font-size: 46px; }
  .process-intro > p:last-child { margin: 0; max-width: 460px; }
  .process-steps { grid-template-columns: 1fr; margin-top: 44px; }
  .process-steps li { padding: 26px 0 4px; }
  .process-steps li + li { padding-left: 0; border-left: 0; border-top: 1px solid #e3e3e0; }
  .process-steps h3 { margin-top: 20px; }
  .step-meta { margin-top: 20px; }
  .echo-band { padding: 22px 0; }
  .echo-track { gap: 26px; animation-duration: 32s; }
  .features-section { padding: 78px 0; }
  .features-intro { grid-template-columns: 1fr; gap: 22px; }
  .features-intro > p:last-child { margin: 0; }
  .features-grid { grid-template-columns: 1fr; margin-top: 44px; border-radius: 14px; }
  .features-grid h3 { margin-top: 20px; }
  .exit-section { padding: 78px 0; }
  .faq-section { padding: 78px 0; }
  .faq-list details p { padding-right: 0; }
  .control-section { padding: 78px 0; }
  .control-grid, .control-heading { grid-template-columns: 1fr; gap: 42px; }
  .control-heading { display: block; }
  .control-heading h2 { font-size: 48px; }
  .pilot-section { padding: 78px 0; }
  .pilot-grid { grid-template-columns: 1fr; gap: 36px; }
  .pilot-label { display: flex; align-items: center; justify-content: space-between; }
  .pilot-copy h2 { padding-bottom: .2em; font-size: 48px; }
  .pilot-cta { grid-column: 1; margin-top: 4px; }
  .footer-inner { grid-template-columns: 1fr auto; padding: 28px 0; gap: 20px; }
  .footer-inner > p { grid-column: 1 / -1; margin: 0; }
  .footer-links { grid-column: 1 / -1; }
}

@media (max-width: 460px) {
  .nav-cta { display: none; }
  .case-health { margin-top: 25px; }
  .coordination-copy h2 { font-size: 44px; }
  .handoff-map { height: 240px; margin-inline: 13px; }
  .map-line { width: 210px; }
  .team-node { width: 74px; }
  .team-hr, .team-manager { left: 12px; }
  .team-it, .team-office { right: 12px; }
  .handoff-foot { gap: 10px; padding-inline: 13px; }
  .process-intro h2, .control-heading h2, .pilot-copy h2 { font-size: 40px; }
  .features-intro h2, .exit-copy h2 { font-size: 38px; }
  .exit-person { grid-template-columns: auto 1fr; }
  .exit-tag { grid-column: 2; width: max-content; }
  .exit-foot { flex-direction: column; align-items: flex-start; justify-content: center; gap: 4px; }
  .step-number { font-size: 34px; }
  .board-person { grid-template-columns: auto 1fr; }
  .board-health { grid-column: 2; width: max-content; }
  .board-foot { align-items: flex-start; flex-direction: column; justify-content: center; gap: 3px; }
  .footer-inner { grid-template-columns: 1fr; }
  .copyright { grid-column: 1; }
}

@media (max-width: 360px) {
  .hero-actions { width: 100%; flex-direction: column; }
  .hero-actions .button { width: 100%; }
}

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