:root {
  --ink: #07182f;
  --ink-2: #102b4f;
  --blue: #0a67c7;
  --blue-2: #0f8cff;
  --cyan: #35c6ff;
  --paper: #f7f9fc;
  --white: #ffffff;
  --muted: #607086;
  --line: #d9e2ef;
  --soft-blue: #eaf4ff;
  --gold: #c9a85f;
  --shadow: 0 24px 70px rgba(7, 24, 47, 0.12);
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

/* Source-backed AI orchestration use-case library */

.use-case-library-page,
.use-case-detail-page {
  --case-accent: #0f8f8c;
  background: #f5f7fa;
}

.case-library-hero,
.case-detail-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.case-library-hero {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  align-items: center;
  gap: 64px;
  padding: 70px 0 54px;
}

.case-library-hero h1,
.case-detail-hero h1 {
  max-width: 860px;
  margin: 8px 0 20px;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

.case-library-hero .lead,
.case-detail-hero .lead {
  max-width: 760px;
  color: #405269;
  font-size: 21px;
}

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

.library-command-brief {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(53, 198, 255, 0.12), transparent 45%),
    #07182f;
  color: #fff;
  box-shadow: var(--shadow);
}

.library-command-brief::before,
.library-command-brief::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.library-command-brief::before {
  inset: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.library-command-brief::after {
  width: 180px;
  height: 1px;
  right: -35px;
  top: 100px;
  background: var(--gold);
  transform: rotate(-35deg);
}

.case-count {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--cyan);
  font-size: 82px;
  font-weight: 850;
  line-height: 0.9;
}

.library-command-brief h2 {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 18px 0 24px;
  font-size: 27px;
  line-height: 1.1;
}

.library-command-brief ol {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.library-command-brief li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.library-command-brief strong,
.library-command-brief span {
  display: block;
}

.library-command-brief li span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.case-doctrine-band {
  color: #fff;
  background: #0c2948;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.case-doctrine-band > div {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 44px;
  align-items: center;
  padding: 26px 0;
}

.case-doctrine-band span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-doctrine-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
}

.case-library-section {
  padding-top: 76px;
}

.case-library-controls {
  display: grid;
  gap: 18px;
  margin: 34px 0 30px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}

.case-search {
  display: grid;
  gap: 7px;
}

.case-search span {
  color: #4e6075;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-search input {
  width: 100%;
  min-height: 48px;
  padding: 11px 14px;
  border: 1px solid #bfcbd9;
  border-radius: 6px;
  color: var(--ink);
  background: #fbfcfe;
  font: inherit;
}

.case-search input:focus {
  outline: 3px solid rgba(15, 143, 140, 0.2);
  border-color: var(--case-accent);
}

.case-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-filters button {
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid #cdd7e3;
  border-radius: 6px;
  color: #354a63;
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
}

.case-filters button:hover,
.case-filters button.active {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.case-result-count {
  margin: 0;
  color: #607086;
  font-size: 13px;
}

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

.case-library-card {
  position: relative;
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-top: 4px solid var(--case-accent);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 24, 47, 0.06);
}

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

.case-library-card:hover {
  border-color: color-mix(in srgb, var(--case-accent) 45%, var(--line));
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.11);
  transform: translateY(-2px);
}

.case-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.case-card-topline span {
  color: var(--case-accent);
  font-size: 28px;
  font-weight: 850;
}

.case-card-topline small {
  padding: 6px 9px;
  border: 1px solid #d7e0ea;
  border-radius: 5px;
  color: #53657a;
  background: #f7f9fc;
  font-weight: 750;
}

.case-library-card h2 {
  margin: 0 0 12px;
  font-size: 23px;
  line-height: 1.16;
}

.case-library-card h2 a:hover {
  color: var(--case-accent);
}

.case-library-card > p {
  margin: 0 0 20px;
  color: #54657a;
}

.case-library-card dl {
  display: grid;
  gap: 10px;
  margin: auto 0 20px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}

.case-library-card dl div {
  display: grid;
  grid-template-columns: 102px 1fr;
  gap: 10px;
}

.case-library-card dt {
  color: #718096;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-library-card dd {
  margin: 0;
  color: #243a54;
  font-size: 13px;
  font-weight: 700;
}

.case-card-link {
  color: var(--case-accent);
  font-size: 14px;
  font-weight: 800;
}

.case-card-link span {
  margin-left: 6px;
}

.case-evidence-standard {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 70px;
  align-items: center;
  margin-top: 64px;
  padding-top: 46px;
  padding-bottom: 46px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.case-evidence-standard h2,
.source-discipline-section h2 {
  margin: 8px 0 0;
}

.case-evidence-standard > p {
  margin: 0;
  color: #43566e;
  font-size: 17px;
}

.case-detail-hero {
  min-height: 520px;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, 0.75fr);
  align-items: center;
  gap: 64px;
  padding: 58px 0;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 38px;
  color: #6a798b;
  font-size: 13px;
}

.breadcrumbs a:hover {
  color: var(--case-accent);
}

.case-detail-hero h1 {
  max-width: 810px;
}

.case-meta-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 760px;
  margin-top: 30px;
  border-top: 1px solid #cad4e1;
  border-bottom: 1px solid #cad4e1;
}

.case-meta-strip div {
  padding: 16px 18px 16px 0;
}

.case-meta-strip div + div {
  padding-left: 18px;
  border-left: 1px solid #cad4e1;
}

.case-meta-strip span,
.case-meta-strip strong {
  display: block;
}

.case-meta-strip span {
  margin-bottom: 5px;
  color: #68788a;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.case-meta-strip strong {
  font-size: 15px;
}

.case-doctrine-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  overflow: hidden;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--case-accent) 38%, transparent), transparent 48%),
    #07182f;
  box-shadow: var(--shadow);
}

.case-doctrine-card::after {
  position: absolute;
  right: -50px;
  bottom: 48px;
  width: 230px;
  height: 1px;
  content: "";
  background: color-mix(in srgb, var(--case-accent) 75%, #fff);
  transform: rotate(-38deg);
}

.case-doctrine-card > span,
.evidence-identity > span,
.case-context-section aside > span,
.control-gates > span {
  color: color-mix(in srgb, var(--case-accent) 68%, #fff);
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-doctrine-card blockquote {
  position: relative;
  z-index: 1;
  margin: 42px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 30px;
  line-height: 1.18;
}

.case-doctrine-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.case-evidence-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.35fr) minmax(0, 0.65fr);
  color: #fff;
  background: #0c2948;
}

.evidence-identity,
.evidence-summary {
  padding-top: 46px;
  padding-bottom: 46px;
}

.evidence-identity {
  padding-left: max(20px, calc((100vw - 1180px) / 2));
  padding-right: 48px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.evidence-identity h2 {
  margin: 12px 0 6px;
  color: #fff;
  font-size: 31px;
}

.evidence-identity p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.evidence-summary {
  padding-left: 54px;
  padding-right: max(20px, calc((100vw - 1180px) / 2));
}

.evidence-summary h3 {
  max-width: 760px;
  margin: 0 0 12px;
  font-size: 22px;
}

.evidence-summary > p,
.evidence-summary li {
  color: rgba(255, 255, 255, 0.78);
}

.evidence-summary ul {
  display: grid;
  gap: 8px;
  margin: 18px 0;
  padding-left: 20px;
}

.evidence-summary a {
  display: inline-block;
  margin-top: 4px;
  color: #fff;
  font-weight: 800;
  border-bottom: 1px solid var(--case-accent);
}

.evidence-summary small {
  display: block;
  max-width: 780px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.5);
}

.case-context-section {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 76px;
  align-items: start;
  padding-top: 86px;
  padding-bottom: 86px;
}

.case-context-copy h2 {
  margin: 8px 0 22px;
  font-size: 36px;
}

.case-context-copy > p:not(.eyebrow) {
  color: #42546b;
  font-size: 17px;
}

.case-context-section aside {
  padding: 28px;
  border-top: 4px solid var(--case-accent);
  background: #fff;
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.08);
}

