:root {
  --light-blue: #d9efff;
  --medium-blue: #67b8ff;
  --dark-blue: #153a7a;
  --deep-blue: #0b1b37;
  --white: #ffffff;
  --black: #05070c;
  --text-soft: #41506d;
  --border: rgba(21, 58, 122, 0.14);
  --shadow: 0 24px 70px rgba(17, 48, 98, 0.12);
  --layout-width: 1200px;
  --layout-padding: 40px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: "Manrope", system-ui, sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at top left, rgba(103, 184, 255, 0.28), transparent 22%),
    radial-gradient(circle at 90% 10%, rgba(217, 239, 255, 0.95), transparent 20%),
    linear-gradient(180deg, #f8fcff 0%, #eef7ff 100%);
}

body.lightbox-open {
  overflow: hidden;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  margin: 0;
  line-height: 1.75;
  font-size: 1rem;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  width: 100%;
  max-width: var(--layout-width);
  margin: 0 auto;
  padding: 24px var(--layout-padding) 40px;
}

.site-header,
.content-panel,
.feature-panel,
.info-card,
.site-footer,
.gradient-card {
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.site-header {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.brand-block {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-button {
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.brand-logo {
  width: 180px;
  max-width: 42vw;
  height: auto;
  display: block;
}

.brand-name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark-blue);
}

.brand-tag,
.footer-note {
  color: var(--text-soft);
  font-size: 0.92rem;
}

.nav-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.nav-tab,
.cta {
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.nav-tab {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: transparent;
  color: var(--deep-blue);
  font-weight: 700;
  text-decoration: none;
}

.nav-tab:hover,
.nav-tab.active {
  background: var(--dark-blue);
  color: var(--white);
}

a {
  color: var(--dark-blue);
}

main {
  margin-top: 26px;
}

.tab-panel {
  display: none;
  scroll-margin-top: 140px;
}

.tab-panel.active {
  display: block;
}

.hero-grid,
.split-panel {
  display: grid;
  gap: 24px;
  grid-template-columns: 1.15fr 0.85fr;
}

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

.split-panel {
  align-items: start;
}

.contact-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-layout > .contact-info-panel,
.contact-layout > .contact-form-panel {
  width: 100%;
  height: 100%;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
}

.about-intro,
.about-story-grid {
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.about-intro {
  grid-template-columns: 0.78fr 1.22fr;
}

.about-story-grid {
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 24px;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  padding: 22px 6px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(21, 58, 122, 0.16);
  color: var(--dark-blue);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.24em;
}

.eyebrow.dark {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.hero-copy h1 {
  font-size: clamp(2.65rem, 5vw, 4.2rem);
  line-height: 1.02;
  margin-top: 0;
}

.gradient-card h1 {
  font-size: clamp(2.8rem, 6vw, 5.3rem);
  line-height: 0.98;
  margin-top: 18px;
}

.lead,
.gradient-card p,
.section-copy {
  margin-top: 22px;
  font-size: 1.08rem;
  color: var(--text-soft);
}

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

.cta {
  padding: 14px 22px;
  font-weight: 700;
}

.cta:hover {
  transform: translateY(-1px);
}

.cta.primary {
  background: var(--dark-blue);
  color: var(--white);
}

.cta.secondary {
  background: var(--white);
  color: var(--deep-blue);
  border: 1px solid var(--border);
}

.stat-grid,
.card-grid {
  display: grid;
  gap: 18px;
}

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

.mini-card,
.info-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  border-radius: 26px;
}

.mini-card {
  padding: 22px;
}

.mini-card h3 {
  color: var(--dark-blue);
  font-size: 1.1rem;
}

.mini-card p {
  margin-top: 10px;
  color: var(--text-soft);
  font-size: 0.94rem;
}

.feature-panel,
.content-panel {
  background: rgba(255, 255, 255, 0.86);
  border-radius: 30px;
  padding: 28px;
}

.feature-highlight,
.gradient-card {
  border-radius: 28px;
  padding: 28px;
  background: linear-gradient(135deg, #67b8ff 0%, #1d58b2 55%, #0b1b37 100%);
  color: var(--white);
}

.feature-highlight h2,
.feature-highlight h3,
.feature-highlight p,
.gradient-card h1,
.gradient-card h2,
.gradient-card h3,
.gradient-card p {
  color: var(--white);
}

.feature-label {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.feature-highlight h2,
.content-panel h2 {
  margin-top: 16px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.feature-highlight p {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.86);
}

.feature-panel {
  display: flex;
  align-self: stretch;
  align-items: center;
  min-height: 100%;
  padding: 18px;
}

.hero-support-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: calc(100% - 44px);
  padding: clamp(32px, 3.5vw, 42px);
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #78c2ff 0%, #2868bf 54%, #102b59 100%);
}

.hero-support-card h2 {
  max-width: 11ch;
}

.hero-support-card > p:not(.feature-label) {
  max-width: 34ch;
  font-size: 1.1rem;
  line-height: 1.7;
}

.hero-deliverables {
  display: grid;
  gap: 13px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.hero-deliverables li {
  position: relative;
  padding-left: 27px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
}

.hero-deliverables li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--white);
  font-size: 1rem;
  font-weight: 800;
}

.feature-card {
  margin-top: 16px;
  padding: 22px;
  border-radius: 24px;
  background: rgba(217, 239, 255, 0.55);
}

.feature-card h3,
.info-card h3 {
  font-size: 1.4rem;
  color: var(--deep-blue);
}

.feature-card p,
.info-card p,
.content-panel p {
  margin-top: 10px;
  color: var(--text-soft);
}

.content-panel {
  margin-top: 24px;
}

.impact-slider {
  margin-bottom: 24px;
}

.impact-slider--hero {
  display: flex;
  flex: 1;
  flex-direction: column;
  margin-bottom: 0;
  padding: 22px;
  border: 1px solid var(--border);
}

.impact-slider--hero .impact-topbar {
  align-items: flex-start;
}

.impact-slider--hero .slider-button {
  padding: 8px 12px;
  font-size: 0.78rem;
}

.impact-slider--hero .slider-header h2 {
  margin-top: 14px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.impact-slider--hero .slider-track {
  flex: 1;
  margin-top: 14px;
}

.impact-slider--hero .impact-slide {
  height: 100%;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
}

.impact-slider--hero .impact-number {
  padding: 18px 14px;
  border-radius: 18px;
  font-size: clamp(1.45rem, 2.3vw, 2rem);
}

.impact-slider--hero .impact-copy {
  gap: 8px;
}

.impact-slider--hero .impact-copy p {
  margin-top: 0;
  font-size: 0.88rem;
  line-height: 1.55;
}

.impact-slider--hero .slider-dots {
  margin-top: 14px;
}

.impact-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.slider-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.slider-controls {
  display: flex;
  gap: 10px;
}

.slider-button,
.slider-dot {
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
}

.slider-button {
  padding: 11px 18px;
  border-radius: 999px;
  color: var(--dark-blue);
  font-weight: 700;
}

.slider-track {
  margin-top: 24px;
}

.impact-slide {
  display: none;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 24px;
  align-items: start;
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.7), rgba(255, 255, 255, 0.96));
}

.impact-slide.active {
  display: grid;
}

.impact-number {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.1;
  color: var(--black);
  align-self: center;
  text-align: center;
  padding: 32px 24px;
  border-radius: 24px;
  background: #fdfefe;
}

.impact-copy {
  display: grid;
  gap: 14px;
}

.impact-copy p {
  color: var(--text-soft);
}

.impact-copy strong {
  color: var(--deep-blue);
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  padding: 0;
  background: rgba(21, 58, 122, 0.18);
}

.slider-dot.active {
  background: var(--dark-blue);
}

.content-panel.compact,
.split-panel .content-panel {
  margin-top: 0;
}

.about-photo-panel {
  display: flex;
}

.about-photo-placeholder {
  width: 100%;
  min-height: 460px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(21, 58, 122, 0.08);
  box-shadow: var(--shadow);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.photo-label {
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.4rem;
  color: var(--deep-blue);
}

.about-photo-placeholder p {
  margin-top: 10px;
  color: var(--text-soft);
}

.about-bio-card,
.about-summary-card,
.about-pillars {
  margin-top: 0;
}

.about-bio-card h1 {
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.02;
}

.about-mission-card h2,
.about-summary-card h2,
.about-pillars h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.08;
}

.about-pillars .card-grid {
  margin-top: 28px;
}

.about-pillars {
  margin-top: 24px;
}

.about-profile-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  gap: 24px;
  align-items: stretch;
}

.about-portrait-column {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.about-portrait-frame {
  min-height: 430px;
  flex: 1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.9), transparent 20%),
    linear-gradient(145deg, rgba(217, 239, 255, 0.96), rgba(103, 184, 255, 0.18) 52%, rgba(255, 255, 255, 0.94));
}

.about-portrait-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 430px;
  padding: 12px;
  object-fit: contain;
  object-position: center center;
  background: linear-gradient(145deg, rgba(217, 239, 255, 0.72), rgba(255, 255, 255, 0.96));
}

