:root {
  --ink: #111827;
  --ink-soft: #253044;
  --muted: #657184;
  --line: #d8e0ea;
  --paper: #f6f8fb;
  --panel: #ffffff;
  --white: #ffffff;
  --platinum: #edf2f7;
  --teal: #087f7b;
  --green: #1d6b5b;
  --copper: #b26a31;
  --blue: #2f5da8;
  --amber: #d99a3d;
  --shadow: 0 28px 80px rgba(17, 24, 39, 0.13);
  --shadow-soft: 0 16px 48px rgba(17, 24, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 14% 0%, rgba(8, 127, 123, 0.2), transparent 24rem),
    linear-gradient(180deg, #101823 0%, #101823 320px, #f4f7fb 320px, #eef3f7 100%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(16, 24, 35, 0.84);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px) saturate(160%);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1220px;
  min-height: 74px;
  margin: 0 auto;
  padding: 0 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: var(--white);
  background: linear-gradient(145deg, #111827, #087f7b);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18), 0 10px 28px rgba(8, 127, 123, 0.22);
  font-weight: 850;
}

.brand strong,
.brand small {
  display: block;
}

.brand small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  line-height: 1.25;
}

.brand strong {
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.91rem;
  font-weight: 720;
}

.nav-menu a {
  padding: 9px 10px;
  border-radius: 8px;
}

.nav-menu a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu a[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(410px, 0.96fr);
  gap: 48px;
  align-items: center;
  max-width: 1220px;
  min-height: calc(100vh - 122px);
  margin: 24px auto 0;
  padding: 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 35, 0.98), rgba(14, 54, 58, 0.94)),
    #101823;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(7, 12, 20, 0.34);
}

.hero::before {
  position: absolute;
  inset: 28px 12px auto auto;
  width: min(42vw, 560px);
  height: 560px;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle, rgba(8, 127, 123, 0.16), transparent 68%);
  filter: blur(10px);
}

.resources-hero {
  max-width: 1220px;
  margin: 0 auto;
  padding: 78px 24px 42px;
}

.app-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.72fr);
  gap: 42px;
  align-items: center;
  max-width: 1220px;
  min-height: 540px;
  margin: 24px auto 0;
  padding: 48px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 24, 35, 0.98), rgba(12, 55, 58, 0.94)),
    #101823;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 34px 100px rgba(7, 12, 20, 0.34);
}

.app-hero h1,
.hero h1 {
  max-width: 760px;
}

.app-hero .hero-lede,
.hero .hero-lede {
  color: rgba(255, 255, 255, 0.76);
}

.resources-hero h1 {
  max-width: 980px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  gap: 42px;
  align-items: start;
  max-width: 1220px;
  margin: 24px auto 0;
  padding: 48px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.start-hero {
  display: grid;
  grid-template-columns: minmax(340px, 1fr);
  gap: 0;
  align-items: center;
  max-width: 680px;
  min-height: 0;
  margin: 24px auto 0;
  padding: 20px;
}

.start-hero .start-command-panel {
  order: 1;
}

.role-selector-panel,
.role-panel {
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(190, 201, 216, 0.74);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.app-hero .role-selector-panel {
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: none;
}

.role-selector-panel label {
  display: block;
  margin-bottom: 10px;
  color: var(--ink);
  font-weight: 850;
}

.role-selector-panel select {
  width: 100%;
  min-height: 50px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 193, 205, 0.86);
  border-radius: 8px;
  font: inherit;
  font-weight: 760;
}

.role-selector-panel p,
.role-panel li,
.clean-list li {
  color: var(--muted);
}

.role-category-label {
  margin: 4px 0 12px;
  color: var(--copper);
  font-size: 0.82rem;
  font-weight: 850;
  text-transform: uppercase;
}

.role-workflow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, 0.75fr);
  gap: 16px;
  align-items: stretch;
}

.role-description-highlights {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.72fr);
  gap: 16px;
}

.role-profile-card,
.role-responsibilities-card,
.role-value-card {
  min-height: 100%;
}

.role-value-stack {
  display: grid;
  gap: 16px;
}

.role-profile-card h2 {
  margin-top: 18px;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 0.98;
}

.role-profile-card p:not(.eyebrow):not(.role-category-label),
.role-value-card p {
  color: var(--ink);
  font-size: 1.02rem;
}

.role-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.role-tag-row span {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(230, 238, 247, 0.72);
  border: 1px solid rgba(184, 193, 205, 0.72);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

.role-research-note {
  margin: 18px 0 0;
  padding: 12px 14px;
  color: var(--ink-soft);
  background: rgba(230, 238, 247, 0.72);
  border: 1px solid rgba(184, 193, 205, 0.72);
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 720;
}

.role-research-note[data-status="verified"] {
  color: #10594f;
  background: rgba(23, 105, 94, 0.09);
  border-color: rgba(23, 105, 94, 0.28);
}

.role-research-note[data-status="inferred"] {
  color: #7a4a1f;
  background: rgba(216, 155, 61, 0.12);
  border-color: rgba(216, 155, 61, 0.34);
}

.role-research-note[data-status="low_confidence"],
.role-research-note[data-status="missing"] {
  color: #8b2f2f;
  background: rgba(159, 45, 45, 0.08);
  border-color: rgba(159, 45, 45, 0.24);
}

.role-enablements-card {
  margin-top: 16px;
}

.role-enablements-note {
  max-width: 860px;
  margin: 10px 0 18px;
  color: var(--muted);
}

.role-resource-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding-left: 1.25rem;
}

.role-resource-list li {
  padding: 12px 0 12px 4px;
  color: var(--muted);
  border-bottom: 1px solid rgba(199, 208, 220, 0.72);
}

.role-resource-list strong,
.role-resource-list span,
.role-resource-list small {
  display: block;
}

.role-resource-list strong {
  color: var(--ink);
  font-size: 0.96rem;
}

.role-resource-list span {
  margin-top: 4px;
}

