:root {
  --ink: #0a1d2d;
  --ink-2: #183348;
  --muted: #607487;
  --line: #dbe5ea;
  --line-strong: #c7d5dc;
  --paper: #f7faf9;
  --white: #ffffff;
  --navy: #071a2c;
  --navy-2: #0c2941;
  --navy-3: #123d58;
  --teal: #1e967b;
  --teal-dark: #14705f;
  --mint: #58dfb3;
  --mint-soft: #e8faf4;
  --gold: #f9cb67;
  --gold-soft: #fff5d9;
  --blue: #4f86e8;
  --blue-soft: #edf3ff;
  --rose: #d86c78;
  --rose-soft: #fff0f2;
  --violet: #8067c7;
  --violet-soft: #f3efff;
  --shadow-sm: 0 8px 24px rgba(7, 26, 44, .07);
  --shadow-md: 0 20px 50px rgba(7, 26, 44, .11);
  --shadow-lg: 0 35px 90px rgba(7, 26, 44, .18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --shell: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
body.modal-open { overflow: hidden; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }
a { color: inherit; }
img, svg { display: block; max-width: 100%; }
button, a, input, select, textarea { outline-color: var(--teal); }
::selection { background: var(--mint); color: var(--navy); }

.shell { width: min(calc(100% - 40px), var(--shell)); margin-inline: auto; }
.hidden { display: none !important; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.skip-link {
  position: fixed;
  z-index: 9999;
  top: 8px;
  left: 8px;
  padding: 10px 14px;
  border-radius: 8px;
  background: var(--white);
  transform: translateY(-150%);
}
.skip-link:focus { transform: translateY(0); }

.app-view { display: none; min-height: 70vh; }
.app-view.active { display: block; }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  height: 74px;
  border-bottom: 1px solid rgba(215, 227, 232, .9);
  background: rgba(247, 250, 249, .91);
  backdrop-filter: blur(16px);
}
.header-inner { display: flex; align-items: center; height: 100%; gap: 28px; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  flex: 0 0 auto;
}
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: var(--navy-2);
  box-shadow: 0 8px 22px rgba(7, 26, 44, .18);
}
.brand-mark svg { width: 31px; height: 31px; fill: var(--mint); }
.brand-mark svg circle { fill: var(--gold); }
.brand-mark.small { width: 34px; height: 34px; border-radius: 10px; flex: 0 0 auto; }
.brand-mark.small svg { width: 25px; }
.brand-copy { display: flex; flex-direction: column; line-height: 1.06; }
.brand-copy strong { font-size: 15px; letter-spacing: -.01em; }
.brand-copy small { margin-top: 4px; color: var(--muted); font-size: 10px; letter-spacing: .14em; text-transform: uppercase; }
.primary-nav { display: flex; align-items: center; gap: 5px; margin-left: auto; }
.primary-nav button,
.user-menu-popover button,
.site-footer button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.primary-nav button {
  padding: 9px 12px;
  border-radius: 9px;
  color: #466073;
  font-size: 14px;
  font-weight: 650;
}
.primary-nav button:hover, .primary-nav button.active { color: var(--navy); background: #eaf2f1; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.mode-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: var(--white);
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
.mode-pill::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--teal); box-shadow: 0 0 0 3px rgba(30,150,123,.12); }
.mobile-nav-toggle { display: none; border: 0; background: transparent; padding: 6px; cursor: pointer; }
.mobile-nav-toggle span:not(.sr-only) { display: block; width: 22px; height: 2px; margin: 4px 0; background: var(--ink); }
.user-menu { position: relative; }
.user-menu-button { display: flex; align-items: center; gap: 8px; padding: 4px 8px 4px 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--white); cursor: pointer; font-size: 13px; font-weight: 700; }
.avatar { display: grid; width: 30px; height: 30px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--mint); }
.user-menu-popover { position: absolute; right: 0; top: calc(100% + 10px); width: 230px; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); box-shadow: var(--shadow-md); }
.user-menu-popover p { overflow: hidden; margin: 0 0 8px; padding: 6px 8px 10px; color: var(--muted); font-size: 12px; text-overflow: ellipsis; white-space: nowrap; border-bottom: 1px solid var(--line); }
.user-menu-popover button { display: block; width: 100%; padding: 9px 8px; border-radius: 8px; text-align: left; font-size: 13px; }
.user-menu-popover button:hover { background: var(--paper); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  font-weight: 750;
  font-size: 14px;
  text-decoration: none;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.button:hover { transform: translateY(-1px); }
.button:disabled { opacity: .55; cursor: not-allowed; transform: none; }
.button-primary { color: var(--white); background: var(--teal-dark); box-shadow: 0 9px 20px rgba(20,112,95,.18); }
.button-primary:hover { background: #105f51; box-shadow: 0 12px 26px rgba(20,112,95,.25); }
.button-secondary { color: var(--navy); border-color: var(--line-strong); background: var(--white); }
.button-secondary:hover, .button-ghost:hover { background: #eef5f3; }
.button-ghost { color: var(--ink-2); border-color: var(--line); background: transparent; }
.button-light { color: var(--navy); background: var(--mint); box-shadow: 0 12px 30px rgba(88,223,179,.18); }
.button-light:hover { background: #74e6c0; }
.button-outline-light { color: var(--white); border-color: rgba(255,255,255,.35); background: transparent; }
.button-large { min-height: 52px; padding: 13px 20px; border-radius: 12px; font-size: 15px; }
.button.full { width: 100%; }
.mic-icon { color: var(--rose); font-size: 12px; text-shadow: 0 0 0 rgba(216,108,120,.4); }

.hero { position: relative; overflow: hidden; padding: 76px 0 86px; background: radial-gradient(circle at 85% 18%, rgba(88,223,179,.17), transparent 28%), linear-gradient(135deg, #f8fbfa 0%, #eef6f4 100%); }
.hero::before { content: ""; position: absolute; left: -80px; top: 100px; width: 230px; height: 230px; border: 1px solid rgba(30,150,123,.11); border-radius: 50%; }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.02fr) minmax(440px, .98fr); align-items: center; gap: 72px; }
.eyebrow { display: flex; align-items: center; gap: 9px; margin: 0 0 16px; color: var(--teal-dark); font-size: 12px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }
.eyebrow span { width: 23px; height: 2px; background: currentColor; }
.eyebrow.dark { color: var(--gold); }
.eyebrow.light { color: var(--mint); }
.hero h1, .assessment-intro h1, .library-hero h1, .history-heading h1 { margin: 0; color: var(--navy); font-size: clamp(43px, 5.1vw, 68px); line-height: 1.02; letter-spacing: -.055em; }
.hero h1 em { color: var(--teal-dark); font-style: normal; }
.hero-lede { max-width: 665px; margin: 25px 0 29px; color: #466073; font-size: 18px; line-height: 1.72; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: flex; flex-wrap: wrap; gap: 20px; margin-top: 25px; color: var(--muted); font-size: 12px; font-weight: 650; }
.trust-row b { color: var(--teal-dark); }
.hero-visual { position: relative; min-height: 500px; }
.hero-panel { position: absolute; z-index: 3; top: 42px; left: 28px; width: min(100%, 510px); padding: 22px; border: 1px solid rgba(255,255,255,.75); border-radius: 25px; color: var(--white); background: linear-gradient(145deg, #0a2237, #113b53); box-shadow: var(--shadow-lg); transform: rotate(-1.6deg); }
.panel-topline { display: flex; align-items: center; gap: 8px; color: #d8e7ee; font-size: 12px; }
.panel-topline small { margin-left: auto; padding: 4px 8px; border-radius: 999px; color: var(--navy); background: var(--mint); font-weight: 850; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 5px rgba(88,223,179,.11); }
.preview-role { display: grid; grid-template-columns: 52px 1fr auto 1fr; align-items: center; gap: 12px; margin: 24px 0; padding: 17px; border: 1px solid rgba(255,255,255,.11); border-radius: 17px; background: rgba(255,255,255,.06); }
.preview-icon { display: grid; height: 48px; place-items: center; border-radius: 13px; color: var(--gold); background: rgba(249,203,103,.1); font-weight: 800; }
.preview-role small { display: block; color: #9eb3c1; font-size: 10px; text-transform: uppercase; }
.preview-role strong { display: block; margin-top: 3px; font-size: 13px; }
.preview-role > span { color: var(--mint); font-size: 21px; }
.preview-bars { display: grid; gap: 15px; }
.preview-bars div { position: relative; display: grid; grid-template-columns: 1fr auto; gap: 8px; padding-bottom: 9px; font-size: 12px; }
.preview-bars span { color: #c8d8e0; }
.preview-bars b { color: var(--mint); }
.preview-bars i { position: absolute; bottom: 0; left: 0; width: 100%; height: 4px; overflow: hidden; border-radius: 999px; background: rgba(255,255,255,.1); }
.preview-bars i::after { content: ""; display: block; width: var(--score); height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--mint), var(--gold)); }
.preview-map { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 22px; }
.tag { padding: 6px 9px; border: 1px solid rgba(255,255,255,.1); border-radius: 8px; font-size: 10px; font-weight: 750; }
.tag.automate { color: #93b9ff; background: rgba(79,134,232,.13); }
.tag.accelerate { color: #79edc6; background: rgba(88,223,179,.11); }
.tag.human { color: #ffe09a; background: rgba(249,203,103,.11); }
.tag.develop { color: #c9b9ff; background: rgba(128,103,199,.13); }
.orbit { position: absolute; border: 1px solid rgba(30,150,123,.17); border-radius: 50%; }
.orbit-one { top: 0; right: 0; width: 400px; height: 400px; }
.orbit-two { right: 80px; bottom: 4px; width: 280px; height: 280px; }
.floating-card { position: absolute; z-index: 5; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.95); box-shadow: var(--shadow-md); }
.floating-card b { color: var(--teal-dark); font-size: 27px; line-height: 1; }
.floating-card span { color: var(--muted); font-size: 11px; line-height: 1.3; }
.floating-one { left: -6px; bottom: 67px; }
.floating-two { right: 5px; top: 104px; }
.shield { display: grid; width: 27px; height: 27px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--mint); font-weight: 900; }

.problem-strip { padding: 73px 0; color: var(--white); background: var(--navy); }
.problem-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 85px; align-items: start; }
.problem-strip h2, .section-heading h2, .human-value-card h2, .cta-inner h2 { margin: 0; font-size: clamp(31px, 4vw, 49px); line-height: 1.1; letter-spacing: -.04em; }
.problem-points { display: grid; gap: 20px; }
.problem-points article { display: grid; grid-template-columns: 46px 1fr; gap: 18px; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,.1); }
.problem-points article:last-child { padding-bottom: 0; border: 0; }
.problem-points > article > strong { color: var(--mint); font-size: 12px; letter-spacing: .1em; }
.problem-points h3 { margin: 0 0 5px; font-size: 17px; }
.problem-points p { margin: 0; color: #a9becb; font-size: 14px; }

.section { padding-block: 98px; }
.section-heading { max-width: 750px; margin-bottom: 45px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading.centered .eyebrow { justify-content: center; }
.section-heading h2 { color: var(--navy); }
.section-heading > p:last-child, .split-heading > p { color: var(--muted); font-size: 16px; }
.split-heading { display: grid; max-width: none; grid-template-columns: 1.1fr .9fr; gap: 80px; align-items: end; }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.process-grid article { position: relative; min-height: 285px; padding: 26px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); transition: transform .2s ease, box-shadow .2s ease; }
.process-grid article:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.process-grid article > span { position: absolute; top: 17px; right: 18px; color: #c6d4da; font-size: 12px; font-weight: 800; }
.process-icon { display: grid; width: 52px; height: 52px; margin: 34px 0 26px; place-items: center; border-radius: 15px; color: var(--teal-dark); background: var(--mint-soft); font-size: 24px; }
.process-grid h3 { margin: 0 0 10px; font-size: 18px; }
.process-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.tracks-section { background: #edf4f2; }
.track-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.track-card { position: relative; min-height: 275px; overflow: hidden; padding: 26px; border: 1px solid #d4e2df; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.track-card::after { content: ""; position: absolute; right: -50px; bottom: -80px; width: 160px; height: 160px; border-radius: 50%; background: var(--mint-soft); }
.track-card .track-symbol { display: grid; width: 45px; height: 45px; place-items: center; border-radius: 13px; color: var(--navy); background: var(--gold-soft); font-weight: 900; }
.track-card h3 { margin: 22px 0 8px; font-size: 19px; }
.track-card p { position: relative; z-index: 1; margin: 0 0 22px; color: var(--muted); font-size: 13px; }
.track-card button { position: absolute; z-index: 2; left: 26px; bottom: 22px; border: 0; padding: 0; color: var(--teal-dark); background: transparent; cursor: pointer; font-size: 13px; font-weight: 800; }
.track-card button:hover { text-decoration: underline; }
.human-value-section { padding-top: 85px; }
.human-value-card { display: grid; grid-template-columns: 1.03fr .97fr; gap: 60px; padding: 60px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 90% 10%, rgba(88,223,179,.15), transparent 34%), var(--navy-2); box-shadow: var(--shadow-md); }
.human-value-card h2 { max-width: 620px; }
.human-value-card > div > p:not(.eyebrow) { max-width: 610px; margin: 20px 0 28px; color: #bdd0da; }
.value-ladder { display: grid; align-content: center; gap: 8px; }
.value-ladder div { padding: 15px 18px; border: 1px solid rgba(255,255,255,.12); border-radius: 13px; background: rgba(255,255,255,.05); }
.value-ladder div.highlight { border-color: rgba(88,223,179,.35); background: rgba(88,223,179,.1); }
.value-ladder span { display: block; color: var(--mint); font-size: 10px; font-weight: 800; letter-spacing: .09em; text-transform: uppercase; }
.value-ladder strong { display: block; margin: 4px 0 2px; font-size: 16px; }
.value-ladder p { margin: 0; color: #adc2cd; font-size: 12px; }
.value-ladder i { color: var(--mint); text-align: center; font-style: normal; }
.cta-section { padding: 75px 0; color: var(--white); background: var(--teal-dark); }
.cta-inner { display: grid; grid-template-columns: 1fr auto; gap: 60px; align-items: center; }
.cta-inner h2 { max-width: 770px; }

.card { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.back-link { display: inline-flex; border: 0; padding: 0; margin-bottom: 24px; color: var(--muted); background: transparent; cursor: pointer; font-size: 13px; font-weight: 700; }
.back-link:hover { color: var(--teal-dark); }
.assessment-page { padding: 64px 0 110px; }
.assessment-intro { max-width: 820px; margin-bottom: 44px; }
.assessment-intro h1, .library-hero h1, .history-heading h1 { font-size: clamp(38px, 4.5vw, 58px); }
.assessment-intro > p:not(.eyebrow) { max-width: 720px; color: var(--muted); font-size: 16px; }
.privacy-note { display: flex; gap: 12px; max-width: 780px; margin-top: 22px; padding: 14px 16px; border: 1px solid #cee5dc; border-radius: 12px; background: var(--mint-soft); }
.privacy-note > span { display: grid; width: 24px; height: 24px; flex: 0 0 auto; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal-dark); font-weight: 900; }
.privacy-note p { margin: 0; color: #385c54; font-size: 12px; }
.assessment-layout { display: grid; grid-template-columns: 285px minmax(0, 1fr); gap: 28px; align-items: start; }
.assessment-sidebar { position: sticky; top: 98px; }
.assessment-sidebar ol { display: grid; gap: 5px; margin: 0; padding: 0; list-style: none; }
.assessment-sidebar li { display: flex; gap: 12px; padding: 12px; border-radius: 12px; color: #82939f; }
.assessment-sidebar li > span { display: grid; width: 30px; height: 30px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line-strong); border-radius: 50%; font-size: 12px; font-weight: 850; }
.assessment-sidebar li strong, .assessment-sidebar li small { display: block; }
.assessment-sidebar li strong { font-size: 13px; }
.assessment-sidebar li small { margin-top: 2px; font-size: 10px; }
.assessment-sidebar li.active { color: var(--navy); background: var(--white); box-shadow: var(--shadow-sm); }
.assessment-sidebar li.active > span { color: var(--white); border-color: var(--teal-dark); background: var(--teal-dark); }
.assessment-sidebar li.complete { color: var(--teal-dark); }
.assessment-sidebar li.complete > span { border-color: var(--teal-dark); background: var(--mint-soft); }
.sidebar-help { margin-top: 25px; padding: 20px; border-radius: 15px; color: var(--white); background: var(--navy-2); }
.sidebar-help strong { font-size: 13px; }
.sidebar-help ul { display: grid; gap: 8px; margin: 12px 0 0; padding: 0; list-style: none; color: #bcd0da; font-size: 11px; }
.sidebar-help li::before { content: "✓"; margin-right: 7px; color: var(--mint); font-weight: 900; }
.assessment-form { min-height: 610px; padding: 34px; }
.form-progress { display: flex; align-items: center; gap: 14px; margin-bottom: 34px; color: var(--muted); font-size: 11px; font-weight: 750; }
.form-progress > div { flex: 1; height: 5px; overflow: hidden; border-radius: 999px; background: #e9eff1; }
.form-progress i { display: block; width: 25%; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal-dark), var(--mint)); transition: width .25s ease; }
.form-step { display: none; margin: 0; padding: 0; border: 0; }
.form-step.active { display: block; animation: fade-in .2s ease; }
.form-step legend { padding: 0; font-size: 27px; font-weight: 850; letter-spacing: -.03em; }
.step-description { margin: 7px 0 28px; color: var(--muted); font-size: 13px; }
.field-grid { display: grid; gap: 18px; }
.field-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.field { display: block; margin-bottom: 19px; }
.field > span, .range-field > div:first-child > span, .library-controls label > span { display: block; margin-bottom: 7px; color: var(--ink-2); font-size: 12px; font-weight: 800; }
.field > span small { color: var(--muted); font-weight: 500; }
.field input, .field select, .field textarea, .library-controls input, .library-controls select {
  width: 100%;
  border: 1px solid var(--line-strong);
  border-radius: 10px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--white);
  transition: border .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 90px; }
.field input:focus, .field select:focus, .field textarea:focus, .library-controls input:focus, .library-controls select:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(30,150,123,.12); }
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--rose); box-shadow: 0 0 0 3px rgba(216,108,120,.1); }
.field > small { display: block; margin-top: 6px; color: var(--muted); font-size: 10px; }
.checkbox-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 9px; }
.checkbox-grid label { cursor: pointer; }
.checkbox-grid input { position: absolute; opacity: 0; }
.checkbox-grid label span { display: block; padding: 10px 9px; border: 1px solid var(--line); border-radius: 9px; color: var(--muted); background: var(--paper); text-align: center; font-size: 11px; font-weight: 700; transition: all .15s ease; }
.checkbox-grid input:checked + span { color: var(--teal-dark); border-color: var(--teal); background: var(--mint-soft); }
.checkbox-grid input:focus-visible + span { box-shadow: 0 0 0 3px rgba(30,150,123,.18); }
.range-field { margin: 25px 0 31px; }
.range-field > div:first-child { display: flex; justify-content: space-between; gap: 20px; }
.range-field output { color: var(--teal-dark); font-size: 12px; font-weight: 850; }
.range-field input[type="range"] { width: 100%; accent-color: var(--teal-dark); }
.range-labels { display: flex; justify-content: space-between; color: var(--muted); font-size: 9px; }
.review-box { margin: 23px 0 16px; padding: 15px; border: 1px solid var(--line); border-radius: 11px; background: var(--paper); }
.review-box strong { font-size: 12px; }
.review-box p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.consent-field { display: flex; gap: 10px; align-items: flex-start; cursor: pointer; }
.consent-field input { margin-top: 3px; accent-color: var(--teal-dark); }
.consent-field span { color: #4d6576; font-size: 12px; }
.save-reminder { display: flex; gap: 9px; margin-top: 19px; padding: 12px 14px; border-radius: 10px; color: #735d23; background: var(--gold-soft); }
.save-reminder p { margin: 0; font-size: 11px; }
.save-reminder button { border: 0; padding: 0; color: var(--teal-dark); background: transparent; cursor: pointer; font-weight: 800; text-decoration: underline; }
.form-actions { display: grid; grid-template-columns: auto 1fr auto auto; gap: 10px; align-items: center; margin-top: 32px; padding-top: 22px; border-top: 1px solid var(--line); }
.form-error { margin: 20px 0 0; padding: 11px 13px; border: 1px solid #efc6cb; border-radius: 9px; color: #8d3943; background: var(--rose-soft); font-size: 12px; }

.results-page { padding: 40px 0 100px; }
.report-loading { min-height: 620px; padding-top: 140px; text-align: center; }
.loading-orb { position: relative; width: 84px; height: 84px; margin: 0 auto 28px; border: 1px solid #cbe6dc; border-radius: 50%; }
.loading-orb::before { content: ""; position: absolute; inset: 12px; border-radius: 50%; background: var(--navy-2); }
.loading-orb i { position: absolute; z-index: 2; top: 36px; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); animation: pulse-dot 1.2s infinite ease-in-out; }
.loading-orb i:nth-child(1) { left: 26px; }
.loading-orb i:nth-child(2) { left: 39px; animation-delay: .15s; }
.loading-orb i:nth-child(3) { left: 52px; animation-delay: .3s; }
.report-loading h2 { margin: 0 0 8px; font-size: 28px; }
.report-loading p { color: var(--muted); }
.loading-steps { display: flex; justify-content: center; gap: 8px; margin-top: 25px; }
.loading-steps span { padding: 7px 10px; border-radius: 999px; color: var(--muted); background: #ebf1f2; font-size: 10px; }
.loading-steps span.active { color: var(--teal-dark); background: var(--mint-soft); }
.report-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 16px; }
.report-toolbar .back-link { margin: 0; }
.report-toolbar > div { display: flex; gap: 8px; }
.report-hero { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: 45px; padding: 47px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 95% 0, rgba(88,223,179,.21), transparent 28%), var(--navy-2); box-shadow: var(--shadow-md); }
.report-hero h1 { max-width: 820px; margin: 0; font-size: clamp(35px, 5vw, 58px); line-height: 1.06; letter-spacing: -.045em; }
.report-hero > div:first-child > p:not(.eyebrow) { max-width: 800px; color: #bcd0da; }
.report-meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.report-meta span { padding: 5px 9px; border: 1px solid rgba(255,255,255,.13); border-radius: 999px; color: #bfd1db; background: rgba(255,255,255,.05); font-size: 10px; }
.report-next-step { align-self: center; padding: 22px; border: 1px solid rgba(88,223,179,.28); border-radius: 17px; background: rgba(88,223,179,.1); }
.report-next-step small { color: var(--mint); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.report-next-step p { margin: 8px 0 0; color: #eef8f5; font-size: 13px; }
.report-warning { margin-top: 16px; padding: 12px 15px; border: 1px solid #ead59b; border-radius: 10px; color: #775e1b; background: var(--gold-soft); font-size: 11px; }
.report-section { margin-top: 70px; }
.score-intro, .report-section-heading { display: flex; justify-content: space-between; gap: 50px; align-items: end; margin-bottom: 28px; }
.score-intro h2, .report-section-heading h2, .list-card h2, .portfolio-card h2, .privacy-card h2 { margin: 0; font-size: 29px; letter-spacing: -.035em; }
.score-intro > p, .report-section-heading > p { max-width: 420px; margin: 0; color: var(--muted); font-size: 12px; }
.section-kicker { margin: 0 0 6px; color: var(--teal-dark); font-size: 10px; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.score-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.score-card { display: grid; grid-template-columns: 78px 1fr; gap: 15px; align-items: center; padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-sm); }
.score-ring { --value: 50; display: grid; width: 72px; height: 72px; place-items: center; border-radius: 50%; background: conic-gradient(var(--teal) calc(var(--value) * 1%), #e6eeee 0); }
.score-ring::before { content: ""; grid-area: 1 / 1; width: 56px; height: 56px; border-radius: 50%; background: var(--white); }
.score-ring strong { z-index: 1; grid-area: 1 / 1; font-size: 20px; }
.score-card h3 { margin: 0 0 4px; font-size: 13px; }
.score-card p { margin: 0; color: var(--muted); font-size: 10px; }
.insight-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.insight-card { position: relative; min-height: 230px; padding: 32px; overflow: hidden; border-radius: var(--radius); }
.insight-card > span { position: absolute; top: 21px; right: 24px; opacity: .45; font-size: 11px; font-weight: 850; }
.insight-card h3 { margin: 42px 0 11px; font-size: 22px; }
.insight-card p { margin: 0; font-size: 14px; line-height: 1.75; }
.insight-card.positive { border: 1px solid #cce7dc; color: #174d41; background: var(--mint-soft); }
.insight-card.candid { border: 1px solid #ead9a6; color: #664f17; background: var(--gold-soft); }
.map-legend { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 15px; }
.map-legend span { padding: 5px 9px; border-radius: 999px; font-size: 9px; font-weight: 850; text-transform: uppercase; }
.map-legend .automate { color: #315ca8; background: var(--blue-soft); }
.map-legend .accelerate { color: #17705c; background: var(--mint-soft); }
.map-legend .human_led { color: #745a17; background: var(--gold-soft); }
.map-legend .develop { color: #5e49a0; background: var(--violet-soft); }
.task-map-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.task-card { padding: 19px; border: 1px solid var(--line); border-left: 4px solid var(--line); border-radius: 12px; background: var(--white); }
.task-card.automate { border-left-color: var(--blue); }
.task-card.accelerate { border-left-color: var(--teal); }
.task-card.human_led { border-left-color: var(--gold); }
.task-card.develop { border-left-color: var(--violet); }
.task-card header { display: flex; justify-content: space-between; gap: 15px; align-items: start; }
.task-card h3 { margin: 0; font-size: 14px; }
.task-card header span { flex: 0 0 auto; padding: 4px 7px; border-radius: 6px; color: var(--muted); background: var(--paper); font-size: 8px; font-weight: 850; text-transform: uppercase; }
.task-card p { margin: 11px 0; color: var(--muted); font-size: 11px; }
.task-card footer { padding-top: 10px; border-top: 1px solid var(--line); color: var(--ink-2); font-size: 10px; }
.task-card footer strong { color: var(--teal-dark); }
.strengths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.list-card { position: relative; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.list-card-icon { display: grid; width: 40px; height: 40px; place-items: center; margin-bottom: 20px; border-radius: 11px; color: var(--teal-dark); background: var(--mint-soft); font-size: 22px; font-weight: 800; }
.list-card ul, .privacy-card ul { display: grid; gap: 11px; margin: 20px 0 0; padding: 0; list-style: none; }
.list-card li { display: grid; grid-template-columns: 18px 1fr; gap: 8px; color: var(--muted); font-size: 12px; }
.list-card li::before { content: "✓"; display: grid; width: 17px; height: 17px; place-items: center; border-radius: 50%; color: var(--teal-dark); background: var(--mint-soft); font-size: 9px; font-weight: 900; }
.roadmap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.roadmap-card { position: relative; padding: 26px 22px 22px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.roadmap-card::before { content: ""; position: absolute; top: 0; left: 20px; right: 20px; height: 4px; border-radius: 0 0 7px 7px; background: var(--teal); }
.roadmap-card:nth-child(2)::before { background: var(--blue); }
.roadmap-card:nth-child(3)::before { background: var(--gold); }
.roadmap-card .period { color: var(--teal-dark); font-size: 10px; font-weight: 850; letter-spacing: .1em; text-transform: uppercase; }
.roadmap-card h3 { margin: 8px 0 7px; font-size: 18px; }
.roadmap-card > p { min-height: 60px; margin: 0; color: var(--muted); font-size: 11px; }
.roadmap-card ol { display: grid; gap: 10px; margin: 20px 0; padding: 0 0 0 18px; color: var(--ink-2); font-size: 11px; }
.roadmap-proof { padding: 12px; border-radius: 10px; background: var(--paper); }
.roadmap-proof strong { display: block; color: var(--teal-dark); font-size: 9px; text-transform: uppercase; }
.roadmap-proof p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.roadmap-hours { display: block; margin-top: 12px; color: var(--muted); font-size: 9px; text-align: right; }
.split-report-section { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: start; }
.report-section-heading.compact { margin-bottom: 16px; }
.recommendation-list { display: grid; gap: 10px; }
.recommendation-card { padding: 18px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); }
.recommendation-card header { display: flex; gap: 12px; align-items: start; }
.recommendation-icon { display: grid; width: 38px; height: 38px; flex: 0 0 auto; place-items: center; border-radius: 10px; color: var(--navy); background: var(--mint-soft); font-size: 12px; font-weight: 900; }
.recommendation-card h3 { margin: 0; font-size: 14px; }
.recommendation-card .provider { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; }
.recommendation-card p { margin: 12px 0; color: var(--muted); font-size: 10px; }
.recommendation-card .experiment { padding: 10px; border-radius: 8px; color: var(--ink-2); background: var(--paper); font-size: 9px; }
.recommendation-card .caution { display: block; margin-top: 9px; color: #8b6a1f; font-size: 8px; }
.recommendation-card a { display: inline-flex; margin-top: 12px; color: var(--teal-dark); font-size: 10px; font-weight: 850; text-decoration: none; }
.recommendation-card a:hover { text-decoration: underline; }
.portfolio-card { padding: 38px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--navy), var(--navy-3)); }
.portfolio-heading { display: flex; justify-content: space-between; gap: 30px; align-items: start; }
.portfolio-heading .section-kicker { color: var(--mint); }
.portfolio-heading > span { padding: 6px 10px; border: 1px solid rgba(255,255,255,.16); border-radius: 999px; color: var(--mint); font-size: 9px; font-weight: 850; text-transform: uppercase; }
.portfolio-card > p { max-width: 920px; color: #b9ced8; font-size: 13px; }
.portfolio-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 35px; margin-top: 28px; }
.portfolio-columns h3 { color: var(--mint); font-size: 12px; text-transform: uppercase; letter-spacing: .1em; }
.portfolio-columns ol, .portfolio-columns ul { display: grid; gap: 9px; margin: 0; padding-left: 20px; color: #d3e1e7; font-size: 11px; }
.evidence-box { margin-top: 28px; padding: 17px; border: 1px solid rgba(88,223,179,.25); border-radius: 12px; background: rgba(88,223,179,.08); }
.evidence-box strong { color: var(--mint); font-size: 10px; text-transform: uppercase; }
.evidence-box p { margin: 5px 0 0; color: #dbe9ee; font-size: 11px; }
.routine-list { display: grid; gap: 9px; }
.routine-item { display: grid; grid-template-columns: 110px 1fr auto; gap: 13px; align-items: center; padding: 14px; border: 1px solid var(--line); border-radius: 11px; background: var(--white); }
.routine-item strong { font-size: 11px; }
.routine-item p { margin: 0; color: var(--muted); font-size: 9px; }
.routine-item span { padding: 4px 7px; border-radius: 7px; color: var(--teal-dark); background: var(--mint-soft); font-size: 9px; font-weight: 850; }
.routine-item small { grid-column: 2 / 4; color: var(--ink-2); font-size: 9px; }
.privacy-card { padding: 29px; border-radius: var(--radius); color: var(--white); background: var(--navy-2); }
.shield-large { display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 22px; border-radius: 50%; color: var(--navy); background: var(--mint); font-weight: 900; }
.privacy-card .section-kicker { color: var(--mint); }
.privacy-card li { display: grid; grid-template-columns: 14px 1fr; gap: 7px; color: #bdd0da; font-size: 10px; }
.privacy-card li::before { content: "•"; color: var(--mint); }
.consultant-section { display: grid; grid-template-columns: .93fr 1.07fr; gap: 28px; overflow: hidden; border-radius: var(--radius-lg); color: var(--white); background: var(--navy); box-shadow: var(--shadow-md); }
.consultant-intro { padding: 42px; background: radial-gradient(circle at 0 100%, rgba(88,223,179,.13), transparent 38%); }
.consultant-intro h2 { margin: 0; font-size: 33px; line-height: 1.12; letter-spacing: -.04em; }
.consultant-intro > p:not(.eyebrow) { color: #afc4cf; font-size: 12px; }
.consultant-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 23px; }
.voice-status { display: flex; gap: 9px; align-items: center; margin-top: 18px; color: #9fb7c3; }
.voice-status > span { width: 9px; height: 9px; border-radius: 50%; background: #6e8290; }
.voice-status.connected > span { background: var(--mint); box-shadow: 0 0 0 5px rgba(88,223,179,.11); animation: pulse 1.5s infinite; }
.voice-status.error > span { background: var(--rose); }
.voice-status p { margin: 0; font-size: 10px; }
.voice-transcript { margin-top: 16px; padding: 12px; border: 1px solid rgba(255,255,255,.1); border-radius: 10px; background: rgba(255,255,255,.05); }
.voice-transcript strong { color: var(--mint); font-size: 9px; text-transform: uppercase; }
.voice-transcript p { max-height: 110px; overflow: auto; margin: 5px 0 0; color: #d4e1e7; font-size: 10px; }
.chat-card { display: grid; grid-template-rows: auto 1fr auto; min-height: 465px; margin: 20px; border-radius: 18px; color: var(--ink); background: var(--white); }
.chat-header { display: flex; gap: 10px; align-items: center; padding: 14px; border-bottom: 1px solid var(--line); }
.consultant-avatar { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 11px; color: var(--navy); background: var(--mint); font-size: 11px; font-weight: 900; }
.chat-header strong, .chat-header span { display: block; }
.chat-header strong { font-size: 12px; }
.chat-header span { color: var(--muted); font-size: 9px; }
.chat-messages { display: flex; flex-direction: column; gap: 9px; max-height: 330px; overflow-y: auto; padding: 16px; }
.chat-message { max-width: 88%; padding: 10px 12px; border-radius: 12px; color: var(--ink-2); background: var(--paper); font-size: 10px; white-space: pre-wrap; }
.chat-message.user { align-self: flex-end; color: var(--white); background: var(--teal-dark); border-bottom-right-radius: 4px; }
.chat-message.assistant { align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-message.thinking { color: var(--muted); font-style: italic; }
.chat-form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 11px; border-top: 1px solid var(--line); }
.chat-form textarea { resize: none; border: 1px solid var(--line); border-radius: 10px; padding: 9px; font-size: 10px; }
.chat-form button { width: 39px; border: 0; border-radius: 10px; color: var(--white); background: var(--teal-dark); cursor: pointer; font-size: 18px; }
.report-footer { display: flex; justify-content: space-between; gap: 30px; align-items: center; margin-top: 70px; padding-top: 25px; border-top: 1px solid var(--line); }
.report-footer p { max-width: 800px; color: var(--muted); font-size: 9px; }

.library-page, .history-page { padding: 68px 0 110px; }
.library-hero { display: grid; grid-template-columns: 1fr 230px; gap: 60px; align-items: end; margin-bottom: 40px; }
.library-hero > div:first-child > p:not(.eyebrow) { max-width: 760px; color: var(--muted); }
.library-stat { padding: 22px; border-radius: 17px; color: var(--white); background: var(--navy-2); }
.library-stat strong, .library-stat span, .library-stat small { display: block; }
.library-stat strong { color: var(--mint); font-size: 42px; line-height: 1; }
.library-stat span { margin-top: 5px; font-weight: 800; }
.library-stat small { margin-top: 11px; color: #9fb7c3; font-size: 9px; }
.library-controls { display: grid; grid-template-columns: .8fr .7fr 1.4fr; gap: 14px; margin-bottom: 24px; padding: 18px; }
.library-controls label { margin: 0; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.resource-card { display: flex; min-height: 290px; flex-direction: column; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-sm); }
.resource-card .resource-type { align-self: flex-start; padding: 4px 7px; border-radius: 6px; color: var(--teal-dark); background: var(--mint-soft); font-size: 8px; font-weight: 850; text-transform: uppercase; }
.resource-card h2 { margin: 18px 0 4px; font-size: 17px; }
.resource-card .provider { color: var(--muted); font-size: 10px; }
.resource-card > p { color: var(--muted); font-size: 11px; }
.resource-card dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 10px; margin: auto 0 16px; font-size: 9px; }
.resource-card dt { color: var(--muted); }
.resource-card dd { margin: 0; color: var(--ink-2); }
.resource-card a { color: var(--teal-dark); font-size: 10px; font-weight: 850; text-decoration: none; }
.resource-card a:hover { text-decoration: underline; }
.empty-state { padding: 70px 20px; border: 1px dashed var(--line-strong); border-radius: var(--radius); text-align: center; }
.empty-state h2 { margin: 0 0 6px; }
.empty-state p { color: var(--muted); }
.history-heading { display: flex; justify-content: space-between; gap: 35px; align-items: end; margin-bottom: 35px; }
.history-heading > div > p:not(.eyebrow) { color: var(--muted); }
.history-auth-required { padding: 45px; text-align: center; }
.history-auth-required h2 { margin: 0; }
.history-auth-required p { color: var(--muted); }
.history-list { display: grid; gap: 12px; }
.history-card { display: grid; grid-template-columns: 1fr auto; gap: 30px; align-items: center; padding: 22px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-sm); }
.history-card h2 { margin: 0; font-size: 17px; }
.history-card p { margin: 5px 0 0; color: var(--muted); font-size: 11px; }
.history-card .history-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.history-meta span { padding: 4px 7px; border-radius: 6px; color: var(--muted); background: var(--paper); font-size: 8px; }

.site-footer { padding: 55px 0 20px; color: #a8bdc8; background: #061725; }
.footer-grid { display: grid; grid-template-columns: 1.6fr repeat(3, .7fr); gap: 45px; }
.footer-brand { display: flex; gap: 12px; }
.footer-brand strong { color: var(--white); }
.footer-brand p { max-width: 360px; margin: 6px 0 0; font-size: 11px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 8px; }
.footer-grid > div > strong { margin-bottom: 7px; color: var(--white); font-size: 11px; text-transform: uppercase; letter-spacing: .09em; }
.footer-grid button, .footer-grid span { padding: 0; color: #8ca4b1; font-size: 10px; text-align: left; }
.footer-grid button:hover { color: var(--mint); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 42px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,.08); font-size: 9px; }

.modal-backdrop { position: fixed; z-index: 1000; inset: 0; display: grid; padding: 20px; place-items: center; background: rgba(2, 14, 24, .68); backdrop-filter: blur(7px); }
.modal-card { position: relative; width: min(100%, 460px); max-height: calc(100vh - 40px); overflow-y: auto; padding: 31px; border-radius: 20px; background: var(--white); box-shadow: var(--shadow-lg); }
.compact-modal { width: min(100%, 500px); }
.modal-close { position: absolute; top: 14px; right: 14px; display: grid; width: 31px; height: 31px; place-items: center; border: 0; border-radius: 50%; color: var(--muted); background: var(--paper); cursor: pointer; font-size: 20px; }
.modal-heading { margin-bottom: 22px; text-align: center; }
.modal-heading .brand-mark { margin: 0 auto 15px; }
.modal-heading h2 { margin: 0; font-size: 25px; }
.modal-heading p { margin: 7px 0 0; color: var(--muted); font-size: 11px; }
.auth-tabs { display: grid; grid-template-columns: 1fr 1fr; gap: 5px; margin-bottom: 20px; padding: 4px; border-radius: 10px; background: var(--paper); }
.auth-tabs button { border: 0; padding: 8px; border-radius: 8px; color: var(--muted); background: transparent; cursor: pointer; font-size: 11px; font-weight: 800; }
.auth-tabs button.active { color: var(--navy); background: var(--white); box-shadow: var(--shadow-sm); }
.auth-form { display: none; }
.auth-form.active { display: block; }
.modal-privacy { margin: 17px 0 0; color: var(--muted); font-size: 9px; text-align: center; }
.feedback-choice { display: grid; gap: 8px; margin-bottom: 18px; }
.feedback-choice label { cursor: pointer; }
.feedback-choice input { position: absolute; opacity: 0; }
.feedback-choice span { display: block; padding: 12px; border: 1px solid var(--line); border-radius: 10px; color: var(--muted); font-size: 11px; }
.feedback-choice input:checked + span { color: var(--teal-dark); border-color: var(--teal); background: var(--mint-soft); }
.toast-region { position: fixed; z-index: 1200; right: 18px; bottom: 18px; display: grid; gap: 8px; width: min(calc(100% - 36px), 390px); }
.toast { display: grid; grid-template-columns: auto 1fr auto; gap: 10px; align-items: start; padding: 13px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); box-shadow: var(--shadow-md); animation: toast-in .22s ease; }
.toast > span:first-child { display: grid; width: 22px; height: 22px; place-items: center; border-radius: 50%; color: var(--white); background: var(--teal); font-size: 10px; font-weight: 900; }
.toast.error > span:first-child { background: var(--rose); }
.toast strong { display: block; font-size: 11px; }
.toast p { margin: 2px 0 0; color: var(--muted); font-size: 9px; }
.toast button { border: 0; color: var(--muted); background: transparent; cursor: pointer; }

@keyframes fade-in { from { opacity: 0; transform: translateY(3px); } to { opacity: 1; transform: none; } }
@keyframes pulse-dot { 0%, 80%, 100% { opacity: .35; transform: scale(.7); } 40% { opacity: 1; transform: scale(1); } }
@keyframes pulse { 0%, 100% { box-shadow: 0 0 0 4px rgba(88,223,179,.08); } 50% { box-shadow: 0 0 0 8px rgba(88,223,179,.02); } }
@keyframes toast-in { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }


/* V2 cross-career discovery and platform workspace */
.track-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1.4fr) minmax(210px, .8fr) auto;
  gap: 14px;
  align-items: end;
  margin: 24px 0 20px;
  padding: 18px;
}
.track-controls label { display: grid; gap: 6px; margin: 0; }
.track-controls label > span { color: var(--muted); font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.track-controls input, .track-controls select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  border: 1px solid var(--line-strong);
  border-radius: 9px;
  color: var(--ink);
  background: var(--white);
}
.track-count { align-self: center; min-width: 150px; padding: 10px 13px; border-radius: 999px; color: var(--teal-dark); background: var(--mint-soft); font-size: 11px; font-weight: 850; text-align: center; }
.track-card { min-height: 390px; }
.track-card-top { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.track-card .track-sector { max-width: 165px; padding: 5px 8px; border-radius: 999px; color: var(--teal-dark); background: var(--mint-soft); font-size: 8px; font-weight: 850; line-height: 1.2; text-align: center; text-transform: uppercase; letter-spacing: .06em; }
.track-card .track-audience { margin-bottom: 11px; color: var(--ink-2); font-size: 11px; font-weight: 650; }
.track-card .track-shift { margin-bottom: 50px; font-size: 11px; }

.productivity-section { padding: 30px; border: 1px solid #cfe5df; border-radius: var(--radius-lg); background: linear-gradient(135deg, #f7fffc, #edf8f4); }
.productivity-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.productivity-grid article { padding: 18px; border: 1px solid #d5e9e3; border-radius: 14px; background: rgba(255,255,255,.88); box-shadow: var(--shadow-sm); }
.productivity-grid span { display: block; color: var(--muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; }
.productivity-grid strong { display: block; margin-top: 8px; color: var(--navy); font-size: clamp(20px, 2.2vw, 29px); letter-spacing: -.04em; }
.estimate-notes { display: grid; grid-template-columns: 1.2fr 1fr; gap: 18px; margin-top: 15px; padding: 14px 16px; border-radius: 12px; color: var(--muted); background: rgba(255,255,255,.68); font-size: 10px; }
.estimate-notes p { margin: 0; }
.estimate-notes strong { color: #715c20; font-weight: 700; }

.experiment-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.experiment-card { display: flex; min-height: 420px; flex-direction: column; padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.experiment-card header { display: grid; grid-template-columns: 34px 1fr; gap: 10px; align-items: start; }
.experiment-card header > span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 10px; color: var(--navy); background: var(--gold-soft); font-size: 10px; font-weight: 900; }
.experiment-card h3 { margin: 2px 0 0; font-size: 17px; line-height: 1.35; }
.experiment-workflow { margin: 16px 0; color: var(--muted); font-size: 11px; }
.experiment-card dl { display: grid; grid-template-columns: 72px 1fr; gap: 9px 10px; margin: 0; font-size: 10px; }
.experiment-card dt { color: var(--teal-dark); font-weight: 850; text-transform: uppercase; letter-spacing: .05em; }
.experiment-card dd { margin: 0; color: var(--ink-2); }
.experiment-estimate { margin-top: auto; padding: 11px 12px; border-radius: 10px; color: var(--teal-dark); background: var(--mint-soft); font-size: 10px; font-weight: 800; }

.pathway-workplace-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, .95fr); gap: 24px; align-items: start; }
.pathway-list { display: grid; gap: 12px; }
.pathway-card { padding: 20px; border: 1px solid var(--line); border-radius: 15px; background: var(--white); box-shadow: var(--shadow-sm); }
.pathway-card-top { display: flex; align-items: center; gap: 10px; }
.pathway-icon { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 11px; color: var(--navy); background: var(--gold-soft); font-size: 10px; font-weight: 900; }
.pathway-card h3 { margin: 0; font-size: 17px; }
.pathway-card > p { margin: 10px 0 12px; color: var(--muted); font-size: 11px; }
.pathway-skills, .metric-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.pathway-skills span, .metric-chips span { padding: 5px 8px; border-radius: 999px; color: var(--teal-dark); background: var(--mint-soft); font-size: 8px; font-weight: 800; }
.pathway-evidence { margin-top: 13px; padding-top: 12px; border-top: 1px solid var(--line); }
.pathway-evidence strong { color: var(--muted); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.pathway-evidence p { margin: 4px 0 0; font-size: 10px; }
.workplace-card { padding: 29px; border-radius: var(--radius-lg); color: var(--white); background: linear-gradient(145deg, var(--navy-2), var(--navy-3)); box-shadow: var(--shadow-md); }
.workplace-card .section-kicker { color: var(--mint); }
.workplace-card h2 { margin: 4px 0 17px; font-size: 25px; }
.workplace-card blockquote { margin: 0 0 21px; padding: 15px 17px; border-left: 3px solid var(--mint); border-radius: 0 11px 11px 0; color: #e7f1f5; background: rgba(255,255,255,.07); font-size: 12px; }
.workplace-card h3 { margin: 18px 0 8px; color: var(--mint); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.workplace-card ul { display: grid; gap: 7px; margin: 0; padding-left: 18px; color: #d4e3e9; font-size: 10px; }
.pilot-request { margin-top: 20px; padding: 14px; border: 1px solid rgba(88,223,179,.25); border-radius: 12px; background: rgba(88,223,179,.09); }
.pilot-request strong { color: var(--mint); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.pilot-request p { margin: 5px 0 0; color: #eef8f5; font-size: 11px; }

.progress-workspace { padding: 30px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-sm); }
.progress-summary { display: grid; grid-template-columns: 1fr auto; gap: 22px; align-items: center; padding: 14px 16px; border-radius: 13px; background: var(--paper); }
.progress-summary > div > span { display: block; margin-bottom: 7px; color: var(--muted); font-size: 10px; font-weight: 750; }
.progress-summary > strong { color: var(--teal-dark); font-size: 25px; }
.progress-track { height: 8px; overflow: hidden; border-radius: 999px; background: #dce9e6; }
.progress-track i { display: block; width: 0; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--teal-dark), var(--mint)); transition: width .2s ease; }
.progress-action-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 18px; }
.progress-phase { padding: 17px; border: 1px solid var(--line); border-radius: 13px; background: #fbfdfc; }
.progress-phase h3 { min-height: 38px; margin: 0 0 12px; font-size: 12px; }
.progress-action { position: relative; display: grid; grid-template-columns: 20px 1fr; gap: 8px; align-items: start; margin: 0 0 9px; cursor: pointer; }
.progress-action input { width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--teal-dark); }
.progress-action span { color: var(--ink-2); font-size: 9px; line-height: 1.45; }
.progress-action input:checked + span { color: var(--muted); text-decoration: line-through; }
.progress-fields { display: grid; grid-template-columns: 1.2fr .8fr; gap: 14px; margin-top: 20px; }
.progress-fields .field { margin: 0; }
.progress-fields .wide { grid-column: 1 / -1; }
.progress-actions { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-top: 14px; }
.progress-actions > span { color: var(--muted); font-size: 10px; }
.metric-chips { margin-top: 12px; }
.metric-chips span { color: var(--navy); background: rgba(88,223,179,.8); }



/* V3 integrated platform workspaces ----------------------------------------- */
.verification-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 42px;
  padding: 9px 20px;
  color: #604a0a;
  border-bottom: 1px solid #ead38d;
  background: #fff8df;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}
.verification-banner button { border: 0; padding: 0; color: #755a08; background: transparent; cursor: pointer; font-weight: 850; text-decoration: underline; }
.platform-page { padding: 58px 0 90px; }
.narrow-page { width: min(calc(100% - 40px), 980px); }
.platform-hero,
.workspace-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 34px;
  margin-bottom: 34px;
}
.platform-hero {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  padding: 44px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 83% 18%, rgba(88,223,179,.2), transparent 28%),
    linear-gradient(135deg, var(--navy), #0a3249 66%, #0d574d);
  box-shadow: var(--shadow-md);
}
.platform-hero::after { content: ""; position: absolute; right: -75px; bottom: -115px; width: 300px; height: 300px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 45px rgba(255,255,255,.025), 0 0 0 90px rgba(255,255,255,.018); }
.platform-hero > * { position: relative; z-index: 1; }
.platform-hero > div { max-width: 760px; }
.platform-hero h1,
.workspace-heading h1 { margin: 7px 0 12px; font-size: clamp(34px, 4.2vw, 58px); line-height: 1.04; letter-spacing: -.045em; }
.platform-hero h1 { color: var(--white); }
.platform-hero > div > p:last-child { max-width: 720px; margin: 0; color: #c7dce5; font-size: 15px; }
.platform-hero .eyebrow { color: #b9f2df; }
.workspace-heading > div { max-width: 850px; }
.workspace-heading > div > p:last-child { max-width: 760px; margin: 0; color: var(--muted); }
.workspace-heading .button,
.platform-hero .button { flex: 0 0 auto; }
.platform-stat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; margin: 0 0 24px; }
.metric-card { display: flex; min-height: 116px; flex-direction: column; justify-content: center; padding: 21px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); box-shadow: var(--shadow-sm); }
.metric-card strong { display: block; color: var(--navy); font-size: clamp(24px, 3vw, 36px); line-height: 1; letter-spacing: -.04em; overflow-wrap: anywhere; }
.metric-card span { display: block; margin-top: 8px; color: var(--ink-2); font-size: 10px; font-weight: 850; text-transform: uppercase; letter-spacing: .07em; }
.metric-card small { display: block; margin-top: 6px; color: var(--muted); font-size: 9px; }
.platform-module-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.platform-module-card { position: relative; display: flex; min-height: 285px; flex-direction: column; padding: 28px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease; }
.platform-module-card:hover { transform: translateY(-3px); border-color: #bbd6d0; box-shadow: var(--shadow-md); }
.platform-module-card::after { content: ""; position: absolute; right: -38px; bottom: -54px; width: 130px; height: 130px; border-radius: 50%; background: var(--mint-soft); }
.module-number { position: relative; z-index: 1; display: grid; width: 44px; height: 44px; place-items: center; margin-bottom: 25px; border-radius: 14px; color: var(--teal-dark); background: var(--mint-soft); font-size: 11px; font-weight: 900; }
.platform-module-card:nth-child(3n + 2) .module-number { color: #755c12; background: var(--gold-soft); }
.platform-module-card:nth-child(3n) .module-number { color: #315b9a; background: var(--blue-soft); }
.platform-module-card h2 { position: relative; z-index: 1; margin: 0; font-size: 20px; line-height: 1.25; }
.platform-module-card p { position: relative; z-index: 1; margin: 11px 0 20px; color: var(--muted); font-size: 12px; }
.platform-module-card button { position: relative; z-index: 1; align-self: flex-start; margin-top: auto; padding: 0; border: 0; color: var(--teal-dark); background: transparent; cursor: pointer; font-size: 12px; font-weight: 850; }
.platform-principle { display: grid; grid-template-columns: minmax(220px, .65fr) minmax(0, 1.6fr); gap: 30px; align-items: center; margin-top: 22px; padding: 27px 30px; border-left: 4px solid var(--mint); }
.platform-principle strong { font-size: 18px; }
.platform-principle p { margin: 0; color: var(--muted); font-size: 12px; }
.auth-required { padding: 44px; text-align: center; }
.auth-required h2 { margin: 0 0 8px; }
.auth-required p { max-width: 620px; margin: 0 auto 19px; color: var(--muted); }
.card-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 18px; }
.card-heading h2 { margin: 0; font-size: 21px; line-height: 1.25; }
.card-heading p { margin: 5px 0 0; color: var(--muted); }
.muted { color: var(--muted) !important; }
.grow { min-width: 0; flex: 1 1 auto; }
.platform-form { display: grid; gap: 14px; }
.platform-form .field { margin: 0; }
.platform-form .button { justify-self: start; }
.compact-form { gap: 10px; }
.form-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.form-row.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.check-field,
.inline-check { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-2); font-size: 11px; cursor: pointer; }
.check-field input,
.inline-check input { flex: 0 0 auto; width: 17px; height: 17px; margin: 1px 0 0; accent-color: var(--teal-dark); }
.check-field span,
.inline-check span { line-height: 1.45; }
.checklist-fieldset { display: grid; gap: 9px; margin: 0; padding: 15px; border: 1px solid var(--line); border-radius: 12px; }
.checklist-fieldset legend { padding: 0 7px; color: var(--ink-2); font-size: 11px; font-weight: 850; }
.card-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.text-button { border: 0; padding: 4px 2px; color: var(--teal-dark); background: transparent; cursor: pointer; font-size: 10px; font-weight: 850; text-decoration: none; }
.text-button:hover { text-decoration: underline; }
.danger-text { color: #a23e4a !important; }
.button-danger { color: var(--white); background: #b84b59; box-shadow: 0 9px 20px rgba(184,75,89,.18); }
.button-danger:hover { background: #9e3c49; }
.danger-form { padding-top: 16px; border-top: 1px solid #f0cbd0; }
.status-badge { display: inline-flex; align-items: center; justify-content: center; min-height: 25px; padding: 5px 9px; border: 1px solid var(--line); border-radius: 999px; color: var(--ink-2); background: var(--paper); font-size: 8px; font-weight: 900; line-height: 1; text-transform: uppercase; letter-spacing: .07em; white-space: nowrap; }
.status-approved, .status-active, .status-published, .status-passed, .status-completed, .status-accepted, .status-verified { color: #11624f; border-color: #b9e3d7; background: var(--mint-soft); }
.status-pending, .status-requested, .status-submitted, .status-in-review, .status-draft { color: #72560a; border-color: #ead899; background: var(--gold-soft); }
.status-rejected, .status-declined, .status-cancelled, .status-disabled, .status-suspended, .status-expired, .status-archived, .status-failed { color: #9c3e49; border-color: #efc6cc; background: var(--rose-soft); }
.status-review-required { color: #4d4292; border-color: #d7cff4; background: var(--violet-soft); }
.metric-strip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; }
.metric-strip .metric-card { min-height: 96px; padding: 16px; }
.vertical-metrics { grid-template-columns: 1fr; }
.vertical-metrics .metric-card { min-height: 78px; }
.two-column-workspace { display: grid; grid-template-columns: minmax(300px, .82fr) minmax(0, 1.5fr); gap: 22px; align-items: start; }
.workspace-form-card { position: sticky; top: 96px; padding: 25px; }
.workspace-section { min-width: 0; }
.compact-list { display: grid; gap: 10px; }
.compact-row,
.booking-row,
.admin-record { display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 14px 15px; border: 1px solid var(--line); border-radius: 12px; background: #fbfdfc; }
.compact-row strong,
.booking-row strong,
.admin-record strong { display: block; font-size: 12px; }
.compact-row small,
.booking-row small,
.admin-record small { display: block; margin-top: 4px; color: var(--muted); font-size: 9px; overflow-wrap: anywhere; }
.compact-row p,
.booking-row p,
.admin-record p { margin: 4px 0 0; color: var(--muted); font-size: 10px; }
.clickable-row { width: 100%; border: 1px solid var(--line); cursor: pointer; text-align: left; }
.clickable-row:hover { border-color: #b8d5cf; background: var(--mint-soft); }
.share-card { margin-top: 18px; padding: 21px; }
.share-result { margin-top: 14px; padding: 14px; border: 1px solid #b9e3d7; border-radius: 12px; color: var(--teal-dark); background: var(--mint-soft); font-size: 10px; overflow-wrap: anywhere; }
.share-result a { font-weight: 850; }
.evidence-grid { display: grid; gap: 15px; }
.evidence-card { padding: 24px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.evidence-card-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 15px; }
.evidence-card h2 { margin: 2px 0 0; font-size: 19px; }
.evidence-meta { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.evidence-meta span,
.chip-row span { padding: 5px 8px; border-radius: 999px; color: var(--ink-2); background: var(--paper); font-size: 8px; font-weight: 750; }
.evidence-details { display: grid; grid-template-columns: 130px 1fr; gap: 8px 14px; margin: 15px 0 0; font-size: 10px; }
.evidence-details dt { color: var(--teal-dark); font-weight: 850; }
.evidence-details dd { margin: 0; color: var(--ink-2); white-space: pre-line; overflow-wrap: anywhere; }
.endorsement { margin: 0; padding: 16px 18px; border-left: 3px solid var(--mint); border-radius: 0 12px 12px 0; color: var(--ink-2); background: var(--mint-soft); font-size: 11px; }
.lab-grid,
.consultant-grid,
.intelligence-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; }
.lab-card,
.consultant-card,
.intelligence-card { display: flex; min-width: 0; min-height: 330px; flex-direction: column; padding: 23px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-sm); }
.lab-card-top,
.lab-detail-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.lab-card h2,
.consultant-card h2,
.intelligence-card h2 { margin: 10px 0 8px; font-size: 18px; line-height: 1.3; }
.lab-card p,
.consultant-card p,
.intelligence-card p { color: var(--muted); font-size: 11px; }
.lab-card .button,
.consultant-card .button,
.intelligence-card .button { align-self: flex-start; margin-top: auto; }
.time-badge { display: inline-flex; padding: 5px 8px; border-radius: 999px; color: #315b9a; background: var(--blue-soft); font-size: 8px; font-weight: 850; white-space: nowrap; }
.privacy-callout,
.marketplace-notice,
.notice-card { padding: 16px 18px; border: 1px solid #d8e5ea; border-radius: 13px; color: var(--ink-2); background: #f4f8fa; font-size: 11px; }
.privacy-callout { border-color: #ead899; background: var(--gold-soft); }
.lab-workspace,
.marketplace-workspace,
.organization-detail { margin-top: 22px; padding: 26px; border: 1px solid var(--line); border-radius: var(--radius-lg); background: var(--white); box-shadow: var(--shadow-md); }
.panel-close { display: grid; width: 35px; height: 35px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; color: var(--muted); background: var(--paper); cursor: pointer; font-size: 20px; }
.lab-detail-grid { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr); gap: 22px; margin-top: 18px; }
.lab-detail-grid h3 { margin: 21px 0 8px; font-size: 14px; }
.lab-detail-grid ul,
.lab-detail-grid ol { padding-left: 20px; color: var(--ink-2); font-size: 11px; }
.lab-detail-grid li + li { margin-top: 7px; }
.lab-result { margin-top: 15px; padding: 17px; border: 1px solid #b9e3d7; border-radius: 12px; background: var(--mint-soft); }
.lab-result h3 { margin: 0 0 6px; }
.lab-result p { margin: 0; color: var(--ink-2); font-size: 11px; }
.conflict-note { margin-top: 13px; padding: 10px 12px; border-radius: 10px; color: #6a561c !important; background: var(--gold-soft); font-size: 9px !important; }
.consultant-large-avatar { display: grid; width: 54px; height: 54px; place-items: center; border-radius: 16px; color: var(--navy); background: var(--mint); font-size: 18px; font-weight: 900; }
.marketplace-notice { margin-bottom: 20px; }
.booking-panel { margin: 22px 0; padding: 22px; }
.horizontal-form { display: grid; grid-template-columns: 1fr 1.5fr auto; gap: 12px; align-items: end; }
.org-entry-grid,
.account-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.org-entry-grid > .card,
.account-grid > .card,
.admin-grid > .card { padding: 24px; }
.org-detail-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 18px; }
.org-detail-heading h2 { margin: 0; }
.org-detail-heading p { margin: 6px 0 0; color: var(--muted); }
.org-tabs { display: flex; flex-wrap: wrap; gap: 7px; margin: 24px 0 18px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.org-tabs button { padding: 8px 11px; border: 0; border-radius: 9px; color: var(--muted); background: transparent; cursor: pointer; font-size: 10px; font-weight: 850; }
.org-tabs button.active,
.org-tabs button:hover { color: var(--navy); background: var(--mint-soft); }
.org-panel { display: none; }
.org-panel.active { display: block; }
.org-panel h3 { margin: 0 0 13px; }
.read-only-form { opacity: .78; }
.intelligence-meta { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 11px; }
.intelligence-meta span { padding: 5px 8px; border-radius: 999px; color: var(--ink-2); background: var(--paper); font-size: 8px; font-weight: 800; }
.intelligence-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 16px 0; }
.intelligence-columns h3 { margin: 0 0 7px; font-size: 11px; text-transform: uppercase; letter-spacing: .06em; }
.intelligence-columns ul { margin: 0; padding-left: 17px; color: var(--ink-2); font-size: 10px; }
.intelligence-columns li + li { margin-top: 6px; }
.intelligence-card a { color: var(--teal-dark); font-size: 10px; font-weight: 850; }
.account-grid hr { height: 1px; margin: 21px 0; border: 0; background: var(--line); }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.admin-wide { grid-column: 1 / -1; }
.admin-record { align-items: flex-start; }
.intelligence-admin-record { align-items: center; }
.audit-table { display: grid; gap: 1px; overflow-x: auto; border: 1px solid var(--line); border-radius: 12px; background: var(--line); }
.audit-row { display: grid; grid-template-columns: 150px minmax(190px, 1fr) minmax(190px, 1fr) minmax(150px, .7fr); gap: 12px; min-width: 760px; padding: 11px 13px; background: var(--white); font-size: 9px; }
.audit-row time,
.audit-row small { color: var(--muted); }
.public-passport-header { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 25px; }
.public-passport-header h1 { margin: 4px 0 5px; font-size: clamp(30px, 4vw, 48px); line-height: 1.05; }
.public-passport-header p { margin: 0; color: var(--muted); }
.error-notice { color: #8e3440; border-color: #efc6cc; background: var(--rose-soft); }
.report-disclaimer { margin-top: 22px; color: var(--muted); font-size: 9px; }
.feedback-ratings { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin: 16px 0; }
.feedback-ratings .field { margin: 0; }
.routine-privacy { margin-top: 8px; color: var(--muted); font-size: 9px; }

@media (max-width: 1050px) {
  .platform-module-grid, .lab-grid, .consultant-grid, .intelligence-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .platform-stat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .two-column-workspace { grid-template-columns: 1fr; }
  .workspace-form-card { position: static; }
  .productivity-grid { grid-template-columns: repeat(2, 1fr); }
  .experiment-grid { grid-template-columns: 1fr; }
  .experiment-card { min-height: 0; }
  .pathway-workplace-grid { grid-template-columns: 1fr; }
  .progress-action-list { grid-template-columns: 1fr; }
  .mode-pill { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { width: min(100%, 600px); margin-inline: auto; }
  .problem-grid { grid-template-columns: 1fr; gap: 45px; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .track-grid, .resource-grid { grid-template-columns: repeat(2, 1fr); }
  .human-value-card { grid-template-columns: 1fr; }
  .assessment-layout { grid-template-columns: 230px minmax(0, 1fr); }
  .score-grid { grid-template-columns: repeat(2, 1fr); }
  .roadmap-grid { grid-template-columns: 1fr; }
  .roadmap-card > p { min-height: 0; }
  .report-hero { grid-template-columns: 1fr; }
  .consultant-section { grid-template-columns: 1fr; }
  .chat-card { margin-top: 0; }
  .footer-grid { grid-template-columns: 1.4fr repeat(3, .7fr); gap: 25px; }
}

@media (max-width: 820px) {
  .platform-hero, .workspace-heading, .org-detail-heading { align-items: flex-start; flex-direction: column; }
  .platform-hero { padding: 34px; }
  .platform-principle { grid-template-columns: 1fr; gap: 10px; }
  .account-grid, .org-entry-grid, .admin-grid { grid-template-columns: 1fr; }
  .admin-wide { grid-column: auto; }
  .lab-detail-grid { grid-template-columns: 1fr; }
  .horizontal-form { grid-template-columns: 1fr; }
  .form-row.three { grid-template-columns: 1fr 1fr; }
  .track-controls { grid-template-columns: 1fr 1fr; }
  .track-count { grid-column: 1 / -1; justify-self: start; }
  .estimate-notes { grid-template-columns: 1fr; }
  .site-header { height: 66px; }
  .mobile-nav-toggle { display: block; margin-left: auto; }
  .primary-nav { position: fixed; top: 66px; left: 0; right: 0; display: none; padding: 12px 20px 18px; border-bottom: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow-md); }
  .primary-nav.open { display: grid; }
  .primary-nav button { text-align: left; }
  .header-actions { margin-left: 0; }
  .header-actions .button-ghost { min-height: 36px; padding: 7px 10px; }
  .user-menu-button > span:last-child { display: none; }
  .hero { padding-top: 55px; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 450px; }
  .split-heading, .cta-inner { grid-template-columns: 1fr; gap: 20px; }
  .assessment-layout { grid-template-columns: 1fr; }
  .assessment-sidebar { position: static; }
  .assessment-sidebar ol { grid-template-columns: repeat(4, 1fr); }
  .assessment-sidebar li { display: block; padding: 8px; text-align: center; }
  .assessment-sidebar li > span { margin: 0 auto 5px; }
  .assessment-sidebar li small { display: none; }
  .sidebar-help { display: none; }
  .checkbox-grid { grid-template-columns: repeat(2, 1fr); }
  .task-map-grid, .strengths-grid, .split-report-section { grid-template-columns: 1fr; }
  .report-hero { padding: 35px; }
  .library-hero { grid-template-columns: 1fr; }
  .library-stat { max-width: 260px; }
  .library-controls { grid-template-columns: 1fr 1fr; }
  .search-field { grid-column: 1 / 3; }
  .footer-grid { grid-template-columns: 1.4fr 1fr; }
}

@media (max-width: 620px) {
  .platform-page { padding: 40px 0 70px; }
  .platform-hero { min-height: 0; padding: 28px 21px; }
  .platform-hero h1, .workspace-heading h1 { font-size: 36px; }
  .platform-hero .button, .workspace-heading .button { width: 100%; }
  .platform-stat-grid, .platform-module-grid, .lab-grid, .consultant-grid, .intelligence-grid, .metric-strip { grid-template-columns: 1fr; }
  .platform-module-card { min-height: 0; }
  .platform-principle, .auth-required, .workspace-form-card, .lab-workspace, .marketplace-workspace, .organization-detail { padding: 21px 17px; }
  .form-row, .form-row.three, .feedback-ratings, .intelligence-columns { grid-template-columns: 1fr; }
  .compact-row, .booking-row, .admin-record, .evidence-card-header { align-items: flex-start; flex-direction: column; }
  .card-actions { width: 100%; }
  .evidence-details { grid-template-columns: 1fr; }
  .evidence-details dt { margin-top: 6px; }
  .org-tabs { display: grid; grid-template-columns: repeat(2, 1fr); }
  .audit-row { min-width: 650px; }
  .verification-banner { align-items: flex-start; flex-direction: column; gap: 3px; }
  .track-controls { grid-template-columns: 1fr; }
  .track-count { grid-column: auto; }
  .productivity-section, .progress-workspace { padding: 22px 17px; }
  .productivity-grid { grid-template-columns: 1fr; }
  .experiment-card { padding: 20px 17px; }
  .pathway-workplace-grid { display: block; }
  .workplace-card { margin-top: 18px; padding: 24px 19px; }
  .progress-fields { grid-template-columns: 1fr; }
  .progress-fields .wide { grid-column: auto; }
  .progress-actions { align-items: stretch; flex-direction: column; }
  .progress-actions .button { width: 100%; }
  .shell { width: min(calc(100% - 26px), var(--shell)); }
  .brand-copy small { display: none; }
  .brand-mark { width: 37px; height: 37px; }
  .brand-mark svg { width: 27px; }
  .hero h1 { font-size: 43px; }
  .hero-lede { font-size: 16px; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .trust-row { display: grid; gap: 7px; }
  .hero-visual { min-height: 420px; }
  .hero-panel { left: 0; width: 100%; padding: 17px; }
  .preview-role { grid-template-columns: 42px 1fr; }
  .preview-role > span, .preview-role > div:last-child { display: none; }
  .floating-two { display: none; }
  .floating-one { left: 8px; bottom: 15px; }
  .section { padding-block: 70px; }
  .process-grid, .track-grid, .resource-grid { grid-template-columns: 1fr; }
  .human-value-card { padding: 33px 25px; }
  .assessment-page, .library-page, .history-page { padding-top: 42px; }
  .assessment-sidebar ol { gap: 2px; }
  .assessment-sidebar li strong { font-size: 9px; }
  .assessment-form { padding: 23px 18px; }
  .field-grid.two { grid-template-columns: 1fr; gap: 0; }
  .checkbox-grid { grid-template-columns: 1fr 1fr; }
  .form-actions { grid-template-columns: auto 1fr auto; }
  .form-actions #assessment-next, .form-actions #assessment-submit { grid-column: 3; }
  .score-grid { grid-template-columns: 1fr; }
  .insight-grid { grid-template-columns: 1fr; }
  .score-intro, .report-section-heading { display: block; }
  .score-intro > p, .report-section-heading > p { margin-top: 10px; }
  .report-toolbar { align-items: flex-start; }
  .report-toolbar > div { flex-direction: column; }
  .report-hero { padding: 28px 22px; }
  .report-hero h1 { font-size: 35px; }
  .report-section { margin-top: 52px; }
  .portfolio-card { padding: 28px 20px; }
  .portfolio-heading, .portfolio-columns { display: block; }
  .portfolio-heading > span { display: inline-flex; margin-top: 12px; }
  .portfolio-columns > div + div { margin-top: 25px; }
  .routine-item { grid-template-columns: 90px 1fr; }
  .routine-item span { grid-column: 1; grid-row: 2; justify-self: start; }
  .routine-item small { grid-column: 2; }
  .consultant-intro { padding: 30px 22px; }
  .chat-card { margin: 12px; }
  .library-controls { grid-template-columns: 1fr; }
  .search-field { grid-column: auto; }
  .history-heading { display: block; }
  .history-heading .button { margin-top: 20px; }
  .history-card { grid-template-columns: 1fr; }
  .history-card .button { justify-self: start; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { display: grid; }
  .modal-card { padding: 27px 20px; }
}

@media print {
  @page { margin: 12mm; }
  body { color: #000; background: #fff; font-size: 10pt; }
  .site-header, .site-footer, .no-print, .toast-region, .modal-backdrop { display: none !important; }
  .app-view { display: none !important; }
  #view-results { display: block !important; }
  body.print-passport #view-results { display: none !important; }
  body.print-passport #view-public-passport { display: block !important; }
  .platform-page { padding: 0; }
  .evidence-card, .notice-card { box-shadow: none; break-inside: avoid; }
  .results-page { width: 100%; padding: 0; }
  .report-content { display: block !important; }
  .report-hero { padding: 22px; color: #000; border: 2px solid #17384d; background: #fff; box-shadow: none; break-inside: avoid; }
  .report-hero h1 { color: #000; font-size: 26pt; }
  .report-hero > div:first-child > p:not(.eyebrow), .report-next-step p { color: #222; }
  .report-next-step { border-color: #777; background: #f5f5f5; }
  .report-meta span { color: #333; border-color: #aaa; }
  .report-section { margin-top: 28px; }
  .score-grid { grid-template-columns: repeat(3, 1fr); }
  .score-card, .task-card, .list-card, .roadmap-card, .recommendation-card { box-shadow: none; break-inside: avoid; }
  .score-ring { print-color-adjust: exact; -webkit-print-color-adjust: exact; }
  .roadmap-grid { grid-template-columns: repeat(3, 1fr); }
  .productivity-grid { grid-template-columns: repeat(4, 1fr); }
  .experiment-grid { grid-template-columns: repeat(3, 1fr); }
  .pathway-workplace-grid { grid-template-columns: 1fr 1fr; }
  .split-report-section, .strengths-grid, .task-map-grid { grid-template-columns: repeat(2, 1fr); }
  .experiment-card, .pathway-card, .workplace-card, .productivity-section { box-shadow: none; break-inside: avoid; }
  .workplace-card { color: #000; border: 1px solid #333; background: #fff; }
  .workplace-card * { color: #000 !important; }
  .portfolio-card, .privacy-card { color: #000; border: 1px solid #333; background: #fff; break-inside: avoid; }
  .portfolio-card *, .privacy-card * { color: #000 !important; }
  .report-footer { display: block; }
}