.about-portrait-caption {
  display: grid;
  gap: 7px;
  padding: 22px 24px 24px;
  border-top: 1px solid rgba(21, 58, 122, 0.08);
}

.about-portrait-caption strong {
  color: var(--deep-blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.3rem;
}

.about-portrait-caption span {
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.5;
}

.about-profile-copy {
  margin-top: 0;
}

.about-profile-copy h1 {
  max-width: 18ch;
  margin-top: 18px;
  font-size: clamp(2.35rem, 4.2vw, 3.8rem);
  line-height: 1.08;
  text-wrap: balance;
}

.about-profile-copy p {
  max-width: 68ch;
  margin-top: 18px;
  font-size: 1rem;
  line-height: 1.75;
}

.about-credibility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.about-credibility-grid article {
  display: flex;
  min-height: 112px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(21, 58, 122, 0.11);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(217, 239, 255, 0.58), rgba(255, 255, 255, 0.94));
  color: var(--deep-blue);
  box-shadow: 0 14px 34px rgba(17, 48, 98, 0.08);
  font-weight: 800;
  line-height: 1.45;
}

.about-professional-story,
.about-approach,
.about-background {
  margin-top: 24px;
}

.about-professional-story h2,
.about-approach h2,
.about-background h2 {
  max-width: 24ch;
}

.about-professional-story h2 {
  max-width: none;
  width: 100%;
}

.about-story-copy {
  display: grid;
  max-width: none;
  width: 100%;
  gap: 16px;
  margin-top: 22px;
}

.about-story-copy p {
  margin-top: 0;
  line-height: 1.75;
  text-align: justify;
}

.about-approach-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 26px;
}

.about-approach-grid .info-card {
  height: 100%;
  padding: 24px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.46), rgba(255, 255, 255, 0.94));
}

.about-approach-grid h3 {
  font-size: 1.45rem;
}

.about-approach-grid p {
  line-height: 1.65;
}

.about-professional-approach {
  margin-top: 24px;
  padding: 26px 28px;
  background: linear-gradient(145deg, rgba(217, 239, 255, 0.58), rgba(255, 255, 255, 0.96));
  box-shadow: 0 16px 40px rgba(17, 48, 98, 0.08);
}

.about-professional-approach > h2 {
  max-width: none;
  width: 100%;
  margin-top: 16px;
  font-size: clamp(1.85rem, 3vw, 2.55rem);
  line-height: 1.16;
}

.about-professional-approach-copy {
  display: grid;
  max-width: none;
  width: 100%;
  gap: 12px;
  margin-top: 18px;
}

.about-professional-approach-copy p {
  margin-top: 0;
  color: var(--text-soft);
  line-height: 1.7;
  text-align: justify;
}

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

.about-background-grid > div {
  padding: 24px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(217, 239, 255, 0.46), rgba(255, 255, 255, 0.96));
}

.about-background-grid h3 {
  color: var(--deep-blue);
  font-size: 1.45rem;
}

.about-background-grid ul {
  display: grid;
  gap: 11px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.about-background-grid li {
  position: relative;
  padding-left: 25px;
  color: var(--text-soft);
  line-height: 1.5;
}

.about-background-grid li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--dark-blue);
  font-weight: 800;
}

.about-final-cta {
  margin-top: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 22px;
  row-gap: 4px;
  padding: 24px 26px;
}

.about-final-cta > div:first-child {
  display: contents;
}

.about-final-cta .eyebrow {
  grid-column: 1 / -1;
  justify-self: start;
}

.about-final-cta h2 {
  grid-column: 1 / -1;
  max-width: none;
  width: 100%;
  margin-top: 0;
  font-size: clamp(2rem, 3.2vw, 3.05rem);
  line-height: 1.08;
  text-wrap: wrap;
}

.about-final-cta > div:first-child > p {
  grid-column: 1;
  margin-top: 0;
  line-height: 1.6;
}

.about-final-cta .hero-actions {
  grid-column: 2;
  align-self: end;
  margin-top: 0;
}

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

.services-four-up {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  margin-top: 24px;
  align-items: stretch;
}

.services-intro {
  border: 0;
  outline: 0;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #78c2ff 0%, #2868bf 54%, #102b59 100%);
  background-clip: padding-box;
  color: var(--white);
  box-shadow: 0 24px 70px rgba(17, 48, 98, 0.18);
}

.services-intro::before,
.services-intro::after {
  content: none;
}

.services-intro .eyebrow {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.services-intro h2,
.services-intro .section-copy {
  color: var(--white);
}

.services-intro .section-copy {
  color: rgba(255, 255, 255, 0.88);
}

.home-problem-grid,
.featured-work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.step-card,
.home-problem-grid .info-card {
  height: 100%;
}

.process-step-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 24px;
}

.step-card {
  padding: 22px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.48), rgba(255, 255, 255, 0.92));
}