.role-resource-list small {
  margin-top: 7px;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.coming-soon-panel {
  background: rgba(248, 250, 252, 0.88);
}

.role-centered-actions {
  margin-top: -12px;
}

.start-command-panel,
.library-command-panel,
.feedback-command-panel,
.operating-panel {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.panel-status {
  display: grid;
  gap: 6px;
  margin-bottom: 16px;
  padding: 16px;
  color: var(--white);
  background: rgba(7, 12, 20, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.panel-status span,
.mini-dashboard span,
.library-pulse span,
.feedback-priorities span,
.operating-stack span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-dashboard,
.library-pulse {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.mini-dashboard {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-dashboard article,
.library-pulse article {
  padding: 14px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.mini-dashboard strong,
.library-pulse strong,
.library-pulse small {
  display: block;
}

.mini-dashboard strong {
  margin-top: 8px;
  font-size: 1.24rem;
}

.library-pulse strong {
  margin-top: 8px;
  font-size: 1.05rem;
}

.library-pulse small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
}

.feedback-priorities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.feedback-priorities span {
  padding: 10px 12px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.operating-panel {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(16, 24, 35, 0.96), rgba(13, 55, 58, 0.92)),
    #101823;
}

.operating-stack {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.operating-stack article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
}

.operating-stack p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.68);
}

.role-overview,
.role-recommendation-grid {
  display: grid;
  gap: 16px;
}

.role-overview {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
  align-items: start;
  margin-bottom: 0;
}

.role-overview > div {
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(178, 188, 202, 0.58);
  border-radius: 8px;
}

.role-section {
  margin-bottom: 48px;
}

.role-coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.role-coverage-card {
  min-height: 128px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 208, 220, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.role-coverage-card span {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-coverage-card strong {
  display: block;
  margin-top: 14px;
  color: var(--ink);
  font-size: 2.3rem;
  line-height: 1;
}

.role-recommendation-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-list {
  display: grid;
  gap: 10px;
  padding-left: 1.1rem;
}

.button[disabled] {
  color: var(--muted);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(184, 193, 205, 0.82);
  cursor: not-allowed;
}

.about-hero-copy > p:not(.eyebrow):not(.hero-lede),
.about-copy-stack p {
  max-width: 760px;
  color: #404858;
  font-size: 1.06rem;
}

.about-meta-grid,
.about-card-grid,
.about-value-grid {
  display: grid;
  gap: 16px;
}

.about-meta-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 24px;
}

.about-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-value-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
  min-height: 180px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.about-meta-grid .about-card {
  min-height: 142px;
}

.about-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-card h3 {
  margin-top: 16px;
}

.about-card p {
  color: var(--muted);
}

.about-section-split {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.about-copy-stack {
  display: grid;
  gap: 16px;
}

.platform-value .section-heading {
  max-width: 960px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(184, 193, 205, 0.92);
  box-shadow: 0 10px 26px rgba(17, 24, 39, 0.08);
}

.eyebrow {
  margin: 0 0 14px;
  color: #0d827d;
  font-size: 0.76rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.app-hero .eyebrow,
.hero .eyebrow {
  color: #65d6cf;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(2.45rem, 3.8vw, 4.05rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 3.5vw, 3.65rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: 0;
}

.hero-lede {
  max-width: 760px;
  margin: 20px 0 0;
  color: #465466;
  font-size: clamp(1.05rem, 1.55vw, 1.22rem);
}

.ask-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  max-width: 840px;
  margin-top: 22px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 193, 205, 0.8);
  border-radius: 8px;
  box-shadow: 0 18px 54px rgba(13, 18, 28, 0.12);
}

.ask-panel input,
.search-bar input {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: none;
}

.ask-panel input {
  min-height: 50px;
  padding: 0 14px;
  font-size: 1rem;
}

.ask-panel button,
.dashboard-top button,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  background: linear-gradient(135deg, #111827, #1a2f3f);
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 820;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(17, 24, 39, 0.13);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
}

.ask-panel button:hover,
.dashboard-top button:hover,
.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(17, 24, 39, 0.18);
}

.prompt-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.pilot-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.workflow-stepper {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 620px;
  margin-top: 24px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.workflow-stepper span {
  flex: 1 1 120px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.68);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 850;
}

.workflow-stepper .active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 620px;
  margin-top: 26px;
}

.hero-proof article {
  min-height: 106px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.hero-proof strong,
.hero-proof span {
  display: block;
}

.hero-proof strong {
  color: var(--white);
  font-size: 1.55rem;
  line-height: 1;
}

.hero-proof span {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.88rem;
  font-weight: 760;
}

.pilot-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.pilot-summary article {
  min-height: 142px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.pilot-summary span,
.recommended-label {
  display: block;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pilot-summary p {
  margin-bottom: 0;
  color: var(--muted);
}

.pilot-path {
  padding-top: 34px;
}

.pilot-path-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pilot-review {
  padding-top: 34px;
  padding-bottom: 34px;
}

.feedback-section {
  padding-top: 34px;
}

.feedback-form {
  display: grid;
  gap: 14px;
  max-width: 780px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(190, 201, 216, 0.78);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.feedback-form label {
  color: var(--ink);
  font-weight: 850;
}

.feedback-form label span {
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 720;
}

.feedback-form input,
.feedback-form textarea {
  width: 100%;
  min-width: 0;
  padding: 13px 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 193, 205, 0.86);
  border-radius: 8px;
  font: inherit;
}

.feedback-form textarea {
  resize: vertical;
}

.feedback-status {
  min-height: 1.5rem;
  margin: 0;
  color: var(--muted);
  font-weight: 760;
}

.feedback-status[data-state="success"] {
  color: var(--green);
}

.feedback-status[data-state="error"] {
  color: #9f2d2d;
}

.prompt-row button,
.chip {
  min-height: 38px;
  padding: 0 13px;
  color: #2b3240;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(184, 193, 205, 0.82);
  border-radius: 8px;
  font-weight: 760;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.prompt-row button:hover,
.chip:hover {
  color: var(--teal);
  border-color: rgba(8, 127, 123, 0.32);
  transform: translateY(-1px);
}

.product-visual,
.dashboard-shell,
.feature-card,
.kpi-grid article,
.tools-grid article,
.resource-card {
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.product-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 540px;
  padding: 12px;
  background: linear-gradient(145deg, rgba(17, 24, 39, 0.98), rgba(23, 43, 55, 0.98));
}

.product-visual::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    linear-gradient(120deg, rgba(8, 127, 123, 0.22), transparent 34%),
    radial-gradient(circle at 78% 12%, rgba(217, 154, 61, 0.28), transparent 24%);
}

.product-visual img {
  display: block;
  width: 100%;
  height: 516px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  filter: saturate(0.98) contrast(1.03);
}

.visual-status,
.visual-card {
  position: absolute;
  z-index: 2;
  color: var(--white);
  background: rgba(14, 21, 31, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.26);
  backdrop-filter: blur(16px);
}

.visual-status {
  top: 28px;
  right: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
}

.visual-status span,
.visual-card span,
.visual-card small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
  font-weight: 820;
  text-transform: uppercase;
}

.visual-card {
  width: min(250px, calc(100% - 40px));
  padding: 16px;
}

.visual-card strong,
.visual-card p {
  display: block;
  margin: 8px 0 0;
}

.visual-card strong {
  font-size: 2rem;
  line-height: 1;
}

.visual-card p {
  color: rgba(255, 255, 255, 0.86);
}

.visual-card-top {
  right: 30px;
  bottom: 122px;
}

.visual-card-bottom {
  bottom: 30px;
  left: 30px;
}

.command-header,
.dashboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.command-header span,
.signal-grid span,
.signal-grid small,
.insight-stack span {
  color: rgba(255, 255, 255, 0.68);
}

.signal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.signal-grid article {
  min-height: 128px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.signal-grid strong,
.signal-grid small {
  display: block;
}

.signal-grid strong {
  margin-top: 20px;
  font-size: 1.45rem;
}

.insight-stack {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.insight-stack div {
  padding: 15px;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.insight-stack p {
  margin: 6px 0 0;
}

.section {
  max-width: 1220px;
  margin: 0 auto;
  padding: 74px 24px;
}

.section-heading {
  max-width: 880px;
  margin-bottom: 28px;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.08rem;
}

.featured-grid,
.tools-grid,
.kpi-grid,
.card-grid {
  display: grid;
  gap: 16px;
}

.featured-grid {
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
}

.feature-card,
.kpi-grid article,
.tools-grid article,
.resource-card {
  min-height: 230px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.94);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.feature-card:hover,
.kpi-grid article:hover,
.tools-grid article:hover,
.resource-card:hover,
.resources-card:hover,
.about-card:hover,
.role-panel:hover {
  transform: translateY(-3px);
  border-color: rgba(8, 127, 123, 0.34);
  box-shadow: 0 22px 60px rgba(17, 24, 39, 0.12);
}

.primary-feature {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.97), rgba(8, 68, 78, 0.94)),
    var(--ink);
}

.feature-card span,
.kpi-grid span,
.tools-grid span,
.resource-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.primary-feature span {
  color: #d8b28b;
}

.feature-card h3,
.kpi-grid h3,
.tools-grid h3,
.resource-card h3 {
  margin-top: 18px;
}

.feature-card p,
.tools-grid p,
.resource-card p {
  color: var(--muted);
}

.primary-feature p {
  color: rgba(255, 255, 255, 0.76);
}

.dashboard-section {
  max-width: none;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(21, 47, 59, 0.98)),
    var(--ink);
}

.dashboard-section > * {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.dashboard-section .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 210px 1fr;
  overflow: hidden;
  background: #151c27;
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.32);
}

.dashboard-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.045);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-sidebar strong {
  margin-bottom: 14px;
}

.dashboard-sidebar span {
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.65);
  border-radius: 8px;
}

.dashboard-sidebar .active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.dashboard-main {
  padding: 24px;
}

.dashboard-top {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dashboard-top span,
.dashboard-kpis span {
  display: block;
  color: rgba(255, 255, 255, 0.62);
}

.dashboard-top button {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

.dashboard-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.dashboard-kpis article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.dashboard-kpis strong {
  display: block;
  margin-top: 18px;
  font-size: 2rem;
}

.portfolio-map {
  position: relative;
  min-height: 300px;
  margin-top: 18px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 34%, rgba(8, 127, 123, 0.22), transparent 18%),
    radial-gradient(circle at 70% 55%, rgba(217, 154, 61, 0.16), transparent 20%),
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 36px 36px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
}

.node {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--white);
  border: 4px solid var(--teal);
  border-radius: 50%;
}

.n1 {
  top: 36%;
  left: 18%;
}

.n2 {
  top: 22%;
  left: 47%;
}

.n3 {
  top: 58%;
  left: 64%;
}

.n4 {
  top: 38%;
  left: 82%;
}

.route {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(55, 154, 149, 0.9));
  transform-origin: left;
}

.r1 {
  top: 40%;
  left: 19%;
  width: 31%;
  transform: rotate(-18deg);
}

.r2 {
  top: 62%;
  left: 65%;
  width: 20%;
  transform: rotate(-20deg);
}

.kpi-grid,
.tools-grid,
.card-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.kpi-grid article {
  min-height: 210px;
  box-shadow: none;
}

.workflows {
  max-width: none;
  background: #e8eef4;
}

.workflows > * {
  max-width: 1220px;
  margin-right: auto;
  margin-left: auto;
}

.workflow-list {
  display: grid;
  gap: 1px;
  background: rgba(17, 24, 39, 0.14);
  border: 1px solid rgba(17, 24, 39, 0.14);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.workflow-list article {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
}

.workflow-list span {
  color: var(--green);
  font-weight: 900;
}

.workflow-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.search-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(190, 201, 216, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.search-bar span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 760;
}

.resource-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.chip.active {
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), #174b50);
  border-color: var(--ink);
}

.resource-card {
  box-shadow: none;
}

.resources-index {
  padding-top: 34px;
}

.resources-toolbar {
  margin-bottom: 36px;
}

.resources-search {
  margin-bottom: 16px;
}

.resource-category-select {
  display: grid;
  gap: 8px;
  max-width: 360px;
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.resource-category-select select {
  min-height: 48px;
  padding: 0 14px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(184, 193, 205, 0.86);
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
}

.resources-groups {
  display: grid;
  gap: 58px;
}

.resources-group-heading {
  max-width: 820px;
  margin-bottom: 20px;
}

.resources-group-heading h2 {
  font-size: clamp(1.75rem, 3vw, 2.6rem);
}

.resources-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.resources-card {
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.resources-card.recommended-resource {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 247, 0.94));
  border-color: rgba(11, 122, 117, 0.46);
  box-shadow: 0 24px 70px rgba(12, 16, 24, 0.12);
}

.recommended-label {
  margin-bottom: 12px;
}

.resources-card span {
  color: var(--copper);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resources-card h3 {
  margin-top: 18px;
}

.resources-card p {
  color: var(--muted);
}

.resource-audience {
  margin-top: auto;
}

.resource-disclaimer {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.resource-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.resource-card-actions .button {
  min-height: 40px;
}

.resource-card-actions .button-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(184, 193, 205, 0.82);
}

.resource-card[hidden] {
  display: none;
}

.empty-state {
  margin-top: 18px;
  color: var(--muted);
  font-weight: 760;
}

.cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto 76px;
  padding: 42px 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(240, 247, 247, 0.92)),
    var(--white);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.cta h2 {
  max-width: 880px;
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

.button-primary {
  white-space: nowrap;
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 36px 24px 48px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  max-width: 560px;
}

.footer-brand p {
  margin: 18px 0 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-content: start;
  color: #353c4b;
  font-weight: 760;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: absolute;
    top: 74px;
    right: 16px;
    left: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    padding: 18px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-menu.open {
    display: flex;
  }

  .hero,
  .app-hero,
  .about-hero,
  .start-hero,
  .about-section-split,
  .role-overview,
  .featured-grid,
  .pilot-summary,
  .pilot-path-grid,
  .knowledge-pillars,
  .network-feature-grid,
  .path-board,
  .split-network-grid,
  .dashboard-shell,
  .footer {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .app-hero {
    min-height: auto;
    margin-top: 0;
    padding: 40px 24px;
  }

  .hero::before {
    inset: 160px 0 auto auto;
    width: 70vw;
  }

  .product-visual {
    min-height: 520px;
  }

  .product-visual img {
    height: 496px;
  }

  .knowledge-command-panel {
    max-width: 520px;
  }

  .dashboard-sidebar {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .dashboard-sidebar strong {
    grid-column: 1 / -1;
  }

  .kpi-grid,
  .tools-grid,
  .card-grid,
  .about-meta-grid,
  .about-card-grid,
  .about-value-grid,
  .role-recommendation-grid,
  .resources-card-grid,
  .pilot-path-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .nav {
    padding: 0 16px;
  }

  .brand small {
    display: none;
  }

  .hero,
  .app-hero,
  .about-hero,
  .start-hero,
  .section,
  .cta,
  .footer {
    padding-right: 16px;
    padding-left: 16px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .ask-panel,
  .search-bar,
  .signal-grid,
  .dashboard-kpis,
  .kpi-grid,
  .tools-grid,
  .card-grid,
  .hero-proof,
  .resources-card-grid {
    grid-template-columns: 1fr;
  }

  .about-meta-grid,
  .about-card-grid,
  .about-value-grid,
  .role-overview,
  .role-recommendation-grid,
  .pilot-summary,
  .pilot-path-grid,
  .knowledge-pillars,
  .network-feature-grid,
  .path-board,
  .split-network-grid,
  .cta-actions {
    grid-template-columns: 1fr;
  }

  .cta-actions,
  .cta-actions .button,
  .pilot-actions .button {
    width: 100%;
  }

  .knowledge-orbit {
    grid-template-columns: 1fr;
  }

  .knowledge-pillars article,
  .network-feature-grid article,
  .path-board article,
  .network-panel {
    min-height: auto;
    padding: 18px;
  }

  .ask-panel button {
    width: 100%;
  }

  .dashboard-sidebar {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 430px;
    padding: 8px;
  }

  .product-visual img {
    height: 414px;
  }

  .visual-status {
    top: 18px;
    right: 18px;
    left: 18px;
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .visual-card-top {
    right: 18px;
    bottom: 116px;
  }

  .visual-card-bottom {
    bottom: 18px;
    left: 18px;
  }

  .workflow-list article {
    grid-template-columns: 1fr;
  }

  .cta {
    align-items: flex-start;
    flex-direction: column;
  }

  .button-primary {
    width: 100%;
  }
}

/* Start flow simplification */
.nav-role-picker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
  padding: 5px 7px 5px 11px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav-role-picker select {
  width: min(34vw, 360px);
  min-width: 230px;
  min-height: 34px;
  padding: 0 34px 0 11px;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-radius: 6px;
  font: inherit;
  font-size: 0.92rem;
  font-weight: 800;
  text-transform: none;
}

.nav-menu .nav-role-picker + a,
.nav-menu .nav-role-picker + a:hover {
  color: rgba(255, 255, 255, 0.82);
  background: transparent;
  border: 0;
  box-shadow: none;
}

.section.role-start-flow {
  padding-top: 18px;
}

.compact-feedback-section .section-heading h2 {
  color: var(--ink);
}

.compact-feedback-section .section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.role-main-card {
  display: grid;
  gap: 24px;
  padding: clamp(20px, 3vw, 32px);
}

.role-card-block {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(199, 208, 220, 0.78);
}

.role-card-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.role-card-header {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
  justify-content: space-between;
}

.role-profile-card h3 {
  max-width: 780px;
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
  line-height: 1.04;
}

.role-profile-card p:not(.eyebrow):not(.role-category-label) {
  max-width: 940px;
  color: var(--ink-soft);
  font-size: 1.04rem;
}

.role-enablements-card {
  margin-top: 0;
}

.role-resource-list {
  grid-template-columns: 1fr;
  gap: 0;
  padding-left: 1.2rem;
}

.role-resource-list li {
  padding: 13px 0 13px 6px;
}

.resource-title-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
}

.template-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 12px;
  color: #ffffff;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 44%),
    linear-gradient(135deg, #0f1724, #067c78);
  border: 1px solid rgba(6, 124, 120, 0.82);
  border-radius: 7px;
  box-shadow: 0 4px 0 #084d4b, 0 14px 26px rgba(6, 124, 120, 0.2);
  font-size: 0.78rem;
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-2px);
}

.template-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 0 #084d4b, 0 18px 32px rgba(6, 124, 120, 0.24);
}

.compact-feedback-section {
  margin-bottom: 0;
}

.quick-feedback-form {
  max-width: none;
}

.quick-feedback-form fieldset {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0 0 16px;
  border: 0;
}

.quick-feedback-form legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--ink);
  font-weight: 900;
}

.quick-feedback-form fieldset label {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink-soft);
  background: rgba(246, 248, 251, 0.92);
  border: 1px solid rgba(190, 201, 216, 0.82);
  border-radius: 8px;
  cursor: pointer;
}

