
:root{
  --crc-bg:#f4f5f7;
  --crc-surface:#ffffff;
  --crc-surface-2:#eef1f4;
  --crc-text:#14181d;
  --crc-muted:#626b75;
  --crc-border:#d9dee4;
  --crc-dark:#10151b;
  --crc-dark-2:#19212a;
  --crc-accent:#b52127;
  --crc-accent-dark:#8f171c;
  --crc-success:#236b43;
  --crc-warning:#9b6817;
  --crc-danger:#9f2025;
  --crc-shadow:0 18px 50px rgba(16,21,27,.09);
  --crc-radius:16px;
  --crc-radius-sm:10px;
  --crc-max:1280px;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--crc-bg);
  color:var(--crc-text);
  line-height:1.5;
}
button,a,input{font:inherit}
button{cursor:pointer}
button:focus-visible,a:focus-visible{
  outline:3px solid rgba(181,33,39,.28);
  outline-offset:3px;
}
.crc-site-header{
  background:var(--crc-dark);
  color:#fff;
}
.crc-site-header__top{
  max-width:var(--crc-max);
  margin:auto;
  min-height:72px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.crc-brand{display:flex;align-items:center;gap:13px}
.crc-brand__mark{
  width:42px;height:42px;border:2px solid #fff;border-radius:50%;
  display:grid;place-items:center;font-weight:800;letter-spacing:-1px
}
.crc-brand__name{font-size:14px;font-weight:800;letter-spacing:.08em}
.crc-brand__sub{font-size:11px;color:#aeb7c0;letter-spacing:.14em;text-transform:uppercase}
.crc-header-utility{
  border:1px solid rgba(255,255,255,.28);
  border-radius:999px;padding:9px 14px;font-size:12px;color:#fff;text-decoration:none
}
.crc-subnav{background:#fff;border-bottom:1px solid var(--crc-border)}
.crc-subnav__inner{
  max-width:var(--crc-max);margin:auto;padding:14px 24px;
  display:flex;align-items:center;justify-content:space-between;gap:18px
}
.crc-subnav__title{font-weight:800;font-size:13px;letter-spacing:.08em;text-transform:uppercase}
.crc-subnav__badge{
  display:inline-flex;align-items:center;gap:7px;
  font-size:12px;color:var(--crc-muted)
}
.crc-dot{width:7px;height:7px;border-radius:50%;background:var(--crc-accent)}
main{max-width:var(--crc-max);margin:0 auto;padding:42px 24px 70px}
.crc-intro{margin-bottom:22px}
.crc-eyebrow{
  margin:0 0 8px;color:var(--crc-accent);font-size:12px;font-weight:800;
  letter-spacing:.12em;text-transform:uppercase
}
.crc-intro h1{font-size:clamp(30px,4vw,48px);line-height:1.05;margin:0 0 10px;letter-spacing:-.035em}
.crc-intro p{margin:0;color:var(--crc-muted);font-size:17px;max-width:760px}
.crc-shell{
  background:var(--crc-surface);
  border:1px solid var(--crc-border);
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--crc-shadow);
}
.crc-appbar{
  padding:15px 20px;border-bottom:1px solid var(--crc-border);
  display:flex;align-items:center;justify-content:space-between;gap:12px;background:#fbfbfc
}
.crc-appbar__left{display:flex;align-items:center;gap:10px}
.crc-appbar__title{font-size:13px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}
.crc-prototype-pill{
  font-size:10px;text-transform:uppercase;letter-spacing:.1em;
  border:1px solid var(--crc-border);padding:4px 8px;border-radius:999px;color:var(--crc-muted)
}
.crc-appbar__actions{display:flex;gap:8px}
.crc-text-btn{
  border:0;background:transparent;color:var(--crc-muted);padding:7px 9px;border-radius:8px
}
.crc-text-btn:hover{background:var(--crc-surface-2);color:var(--crc-text)}
.crc-layout{display:grid;grid-template-columns:minmax(0,1.7fr) minmax(290px,.8fr);min-height:610px}
.crc-main-panel{padding:44px 46px 48px}
.crc-journey-panel{
  border-left:1px solid var(--crc-border);
  background:linear-gradient(180deg,#fbfbfc 0%,#f3f5f7 100%);
  padding:34px 30px
}
.crc-question-wrap{animation:crcIn .24s ease both}
@keyframes crcIn{
  from{opacity:0;transform:translateY(8px)}
  to{opacity:1;transform:translateY(0)}
}
.crc-question{
  font-size:clamp(27px,3.1vw,42px);
  line-height:1.08;letter-spacing:-.03em;margin:0 0 12px;max-width:760px
}
.crc-helper{margin:0 0 30px;color:var(--crc-muted);font-size:16px;max-width:720px}
.crc-answer-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.crc-answer-card{
  appearance:none;width:100%;text-align:left;background:#fff;border:1px solid var(--crc-border);
  border-radius:var(--crc-radius);padding:21px 20px 19px;min-height:132px;
  display:flex;flex-direction:column;justify-content:space-between;gap:18px;
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease,background .18s ease
}
.crc-answer-card:hover{
  transform:translateY(-2px);border-color:#b9c0c8;box-shadow:0 10px 28px rgba(16,21,27,.08)
}
.crc-answer-card__title{font-weight:800;font-size:17px;line-height:1.25}
.crc-answer-card__desc{font-size:13px;color:var(--crc-muted);margin-top:7px}
.crc-answer-card__bottom{display:flex;align-items:center;justify-content:space-between}
.crc-answer-card__tag{
  width:28px;height:28px;border-radius:50%;display:grid;place-items:center;
  background:var(--crc-surface-2);font-weight:800;font-size:12px
}
.crc-answer-card__arrow{font-size:22px;color:var(--crc-accent);line-height:1}
.crc-info,.crc-result,.crc-emergency{
  border-radius:var(--crc-radius);padding:27px 28px;border:1px solid var(--crc-border);background:#fff
}
.crc-info{background:#fafbfc}
.crc-emergency{border-color:#e2b3b5;background:#fff8f8}
.crc-node-label{
  display:inline-flex;align-items:center;gap:8px;margin-bottom:12px;
  font-size:11px;font-weight:800;text-transform:uppercase;letter-spacing:.1em;color:var(--crc-muted)
}
.crc-node-label::before{content:"";width:24px;height:2px;background:var(--crc-accent)}
.crc-emergency .crc-node-label{color:var(--crc-danger)}
.crc-emergency .crc-node-label::before{background:var(--crc-danger)}
.crc-info h2,.crc-result h2,.crc-emergency h2{
  font-size:clamp(26px,3vw,37px);line-height:1.1;letter-spacing:-.03em;margin:0 0 13px
}
.crc-info p,.crc-result p,.crc-emergency p{font-size:16px;color:var(--crc-muted);margin:0}
.crc-actions{display:flex;flex-wrap:wrap;gap:10px;margin-top:24px}
.crc-btn{
  border:1px solid transparent;border-radius:10px;padding:12px 17px;font-weight:800;font-size:14px;
  text-decoration:none;display:inline-flex;align-items:center;justify-content:center;gap:8px
}
.crc-btn--primary{background:var(--crc-accent);color:#fff}
.crc-btn--primary:hover{background:var(--crc-accent-dark)}
.crc-btn--secondary{background:#fff;color:var(--crc-text);border-color:var(--crc-border)}
.crc-btn--secondary:hover{background:var(--crc-surface-2);color:var(--crc-text)}
.crc-btn--quiet{background:transparent;color:var(--crc-text);border-color:var(--crc-border)}
.crc-resources{margin-top:28px}
.crc-section-title{
  font-size:12px;text-transform:uppercase;letter-spacing:.1em;font-weight:800;color:var(--crc-muted);margin:0 0 12px
}
.crc-resource-list{display:grid;gap:10px}
.crc-resource-card{
  display:grid;grid-template-columns:1fr auto;gap:14px;align-items:center;
  border:1px solid var(--crc-border);border-radius:12px;padding:15px 16px;background:#fff
}
.crc-resource-card__category{
  font-size:10px;text-transform:uppercase;letter-spacing:.08em;color:var(--crc-accent);font-weight:800;margin-bottom:3px
}
.crc-resource-card__title{font-size:14px;font-weight:800}
.crc-resource-card__status{font-size:11px;color:var(--crc-muted);margin-top:3px}
.crc-mini-btn{
  border:0;background:var(--crc-surface-2);border-radius:9px;padding:8px 10px;font-size:12px;font-weight:800
}
.crc-mini-btn:hover{background:#e4e8ec}
.crc-mini-btn[disabled]{opacity:.45;cursor:not-allowed}
.crc-context-cta{
  margin-top:22px;padding:20px;border-radius:14px;
  background:var(--crc-dark);color:#fff
}
.crc-context-cta h3{margin:0 0 7px;font-size:19px}
.crc-context-cta p{margin:0;color:#bbc3cc;font-size:14px}
.crc-context-cta .crc-actions{margin-top:15px}
.crc-context-cta .crc-btn--secondary{background:transparent;color:#fff;border-color:#53606c}
.crc-journey-title{font-size:11px;font-weight:800;letter-spacing:.11em;text-transform:uppercase;color:var(--crc-muted);margin-bottom:22px}
.crc-journey{list-style:none;padding:0;margin:0}
.crc-stage{position:relative;display:grid;grid-template-columns:30px 1fr;gap:12px;min-height:70px}
.crc-stage:not(:last-child)::after{
  content:"";position:absolute;left:14px;top:29px;bottom:-3px;width:2px;background:#d8dde2
}
.crc-stage__marker{
  width:30px;height:30px;border-radius:50%;border:2px solid #cbd1d7;background:#fff;
  display:grid;place-items:center;font-size:11px;font-weight:900;color:#87919b;z-index:1
}
.crc-stage__name{padding-top:5px;font-size:14px;font-weight:750;color:#77818b}
.crc-stage--complete .crc-stage__marker{background:var(--crc-success);border-color:var(--crc-success);color:#fff}
.crc-stage--complete .crc-stage__name{color:var(--crc-text)}
.crc-stage--current .crc-stage__marker{
  border-color:var(--crc-accent);background:#fff;color:var(--crc-accent);
  box-shadow:0 0 0 6px rgba(181,33,39,.09)
}
.crc-stage--current .crc-stage__name{color:var(--crc-text);font-weight:900}
.crc-current-box{
  margin-top:18px;padding:15px;border-radius:12px;background:#fff;border:1px solid var(--crc-border)
}
.crc-current-box__label{
  font-size:10px;text-transform:uppercase;letter-spacing:.1em;font-weight:800;color:var(--crc-muted)
}
.crc-current-box__value{font-size:14px;font-weight:800;margin-top:4px}
.crc-privacy-note{
  margin-top:22px;padding-top:18px;border-top:1px solid var(--crc-border);
  font-size:12px;color:var(--crc-muted)
}
.crc-modal-backdrop{
  position:fixed;inset:0;background:rgba(10,14,18,.58);display:none;align-items:center;justify-content:center;
  padding:20px;z-index:100
}
.crc-modal-backdrop.is-open{display:flex}
.crc-modal{
  width:min(560px,100%);background:#fff;border-radius:18px;box-shadow:0 28px 90px rgba(0,0,0,.25);
  padding:26px;position:relative
}
.crc-modal h3{font-size:25px;line-height:1.1;margin:0 34px 10px 0}
.crc-modal p{color:var(--crc-muted)}
.crc-modal-close{
  position:absolute;right:14px;top:14px;border:0;background:var(--crc-surface-2);
  width:34px;height:34px;border-radius:50%;font-size:18px
}
.crc-toast{
  position:fixed;left:50%;bottom:22px;transform:translate(-50%,12px);
  background:var(--crc-dark);color:#fff;padding:11px 15px;border-radius:10px;font-size:13px;
  opacity:0;pointer-events:none;transition:.2s ease;z-index:110;box-shadow:var(--crc-shadow)
}
.crc-toast.is-visible{opacity:1;transform:translate(-50%,0)}
@media(max-width:900px){
  main{padding-top:28px}
  .crc-layout{grid-template-columns:1fr}
  .crc-journey-panel{border-left:0;border-top:1px solid var(--crc-border);padding:22px 24px}
  .crc-main-panel{padding:34px 28px 38px}
  .crc-journey{display:grid;grid-template-columns:repeat(6,1fr);gap:0}
  .crc-stage{display:block;min-height:0;text-align:center}
  .crc-stage:not(:last-child)::after{left:50%;right:-50%;top:14px;bottom:auto;width:auto;height:2px}
  .crc-stage__marker{margin:0 auto 8px}
  .crc-stage__name{padding:0;font-size:10px}
  .crc-current-box{display:none}
  .crc-privacy-note{margin-top:18px}
}
@media(max-width:640px){
  .crc-site-header__top{min-height:62px;padding:0 16px}
  .crc-brand__name{font-size:12px}
  .crc-brand__sub,.crc-header-utility{display:none}
  .crc-subnav__inner{padding:11px 16px}
  .crc-subnav__badge{display:none}
  main{padding:24px 14px 46px}
  .crc-intro{margin-bottom:16px}
  .crc-intro p{font-size:15px}
  .crc-shell{border-radius:16px}
  .crc-appbar{padding:12px 13px}
  .crc-appbar__title{font-size:11px}
  .crc-prototype-pill{display:none}
  .crc-main-panel{padding:27px 18px 30px}
  .crc-question{font-size:30px}
  .crc-helper{font-size:15px;margin-bottom:22px}
  .crc-answer-grid{grid-template-columns:1fr;gap:10px}
  .crc-answer-card{min-height:auto;padding:17px 16px;gap:12px}
  .crc-info,.crc-result,.crc-emergency{padding:21px 18px}
  .crc-actions{display:grid;grid-template-columns:1fr}
  .crc-btn{width:100%}
  .crc-resource-card{grid-template-columns:1fr}
  .crc-mini-btn{justify-self:start}
  .crc-journey-panel{overflow:auto;padding:18px 14px}
  .crc-journey{min-width:570px}
}
@media(prefers-reduced-motion:reduce){
  *,*::before,*::after{animation-duration:.01ms!important;transition-duration:.01ms!important;scroll-behavior:auto!important}
}


/* Dual-path Resource Center */
.crc-mode-tabs{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:10px;padding:14px 18px;border-bottom:1px solid var(--crc-border);background:#fff}
.crc-mode-tab{border:1px solid var(--crc-border);background:#fff;border-radius:12px;padding:14px 16px;display:flex;flex-direction:column;align-items:flex-start;text-align:left;gap:3px;transition:border-color .18s ease,background .18s ease,box-shadow .18s ease}
.crc-mode-tab:hover{border-color:#b9c0c8;background:#fafbfc}
.crc-mode-tab.is-active{border-color:var(--crc-accent);background:#fff8f8;box-shadow:inset 0 0 0 1px rgba(181,33,39,.08)}
.crc-mode-tab__title{font-weight:900;font-size:15px}
.crc-mode-tab__desc{font-size:12px;color:var(--crc-muted)}
.crc-browse{padding:40px 44px 46px}
.crc-browse__intro{display:grid;grid-template-columns:minmax(0,1.2fr) minmax(320px,.8fr);gap:34px;align-items:end;margin-bottom:28px}
.crc-browse__intro h2{font-size:clamp(27px,3.1vw,40px);line-height:1.08;letter-spacing:-.03em;margin:0 0 10px}
.crc-browse__intro p{margin:0;color:var(--crc-muted);max-width:680px}
.crc-search{display:block}
.crc-search__label{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.09em;font-weight:800;color:var(--crc-muted);margin-bottom:7px}
.crc-search input{width:100%;border:1px solid var(--crc-border);border-radius:11px;padding:13px 14px;background:#fff;color:var(--crc-text)}
.crc-search input:focus{border-color:var(--crc-accent);outline:3px solid rgba(181,33,39,.10)}
.crc-topic-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
.crc-topic-card{border:1px solid var(--crc-border);border-radius:15px;background:#fff;overflow:hidden}
.crc-topic-button{width:100%;border:0;background:#fff;padding:19px 20px;text-align:left;display:grid;grid-template-columns:1fr auto;gap:14px;align-items:center}
.crc-topic-button:hover{background:#fafbfc}
.crc-topic-title{font-size:17px;font-weight:900;display:block}
.crc-topic-desc{font-size:13px;color:var(--crc-muted);margin-top:4px;display:block}
.crc-topic-chevron{font-size:19px;color:var(--crc-accent);transition:transform .18s ease}
.crc-topic-button[aria-expanded="true"] .crc-topic-chevron{transform:rotate(90deg)}
.crc-topic-resources{border-top:1px solid var(--crc-border);padding:7px 10px 11px;background:#fafbfc}
.crc-topic-link{width:100%;border:0;background:transparent;text-align:left;padding:11px 10px;border-radius:9px;display:grid;grid-template-columns:1fr auto;gap:10px;align-items:center}
.crc-topic-link:hover{background:#fff}
.crc-topic-link__title{font-size:13px;font-weight:750;display:block}
.crc-topic-link__meta{font-size:10px;text-transform:uppercase;letter-spacing:.07em;color:var(--crc-muted);display:block;margin-top:2px}
.crc-topic-link__status{font-size:10px;color:var(--crc-muted)}
.crc-search-results{margin-bottom:22px;border:1px solid var(--crc-border);border-radius:14px;padding:10px;background:#fafbfc}
.crc-search-results__head{padding:6px 8px 10px;font-size:11px;text-transform:uppercase;letter-spacing:.09em;font-weight:800;color:var(--crc-muted)}
.crc-search-empty{padding:16px;color:var(--crc-muted);font-size:14px}
.crc-browse__footer{margin-top:28px;padding:20px;border-radius:14px;background:var(--crc-dark);color:#fff;display:flex;justify-content:space-between;align-items:center;gap:20px}
.crc-browse__footer div{display:grid;gap:3px}
.crc-browse__footer span{color:#bbc3cc;font-size:13px}
@media(max-width:900px){.crc-browse__intro{grid-template-columns:1fr}}
@media(max-width:640px){
  .crc-mode-tabs{padding:10px;gap:7px}
  .crc-mode-tab{padding:12px 11px}
  .crc-mode-tab__title{font-size:13px}
  .crc-mode-tab__desc{font-size:10px}
  .crc-browse{padding:27px 18px 30px}
  .crc-topic-grid{grid-template-columns:1fr}
  .crc-browse__footer{align-items:stretch;flex-direction:column}
}





/* =========================================================
   STEP 12 — FINALIZED COLLISION RESOURCE CENTER SHELL
   ========================================================= */

.crc-brand{text-decoration:none;color:inherit}
.crc-global-header{max-width:1440px}
.crc-global-nav{
  display:flex;align-items:center;justify-content:center;gap:22px;
  margin-left:auto
}
.crc-global-nav a{
  color:#cbd2d9;text-decoration:none;font-size:12px;font-weight:700;
  padding:9px 0;border-bottom:2px solid transparent;white-space:nowrap
}
.crc-global-nav a:hover{color:#fff}
.crc-global-nav a.is-current{
  color:#fff;border-bottom-color:var(--crc-accent)
}
.crc-resource-nav-wrap{max-width:1440px}
.crc-resource-nav-heading{display:flex;align-items:center;gap:10px}
.crc-subnav__title{text-decoration:none;color:var(--crc-text)}
.crc-resource-nav{
  display:flex;align-items:center;gap:7px;margin-left:auto
}
.crc-resource-nav a{
  text-decoration:none;color:var(--crc-muted);font-size:12px;font-weight:800;
  padding:8px 10px;border-radius:8px
}
.crc-resource-nav a:hover{background:var(--crc-surface-2);color:var(--crc-text)}
.crc-resource-nav a.is-current{background:#fff1f1;color:var(--crc-accent)}
.crc-resource-menu-toggle{
  display:none;border:1px solid var(--crc-border);background:#fff;color:var(--crc-text);
  border-radius:8px;padding:7px 10px;font-size:12px;font-weight:800
}
.crc-context-bar{
  background:#f7f8f9;border-bottom:1px solid var(--crc-border)
}
.crc-context-bar__inner{
  max-width:var(--crc-max);margin:0 auto;padding:9px 24px;
  display:flex;justify-content:space-between;align-items:center;gap:20px
}
.crc-breadcrumb-trail{
  display:flex;align-items:center;gap:7px;min-width:0;color:var(--crc-muted);
  font-size:11px
}
.crc-breadcrumb-trail a{color:var(--crc-muted);text-decoration:none}
.crc-breadcrumb-trail a:hover{color:var(--crc-text)}
.crc-context-bar__hint{font-size:11px;color:var(--crc-muted);white-space:nowrap}
.crc-shell-intro{
  display:grid;grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
  align-items:end;gap:50px
}
.crc-shell-intro .crc-eyebrow,
.crc-shell-intro h1{grid-column:1}
.crc-shell-intro p{
  grid-column:2;grid-row:1 / span 2;
  align-self:end;margin-bottom:5px
}
.crc-shell-intro strong{color:var(--crc-text)}
.crc-shell .crc-mode-tabs{
  background:#f7f8f9;padding:12px 18px
}
.crc-mode-tab{
  position:relative;min-height:72px
}
.crc-mode-tab.is-active::after{
  content:"";position:absolute;left:16px;right:16px;bottom:-13px;height:3px;
  border-radius:3px;background:var(--crc-accent)
}
.crc-shell-route-toast{
  max-width:520px;text-align:center
}
@media(max-width:1180px){
  .crc-global-nav{gap:14px}
  .crc-global-nav a{font-size:11px}
}
@media(max-width:1020px){
  .crc-global-nav{display:none}
  .crc-site-header__top{justify-content:space-between}
}
@media(max-width:820px){
  .crc-resource-nav-wrap{
    display:grid;grid-template-columns:1fr auto;gap:8px 14px
  }
  .crc-resource-nav-heading{grid-column:1}
  .crc-resource-menu-toggle{display:inline-flex}
  .crc-resource-nav{
    grid-column:1 / -1;display:none;flex-direction:column;align-items:stretch;
    margin:0;padding:8px 0 2px;border-top:1px solid var(--crc-border)
  }
  .crc-resource-nav.is-open{display:flex}
  .crc-resource-nav a{padding:10px 8px}
  .crc-subnav__badge{grid-column:2;grid-row:1}
  .crc-context-bar__hint{display:none}
  .crc-shell-intro{grid-template-columns:1fr;gap:8px}
  .crc-shell-intro .crc-eyebrow,
  .crc-shell-intro h1,
  .crc-shell-intro p{grid-column:1;grid-row:auto}
}
@media(max-width:640px){
  .crc-context-bar__inner{padding:8px 16px}
  .crc-breadcrumb-trail a:first-child,
  .crc-breadcrumb-trail span:first-of-type{display:none}
  .crc-resource-nav-heading{width:100%;justify-content:space-between}
  .crc-subnav__badge{display:none}
  .crc-resource-nav-wrap{grid-template-columns:1fr}
  .crc-resource-menu-toggle{grid-column:1;grid-row:1;margin-left:auto}
  .crc-resource-nav-heading{grid-column:1;grid-row:1}
}

  
.crc-mini-link{text-decoration:none;display:inline-flex;align-items:center;justify-content:center}