.step-card h3 {
  font-size: 1.18rem;
}

.final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) auto;
  gap: 34px;
  align-items: end;
  margin-top: 24px;
  border: 0;
  outline: 0;
  background-clip: padding-box;
  box-shadow: 0 24px 70px rgba(17, 48, 98, 0.12);
}

.final-cta::before,
.final-cta::after {
  content: none;
}

.services-process {
  margin-top: 24px;
}

.services-guide {
  margin-top: 24px;
}

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

.services-guide-grid a {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.48), rgba(255, 255, 255, 0.94));
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.services-guide-grid a:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 58, 122, 0.22);
  box-shadow: 0 16px 36px rgba(17, 48, 98, 0.1);
}

.services-guide-grid a:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 4px;
}

.services-guide-grid p {
  margin-top: 0;
  line-height: 1.65;
}

.services-guide-grid strong {
  color: var(--deep-blue);
}

.guide-number {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 14px;
  background: var(--dark-blue);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.services-final-cta {
  margin-top: 24px;
}

.portfolio-intro h1 {
  margin-top: 16px;
  max-width: 24ch;
  font-size: clamp(2.3rem, 4vw, 3.65rem);
  line-height: 1.12;
  text-wrap: balance;
}

.portfolio-page-grid {
  margin-top: 24px;
}

.portfolio-browse,
.portfolio-work-section,
.portfolio-proof-summary {
  margin-top: 24px;
}

.portfolio-confidentiality-note {
  margin-top: 24px;
  padding: 17px 20px;
  border: 1px solid rgba(21, 58, 122, 0.11);
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.58), rgba(255, 255, 255, 0.94));
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.6;
  box-shadow: 0 12px 30px rgba(17, 48, 98, 0.06);
}

.portfolio-browse h2 {
  margin-top: 0;
  font-size: clamp(1.75rem, 2.8vw, 2.45rem);
  line-height: 1.18;
}

.portfolio-browse-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.portfolio-browse-grid button {
  min-height: 74px;
  padding: 14px 18px;
  border: 1px solid rgba(21, 58, 122, 0.14);
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.72), rgba(255, 255, 255, 0.96));
  color: var(--deep-blue);
  cursor: pointer;
  font-weight: 800;
  line-height: 1.35;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-browse-grid button:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 58, 122, 0.24);
  box-shadow: 0 14px 30px rgba(17, 48, 98, 0.1);
}

.portfolio-browse-grid button:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 3px;
}

.portfolio-work-section {
  scroll-margin-top: 132px;
}

.portfolio-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 18px;
  margin-top: 28px;
}

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

.portfolio-proof-grid--single {
  grid-template-columns: minmax(0, 1fr);
}

.portfolio-proof-card {
  min-width: 0;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.58), rgba(255, 255, 255, 0.96));
  box-shadow: 0 18px 46px rgba(17, 48, 98, 0.09);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-proof-card:hover {
  transform: translateY(-3px);
  border-color: rgba(21, 58, 122, 0.22);
  box-shadow: 0 24px 54px rgba(17, 48, 98, 0.14);
}

.portfolio-proof-card--static:hover {
  transform: none;
  border-color: rgba(21, 58, 122, 0.12);
  box-shadow: 0 18px 46px rgba(17, 48, 98, 0.09);
}

.portfolio-proof-card > a,
.portfolio-proof-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 26px;
  color: inherit;
  text-decoration: none;
}

.portfolio-proof-card > a:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 5px;
  border-radius: 22px;
}

.proof-tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(21, 58, 122, 0.09);
  color: var(--dark-blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.2;
  text-transform: uppercase;
}

.portfolio-proof-card h3 {
  margin-top: 18px;
  color: var(--deep-blue);
  font-size: clamp(1.45rem, 2vw, 1.9rem);
  line-height: 1.22;
}

.portfolio-proof-card > a > p,
.portfolio-proof-content > p {
  margin-top: 14px;
  color: var(--text-soft);
  line-height: 1.65;
}

.portfolio-proof-content .proof-details {
  margin-bottom: 0;
}

.proof-details {
  display: grid;
  gap: 10px;
  margin-top: 18px;
  margin-bottom: 22px;
  padding: 16px;
  border: 1px solid rgba(21, 58, 122, 0.09);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
}

.proof-details p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 0.88rem;
  line-height: 1.55;
}

.proof-details strong {
  color: var(--deep-blue);
}

.proof-button {
  display: inline-flex;
  align-self: flex-start;
  margin-top: auto;
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(17, 48, 98, 0.16);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.proof-details + .proof-button {
  margin-top: auto;
}

.portfolio-proof-card:hover .proof-button {
  transform: translateY(-1px);
  background: var(--deep-blue);
  box-shadow: 0 13px 27px rgba(17, 48, 98, 0.22);
}

.portfolio-proof-card--featured > a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.7fr);
  column-gap: 30px;
}

.portfolio-proof-card--featured .proof-tag,
.portfolio-proof-card--featured h3,
.portfolio-proof-card--featured > a > p,
.portfolio-proof-card--featured .proof-button {
  grid-column: 1;
}

.portfolio-proof-card--featured .proof-details {
  grid-column: 2;
  grid-row: 1 / span 4;
  align-self: center;
}

.portfolio-artifacts {
  margin-top: 30px;
}

.portfolio-artifacts > h3 {
  color: var(--deep-blue);
  font-size: 1.45rem;
}

.artifact-helper {
  margin-top: 8px;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.artifact-tile-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}

.artifact-tile {
  position: relative;
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 14px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.84);
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.artifact-tile[href]::after {
  content: "\26F6";
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 50%;
  background: rgba(217, 239, 255, 0.9);
  color: var(--dark-blue);
  font-size: 0.9rem;
  font-weight: 800;
  box-shadow: 0 5px 12px rgba(17, 48, 98, 0.09);
}

.artifact-tile[href]:hover {
  transform: translateY(-4px);
  border-color: rgba(21, 58, 122, 0.26);
  box-shadow: 0 18px 38px rgba(17, 48, 98, 0.14);
}

.artifact-tile[href]:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 3px;
}

.artifact-tile img,
.artifact-symbol {
  width: 100%;
  height: 132px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.76), rgba(255, 255, 255, 0.96));
}

.artifact-tile img {
  object-fit: contain;
}

.artifact-symbol {
  display: grid;
  place-items: center;
  color: var(--dark-blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
}

.artifact-symbol--word {
  font-size: 1.05rem;
  letter-spacing: 0.02em;
}

.artifact-tile .proof-tag {
  margin-bottom: 10px;
}

.artifact-tile strong {
  color: var(--deep-blue);
  line-height: 1.4;
}

.artifact-tile--slide-deck {
  grid-column: span 2;
}

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

.workshop-artifact-agenda {
  grid-column: 1;
  grid-row: 1;
}

.workshop-artifact-scenarios {
  grid-column: 2;
  grid-row: 1;
}

.workshop-artifact-facilitator {
  grid-column: 1;
  grid-row: 2;
}

.workshop-artifact-grid .artifact-tile--slide-deck {
  grid-column: 2;
  grid-row: 2;
}

.portfolio-slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  margin-bottom: 14px;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.76), rgba(255, 255, 255, 0.96));
}