.quick-feedback-form input[type="radio"] {
  width: 16px;
  height: 16px;
  accent-color: var(--teal);
}

.quick-feedback-form fieldset label:has(input:checked) {
  color: #0d3538;
  background: rgba(6, 124, 120, 0.1);
  border-color: rgba(6, 124, 120, 0.42);
  box-shadow: inset 0 0 0 1px rgba(6, 124, 120, 0.12);
}

.quick-feedback-form textarea {
  min-height: 110px;
}

@media (max-width: 980px) {
  .nav-role-picker {
    width: 100%;
    color: var(--ink);
  }

  .nav-role-picker select {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--line);
  }

  .nav-menu .nav-role-picker + a,
  .nav-menu .nav-role-picker + a:hover {
    color: var(--ink);
  }

  .quick-feedback-form fieldset {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .section.role-start-flow {
    padding-top: 14px;
  }

  .resource-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .template-cta {
    width: 100%;
  }
}

/* REWS.AI pilot UX refresh */
:root {
  --executive-bg: #0b111b;
  --executive-panel: #121b29;
  --surface: #fbfcfe;
  --surface-soft: #f5f8fb;
}

body {
  background:
    linear-gradient(180deg, rgba(11, 17, 27, 0.96) 0, rgba(11, 17, 27, 0.96) 360px, transparent 360px),
    linear-gradient(135deg, rgba(6, 124, 120, 0.12), rgba(49, 95, 159, 0.08) 38%, transparent 64%),
    linear-gradient(180deg, #f8fafc 0%, #eef3f7 52%, #fbfcfe 100%);
}

.site-header {
  background: rgba(11, 17, 27, 0.9);
}

.nav {
  min-height: 68px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 7px;
}

.nav-menu a {
  min-height: 36px;
  padding: 8px 11px;
}

.nav-menu a[href="/feedback"] {
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.hero,
.app-hero {
  border-color: rgba(255, 255, 255, 0.13);
  background:
    linear-gradient(135deg, rgba(13, 20, 31, 0.98), rgba(14, 47, 55, 0.92)),
    linear-gradient(90deg, rgba(216, 155, 61, 0.13), transparent 54%),
    var(--executive-bg);
}

.hero {
  grid-template-columns: minmax(0, 0.98fr) minmax(390px, 0.82fr);
  min-height: min(740px, calc(100vh - 110px));
  margin-top: 18px;
}

.hero h1,
.app-hero h1 {
  max-width: 840px;
  line-height: 1.02;
}

.hero-lede {
  max-width: 700px;
}

.pilot-actions .button,
.resource-card-actions .button,
.cta-actions .button {
  white-space: normal;
}

.button {
  min-height: 44px;
  padding: 0 17px;
}

.button-primary {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(135deg, #10151f, #154955 62%, #067c78);
}

.button-secondary {
  color: #141b29;
  background: rgba(255, 255, 255, 0.94);
}

.hero-proof {
  max-width: 680px;
}

.hero-proof article {
  min-height: 96px;
  background: rgba(255, 255, 255, 0.085);
}

.product-visual {
  min-height: 440px;
}

.product-visual img {
  height: 420px;
}

.visual-card-top {
  bottom: 116px;
}

.section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.journey-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  margin-bottom: 18px;
  background: rgba(17, 24, 39, 0.12);
  border: 1px solid rgba(190, 201, 216, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.journey-strip article {
  min-height: 168px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
}

.journey-strip span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #067c78);
  border-radius: 7px;
  font-weight: 900;
}

.journey-strip strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.journey-strip p {
  margin-bottom: 0;
  color: var(--muted);
}

.featured-grid {
  align-items: stretch;
}

.feature-card,
.resources-card,
.pilot-summary article,
.role-panel,
.feedback-form {
  background: rgba(255, 255, 255, 0.96);
}

.primary-feature,
.resources-card.recommended-resource {
  box-shadow: 0 24px 68px rgba(13, 20, 31, 0.14);
}

.resources-card.recommended-resource {
  min-height: 360px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 248, 248, 0.96)),
    #ffffff;
  border-color: rgba(6, 124, 120, 0.58);
}

.recommended-label {
  display: inline-flex;
  width: fit-content;
  padding: 7px 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #10151f, #067c78);
  border-radius: 7px;
}

.resources-card p.resource-disclaimer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(190, 201, 216, 0.74);
}

