.site-header {
  background: var(--bg-dark);
  color: var(--header-text, #fff);
}

.header-inner {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding-block: 0.4rem;
}

.brand {
  color: var(--header-text, #fff);
  text-decoration: none;
  display: inline-block;
  line-height: 0;
}

.brand img {
  width: clamp(245px, 24vw, 365px);
  height: auto;
}

.menu-toggle {
  display: none;
  border: 1px solid #ffffff40;
  border-radius: 6px;
  background: transparent;
  color: var(--header-text, #fff);
  font-weight: 600;
  padding: 0.35rem 0.6rem;
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: clamp(0.85rem, 1.45vw, 1.65rem);
  margin: 0;
  padding: 0;
}

.primary-nav a {
  color: var(--header-text, #fff);
  text-decoration: none;
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.015em;
  font-family: var(--font-display) !important;
  font-synthesis: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--nav-hover, #ffcb67);
}

.search-button {
  border: 0;
  background: transparent;
  color: var(--header-text, #fff);
  font-size: 1.35rem;
  line-height: 1;
  padding: 0;
}

.section-light {
  background: var(--bg-light);
  padding: var(--section-light-padding, clamp(3.2rem, 8vw, 5.5rem)) 0;
}

.section-white {
  background: var(--bg-white);
  padding: var(--section-white-padding, clamp(3rem, 8vw, 5.3rem)) 0;
}

.section-hero {
  position: relative;
  overflow: clip;
  padding: 0;
  display: flex;
  align-items: stretch;
}

.section-hero::after {
  content: "";
  position: absolute;
  left: -4%;
  right: -4%;
  bottom: calc(var(--hero-curve-height, 148px) * -0.5);
  height: var(--hero-curve-height, 148px);
  border-radius: 50% 50% 0 0;
  background: var(--bg-white);
  z-index: 2;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  padding:
    var(--section-hero-padding, clamp(4rem, 8vw, 6.2rem))
    var(--section-hero-inline-padding, clamp(0.35rem, 0.9vw, 0.65rem))
    calc(var(--section-hero-padding, clamp(4rem, 8vw, 6.2rem)) + var(--hero-curve-height, 148px));
}

.hero-section .hero-content {
  width: min(100%, var(--hero-content-width, 66%));
  max-width: 78ch;
  color: #fff;
}

.hero-eyebrow {
  margin: 0 0 0.7rem;
  color: #ffcb67;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero-grid h1 {
  font-size: var(--hero-h1-size, clamp(2rem, 4vw, 4.1rem));
  letter-spacing: -0.012em;
  line-height: 1.08;
  margin-bottom: 1rem;
  color: #f8fbff;
}

.hero-grid p {
  color: #e4ebf5;
  font-size: var(--hero-summary-size, clamp(1.04rem, 1.45vw, 1.36rem));
  line-height: 1.5;
  max-width: 58ch;
  margin-bottom: 1.45rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78rem;
}

.button.primary {
  display: inline-block;
  background: #ffb020;
  border: 1px solid #ffb020;
  color: #121212;
  padding: 0.95rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.02rem;
  font-weight: 800;
  min-width: 190px;
  text-align: center;
}

.button.primary:hover {
  background: #ffbe45;
  border-color: #ffbe45;
}

.button.secondary {
  display: inline-block;
  background: #ffffff18;
  border: 1px solid #ffffff5e;
  color: #fff;
  padding: 0.95rem 1.35rem;
  border-radius: 8px;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 700;
  min-width: 190px;
  text-align: center;
  backdrop-filter: blur(2px);
}

.button.secondary:hover {
  background: #ffffff2b;
  border-color: #ffffff8e;
}

.testimonials h2,
.services h2,
.recent-thoughts h2 {
  text-align: center;
  font-size: var(--section-h2-size, clamp(1.9rem, 3.2vw, 3.2rem));
  margin-bottom: 1.25rem;
}

.testimonial-slider {
  position: relative;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  padding: 0.5rem 0 0;
}

.testimonial-track {
  position: relative;
  min-height: 220px;
  overflow: hidden;
}

.testimonial {
  display: none;
  width: 100%;
}

.testimonial.is-active {
  display: block;
  position: relative;
}

.testimonial.is-enter-right,
.testimonial.is-enter-left,
.testimonial.is-exit-left,
.testimonial.is-exit-right {
  display: block;
  position: absolute;
  inset: 0;
}

.testimonial.is-enter-right {
  animation: testimonial-enter-right var(--testimonial-transition-duration, 420ms) ease forwards;
}

.testimonial.is-enter-left {
  animation: testimonial-enter-left var(--testimonial-transition-duration, 420ms) ease forwards;
}

.testimonial.is-exit-left {
  animation: testimonial-exit-left var(--testimonial-transition-duration, 420ms) ease forwards;
}

.testimonial.is-exit-right {
  animation: testimonial-exit-right var(--testimonial-transition-duration, 420ms) ease forwards;
}

.testimonial blockquote {
  margin: 0;
  border-left: 0 !important;
  padding-left: 0 !important;
  background: transparent;
}

.testimonial blockquote p {
  font-size: 1.18rem;
  line-height: 1.6;
  color: #212833;
  font-style: normal;
}

.testimonial-attribution {
  margin-top: 1.2rem;
  font-weight: 700;
  font-size: 1.05rem;
}

.carousel-controls {
  position: static;
  margin-top: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  width: 100%;
}

.carousel-controls button {
  width: 34px;
  height: 34px;
  border: 1px solid #adb4bf;
  background: #eceef1;
  color: #596273;
  border-radius: 2px;
  cursor: pointer;
}

.carousel-controls button:hover {
  background: #dce0e6;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
}

.carousel-dot {
  width: 11px;
  height: 11px;
  border-radius: 999px;
  border: 0;
  background: #c6cbd3;
  padding: 0;
}

.carousel-dot.is-active {
  background: #3e9ed6;
}

.persona-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-bottom: 1.9rem;
  color: #123d72;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1.2;
}

.persona-prefix,
.persona-suffix {
  color: #3a3d44;
}

.persona-option {
  cursor: pointer;
}

.persona-option span {
  color: #8f939c;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 700;
  transition: color 180ms ease;
}

.persona-switch[data-active="business"] [data-persona-label="business"] span {
  color: #8b2f93;
}

.persona-switch[data-active="tech"] [data-persona-label="tech"] span {
  color: #133f75;
}

.persona-toggle {
  all: unset;
  box-sizing: border-box;
  width: 74px;
  height: 38px;
  min-width: 74px;
  min-height: 38px;
  border: 0 !important;
  border-radius: 999px;
  background: #103463;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 4px;
  cursor: pointer;
  transition: background-color 180ms ease;
  vertical-align: middle;
}

.persona-toggle:hover {
  background: #16427b;
}

.persona-knob {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #f2f3f5;
  box-shadow: 0 1px 4px #00000033;
  transform: translateX(0);
  transition: transform 180ms ease;
}

.persona-switch[data-active="tech"] .persona-knob {
  transform: translateX(36px);
}

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

.persona-stage {
  position: relative;
  min-height: 0;
}

.persona-stage .card-grid {
  width: 100%;
}

.persona-stage .card-grid.is-active {
  position: relative;
}

.persona-stage .card-grid.is-enter-right,
.persona-stage .card-grid.is-enter-left,
.persona-stage .card-grid.is-exit-left,
.persona-stage .card-grid.is-exit-right {
  position: absolute;
  inset: 0;
}

.persona-stage .card-grid.is-enter-right {
  animation: testimonial-enter-right var(--persona-transition-duration, 320ms) ease forwards;
}

.persona-stage .card-grid.is-enter-left {
  animation: testimonial-enter-left var(--persona-transition-duration, 320ms) ease forwards;
}

.persona-stage .card-grid.is-exit-left {
  animation: testimonial-exit-left var(--persona-transition-duration, 320ms) ease forwards;
}

.persona-stage .card-grid.is-exit-right {
  animation: testimonial-exit-right var(--persona-transition-duration, 320ms) ease forwards;
}

.service-card {
  background: #f7f9fc;
  border-radius: var(--radius);
  border: 1px solid #ccd4e0;
  min-height: 310px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.service-card:hover {
  transform: translateY(-2px);
  border-color: #9eb3d4;
  box-shadow: 0 8px 22px #13243a1f;
}

.service-card:focus-visible {
  outline: 2px solid #1b4d89;
  outline-offset: 2px;
}

.service-card-top {
  position: relative;
  display: block;
  width: 100%;
  height: 88px;
  flex: 0 0 88px;
  border-bottom: 1px solid #d3dbe8;
  text-decoration: none;
  background: linear-gradient(135deg, #153a6c 0%, #2f6299 100%);
}

.service-card-top img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-fallback {
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #1c4882 0%, #0e2e56 100%);
}

.service-chip {
  position: absolute;
  left: 12px;
  bottom: 10px;
  min-width: 78px;
  height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: #0b2a50e8;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  border: 1px solid #ffffff33;
  backdrop-filter: blur(2px);
}

.service-card-body {
  padding: 1.05rem 1.12rem 1.2rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 0.82rem;
}

.service-card h3 {
  color: #112849;
  font-size: clamp(1.18rem, 1.7vw, 1.42rem);
  margin: 0;
  letter-spacing: 0.012em;
}

.service-card p {
  color: #2f415e;
  font-size: 0.98rem;
  line-height: 1.45;
  margin: 0;
}

.service-card-points {
  margin: 0;
  padding-left: 1.15rem;
  color: #24364f;
  font-size: 0.95rem;
  line-height: 1.42;
  flex: 1 1 auto;
}

.service-card-points li {
  margin-bottom: 0.46rem;
}

.service-card-points li:last-child {
  margin-bottom: 0;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-weight: 700;
  font-size: 0.95rem;
  color: #133f75;
  text-decoration: none;
}

.service-link::after {
  content: ">";
  font-size: 0.92rem;
  transform: translateX(0);
  transition: transform 150ms ease;
}

.service-card:hover .service-link::after {
  transform: translateX(2px);
}

.services-embedded {
  margin-top: 0.2rem;
}

.services-embedded .persona-switch {
  justify-content: flex-start;
}

.services-embedded .card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.1rem;
}

.services-page-areas {
  margin-top: 1.15rem;
}

.services-page-areas .content-fact-cards {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.services-page-area {
  border: 1px solid #d4dbe6;
  border-left: 3px solid #1b4d89;
  border-radius: 10px;
  background: #f8fafd;
  padding: 0.9rem 1rem;
}

.services-page-area h3 {
  margin: 0 0 0.4rem;
  color: #14304f;
  font-size: 1.08rem;
}

.services-page-area p {
  margin: 0;
  color: #3d4d64;
  font-size: 0.98rem;
  line-height: 1.48;
}

.services-page-models .content-fact-cards {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.services-page-difference .content-bullet-list {
  display: grid;
  gap: 0.55rem;
}

.recent-layout {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  gap: 1.5rem;
}

.article-card {
  background: #f9fafb;
  border: 1px solid #b8bec8;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.article-card-top {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-bottom: 1px solid #ccd2dc;
}

.article-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-card.featured .article-card-top {
  height: 292px;
}

.article-card.compact .article-card-top {
  height: 92px;
}

.article-card-body {
  padding: 0.9rem 1rem 1rem;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
}

.article-card h3 {
  margin: 0.15rem 0 0.55rem;
  font-size: var(--card-featured-h3-size, clamp(1.86rem, 2.8vw, 2.45rem));
  line-height: 1.12;
  letter-spacing: 0.01em;
}

.article-card h3 a {
  color: #15171b;
  text-decoration: none;
  display: block;
}

.article-card h3 a:hover {
  text-decoration: underline;
}

.article-byline {
  display: flex;
  align-items: center;
  gap: 0.72rem;
  margin-bottom: 0.78rem;
}

.article-author-avatar {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid #cfd4dc;
  flex: 0 0 auto;
  display: inline-flex;
}

.article-author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.article-byline-text {
  min-width: 0;
}

.article-byline-date,
.article-byline-meta,
.article-byline-author {
  margin: 0;
  color: #2b313b;
  line-height: 1.18;
}

.article-byline-date,
.article-byline-meta {
  font-size: 0.99rem;
  margin-bottom: 0.12rem;
}

.article-byline-author {
  font-size: 0.98rem;
  font-weight: 700;
}

.article-byline-author a {
  color: #122f58;
  text-decoration: none;
}

.article-byline-author a:hover {
  text-decoration: underline;
}

.article-excerpt {
  font-size: 1.03rem;
  line-height: 1.45;
  color: #1d2a3f;
  margin-bottom: 0.92rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  min-height: 0;
}

.article-excerpt p {
  display: block;
  margin: 0 0 0.55rem;
}

.article-excerpt p:last-child {
  margin-bottom: 0;
}

.article-excerpt strong,
.article-excerpt b {
  font-weight: 700;
}

.article-card.featured .article-excerpt {
  -webkit-line-clamp: 24;
  line-clamp: 24;
  flex: 1 1 auto;
}

.article-card.compact .article-excerpt {
  -webkit-line-clamp: 10;
  line-clamp: 10;
}

.article-card-body > a {
  display: inline-block;
  margin-top: auto;
  margin-bottom: 0;
  font-weight: 700;
  text-decoration: none;
}

.article-card-body > a:hover {
  text-decoration: underline;
}

.stacked-cards {
  display: grid;
  gap: 1.35rem;
}

.article-index-page {
  padding-top: clamp(2.8rem, 6vw, 4rem);
}

.article-index-page-experimental .article-index-container {
  gap: 1.45rem;
}

.article-index-container {
  display: grid;
  gap: 1.15rem;
}

.article-index-header h1 {
  margin-bottom: 0.55rem;
}

.article-index-lead {
  margin: 0;
  color: #334258;
  font-size: 1.06rem;
}

.article-index-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.42fr) auto;
  gap: 0.72rem;
  align-items: end;
}

.article-index-control {
  display: grid;
  gap: 0.28rem;
}

.article-index-control-categories {
  align-content: start;
}

.article-index-control-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: #2f3b50;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-index-control input,
.article-index-control select {
  height: 42px;
  border: 1px solid #c2cbd9;
  border-radius: 8px;
  background: #f8fafe;
  padding: 0 0.72rem;
  font-size: 0.96rem;
  color: #233048;
}

.article-index-control input:focus,
.article-index-control select:focus {
  outline: 2px solid #173f72;
  outline-offset: 1px;
}

.article-index-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-index-chip {
  min-height: 34px;
  border: 1px solid var(--tag-chip-border, #c2cbd9);
  border-radius: 999px;
  background: var(--tag-chip-bg, #fff);
  color: var(--tag-chip-text, #153f72);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.82rem;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, opacity 180ms ease;
}

.article-index-chip:hover {
  background: var(--tag-chip-hover, #edf2f8);
}

.article-index-chip:focus-visible {
  outline: 2px solid #173f72;
  outline-offset: 1px;
}

.article-index-chip.is-selected {
  background: var(--tag-solid-bg, #153f72);
  border-color: var(--tag-solid-bg, #153f72);
  color: #fff;
}

.article-index-reset {
  height: 42px;
  border: 1px solid #c2cbd9;
  border-radius: 8px;
  background: #fff;
  color: #153f72;
  font-weight: 700;
  padding: 0 1rem;
  cursor: pointer;
}

.article-index-reset:hover {
  background: #edf2f8;
}

.article-index-results {
  margin: 0.05rem 0 0.25rem;
  font-size: 0.93rem;
  color: #3b4960;
}

.article-index-explorer {
  display: grid;
  gap: 1.2rem;
}

.article-index-featured-cluster {
  display: none;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 1.2rem;
  align-items: stretch;
}

.article-index-featured-cluster.is-visible {
  display: grid;
}

.article-index-featured-main .article-card.featured {
  height: 100%;
}

.article-index-featured-stack {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.article-index-featured-stack .article-card.compact {
  min-height: 0;
}

.article-index-archive-head {
  display: grid;
  gap: 0.72rem;
}

.article-index-archive-head h2 {
  margin: 0;
}

.article-index-archive-controls {
  display: grid;
  gap: 0.72rem;
}

.article-index-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.72rem;
  align-items: end;
}

.article-index-control-search {
  min-width: 0;
}

.article-index-tag-row {
  display: grid;
}

.article-index-page-experimental .article-index-control-categories {
  gap: 0.42rem;
}

.article-index-page-experimental .article-index-chip-list {
  max-width: 100%;
}

.article-index-featured,
.article-index-grid,
.article-index-pagination {
  opacity: 1;
  transition: opacity 160ms ease;
}

.article-index-explorer.is-transitioning .article-index-featured,
.article-index-explorer.is-transitioning .article-index-featured-cluster,
.article-index-explorer.is-transitioning .article-index-grid,
.article-index-explorer.is-transitioning .article-index-pagination {
  opacity: 0.2;
}

@media (prefers-reduced-motion: reduce) {
  .article-index-chip,
  .article-index-featured,
  .article-index-featured-cluster,
  .article-index-grid,
  .article-index-pagination {
    transition: none;
  }
}

.article-index-featured {
  display: none;
}

.article-index-featured.is-visible {
  display: block;
}

.article-index-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.article-index-empty {
  margin: 0;
  border: 1px dashed #bdc7d7;
  border-radius: var(--radius);
  padding: 1rem;
  color: #33445e;
  background: #f8fafd;
}

.article-index-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.article-index-page-btn {
  min-width: 2.2rem;
  height: 2.2rem;
  border: 1px solid #c2cbda;
  border-radius: 8px;
  background: #fff;
  color: #153f72;
  font-weight: 700;
  padding: 0 0.62rem;
  cursor: pointer;
}

.article-index-page-btn:hover {
  background: #edf2f8;
}

.article-index-page-btn[disabled] {
  opacity: 0.46;
  cursor: not-allowed;
}

.article-index-page-btn.is-active {
  background: #153f72;
  border-color: #153f72;
  color: #fff;
}

.article-index-page-ellipsis {
  color: #5a667c;
  font-weight: 700;
  padding: 0 0.1rem;
}

.article-card.compact {
  min-height: 246px;
}

.article-card.compact h3 {
  font-size: var(--card-compact-h3-size, clamp(1.42rem, 1.7vw, 1.82rem));
  line-height: 1.16;
}

.article-card.compact .article-author-avatar {
  width: 46px;
  height: 46px;
}

.article-card.compact .article-byline-date,
.article-card.compact .article-byline-author {
  font-size: 0.92rem;
}

.article-tag-list {
  position: absolute;
  left: 0.82rem;
  top: 0.78rem;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  max-width: calc(100% - 1.64rem);
}

.tag-label {
  min-height: 30px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #fff;
  border: 1px solid var(--tag-solid-border, #ffffff30);
  text-shadow: 0 1px 1px #00000040;
  backdrop-filter: blur(2px);
  background: var(--tag-solid-bg, #1f4e88e6);
}

.tag-label-link {
  text-decoration: none;
}

.tag-label-link:hover {
  text-decoration: none;
}

.tag-tone-security {
  --tag-solid-bg: #153f72e6;
  --tag-solid-border: #86a9d0;
  --tag-chip-bg: #ecf2fa;
  --tag-chip-border: #bed0e6;
  --tag-chip-text: #153f72;
  --tag-chip-hover: #e3edf8;
}

.tag-tone-training,
.tag-tone-featured-article,
.tag-tone-strategy {
  --tag-solid-bg: #9b6210e6;
  --tag-solid-border: #e6be75;
  --tag-chip-bg: #fdf2df;
  --tag-chip-border: #efcf97;
  --tag-chip-text: #85520d;
  --tag-chip-hover: #fae9cc;
}

.tag-tone-compliance,
.tag-tone-framework,
.tag-tone-frameworks {
  --tag-solid-bg: #0f5f67e6;
  --tag-solid-border: #80b9bf;
  --tag-chip-bg: #e8f5f6;
  --tag-chip-border: #b7dcdf;
  --tag-chip-text: #0f5f67;
  --tag-chip-hover: #dceef0;
}

.tag-tone-culture,
.tag-tone-learning {
  --tag-solid-bg: #7b3f8ce6;
  --tag-solid-border: #c9a3d2;
  --tag-chip-bg: #f6ecf8;
  --tag-chip-border: #dfc0e6;
  --tag-chip-text: #6b2f7d;
  --tag-chip-hover: #f0e2f4;
}

.tag-tone-risk-management {
  --tag-solid-bg: #8c3f28e6;
  --tag-solid-border: #d4aa9b;
  --tag-chip-bg: #faede9;
  --tag-chip-border: #e8c5ba;
  --tag-chip-text: #7b331e;
  --tag-chip-hover: #f6e3dc;
}

.tag-tone-governance,
.tag-tone-news,
.tag-tone-business {
  --tag-solid-bg: #31485fe6;
  --tag-solid-border: #9fb2c4;
  --tag-chip-bg: #edf1f5;
  --tag-chip-border: #cad4de;
  --tag-chip-text: #31485f;
  --tag-chip-hover: #e3e9ef;
}

.tag-tone-ai,
.tag-tone-update {
  --tag-solid-bg: #11703ee6;
  --tag-solid-border: #90c4a6;
  --tag-chip-bg: #e8f6ee;
  --tag-chip-border: #b8e0c6;
  --tag-chip-text: #0f6136;
  --tag-chip-hover: #dcf0e5;
}

.tag-tone-best-practice {
  --tag-solid-bg: #5d6785e6;
  --tag-solid-border: #b6bdd0;
  --tag-chip-bg: #f1f3f9;
  --tag-chip-border: #d4d9e6;
  --tag-chip-text: #44506f;
  --tag-chip-hover: #e7ebf5;
}

.site-footer {
  background: linear-gradient(90deg, var(--footer-gradient-start, var(--bg-footer)) 0%, var(--footer-gradient-end, #1f1a25) 100%);
  color: var(--footer-text, #fff);
  padding: 2.3rem 0 2.1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.55fr 0.55fr;
  gap: 2rem;
}

.site-footer .brand {
  display: inline-block;
  margin-bottom: 0.7rem;
}

.site-footer .brand img {
  width: clamp(210px, 18vw, 290px);
}

.site-footer p,
.site-footer li,
.site-footer a {
  color: var(--footer-text, #f4f4f4);
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  text-decoration: underline;
}

.site-footer h2 {
  margin-top: 0.6rem;
  margin-bottom: 0.45rem;
  color: var(--footer-heading, var(--footer-text, #fff));
  font-size: 1.2rem;
  font-family: var(--font-display) !important;
  font-synthesis: none;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer .copyright {
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--footer-copyright, #d1ced6);
}

.standard-page {
  padding-top: clamp(2.8rem, 6vw, 4rem);
}

.standard-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
  gap: clamp(1rem, 1.8vw, 1.6rem);
  align-items: start;
}

.standard-page-grid.no-sidebar {
  grid-template-columns: minmax(0, 1fr);
}

.standard-page-main {
  min-width: 0;
  max-width: 100%;
}

.standard-page-header h1 {
  margin-bottom: 0.7rem;
  font-size: var(--standard-page-h1-size, clamp(2.2rem, 3.4vw, 3.35rem));
  line-height: 1.04;
}

.standard-page-lead {
  font-size: var(--standard-page-lead-size, clamp(1.05rem, 1.2vw, 1.22rem));
  color: #364154;
  margin: 0 0 1.25rem;
  max-width: none;
}

.standard-meta-card {
  border: 1px solid #ccd4e0;
  border-left: 3px solid #1b4d89;
  border-radius: 8px;
  background: #f8fafd;
  padding: 0.62rem 0.8rem;
  max-width: none;
  margin-bottom: 0.5rem;
}

.standard-meta-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem 1rem;
  margin: 0;
  padding: 0;
}

.standard-meta-list li {
  font-size: 0.88rem;
  color: #2d3a50;
}

.standard-meta-list strong {
  font-weight: 800;
}

.page-body {
  max-width: none;
  color: #222a37;
  line-height: 1.58;
}

.page-body h2,
.page-body h3,
.page-body h4 {
  margin-top: 1.4rem;
}

.page-body h2 {
  font-size: var(--standard-page-h2-size, clamp(1.7rem, 2.6vw, 2.45rem));
}

.page-body p,
.page-body li {
  font-size: 1.02rem;
}

.page-body ul,
.page-body ol {
  padding-left: 1.25rem;
}

.page-body .content-lozenge-list {
  padding-left: 0;
}

.page-body .content-bullet-list {
  padding-left: 1.2rem;
}

.page-body .content-fact-label {
  font-size: 0.82rem;
}

.page-body .content-fact-value {
  font-size: 1rem;
}

.standard-page-sidebar {
  position: sticky;
  top: 1rem;
  align-self: start;
  display: grid;
  gap: 0.85rem;
}

.sidebar-block {
  background: #f8f9fc;
  border: 1px solid #ced6e2;
  border-left: 3px solid #8ea6ca;
  border-radius: var(--radius);
  box-shadow: 0 4px 14px #13243a12;
  padding: 0.82rem 0.95rem 0.92rem;
}

.sidebar-block-image {
  display: block;
  width: calc(100% + 1.9rem);
  max-width: none;
  margin: -0.82rem -0.95rem 0.7rem;
  border-bottom: 1px solid #d3dce8;
  border-top-left-radius: calc(var(--radius) - 1px);
  border-top-right-radius: calc(var(--radius) - 1px);
  height: 86px;
  object-fit: cover;
}

.sidebar-block-heading {
  display: flex;
  align-items: center;
  gap: 0.38rem;
  font-size: var(--standard-page-sidebar-h2-size, 1.03rem);
  margin: 0 0 0.45rem;
}

.sidebar-block-icon {
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #153f72;
  color: #fff;
  font-size: 0.84rem;
  line-height: 1;
  flex: 0 0 auto;
}

.sidebar-block p {
  margin: 0 0 0.7rem;
  color: #33445c;
  font-size: 0.95rem;
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.36rem;
}

.sidebar-links a {
  color: #143a6b;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.94rem;
}

.sidebar-links a:hover {
  text-decoration: underline;
}

.page-cta-strip {
  border-top: 1px solid #cfd4dc;
  margin-top: auto;
}

.page-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(230px, 1fr);
  gap: clamp(1rem, 1.8vw, 1.6rem);
  align-items: start;
}

.page-cta-copy h2 {
  margin-bottom: 0.45rem;
  font-size: var(--standard-page-h2-size, clamp(1.7rem, 2.6vw, 2.45rem));
  line-height: 1.04;
}

.page-cta-copy p {
  margin: 0;
  max-width: 66ch;
  font-size: 1.02rem;
  line-height: 1.58;
  color: #2f3d54;
}

.page-cta-actions {
  display: grid;
  gap: 0.6rem;
  align-self: start;
}

.page-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  width: 100%;
  min-width: 0;
  padding: 0.8rem 1.05rem;
}

.page-cta-button-primary {
  background: #102b50;
  color: #fff;
  border: 1px solid #102b50;
}

.page-cta-button-primary:hover {
  background: #163663;
  border-color: #163663;
}

.page-cta-button-secondary {
  background: #ffffff;
  color: #123a6d;
  border: 1px solid #bfc8d6;
}

.page-cta-button-secondary:hover {
  background: #eef2f8;
}

.about-hero .hero-content {
  width: min(100%, var(--hero-content-width, 66%));
}

.about-hero-grid {}

.about-hero-content h1 {
  max-width: 18ch;
}

.about-hero-content p {
  max-width: 52ch;
}

.about-team,
.content-team-cards {
  margin-top: 2.55rem;
}

.about-team h2,
.content-team-cards h2 {
  margin-bottom: 0.75rem;
  font-size: var(--standard-page-h2-size, clamp(1.7rem, 2.6vw, 2.45rem));
}

.about-team-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem;
}

.about-team-card {
  background: #f9fafc;
  border: 1px solid #cfd7e3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 5px 16px #13243a12;
}

.about-team-image {
  width: 100%;
  height: 170px;
  object-fit: cover;
}

.about-team-body {
  padding: 0.78rem 0.9rem 0.9rem;
}

.about-team-body h3 {
  margin: 0 0 0.24rem;
  font-size: 1.13rem;
}

.about-team-role {
  margin: 0 0 0.5rem;
  color: #48566f;
  font-weight: 700;
  font-size: 0.93rem;
}

.about-team-body p {
  margin: 0 0 0.6rem;
  color: #2b3b53;
  font-size: 0.96rem;
}

.about-team-body a {
  color: #123d72;
  font-weight: 700;
  text-decoration: none;
}

.about-team-body a:hover {
  text-decoration: underline;
}

.content-block {
  margin-top: 1.4rem;
}

.content-block-heading {
  margin: 0 0 0.65rem;
  font-size: var(--standard-page-h2-size, clamp(1.7rem, 2.6vw, 2.45rem));
}

.content-block-text p {
  color: #212a39;
  line-height: 1.58;
  font-size: 1.02rem;
}

.content-fact-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

.content-fact-card {
  border: 1px solid #ced8e6;
  border-left: 3px solid #1c4d89;
  border-radius: 10px;
  background: #f8fafd;
  padding: 0.65rem 0.75rem;
}

.content-fact-label {
  margin: 0;
  color: #576883;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.content-fact-value {
  margin: 0.25rem 0 0;
  color: #17253b;
  font-size: 1rem;
  font-weight: 700;
}

.content-lozenge-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
  margin: 0;
  padding: 0;
}

.content-lozenge-list li {
  background: #f6f9ff;
  border: 1px solid #c8d6ea;
  border-radius: 999px;
  padding: 0.38rem 0.72rem;
  color: #243551;
  font-size: 0.92rem;
  font-weight: 700;
}

.content-bullet-list {
  margin: 0;
  padding-left: 1.2rem;
}

.content-bullet-list li {
  margin-bottom: 0.5rem;
}

.content-bullet-title {
  display: inline;
  font-weight: 700;
  color: #1b2f4a;
}

.content-bullet-title::after {
  content: ": ";
}

.content-bullet-text {
  color: #283a58;
}

.profile-header {
  margin-bottom: 1rem;
}

.profile-header-block {
  margin-top: 0;
}

.profile-header-top {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.profile-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid #c4cfde;
  object-fit: cover;
  object-position: center;
}

.profile-title-wrap h1 {
  margin: 0 0 0.2rem;
  font-size: var(--standard-page-h1-size, clamp(2.2rem, 3.4vw, 3.35rem));
  line-height: 1.04;
}

.profile-role {
  margin: 0;
  color: #415169;
  font-weight: 700;
}

.profile-tagline {
  margin: 0.25rem 0 0;
  color: #1c4d89;
  font-size: 0.96rem;
  font-weight: 700;
}

.profile-lead {
  margin-top: 0.95rem;
  font-size: var(--standard-page-lead-size, clamp(1.05rem, 1.2vw, 1.22rem));
  color: #364154;
  max-width: 66ch;
}

.sidebar-actions {
  display: grid;
  gap: 0.5rem;
}

.article-page {
  padding-top: clamp(2.8rem, 6vw, 4rem);
}

.breadcrumb-trail {
  margin-bottom: 1.1rem;
}

.breadcrumb-trail ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
  color: #546274;
  font-size: 0.9rem;
}

.breadcrumb-trail li {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-trail li + li::before {
  content: "/";
  margin-right: 0.4rem;
  color: #8a96a8;
}

.breadcrumb-trail a {
  color: #143a6b;
  text-decoration: none;
  font-weight: 700;
}

.breadcrumb-trail a:hover {
  text-decoration: underline;
}

.article-header {
  margin-bottom: clamp(1.5rem, 3vw, 2.2rem);
}

.article-page h1 {
  margin-bottom: 0.75rem;
  font-size: var(--standard-page-h1-size, clamp(2.2rem, 3.4vw, 3.35rem));
  line-height: 1.04;
}

.article-meta {
  margin: 0 0 0.5rem;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9rem;
}

.article-meta-card {
  margin-bottom: 0;
}
.article-layout {
  align-items: start;
}

.article-main {
  min-width: 0;
}

.article-cover-image {
  width: 100%;
  max-width: 100%;
  height: clamp(220px, 34vw, 380px);
  border: 1px solid #d0d7e2;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 1.35rem;
  object-fit: cover;
  object-position: center;
}


.article-body h2,
.article-body h3,
.article-body h4 {
  margin-top: 1.45rem;
}

.article-body h2 {
  font-size: clamp(1.55rem, 2vw, 2rem);
  line-height: 1.14;
}

.article-body h3 {
  font-size: clamp(1.22rem, 1.45vw, 1.48rem);
  line-height: 1.2;
}

.article-body h4 {
  font-size: 1.05rem;
  line-height: 1.26;
}

.article-body p,
.article-body li {
  font-size: 1.02rem;
}

.article-sidebar .article-byline {
  margin-bottom: 0;
  align-items: flex-start;
}

.article-sidebar .article-byline-date,
.article-sidebar .article-byline-meta,
.article-sidebar .article-byline-author {
  margin-bottom: 0.25rem;
}

.article-sidebar-topics .article-tag-list {
  position: static;
  left: auto;
  top: auto;
  z-index: auto;
  max-width: none;
}

.article-sidebar-topics .tag-label {
  color: var(--tag-chip-text, #153f72);
  background: var(--tag-chip-bg, #ecf2fa);
  border-color: var(--tag-chip-border, #bed0e6);
  text-shadow: none;
  backdrop-filter: none;
}

.article-sidebar-topics .tag-label:hover {
  background: var(--tag-chip-hover, #e3edf8);
}

.article-related {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid #d4dbe5;
}

.article-related-header {
  margin-bottom: 1rem;
  max-width: 60ch;
}

.article-related-header h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.article-related-header p {
  margin: 0;
  color: #415066;
}

.article-related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.service-detail-page {
  padding-top: clamp(2.8rem, 6vw, 4rem);
}

.service-detail-header {
  margin-bottom: clamp(1.4rem, 2.8vw, 2rem);
}

.service-detail-header h1 {
  margin-bottom: 0.75rem;
  font-size: var(--standard-page-h1-size, clamp(2.2rem, 3.4vw, 3.35rem));
  line-height: 1.04;
}

.service-detail-cover {
  width: 100%;
  max-width: 100%;
  border: 1px solid #d0d7e2;
  border-radius: var(--radius);
  display: block;
  margin-bottom: 1.25rem;
}

.service-related {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
  padding-top: clamp(1.6rem, 3vw, 2.2rem);
  border-top: 1px solid #d4dbe5;
}

.service-related-header {
  margin-bottom: 1rem;
  max-width: 60ch;
}

.service-related-header h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 2.1vw, 2rem);
  line-height: 1.12;
}

.service-related-header p {
  margin: 0;
  color: #415066;
}

.service-related-grid {
  gap: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .recent-layout,
  .footer-grid,
  .standard-page-grid,
  .content-fact-cards,
  .article-related-grid,
  .services-embedded .card-grid,
  .about-team-grid {
    grid-template-columns: 1fr;
  }

  .services-page-areas .content-fact-cards {
    grid-template-columns: 1fr;
  }

  .hero-fortinet .hero-content {
    width: min(72ch, 100%);
  }

  .standard-page-sidebar {
    position: static;
  }

  .sidebar-block-image {
    height: 108px;
  }

  .page-cta-inner {
    grid-template-columns: 1fr;
  }

  .services-page-models .content-fact-cards {
    grid-template-columns: 1fr;
  }

  .article-index-toolbar {
    grid-template-columns: 1fr;
  }

  .article-index-reset {
    justify-self: start;
  }

  .article-index-search-row {
    grid-template-columns: 1fr;
  }

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

  .article-index-featured-cluster {
    grid-template-columns: 1fr;
  }

  .article-index-featured-stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none;
  }

  .footer-grid {
    gap: 1rem;
  }
}

@media (max-width: 860px) {
  .header-inner {
    min-height: 84px;
    gap: 0.65rem;
    padding-block: 0.3rem;
  }

  .brand img {
    width: clamp(188px, 46vw, 265px);
  }

  .menu-toggle {
    display: inline-block;
    margin-left: auto;
  }

  .primary-nav {
    display: none;
    position: absolute;
    top: 84px;
    left: 0;
    width: 100%;
    background: #111;
    border-top: 1px solid #ffffff24;
    padding: 0.5rem 0;
    z-index: 50;
  }

  .primary-nav.is-open {
    display: block;
  }

  .primary-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.5rem 4%;
  }

  .header-inner {
    position: relative;
  }

  .hero-section .hero-content {
    width: 100%;
    max-width: none;
  }

  .testimonial-slider {
    padding: 0.5rem 0.75rem 2.2rem;
  }

  .carousel-controls {
    position: static;
    margin-top: 1rem;
  }

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

@media (max-width: 560px) {
  .article-index-featured-stack {
    grid-template-columns: 1fr;
  }

  .container {
    width: min(1120px, 94%);
  }

  .hero-grid {
    padding:
      var(--section-hero-padding, 3rem)
      var(--section-hero-inline-padding, 0.4rem)
      calc(var(--section-hero-padding, 3rem) + var(--hero-curve-height, 96px));
  }

  .hero-fortinet .hero-content {
    width: 100%;
  }

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

  .button.primary,
  .button.secondary {
    min-width: 100%;
  }

  .section-light,
  .section-white {
    padding: 2.4rem 0;
  }

  .hero-grid h1 {
    font-size: 2rem;
  }

  .hero-grid p,
  .testimonial blockquote p,
  .service-card p,
  .article-excerpt {
    font-size: 1rem;
  }

  .services h2,
  .testimonials h2,
  .recent-thoughts h2 {
    font-size: 2rem;
  }

  .persona-switch {
    justify-content: flex-start;
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .persona-prefix,
  .persona-suffix {
    width: 100%;
  }

  .article-card.featured .article-card-top {
    height: 210px;
  }

  .article-card.compact .article-card-top {
    height: 86px;
  }

  .article-card.featured .article-excerpt {
    -webkit-line-clamp: 16;
    line-clamp: 16;
  }

  .article-card.compact .article-excerpt {
    -webkit-line-clamp: 8;
    line-clamp: 8;
  }

  .brand img {
    width: clamp(172px, 58vw, 228px);
  }

  .site-footer .brand img {
    width: clamp(170px, 56vw, 235px);
  }
}

@keyframes testimonial-enter-right {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonial-enter-left {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes testimonial-exit-left {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

@keyframes testimonial-exit-right {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