.portfolio-slide-grid a {
  position: relative;
  display: block;
  min-width: 0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.portfolio-slide-grid a::after {
  content: "\26F6";
  position: absolute;
  right: 5px;
  bottom: 5px;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(21, 58, 122, 0.1);
  background: rgba(217, 239, 255, 0.92);
  color: var(--dark-blue);
  font-size: 0.58rem;
  font-weight: 800;
}

.portfolio-slide-grid a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(17, 48, 98, 0.14);
}

.portfolio-slide-grid a:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.5);
  outline-offset: 2px;
}

.portfolio-slide-grid img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  margin: 0;
  border-radius: 0;
  object-fit: cover;
}

.portfolio-callout {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.62), rgba(255, 255, 255, 0.96));
}

.portfolio-callout h3 {
  margin-top: 14px;
  color: var(--deep-blue);
  font-size: 1.55rem;
}

.portfolio-callout p {
  max-width: 78ch;
  margin-top: 10px;
}

.portfolio-summary-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 26px;
}

.portfolio-summary-grid .info-card {
  height: 100%;
  padding: 22px;
  box-shadow: none;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.5), rgba(255, 255, 255, 0.94));
}

.portfolio-summary-grid h3 {
  font-size: 1.25rem;
}

.portfolio-final-cta {
  margin-top: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 22px;
  row-gap: 16px;
  padding: 26px;
}

.portfolio-final-cta > div:first-child {
  display: contents;
}

.portfolio-final-cta .eyebrow {
  grid-column: 1 / -1;
  justify-self: start;
}

.portfolio-final-cta h2 {
  grid-column: 1 / -1;
  max-width: none;
  margin-top: 0;
  font-size: clamp(2rem, 3.25vw, 3.05rem);
  line-height: 1.08;
  text-wrap: wrap;
}

.portfolio-final-cta > div:first-child > p {
  grid-column: 1;
  margin-top: 0;
}

.portfolio-final-cta .hero-actions {
  grid-column: 2;
  align-self: end;
}

.final-cta h2 {
  margin-top: 18px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
}

.final-cta .hero-actions {
  justify-content: flex-end;
  margin-top: 0;
}

.cta.light {
  background: var(--white);
  color: var(--deep-blue);
}

.cta.outline-light {
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.home-problem-grid .info-card {
  padding: 22px;
  box-shadow: none;
}

.home-problem-grid .info-card h3 {
  font-size: 1.18rem;
}

.featured-work-grid .example-card {
  display: flex;
  min-height: 370px;
  padding: 28px;
}

.featured-work-grid .example-card-link {
  display: grid;
  flex: 1;
  grid-template-rows: 34px 112px 122px auto;
  min-height: 100%;
  text-align: left;
}

.featured-work-grid .work-type {
  align-self: start;
  margin-bottom: 0;
  line-height: 1.35;
}

.featured-work-grid .example-card h3 {
  align-self: start;
  margin: 14px 0 0;
  line-height: 1.32;
}

.featured-work-grid .example-card-link > p {
  align-self: start;
  margin-top: 14px;
  margin-bottom: 34px;
  line-height: 1.7;
}

.featured-work-grid .card-cta {
  align-self: flex-start;
  justify-self: start;
  margin-top: 0;
  padding: 10px 15px;
  border: 1px solid rgba(21, 58, 122, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 20px rgba(17, 48, 98, 0.08);
  letter-spacing: 0.04em;
  text-transform: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.featured-work-grid .card-cta::after {
  content: none;
}

.featured-work-grid .example-card:hover .card-cta {
  transform: translateY(-1px);
  border-color: rgba(21, 58, 122, 0.22);
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 48, 98, 0.12);
}

.work-type {
  display: block;
  margin-bottom: 12px;
  color: var(--text-soft);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-card:has(.service-card-link):hover .card-cta::after {
  transform: translateX(4px);
}

.info-card {
  padding: 28px;
  display: flex;
  flex-direction: column;
}

.service-card-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  color: inherit;
  text-decoration: none;
}

.services-four-up .service-card-link h3 {
  min-height: 2.8em;
  font-size: clamp(1.65rem, 2.4vw, 2.15rem);
  line-height: 1.18;
}

.services-four-up .service-card-link {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: stretch;
}

.services-four-up .info-card {
  height: 100%;
  padding: 30px;
}

.services-four-up .service-summary {
  min-height: 4.6em;
  margin-top: 10px;
  font-size: 1.03rem;
  line-height: 1.65;
}

.service-details {
  display: grid;
  align-content: start;
  gap: 0;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 20px;
  background: rgba(217, 239, 255, 0.34);
}

.service-details p {
  margin-top: 0;
  padding: 14px 16px;
  font-size: 0.96rem;
  line-height: 1.55;
}

.service-details p + p {
  border-top: 1px solid rgba(21, 58, 122, 0.08);
}

.service-details strong {
  color: var(--deep-blue);
  font-weight: 800;
}

.services-four-up .service-card-link .card-cta {
  margin-top: 16px;
}

.services-four-up .service-card-link .service-cta {
  align-self: flex-start;
  width: fit-content;
  margin-top: 16px;
  padding: 12px 19px;
  border: 1px solid var(--dark-blue);
  border-radius: 999px;
  background: var(--dark-blue);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(17, 48, 98, 0.18);
  letter-spacing: 0.03em;
  text-transform: none;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.services-four-up .service-card-link .service-cta::after {
  content: none;
}

.info-card:has(.service-card-link):hover .service-cta {
  transform: translateY(-1px);
  border-color: var(--deep-blue);
  background: var(--deep-blue);
  box-shadow: 0 13px 28px rgba(17, 48, 98, 0.24);
}

.service-card-link:focus-visible .service-cta {
  outline: 3px solid rgba(103, 184, 255, 0.5);
  outline-offset: 3px;
}

.info-card:has(.service-card-link) {
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.info-card:has(.service-card-link):hover {
  transform: translateY(-3px);
  border-color: rgba(21, 58, 122, 0.24);
  box-shadow: 0 28px 80px rgba(17, 48, 98, 0.16);
}

.service-card-link:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 6px;
  border-radius: 20px;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(103, 184, 255, 0.2), rgba(21, 58, 122, 0.12));
  color: var(--dark-blue);
}

.service-icon svg {
  width: 24px;
  height: 24px;
}

.detail-page {
  padding-top: 0;
}

.detail-page .page-shell {
  width: 100%;
  max-width: var(--layout-width);
  padding: 24px var(--layout-padding) 40px;
}

.detail-page .site-header {
  margin-bottom: 26px;
  width: 100%;
}

.detail-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.detail-brand {
  display: inline-flex;
  align-items: center;
}

.detail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.detail-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 700;
}

.detail-hero,
.detail-section {
  border: 1px solid var(--border);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow);
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.detail-hero {
  display: grid;
  grid-template-columns: 1fr;
  padding: 28px;
}

.detail-hero-copy h1 {
  margin-top: 16px;
  font-size: clamp(2.4rem, 4.2vw, 3.4rem);
  line-height: 1.1;
}

.detail-hero-copy p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 1rem;
}

