@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;900&family=Geist+Mono&display=swap');

:root {
  --color-brand-blue: #004b87;
  --color-brand-yellow: #f6be00;
  --color-yellow-dark: #d9a200;
  --color-navy: #1b3a6b;
  --color-navy-mid: #2a4f8a;
  --color-navy-dark: #122852;
  --color-navy-deeper: #080f1e;
  --color-navy-light: #e8edf7;
  --color-off-white: #f5f6f8;
  --color-text-primary: #111827;
  --color-text-title: #1f2937;
  --color-text-heading: #0d0e17;
  --color-text-secondary: #4b5563;
  --color-text-muted: #9ca3af;
  --color-border: #e5e7eb;
  --color-gray-200: #e5e7eb;
  --color-gray-300: #d1d5db;
  --color-blue-100: #dbeafe;
  --color-bg-gray: #f3f4f6;
  --color-bg-light: #f3f3f3;

  --font-heading: 'Lab Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Lab Grotesque', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'Geist Mono', 'SF Mono', 'Consolas', monospace;

  --margin: 144px;
  --content-width: 1152px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-y: scroll;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-primary);
  background-color: var(--color-bg-light);
  line-height: 1.5;
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

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

/* ========================================
   ANNOUNCEMENT BAR
   ======================================== */
.announcement-bar {
  background-color: var(--color-brand-blue);
  border-bottom: 1px solid rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px var(--margin);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  width: 100%;
}

.announcement-bar__logo {
  height: 1.6em;
  width: auto;
  flex-shrink: 0;
  display: block;
  margin-right: 8px;
}

.announcement-bar__text {
  color: white;
}

.announcement-bar__link {
  color: var(--color-brand-yellow);
  cursor: pointer;
}

.announcement-bar__link:hover {
  text-decoration: underline;
}

/* Landing page: shorter bar, one horizontal line (scroll if needed on small viewports) */
body.page-home .announcement-bar {
  padding: 8px var(--margin);
  line-height: 1.25;
  flex-wrap: nowrap;
}

body.page-home .announcement-bar__link {
  font-weight: 500;
  text-decoration: none;
}

body.page-home .announcement-bar__text,
body.page-home .announcement-bar__link {
  white-space: nowrap;
  flex-shrink: 0;
}

/* ========================================
   HEADER / NAV
   ======================================== */
.header {
  background-color: white;
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 40px var(--margin);
  height: 112px;
  width: 100%;
}

.header__logo-col {
  flex: 1;
}

.header__logo {
  height: 44px;
  width: auto;
  max-width: 175px;
  object-fit: contain;
}

.header .btn--primary,
.hero__cta .btn--primary {
  padding: 7px 14px;
  font-size: 15px;
  line-height: 1.2;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.header__links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.header__link {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-primary);
  cursor: pointer;
}

.header__link:hover {
  color: var(--color-brand-blue);
}