.resource-card-actions {
  margin-top: 18px;
}

.resource-card-actions .button {
  flex: 1 1 155px;
}

.pilot-path,
.pilot-review,
.feedback-section,
.resources-index {
  padding-top: 46px;
}

.pilot-summary article {
  min-height: 156px;
}

.start-command-panel,
.library-command-panel,
.feedback-command-panel {
  background: rgba(255, 255, 255, 0.075);
}

.feedback-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1fr);
  gap: 36px;
  align-items: start;
}

.feedback-guide {
  display: grid;
  gap: 10px;
  margin-top: 22px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(190, 201, 216, 0.78);
  border-radius: 8px;
}

.feedback-guide span {
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
}

.feedback-guide p {
  margin: 0;
  color: var(--ink-soft);
  font-weight: 760;
}

.feedback-form {
  max-width: none;
  padding: 28px;
}

.feedback-form input,
.feedback-form textarea,
.role-selector-panel select {
  background: #ffffff;
}

.feedback-form textarea {
  min-height: 230px;
}

.feedback-status[data-state="pending"] {
  color: var(--blue);
}

.framework-hero {
  min-height: 500px;
}

.framework-layout {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.framework-toc {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(199, 208, 220, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.framework-toc a {
  padding: 10px 11px;
  color: var(--ink-soft);
  border-radius: 7px;
  font-size: 0.92rem;
  font-weight: 760;
}

.framework-toc a:hover {
  color: var(--teal);
  background: rgba(6, 124, 120, 0.08);
}

.framework-copy {
  display: grid;
  gap: 18px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 208, 220, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.framework-copy section {
  padding-top: 14px;
}

.framework-copy h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}

.framework-copy p,
.framework-copy li {
  color: var(--ink-soft);
}

.framework-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 18px;
  padding-left: 1.1rem;
}

.framework-copy blockquote {
  margin: 14px 0 0;
  padding: 18px 20px;
  color: var(--ink);
  background: rgba(6, 124, 120, 0.07);
  border-left: 4px solid var(--teal);
  border-radius: 7px;
  font-weight: 760;
}

.cta {
  align-items: center;
}

@media (max-width: 980px) {
  .hero,
  .app-hero {
    grid-template-columns: 1fr;
  }

  .journey-strip,
  .feedback-layout,
  .framework-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feedback-layout,
  .framework-layout {
    grid-template-columns: 1fr;
  }

  .framework-toc {
    position: static;
  }

  .product-visual {
    max-width: 680px;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 64px;
  }

  .nav-menu {
    top: 64px;
  }

  .hero {
    min-height: auto;
  }

  .journey-strip {
    grid-template-columns: 1fr;
  }

  .journey-strip article {
    min-height: auto;
  }

  .mini-dashboard {
    grid-template-columns: 1fr;
  }

  .feedback-form {
    padding: 20px;
  }

  .framework-copy {
    padding: 22px;
  }

  .framework-list {
    grid-template-columns: 1fr;
  }
}

/* 2026 visual refresh */
:root {
  --ink: #10151f;
  --ink-soft: #243043;
  --muted: #5f6c7d;
  --line: #d6dde7;
  --paper: #f3f6f9;
  --panel: #ffffff;
  --teal: #067c78;
  --green: #17695e;
  --copper: #a65f2a;
  --blue: #315f9f;
  --amber: #d89b3d;
  --shadow: 0 28px 72px rgba(13, 20, 31, 0.14);
  --shadow-soft: 0 14px 40px rgba(13, 20, 31, 0.08);
  --shadow-tight: 0 8px 24px rgba(13, 20, 31, 0.08);
}

body {
  background:
    linear-gradient(180deg, rgba(11, 17, 27, 0.92) 0, rgba(11, 17, 27, 0.92) 340px, transparent 340px),
    linear-gradient(135deg, rgba(6, 124, 120, 0.16), transparent 32rem),
    linear-gradient(180deg, #f7f9fb 0%, #eef3f7 58%, #f8fafc 100%);
}

a,
button,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid rgba(216, 155, 61, 0.78);
  outline-offset: 3px;
}

/* Knowledge Network */
.knowledge-hero {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
}

.knowledge-command-panel {
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(4, 10, 18, 0.28);
}

.knowledge-orbit {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.knowledge-orbit span,
.industry-chip-row span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 8px 12px;
  color: #eefdfb;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 850;
}

.knowledge-pillars,
.network-feature-grid,
.path-board,
.split-network-grid {
  display: grid;
  gap: 16px;
}

.knowledge-pillars {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.network-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.path-board,
.split-network-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.knowledge-pillars article,
.network-feature-grid article,
.path-board article,
.network-panel {
  position: relative;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.knowledge-pillars article::before,
.network-feature-grid article::before,
.path-board article::before,
.network-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber));
}

.knowledge-pillars span,
.network-feature-grid span,
.path-board span {
  display: block;
  margin-bottom: 12px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-pillars h3,
.network-feature-grid h3,
.network-panel h3,
.path-board strong {
  display: block;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 1.08rem;
  line-height: 1.28;
}

.knowledge-pillars p,
.network-feature-grid p,
.path-board p,
.network-panel li,
.industry-network-section p {
  color: var(--muted);
}

.path-board {
  align-items: stretch;
}

.path-board article {
  min-height: 150px;
}

.role-path-tool {
  display: grid;
  gap: 18px;
}

.role-path-controls {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: #101a24;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.13);
}

.role-path-controls label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.role-path-controls span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-path-controls select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.86);
  border-radius: 8px;
}