.case-context-section aside p {
  margin: 14px 0 0;
  color: #2f435b;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.45;
}

.proof-point-article-band {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  align-items: center;
  gap: clamp(32px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-point-article-copy {
  max-width: 620px;
}

.proof-point-article-copy h2 {
  margin: 10px 0 16px;
}

.proof-point-article-copy > p:not(.eyebrow) {
  margin: 0 0 24px;
  color: var(--muted);
}

.proof-point-article-band figure {
  margin: 0;
}

.proof-point-article-band img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(14, 30, 52, 0.12);
  border-radius: 6px;
}

.case-infographic-section {
  position: relative;
  padding-top: 82px;
  padding-bottom: 82px;
  border-top: 1px solid var(--line);
}

.case-section-number {
  position: absolute;
  right: 0;
  top: 92px;
  color: #8795a6;
  font-size: 11px;
  font-weight: 850;
  text-transform: uppercase;
}

.case-infographic-section > .section-heading {
  max-width: 790px;
  margin-bottom: 34px;
}

.case-infographic-section > .section-heading h2 {
  max-width: 760px;
  margin-top: 8px;
  font-size: 37px;
}

.orchestration-corridor {
  margin: 0;
  padding: 30px;
  border: 1px solid #cfd9e5;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 52px rgba(7, 24, 47, 0.08);
}

.orchestration-corridor ol {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.orchestration-corridor li {
  position: relative;
  min-height: 230px;
  padding: 20px 16px;
  border: 1px solid #dbe3ec;
  border-top: 4px solid var(--case-accent);
  border-radius: 5px;
  background: #f7f9fc;
}

.orchestration-corridor li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: -15px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  content: "›";
  border: 1px solid #c8d3df;
  border-radius: 50%;
  color: var(--case-accent);
  background: #fff;
  font-size: 19px;
  font-weight: 900;
}

.orchestration-corridor li > span {
  display: block;
  margin-bottom: 36px;
  color: var(--case-accent);
  font-size: 27px;
  font-weight: 850;
}

.orchestration-corridor strong {
  display: block;
  margin-bottom: 10px;
}

.orchestration-corridor p {
  margin: 0;
  color: #596a7e;
  font-size: 13px;
}

.orchestration-corridor figcaption,
.ecosystem-command-map figcaption,
.value-control-dashboard figcaption {
  margin-top: 22px;
  color: #667589;
  font-size: 13px;
}

.ecosystem-section {
  width: auto;
  max-width: none;
  padding-left: max(20px, calc((100% - 1180px) / 2));
  padding-right: max(20px, calc((100% - 1180px) / 2));
  color: #fff;
  background: #07182f;
}

.ecosystem-section .section-heading p:not(.eyebrow),
.ecosystem-section .case-section-number {
  color: rgba(255, 255, 255, 0.62);
}

.ecosystem-section .eyebrow {
  color: color-mix(in srgb, var(--case-accent) 62%, #fff);
}

.ecosystem-section h2 {
  color: #fff;
}

.ecosystem-command-map {
  position: relative;
  margin: 0;
  padding: 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: #0b213e;
}

.ecosystem-map-core {
  width: min(430px, 84%);
  min-height: 146px;
  margin: 0 auto 20px;
  display: grid;
  place-items: center;
  align-content: center;
  padding: 20px;
  text-align: center;
  border: 1px solid color-mix(in srgb, var(--case-accent) 70%, #fff);
  background: #07182f;
  box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.03);
}

.ecosystem-map-core span {
  color: color-mix(in srgb, var(--case-accent) 58%, #fff);
  font-size: 10px;
  font-weight: 850;
}

.ecosystem-map-core strong {
  margin: 8px 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
}

.ecosystem-map-core small {
  color: rgba(255, 255, 255, 0.56);
}

.ecosystem-quadrants {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.ecosystem-quadrant {
  min-height: 270px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.035);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
}

.ecosystem-quadrant:hover,
.ecosystem-quadrant:focus,
.ecosystem-quadrant.active {
  outline: none;
  border-color: color-mix(in srgb, var(--case-accent) 74%, #fff);
  background: color-mix(in srgb, var(--case-accent) 18%, #0b213e);
}

.ecosystem-quadrant > span {
  color: color-mix(in srgb, var(--case-accent) 64%, #fff);
  font-size: 24px;
  font-weight: 850;
}

.ecosystem-quadrant h3 {
  margin: 24px 0 4px;
  color: #fff;
}

.ecosystem-quadrant p {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
}

.ecosystem-quadrant ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 17px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.ecosystem-command-map figcaption {
  color: rgba(255, 255, 255, 0.52);
}

.value-control-dashboard {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(290px, 0.65fr);
  gap: 18px;
  margin: 0;
}

.value-measure-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.value-measure-grid article {
  min-height: 230px;
  padding: 22px;
  border: 1px solid #d2dce7;
  border-radius: 6px;
  background: #fff;
}

.value-measure-grid article > span {
  color: var(--case-accent);
  font-size: 25px;
  font-weight: 850;
}

.value-measure-grid h3 {
  margin: 24px 0 6px;
}

.value-measure-grid p {
  min-height: 42px;
  margin: 0 0 18px;
  color: #5a6a7e;
  font-size: 13px;
}

.measure-track {
  height: 8px;
  overflow: hidden;
  border-radius: 3px;
  background: #e6ecf2;
}

.measure-track i {
  width: var(--meter);
  height: 100%;
  display: block;
  background:
    repeating-linear-gradient(90deg, transparent 0 28px, rgba(255, 255, 255, 0.48) 28px 30px),
    linear-gradient(90deg, var(--case-accent), color-mix(in srgb, var(--case-accent) 42%, #35c6ff));
}

.value-measure-grid small {
  display: block;
  margin-top: 11px;
  color: #7b8999;
  font-size: 10px;
  font-weight: 700;
}

.control-gates {
  padding: 26px;
  border-radius: 6px;
  color: #fff;
  background: #102b4f;
}

.control-gates ol {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  counter-reset: gate;
  list-style: none;
}

.control-gates li {
  position: relative;
  min-height: 68px;
  padding: 14px 14px 14px 48px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  counter-increment: gate;
}

.control-gates li::before {
  position: absolute;
  left: 14px;
  top: 13px;
  content: counter(gate, decimal-leading-zero);
  color: color-mix(in srgb, var(--case-accent) 64%, #fff);
  font-weight: 850;
}

.value-control-dashboard > figcaption {
  grid-column: 1 / -1;
}

.pilot-sequencer-section {
  padding-top: 82px;
  padding-bottom: 82px;
  border-top: 1px solid var(--line);
}

.pilot-sequencer {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  margin-top: 34px;
}

.pilot-phase-buttons {
  display: grid;
  gap: 10px;
}

.pilot-phase-buttons button {
  width: 100%;
  min-height: 112px;
  display: grid;
  grid-template-columns: 52px 100px 1fr;
  align-items: center;
  gap: 12px;
  padding: 18px;
  border: 1px solid #d0dae5;
  border-left: 4px solid transparent;
  border-radius: 5px;
  text-align: left;
  color: var(--ink);
  background: #fff;
  font: inherit;
  cursor: pointer;
}

.pilot-phase-buttons button:hover,
.pilot-phase-buttons button.active {
  border-left-color: var(--case-accent);
  background: color-mix(in srgb, var(--case-accent) 5%, #fff);
}

.pilot-phase-buttons span {
  color: var(--case-accent);
  font-size: 24px;
  font-weight: 850;
}

.pilot-phase-buttons strong {
  font-size: 16px;
}

.pilot-phase-buttons small {
  color: #5f7084;
  font-size: 13px;
}

.pilot-phase-panels {
  position: relative;
  min-height: 355px;
}

.pilot-phase-panel {
  min-height: 355px;
  padding: 32px;
  border-radius: 8px;
  color: #fff;
  background:
    linear-gradient(145deg, color-mix(in srgb, var(--case-accent) 30%, transparent), transparent 45%),
    #07182f;
}

.pilot-phase-panel[hidden] {
  display: none;
}

.pilot-phase-panel h3 {
  margin: 10px 0 15px;
  color: #fff;
  font-size: 30px;
}

.pilot-phase-panel > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.pilot-phase-panel dl {
  display: grid;
  gap: 12px;
  margin: 32px 0 0;
}

.pilot-phase-panel dl div {
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.pilot-phase-panel dt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.pilot-phase-panel dd {
  margin: 5px 0 0;
  font-weight: 700;
}

.source-discipline-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  padding-top: 74px;
  padding-bottom: 74px;
  border-top: 1px solid var(--line);
}

.source-discipline-section > div:first-child > p:last-child {
  color: #4c5e73;
}

.source-link-list {
  display: grid;
  gap: 10px;
}

.source-link-list a {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid #d0dae5;
  border-left: 4px solid var(--case-accent);
  border-radius: 5px;
  background: #fff;
}

.source-link-list a:hover {
  border-color: var(--case-accent);
}

.source-link-list strong {
  font-size: 13px;
}

.source-link-list span {
  color: #5a6b7f;
  font-size: 13px;
}

.related-case-section {
  padding-top: 72px;
  padding-bottom: 72px;
  border-top: 1px solid var(--line);
}

.related-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 30px;
}

.related-case-card {
  min-height: 220px;
  padding: 22px;
  border: 1px solid #d2dce6;
  border-top: 4px solid var(--case-accent);
  border-radius: 6px;
  background: #fff;
}

.related-case-card:hover {
  border-color: var(--case-accent);
  transform: translateY(-2px);
}

.related-case-card span,
.related-case-card strong {
  display: block;
}

.related-case-card span {
  margin-bottom: 24px;
  color: var(--case-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.related-case-card strong {
  margin-bottom: 10px;
  font-size: 20px;
}

.related-case-card p {
  margin: 0;
  color: #5a6b7f;
  font-size: 13px;
}

.case-cta {
  margin-top: 20px;
  margin-bottom: 76px;
}

@media (max-width: 1050px) {
  .case-library-hero,
  .case-detail-hero {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .case-library-hero {
    padding-top: 52px;
  }

  .library-command-brief,
  .case-doctrine-card {
    min-height: 290px;
  }

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

  .orchestration-corridor ol {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .orchestration-corridor li:last-child {
    grid-column: 1 / -1;
  }

  .orchestration-corridor li::after {
    display: none !important;
  }

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

@media (max-width: 760px) {
  .proof-point-article-band {
    grid-template-columns: 1fr;
  }

  .case-library-hero,
  .case-detail-hero {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    padding: 42px 0;
  }

  .case-library-hero h1,
  .case-detail-hero h1 {
    font-size: 40px;
  }

  .case-library-hero .lead,
  .case-detail-hero .lead {
    font-size: 18px;
  }

  .library-command-brief,
  .case-doctrine-card {
    padding: 24px;
  }

  .case-count {
    font-size: 68px;
  }

  .case-doctrine-band > div,
  .case-evidence-standard,
  .case-context-section,
  .source-discipline-section {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .case-doctrine-band > div {
    width: min(100% - 28px, 1180px);
  }

  .case-library-grid,
  .value-measure-grid,
  .related-case-grid {
    grid-template-columns: 1fr;
  }

  .case-library-card {
    min-height: 360px;
  }

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

  .case-meta-strip div + div {
    padding-left: 0;
    border-top: 1px solid #cad4e1;
    border-left: 0;
  }

  .case-evidence-band {
    grid-template-columns: 1fr;
  }

  .evidence-identity,
  .evidence-summary {
    padding: 32px 20px;
  }

  .evidence-identity {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .case-context-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .case-context-copy h2,
  .case-infographic-section > .section-heading h2 {
    font-size: 31px;
  }

  .case-section-number {
    position: static;
    margin-bottom: 18px;
  }

  .orchestration-corridor {
    padding: 16px;
  }

  .orchestration-corridor ol,
  .ecosystem-quadrants {
    grid-template-columns: 1fr;
  }

  .orchestration-corridor li,
  .ecosystem-quadrant {
    min-height: auto;
  }

  .orchestration-corridor li:last-child {
    grid-column: auto;
  }

  .ecosystem-section {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ecosystem-command-map {
    padding: 16px;
  }

  .ecosystem-map-core {
    width: 100%;
  }

  .value-control-dashboard,
  .pilot-sequencer {
    grid-template-columns: 1fr;
  }

  .pilot-phase-buttons button {
    grid-template-columns: 46px 1fr;
  }

  .pilot-phase-buttons button small {
    grid-column: 1 / -1;
  }

  .source-link-list a {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
  overflow-x: hidden;
}

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

.skip-link {
  position: absolute;
  left: 16px;
  top: -50px;
  z-index: 100;
  background: var(--ink);
  color: var(--white);
  padding: 10px 14px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 252, 0.92);
  border-bottom: 1px solid rgba(217, 226, 239, 0.9);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 40px));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(135deg, var(--ink), var(--blue));
  font-weight: 800;
  box-shadow: 0 10px 28px rgba(10, 103, 199, 0.24);
}

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

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 650;
}

.nav-links a {
  opacity: 0.88;
}

.nav-links a:hover {
  opacity: 1;
  color: var(--blue);
}

.nav-cta {
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--ink);
  padding: 9px 12px;
  font-weight: 700;
}

.hero {
  position: relative;
  color: var(--white);
  background-color: var(--ink);
  background-image: url("assets/hero-ai-workflow-command-center.png");
  background-position: center;
  background-size: cover;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(7, 24, 47, 0.72);
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 40px));
  min-height: 500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 780px);
  align-items: center;
  padding: 40px 0 44px;
}

.hero-copy {
  max-width: 780px;
}

.hero .eyebrow {
  color: var(--cyan);
}

.hero h1 {
  max-width: 900px;
  font-size: clamp(48px, 5.5vw, 72px);
  margin-bottom: 18px;
}

.hero-promise {
  max-width: 820px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(28px, 3.3vw, 42px);
  font-weight: 780;
  line-height: 1.08;
}

.hero .lead {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 26px;
}

.hero .button.primary {
  border-color: var(--white);
  background: var(--white);
  color: var(--ink);
}

.hero .button.secondary {
  border-color: rgba(255, 255, 255, 0.64);
  background: rgba(7, 24, 47, 0.42);
  color: var(--white);
}

.hero .trust-row span {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(7, 24, 47, 0.46);
  color: rgba(255, 255, 255, 0.86);
}

.hero-signal-strip {
  width: min(1180px, calc(100% - 40px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 14px 0;
}

.hero-signal-strip span {
  border-left: 3px solid var(--gold);
  background: var(--white);
  color: var(--ink-2);
  padding: 9px 14px;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(7, 24, 47, 0.06);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 800;
  font-size: 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 820px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 0.96;
  letter-spacing: 0;
  margin-bottom: 26px;
}

h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: 0;
  margin-bottom: 18px;
}

h3 {
  font-size: 19px;
  line-height: 1.2;
  margin-bottom: 10px;
}

.lead {
  max-width: 680px;
  color: var(--ink-2);
  font-size: clamp(18px, 2vw, 22px);
  margin-bottom: 32px;
}

.hero-actions,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 28px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  border: 1px solid var(--ink);
  padding: 13px 18px;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.button.primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 15px 34px rgba(7, 24, 47, 0.22);
}

.button.secondary {
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
}

.button.disabled {
  pointer-events: none;
  opacity: 0.55;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.trust-row span {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink-2);
  border-radius: 999px;
  padding: 8px 11px;
  font-size: 13px;
  font-weight: 700;
}

.hero-panel {
  display: none;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(217, 226, 239, 0.92);
  box-shadow: var(--shadow);
  padding: 22px;
  min-width: 0;
}

.hero-visual,
.promo-visual,
.method-visual,
.section-visual {
  margin: 0;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(10, 103, 199, 0.24);
  background: var(--ink);
  box-shadow: 0 22px 48px rgba(7, 24, 47, 0.18);
  margin-bottom: 20px;
}

.hero-visual img,
.promo-visual img,
.method-visual img,
.section-visual img {
  display: block;
  width: 100%;
  object-fit: cover;
}

.hero-visual img {
  aspect-ratio: 16 / 9;
}

.hero-visual figcaption,
.promo-visual figcaption,
.method-visual figcaption,
.section-visual figcaption {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

.hero-visual figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 800;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.55);
}

.panel-top {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  margin-bottom: 20px;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0 6px rgba(53, 198, 255, 0.16);
}

.flow-map {
  display: grid;
  gap: 8px;
}

.flow-node {
  border: 1px solid var(--line);
  background: #fafdff;
  border-radius: 8px;
  padding: 18px;
}

.flow-node.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

.flow-node.final {
  border-color: rgba(10, 103, 199, 0.45);
  background: var(--soft-blue);
}

.flow-node small {
  color: var(--blue-2);
  font-weight: 900;
}

.flow-node.active small {
  color: var(--cyan);
}

.flow-node strong,
.flow-node span {
  display: block;
}

.flow-node strong {
  margin-top: 6px;
  font-size: 18px;
}

.flow-node span {
  color: inherit;
  opacity: 0.72;
  margin-top: 4px;
  font-size: 14px;
}

.flow-rail {
  width: 2px;
  height: 20px;
  background: linear-gradient(var(--line), var(--blue-2));
  margin-left: 28px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.metric-strip div {
  border-radius: 8px;
  background: #f3f7fc;
  padding: 12px;
}

.metric-strip strong,
.metric-strip span {
  display: block;
}

.metric-strip strong {
  color: var(--blue);
  font-size: 18px;
}

.metric-strip span {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}

.section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0;
}

.section.compact {
  padding: 76px 0;
}

.section.tight {
  padding: 62px 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.audience-grid,
.offer-grid,
.outcome-grid,
.use-case-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.audience-grid article,
.use-case-grid article,
.outcome-grid article,
.proof-card,
.lead-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
}

.audience-grid p,
.use-case-grid p,
.outcome-grid p,
.method-item p,
.proof p,
.offer-card p,
.proof-card li,
.form-note {
  color: var(--muted);
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
  font-size: 18px;
  max-width: 760px;
}

.use-cases {
  padding-top: 86px;
}

.use-case-grid {
  grid-template-columns: repeat(3, 1fr);
}

.use-case-grid article {
  min-height: 236px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.use-case-grid article::after {
  content: "";
  position: absolute;
  inset: auto 18px 0 18px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  opacity: 0.86;
}

.use-case-grid span {
  width: fit-content;
  margin-bottom: 18px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 999px;
  background: var(--soft-blue);
  color: var(--blue);
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.scorecard-promo {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(260px, 0.58fr) minmax(260px, 0.42fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: 0 18px 50px rgba(7, 24, 47, 0.08);
}

.scorecard-promo h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.scorecard-promo p:last-child {
  margin-bottom: 0;
}

.scorecard-promo-actions {
  display: grid;
  gap: 10px;
}

.scorecard-promo-actions .button {
  width: 100%;
}

.promo-visual {
  align-self: stretch;
  display: grid;
  gap: 10px;
  align-content: center;
}

.promo-visual img {
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  border: 1px solid rgba(10, 103, 199, 0.2);
  background: #f8fbff;
  box-shadow: 0 16px 36px rgba(7, 24, 47, 0.12);
}

.section-visual {
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(10, 103, 199, 0.22);
  background: var(--ink);
  box-shadow: 0 20px 48px rgba(7, 24, 47, 0.18);
  margin-bottom: 18px;
}

.section-visual img {
  aspect-ratio: 16 / 10;
}

.section-visual figcaption {
  padding: 12px 14px 14px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--ink);
}

.insight-feature {
  padding-top: 76px;
}

.insight-card {
  display: grid;
  gap: 10px;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.editorial-image {
  display: block;
  width: 100%;
  height: 168px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid rgba(188, 233, 255, 0.24);
  background: var(--ink);
  box-shadow: 0 16px 34px rgba(7, 24, 47, 0.16);
}

.insight-card .editorial-image {
  height: clamp(220px, 25vw, 300px);
  margin-bottom: 10px;
  border-color: rgba(188, 233, 255, 0.30);
}

.home-article-card .editorial-image,
.insight-tile .editorial-image {
  margin: -8px -8px 8px;
  width: calc(100% + 16px);
}

.insight-card span {
  width: fit-content;
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.insight-card strong {
  max-width: 880px;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.04;
}

.insight-card p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
}

.insight-card em {
  width: fit-content;
  color: var(--white);
  border-bottom: 1px solid var(--cyan);
  font-style: normal;
  font-weight: 850;
}

.home-insight-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) repeat(2, minmax(220px, 0.62fr));
  gap: 16px;
}

.home-insight-grid .insight-card {
  grid-row: span 2;
}

.home-article-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.home-article-card span,
.buyer-path-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.home-article-card strong {
  color: var(--ink);
  font-size: clamp(22px, 2.5vw, 30px);
  line-height: 1.05;
}

.home-article-card p,
.buyer-path-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

.lead-magnet-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.lead-magnet-band p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.buyer-paths {
  padding-top: 46px;
}

.fit-section {
  background: #f8fbff;
}

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

.fit-grid article {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 230px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.fit-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.fit-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.18;
}

.fit-grid p {
  margin: 0;
  color: var(--muted);
}

.buyer-path-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.buyer-path-grid a {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 270px;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(10, 103, 199, 0.06), rgba(255, 255, 255, 0)),
    var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.buyer-path-grid h3 {
  font-size: 22px;
  line-height: 1.12;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: start;
}

.method-list {
  display: grid;
  gap: 14px;
}

.method-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 18px;
}

.method-item span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.method-visual {
  display: grid;
  gap: 10px;
  margin-top: 26px;
}

.method-visual img {
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid rgba(10, 103, 199, 0.22);
  background: var(--ink);
  box-shadow: 0 18px 42px rgba(7, 24, 47, 0.16);
}

.blue-band {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 80% 0%, rgba(53, 198, 255, 0.14), transparent 34%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 96px max(20px, calc((100% - 1180px) / 2));
}

.inverse .eyebrow,
.blue-band .eyebrow {
  color: var(--cyan);
}

.offer-grid {
  width: min(1180px, 100%);
}

.offer-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
}

.offer-card.highlight {
  background: rgba(53, 198, 255, 0.13);
  border-color: rgba(53, 198, 255, 0.5);
}

.offer-label {
  color: var(--cyan) !important;
  text-transform: uppercase;
  letter-spacing: 0;
  font-weight: 850;
  font-size: 12px;
}

.offer-card ul,
.proof-card ul {
  padding-left: 19px;
}

.offer-card li {
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.74);
}

.card-link {
  margin-top: auto;
  color: var(--white);
  font-weight: 850;
  border-bottom: 1px solid var(--cyan);
  width: fit-content;
}

.service-detail-card .card-link,
.service-cta .button.secondary {
  color: var(--blue);
  border-bottom-color: var(--blue);
}

.outcomes .outcome-grid {
  grid-template-columns: repeat(2, 1fr);
}

.outcome-grid strong {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--blue);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.starter {
  width: 100%;
  max-width: none;
  background: linear-gradient(180deg, rgba(234, 244, 255, 0.72), rgba(247, 249, 252, 0));
  padding: 86px max(20px, calc((100% - 1180px) / 2));
}

.starter-card {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.58fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  padding: 34px;
  box-shadow: 0 18px 50px rgba(7, 24, 47, 0.08);
}

.starter-card h2 {
  font-size: clamp(30px, 3.4vw, 46px);
}

.starter-card p:last-child {
  color: var(--muted);
  margin-bottom: 0;
}

.starter-points {
  display: grid;
  gap: 10px;
}

.starter-points span {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink-2);
  padding: 13px 14px;
  font-weight: 800;
}

.team-section {
  padding-top: 86px;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.85fr);
  gap: 16px;
}

.team-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  min-height: 220px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.team-card.founder-card {
  grid-row: span 3;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.98), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  box-shadow: var(--shadow);
}

.team-avatar {
  display: grid;
  place-items: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0;
}

.team-avatar.muted {
  background: var(--soft);
  color: var(--blue);
  border: 1px solid rgba(10, 103, 199, 0.18);
}

.team-card span {
  display: inline-block;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
  margin-bottom: 8px;
}

.team-card.founder-card span {
  color: var(--cyan);
}

.team-card h3 {
  margin-bottom: 10px;
}

.team-card p,
.team-card li {
  color: var(--muted);
}

.team-card.founder-card p,
.team-card.founder-card li {
  color: rgba(255, 255, 255, 0.78);
}

.team-card ul {
  margin: 16px 0 0;
  padding-left: 19px;
}

.founder-profile-link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin-top: 20px;
  border-bottom: 1px solid rgba(18, 199, 240, 0.72);
  color: var(--white);
  font-weight: 850;
}

.proof-card {
  box-shadow: var(--shadow);
}

.proof-card .note {
  margin: 18px 0 0;
  font-size: 13px;
}

.faq {
  padding-top: 82px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 30px rgba(7, 24, 47, 0.05);
}

summary {
  cursor: pointer;
  padding: 18px 20px;
  color: var(--ink);
  font-weight: 850;
  list-style-position: outside;
}

details p {
  margin: 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  padding: 0 20px 18px;
}

.diagnosis {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 46px;
  align-items: start;
}

.lead-form {
  display: grid;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink-2);
  font-weight: 750;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbfdff;
  color: var(--ink);
  padding: 13px 14px;
  font: inherit;
}

input:focus,
textarea:focus,
select:focus {
  outline: 2px solid rgba(15, 140, 255, 0.26);
  border-color: var(--blue);
}

.form-note {
  margin-bottom: 0;
  font-size: 13px;
}

.email-fallback-panel {
  display: grid;
  gap: 12px;
  border: 1px solid rgba(25, 92, 180, 0.24);
  border-radius: 8px;
  background: #f4f8ff;
  padding: 16px;
}

.email-fallback-panel[hidden] {
  display: none;
}

.email-fallback-panel strong {
  color: var(--ink);
  font-size: 15px;
}

.email-fallback-panel p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.email-fallback-panel textarea {
  min-height: 176px;
  resize: vertical;
  background: #ffffff;
  font-size: 13px;
  line-height: 1.5;
}

.email-fallback-panel .button {
  width: fit-content;
}

.copy-status {
  color: var(--blue-dark);
  font-size: 13px;
  min-height: 18px;
}

.score-email-fallback {
  margin-top: 16px;
}

.footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  padding: 32px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
}

.footer strong {
  color: var(--ink);
}

.footer p {
  margin: 6px 0 0;
}

.footer-links a {
  color: var(--ink-2);
  font-weight: 750;
}

.score-hero {
  background:
    radial-gradient(circle at 76% 20%, rgba(53, 198, 255, 0.2), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #edf5ff 100%);
  border-bottom: 1px solid var(--line);
}

.score-hero-inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 520px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 46px;
  align-items: center;
  padding: 70px 0;
}

.score-summary {
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  padding: 24px;
}

.score-summary strong {
  display: block;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

.score-summary p {
  margin-bottom: 0;
  color: var(--ink-2);
}

.diagnosis-hero {
  width: min(1180px, calc(100% - 40px));
  min-height: 560px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.42fr);
  gap: 46px;
  align-items: center;
  padding: 76px 0;
}

.diagnosis-hero-copy {
  max-width: 820px;
}

.diagnosis-summary,
.diagnosis-note {
  border: 1px solid rgba(10, 103, 199, 0.18);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 24px;
}

.diagnosis-summary strong {
  display: block;
  color: var(--blue);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 13px;
}

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

.diagnosis-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.65fr);
  gap: 34px;
  align-items: start;
}