.header__cta {
  flex-shrink: 0;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.btn--primary {
  background-color: var(--color-brand-yellow);
  color: black;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 16px;
  line-height: 1.6;
}

.btn--primary-lg {
  background-color: var(--color-brand-yellow);
  color: black;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1.5;
}

.btn--primary-xl {
  background-color: var(--color-brand-yellow);
  color: black;
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 18px;
  line-height: 1.5;
}

.btn--primary,
.btn--primary-lg,
.btn--primary-xl {
  transition:
    background-color 0.2s ease,
    transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--primary .btn__icon,
.btn--primary-lg .btn__icon,
.btn--primary-xl .btn__icon {
  transition: transform 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Primary CTA hover / active — ERMA Marketing DS (Figma: primary hover = #d9a200) */
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover:not(:disabled):not([aria-disabled="true"]),
  .btn--primary-lg:hover:not(:disabled):not([aria-disabled="true"]),
  .btn--primary-xl:hover:not(:disabled):not([aria-disabled="true"]) {
    background-color: var(--color-yellow-dark);
  }

  .btn--primary:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-lg:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-xl:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon {
    transform: translateX(3px);
  }

  .btn--primary:active:not(:disabled):not([aria-disabled="true"]),
  .btn--primary-lg:active:not(:disabled):not([aria-disabled="true"]),
  .btn--primary-xl:active:not(:disabled):not([aria-disabled="true"]) {
    background-color: color-mix(in srgb, var(--color-yellow-dark) 82%, #000000);
  }

  .btn--primary:active:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-lg:active:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-xl:active:not(:disabled):not([aria-disabled="true"]) .btn__icon {
    transform: translateX(1px);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .btn--primary:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-lg:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-xl:hover:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary:active:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-lg:active:not(:disabled):not([aria-disabled="true"]) .btn__icon,
  .btn--primary-xl:active:not(:disabled):not([aria-disabled="true"]) .btn__icon {
    transform: none;
  }
}

.btn--text {
  background: none;
  color: var(--color-brand-blue);
  padding: 0;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.btn--text .btn__icon {
  color: inherit;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.btn--text:hover {
  color: var(--color-navy-mid);
}

@media (hover: hover) and (pointer: fine) {
  .btn--text:hover .btn__icon {
    transform: translateX(2px);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .btn--text:hover .btn__icon {
    transform: none;
  }
}

.btn__icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn__icon svg {
  width: 16px;
  height: 16px;
}

.btn--circle {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  border: none;
  cursor: pointer;
}

.btn--circle-light {
  background-color: var(--color-gray-200);
}

.btn--circle-dark {
  background-color: var(--color-gray-300);
}

.btn--circle svg {
  width: 24px;
  height: 24px;
}

.btn--circle:disabled,
.btn--circle[aria-disabled="true"] {
  background-color: var(--color-gray-200);
  cursor: not-allowed;
  opacity: 1;
}

.btn--circle:disabled svg path,
.btn--circle[aria-disabled="true"] svg path {
  stroke: #9ca3af;
}

.btn--circle:not(:disabled):not([aria-disabled="true"]) {
  transition:
    transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .btn--circle-light:hover:not(:disabled):not([aria-disabled="true"]) {
    background-color: #d8dce2;
    transform: scale(1.04);
  }

  .btn--circle-dark:hover:not(:disabled):not([aria-disabled="true"]) {
    background-color: #b8bcc4;
    transform: scale(1.04);
  }

  .btn--circle-light:active:not(:disabled):not([aria-disabled="true"]),
  .btn--circle-dark:active:not(:disabled):not([aria-disabled="true"]) {
    transform: scale(0.98);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .btn--circle-light:hover:not(:disabled):not([aria-disabled="true"]),
  .btn--circle-dark:hover:not(:disabled):not([aria-disabled="true"]),
  .btn--circle-light:active:not(:disabled):not([aria-disabled="true"]),
  .btn--circle-dark:active:not(:disabled):not([aria-disabled="true"]) {
    transform: none;
  }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  background-color: white;
  padding: 96px var(--margin) 80px;
  overflow: hidden;
}

.hero__container {
  max-width: var(--content-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1.68px;
  color: var(--color-text-heading);
  text-align: center;
  width: 100%;
}

.hero__title span {
  color: var(--color-brand-blue);
}

.hero__subtitle {
  max-width: 806px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
  text-align: center;
}

@keyframes hero-text-in {
  from {
    opacity: 0;
    transform: translate3d(0, 10px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .hero__title {
    opacity: 0;
    animation: hero-text-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) 0.06s forwards;
  }

  .hero__subtitle {
    opacity: 0;
    animation: hero-text-in 0.5s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
  }
}

.hero__cta {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

.hero__product-shot {
  width: 954px;
  background-color: #f3f4f6;
  border: 0.829px solid var(--color-border);
  border-radius: 6.628px;
  box-shadow: 0px 3.314px 9.943px 0px rgba(0, 0, 0, 0.15);
  padding: 6.628px;
  overflow: hidden;
}

.hero__product-shot-inner {
  width: 100%;
  aspect-ratio: 1925.35 / 1080;
  background: linear-gradient(135deg, #e8edf7 0%, #f3f4f6 50%, #dbeafe 100%);
  border-radius: 3.314px;
  overflow: hidden;
}

.hero__product-shot-inner img,
.hero__product-shot-inner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========================================
   VALUE PROPOSITION SECTION
   ======================================== */
.value-prop {
  background-color: white;
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.value-prop__header {
  text-align: center;
  max-width: 806px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0 48px;
}

.value-prop__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-text-heading);
}

.value-prop__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.value-prop__content {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 48px;
  width: 100%;
}

.value-prop__diagram {
  width: 460px;
  height: 460px;
  flex-shrink: 0;
  position: relative;
}

.diagram {
  position: relative;
  width: 100%;
  height: 100%;
}

.diagram__arcs {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.diagram__gradients {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 81%;
  height: 86%;
  pointer-events: none;
}

.diagram__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  height: 45%;
  background: white;
  border-radius: 50%;
  border: 0.69px solid var(--color-gray-300);
  box-shadow: 8px 25px 7px 0 rgba(2,45,74,0), 5px 16px 7px 0 rgba(2,45,74,0.01), 3px 9px 6px 0 rgba(2,45,74,0.05), 1px 4px 4px 0 rgba(2,45,74,0.09), 0 1px 2px 0 rgba(2,45,74,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px;
  z-index: 2;
}

.diagram__logo {
  width: 60%;
  height: auto;
  object-fit: contain;
}

.diagram__center-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 10px;
  color: var(--color-text-title);
  text-align: center;
  letter-spacing: 0.1px;
  line-height: 1.3;
}

.diagram__label {
  position: absolute;
  text-align: center;
  z-index: 1;
}

.diagram__label-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  line-height: normal;
  letter-spacing: 0.09px;
}

.diagram__label-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 9px;
  line-height: 1.3;
  letter-spacing: 0.09px;
}

.diagram__label--top {
  top: 8%;
  left: 38%;
  transform: translateX(-50%);
  color: black;
}

.diagram__label--left {
  bottom: 22%;
  left: 10%;
  color: white;
}

.diagram__label--right {
  bottom: 26%;
  right: 10%;
  color: white;
}

.value-prop__carousel {
  flex: 1;
  min-height: 490px;
  overflow: hidden;
  position: relative;
}

.value-prop__carousel-inner {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
  padding: 64px 32px 0;
}

.value-prop__slides {
  flex: 1;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  width: 100%;
}

.value-prop__slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: stretch;
  transform: translateX(0);
  transition: transform 0.45s ease;
  will-change: transform;
}

.value-prop__slide {
  flex-shrink: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 14px;
  overflow: hidden;
}

.value-prop__slide-top {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 124px;
  max-height: 124px;
  overflow: hidden;
  gap: 8px;
}

.value-prop__slide-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0;
  min-height: 0;
}

.value-prop__slide-icon img {
  height: 24px;
  width: auto;
  display: block;
}

.value-prop__slide-heading {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.12px;
  color: var(--color-brand-blue);
  flex: 1 1 auto;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.value-prop__slide-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  flex-shrink: 0;
  height: 216px;
  max-height: 216px;
  margin: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
}

.value-prop__slide-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: var(--color-blue-100);
  padding: 10px 12px;
  border-radius: 8px;
  width: fit-content;
}

.value-prop__slide-stat-num {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.16px;
  color: var(--color-brand-blue);
}

.value-prop__slide-stat-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.2;
  color: var(--color-brand-blue);
}

.value-prop__nav {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  padding-top: 32px;
}

/* ========================================
   FEATURES SECTION
   ======================================== */
.features {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
}

.feature-card {
  background-color: white;
  border-radius: 24px;
  border-bottom: 0.889px solid #ebebeb;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 48px;
  padding-bottom: 49px;
  overflow: hidden;
  width: 100%;
}

.feature-card--reverse {
  flex-direction: row-reverse;
}

.feature-card__text {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.feature-card__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-card__tagline {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07px;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
}

.feature-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.16px;
  color: var(--color-brand-blue);
}

.feature-card__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.feature-card__asset {
  flex: 1;
  min-height: 297px;
  background-color: var(--color-bg-gray);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 12px;
}

.feature-card__asset img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.features.features--scroll-animate .feature-card {
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.features.features--scroll-animate .feature-card:not(.feature-card--visible) {
  opacity: 0;
  transform: translateY(32px);
}

.features.features--scroll-animate .feature-card.feature-card--visible {
  opacity: 1;
  transform: none;
}

/* ========================================
   STATS SECTION (Numbers)
   ======================================== */
.stats {
  background-color: var(--color-navy);
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.stats__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: white;
  text-align: center;
  width: 100%;
}

.stats__grid {
  display: flex;
  gap: 24px;
  width: 100%;
  max-width: var(--content-width);
}

.stat-card {
  flex: 1;
  background-color: var(--color-navy-mid);
  border-radius: 16px;
  padding: 32px;
  height: 360px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.stat-card--bottom {
  justify-content: flex-end;
}

.stat-card--top {
  justify-content: flex-start;
}

.stat-card__illustration {
  flex-shrink: 0;
  align-self: flex-start;
}

.stat-card__illustration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.stat-card:nth-child(1) .stat-card__illustration {
  width: 300px;
  height: 111px;
  margin-bottom: auto;
}

.stat-card:nth-child(2) .stat-card__illustration {
  width: 231px;
  height: 110px;
  margin-top: auto;
}

.stat-card:nth-child(3) .stat-card__illustration {
  width: 217px;
  height: 137px;
  margin-bottom: auto;
}

.stat-card__number {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  white-space: nowrap;
}

.stat-card__digit {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: white;
  font-variant-numeric: tabular-nums;
  min-width: 2.25ch;
  display: inline-block;
  text-align: right;
}

.stat-card__percent {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.92px;
  color: var(--color-off-white);
}

.stat-card__content {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: white;
}

.stats.stats--scroll-animate .stats__title {
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats.stats--scroll-animate .stats__title:not(.stats__title--visible) {
  opacity: 0;
  transform: translateY(20px);
}

.stats.stats--scroll-animate .stats__title.stats__title--visible {
  opacity: 1;
  transform: none;
}

.stats.stats--scroll-animate .stat-card {
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.stats.stats--scroll-animate .stat-card:not(.stat-card--visible) {
  opacity: 0;
  transform: translateY(24px);
}

.stats.stats--scroll-animate .stat-card.stat-card--visible {
  opacity: 1;
  transform: none;
}

/* ========================================
   INDUSTRIES SECTION
   ======================================== */
.industries {
  background-color: white;
  padding: 56px var(--margin) 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
}

.industries__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-text-title);
  text-align: center;
  width: 100%;
}

.industries__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  max-width: var(--content-width);
}

.industry-card {
  flex: 1 1 calc(50% - 12px);
  min-width: 400px;
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 75, 135, 0.22);
    box-shadow: 0 14px 40px rgba(0, 75, 135, 0.1);
  }

  .industry-card:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(0, 75, 135, 0.08);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .industry-card:hover,
  .industry-card:active {
    transform: none;
    box-shadow: 0 0 0 1px rgba(0, 75, 135, 0.35);
  }
}

.industry-card__icon {
  height: 48px;
  display: flex;
  align-items: flex-start;
}

.industry-card__icon img {
  height: 48px;
  width: auto;
  max-width: 60px;
  object-fit: contain;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
  .industry-card:hover .industry-card__icon img {
    transform: scale(1.05);
  }
}

@media (hover: hover) and (pointer: fine) and (prefers-reduced-motion: reduce) {
  .industry-card:hover .industry-card__icon img {
    transform: none;
  }
}

.industry-card__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.industry-card__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.12px;
  color: var(--color-brand-blue);
}

.industry-card__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

/* ========================================
   ARTICLES SECTION
   ======================================== */
.articles {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  gap: 44px;
  align-items: center;
}

.articles__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.articles__title {
  font-family: 'Raleway', var(--font-heading);
  font-size: 40px;
  font-weight: 800;
  line-height: normal;
  color: var(--color-text-title);
}

.articles__nav {
  display: flex;
  gap: 16px;
}

.articles__grid {
  display: flex;
  gap: 24px;
  width: 100%;
}

.article-card {
  flex: 1;
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

a.article-card {
  text-decoration: none;
  color: inherit;
}

a.article-card:focus-visible {
  outline: 2px solid var(--color-brand-yellow);
  outline-offset: 3px;
}

.article-card__cta {
  align-self: flex-start;
}

.article-card__banner {
  height: 278px;
  position: relative;
  overflow: hidden;
}

.article-card__banner--navy {
  background-color: var(--color-navy);
  border-left: 6px solid var(--color-brand-yellow);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.article-card__banner--white {
  background-color: white;
  border-left: 6px solid var(--color-brand-yellow);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.article-card__banner--dark {
  background-color: var(--color-navy-dark);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.article-card__banner-content {
  padding: 32px 16px 32px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}

.article-card__banner-meta {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-yellow-dark);
  margin-bottom: 32px;
}

.article-card__banner-meta:empty {
  display: block;
  min-height: 20px;
}

.article-card__banner-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.12px;
  color: white;
}

/* In the related-articles carousel we cap headline lines so very long
   titles don't collide with the card body on narrower viewports. */
.article-related .article-card__banner-title {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
  max-height: calc(1.4em * 5);
}

.article-card__banner--white .article-card__banner-title {
  color: var(--color-navy);
  font-size: 20px;
}

.article-card__banner--white .article-card__banner-content {
  padding-right: 92px;
}

.article-card__banner-subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #888780;
  margin-bottom: 16px;
}

.article-card__banner-footer {
  position: absolute;
  left: 32px;
  right: 32px;
  bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
  z-index: 1;
}

.article-card__banner-watermark {
  font-family: var(--font-heading);
  font-size: 56px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -1.68px;
  color: rgba(255, 255, 255, 0.04);
}

.article-card__banner-lines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.article-card__banner-lines::before,
.article-card__banner-lines::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.article-card__banner-lines::before {
  top: 23px;
}

.article-card__banner-lines::after {
  top: 143px;
}

.article-card__banner-line-bottom {
  position: absolute;
  bottom: 13px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.article-card__banner-vlines {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

/* Vertical grid lines repeat at a fixed 80px column step across the entire
   card width so the pattern always reaches the right edge regardless of card
   size. The 16px background-position offset lands lines at 96, 176, 256, …
   keeping the original 96px first-line position from the design. */
.article-card__banner--navy .article-card__banner-vlines {
  background-image: repeating-linear-gradient(
    to right,
    transparent 0,
    transparent 79px,
    rgba(255, 255, 255, 0.08) 79px,
    rgba(255, 255, 255, 0.08) 80px
  );
  background-position: 16px 0;
}

.article-card__banner-logo {
  width: auto;
  max-width: 110px;
  height: 32px;
  object-fit: contain;
  object-position: right center;
}

.article-card__banner-logo--stacked {
  width: 110px;
  height: 32px;
  object-fit: contain;
  object-position: right center;
}

.article-card__banner-side {
  position: absolute;
  top: 0;
  right: 0;
  width: 76px;
  height: 100%;
  overflow: hidden;
}

.article-card__banner-side img {
  width: 100%;
  height: 100%;
  object-fit: fill;
}

.article-card__banner--dark .article-card__banner-content {
  border-left: 4px solid var(--color-yellow-dark);
  margin-left: 0;
  padding-left: 48px;
}

.article-card__body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  justify-content: center;
}

.article-card__body-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-card__body-tagline {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.7;
  letter-spacing: 0.07px;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
}

.article-card__body-title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.12px;
  color: var(--color-text-title);
}

.article-card__body-desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ========================================
   BOTTOM CTA SECTION
   ======================================== */
.bottom-cta {
  background-color: var(--color-navy);
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.bottom-cta__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: white;
  text-align: center;
  width: 100%;
}

.bottom-cta__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-navy-light);
  text-align: center;
  max-width: 806px;
}

.bottom-cta__action {
  padding-top: 24px;
  display: flex;
  justify-content: center;
  width: 100%;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background-color: var(--color-navy-deeper);
  padding: 80px var(--margin);
  overflow: hidden;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.footer__content {
  display: flex;
  gap: 64px;
}

.footer__brand {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 32px;
  overflow: hidden;
}

.footer__logo {
  width: auto;
  height: 52px;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__info-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer__info-label {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy-light);
}

.footer__info-value {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy-light);
}

.footer__social {
  display: flex;
  gap: 12px;
}

.footer__social-icon {
  width: 24px;
  height: 24px;
}

.footer__social-icon img {
  width: 100%;
  height: 100%;
}

.footer__links-col {
  flex: 1;
  max-width: 400px;
  display: flex;
  gap: 24px;
  overflow: hidden;
}

.footer__link-list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.footer__link-category {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text-muted);
  padding: 8px 0;
}

.footer__link-item {
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy-light);
  padding: 8px 0;
  cursor: pointer;
}

.footer__link-item:hover {
  text-decoration: underline;
}

.footer__bottom {
  border-top: 0.5px solid rgba(232, 237, 247, 0.3);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-navy-light);
}