.detail-summary {
  margin-top: 24px;
  border-radius: 26px;
  padding: 24px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.88), rgba(255, 255, 255, 0.96));
}

.detail-summary h2 {
  font-size: clamp(1.45rem, 2.6vw, 2rem);
  color: var(--deep-blue);
}

.detail-summary ul {
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}

.detail-summary-list--two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
  row-gap: 10px;
  padding-left: 22px;
}

.detail-summary li + li {
  margin-top: 10px;
}

.detail-summary-list--two-col li + li {
  margin-top: 0;
}

.detail-section {
  margin-top: 24px;
  padding: 28px;
}

.detail-section h2 {
  font-size: clamp(1.9rem, 3vw, 2.4rem);
}

.detail-section p {
  margin-top: 14px;
  color: var(--text-soft);
  font-size: 1rem;
}

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

.example-deliverables-grid {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.example-deliverables-grid .example-primary,
.example-deliverables-grid .example-secondary {
  min-width: 0;
}

.example-card {
  border-radius: 24px;
  background: rgba(217, 239, 255, 0.34);
  padding: 22px;
}

.example-card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.example-card:has(.example-card-link) {
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.example-card:has(.example-card-link):hover {
  transform: translateY(-3px);
  background: rgba(217, 239, 255, 0.52);
  box-shadow: 0 18px 46px rgba(17, 48, 98, 0.12);
}

.example-card-link:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.45);
  outline-offset: 6px;
  border-radius: 18px;
}

.card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-cta::after {
  content: "->";
  transition: transform 0.2s ease;
}

.example-card:has(.example-card-link):hover .card-cta::after {
  transform: translateX(4px);
}

.example-card h3 {
  font-size: 1.2rem;
  color: var(--deep-blue);
}

.example-card p {
  margin-top: 10px;
  color: var(--text-soft);
}

.portfolio-sample {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.62), rgba(255, 255, 255, 0.92));
}

.portfolio-sample-copy {
  max-width: 760px;
}

.portfolio-sample h3 {
  margin-top: 10px;
  color: var(--deep-blue);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
}

.portfolio-sample-link {
  flex: 0 0 auto;
  text-align: center;
  text-decoration: none;
}

.case-hero {
  gap: 24px;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
}