.diagnosis-detail {
  display: grid;
  gap: 22px;
}

.diagnosis-checklist {
  display: grid;
  gap: 14px;
}

.diagnosis-checklist section {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 20px;
}

.diagnosis-checklist span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
}

.diagnosis-checklist p {
  color: var(--muted);
  margin-bottom: 0;
}

.services-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 64px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
  gap: 34px;
  align-items: end;
}

.services-hero-copy {
  max-width: 860px;
}

.services-hero-panel {
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.11), rgba(53, 198, 255, 0.07)),
    var(--white);
  padding: 26px;
  box-shadow: var(--shadow);
}

.services-hero-panel span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.services-hero-panel ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--ink-2);
}

.services-hero-panel li {
  margin-bottom: 10px;
}

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

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

.service-detail-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.07);
}

.service-detail-card.featured {
  border-color: rgba(10, 103, 199, 0.38);
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.1), rgba(255, 255, 255, 0.92)),
    var(--white);
}

.service-detail-card .offer-label {
  color: var(--blue) !important;
}

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

.service-detail-card dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.service-detail-card dl div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.service-detail-card dt {
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-detail-card dd {
  margin: 5px 0 0;
  color: var(--muted);
}

.service-use-cases {
  padding-top: 76px;
}

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

.service-use-case-grid article {
  min-height: 254px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.service-use-case-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.service-use-case-grid p {
  color: var(--muted);
  font-size: 16px;
}

.services-process {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 18% 0%, rgba(53, 198, 255, 0.16), transparent 32%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 88px max(20px, calc((100% - 1180px) / 2));
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  width: min(1180px, 100%);
}

.process-steps article {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 22px;
}

.process-steps span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.process-steps h3,
.process-steps p {
  color: var(--white);
}

.process-steps p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
}

.service-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.36fr);
  gap: 26px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 30px;
}