.footer__copyright {
  font-weight: 400;
}

.footer__legal {
  display: flex;
  gap: 24px;
}

.footer__legal a {
  cursor: pointer;
}

.footer__legal a:hover {
  text-decoration: underline;
}

/* ========================================
   SVG ARROW ICONS (inline)
   ======================================== */
.icon-arrow-right {
  display: inline-flex;
  align-items: center;
}

.icon-arrow-left {
  display: inline-flex;
  align-items: center;
}

/* ========================================
   HAMBURGER (hidden on desktop)
   ======================================== */
.header__hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-shrink: 0;
}

.header__hamburger.is-active svg path {
  stroke: var(--color-brand-blue);
}

/* ========================================
   MOBILE MENU (shown via JS at <=1024px)
   ======================================== */
.mobile-menu {
  display: none;
}

body.has-mobile-menu-open {
  overflow: hidden;
}

/* ========================================
   ARTICLE DETAIL PAGE (news/article.html)
   ======================================== */
[hidden] { display: none !important; }

.article-hero {
  background-color: white;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.article-hero__banner {
  position: relative;
  width: 100%;
  min-height: 359px;
  background-color: var(--color-navy);
  border-left: 6px solid var(--color-brand-yellow);
  overflow: hidden;
  box-sizing: border-box;
  /* Left padding compensates for the 6px yellow border so inner content
     aligns vertically with the header logo and the sidebar (both at
     var(--margin) from the page edge). */
  padding: 32px var(--margin) 32px calc(var(--margin) - 6px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.article-hero__banner-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 770px;
  width: 100%;
  min-width: 0;
}

.article-hero__meta {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-yellow-dark);
}

.article-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: white;
}

.article-hero__cta {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 10px;
  background-color: var(--color-brand-yellow);
  color: #412402;
  padding: 12px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  text-align: center;
}

.article-hero__cta .btn__icon svg path {
  stroke: #412402;
}

.article-hero__cta:hover {
  background-color: var(--color-yellow-dark);
}

.article-hero__media-logo {
  position: relative;
  z-index: 3;
  height: 35px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  object-position: left center;
}

.article-hero__watermark {
  position: absolute;
  right: 32px;
  bottom: 40px;
  font-family: var(--font-heading);
  font-size: 125px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  pointer-events: none;
  z-index: 1;
}

.article-hero__lines,
.article-hero__vlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.article-hero__lines::before,
.article-hero__lines::after {
  content: '';
  position: absolute;
  left: 26px;
  right: 0;
  height: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.article-hero__lines::before { top: 23px; }
.article-hero__lines::after { top: 143px; }

.article-hero__vlines::before,
.article-hero__vlines::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.article-hero__vlines::before { left: 45%; }
.article-hero__vlines::after { left: 72%; }

.article-body {
  position: relative;
  background-color: var(--color-bg-gray);
  padding: 64px var(--margin) 112px;
  display: flex;
  justify-content: center;
}

.article-body__scroll {
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--color-brand-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-decoration: none;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: transform 0.15s ease;
}

.article-body__scroll:hover {
  transform: translate(-50%, 2px);
}

.article-layout {
  width: 100%;
  max-width: var(--content-width);
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 24px;
  align-items: start;
}

/* Sidebar — desktop default */
.article-sidebar {
  background-color: white;
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: sticky;
  top: 24px;
}

.article-sidebar__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
  margin: 0;
}

.article-sidebar__toggle,
.article-sidebar__search {
  display: none;
}

.article-sidebar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.article-sidebar__item {
  position: relative;
}

.article-sidebar__link {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 12px 16px;
  border-left: 4px solid var(--color-brand-yellow);
  border-radius: 0 6px 6px 0;
  background-color: #fafafa;
  text-decoration: none;
  transition: background-color 0.15s ease;
}

.article-sidebar__link:hover {
  background-color: #f3f4f6;
}

.article-sidebar__item--active .article-sidebar__link {
  background-color: rgba(246, 190, 0, 0.12);
}