.mentor-intake-controls {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 18px;
  background: rgba(16, 26, 36, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.mentor-intake-controls label {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.mentor-intake-controls span {
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mentor-intake-controls select {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.86);
  border-radius: 8px;
}

.path-summary-card {
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(239, 253, 251, 0.9));
  border: 1px solid rgba(190, 201, 216, 0.8);
  border-radius: 8px;
}

.path-summary-card h3 {
  max-width: 860px;
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.15;
}

.path-summary-card p:not(.eyebrow) {
  max-width: 900px;
  color: var(--muted);
}

.role-family-panel {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr) minmax(220px, 0.8fr);
  gap: 16px;
  align-items: start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(190, 201, 216, 0.8);
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.06);
}

.role-family-panel span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.role-family-panel strong {
  display: block;
  color: var(--ink);
  font-size: 1.12rem;
  line-height: 1.25;
}

.role-family-panel p,
.role-family-panel li {
  color: var(--muted);
  line-height: 1.5;
}

.role-family-panel p {
  margin: 0;
}

.role-family-panel .clean-list {
  gap: 6px;
  padding-left: 1.1rem;
}

.path-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.path-tag-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 10px;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  background: rgba(17, 107, 97, 0.08);
  border: 1px solid rgba(17, 107, 97, 0.18);
  border-radius: 999px;
}

.role-path-mapper .path-board article {
  min-height: 250px;
}

.role-path-mapper .path-board .clean-list {
  gap: 9px;
  padding-left: 1.15rem;
}

.role-path-mapper .path-board li {
  color: var(--muted);
  line-height: 1.52;
}

.path-export-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  background: #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.86);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.08);
}

.path-export-heading {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.path-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.path-name-field {
  display: grid;
  gap: 6px;
  min-width: min(240px, 100%);
}

.path-name-field span {
  margin: 0;
}

.path-name-field input {
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.86);
  border-radius: 8px;
}

.path-export-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.path-export-heading strong {
  display: block;
  color: var(--ink);
  font-size: 1.2rem;
  line-height: 1.25;
}

.path-export-card pre {
  max-height: 420px;
  margin: 0;
  padding: 16px;
  overflow: auto;
  color: #d8f5f1;
  font-family: ui-monospace, SFMono-Regular, Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.88rem;
  line-height: 1.55;
  white-space: pre-wrap;
  background: #101a24;
  border-radius: 8px;
}

.path-export-card p {
  min-height: 1.4em;
  margin: 0;
  color: var(--green);
  font-size: 0.9rem;
  font-weight: 800;
}

.saved-paths-panel {
  display: grid;
  gap: 12px;
  padding-top: 2px;
}

.saved-paths-panel > div > span {
  display: block;
  margin-bottom: 6px;
  color: var(--green);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.saved-paths-panel > div > strong {
  display: block;
  color: var(--ink);
  font-size: 1rem;
}

.saved-paths-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.saved-paths-list li {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 12px;
  color: var(--muted);
  background: rgba(244, 248, 250, 0.88);
  border: 1px solid rgba(190, 201, 216, 0.72);
  border-radius: 8px;
}

.saved-paths-list strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
}

.saved-paths-list span {
  display: block;
  margin-top: 3px;
  font-size: 0.86rem;
}

.saved-path-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.saved-path-actions button {
  min-height: 34px;
  padding: 7px 10px;
  color: var(--ink);
  font-weight: 850;
  background: #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.86);
  border-radius: 8px;
  cursor: pointer;
}

.network-panel {
  min-height: 280px;
}

.network-panel .clean-list {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}

.industry-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.industry-chip-row span {
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(190, 201, 216, 0.84);
}

.knowledge-cta {
  align-items: center;
}

.knowledge-home-hero {
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.72fr);
}

.knowledge-home-panel {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 20px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.knowledge-home-stack {
  display: grid;
  gap: 10px;
}

.knowledge-home-stack article {
  min-height: 92px;
  padding: 16px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.knowledge-home-stack span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.knowledge-home-stack strong {
  display: block;
  font-size: 1rem;
  line-height: 1.32;
}

.action-card-grid,
.hub-grid {
  display: grid;
  gap: 14px;
}

.action-card-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.hub-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.action-card,
.hub-grid article {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  padding: 22px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 208, 220, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.action-card::before,
.hub-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(6, 124, 120, 0.82), rgba(216, 155, 61, 0.72), rgba(49, 95, 159, 0.72));
}

.action-card span,
.hub-grid article span {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 7px 10px;
  color: var(--copper);
  background: rgba(166, 95, 42, 0.1);
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.action-card h3,
.hub-grid article h3 {
  font-size: 1.14rem;
}

.action-card p,
.hub-grid article p {
  color: var(--muted);
}

.hub-grid article a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 8px;
  padding: 7px 10px;
  color: var(--green);
  background: rgba(17, 107, 97, 0.08);
  border: 1px solid rgba(17, 107, 97, 0.16);
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 850;
}

.hub-hero {
  min-height: 500px;
}

.network-overview-section {
  padding-top: 34px;
}

.role-context-note {
  margin: 2px 0 0;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(7, 12, 20, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 760;
}

.role-context-note strong {
  color: var(--white);
}

.library-finder-section {
  padding-top: 34px;
}

.library-finder-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.34fr) minmax(220px, 0.38fr);
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.library-search-field,
.library-category-field,
.library-role-context {
  display: grid;
  gap: 8px;
  min-height: 82px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(199, 208, 220, 0.86);
  border-radius: 8px;
  box-shadow: var(--shadow-tight);
}

.library-search-field span,
.library-category-field span,
.library-role-context span {
  color: var(--green);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.library-search-field input,
.library-category-field select {
  width: 100%;
  min-height: 42px;
  padding: 9px 11px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(184, 193, 205, 0.86);
  border-radius: 7px;
  font: inherit;
}

.library-role-context strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.25;
}

.library-result-count {
  margin: 0 0 16px;
  color: var(--muted);
  font-weight: 800;
}

.library-resource-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.library-resource-result {
  min-height: 330px;
}

.role-match-badge,
.role-context-badge,
.resource-unavailable {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 6px 9px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.role-match-badge {
  color: #ffffff;
  background: linear-gradient(135deg, var(--green), var(--teal));
}

.role-context-badge,
.resource-unavailable {
  color: var(--muted);
  background: rgba(237, 242, 247, 0.9);
  border: 1px solid rgba(190, 201, 216, 0.72);
}

.context-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: -4px 0 12px;
}

.context-chip-row em {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 8px;
  color: #3158ff;
  background: rgba(49, 88, 255, 0.08);
  border: 1px solid rgba(49, 88, 255, 0.16);
  border-radius: 999px;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 860;
}

.library-role-context small,
.download-context-note {
  display: block;
  margin-top: 4px;
  color: #586174;
  font-size: 0.8rem;
  font-weight: 760;
  line-height: 1.35;
}

.download-context-note {
  margin-top: 8px;
}

.role-matched-resource {
  border-color: rgba(17, 107, 97, 0.4);
  box-shadow: 0 18px 48px rgba(17, 107, 97, 0.12);
}

.role-matched-resource::before {
  opacity: 1;
}

.site-header {
  background: rgba(11, 17, 27, 0.86);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.07), 0 12px 36px rgba(0, 0, 0, 0.16);
}