.checklist-hero {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 86px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
  gap: 34px;
  align-items: end;
}

.checklist-scorecard {
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  color: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.checklist-scorecard span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.checklist-scorecard p {
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 0;
}

.checklist-section {
  padding-top: 58px;
}

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

.checklist-grid article {
  min-height: 298px;
  display: grid;
  align-content: start;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 14px 38px rgba(7, 24, 47, 0.06);
}

.checklist-grid span {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.checklist-grid p {
  color: var(--muted);
  font-size: 16px;
}

.checklist-grid label {
  margin-top: auto;
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;
  color: var(--ink-2);
  font-weight: 750;
}

.checklist-grid input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--blue);
}

.checklist-priorities {
  width: 100%;
  max-width: none;
  background:
    radial-gradient(circle at 82% 0%, rgba(53, 198, 255, 0.15), transparent 32%),
    linear-gradient(135deg, #07182f, #102b4f);
  color: var(--white);
  padding: 88px max(20px, calc((100% - 1180px) / 2));
}

.priority-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: min(1180px, 100%);
}

.priority-grid article {
  min-height: 220px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
  padding: 24px;
}

.priority-grid h3,
.priority-grid p {
  color: var(--white);
}

.priority-grid p {
  color: rgba(255, 255, 255, 0.76);
}