.article-sidebar__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-yellow-dark);
  text-transform: uppercase;
}

.article-sidebar__label {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-navy);
}

.article-content {
  width: 100%;
  background-color: white;
  border-radius: 24px;
  border-bottom: 1px solid #ebebeb;
  padding: 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  min-width: 0;
}

.article-content__meta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.article-content__date {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-yellow-dark);
  text-transform: uppercase;
}

.article-content__external-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #1f669f;
  color: white;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-decoration: none;
  box-shadow: 0 2px 4px 0 rgba(42, 79, 138, 0.15);
  transition: background-color 0.15s ease;
}

.article-content__external-btn:hover {
  background-color: #185684;
}

.article-content__external-btn .btn__icon svg path {
  stroke: white;
}

/* Wrapper around the bottom-of-body "Read on …" CTA. The button itself
   is right-aligned to mirror the Figma. */
.article-content__external-row {
  display: flex;
  justify-content: flex-end;
  padding-top: 8px;
}

.article-content__external-row[hidden] {
  display: none;
}

.article-content__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.article-content__body h3 {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy);
  margin-top: 16px;
}

.article-content__body h3:first-child {
  margin-top: 0;
}

.article-content__body p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.article-content__body ul,
.article-content__body ol {
  padding-left: 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.article-content__body li {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.article-content__body a {
  color: var(--color-brand-blue);
  text-decoration: underline;
}

.article-content__body code {
  font-family: var(--font-mono);
  font-size: 15px;
  background-color: var(--color-bg-gray);
  padding: 2px 6px;
  border-radius: 4px;
}

.article-content__footer {
  display: flex;
  justify-content: flex-end;
}

.article-content__share {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  gap: 24px;
  padding-top: 32px;
  box-sizing: border-box;
}

.article-content__share-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
}

.article-content__share-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-navy);
  text-align: right;
  width: 100%;
}

.article-content__share-line {
  width: 100%;
  margin: 0;
  border: none;
  border-top: 1px solid #d1d5db;
}

.article-content__share-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  width: fit-content;
  max-width: 100%;
}

.article-content__share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 27px;
  padding: 5px 8px;
  border-radius: 10px;
  border: 1px solid var(--color-brand-blue);
  background-color: #fff;
  color: var(--color-brand-blue);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
  box-sizing: border-box;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.article-content__share-btn:hover {
  background-color: rgba(0, 75, 135, 0.06);
  border-color: #003966;
  color: #003966;
}

.article-content__share-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--color-brand-blue);
}

.article-content__share-btn:hover .article-content__share-icon {
  color: #003966;
}

.article-content__share-icon img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(2089%) hue-rotate(186deg) brightness(92%) contrast(101%);
}

.article-content__share-btn:hover .article-content__share-icon img {
  filter: brightness(0) saturate(100%) invert(12%) sepia(99%) saturate(2000%) hue-rotate(186deg) brightness(95%) contrast(101%);
}

.article-content__share-icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.article-content__share-label {
  font-weight: 600;
}

.article-missing {
  background-color: var(--color-bg-gray);
  padding: 160px var(--margin);
  display: flex;
  justify-content: center;
}

.article-missing__inner {
  max-width: 560px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.article-missing__inner h1 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-navy);
}

.article-missing__inner p {
  font-size: 18px;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.article-missing__inner .btn {
  margin-top: 16px;
}

/* Explore More (related articles) */
.article-related {
  background-color: var(--color-bg-gray);
  padding: 0 var(--margin) 112px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.article-related__title {
  width: 100%;
  max-width: var(--content-width);
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.6px;
  color: var(--color-navy);
}

.article-related__nav {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.article-related__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--color-navy);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.article-related__nav-link--next {
  margin-left: auto;
}

.article-related__nav-link:hover .btn--circle-light {
  background-color: #e5e7eb;
}

.article-related__nav-link {
  cursor: pointer;
  user-select: none;
}

.article-related__nav-link--disabled {
  opacity: 0.35;
  pointer-events: none;
  cursor: default;
}

.article-related__nav-label {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--color-text-secondary);
  text-transform: uppercase;
}

/* Horizontal carousel of "Explore More" cards. Uses native horizontal
   scrolling with scroll-snap so the user can also swipe on touch devices;
   the prev/next buttons in `.article-related__nav` programmatically scroll
   one card at a time. */
.article-related__grid {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.article-related__grid::-webkit-scrollbar {
  display: none;
}

.article-related__grid > .article-card {
  flex: 0 0 calc((100% - 24px) / 2);
  scroll-snap-align: start;
  min-width: 0;
}

/* ========================================
   CONTACT PAGE (contact.html)
   ======================================== */
.header__link--active {
  color: var(--color-brand-blue);
  font-weight: 700;
}

.contact-form-section {
  background-color: white;
  padding: 48px var(--margin) 80px;
  display: flex;
  justify-content: center;
}

.contact-form-section__inner {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-form-section__header {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-tag {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(20, 184, 166, 0.1);
  color: #14b8a6;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.contact-tag__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #14b8a6;
  flex-shrink: 0;
}

.contact-form-section__heading-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-form-section__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: black;
}

.contact-form-section__subtitle {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  max-width: 720px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-top: 16px;
}

.contact-form__row {
  display: flex;
  gap: 32px;
  width: 100%;
}

.contact-form__field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
}

.contact-form__field--message {
  width: 100%;
  padding: 10px 10px 0;
}

.contact-form__label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  color: #374151;
  text-transform: uppercase;
  letter-spacing: 0;
  display: inline-flex;
  align-items: center;
}

.contact-form__required {
  color: #dc2626;
  margin-left: 1px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: black;
  padding: 0 0 8px;
  border-bottom: 1px solid var(--color-gray-300);
  resize: none;
  transition: border-color 0.2s ease;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-bottom-color: var(--color-brand-blue);
}

.contact-form__textarea {
  min-height: 80px;
  padding-bottom: 8px;
  resize: vertical;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: var(--color-text-muted);
}

.contact-form__help {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--color-text-secondary);
  margin-top: 0;
}

.contact-form__explore {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-toggle {
  display: inline-flex;
  gap: 10px;
  background-color: #f8fafc;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #dae5f3;
  width: 340px;
  max-width: 100%;
}

.contact-toggle__option {
  flex: 1 1 0;
  min-width: 0;
  border: none;
  background: transparent;
  padding: 10px 16px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  color: #374151;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-toggle__option:hover {
  color: var(--color-text-primary);
}

.contact-toggle__option.is-active {
  background-color: rgba(153, 183, 224, 0.32);
  color: black;
}

.contact-form__disclaimer {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin-top: -16px;
}

.contact-form__disclaimer a {
  color: var(--color-brand-blue);
  text-decoration: underline;
  font-weight: 700;
}

.contact-form__submit {
  align-self: flex-start;
  box-shadow: 0 2px 4px 0 rgba(42, 79, 138, 0.15);
}

.contact-form__submit:hover {
  background-color: var(--color-yellow-dark);
}

.contact-form__status {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  margin: 0;
  padding: 12px 14px;
  border-radius: 8px;
}

.contact-form__status--success {
  color: #0f5132;
  background-color: #d1e7dd;
}

.contact-form__status--error {
  color: #842029;
  background-color: #f8d7da;
}

.contact-form-section__benefits {
  display: flex;
  gap: 16px;
  width: 100%;
  padding-top: 16px;
}

.benefit-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid var(--color-text-muted);
  border-radius: 16px;
  padding: 16px;
  background-color: white;
}

.benefit-card__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  color: var(--color-brand-blue);
  background-color: rgba(0, 75, 135, 0.08);
  border: 1px solid rgba(0, 75, 135, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.benefit-card__title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-brand-blue);
}

.benefit-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #161c2d;
  opacity: 0.7;
}

/* ========================================
   PRIVACY POLICY PAGE (privacy.html)
   ======================================== */
.privacy-hero {
  background-color: white;
  padding: 96px var(--margin) 80px;
  display: flex;
  justify-content: center;
}

.privacy-hero__inner {
  width: 100%;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  text-align: center;
}

.privacy-hero__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: var(--color-text-heading);
}