.brand-mark {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.12), transparent 38%),
    linear-gradient(145deg, #10151f, #067c78 68%, #d89b3d);
}

.nav-menu {
  gap: 4px;
}

.global-role-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(360px, 28vw);
  margin-left: auto;
  margin-right: 10px;
  padding: 5px 6px 5px 10px;
  color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
}

.global-role-picker span {
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.global-role-picker select {
  width: min(220px, 18vw);
  min-width: 150px;
  min-height: 32px;
  color: var(--white);
  background: rgba(7, 12, 20, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 7px;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 760;
}

.global-role-picker option,
.global-role-picker optgroup {
  color: var(--ink);
}

.context-ribbon {
  position: sticky;
  top: 80px;
  z-index: 45;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
  backdrop-filter: blur(18px);
}

.context-ribbon-inner {
  display: grid;
  grid-template-columns: minmax(170px, 0.7fr) repeat(3, minmax(190px, 1fr));
  gap: 10px;
  align-items: center;
  max-width: 1480px;
  margin: 0 auto;
  padding: 10px 18px;
}

.context-ribbon-label,
.context-select {
  min-height: 54px;
  padding: 9px 11px;
  background: #f6f8fc;
  border: 1px solid rgba(199, 208, 220, 0.75);
  border-radius: 8px;
}

.context-ribbon-label {
  display: grid;
  gap: 2px;
}

.context-ribbon-label span,
.context-select span {
  color: #3158ff;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.context-ribbon-label strong {
  color: #182236;
  font-size: 0.86rem;
  line-height: 1.2;
}

.context-select {
  display: grid;
  gap: 5px;
}

.context-select select {
  width: 100%;
  min-height: 28px;
  color: #182236;
  background: transparent;
  border: 0;
  font: inherit;
  font-size: 0.86rem;
  font-weight: 760;
}

.context-select select:focus {
  outline: 2px solid rgba(49, 88, 255, 0.35);
  outline-offset: 2px;
}

.nav-menu a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown-button {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 11px;
  color: rgba(255, 255, 255, 0.78);
  background: transparent;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 720;
}

.nav-dropdown-button:hover,
.nav-dropdown.open .nav-dropdown-button,
.nav-dropdown-button[aria-current="page"] {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  display: none;
  width: min(360px, calc(100vw - 32px));
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(199, 208, 220, 0.92);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(4, 8, 14, 0.24);
}

.nav-dropdown.open .nav-dropdown-menu {
  display: grid;
  gap: 4px;
}

.nav-dropdown-menu a,
.nav-dropdown-menu span {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  min-height: 38px;
  padding: 9px 10px;
  color: var(--ink);
  border-radius: 7px;
  font-size: 0.9rem;
}

.nav-dropdown-menu a:hover {
  color: var(--teal);
  background: rgba(6, 124, 120, 0.08);
}

.nav-dropdown-menu span {
  color: var(--muted);
  cursor: not-allowed;
}

.nav-dropdown-menu small {
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.resource-nav-dropdown .resource-dropdown-menu {
  left: auto;
  right: 0;
  width: min(760px, calc(100vw - 32px));
  max-height: min(680px, calc(100vh - 110px));
  grid-template-columns: minmax(230px, 0.82fr) minmax(320px, 1.18fr);
  gap: 12px;
  overflow: auto;
}

.resource-dropdown-list {
  display: grid;
  gap: 4px;
  max-height: 560px;
  overflow: auto;
  padding-right: 6px;
}

.resource-dropdown-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 9px 10px;
  color: var(--ink-soft);
  text-align: left;
  background: transparent;
  border: 0;
  border-radius: 7px;
  cursor: pointer;
}

.resource-dropdown-item:hover,
.resource-dropdown-item.active {
  color: var(--teal);
  background: rgba(6, 124, 120, 0.08);
}

.resource-dropdown-item strong {
  min-width: 0;
  font-size: 0.86rem;
  line-height: 1.28;
}

.resource-dropdown-item small {
  align-self: start;
  white-space: nowrap;
}

.resource-dropdown-detail {
  min-height: 360px;
  padding: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(240, 247, 247, 0.92)),
    #ffffff;
  border: 1px solid rgba(190, 201, 216, 0.78);
  border-radius: 8px;
}

.resource-dropdown-detail > span {
  display: block;
  color: var(--copper);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.resource-dropdown-detail h3 {
  margin: 10px 0;
  color: var(--ink);
  font-size: 1.25rem;
  line-height: 1.2;
}

.resource-dropdown-detail p {
  margin: 10px 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.resource-dropdown-detail p strong {
  color: var(--ink-soft);
}

.resource-dropdown-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 12px;
}

.resource-dropdown-roles em {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 8px;
  color: var(--green);
  background: rgba(17, 107, 97, 0.08);
  border: 1px solid rgba(17, 107, 97, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 800;
}

.resource-dropdown-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.resource-dropdown-link,
.resource-dropdown-unavailable {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 7px;
  font-size: 0.82rem;
  font-weight: 850;
}

.resource-dropdown-link {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(184, 193, 205, 0.84);
}

.resource-dropdown-link.primary {
  color: #ffffff;
  background: linear-gradient(135deg, #10151f, #103a45 58%, #067c78);
  border-color: rgba(16, 21, 31, 0.9);
}

.resource-dropdown-unavailable {
  color: var(--muted);
  background: rgba(237, 242, 247, 0.82);
  border: 1px solid rgba(190, 201, 216, 0.72);
}

.nav-menu a:first-child {
  color: #10151f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

.hero,
.app-hero {
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(15, 22, 33, 0.96), rgba(13, 49, 56, 0.9)),
    linear-gradient(90deg, rgba(216, 155, 61, 0.18), transparent 58%),
    #10151f;
  box-shadow: 0 36px 96px rgba(4, 8, 14, 0.34);
}

.hero {
  min-height: calc(100vh - 180px);
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero h1 {
  font-size: clamp(2.45rem, 3.35vw, 3.55rem);
}

.hero::after,
.app-hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--blue));
}

.app-hero {
  position: relative;
}

.about-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(241, 247, 248, 0.9)),
    var(--white);
}

.about-hero::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  content: "";
  background: linear-gradient(180deg, var(--teal), var(--amber), var(--blue));
}

.hero-copy,
.start-hero-copy,
.about-hero-copy,
.resources-hero > div:first-child,
.feedback-hero > div:first-child {
  position: relative;
  z-index: 1;
}

.eyebrow {
  letter-spacing: 0.08em;
}

h1 {
  text-wrap: balance;
}

h2,
h3 {
  text-wrap: balance;
}

.hero-lede,
.section-heading p:not(.eyebrow),
.about-copy-stack p,
.resource-audience,
.cta p {
  text-wrap: pretty;
}

.button,
.ask-panel button,
.dashboard-top button {
  gap: 8px;
  border-radius: 7px;
}

.button-primary,
.ask-panel button {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 36%),
    linear-gradient(135deg, #10151f, #103a45 58%, #067c78);
  border-color: rgba(16, 21, 31, 0.9);
}

.button-secondary {
  color: #172033;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 248, 250, 0.9));
}

.button:hover,
.ask-panel button:hover,
.dashboard-top button:hover,
.chip:hover {
  transform: translateY(-2px);
}

.hero-proof article,
.mini-dashboard article,
.library-pulse article,
.signal-grid article,
.dashboard-kpis article,
.workflow-list article,
.pilot-summary article,
.feature-card,
.kpi-grid article,
.tools-grid article,
.resource-card,
.resources-card,
.about-card,
.role-panel,
.feedback-form {
  position: relative;
  overflow: hidden;
}

.hero-proof article {
  min-height: 92px;
}

.hero-proof article::before,
.mini-dashboard article::before,
.library-pulse article::before,
.pilot-summary article::before,
.feature-card::before,
.kpi-grid article::before,
.tools-grid article::before,
.resource-card::before,
.resources-card::before,
.about-card::before,
.role-panel::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(6, 124, 120, 0.82), rgba(216, 155, 61, 0.72), rgba(49, 95, 159, 0.72));
  opacity: 0.72;
}

.primary-feature::before {
  opacity: 1;
}