.checklist-submit {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(360px, 0.62fr);
  gap: 34px;
  align-items: start;
}

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

.scorecard-form {
  display: grid;
  gap: 14px;
}

.scorecard-intro,
.scorecard-form fieldset,
.scorecard-result {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 24px;
}

.scorecard-intro p:last-child,
.scorecard-form fieldset p,
.scorecard-form label {
  color: var(--muted);
}

.scorecard-form fieldset {
  margin: 0;
}

.scorecard-form legend {
  color: var(--ink);
  font-size: 21px;
  font-weight: 850;
  padding: 0 8px;
}

.scorecard-form fieldset p {
  margin: 6px 0 16px;
}

.scorecard-form label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 0;
  border-top: 1px solid var(--line);
  font-weight: 650;
}

.scorecard-form input[type="radio"] {
  width: auto;
  flex: none;
  margin-top: 4px;
  accent-color: var(--blue);
}

.scorecard-result {
  position: sticky;
  top: 102px;
  box-shadow: var(--shadow);
}

.score-number {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 12px;
}

.score-number span {
  color: var(--blue);
  font-size: 72px;
  line-height: 0.9;
  font-weight: 900;
}

.score-number small {
  color: var(--muted);
  font-weight: 850;
}

.score-meter {
  height: 10px;
  overflow: hidden;
  border-radius: 999px;
  background: #e7edf6;
  margin: 22px 0;
}