.case-metrics.metric-trio {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-card,
.case-callout,
.process-card,
.results-list div {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
}

.metric-card {
  padding: 22px;
}

.metric-card span {
  display: block;
  color: var(--text-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.metric-card strong {
  display: block;
  margin-top: 10px;
  color: var(--dark-blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.25;
}

.metric-inline {
  display: block;
  margin-top: 10px;
}

.metric-inline-value {
  display: inline-block;
  margin-top: 0;
  white-space: normal;
}

.case-grid {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 24px;
  margin-top: 22px;
  align-items: start;
}

.case-callout {
  padding: 24px;
  background: linear-gradient(135deg, rgba(217, 239, 255, 0.82), rgba(255, 255, 255, 0.96));
}

.case-callout h3,
.process-card h3 {
  font-size: 1.15rem;
  color: var(--deep-blue);
}

.case-callout ul,
.detail-summary ul {
  line-height: 1.7;
}

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

.process-card {
  padding: 24px;
}

.interaction-note {
  margin-top: 18px;
  color: var(--dark-blue);
  font-size: 0.92rem;
  font-weight: 800;
}

.interactive-approach-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: var(--border);
  box-shadow: var(--shadow);
}

.approach-step {
  background: rgba(255, 255, 255, 0.92);
}

.approach-step summary {
  min-height: 156px;
  padding: 22px 18px;
  cursor: pointer;
  list-style: none;
  text-align: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.approach-step summary::-webkit-details-marker {
  display: none;
}

.approach-step summary span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(217, 239, 255, 0.8);
  color: var(--dark-blue);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.approach-step summary strong {
  display: block;
  color: var(--deep-blue);
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.2rem;
  line-height: 1.2;
}

.approach-step summary strong a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.approach-step summary::after {
  content: "Click to expand";
  display: block;
  margin-top: 16px;
  color: var(--dark-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.approach-step[open] summary {
  background: linear-gradient(135deg, rgba(103, 184, 255, 0.18), rgba(255, 255, 255, 0.96));
}

.approach-step[open] summary::after {
  content: "Click to close";
}

.approach-step ul {
  margin: 0;
  padding: 0 18px 22px 34px;
  color: var(--text-soft);
  line-height: 1.65;
}

.approach-step ul a {
  color: var(--dark-blue);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.approach-step li + li {
  margin-top: 10px;
}

.compliance-flow {
  display: flex;
  position: relative;
  align-items: stretch;
  flex-wrap: nowrap;
  justify-content: space-between;
  gap: 0;
  margin-top: 26px;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 4px 0 6px;
}

.compliance-flow-card {
  position: relative;
  flex: 1 1 0px;
  max-width: 18%;
  min-width: 0;
  padding: 24px 0 0;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.compliance-flow-step {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  min-width: 84px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2562be, #153a7a);
  color: transparent;
  font-size: 0.84rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
  box-shadow: 0 12px 22px rgba(21, 58, 122, 0.18);
}

.compliance-flow-step.theme-purple {
  background: linear-gradient(180deg, #6844d4, #5027b2);
}

.compliance-flow-step.theme-teal {
  background: linear-gradient(180deg, #20a6c1, #1588a2);
}

.compliance-flow-icon {
  width: 74px;
  height: 74px;
  margin: 10px auto 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 1;
  position: relative;
  color: transparent;
}

.compliance-flow-icon::before {
  font-size: 1.95rem;
  font-weight: 800;
}

.compliance-flow-icon.theme-blue {
  background: radial-gradient(circle at center, rgba(221, 238, 255, 0.95), rgba(240, 246, 255, 0.76));
  color: #1f5bbc;
}

.compliance-flow-icon.theme-purple {
  background: radial-gradient(circle at center, rgba(239, 231, 255, 0.96), rgba(247, 242, 255, 0.76));
  color: #5d35cc;
}

.compliance-flow-icon.theme-teal {
  background: radial-gradient(circle at center, rgba(223, 248, 249, 0.96), rgba(241, 252, 252, 0.76));
  color: #1b93ac;
}

.compliance-flow-card:nth-child(1) .compliance-flow-icon::before {
  content: "\25B7";
}

.compliance-flow-card:nth-child(3) .compliance-flow-icon::before {
  content: "\25C7";
}

.compliance-flow-card:nth-child(5) .compliance-flow-icon::before {
  content: "!";
}

.compliance-flow-card:nth-child(7) .compliance-flow-icon::before {
  content: "\2713";
}

.compliance-flow-card:nth-child(9) .compliance-flow-icon::before {
  content: "\2699";
}

.compliance-flow-arrow {
  position: absolute;
  top: 172px;
  z-index: 2;
  flex: 0 0 20px;
  min-width: 20px;
  max-width: 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  transform: translate(-50%, -50%);
}

.compliance-flow > .compliance-flow-arrow:nth-child(2) {
  left: 19.25%;
}

.compliance-flow > .compliance-flow-arrow:nth-child(4) {
  left: 39.75%;
}

.compliance-flow > .compliance-flow-arrow:nth-child(6) {
  left: 60.25%;
}

.compliance-flow > .compliance-flow-arrow:nth-child(8) {
  left: 80.75%;
}

.compliance-flow-arrow {
  width: 20px;
  height: 20px;
  align-self: center;
  border-radius: 999px;
  background: linear-gradient(180deg, #2562be, #153a7a);
  box-shadow: 0 16px 28px rgba(21, 58, 122, 0.16);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  position: relative;
  color: transparent;
}

.compliance-flow-arrow::before {
  content: "\2192";
  color: #fff;
  font-size: 0.82rem;
  font-weight: 800;
}

.compliance-flow-number {
  text-align: center;
  color: #205cc0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.compliance-flow-number.theme-purple-text {
  color: #5d35cc;
}

.compliance-flow-number.theme-teal-text {
  color: #1b93ac;
}

.compliance-flow-card h3 {
  max-width: none;
  margin: 10px auto 0;
  padding: 0 12px;
  text-align: center;
  color: var(--deep-blue);
  font-size: 0.88rem;
  line-height: 1.2;
}

.compliance-flow-card > p {
  max-width: none;
  margin: 10px auto 0;
  padding: 0 10px;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.48;
}

.compliance-flow-card ul {
  margin: 14px 0 0;
  padding: 14px 10px 16px 22px;
  border-top: 1px solid rgba(21, 58, 122, 0.08);
  color: var(--text-soft);
  font-size: 0.8rem;
  line-height: 1.48;
}

.compliance-flow-card li + li {
  margin-top: 8px;
}

.compliance-foundation {
  display: grid;
  grid-template-columns: auto minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 22px;
  align-items: center;
  margin-top: 26px;
  padding: 18px 22px;
  border: 1px solid rgba(21, 58, 122, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(241, 247, 255, 0.96), rgba(255, 255, 255, 0.98));
  box-shadow: var(--shadow);
}

.compliance-foundation-icon {
  width: 64px;
  height: 64px;
  border-radius: 999px;
  background: linear-gradient(180deg, #2562be, #153a7a);
  display: flex;
  align-items: center;
  justify-content: center;
  color: transparent;
  font-size: 0;
  box-shadow: 0 16px 28px rgba(21, 58, 122, 0.18);
  position: relative;
}

.compliance-foundation-icon::before {
  content: "\26E8";
  font-size: 1.9rem;
}

.compliance-foundation strong {
  color: var(--deep-blue);
  font-size: 1.4rem;
  line-height: 1.2;
}

.compliance-foundation p {
  margin-top: 0;
  color: var(--text-soft);
  font-size: 1.02rem;
  line-height: 1.6;
}

.compliance-foundation p span {
  color: #1b4fa6;
  font-weight: 800;
}

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

.results-list.three-column-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.case-image-frame {
  display: flex;
  flex-direction: column;
  margin: 24px 0 0;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.case-image-frame > a:not(.pdf-preview-frame) {
  display: grid;
  place-items: center;
  height: 270px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.case-image-frame > a:not(.pdf-preview-frame):hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(21, 58, 122, 0.12);
}

.case-image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid rgba(21, 58, 122, 0.08);
  background: var(--white);
}

.case-image-frame > a:not(.pdf-preview-frame) img {
  max-height: 242px;
  object-fit: contain;
  border-radius: 12px;
}

.case-image-frame figcaption {
  margin-top: auto;
  padding-top: 12px;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.5;
}

.case-image-frame figcaption strong {
  display: inline-block;
  margin-bottom: 2px;
  color: var(--deep-blue);
}

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

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

.deliverable-gallery--three .case-image-frame {
  display: flex;
  flex-direction: column;
}

.deliverable-gallery--three .case-image-frame > a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 280px;
}

.deliverable-gallery--three .case-image-frame img {
  max-height: 244px;
  object-fit: contain;
}

.process-application-grid {
  margin-top: 24px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-application-feature {
  grid-column: 1 / -1;
}

.optional-example-box {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(21, 58, 122, 0.14);
  border-radius: 24px;
  background: rgba(217, 239, 255, 0.55);
}

.optional-example-box h3 {
  color: var(--deep-blue);
  font-size: 1.35rem;
}

.detail-section > .example-deliverable-block:first-of-type {
  margin-top: 28px;
}

.example-deliverable-block + .example-deliverable-block {
  margin-top: 34px;
}

.example-deliverable-header h3 {
  color: var(--deep-blue);
  font-size: 1.35rem;
}

.example-deliverable-header p {
  max-width: none;
  margin-top: 10px;
}

.case-image-placeholder {
  display: grid;
  place-items: center;
  min-height: 270px;
  border-radius: 18px;
  border: 1px dashed rgba(21, 58, 122, 0.22);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.94), rgba(255, 255, 255, 0.98));
}

.case-image-placeholder-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(217, 239, 255, 0.9);
  color: var(--dark-blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.pdf-preview-frame {
  position: relative;
  display: grid;
  place-items: center;
  height: 270px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pdf-preview-frame:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(21, 58, 122, 0.12);
}

.pdf-preview-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 70, 145, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pdf-preview-frame img {
  display: block;
  width: 100%;
  max-height: 242px;
  object-fit: contain;
  object-position: top center;
  border-radius: 12px;
  border: 1px solid rgba(21, 58, 122, 0.08);
  background: var(--white);
}

.slide-preview-frame {
  position: relative;
  height: 270px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.96), rgba(255, 255, 255, 0.98));
  overflow: hidden;
}

.slide-preview-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(19, 70, 145, 0.9);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slide-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-content: center;
  gap: 8px;
  height: 100%;
  padding-top: 28px;
}

.slide-preview-grid a {
  display: block;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.slide-preview-grid a:hover {
  transform: translateY(-2px);
}

.slide-preview-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  border-radius: 12px;
  border: 1px solid rgba(21, 58, 122, 0.08);
  background: var(--white);
  user-select: none;
  -webkit-user-drag: none;
}

.slide-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 34px 76px;
  background: rgba(7, 22, 46, 0.86);
}

.slide-lightbox.is-open {
  display: flex;
}

.slide-lightbox-content {
  width: min(1120px, 100%);
  margin: 0;
}

.slide-lightbox-content img {
  display: block;
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
}

.slide-lightbox-content figcaption {
  margin-top: 14px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  text-align: center;
}

.slide-lightbox-close,
.slide-lightbox-nav {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.94);
  color: var(--deep-blue);
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.slide-lightbox-close {
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
}

.slide-lightbox-nav {
  top: 50%;
  width: 48px;
  height: 64px;
  border-radius: 18px;
  font-size: 2.3rem;
  transform: translateY(-50%);
}

.slide-lightbox-nav--prev {
  left: 22px;
}

.slide-lightbox-nav--next {
  right: 22px;
}

.slide-lightbox-close:hover,
.slide-lightbox-nav:hover {
  background: var(--white);
}

.deliverable-gallery .case-image-frame {
  margin-top: 0;
}

.deliverable-gallery .case-image-frame img {
  width: 50%;
  margin: 0 auto;
}

.artifact-card {
  display: grid;
  grid-template-columns: 0.62fr 1.38fr;
  gap: 20px;
  margin-top: 24px;
  align-items: start;
}

.artifact-card-copy {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: linear-gradient(180deg, rgba(217, 239, 255, 0.6), rgba(255, 255, 255, 0.96));
  box-shadow: var(--shadow);
}

.artifact-card-copy h3 {
  font-size: 1.25rem;
  color: var(--deep-blue);
}

.artifact-card-copy p {
  margin-top: 12px;
}

.artifact-link {
  display: inline-flex;
  margin-top: 18px;
  text-decoration: none;
}

.artifact-preview-shell {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}

.artifact-preview {
  display: block;
  width: 100%;
  min-height: 660px;
  border: 0;
  border-radius: 18px;
  background: #f8fcff;
}

.results-list div {
  padding: 22px;
}

.results-list > div > strong {
  color: var(--deep-blue);
  font-size: 1.08rem;
  display: block;
}

.results-list.three-column-list > div > strong {
  min-height: 2.9em;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin-top: 26px;
}

.contact-list div {
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
}

.contact-list span {
  display: block;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.66);
}

.contact-list strong {
  display: block;
  margin-top: 6px;
  font-size: 0.96rem;
}

.contact-list a {
  color: var(--white);
  text-underline-offset: 4px;
}

.contact-info-panel {
  border: 0;
  outline: 0;
  background-clip: padding-box;
}

.contact-info-panel::before,
.contact-info-panel::after {
  content: none;
}

.contact-info-panel h1 {
  max-width: 12ch;
  font-size: clamp(2.35rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.contact-intro {
  max-width: 49ch;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-next-step {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-next-step h2 {
  color: var(--white);
  font-size: 1.35rem;
}

.contact-next-step p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  line-height: 1.65;
}

.contact-form-panel > h2 {
  margin-top: 16px;
}

.contact-form {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.contact-form label {
  font-weight: 700;
  color: var(--deep-blue);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  color: var(--black);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(103, 184, 255, 0.36);
  outline-offset: 2px;
  border-color: rgba(21, 58, 122, 0.28);
}

.contact-form [aria-invalid="true"] {
  border-color: #b33a45;
}

.contact-form textarea {
  resize: vertical;
  min-height: 140px;
}

.field-error {
  min-height: 1em;
  color: #9d2632;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-submit {
  width: 100%;
  margin-top: 2px;
  padding-block: 14px;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.contact-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  background: var(--deep-blue);
  box-shadow: 0 12px 26px rgba(17, 48, 98, 0.2);
}

.contact-submit:focus-visible {
  outline: 3px solid rgba(103, 184, 255, 0.5);
  outline-offset: 3px;
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.contact-privacy {
  margin-top: -4px;
  color: var(--text-soft);
  font-size: 0.78rem;
  line-height: 1.5;
  text-align: center;
}

.contact-status {
  display: none;
  padding: 14px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.55;
}

.contact-status.is-success,
.contact-status.is-error {
  display: block;
}

.contact-status.is-success {
  border: 1px solid rgba(36, 111, 91, 0.2);
  background: rgba(222, 244, 236, 0.78);
  color: #185b49;
}

.contact-status.is-error {
  border: 1px solid rgba(157, 38, 50, 0.18);
  background: rgba(255, 236, 239, 0.82);
  color: #85212b;
}

.contact-status a {
  color: inherit;
  font-weight: 800;
}

.coaching-framework {
  margin-top: 24px;
  padding: 28px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 20px 48px rgba(24, 46, 78, 0.08);
}

.coaching-framework-header {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.coaching-framework-label,
.coaching-framework-step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(217, 239, 255, 0.88);
  color: var(--dark-blue);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.coaching-framework-header h3 {
  margin-top: 12px;
  color: var(--deep-blue);
  font-size: 1.45rem;
  line-height: 1.2;
}

.coaching-framework-header p {
  max-width: 62ch;
}

.coaching-framework-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding-top: 18px;
  border-top: 1px solid rgba(21, 58, 122, 0.1);
}

.coaching-framework-pillars div,
.coaching-framework-footer div {
  padding: 16px 18px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 20px;
  background: rgba(246, 250, 255, 0.82);
}

.coaching-framework-pillars strong,
.coaching-framework-footer strong {
  color: var(--deep-blue);
  font-size: 1rem;
}

.coaching-framework-pillars p,
.coaching-framework-footer p {
  margin-top: 8px;
}

.coaching-framework-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.coaching-framework-card {
  display: grid;
  grid-template-columns: minmax(170px, 220px) minmax(0, 1fr);
  column-gap: 24px;
  row-gap: 8px;
  align-items: start;
  padding: 22px 22px 22px 20px;
  border: 1px solid rgba(21, 58, 122, 0.1);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.coaching-framework-card h4 {
  grid-column: 1;
  margin-top: 8px;
  margin-bottom: 0;
  color: var(--deep-blue);
  font-size: 1.12rem;
  line-height: 1.25;
}

.coaching-framework-card ul {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 20px;
  color: var(--text-soft);
  line-height: 1.6;
}

.coaching-framework-card li + li {
  margin-top: 10px;
}

.coaching-framework-step {
  grid-column: 1;
  justify-self: start;
}

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

.retention-artifact-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 24px;
  align-items: stretch;
}

.retention-artifact-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.retention-artifact-card > a,
.retention-artifact-linkcard {
  text-decoration: none;
}

.retention-artifact-card figcaption {
  margin-top: 0;
  margin-bottom: 16px;
}

.retention-artifact-card img,
.retention-artifact-preview {
  width: 100%;
  min-height: 250px;
  border-radius: 18px;
}

.retention-artifact-card img {
  display: block;
  object-fit: contain;
  background: var(--white);
}

.retention-artifact-preview {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(21, 58, 122, 0.08);
  background: linear-gradient(180deg, rgba(244, 249, 255, 0.92), rgba(255, 255, 255, 0.98));
}

.retention-artifact-preview h3 {
  color: var(--deep-blue);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.4;
}

.retention-artifact-preview p {
  color: var(--text-soft);
  margin-top: 0;
}

.retention-artifact-mini-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.retention-artifact-mini-list span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(19, 70, 145, 0.08);
  color: var(--dark-blue);
  font-size: 0.82rem;
  font-weight: 700;
}

.retention-artifact-card figcaption strong {
  color: var(--deep-blue);
}

.retention-artifact-card figcaption,
.retention-artifact-preview p {
  font-size: 0.96rem;
  line-height: 1.6;
}

.retention-artifact-detail-panel {
  display: none;
  margin-top: 24px;
  padding: 24px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.retention-artifact-detail-panel:target {
  display: block;
}

.retention-artifact-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.retention-artifact-detail-head h3 {
  margin-top: 10px;
  color: var(--deep-blue);
  font-size: 1.5rem;
}

.retention-artifact-detail-head p {
  max-width: 62ch;
  margin-top: 10px;
}

.retention-artifact-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(21, 58, 122, 0.12);
  background: rgba(244, 249, 255, 0.92);
  color: var(--dark-blue);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.site-footer {
  width: 100vw;
  margin: 28px 0 0 calc(50% - 50vw);
  padding: 34px var(--layout-padding);
  border-radius: 0;
  background: var(--deep-blue);
  text-align: center;
}

.footer-inner {
  width: 100%;
  max-width: var(--layout-width);
  margin: 0 auto;
}

.site-footer .brand-name,
.site-footer p {
  color: var(--white);
}

.footer-logo {
  width: min(320px, 90%);
  height: auto;
  display: block;
  margin: 0 auto 16px;
}

.site-footer .footer-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.62);
}

@media (max-width: 960px) {
  .hero-grid,
  .split-panel,
  .about-profile-hero,
  .about-intro,
  .about-story-grid,
  .detail-hero,
  .example-grid,
  .case-metrics,
  .case-grid,
  .process-grid,
  .interactive-approach-grid,
  .compliance-flow,
  .deliverable-gallery,
  .deliverable-gallery--three,
  .retention-artifact-row,
  .process-application-grid,
  .artifact-card,
  .results-list,
  .three-up,
  .services-four-up,
  .services-guide-grid,
  .home-problem-grid,
  .featured-work-grid,
  .portfolio-proof-grid,
  .portfolio-proof-grid--three,
  .portfolio-summary-grid,
  .about-credibility-grid,
  .about-approach-grid,
  .about-background-grid,
  .process-step-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .portfolio-browse-grid,
  .artifact-tile-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .portfolio-proof-card--featured > a {
    display: flex;
    flex-direction: column;
  }

  .portfolio-proof-card--featured .proof-details {
    margin-top: 18px;
  }

  .about-portrait-frame {
    min-height: 380px;
  }

  .about-portrait-frame img {
    min-height: 380px;
  }

  .about-profile-copy h1 {
    max-width: 22ch;
  }

  .final-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .final-cta .hero-actions {
    justify-content: flex-start;
  }

  .portfolio-final-cta .eyebrow,
  .portfolio-final-cta h2,
  .portfolio-final-cta > div:first-child > p,
  .portfolio-final-cta .hero-actions,
  .about-final-cta .eyebrow,
  .about-final-cta h2,
  .about-final-cta > div:first-child > p,
  .about-final-cta .hero-actions {
    grid-column: 1;
  }

  .feature-panel,
  .hero-support-card {
    min-height: 0;
  }

  .featured-work-grid .example-card {
    min-height: 0;
  }

  .featured-work-grid .example-card-link {
    grid-template-rows: auto;
  }

  .featured-work-grid .example-card h3 {
    margin-top: 14px;
  }

  .featured-work-grid .example-card-link > p {
    margin-bottom: 28px;
  }

  .impact-topbar,
  .slider-header,
  .impact-slide {
    grid-template-columns: 1fr;
  }

  .impact-slider--hero .impact-slide {
    grid-template-columns: 1fr;
  }

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

  .services-four-up .service-card-link h3 {
    min-height: 0;
  }

  .services-four-up .service-summary {
    min-height: 0;
  }

  .coaching-framework-pillars,
  .coaching-framework-footer {
    grid-template-columns: 1fr;
  }

  .coaching-framework-card {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .coaching-framework-step,
  .coaching-framework-card h4,
  .coaching-framework-card ul {
    grid-column: 1;
    grid-row: auto;
  }

  .slide-lightbox {
    padding: 72px 18px 34px;
  }

  .slide-lightbox-nav {
    top: auto;
    bottom: 18px;
    width: 44px;
    height: 50px;
    transform: none;
  }

  .slide-lightbox-nav--prev {
    left: calc(50% - 54px);
  }

  .slide-lightbox-nav--next {
    right: calc(50% - 54px);
  }

  .retention-artifact-detail-head {
    flex-direction: column;
  }

  .site-header {
    position: static;
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logo {
    width: 150px;
    max-width: 60vw;
  }

  .approach-step summary {
    min-height: auto;
  }

  .compliance-flow {
    flex-direction: column;
    overflow-x: visible;
  }

  .compliance-flow-card,
  .compliance-flow-arrow {
    flex: none;
  }

  .compliance-flow-card {
    min-width: 0;
    max-width: none;
    width: 100%;
  }

  .compliance-flow-arrow {
    position: static;
    width: 34px;
    height: 34px;
    min-width: 34px;
    max-width: 34px;
    transform: none;
    margin: 2px auto;
  }

  .compliance-flow-arrow::before {
    content: "\2193";
  }

  .compliance-foundation {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --layout-padding: 20px;
  }

  .page-shell {
    padding-top: 12px;
    padding-bottom: 32px;
  }

  .site-header,
  .feature-panel,
  .content-panel,
  .gradient-card,
  .info-card,
  .mini-card {
    border-radius: 22px;
  }

  .about-portrait-column {
    border-radius: 22px;
  }

  .about-portrait-frame {
    min-height: 330px;
  }

  .about-portrait-frame img {
    min-height: 330px;
  }

  .about-profile-copy,
  .about-professional-story,
  .about-approach,
  .about-background,
  .about-professional-approach {
    padding: 24px;
  }

  .about-credibility-grid article {
    min-height: 0;
  }

  .feature-panel {
    min-height: 0;
    padding: 12px;
  }

  .hero-support-card {
    min-height: 0;
    padding: 30px 24px;
  }

  .nav-tabs {
    width: 100%;
  }

  .portfolio-browse-grid,
  .artifact-tile-grid {
    grid-template-columns: 1fr;
  }

  .artifact-tile--slide-deck {
    grid-column: auto;
  }

  .workshop-artifact-agenda,
  .workshop-artifact-scenarios,
  .workshop-artifact-facilitator,
  .workshop-artifact-grid .artifact-tile--slide-deck {
    grid-column: auto;
    grid-row: auto;
  }

  .portfolio-proof-card > a,
  .portfolio-proof-content,
  .portfolio-work-section,
  .portfolio-browse,
  .portfolio-proof-summary {
    padding: 22px;
  }

  .artifact-tile {
    padding: 12px;
  }

  .impact-topbar,
  .slider-header,
  .detail-nav {
    display: grid;
    align-items: flex-start;
  }

  .nav-tab {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }
}