.product-visual {
  min-height: 462px;
  padding: 10px;
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transform-origin: center;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.product-visual img {
  height: 440px;
}

.visual-status,
.visual-card {
  background: rgba(10, 15, 23, 0.78);
}

.visual-status strong {
  color: #ffffff;
}

.section {
  padding-top: 82px;
  padding-bottom: 82px;
}

.flow-diagram,
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  background: rgba(17, 24, 39, 0.12);
  border: 1px solid rgba(190, 201, 216, 0.82);
  border-radius: 8px;
  box-shadow: var(--shadow-soft);
}

.flow-diagram article,
.roadmap-grid article {
  position: relative;
  min-height: 150px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.95);
}

.flow-diagram article:not(:last-child)::after {
  position: absolute;
  top: 50%;
  right: 14px;
  color: var(--teal);
  content: ">";
  font-weight: 900;
  transform: translateY(-50%);
}

.flow-diagram span {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 18px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--ink), #067c78);
  border-radius: 7px;
  font-weight: 900;
}

.flow-diagram h3,
.roadmap-grid h3 {
  margin: 0;
  font-size: 1rem;
}

.roadmap-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.roadmap-grid span,
.status-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--copper);
  background: rgba(166, 95, 42, 0.1);
  border-radius: 7px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.resources-card-grid-single {
  grid-template-columns: minmax(0, 760px);
}

.role-recommendation-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.coming-soon-card {
  opacity: 0.82;
}

.coming-soon-card .resource-card-actions {
  display: none;
}

.section-heading {
  margin-bottom: 32px;
}

.featured {
  padding-top: 70px;
}

.feature-card,
.kpi-grid article,
.tools-grid article,
.resource-card,
.resources-card,
.about-card,
.role-panel,
.feedback-form,
.role-selector-panel {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(199, 208, 220, 0.86);
  box-shadow: var(--shadow-tight);
}

.primary-feature {
  background:
    linear-gradient(135deg, rgba(16, 21, 31, 0.98), rgba(13, 65, 72, 0.94)),
    var(--ink);
}

.dashboard-section,
.workflows {
  position: relative;
  overflow: hidden;
}

.dashboard-section {
  background:
    linear-gradient(135deg, rgba(14, 20, 31, 0.98), rgba(18, 41, 53, 0.98)),
    #10151f;
}

.dashboard-shell {
  border-color: rgba(255, 255, 255, 0.14);
}

.portfolio-map {
  min-height: 330px;
}

.workflows {
  background:
    linear-gradient(180deg, rgba(232, 238, 244, 0.74), rgba(246, 249, 251, 0.98));
}

.workflow-list {
  box-shadow: var(--shadow);
}

.workflow-list article {
  background: rgba(255, 255, 255, 0.92);
}

.search-bar,
.ask-panel {
  border-color: rgba(6, 124, 120, 0.2);
}

.search-bar:focus-within,
.ask-panel:focus-within,
.feedback-form:focus-within {
  border-color: rgba(6, 124, 120, 0.48);
  box-shadow: 0 18px 48px rgba(6, 124, 120, 0.12);
}

.chip.active {
  background:
    linear-gradient(135deg, #10151f, #123b46 56%, #067c78);
}

.cta {
  overflow: hidden;
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(238, 247, 247, 0.94)),
    var(--white);
}

.cta::before {
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--teal), var(--amber), var(--blue));
}

.footer {
  padding-top: 42px;
}