.score-meter span {
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  transition: width 260ms ease;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0;
}

.legal-page {
  width: min(880px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0;
}

.legal-page section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 34px;
}

.legal-page h1 {
  font-size: clamp(42px, 5.2vw, 68px);
}

.legal-page h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-top: 34px;
}

.legal-page a {
  color: var(--blue);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

.article-page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 76px 0 96px;
}

.article-hero {
  max-width: 920px;
}

.article-kicker,
.article-meta span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.article-meta span {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 8px 10px;
}

.article-meta a,
.article-byline a {
  color: var(--blue);
  font-weight: 850;
}

.article-byline {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.article-byline span {
  padding: 0 6px;
  color: var(--line-strong);
}

.article-visual {
  margin: 44px 0;
  overflow: hidden;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.article-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.article-visual figcaption {
  color: rgba(255, 255, 255, 0.78);
  padding: 14px 18px 18px;
  font-size: 14px;
}

.article-body {
  max-width: 900px;
  margin: 0 auto;
}

.article-body p,
.article-body li {
  color: var(--ink-2);
  font-size: 18px;
}

.article-body h2 {
  margin-top: 52px;
}

.profile-page {
  padding-top: 92px;
}

.profile-page .article-hero {
  max-width: 980px;
  margin-bottom: 48px;
}

.authority-profile-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.35fr);
  gap: 38px;
  align-items: start;
}

.authority-command-panel {
  position: sticky;
  top: 102px;
  border: 1px solid rgba(18, 199, 240, 0.32);
  border-radius: 8px;
  background: var(--ink);
  color: var(--white);
  padding: 30px;
  box-shadow: var(--shadow);
}

.authority-command-panel .eyebrow {
  color: var(--cyan);
}

.authority-portrait {
  margin: -14px -14px 28px;
}