.privacy-hero__subtitle {
  max-width: 806px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.privacy-hero__scroll {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background-color: #eec848;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
}

.privacy-hero__scroll:hover {
  transform: translateY(2px);
}

.privacy-body {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  justify-content: center;
}

.privacy-body__container {
  width: 100%;
  max-width: var(--content-width);
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.privacy-nav {
  width: 323px;
  flex-shrink: 0;
  background-color: white;
  border-radius: 16px;
  padding: 12px;
  align-self: flex-start;
  position: sticky;
  top: 24px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
}

.privacy-nav__title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-navy-mid);
  padding: 8px 8px 8px 16px;
  min-height: 56px;
  display: flex;
  align-items: center;
}

.privacy-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.privacy-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 56px;
  padding: 16px 24px;
  border-radius: 100px;
  color: #49454f;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  cursor: pointer;
  transition: background-color 0.15s ease;
}

.privacy-nav__item:hover {
  background-color: rgba(238, 200, 72, 0.15);
}

.privacy-nav__item.is-active {
  background-color: #eec848;
  color: #4a4459;
}

.privacy-nav__num {
  min-width: 14px;
  font-weight: 400;
}

.privacy-nav__num::after {
  content: '.';
}

.privacy-nav__label {
  flex: 1;
}

.privacy-content {
  flex: 1;
  min-width: 0;
  background-color: white;
  border-radius: 24px;
  border-bottom: 0.889px solid #ebebeb;
  padding: 48px 12px;
  overflow: hidden;
}

.privacy-content__inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.privacy-content__header {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.privacy-content__updated {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--color-yellow-dark);
  text-transform: uppercase;
  text-align: right;
}

.privacy-content__section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.privacy-content__section-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-navy-dark);
  scroll-margin-top: 100px;
}

.privacy-content__num {
  margin-right: 8px;
}

.privacy-content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.privacy-content ul {
  list-style: disc;
  padding-left: 27px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.privacy-content ul ul {
  margin-top: 8px;
  padding-left: 27px;
  gap: 8px;
}

.privacy-content li {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.privacy-content a {
  color: var(--color-brand-blue);
  text-decoration: underline;
}

.privacy-content a:hover {
  opacity: 0.8;
}

/* ========================================
   SOLUTIONS PAGE (solutions.html)
   ======================================== */
.solutions-hero {
  background-color: white;
  padding: 96px var(--margin) 80px;
  display: flex;
  justify-content: center;
}

.solutions-hero__container {
  max-width: 887px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.solutions-hero__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-text-heading);
}

.solutions-hero__title-accent {
  background: linear-gradient(90deg, #0d1f3c 0%, #005caa 95.673%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  white-space: nowrap;
}

.solutions-hero__subtitle {
  max-width: 806px;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.solutions {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.solutions__nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.solutions__nav-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-navy-mid);
  padding: 8px 8px 8px 16px;
  margin: 0;
}

.solutions__nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.solutions__chip {
  display: inline-flex;
  flex: 1 1 0;
  min-width: 0;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 56px;
  padding: 12px 16px;
  border-radius: 100px;
  background-color: white;
  color: var(--color-text-secondary);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  transition: background-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.solutions__chip:hover {
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08);
}

.solutions__chip--active {
  background-color: var(--color-brand-yellow);
  color: var(--color-text-primary);
  font-weight: 500;
}

.solutions__list {
  display: flex;
  flex-direction: column;
  gap: 44px;
}

.solution-card {
  background-color: white;
  border-radius: 24px;
  border-bottom: 0.889px solid #ebebeb;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 48px 48.889px;
  overflow: hidden;
  scroll-margin-top: 120px;
}

.solution-card__media {
  background-color: var(--color-bg-gray);
  border-radius: 8px;
  padding: 16px 132px;
  height: 441px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.solution-card__media img {
  max-width: 100%;
  max-height: 100%;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 13px;
}

.solution-card__media--video {
  padding: 0;
}

.solution-card__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  display: block;
}

.solution-card__video--center {
  object-position: center;
}

.solution-card__body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.solution-card__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.solution-card__tagline {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.07px;
  text-transform: uppercase;
  color: var(--color-yellow-dark);
}

.solution-card__title {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.16px;
  color: var(--color-brand-blue);
  margin: 0;
}

.solution-card__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  width: 100%;
}

.solution-card__callout {
  background-color: var(--color-navy-light);
  padding: 12px;
  border-radius: 8px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-secondary);
  width: 100%;
  text-align: left;
}

.solution-card__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
  padding: 0;
  margin: 0;
}

.solution-card__bullet {
  position: relative;
  padding-left: 24px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-secondary);
  min-height: 32px;
  display: flex;
  align-items: center;
}

.solution-card__bullet::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: var(--color-brand-yellow);
}

.solution-card__bullet--alt::before {
  background-color: var(--color-brand-yellow);
}

.solution-card__quote {
  background-color: var(--color-off-white);
  border-left: 5px solid var(--color-brand-yellow);
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 16px 12px;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--color-text-secondary);
  width: 100%;
  margin: 0;
  text-align: left;
}

.solution-card__action {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.solution-card__toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: none;
  padding: 8px 14px;
  margin: -8px -14px;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: normal;
  color: var(--color-text-primary);
  border-radius: 999px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.solution-card__toggle:focus-visible {
  outline: 2px solid var(--color-brand-yellow);
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  .solution-card__toggle:hover {
    color: var(--color-brand-blue);
    background-color: rgba(0, 75, 135, 0.07);
  }

  .solution-card__toggle:active {
    background-color: rgba(0, 75, 135, 0.11);
  }
}

.solution-card__toggle-label {
  font-weight: 500;
}

.solution-card__toggle-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.solution-card__toggle-icon svg {
  width: 100%;
  height: 100%;
}

.solution-card.is-collapsed {
  padding-bottom: 32.889px;
}

.solution-card.is-collapsed .solution-card__media {
  height: 260px;
}

.solution-card.is-collapsed .solution-card__desc:not(:first-of-type),
.solution-card.is-collapsed .solution-card__callout,
.solution-card.is-collapsed .solution-card__list,
.solution-card.is-collapsed .solution-card__quote {
  display: none;
}

.solution-card.is-collapsed .solution-card__desc:first-of-type {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.solution-card.is-collapsed .solution-card__toggle-icon {
  transform: rotate(180deg);
}

/* ========================================
   ABOUT PAGE
   ======================================== */
.about-hero {
  background-color: white;
  padding: 96px var(--margin) 80px;
  display: flex;
  justify-content: center;
}

.about-hero__inner {
  max-width: var(--content-width);
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}

.about-hero__title {
  font-family: var(--font-heading);
  font-size: 50px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -1.5px;
  color: var(--color-text-heading);
  max-width: 900px;
}

.about-hero__title span {
  color: var(--color-brand-blue);
}

.about-hero__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
  max-width: 806px;
}

.about-story {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  justify-content: center;
}

.about-story__inner {
  width: 100%;
  max-width: 864px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.about-story__card {
  background-color: var(--color-navy-dark);
  border-radius: 16px;
  padding: 40px 32px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: white;
}

.about-story__divider {
  display: block;
  width: 40px;
  height: 3px;
  background-color: var(--color-brand-yellow);
  border-radius: 2px;
  margin-bottom: 4px;
}

.about-story__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: white;
}

.about-story__text {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-off-white);
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
  padding: 0;
}

.value-item {
  background-color: white;
  border-radius: 16px;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.value-item__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: rgba(238, 200, 72, 0.3);
  border: 1px solid #eec848;
  display: flex;
  align-items: center;
  justify-content: center;
}

.value-item__text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.value-item__title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--color-brand-blue);
}

.value-item__desc {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  color: #161c2d;
  opacity: 0.7;
}

.team-section {
  background-color: white;
  padding: 112px var(--margin);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.team-section__header {
  text-align: center;
  max-width: 806px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 48px;
}

.team-section__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-text-heading);
}

.team-section__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.team-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

.team-card {
  display: flex;
  align-items: stretch;
  background-color: var(--color-bg-gray);
  border-radius: 16px;
  overflow: hidden;
  min-height: 293px;
}

.team-card__profile {
  flex: 0 0 480px;
  background-color: var(--color-navy);
  color: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  transition: gap 0.45s cubic-bezier(0.22, 1, 0.36, 1), align-items 0.45s ease;
}

.team-card__photo {
  flex-shrink: 0;
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 4px;
}

.team-card__profile-meta {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  transition: gap 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  color: #ffffff;
  margin: 0;
}

.team-card__role {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
}