@media (max-width: 980px) {
  .nav {
    flex-wrap: wrap;
    gap: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .brand {
    order: 1;
  }

  .nav-toggle {
    order: 2;
  }

  .global-role-picker {
    order: 3;
    width: 100%;
    max-width: none;
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
  }

  .global-role-picker select {
    width: 100%;
    min-width: 0;
  }

  .nav-menu {
    order: 4;
    top: 122px;
    color: var(--ink);
  }

  .nav-menu a,
  .nav-menu a:hover,
  .nav-menu a[aria-current="page"],
  .nav-dropdown-button,
  .nav-dropdown-button:hover,
  .nav-dropdown.open .nav-dropdown-button {
    color: var(--ink);
  }

  .nav-menu a:first-child {
    color: var(--white);
    background: linear-gradient(135deg, var(--ink), #174b50);
  }

  .nav-dropdown-menu {
    position: static;
    width: 100%;
    margin-top: 4px;
    box-shadow: none;
  }

  .resource-nav-dropdown .resource-dropdown-menu {
    width: 100%;
    max-height: none;
    grid-template-columns: 1fr;
  }

  .resource-dropdown-list {
    max-height: 300px;
  }

  .flow-diagram,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .knowledge-pillars,
  .network-feature-grid,
  .action-card-grid,
  .hub-grid,
  .library-finder-toolbar,
  .library-resource-results,
  .role-path-controls,
  .mentor-intake-controls,
  .role-family-panel,
  .path-board,
  .split-network-grid {
    grid-template-columns: 1fr;
  }

  .knowledge-command-panel {
    max-width: 520px;
  }

  .product-visual {
    transform: none;
  }

  .hero,
  .app-hero,
  .about-hero {
    gap: 34px;
  }

  .role-workflow-grid,
  .role-description-highlights,
  .role-resource-list,
  .role-coverage-grid {
    grid-template-columns: 1fr;
  }

  .path-export-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .path-export-actions {
    justify-content: flex-start;
  }

  .saved-paths-list li {
    align-items: stretch;
    flex-direction: column;
  }

  .saved-path-actions {
    justify-content: flex-start;
  }
}

/* Cisco-inspired REWS navigation and hub layout */
body {
  background:
    linear-gradient(180deg, #ffffff 0, #ffffff 136px, #f5f8fc 136px, #eef3f8 100%);
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.nav {
  max-width: 1440px;
  min-height: 78px;
}

.brand-mark {
  color: #ffffff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 34%),
    linear-gradient(145deg, #00a6df, #3266ff 72%, #0b1f3a);
  box-shadow: 0 10px 26px rgba(50, 102, 255, 0.22);
}

.brand strong {
  color: #0f172a;
}

.brand small {
  color: #5d6678;
}

.nav-menu {
  color: #182236;
}

.nav-menu a,
.nav-dropdown-button {
  color: #182236;
  border-radius: 999px;
}

.nav-menu a:hover,
.nav-menu a[aria-current="page"],
.nav-dropdown-button:hover,
.nav-dropdown-button[aria-current="page"] {
  color: #3158ff;
  background: rgba(49, 88, 255, 0.08);
}

.nav-menu a:first-child {
  color: #182236;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav-menu a:first-child[aria-current="page"] {
  color: #3158ff;
  background: rgba(49, 88, 255, 0.08);
}

.nav-toggle {
  border-color: rgba(15, 23, 42, 0.16);
  background: rgba(15, 23, 42, 0.04);
}

.nav-toggle span:not(.sr-only) {
  background: #182236;
}

.global-role-picker {
  color: #182236;
  background: #ffffff;
  border: 1px solid rgba(49, 88, 255, 0.22);
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.06);
}

.global-role-picker span {
  color: #3158ff;
}

.global-role-picker select {
  color: #182236;
  background: #f6f8fc;
  border: 1px solid rgba(15, 23, 42, 0.12);
}

.hero,
.app-hero {
  color: #071224;
  background:
    linear-gradient(90deg, rgba(244, 247, 250, 0.98) 0%, rgba(231, 236, 242, 0.96) 48%, rgba(215, 224, 232, 0.92) 100%),
    #eef2f6;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 26px 70px rgba(15, 23, 42, 0.12);
}

.knowledge-home-hero {
  min-height: 610px;
}

.hero::after,
.app-hero::after {
  background: linear-gradient(90deg, #3158ff, #00a6df, #6bdbff);
}

.app-hero .eyebrow,
.hero .eyebrow {
  color: #3158ff;
}

.app-hero .hero-lede,
.hero .hero-lede {
  color: #334155;
}

.hero h1,
.app-hero h1 {
  color: #071224;
}

.home-tech-preview {
  display: grid;
  gap: 12px;
  width: 100%;
  aspect-ratio: 16 / 10;
  padding: 18px;
  overflow: hidden;
  color: #071224;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(233, 240, 248, 0.92)),
    #f6f8fc;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 8px;
  box-shadow: 0 22px 52px rgba(15, 23, 42, 0.14);
}

.preview-toolbar {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 32px;
  padding: 7px 9px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 8px;
}

.preview-toolbar span {
  width: 8px;
  height: 8px;
  background: #3158ff;
  border-radius: 50%;
}

.preview-toolbar span:nth-child(2) {
  background: #00a6df;
}

.preview-toolbar strong {
  margin-left: auto;
  color: #3158ff;
  font-size: 0.78rem;
  letter-spacing: 0;
}

.preview-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  min-height: 0;
}

.preview-grid article {
  display: grid;
  align-content: start;
  gap: 7px;
  min-height: 88px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(49, 88, 255, 0.12);
  border-radius: 8px;
}

.preview-grid .preview-wide {
  grid-column: 1 / -1;
}

.preview-grid span {
  color: #5f6d7f;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-grid strong {
  color: #071224;
  font-size: 0.96rem;
  line-height: 1.2;
}

.preview-grid small {
  color: #586174;
  font-weight: 760;
}

.preview-role-card {
  background: linear-gradient(135deg, rgba(49, 88, 255, 0.12), rgba(0, 166, 223, 0.08)), #ffffff;
}

.preview-meter {
  height: 9px;
  overflow: hidden;
  background: #e6ecf4;
  border-radius: 999px;
}

.preview-meter em {
  display: block;
  width: 78%;
  height: 100%;
  background: linear-gradient(90deg, #3158ff, #00a6df);
  border-radius: inherit;
}

.knowledge-home-panel {
  color: #071224;
  background: rgba(255, 255, 255, 0.58);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
}

.knowledge-home-panel .panel-status {
  color: #071224;
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(15, 23, 42, 0.1);
}

.knowledge-home-panel .panel-status span,
.knowledge-home-stack span {
  color: #5f6d7f;
}

.knowledge-home-panel .panel-status strong,
.knowledge-home-stack strong {
  color: #071224;
}

.knowledge-home-stack article {
  color: #071224;
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(15, 23, 42, 0.1);
}

.button-primary,
.ask-panel button {
  background: linear-gradient(135deg, #3158ff, #00a6df);
  border-color: rgba(49, 88, 255, 0.9);
}

.button-secondary {
  color: #182236;
  background: #ffffff;
  border-color: rgba(49, 88, 255, 0.35);
}

.role-context-note {
  color: #334155;
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(15, 23, 42, 0.1);
}

.role-context-note strong {
  color: #071224;
}

.hub-selector-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.34fr) minmax(0, 0.66fr);
  gap: 0;
  overflow: hidden;
  scroll-margin-top: 112px;
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.hub-page-main {
  padding-top: 28px;
}

.hub-menu-section {
  padding-top: 0;
  padding-bottom: 56px;
}

.hub-menu-section + .section {
  padding-top: 18px;
}

.hub-menu-section .hub-selector-layout {
  min-height: calc(100vh - 160px);
}

.hub-selector-rail {
  display: grid;
  align-content: start;
  gap: 4px;
  min-height: 520px;
  padding: 42px 28px;
  border-right: 1px solid rgba(15, 23, 42, 0.14);
}

.hub-selector-rail a {
  position: relative;
  display: block;
  padding: 13px 16px 13px 22px;
  color: #182236;
  border-radius: 8px;
  font-weight: 760;
}

.hub-selector-rail a::before {
  position: absolute;
  top: 14px;
  bottom: 14px;
  left: 4px;
  width: 4px;
  content: "";
  background: transparent;
  border-radius: 999px;
}

.hub-selector-rail a:hover,
.hub-selector-rail a.active {
  color: #3158ff;
  background: rgba(49, 88, 255, 0.07);
}

.hub-selector-rail a.active::before,
.hub-selector-rail a:hover::before {
  background: #3158ff;
}

.hub-detail-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 54px;
  padding: 54px 64px;
}

.hub-detail-panel article {
  min-height: 170px;
  padding: 0;
  scroll-margin-top: 112px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.hub-detail-panel article::before {
  display: none;
}

.hub-detail-panel span {
  display: block;
  margin-bottom: 14px;
  color: #586174;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hub-detail-panel h3 {
  color: #071224;
  font-size: 1.28rem;
  line-height: 1.22;
}

.hub-detail-panel p {
  max-width: 35rem;
  color: #4b5567;
}

.hub-detail-panel a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-top: 8px;
  color: #3158ff;
  font-weight: 820;
}

.hub-detail-panel a::after {
  margin-left: 8px;
  content: ">";
}

.library-finder-section {
  padding-top: 56px;
}

.library-finder-toolbar,
.library-resource-results {
  max-width: 1220px;
}

.library-resource-result {
  background: #ffffff;
}

.job-download-section {
  padding-top: 56px;
}

.job-download-toolbar {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.38fr);
  gap: 12px;
  margin-bottom: 16px;
}

.selected-download-card {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(49, 88, 255, 0.2);
  border-radius: 8px;
  box-shadow: 0 18px 48px rgba(49, 88, 255, 0.1);
}

.selected-download-card span {
  display: block;
  margin-bottom: 8px;
  color: #3158ff;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.selected-download-card h3 {
  color: #071224;
  font-size: 1.34rem;
}

.selected-download-card p {
  margin-bottom: 0;
  color: #586174;
}

.job-download-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.job-download-card {
  min-height: 250px;
}

@media (max-width: 980px) {
  body {
    background: linear-gradient(180deg, #ffffff 0, #ffffff 178px, #f5f8fc 178px, #eef3f8 100%);
  }

  .nav-menu {
    top: 132px;
  }

  .context-ribbon {
    position: static;
  }

  .context-ribbon-inner {
    grid-template-columns: 1fr 1fr;
  }

  .context-ribbon-label {
    grid-column: 1 / -1;
  }

  .nav-menu a,
  .nav-menu a:hover,
  .nav-menu a[aria-current="page"],
  .nav-dropdown-button,
  .nav-dropdown-button:hover,
  .nav-dropdown.open .nav-dropdown-button {
    color: #182236;
  }

  .nav-menu a:first-child {
    color: #182236;
    background: transparent;
  }

  .hub-selector-layout {
    grid-template-columns: 1fr;
  }

  .knowledge-home-hero,
  .hero,
  .app-hero {
    grid-template-columns: 1fr;
  }

  .hub-selector-rail {
    min-height: auto;
    padding: 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(15, 23, 42, 0.12);
  }

  .hub-detail-panel {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 28px;
  }

  .job-download-toolbar,
  .job-download-grid {
    grid-template-columns: 1fr;
  }

  .selected-download-card {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .home-tech-preview {
    aspect-ratio: 4 / 3;
  }

  .context-ribbon-inner {
    grid-template-columns: 1fr;
    padding: 10px 14px;
  }

  .hub-detail-panel {
    padding: 22px;
  }
}

@media (max-width: 640px) {
  body {
    background:
      linear-gradient(180deg, rgba(11, 17, 27, 0.94) 0, rgba(11, 17, 27, 0.94) 260px, transparent 260px),
      linear-gradient(180deg, #f7f9fb, #eef3f7);
  }

  .hero,
  .app-hero,
  .about-hero,
  .start-hero {
    margin-top: 12px;
    padding-top: 32px;
    padding-bottom: 32px;
  }

  .section {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .flow-diagram,
  .roadmap-grid,
  .knowledge-pillars,
  .network-feature-grid,
  .action-card-grid,
  .hub-grid,
  .library-finder-toolbar,
  .library-resource-results,
  .role-path-controls,
  .path-board,
  .split-network-grid,
  .role-workflow-grid,
  .role-description-highlights,
  .role-coverage-grid,
  .role-resource-list,
  .role-recommendation-grid-two {
    grid-template-columns: 1fr;
  }

  .flow-diagram article:not(:last-child)::after {
    top: auto;
    right: 22px;
    bottom: 14px;
    transform: rotate(90deg);
  }

  h1 {
    font-size: 2.3rem;
    line-height: 1.04;
  }

  h2 {
    font-size: 1.86rem;
    line-height: 1.05;
  }

  .hero-lede {
    font-size: 1rem;
  }

  .product-visual {
    min-height: 390px;
  }

  .product-visual img {
    height: 374px;
  }

  .visual-status,
  .visual-card {
    width: calc(100% - 32px);
  }

  .visual-card-top {
    bottom: 102px;
  }

  .pilot-actions,
  .resource-card-actions,
  .cta-actions {
    gap: 10px;
  }

  .pilot-actions .button,
  .resource-card-actions .button,
  .cta-actions .button {
    width: 100%;
    white-space: normal;
  }

  .knowledge-orbit {
    grid-template-columns: 1fr;
  }

  .knowledge-pillars article,
  .network-feature-grid article,
  .path-board article,
  .network-panel {
    min-height: auto;
    padding: 18px;
  }
}