.authority-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.authority-portrait figcaption {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.authority-command-panel h2 {
  color: var(--white);
  font-size: clamp(28px, 3vw, 42px);
}

.authority-facts {
  display: grid;
  gap: 0;
  margin: 28px 0 0;
}

.authority-facts div {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 18px 0;
}

.authority-facts dt {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.authority-facts dd {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

.profile-narrative {
  max-width: none;
  margin: 0;
}

.profile-narrative h2:first-child {
  margin-top: 0;
}

.profile-link-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0 40px;
}

.profile-link-grid a {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.07);
}

.profile-link-grid span {
  display: block;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.profile-link-grid strong {
  display: block;
  margin: 9px 0;
  color: var(--ink);
  font-size: 21px;
}

.profile-link-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.article-disclaimer {
  border-left: 4px solid var(--blue);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 20px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.07);
}

.article-client-panel {
  margin: 34px 0 18px;
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(10, 103, 199, 0.12), rgba(18, 199, 240, 0.06)),
    var(--white);
  padding: 26px;
  box-shadow: 0 16px 42px rgba(7, 24, 47, 0.08);
}

.article-client-panel span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.article-client-panel h2 {
  margin-top: 10px;
}

.article-client-panel p {
  margin-bottom: 0;
}

.article-lead-panel {
  margin: 26px 0 18px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.38fr);
  gap: 22px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.24);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.94)),
    var(--ink);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(7, 24, 47, 0.18);
}

.article-lead-panel span {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.article-lead-panel h2 {
  color: var(--white);
  font-size: clamp(24px, 3vw, 34px);
  margin: 8px 0 8px;
}

.article-lead-panel p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  margin: 0;
}

.article-lead-actions {
  display: grid;
  gap: 10px;
}

.article-lead-actions .button {
  width: 100%;
}

.article-lead-actions .button.primary {
  background: var(--white);
  color: var(--ink);
  border-color: var(--white);
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.18);
}

.article-lead-actions .button.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.38);
}

.article-example-grid,
.article-service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 26px 0;
}

.article-example-grid section,
.article-service-grid section {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
}

.article-example-grid span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: var(--soft-blue);
  color: var(--blue);
  font-weight: 900;
  margin-bottom: 14px;
}

.article-example-grid p,
.article-service-grid p {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 0;
}

.article-steps {
  display: grid;
  gap: 12px;
  padding-left: 24px;
}

.article-deliverables {
  display: grid;
  gap: 12px;
  margin: 24px 0 34px;
  padding: 0;
  list-style: none;
}

.article-deliverables li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 18px 18px 18px 48px;
}

.article-deliverables li::before {
  content: "";
  position: absolute;
  left: 20px;
  top: 24px;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 5px rgba(10, 103, 199, 0.12);
}

blockquote {
  margin: 44px 0;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ink), var(--ink-2));
  color: var(--white);
  padding: 28px;
}

blockquote p {
  margin: 0;
  color: var(--white) !important;
  font-size: clamp(22px, 3vw, 34px) !important;
  line-height: 1.12;
}

.article-cta {
  margin-top: 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 28px;
  align-items: center;
  border: 1px solid rgba(10, 103, 199, 0.22);
  border-radius: 8px;
  background: var(--white);
  padding: 28px;
  box-shadow: var(--shadow);
}

.insights-hero {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 28px;
}

.insights-hero > div {
  max-width: 880px;
}

.research-pipeline {
  padding-top: 34px;
  padding-bottom: 34px;
}

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

.pipeline-grid article {
  min-height: 250px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 22px;
  box-shadow: 0 12px 34px rgba(7, 24, 47, 0.06);
}

.pipeline-grid span {
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.pipeline-grid p {
  color: var(--muted);
  font-size: 16px;
}

.insights-grid-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.6fr);
  gap: 16px;
  padding-top: 24px;
}

.insight-tile {
  display: grid;
  align-content: start;
  gap: 12px;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  padding: 26px;
  box-shadow: 0 16px 46px rgba(7, 24, 47, 0.08);
}

.insight-tile .editorial-image {
  height: 180px;
  border-color: rgba(10, 103, 199, 0.18);
}

.insight-tile.featured {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.95), rgba(16, 43, 79, 0.95)),
    var(--ink);
  color: var(--white);
  min-height: 520px;
}

.insight-tile.featured .editorial-image {
  height: clamp(240px, 26vw, 330px);
  border-color: rgba(188, 233, 255, 0.30);
}

.insight-tile span {
  width: fit-content;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 12px;
  font-weight: 850;
}

.insight-tile.featured span {
  color: var(--cyan);
}

.insight-tile h2 {
  font-size: clamp(26px, 3.4vw, 44px);
}

.insight-tile p {
  color: var(--muted);
  font-size: 17px;
}

.insight-tile.featured p {
  color: rgba(255, 255, 255, 0.78);
}

.insight-tile em {
  margin-top: auto;
  width: fit-content;
  color: var(--ink);
  border-bottom: 1px solid currentColor;
  font-style: normal;
  font-weight: 850;
}

.insight-tile.featured em {
  color: var(--white);
  border-color: var(--cyan);
}

.muted-tile {
  box-shadow: none;
}

.artifact-command {
  background:
    linear-gradient(135deg, rgba(7, 24, 47, 0.96), rgba(16, 43, 79, 0.95)),
    var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(53, 198, 255, 0.22);
  border-bottom: 1px solid rgba(53, 198, 255, 0.22);
}

.artifact-command .section-heading p,
.artifact-command em {
  color: rgba(255, 255, 255, 0.78);
}

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

.artifact-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.045));
  border-radius: 8px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.artifact-card span,
.matrix-card span,
.campaign-lanes span,
.mission-timeline span {
  width: fit-content;
  color: var(--gold);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.artifact-card h3,
.artifact-card p {
  margin: 0;
}

.artifact-card p {
  color: rgba(255, 255, 255, 0.78);
}

.artifact-card strong {
  margin-top: auto;
  color: var(--cyan);
}

.artifact-signal-map {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(53, 198, 255, 0.24);
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
}

.artifact-signal-map div {
  padding: 18px;
  border-right: 1px solid rgba(53, 198, 255, 0.18);
}

.artifact-signal-map div:last-child {
  border-right: 0;
}

.artifact-signal-map span {
  display: block;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.artifact-signal-map strong {
  display: block;
  margin-top: 6px;
}

.opportunity-matrix-section,
.triage-board-section,
.mission-planner-section {
  background: var(--white);
}

.matrix-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}

.matrix-filter {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.matrix-filter.active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}

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

.matrix-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  text-align: left;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--white), #f8fbff);
  color: var(--ink);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 16px 42px rgba(7, 24, 47, 0.08);
  cursor: pointer;
}

.matrix-card.selected {
  border-color: var(--blue);
  box-shadow: 0 22px 58px rgba(10, 103, 199, 0.18);
}

.matrix-card h3,
.matrix-card p,
.pilot-brief h3,
.pilot-brief p,
.triage-result h3,
.triage-result p,
.mission-progress strong,
.mission-progress p {
  margin: 0;
}

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

.matrix-card meter {
  width: 100%;
  height: 10px;
  margin-top: auto;
}