.team-card__linkedin {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background-color: var(--color-brand-blue);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  padding: 10px 16px;
  border-radius: 100px;
  text-decoration: none;
  width: 100%;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease, width 0.35s ease;
}

.team-card:not(.is-expanded) .team-card__linkedin {
  width: auto;
  align-self: flex-start;
}

.team-card.is-expanded .team-card__linkedin {
  width: 100%;
  align-self: stretch;
}

.team-card__linkedin:hover,
.team-card__linkedin:focus-visible {
  background-color: #003c6e;
}

.team-card__linkedin:focus-visible {
  outline: 2px solid var(--color-brand-yellow);
  outline-offset: 2px;
}

.team-card__linkedin-icon {
  flex-shrink: 0;
}

.team-card__bio {
  flex: 1 1 auto;
  min-width: 0;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Expandable block uses flex order 0 so when it grows it sits above the tag
   row (order 1); the pill row and lead copy slide down as height animates. */
.team-card__bio-reveal {
  order: 3;
  min-height: 0;
  display: grid;
  grid-template-rows: 0fr;
  transition:
    grid-template-rows 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    margin-top 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:not(.is-expanded) .team-card__bio-reveal {
  margin-top: -16px;
}

.team-card__bio-reveal-inner {
  min-height: 0;
  overflow: hidden;
  transition:
    opacity 0.38s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card:not(.is-expanded) .team-card__bio-reveal-inner {
  opacity: 0;
  transform: translateY(-12px);
}

.team-card.is-expanded .team-card__bio-reveal-inner {
  opacity: 1;
  transform: translateY(0);
}

.team-card.is-expanded .team-card__bio-reveal {
  grid-template-rows: 1fr;
}

.team-card__tags {
  order: 1;
  list-style: none;
  margin: 0;
  padding: 12px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card--photo-left .team-card__tags {
  justify-content: flex-end;
}

.team-card--photo-right .team-card__tags {
  justify-content: flex-start;
}

.team-card__tags li {
  background-color: #ffffff;
  color: var(--color-text-secondary);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 4px;
  white-space: nowrap;
}

.team-card__bio-text {
  order: 2;
  flex: 1 1 auto;
  padding: 12px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.team-card__bio-text p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.team-card__bio-reveal-inner > p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
  margin: 0;
}

.team-card__bio-reveal-inner > p:not(:last-child) {
  margin-bottom: 12px;
}

.team-card__pullquote {
  margin: 0 0 16px;
  padding: 20px 24px;
  border-left: 4px solid var(--color-brand-yellow);
  border-radius: 0 8px 8px 0;
  background-color: #ffffff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-primary);
}

.team-card__toggle {
  order: 4;
  align-self: flex-end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--color-text-primary);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
  border-radius: 100px;
}

.team-card--photo-right .team-card__toggle {
  align-self: flex-start;
}

.team-card__toggle:hover .team-card__toggle-label,
.team-card__toggle:focus-visible .team-card__toggle-label {
  text-decoration: underline;
}

.team-card__toggle:focus-visible {
  outline: 2px solid var(--color-brand-blue);
  outline-offset: 4px;
}

.team-card__toggle-icon {
  transition: transform 0.25s ease;
}

.team-card.is-expanded .team-card__toggle-icon {
  transform: rotate(180deg);
}

@media (prefers-reduced-motion: reduce) {
  .team-card__profile,
  .team-card__name,
  .team-card__linkedin,
  .team-card__bio-reveal,
  .team-card__bio-reveal-inner,
  .team-card__tags,
  .team-card__bio-text {
    transition: none;
  }
}

/* Desktop: collapsed = photo + summary + LinkedIn in a row; expanded = stack under photo (Figma). */
@media (min-width: 1025px) {
  .team-card:not(.is-expanded) .team-card__profile {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .team-card.is-expanded .team-card__profile {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 24px;
  }
}

.advisory-section {
  background-color: var(--color-bg-gray);
  padding: 112px var(--margin);
  display: flex;
  justify-content: center;
}

.advisory-section__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.advisory-section__header {
  text-align: center;
  max-width: 806px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 48px;
}

.advisory-section__title {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.92px;
  color: var(--color-text-primary);
}

.advisory-section__subtitle {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.3;
  color: var(--color-text-secondary);
}

.advisory-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.advisor-card {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.advisor-card__header {
  padding: 16px 16px 0;
  display: flex;
  justify-content: center;
}

.advisor-card__photo {
  width: 210px;
  height: 210px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.advisor-card__body {
  padding: 24px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.advisor-card__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advisor-card__heading {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.advisor-card__name {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-brand-blue);
}

.advisor-card__role {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-text-secondary);
}

.advisor-card__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-text-secondary);
}

.advisor-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-yellow-dark);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  align-self: flex-start;
  cursor: pointer;
}

.advisor-card__link:hover {
  opacity: 0.8;
}

.advisor-card__link .btn__icon {
  width: 16px;
  height: 16px;
}

.advisor-card__link .btn__icon svg {
  width: 16px;
  height: 16px;
}

/* ========================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --margin: 32px;
  }

  /* Announcement bar */
  .announcement-bar {
    font-size: 16px;
    white-space: normal;
    flex-wrap: wrap;
  }

  body.page-home .announcement-bar {
    font-size: 18px;
    white-space: nowrap;
    flex-wrap: nowrap;
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  body.page-home .announcement-bar::-webkit-scrollbar {
    height: 4px;
  }

  body.page-home .announcement-bar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.35);
    border-radius: 999px;
  }

  /* Header */
  .header {
    height: 104px;
    padding: 40px var(--margin);
  }

  .header__logo {
    height: 38px;
    width: 142px;
  }

  .header__nav,
  .header__cta {
    display: none;
  }

  .header__hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Mobile menu */
  .mobile-menu {
    display: block;
    background-color: white;
    border-top: 1px solid var(--color-gray-200);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .mobile-menu.is-open {
    max-height: calc(100vh - 104px);
    box-shadow: 0 12px 24px rgba(17, 24, 39, 0.08);
  }

  .mobile-menu__inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 16px var(--margin) 24px;
  }

  .mobile-menu__links {
    display: flex;
    flex-direction: column;
    gap: 0;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .mobile-menu__links li {
    border-bottom: 1px solid var(--color-gray-200);
  }

  .mobile-menu__links li:last-child {
    border-bottom: none;
  }

  .mobile-menu__links .header__link {
    display: block;
    padding: 16px 0;
    font-size: 18px;
    font-weight: 500;
  }

  .mobile-menu__cta {
    display: flex;
  }

  .mobile-menu__cta .btn {
    width: 100%;
    justify-content: center;
  }

  /* Hero */
  .hero__title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }

  .hero__product-shot {
    width: 100%;
  }

  /* Value prop */
  .value-prop__header {
    max-width: 100%;
  }

  .value-prop__content {
    flex-direction: column;
    align-items: center;
  }

  .value-prop__diagram {
    width: 395px;
    height: 395px;
  }

  .value-prop__carousel {
    width: 100%;
    height: auto;
    min-height: 490px;
  }

  .value-prop__carousel-inner {
    justify-content: flex-start;
    padding: 0 32px;
  }

  .value-prop__slides {
    flex: 0 0 auto;
    align-items: stretch;
    overflow-x: hidden;
    overflow-y: visible;
  }

  .value-prop__nav {
    margin-top: auto;
    padding-top: 32px;
  }

  /* Feature cards */
  .feature-card {
    flex-direction: column;
    padding: 48px;
    padding-bottom: 49px;
  }

  .feature-card--reverse {
    flex-direction: column;
  }

  .feature-card__asset {
    width: 100%;
    min-height: 297px;
    order: -1;
  }

  .feature-card__text {
    padding: 32px;
  }

  /* Stats */
  .stats__grid {
    flex-direction: column;
  }

  .stat-card {
    height: auto;
    min-height: 280px;
  }

  /* Industries */
  .industries__grid {
    flex-direction: column;
  }

  .industry-card {
    min-width: unset;
    flex: 1 1 100%;
  }

  /* Articles */
  .articles__grid {
    flex-direction: column;
  }

  .articles__title {
    font-size: 32px;
  }

  /* Footer */
  .footer__content {
    flex-direction: column;
    gap: 48px;
  }

  .footer__links-col {
    max-width: 100%;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  /* Article page */
  .article-hero__banner {
    min-height: auto;
    padding: 28px var(--margin) 28px calc(var(--margin) - 6px);
    gap: 24px;
  }

  .article-hero__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .article-hero__watermark {
    font-size: 80px;
    bottom: 24px;
  }

  .article-hero__media-logo {
    height: 28px;
  }

  .article-content {
    padding: 32px;
  }

  .article-layout {
    grid-template-columns: 240px 1fr;
    gap: 16px;
  }

  .article-related__grid > .article-card {
    flex: 0 0 100%;
  }

  /* Contact page */
  .contact-form-section {
    padding: 48px var(--margin) 64px;
  }

  .contact-form-section__title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .contact-form-section__benefits {
    flex-direction: column;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form__row .contact-form__field {
    flex: 1 1 100%;
    min-width: 0;
  }

  /* Privacy page */
  .privacy-hero {
    padding: 64px var(--margin) 48px;
  }

  .privacy-hero__title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .privacy-hero__subtitle {
    font-size: 20px;
  }

  .privacy-body {
    padding: 64px var(--margin);
  }

  .privacy-body__container {
    gap: 24px;
  }

  .privacy-nav {
    width: 323px;
  }

  .privacy-content {
    padding: 24px 8px;
  }

  .privacy-content__inner {
    padding: 16px;
  }

  /* Solutions page */
  .solutions-hero {
    padding: 72px var(--margin) 64px;
  }

  .solutions-hero__title {
    font-size: 34px;
    letter-spacing: -0.75px;
  }

  .solutions-hero__title-accent {
    white-space: normal;
  }

  .solutions-hero__subtitle {
    font-size: 20px;
  }

  .solutions {
    padding: 80px var(--margin);
    gap: 32px;
  }

  .solution-card {
    padding: 32px;
  }

  .solution-card__media {
    padding: 16px;
    height: 340px;
  }

  .solution-card.is-collapsed .solution-card__media {
    height: 220px;
  }

  .solution-card__body {
    padding: 8px 0 0;
  }

  .solution-card__title {
    font-size: 28px;
  }

  /* About page */
  .about-hero {
    padding: 64px var(--margin);
  }

  .about-hero__title {
    font-size: 40px;
    letter-spacing: -1px;
  }

  .about-hero__subtitle {
    font-size: 20px;
  }

  .about-story,
  .team-section,
  .advisory-section {
    padding: 80px var(--margin);
  }

  .about-story__card {
    padding: 32px 24px 24px;
  }

  .about-story__title {
    font-size: 32px;
    letter-spacing: -0.7px;
  }

  .about-story__text {
    font-size: 18px;
  }

  .value-item {
    padding: 20px 24px;
  }

  .value-item__title {
    font-size: 20px;
  }

  .value-item__desc {
    font-size: 16px;
  }

  .team-section__title,
  .advisory-section__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .team-section__subtitle,
  .advisory-section__subtitle {
    font-size: 18px;
  }

  /* On tablet (and below) every team card stacks the blue profile on
     top and the bio underneath, mirroring the phone layout — see the
     767px breakpoint below for the rest of the column tweaks. */
  .team-card,
  .team-card--photo-right {
    flex-direction: column;
    min-height: 0;
  }

  .team-card__profile {
    flex: 0 0 auto;
    width: 100%;
    padding: 24px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }

  .team-card__photo {
    width: 160px;
    height: 160px;
  }

  .team-card__profile-meta {
    align-items: center;
    text-align: center;
  }

  .team-card:not(.is-expanded) .team-card__linkedin {
    align-self: center;
  }

  .team-card.is-expanded .team-card__linkedin {
    align-self: stretch;
  }

  .team-card__bio {
    padding: 24px;
  }

  .team-card__tags {
    gap: 8px;
  }

  .team-card--photo-left .team-card__tags,
  .team-card--photo-right .team-card__tags {
    justify-content: flex-start;
  }

  .team-card--photo-left .team-card__toggle,
  .team-card--photo-right .team-card__toggle {
    align-self: flex-start;
  }

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

/* ========================================
   RESPONSIVE — MOBILE (max-width: 767px)
   ======================================== */
@media (max-width: 767px) {
  :root {
    --margin: 16px;
  }

  /* Announcement bar */
  .announcement-bar {
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
    white-space: normal;
    flex-wrap: wrap;
  }

  body.page-home .announcement-bar {
    flex-direction: row;
    align-items: center;
    font-size: 14px;
    line-height: 1.3;
    white-space: nowrap;
    flex-wrap: nowrap;
    padding: 8px var(--margin);
    justify-content: center;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
  }

  /* Header */
  .header {
    height: 92px;
    padding: 40px var(--margin);
  }

  /* Hero */
  .hero {
    padding: 96px var(--margin) 80px;
  }

  .hero__title {
    font-size: 50px;
    letter-spacing: -1.5px;
  }

  .hero__subtitle {
    font-size: 22px;
  }

  .hero__product-shot {
    width: 100%;
  }

  /* Value prop */
  .value-prop {
    padding: 112px var(--margin);
  }

  .value-prop__header {
    padding: 0;
  }

  .value-prop__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .value-prop__subtitle {
    font-size: 22px;
  }

  .value-prop__content {
    padding: 0;
    flex-direction: column;
  }

  .value-prop__diagram {
    width: 100%;
    max-width: 395px;
    height: auto;
    aspect-ratio: 1;
  }

  .value-prop__carousel {
    width: 100%;
    height: auto;
    min-height: auto;
  }

  .value-prop__carousel-inner {
    padding: 0;
  }

  .value-prop__slide-heading {
    font-size: 22px;
    letter-spacing: -0.11px;
  }

  .value-prop__slide-stat-num {
    font-size: 24px;
    letter-spacing: -0.12px;
  }

  /* Features */
  .features {
    padding: 112px var(--margin);
  }

  .feature-card {
    padding: 16px;
    padding-bottom: 17px;
  }

  .feature-card__text {
    padding: 32px 0;
  }

  .feature-card__asset {
    min-height: 207px;
  }

  .feature-card__title {
    font-size: 24px;
    letter-spacing: -0.12px;
  }

  .feature-card__desc {
    font-size: 18px;
  }

  /* Stats */
  .stats {
    padding: 112px var(--margin);
  }

  .stats__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .stat-card {
    padding: 24px;
    height: auto;
    min-height: 240px;
  }

  .stat-card__digit {
    font-size: 40px;
  }

  .stat-card__percent {
    font-size: 32px;
  }

  .stat-card__content {
    font-size: 20px;
  }

  /* Industries */
  .industries {
    padding: 56px var(--margin) 112px;
  }

  .industries__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .industry-card {
    padding: 24px;
  }

  .industry-card__title {
    font-size: 22px;
  }

  .industry-card__desc {
    font-size: 16px;
  }

  /* Articles */
  .articles {
    padding: 112px var(--margin);
  }

  .articles__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .articles__nav {
    display: none;
  }

  .articles__title {
    font-size: 28px;
  }

  .article-card__banner {
    height: 220px;
  }

  .article-card__banner-title {
    font-size: 20px;
    max-width: 100%;
  }

  .article-related .article-card__banner-title {
    -webkit-line-clamp: 4;
    max-height: calc(1.4em * 4);
  }

  /* Bottom CTA */
  .bottom-cta {
    padding: 80px var(--margin);
  }

  .bottom-cta__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .bottom-cta__subtitle {
    font-size: 20px;
  }

  /* Footer */
  .footer {
    padding: 60px var(--margin);
  }

  .footer__container {
    gap: 48px;
  }

  .footer__legal {
    flex-wrap: wrap;
    gap: 16px;
  }

  .footer__bottom {
    font-size: 14px;
  }

  /* Article page */
  .article-page .announcement-bar {
    display: none;
  }

  .article-hero {
    padding: 0;
  }

  .article-hero__banner {
    min-height: 378px;
    border-left-width: 6px;
    padding: 32px var(--margin) 32px calc(var(--margin) - 6px);
  }

  .article-hero__title {
    font-size: 32px;
    line-height: 1.25;
    letter-spacing: -0.16px;
  }

  .article-hero__watermark {
    font-size: 60px;
    right: 24px;
    bottom: 22px;
  }

  .article-hero__media-logo {
    height: 28px;
  }

  .article-hero__cta {
    font-size: 16px;
    padding: 10px 14px;
  }

  .article-body {
    padding: 112px var(--margin);
  }

  .article-body__scroll {
    top: -22px;
  }

  .article-layout {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .article-content__meta-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .article-content__meta-row .article-content__external-btn {
    justify-content: center;
  }

  /* Mobile sidebar = collapsible dropdown with search */
  .article-sidebar {
    position: static;
    padding: 12px;
    gap: 16px;
    border-radius: 16px;
  }

  .article-sidebar__title {
    display: none;
  }

  .article-sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
    min-height: 56px;
    padding: 16px 24px;
    border: 1px solid var(--color-text-muted);
    border-radius: 28px;
    background-color: white;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    color: var(--color-navy);
    text-align: left;
    cursor: pointer;
  }

  .article-sidebar__toggle-text {
    flex: 1;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.35;
  }

  .article-sidebar__toggle-chevron {
    display: inline-flex;
    transition: transform 0.2s ease;
    color: var(--color-text-secondary);
  }

  .article-sidebar[data-open="true"] .article-sidebar__toggle-chevron {
    transform: rotate(180deg);
  }

  .article-sidebar__search {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 56px;
    padding: 8px 20px;
    border: none;
    border-radius: 28px;
    background-color: #f0f3f9;
  }

  .article-sidebar__search-icon {
    display: inline-flex;
    color: var(--color-text-muted);
  }

  .article-sidebar__search-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--color-navy);
    min-width: 0;
  }

  .article-sidebar__search-input::placeholder {
    color: var(--color-text-muted);
  }

  /* Search and list are hidden by default on mobile;
     only the active toggle reveals them. */
  .article-sidebar:not([data-open="true"]) .article-sidebar__search,
  .article-sidebar:not([data-open="true"]) .article-sidebar__list {
    display: none;
  }

  .article-content {
    border-radius: 24px;
    padding: 16px 12px;
    gap: 24px;
  }

  .article-content__share {
    gap: 20px;
    padding-top: 24px;
  }

  .article-content__share-title {
    font-size: 16px;
  }

  .article-content__share-actions {
    gap: 10px;
    justify-content: flex-end;
  }

  .article-content__share-btn {
    gap: 8px;
    min-height: 27px;
    padding: 5px 8px;
    border-radius: 10px;
    flex: 0 0 auto;
  }

  .article-content__share-icon img {
    filter: brightness(0) saturate(100%) invert(19%) sepia(94%) saturate(2089%) hue-rotate(186deg) brightness(92%) contrast(101%);
  }

  .article-related {
    padding: 112px var(--margin);
    gap: 44px;
  }

  .article-related__title {
    font-size: 40px;
    letter-spacing: -0.92px;
  }

  .article-related__nav-label {
    display: inline;
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: 0;
  }

  .article-related__grid > .article-card {
    flex: 0 0 276px;
  }

  .article-related__nav {
    gap: 8px;
  }

  .article-content__body h3 {
    font-size: 24px;
    overflow-wrap: anywhere;
  }

  .article-content__body p,
  .article-content__body li {
    font-size: 18px;
    overflow-wrap: anywhere;
  }

  .article-content__body ul,
  .article-content__body ol {
    padding-left: 24px;
  }

  .article-content__external-btn {
    font-size: 16px;
    padding: 10px 16px;
  }

  .article-missing {
    padding: 96px var(--margin);
  }

  .article-missing__inner h1 {
    font-size: 28px;
    letter-spacing: -0.4px;
  }

  /* Contact page */
  .contact-form-section {
    padding: 40px var(--margin) 64px;
  }

  .contact-form-section__title {
    font-size: 30px;
    letter-spacing: -0.69px;
  }

  .contact-form-section__subtitle {
    font-size: 18px;
  }

  .contact-form__row {
    flex-direction: column;
    gap: 24px;
  }

  .contact-form__row .contact-form__field {
    flex: 1 1 100%;
    min-width: 0;
  }

  .contact-toggle {
    width: 100%;
  }

  .benefit-card {
    padding: 16px;
  }

  .benefit-card__title {
    font-size: 16px;
  }

  .benefit-card__desc {
    font-size: 16px;
  }

  /* Privacy page */
  .privacy-hero {
    padding: 48px var(--margin) 40px;
  }

  .privacy-hero__title {
    font-size: 32px;
    letter-spacing: -0.7px;
  }

  .privacy-hero__subtitle {
    font-size: 18px;
  }

  .privacy-body {
    padding: 48px var(--margin);
  }

  .privacy-body__container {
    gap: 12px;
  }

  .privacy-nav {
    width: 152px;
    padding: 8px;
  }

  .privacy-nav__title {
    font-size: 13px;
    padding: 6px 8px;
    min-height: 40px;
  }

  .privacy-content {
    padding: 16px 4px;
  }

  .privacy-content__inner {
    padding: 8px;
  }

  .privacy-content__section-title {
    font-size: 20px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 16px;
  }

  .privacy-nav__item {
    font-size: 12px;
    padding: 8px 12px;
    height: auto;
    min-height: 40px;
    gap: 6px;
    line-height: 1.3;
    border-radius: 20px;
  }

  .privacy-nav__num {
    min-width: 12px;
  }

  /* Solutions page */
  .solutions-hero {
    padding: 48px var(--margin) 40px;
  }

  .solutions-hero__title {
    font-size: 30px;
    letter-spacing: -0.6px;
  }

  .solutions-hero__subtitle {
    font-size: 18px;
  }

  .solutions {
    padding: 64px var(--margin);
    gap: 24px;
  }

  .solutions__nav-title {
    font-size: 16px;
    padding: 4px 8px;
  }

  .solutions__chip {
    height: auto;
    padding: 12px 14px;
    font-size: 14px;
    white-space: normal;
  }

  .solution-card {
    padding: 24px 16px 32px;
    border-radius: 16px;
  }

  .solution-card__media {
    height: 220px;
    padding: 12px;
  }

  .solution-card.is-collapsed .solution-card__media {
    height: 160px;
  }

  .solution-card__body {
    padding: 8px 0 0;
    gap: 18px;
  }

  .solution-card__title {
    font-size: 24px;
  }

  .solution-card__desc,
  .solution-card__callout,
  .solution-card__bullet,
  .solution-card__quote {
    font-size: 16px;
  }

  .solution-card__bullet {
    min-height: auto;
    padding: 4px 0 4px 22px;
  }

  /* About page */
  .about-hero {
    padding: 48px var(--margin);
  }

  .about-hero__title {
    font-size: 32px;
    letter-spacing: -0.7px;
  }

  .about-hero__subtitle {
    font-size: 16px;
  }

  .about-story,
  .team-section,
  .advisory-section {
    padding: 48px var(--margin);
  }

  .about-story__card {
    padding: 28px 20px 20px;
  }

  .about-story__title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .about-story__text {
    font-size: 16px;
  }

  .value-item {
    padding: 16px 20px;
    align-items: flex-start;
    gap: 12px;
  }

  .value-item__title {
    font-size: 18px;
  }

  .value-item__desc {
    font-size: 15px;
  }

  .team-section,
  .advisory-section {
    gap: 32px;
  }

  .team-section__title,
  .advisory-section__title {
    font-size: 26px;
    letter-spacing: -0.5px;
  }

  .team-section__subtitle,
  .advisory-section__subtitle {
    font-size: 16px;
  }

  .team-section__header,
  .advisory-section__header {
    padding: 0;
  }

  /* Stacked card layout (column profile on top, bio below) is already
     applied at the 1024px breakpoint — only phone-specific font sizes
     need to be tightened here. */
  .team-card__name,
  .team-card__role {
    font-size: 16px;
  }

  .team-card__bio-text p {
    font-size: 15px;
  }

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

  .advisor-card__photo {
    width: 100%;
    max-width: 260px;
    height: 260px;
  }

  .advisor-card__name {
    font-size: 18px;
  }

  .advisor-card__role {
    font-size: 16px;
  }

  .advisor-card__desc {
    font-size: 15px;
  }
}

/* ========================================
   UNIFIED SUBTITLE FONT SIZE
   All section/hero subtitles are 18px across every breakpoint.
   Placed last so it wins over base + media-query overrides above.
   ======================================== */
.hero__subtitle,
.value-prop__subtitle,
.bottom-cta__subtitle,
.contact-form-section__subtitle,
.privacy-hero__subtitle,
.solutions-hero__subtitle,
.about-hero__subtitle,
.team-section__subtitle,
.advisory-section__subtitle {
  font-size: 18px;
}