.pilot-brief,
.triage-board,
.mission-planner {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.pilot-brief {
  padding: 24px;
}

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

.pilot-brief dl div,
.score-action-plan,
.triage-result,
.mission-progress {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.pilot-brief dt {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.pilot-brief dd {
  margin: 6px 0 0;
}

.triage-board {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
  padding: 22px;
}

.triage-controls {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.triage-controls label,
.mission-checks label {
  display: grid;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 800;
}

.triage-score,
.score-number {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.triage-score span {
  font-size: 48px;
  line-height: 1;
  font-weight: 900;
}

.campaign-lanes,
.mission-timeline {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.campaign-lanes article,
.mission-timeline article {
  min-height: 170px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.campaign-lanes p,
.mission-timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.mission-planner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 18px;
  padding: 22px;
}

.mission-progress {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mission-progress span {
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.mission-bar,
.score-meter {
  height: 11px;
  overflow: hidden;
  border-radius: 999px;
  background: #dfe8f5;
}

.mission-bar i,
.score-meter span {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.mission-checks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.mission-checks input {
  margin-right: 8px;
}

.readiness-radar {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.readiness-radar div {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
  gap: 10px;
}

.readiness-radar span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.readiness-radar div::after {
  content: "";
  grid-column: 2;
  grid-row: 1;
  height: 9px;
  border-radius: 999px;
  background: #dfe8f5;
}

.readiness-radar i {
  z-index: 1;
  grid-column: 2;
  grid-row: 1;
  display: block;
  height: 9px;
  width: 8%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
}

.score-action-plan {
  margin-bottom: 18px;
}

.score-action-plan ol {
  margin: 12px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

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

  .nav-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 72px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    padding: 10px;
  }

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

  .nav-links a {
    padding: 13px;
  }

  .hero-inner,
  .score-hero-inner,
  .diagnosis-hero,
  .services-hero,
  .checklist-hero,
  .split,
  .diagnosis,
  .diagnosis-page-grid,
  .checklist-submit,
  .scorecard-layout,
  .scorecard-promo,
  .lead-magnet-band,
  .team-grid,
  .article-cta,
  .article-lead-panel,
  .home-insight-grid,
  .insights-grid-section,
  .service-cta,
  .authority-profile-grid {
    grid-template-columns: 1fr;
  }

  .authority-command-panel {
    position: static;
  }

  .artifact-grid,
  .artifact-signal-map,
  .opportunity-matrix,
  .pilot-brief dl,
  .campaign-lanes,
  .mission-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .triage-board,
  .mission-planner {
    grid-template-columns: 1fr;
  }

  .insight-tile.featured {
    min-height: auto;
  }

  .team-card.founder-card {
    grid-row: auto;
  }

  .team-card {
    grid-template-columns: 1fr;
  }

  .editorial-image,
  .insight-card .editorial-image,
  .insight-tile .editorial-image,
  .insight-tile.featured .editorial-image {
    height: auto;
    aspect-ratio: 16 / 9;
  }

  .hero-inner {
    min-height: auto;
    padding: 54px 0;
    gap: 34px;
  }

  .audience-grid,
  .offer-grid,
  .use-case-grid,
  .buyer-path-grid,
  .fit-grid,
  .services-grid,
  .process-steps,
  .service-use-case-grid,
  .checklist-grid,
  .priority-grid,
  .pipeline-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .starter-card {
    grid-template-columns: 1fr;
  }

  .scorecard-result {
    position: static;
  }
}

@media (max-width: 680px) {
  .nav,
  .section,
  .hero-inner,
  .score-hero-inner,
  .diagnosis-hero,
  .insights-hero,
  .services-hero,
  .checklist-hero,
  .footer {
    width: min(100% - 28px, 1180px);
  }

  h1 {
    max-width: 100%;
    font-size: clamp(34px, 10vw, 40px);
    line-height: 1;
  }

  .lead {
    max-width: 100%;
    font-size: 17px;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 11px;
    line-height: 1.35;
    overflow-wrap: anywhere;
  }

  .hero-copy,
  .hero-panel,
  .scorecard-promo,
  .promo-visual,
  .method-visual,
  .insight-card,
  .home-article-card {
    max-width: 100%;
    min-width: 0;
  }

  .button {
    white-space: normal;
    text-align: center;
  }

  .metric-strip,
  .audience-grid,
  .use-case-grid,
  .offer-grid,
  .buyer-path-grid,
  .fit-grid,
  .article-example-grid,
  .article-service-grid,
  .services-grid,
  .process-steps,
  .service-use-case-grid,
  .checklist-grid,
  .priority-grid,
  .pipeline-grid,
  .outcomes .outcome-grid,
  .artifact-grid,
  .artifact-signal-map,
  .opportunity-matrix,
  .pilot-brief dl,
  .triage-controls,
  .campaign-lanes,
  .mission-checks,
  .mission-timeline,
  .profile-link-grid {
    grid-template-columns: 1fr;
  }

  .profile-link-grid a {
    min-height: auto;
  }

  .use-case-grid article,
  .service-use-case-grid article,
  .checklist-grid article,
  .priority-grid article,
  .pipeline-grid article,
  .fit-grid article,
  .buyer-path-grid a,
  .service-detail-card {
    min-height: auto;
  }

  .starter-card {
    padding: 24px;
  }

  .scorecard-promo,
  .scorecard-intro,
  .scorecard-form fieldset,
  .scorecard-result,
  .lead-magnet-band,
  .article-cta,
  .service-cta,
  .services-hero-panel,
  .checklist-scorecard,
  .service-detail-card,
  .diagnosis-summary,
  .diagnosis-note,
  .legal-page section {
    padding: 20px;
  }

  .artifact-card,
  .matrix-card,
  .campaign-lanes article,
  .mission-timeline article {
    min-height: auto;
  }

  .readiness-radar div {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .readiness-radar div::after,
  .readiness-radar i {
    grid-column: 1;
    grid-row: 2;
  }

  .diagnosis-checklist section {
    grid-template-columns: 1fr;
  }

  .article-page {
    width: min(100% - 28px, 1120px);
    padding-top: 54px;
  }

  .hero-actions .button,
  .lead-form .button {
    width: 100%;
  }

  .hero-inner {
    padding: 34px 0 38px;
  }

  .hero-promise {
    margin-bottom: 18px;
    font-size: 25px;
  }

  .hero .lead {
    margin-bottom: 20px;
  }

  .hero-actions .button:nth-child(3) {
    display: none;
  }

  .hero-signal-strip {
    width: min(100% - 28px, 1180px);
    justify-content: stretch;
  }

  .hero-signal-strip span {
    flex: 1 1 calc(50% - 10px);
  }

  .section,
  .blue-band,
  .services-process,
  .checklist-priorities {
    padding-top: 68px;
    padding-bottom: 68px;
  }

  .offer-card {
    min-height: auto;
  }

  .footer {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hero-copy {
    max-width: 360px;
  }

  h1 {
    font-size: 36px;
  }

  .hero-panel {
    padding: 16px;
  }
}
