@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url("../fonts/poppins-300.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/poppins-400.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/poppins-500.ttf") format("truetype");
}

@font-face {
  font-family: "Poppins";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/poppins-600.ttf") format("truetype");
}

:root {
  --ink: #1c232b;
  --muted: #66717f;
  --line: #dde4eb;
  --paper: #ffffff;
  --soft: #f3f6f9;
  --navy: #1f2933;
  --orange: #e97922;
  --teal: #3c6f7c;
  --green: #62794d;
  --radius: 4px;
  --shadow: 0 14px 36px rgba(31, 41, 51, 0.08);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--ink);
  background: #f3f6f9;
  font-family: Poppins, Arial, sans-serif;
  line-height: 1.6;
}

main {
  animation: page-enter 220ms ease both;
}

@keyframes page-enter {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  main {
    animation: none;
  }
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.site-header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 80px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  text-decoration: none;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0;
  color: var(--muted);
  background: none;
  border: 0;
  font: inherit;
  text-transform: inherit;
  cursor: pointer;
}

.nav-dropdown-toggle::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-3px) rotate(45deg);
  transition: transform 160ms ease;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  z-index: 25;
  display: grid;
  min-width: 310px;
  gap: 4px;
  padding: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 250, 253, 0.97));
  border: 1px solid rgba(210, 221, 232, 0.95);
  border-radius: 10px;
  box-shadow: 0 24px 64px rgba(12, 24, 39, 0.16);
  backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid rgba(210, 221, 232, 0.95);
  border-left: 1px solid rgba(210, 221, 232, 0.95);
  transform: translateX(-50%) rotate(45deg);
}

.nav-dropdown-menu::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 100%;
  left: 0;
  height: 22px;
}

.nav-dropdown-menu a {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 13px 38px 13px 14px;
  color: #344253;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  font-size: 12px;
  line-height: 1.2;
  white-space: nowrap;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 14px;
  width: 7px;
  height: 7px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
  opacity: 0;
  transform: translate(-4px, -50%) rotate(45deg);
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown-menu a:hover {
  color: #10223d;
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(223, 231, 239, 0.95);
  transform: translateX(2px);
}

.nav-dropdown-menu a:hover::after {
  opacity: 1;
  transform: translate(0, -50%) rotate(45deg);
}

@media (hover: hover) and (pointer: fine) {
  .nav-dropdown:hover .nav-dropdown-menu,
  .nav-dropdown.is-open .nav-dropdown-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  .nav-dropdown:hover .nav-dropdown-toggle::after,
  .nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: translateY(1px) rotate(225deg);
  }
}

.site-nav sup {
  margin-left: 2px;
  font-size: 8px;
  line-height: 0;
  vertical-align: super;
}

.site-nav .nav-sif-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding-top: 0;
}

.site-nav .nav-sif-link span {
  position: absolute;
  bottom: calc(100% - 1px);
  left: 0;
  color: var(--orange);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.site-nav .nav-sif-link em {
  font-style: normal;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.nav-dropdown.is-active > .nav-dropdown-toggle {
  color: var(--ink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.admin-quick-link {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 30;
  display: inline-flex;
  width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 50%;
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.admin-quick-link:hover {
  color: var(--orange);
  border-color: var(--orange);
  transform: translateY(-1px);
}

.admin-quick-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.button.primary {
  color: #fff !important;
  background: var(--orange);
}

.button.is-disabled {
  cursor: default;
  opacity: 0.78;
}

.sif-read-framework {
  color: #fff !important;
  background: #f05b21;
  border-color: #f05b21;
  box-shadow: 0 12px 24px rgba(240, 91, 33, 0.18);
}

.nav-cta {
  color: var(--ink) !important;
  font-weight: 600;
}

.button.secondary {
  color: var(--navy);
  background: #fff;
  border-color: var(--line);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.home-slider,
.newsletter-band,
.report-highlight,
.page-hero,
.section,
.content-split,
.contact-grid,
.article {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 48px;
  align-items: center;
  min-height: 640px;
  padding: 76px 0;
}

.home-slider {
  padding: 34px 0 0;
}

.slider-viewport {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(31, 41, 51, 0.94), rgba(31, 41, 51, 0.76)),
    url("../images/slider/slider-1.webp") center/cover;
  border: 1px solid #d6dbe0;
  border-radius: var(--radius);
}

.slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) 360px;
  gap: 42px;
  align-items: end;
  padding: clamp(32px, 6vw, 72px);
  opacity: 0;
  visibility: hidden;
  transform: translateX(18px);
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.slide-copy {
  max-width: 760px;
}

.slide .hero-slide-title {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 6vw, 72px);
  line-height: 1.02;
  letter-spacing: 0;
}

.slide-copy > p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 19px;
}

.slide .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.slide-aside {
  padding: 26px;
  color: #fff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
}

.slide-number {
  display: block;
  margin-bottom: 54px;
  color: var(--orange);
  font-size: 42px;
  font-weight: 600;
  line-height: 1;
}

.slide-aside strong {
  display: block;
  font-size: 22px;
  line-height: 1.2;
}

.slide-aside p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.75);
}

.slider-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-right: 1px solid var(--line);
  border-left: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.slider-controls button {
  min-height: 76px;
  padding: 16px 20px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--muted);
  background: #fff;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
}

.slider-controls button:last-child {
  border-right: 0;
}

.slider-controls button span {
  display: block;
  margin-bottom: 4px;
  color: var(--orange);
}

.slider-controls button.is-active {
  color: var(--ink);
  background: var(--soft);
  box-shadow: inset 0 3px 0 var(--orange);
}

.hero h1,
.page-hero h1,
.article-header h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(38px, 5vw, 60px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p,
.page-hero p,
.article-header p {
  max-width: 720px;
  color: var(--muted);
  font-size: 19px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange) !important;
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.hero-panel {
  display: grid;
  gap: 14px;
  padding: 28px;
  background: var(--navy);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel span {
  padding: 18px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border-left: 4px solid var(--orange);
  border-radius: var(--radius);
  font-weight: 600;
}

.section,
.page-hero,
.content-split,
.contact-grid,
.article {
  padding: 68px 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.section-heading > p {
  max-width: 440px;
  margin: 0;
  color: var(--muted);
}

.section-heading h2,
.content-split h2,
.prose h2,
.contact-details h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
  letter-spacing: 0;
}

.feature-grid,
.insight-grid,
.post-grid,
.people-grid,
.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.person-card,
.focus-card,
.post-card,
.report-card,
.quote-panel,
.contact-form,
.contact-details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.feature-card,
.person-card,
.focus-card {
  padding: 24px;
  text-decoration: none;
}

.feature-card {
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
  border-color: #c7cfd7;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card span,
.focus-card span,
.report-year {
  color: var(--orange);
  font-weight: 600;
}

.newsletter-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.7fr);
  gap: 28px;
  align-items: center;
  margin-top: 30px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.newsletter-band h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}

.newsletter-message {
  margin: 10px 0 0;
  color: var(--green);
  font-weight: 600;
}

.newsletter-message.error {
  color: #b42318;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.newsletter-form input {
  min-height: 42px;
  width: 100%;
  padding: 10px 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

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

.hp-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.feature-card h3,
.focus-card h2,
.person-card h3,
.post-card h3,
.report-card h2 {
  margin: 10px 0;
  line-height: 1.15;
  letter-spacing: 0;
}

.feature-card p,
.person-card p,
.focus-card p,
.post-card p,
.report-card p,
.content-split p,
.prose p,
.contact-details p {
  color: var(--muted);
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: min(1180px, calc(100% - 40px));
  margin: 40px auto;
  padding: 34px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.report-highlight {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
  margin: 20px auto 0;
  padding: 42px;
  color: #fff;
  background: var(--navy);
  border-radius: var(--radius);
}

.report-highlight h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.06;
}

.report-highlight p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
}

.report-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.report-stat-grid span {
  min-height: 112px;
  display: flex;
  align-items: end;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 600;
}

.cta-band p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
}

.post-card {
  overflow: hidden;
  box-shadow: none;
}

.post-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: var(--soft);
}

.post-card div {
  padding: 20px;
}

.text-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.post-card h3 a,
.read-more {
  text-decoration: none;
}

.post-meta {
  color: var(--teal) !important;
  font-size: 13px;
  font-weight: 600;
}

.read-more {
  color: var(--orange);
  font-weight: 600;
}

.content-split,
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
}

.quote-panel {
  align-self: start;
  padding: 32px;
  color: #fff;
  background: var(--green);
  font-size: 28px;
  font-weight: 600;
  line-height: 1.15;
}

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

.report-list {
  display: grid;
  gap: 16px;
}

.report-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 24px;
}

.article {
  max-width: 920px;
}

.article-header {
  margin-bottom: 32px;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

.article-back-link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
}

.article-back-link:hover {
  color: var(--orange);
}

.article-image {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.article-body {
  overflow-wrap: anywhere;
  margin-top: 32px;
  font-size: 19px;
}

.article-body h2,
.article-body h3 {
  margin-top: 34px;
  line-height: 1.15;
}

.article-body img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  cursor: zoom-in;
}

.article-body figure,
.article-media {
  margin: 34px 0;
}

.article-body figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

.media-page {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: #f4f7fa;
}

.media-page::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 250, 0.78) 48%, rgba(232, 239, 246, 0.82)),
    radial-gradient(circle at 16% 14%, rgba(247, 124, 29, 0.1), transparent 30%),
    radial-gradient(circle at 86% 18%, rgba(16, 34, 61, 0.14), transparent 34%);
  pointer-events: none;
}

.media-page::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 61, 0.042) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 34, 61, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 72%);
  opacity: 0.5;
  pointer-events: none;
}

.media-animated-bg {
  display: none;
}

.media-animated-bg span {
  display: none;
}

.media-page-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 34px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 72px;
}

.media-hero {
  max-width: 760px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}

.media-hero h1 {
  max-width: 720px;
  margin: 0;
  color: #10223d;
  font-size: clamp(42px, 5.8vw, 74px);
  font-weight: 600;
  line-height: 1.02;
}

.media-hero > div > p:not(.eyebrow) {
  max-width: 660px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.media-contact-strip span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}

.media-filter-bar[hidden] {
  display: none !important;
}

.media-filter-bar button {
  min-height: 42px;
  padding: 10px 14px;
  color: #344253;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.media-filter-bar button:hover,
.media-filter-bar button.is-active {
  color: #fff;
  background: #10223d;
  border-color: #10223d;
}

.media-coverage-section {
  display: grid;
  gap: 20px;
  padding-top: 0;
}

.media-coverage-list {
  column-count: 4;
  column-gap: 18px;
}

.media-coverage-list.is-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1px;
  grid-auto-flow: dense;
  column-count: initial;
  column-gap: 18px;
}

.media-coverage-card {
  display: block;
  align-self: start;
  min-width: 0;
  margin: 0 0 18px;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(211, 221, 231, 0.82);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(16, 34, 61, 0.09);
  transition: box-shadow 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.media-coverage-card:hover,
.media-coverage-card:focus-within {
  border-color: rgba(247, 124, 29, 0.34);
  box-shadow: 0 20px 46px rgba(16, 34, 61, 0.14);
  transform: translateY(-2px);
}

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

.media-coverage-image {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  border-radius: 8px;
  background: transparent;
  cursor: pointer;
}

.media-coverage-image::before {
  content: none;
}

.media-coverage-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(16, 34, 61, 0.38);
  opacity: 0;
  transition: opacity 180ms ease;
}

.media-coverage-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 220ms ease;
}

.media-coverage-link:hover::after,
.media-coverage-link:focus-visible::after {
  opacity: 1;
}

.media-coverage-link:hover img,
.media-coverage-link:focus-visible img {
  transform: scale(1.03);
}

.media-link-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  width: 34px;
  height: 34px;
  padding: 0;
  color: var(--orange);
  background: transparent;
  border-radius: 0;
  filter: drop-shadow(0 3px 8px rgba(12, 24, 39, 0.42));
  fill: none;
  opacity: 0;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
  transform: translate(-50%, -42%);
  transition: opacity 180ms ease, transform 180ms ease;
}

.media-coverage-link:hover .media-link-icon,
.media-coverage-link:focus-visible .media-link-icon {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.media-coverage-image span {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 180px;
  place-items: center;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(16, 34, 61, 0.94), rgba(50, 69, 84, 0.92)),
    radial-gradient(circle at 78% 16%, rgba(233, 121, 34, 0.28), transparent 34%);
  font-size: 44px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.media-coverage-meta {
  display: grid;
  gap: 5px;
  margin-bottom: 14px;
}

.media-coverage-foot {
  display: grid;
  gap: 5px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.media-coverage-meta span,
.media-coverage-foot span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-coverage-meta small,
.media-coverage-foot small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.media-coverage-card h3 {
  margin: 0;
  color: #10223d;
  font-size: 21px;
  line-height: 1.2;
}

.media-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: 26px 0 0;
  background: transparent;
  border-top: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.media-contact-strip > div {
  display: grid;
  gap: 4px;
}

.media-contact-strip strong {
  color: #10223d;
  font-size: 20px;
  line-height: 1.25;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 24px;
}

.media-modal[hidden] {
  display: none;
}

.media-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(16, 34, 61, 0.56);
  backdrop-filter: blur(8px);
}

.media-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 18px;
  width: min(620px, 100%);
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 80px rgba(12, 24, 39, 0.22);
}

.media-modal-image {
  display: block;
  width: 100%;
  max-height: 360px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: #eef3f7;
}

.media-modal-dialog > small {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.media-modal-dialog > button {
  position: absolute;
  top: 16px;
  right: 16px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--muted);
  background: #f3f6f9;
  border: 1px solid var(--line);
  border-radius: 50%;
  font: inherit;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
}

.media-modal-meta,
.media-modal-foot {
  display: grid;
  gap: 5px;
}

.media-modal-meta span,
.media-modal-foot span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.media-modal-meta small,
.media-modal-foot small {
  color: var(--muted);
  font-size: 13px;
}

.media-modal-dialog h2 {
  max-width: 520px;
  margin: 0;
  color: #10223d;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.12;
}

.media-modal-dialog p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.media-modal-dialog p a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.media-modal-dialog p a:hover {
  text-decoration: underline;
}

.media-modal-dialog .button[hidden] {
  display: none;
}

.research-hub {
  position: relative;
  min-height: calc(100vh - 92px);
  overflow: hidden;
  background: #f4f7fa;
}

.research-hub::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.88), rgba(244, 247, 250, 0.78) 50%, rgba(232, 239, 246, 0.84)),
    radial-gradient(circle at 16% 18%, rgba(247, 124, 29, 0.1), transparent 30%),
    radial-gradient(circle at 84% 12%, rgba(16, 34, 61, 0.14), transparent 34%);
  pointer-events: none;
}

.research-hub::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 61, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 34, 61, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 30%, #000 0, transparent 76%);
  opacity: 0.52;
  pointer-events: none;
}

.research-hub-bg {
  position: absolute;
  inset: -18%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.research-hub-bg span {
  position: absolute;
  display: block;
  width: 34vw;
  min-width: 330px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(72px);
  opacity: 0.34;
  animation: sifFloat 22s ease-in-out infinite alternate;
}

.research-hub-bg span:nth-child(1) {
  left: 2%;
  top: 4%;
  background: rgba(247, 124, 29, 0.32);
}

.research-hub-bg span:nth-child(2) {
  right: 6%;
  top: 12%;
  background: rgba(16, 34, 61, 0.3);
  animation-duration: 25s;
}

.research-hub-bg span:nth-child(3) {
  left: 42%;
  bottom: -6%;
  background: rgba(93, 117, 136, 0.24);
  animation-duration: 28s;
}

.research-hub-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 42px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 78px 0 86px;
}

.research-hub-hero {
  max-width: 880px;
}

.research-hub-hero h1 {
  margin: 0;
  color: #10223d;
  font-size: clamp(40px, 5.6vw, 68px);
  font-weight: 600;
  line-height: 1.04;
}

.research-hub-hero > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.research-hub-hero .research-hub-lead {
  margin-top: 18px;
  color: #10223d;
  font-size: 21px;
  font-weight: 500;
  line-height: 1.38;
}

.research-hub-hero .research-hub-lead + p {
  margin-top: 10px;
}

.research-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
}

.research-hub-card {
  position: relative;
  display: grid;
  min-height: 280px;
  align-content: space-between;
  padding: 26px;
  color: inherit;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(223, 231, 239, 0.95);
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(16, 34, 61, 0.09);
  text-decoration: none;
  backdrop-filter: blur(18px);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.research-hub-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 42px;
  height: 3px;
  background: var(--orange);
}

.research-hub-card:hover {
  border-color: rgba(247, 124, 29, 0.42);
  box-shadow: 0 26px 68px rgba(16, 34, 61, 0.13);
  transform: translateY(-3px);
}

.research-hub-card span {
  display: block;
  max-width: 260px;
  color: #10223d;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 600;
  line-height: 1.08;
}

.research-hub-card p {
  margin: 28px 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.58;
}

.research-hub-card strong {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
}

.research-latest-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 18px;
  align-items: start;
}

.research-latest-panel {
  display: grid;
  gap: 18px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(223, 231, 239, 0.95);
  border-radius: 10px;
  box-shadow: 0 20px 54px rgba(16, 34, 61, 0.09);
  backdrop-filter: blur(18px);
}

.research-latest-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(223, 231, 239, 0.95);
}

.research-latest-head h2 {
  margin: 0;
  color: #10223d;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.12;
}

.research-latest-head a {
  flex: 0 0 auto;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.research-report-list,
.research-insight-list {
  display: grid;
  gap: 12px;
}

.research-report-item {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  color: inherit;
  border-bottom: 1px solid rgba(223, 231, 239, 0.72);
  text-decoration: none;
}

.research-report-item:last-child {
  border-bottom: 0;
}

.research-report-item time,
.research-insight-item time {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.35;
}

.research-report-item span,
.research-insight-item span {
  display: grid;
  gap: 6px;
}

.research-report-item strong,
.research-insight-item strong {
  color: #10223d;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
}

.research-report-item small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.research-report-item:hover strong,
.research-insight-item:hover strong {
  color: var(--orange);
}

.research-insight-item {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.research-insight-item img {
  width: 112px;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(223, 231, 239, 0.95);
  border-radius: 8px;
}

@media (prefers-reduced-motion: reduce) {
  .media-animated-bg span,
  .research-hub-bg span {
    animation: none;
  }
}

@media (max-width: 900px) {
  .research-hub-inner {
    width: calc(100% - 36px);
    padding: 56px 0 64px;
  }

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

  .research-hub-card {
    display: grid;
    min-height: 0;
    padding: 24px;
  }

  .research-latest-grid {
    grid-template-columns: 1fr;
  }

  .media-page-inner {
    width: calc(100% - 36px);
    padding: 52px 0 58px;
  }

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

  .media-hero {
    align-items: start;
  }

  .media-filter-bar button {
    flex: 1 1 220px;
  }

  .media-coverage-list {
    column-count: 2;
    column-gap: 14px;
  }

  .media-coverage-list.is-masonry {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 14px;
  }

  .media-coverage-card {
    margin-bottom: 14px;
  }

  .media-contact-strip .button {
    justify-self: center;
  }
}

@media (max-width: 600px) {
  .research-hub-inner {
    width: calc(100% - 32px);
    gap: 30px;
    padding: 44px 0 52px;
  }

  .research-hub-bg {
    inset: -24%;
  }

  .research-hub-bg span {
    min-width: 280px;
    filter: blur(56px);
  }

  .research-hub-hero h1 {
    font-size: 34px;
  }

  .research-hub-hero > p:not(.eyebrow) {
    font-size: 16px;
  }

  .research-hub-card {
    min-height: 0;
    padding: 20px;
    border-radius: 8px;
  }

  .research-latest-panel {
    padding: 18px;
    border-radius: 8px;
  }

  .research-latest-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .research-report-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .research-insight-item {
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .research-insight-item img {
    width: 96px;
  }

  .media-page-inner {
    width: calc(100% - 32px);
    gap: 28px;
    padding: 42px 0 48px;
  }

  .media-hero h1 {
    font-size: clamp(38px, 13vw, 56px);
  }

  .media-hero > div > p:not(.eyebrow) {
    font-size: 19px;
  }

  .media-filter-bar {
    display: grid;
    gap: 8px;
    padding-bottom: 22px;
  }

  .media-filter-bar button {
    width: 100%;
  }

  .media-coverage-list,
  .media-coverage-list.is-masonry {
    display: block;
    column-count: 1;
    column-gap: 0;
  }

  .media-coverage-card {
    margin-bottom: 18px;
  }

  .media-modal {
    padding: 16px;
  }

  .media-modal-dialog {
    padding: 24px 18px 20px;
  }

  .media-contact-strip {
    padding: 22px 0 0;
    border-radius: 0;
  }

}

.share-panel {
  margin-top: 44px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.share-panel span {
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.share-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.share-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.share-links a svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.share-links a:hover {
  border-color: var(--orange);
  color: var(--orange);
  transform: translateY(-1px);
}

.more-posts {
  min-width: 0;
  max-width: 100%;
  margin-top: 58px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

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

.more-post-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.more-post-image {
  display: block;
  background: #eef3f7;
}

.more-post-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.more-post-card div {
  padding: 16px;
}

.more-post-card time {
  color: var(--orange);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.more-post-card h3 {
  margin: 8px 0 0;
  font-size: 17px;
  line-height: 1.25;
}

.more-post-card h3 a {
  text-decoration: none;
}

.image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: rgba(18, 24, 31, 0.86);
}

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

.image-lightbox img {
  max-width: min(1120px, 100%);
  max-height: calc(100vh - 92px);
  object-fit: contain;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
  cursor: default;
}

.image-lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font: inherit;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.contact-form,
.contact-details {
  padding: 28px;
}

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

.contact-form label {
  display: grid;
  gap: 6px;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea,
.admin-form input,
.admin-form textarea,
.admin-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font: inherit;
}

.contact-details a {
  display: block;
  margin: 8px 0;
  color: var(--orange);
  font-weight: 600;
}

.site-footer {
  margin-top: 10px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid var(--line);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 0.8fr) minmax(0, 1.55fr);
  gap: clamp(34px, 5vw, 72px);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 28px;
}

.footer-brand img {
  width: min(210px, 100%);
  height: auto;
}

.footer-brand p {
  max-width: 420px;
  margin: 14px 0 16px;
  color: var(--muted);
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 180ms ease, border-color 180ms ease;
}

.social-links a:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.social-links img,
.social-links svg {
  width: 18px;
  height: 18px;
  fill: var(--ink);
}

.social-links .social-icon-linkedin {
  width: 17px;
  height: 17px;
}

.footer-nav {
  display: grid;
  grid-template-columns: 0.9fr 0.85fr 0.85fr minmax(190px, 1.25fr);
  gap: 22px;
}

.footer-nav h2 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-nav a {
  display: block;
  margin: 7px 0;
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.footer-nav a:hover {
  color: var(--orange);
}

.footer-nav .footer-contact-email {
  margin: 5px 0;
  color: var(--ink);
  font-size: 12px;
}

.footer-nav .footer-contact-email:hover {
  color: var(--orange);
}

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

.footer-bottom a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 860px) {
  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 96px;
    right: 18px;
    left: 18px;
    z-index: 45;
    display: none;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    padding: 18px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
    box-shadow: 0 22px 60px rgba(12, 24, 39, 0.16);
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav > a,
  .nav-dropdown-toggle {
    width: 100%;
  }

  .nav-dropdown {
    display: grid;
    gap: 8px;
    width: 100%;
  }

  .nav-dropdown-toggle {
    justify-content: space-between;
  }

  .nav-dropdown-menu {
    position: static;
    left: auto;
    width: 100%;
    min-width: 0;
    gap: 4px;
    padding: 8px;
    background: #f6f9fb;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
    backdrop-filter: none;
    display: none;
    opacity: 1;
    pointer-events: auto;
    transform: none !important;
  }

  .nav-dropdown.is-open .nav-dropdown-menu {
    display: grid;
    transform: none !important;
  }

  .nav-dropdown.is-open .nav-dropdown-toggle::after {
    transform: translateY(1px) rotate(225deg);
  }

  .nav-dropdown-menu::before,
  .nav-dropdown-menu::after {
    display: none;
  }

  .nav-dropdown-menu a {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 12px;
  }

  .nav-dropdown-menu a::after {
    display: none;
  }

  .nav-dropdown-menu a:hover {
    transform: none;
  }

  .hero,
  .slide,
  .newsletter-band,
  .report-highlight,
  .content-split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .feature-grid,
  .insight-grid,
  .post-grid,
  .people-grid,
  .focus-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .newsletter-form,
  .cta-band,
  .report-card,
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    height: 61px;
    max-width: 250px;
  }

  .slider-viewport {
    min-height: 680px;
  }

  .slide {
    align-items: center;
    padding: 28px;
  }

  .slider-controls {
    grid-template-columns: 1fr;
  }

  .slider-controls button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .newsletter-form {
    display: flex;
  }

  .footer-main,
  .footer-nav {
    grid-template-columns: 1fr;
  }
}

/* Institutional redesign pass */
.institutional-hero {
  position: relative;
  width: 100%;
  min-height: 580px;
  margin: 0;
  padding: 0;
  color: #fff;
  overflow: hidden;
  background: #12171d;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 23, 29, 0.78) 0%, rgba(18, 23, 29, 0.52) 48%, rgba(18, 23, 29, 0.14) 100%),
    var(--hero-image) var(--hero-position, center center)/cover;
  transform: scale(1.02);
  animation: heroKenBurns 6800ms ease-out forwards;
  transition: opacity 260ms ease;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.11;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.28) 1px, transparent 0);
  background-size: 4px 4px;
  mix-blend-mode: overlay;
}

@keyframes heroKenBurns {
  from {
    transform: scale(1.02) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.08) translate3d(-10px, -6px, 0);
  }
}

.institutional-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: min(1240px, calc(100% - 48px));
  min-height: 580px;
  margin: 0 auto;
  padding: clamp(38px, 6vw, 72px) 0 92px;
  align-items: end;
}

.hero-slides {
  position: relative;
  min-height: 370px;
}

.institutional-hero .slide {
  position: absolute;
  inset: auto 0 0 0;
  display: block;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 320ms ease, transform 320ms ease, visibility 320ms ease;
}

.institutional-hero .slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.institutional-hero .slide .eyebrow,
.institutional-hero .hero-slide-title,
.institutional-hero .slide > p:not(.eyebrow),
.institutional-hero .slide .hero-actions {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 420ms ease, transform 420ms ease;
}

.institutional-hero .slide.is-active .eyebrow {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 60ms;
}

.institutional-hero .slide.is-active .hero-slide-title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 130ms;
}

.institutional-hero .slide.is-active > p:not(.eyebrow) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 210ms;
}

.institutional-hero .slide.is-active .hero-actions {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 280ms;
}

.institutional-hero .hero-slide-title {
  max-width: 820px;
  margin: 0;
  color: #fff;
  font-size: clamp(38px, 5.4vw, 62px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

.institutional-hero .slide > p:not(.eyebrow) {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.55;
}

.institutional-hero .eyebrow {
  color: var(--orange) !important;
}

.institutional-hero .hero-actions {
  margin-top: 26px;
}

.institutional-hero .button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.32);
}

.hero-index {
  position: absolute;
  left: 0;
  bottom: 34px;
  display: flex;
  gap: 12px;
  border-top: 0;
}

.hero-index button {
  position: relative;
  display: block;
  width: 64px;
  height: 14px;
  padding: 0;
  border: 0;
  color: rgba(255, 255, 255, 0.56);
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.hero-index button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-50%);
}

.hero-index button::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
  width: 0;
  height: 2px;
  background: var(--orange);
  transform: translateY(-50%);
}

.hero-index span {
  display: none;
}

.hero-index strong {
  display: none;
}

.hero-index em {
  display: none;
}

.hero-index button.is-active {
  color: #fff;
}

.hero-index button.is-active::after {
  background: rgba(255, 255, 255, 0.22);
}

.hero-index button.is-active::before {
  animation: heroIndexProgress 6500ms linear forwards;
}

@keyframes heroIndexProgress {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-index button.is-active::before {
    animation: none;
  }

  .institutional-hero .slide .eyebrow,
  .institutional-hero .hero-slide-title,
  .institutional-hero .slide > p:not(.eyebrow),
  .institutional-hero .slide .hero-actions {
    transition: none;
  }
}

.newsletter-strip,
.home-intro,
.research-list,
.report-feature,
.latest-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.newsletter-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(390px, 0.78fr);
  gap: 42px;
  align-items: center;
  margin-top: 34px;
  padding: 0 0 34px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}

.newsletter-strip > div > span,
.section-title-row span,
.report-feature span,
.intro-label span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.newsletter-strip h2 {
  margin: 4px 0 0;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.12;
}

.newsletter-strip p {
  max-width: 560px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.newsletter-strip .newsletter-form {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.newsletter-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.newsletter-input-row input {
  min-height: 46px;
  border: 0;
  border-bottom: 1px solid #bfc6cc;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font: inherit;
  outline: none;
}

.newsletter-strip button {
  border: 1px solid var(--ink);
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-weight: 600;
  min-height: 46px;
  padding: 0 22px;
  border-radius: var(--radius);
  cursor: pointer;
}

.newsletter-strip button:hover {
  background: var(--orange);
}

.turnstile-widget {
  min-height: 0;
}

.turnstile-widget .cf-turnstile {
  max-width: 100%;
}

.consent-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 7px;
  align-items: center;
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.45;
}

.consent-check span {
  color: #1c232b;
}

.consent-check input {
  appearance: none;
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 1px solid #aeb8c2;
  border-radius: 5px;
  background: #fff;
  cursor: pointer;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.consent-check input::before {
  content: "";
  width: 8px;
  height: 5px;
  border: solid #fff;
  border-width: 0 0 2px 2px;
  opacity: 0;
  transform: rotate(-45deg) translate(1px, -1px);
}

.consent-check input:checked {
  border-color: var(--orange);
  background: var(--orange);
}

.consent-check input:checked::before {
  opacity: 1;
}

.consent-check input:focus-visible {
  box-shadow: 0 0 0 3px rgba(231, 92, 40, 0.18);
  outline: none;
}

.subscribe-popup {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  max-width: min(360px, calc(100% - 32px));
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity var(--transition), transform var(--transition);
}

.subscribe-popup.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.subscribe-popup > div {
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 15px 16px;
  color: #143c2a;
  background: #e9f6ef;
  border: 1px solid rgba(31, 122, 79, 0.22);
  border-radius: var(--radius);
  box-shadow: 0 18px 50px rgba(31, 41, 51, 0.14);
}

.subscribe-popup.is-error > div {
  color: #7f1d1d;
  background: #fff0ee;
  border-color: rgba(180, 35, 24, 0.22);
}

.subscribe-popup p {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
}

.subscribe-popup button {
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.home-intro {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 60px;
  padding: 76px 0;
  border-bottom: 1px solid var(--line);
}

.intro-label {
  display: grid;
  align-content: start;
  gap: 8px;
}

.intro-label strong {
  font-size: 14px;
}

.intro-copy h2 {
  max-width: 860px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 54px);
  line-height: 1.08;
}

.intro-copy p {
  max-width: 760px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
}

.research-list,
.latest-section {
  padding: 74px 0;
}

.section-title-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.section-title-row h2 {
  margin: 6px 0 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.section-title-row a,
.report-feature a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.research-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: baseline;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  text-decoration: none;
}

.research-row:last-child {
  border-bottom: 1px solid var(--line);
}

.research-row span {
  color: var(--orange);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.research-row h3 {
  margin: 0;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
}

.research-row p {
  margin: 0;
  color: var(--muted);
}

.report-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr) auto;
  gap: 34px;
  align-items: end;
  padding: 42px;
  color: #fff;
  background: #252b31;
}

.report-feature h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.report-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.latest-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.latest-item {
  display: grid;
  grid-template-columns: 160px minmax(0, 0.8fr) minmax(280px, 1fr);
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.latest-item time {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.latest-item h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.18;
}

.latest-item h3 a {
  text-decoration: none;
}

.latest-item p {
  margin: 0;
  color: var(--muted);
}

.modern-overview,
.home-sif-feature,
.featured-report,
.article-showcase,
.home-contact-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.home-sif-feature {
  display: grid;
  grid-template-columns: 72px minmax(420px, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: center;
  padding: 68px 0 62px;
  border-top: 1px solid var(--line);
}

.home-sif-side {
  align-self: stretch;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding-top: 18px;
}

.home-sif-side span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.home-sif-side::after {
  content: "";
  width: 1px;
  height: 148px;
  background: var(--orange);
}

.home-sif-preview {
  padding: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(16, 34, 61, 0.08);
}

.home-sif-preview img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius) - 2px);
}

.home-sif-feature h2 {
  max-width: 620px;
  margin: 0;
  color: #10223d;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.05;
}

.home-sif-feature sup {
  margin-left: 3px;
  font-size: 0.34em;
  line-height: 0;
  vertical-align: super;
}

.home-sif-feature p {
  max-width: 580px;
  color: var(--muted);
  font-size: 17px;
}

.home-sif-feature .button {
  margin-top: 10px;
}

.home-sif-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.home-sif-points article {
  min-height: 180px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.home-sif-points span {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-sif-points p {
  margin: 22px 0 0;
  color: #10223d;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.35;
}

.modern-overview {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 56px;
  align-items: start;
  padding: 78px 0 64px;
}

.overview-copy {
  position: sticky;
  top: 112px;
}

.overview-copy h2,
.featured-report h2,
.article-showcase-head h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.overview-copy p:not(.eyebrow),
.featured-report p {
  color: var(--muted);
  font-size: 17px;
}

.overview-cards {
  display: grid;
  gap: 14px;
}

.overview-cards a {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(220px, 1fr);
  gap: 24px;
  align-items: center;
  padding: 24px;
  color: inherit;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  position: relative;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.overview-cards a:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 30px rgba(22, 38, 59, 0.08);
  transform: translateY(-2px);
}

.overview-cards h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  font-size: 22px;
  line-height: 1.15;
}

.overview-cards h3::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--orange);
  opacity: 0.65;
  transition: width 180ms ease, opacity 180ms ease;
}

.overview-cards a:hover h3::after {
  width: 34px;
  opacity: 1;
}

.overview-cards p {
  margin: 0;
  color: var(--muted);
}

.home-focus-section {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
  padding: 68px 0 54px;
  overflow: hidden;
}

.home-focus-section .overview-copy {
  position: static;
  display: grid;
  gap: 10px;
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
}

.home-focus-section .overview-copy h2 {
  font-size: clamp(31px, 3.5vw, 46px);
}

.home-focus-section .eyebrow,
.research-insights-block .eyebrow,
.home-initiatives-section .section-title-row > div > span,
.home-contact-cta .eyebrow,
.home-newsletter-final > div > span {
  font-size: 16px !important;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-focus-section .overview-copy p:not(.eyebrow) {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
}

.home-focus-section .text-link {
  display: inline-flex;
  justify-self: start;
  margin: 0 auto;
  min-width: 220px;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  color: #10223d;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-weight: 600;
}

.home-focus-section .text-link:hover {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.home-focus-divider {
  display: block;
  width: min(760px, 72%);
  height: 1px;
  margin: -8px auto 0;
  background: linear-gradient(90deg, transparent, rgba(16, 34, 61, 0.18), transparent);
}

.home-focus-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
}

.home-focus-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  align-items: center;
  justify-items: center;
  min-height: 194px;
  padding: 24px 16px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(12, 24, 39, 0.08);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.home-focus-card:hover {
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(233, 121, 34, 0.36);
}

.home-focus-icon {
  position: relative;
  display: grid;
  width: 66px;
  height: 66px;
  place-items: center;
  color: var(--orange);
  background: #f3f6f9;
  border: 1px solid #d8e2ea;
  border-radius: 50%;
}

.home-focus-icon svg {
  width: 52px;
  height: 52px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.home-focus-card h3 {
  margin: 0;
  color: #10223d;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1.2;
  text-transform: uppercase;
}

.home-focus-card p {
  display: none;
}

.featured-report {
  position: relative;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 72px;
  padding: 36px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 22, 38, 0.98) 0%, rgba(17, 33, 54, 0.96) 48%, rgba(31, 44, 57, 0.98) 100%),
    radial-gradient(circle at 88% 14%, rgba(247, 87, 28, 0.16), transparent 32%),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 42%);
  border-radius: var(--radius);
  box-shadow: 0 22px 54px rgba(12, 24, 39, 0.14);
  overflow: hidden;
}

.featured-report::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -52px;
  width: 250px;
  height: 250px;
  background:
    radial-gradient(circle at 50% 50%, transparent 0 34%, rgba(255, 255, 255, 0.24) 35% 36%, transparent 37%),
    linear-gradient(90deg, transparent 47%, rgba(255, 255, 255, 0.22) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(255, 255, 255, 0.22) 48% 52%, transparent 53%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.02) 68%, transparent 70%);
  border: 2px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  filter: blur(1.5px);
  opacity: 0.32;
  pointer-events: none;
}

.featured-report > div {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.research-insights-block > div > .eyebrow,
.research-insights-block > div > h2 {
  text-align: left;
}

.research-insights-block > div > h2 {
  margin-right: 0;
  margin-left: 0;
}

.featured-report p {
  color: rgba(255, 255, 255, 0.76);
}

.featured-report-list {
  display: grid;
  gap: 0;
  max-width: 780px;
  margin-top: 22px;
}

.featured-report-item {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  padding: 11px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: border-color 180ms ease, color 180ms ease;
}

.featured-report-item:hover {
  border-color: rgba(255, 255, 255, 0.34);
}

.featured-report-item::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 22px;
  height: 1px;
  background: var(--orange);
  opacity: 0;
  transform: translateY(-50%) scaleX(0.55);
  transform-origin: right center;
  transition: opacity 180ms ease, transform 180ms ease;
}

.featured-report-item:hover::after {
  opacity: 1;
  transform: translateY(-50%) scaleX(1);
}

.featured-report-item time {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}

.featured-report-item strong {
  display: block;
  max-width: calc(100% - 36px);
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.35;
}

.featured-report-item small {
  display: block;
  max-width: calc(100% - 36px);
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.45;
}

.research-insights-block {
  align-items: stretch;
  margin-bottom: 28px;
}

.research-insights-block > .button {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  margin: auto 0 0;
  color: #fff !important;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(8px);
}

.research-insights-block > .button:hover {
  background: var(--orange);
  border-color: var(--orange);
}

.home-insights-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 42px;
}

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

.home-insights-action {
  display: flex;
  justify-content: flex-end;
  margin-top: 16px;
}

.home-insight-card {
  display: grid;
  grid-template-rows: 190px 1fr;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 24, 39, 0.08);
}

.home-insight-image {
  display: block;
  overflow: hidden;
  background: #eef3f7;
}

.home-insight-image img {
  width: 100%;
  height: 190px;
  min-height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.home-insight-card:hover .home-insight-image img {
  transform: scale(1.035);
}

.home-insight-card > div {
  display: flex;
  min-height: 202px;
  flex-direction: column;
  padding: 20px 22px 22px;
}

.home-insight-card time {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.home-insight-card h3 {
  margin: 12px 0 10px;
  font-size: 20px;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-insight-card h3 a {
  color: var(--ink);
  text-decoration: none;
}

.home-insight-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.home-insight-link {
  display: inline-flex;
  margin-top: auto;
  padding-top: 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.research-insight-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 20px;
}

.research-insight-strip a {
  display: grid;
  gap: 6px;
  padding: 16px;
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  text-decoration: none;
}

.research-insight-strip em {
  color: var(--orange);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.research-insight-strip strong {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.research-insight-strip span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  font-weight: 600;
}

.report-new-badge {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  vertical-align: 1px;
}

@media (max-width: 900px) {
  .featured-report-item {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .featured-report-item strong {
    max-width: none;
    padding-right: 32px;
  }
}

.featured-report .report-download-form {
  flex: 0 0 auto;
}

.featured-report .report-download-form .button {
  width: auto;
  border-color: #fff;
}

.article-showcase {
  padding: 0 0 78px;
}

.home-initiatives-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 0 0 72px;
}

.home-initiatives-section .section-title-row {
  align-items: start;
  margin-bottom: 28px;
  padding-bottom: 0;
  border-bottom: 0;
}

.home-initiatives-section .section-title-row p {
  max-width: 680px;
  color: var(--muted);
}

.home-initiative-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: none;
  margin: 0 auto;
}

.home-initiative-card {
  position: relative;
  display: grid;
  min-height: 250px;
  padding: 32px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(241, 246, 251, 0.96)),
    linear-gradient(135deg, rgba(10, 37, 68, 0.08), rgba(247, 124, 29, 0.04));
  border: 1px solid #d9e3ec;
  border-top: 4px solid #123555;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(12, 24, 39, 0.06);
  overflow: hidden;
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.home-initiative-card:hover {
  background: #fff;
  border-color: rgba(18, 53, 85, 0.34);
  box-shadow: 0 24px 54px rgba(12, 24, 39, 0.1);
  transform: translateY(-2px);
}

.home-initiative-card::before {
  content: "";
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 2px;
  background: linear-gradient(90deg, #123555, var(--orange));
}

.home-initiative-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -26px;
  width: 168px;
  height: 168px;
  background-color: rgba(18, 53, 85, 0.16);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 118px 118px;
  filter: blur(5px);
  opacity: 0.72;
  transform: rotate(-6deg);
  pointer-events: none;
}

.home-initiative-card:nth-child(even) {
  border-top-color: var(--orange);
}

.home-initiative-card:nth-child(even)::after {
  background-color: rgba(247, 124, 29, 0.16);
}

.home-initiative-card[data-icon="framework"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7.5v9L12 21l-8-4.5v-9L12 3Z'/%3E%3Cpath d='M12 8v8M7.5 9.8l9 5.2M16.5 9.8l-9 5.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7.5v9L12 21l-8-4.5v-9L12 3Z'/%3E%3Cpath d='M12 8v8M7.5 9.8l9 5.2M16.5 9.8l-9 5.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-initiative-card[data-icon="survey"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 2v14H5V6l2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3Ccircle cx='17' cy='16' r='2.5'/%3E%3Cpath d='m18.8 17.8 2.2 2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 2v14H5V6l2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3Ccircle cx='17' cy='16' r='2.5'/%3E%3Cpath d='m18.8 17.8 2.2 2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-initiative-card[data-icon="conversation"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h5A3.5 3.5 0 0 1 16 6.5v2A3.5 3.5 0 0 1 12.5 12H9l-4 3v-3.4A3.5 3.5 0 0 1 4 9V6.5Z'/%3E%3Cpath d='M10 15h4.5l4.5 3v-3.5A3.5 3.5 0 0 0 20 12V9.5A3.5 3.5 0 0 0 16.5 6H16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h5A3.5 3.5 0 0 1 16 6.5v2A3.5 3.5 0 0 1 12.5 12H9l-4 3v-3.4A3.5 3.5 0 0 1 4 9V6.5Z'/%3E%3Cpath d='M10 15h4.5l4.5 3v-3.5A3.5 3.5 0 0 0 20 12V9.5A3.5 3.5 0 0 0 16.5 6H16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-initiative-card[data-icon="community"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Cpath d='M3.5 20c.8-3.7 2.6-5.5 5.5-5.5s4.7 1.8 5.5 5.5'/%3E%3Cpath d='M12.5 15.2c.9-.5 2-.7 3.2-.7 2.9 0 4.7 1.8 5.5 5.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Cpath d='M3.5 20c.8-3.7 2.6-5.5 5.5-5.5s4.7 1.8 5.5 5.5'/%3E%3Cpath d='M12.5 15.2c.9-.5 2-.7 3.2-.7 2.9 0 4.7 1.8 5.5 5.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.home-initiative-card > div {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 100%;
  flex-direction: column;
}

.home-initiative-card h3 {
  margin: 0;
  max-width: 430px;
  padding-right: 68px;
  font-size: clamp(24px, 2.5vw, 32px);
  line-height: 1.18;
}

.home-initiative-card p {
  max-width: 500px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.home-initiative-card small {
  display: block;
  margin-top: 10px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
}

.home-initiative-card a {
  display: inline-flex;
  width: fit-content;
  margin-top: auto;
  padding-top: 26px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
}

.home-contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 38px;
  align-items: end;
  margin-bottom: 42px;
  padding: 36px 38px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(10, 22, 38, 0.98), rgba(25, 39, 54, 0.98)),
    linear-gradient(90deg, rgba(247, 124, 29, 0.16), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 20px 48px rgba(12, 24, 39, 0.12);
}

.home-contact-cta h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(28px, 3.8vw, 46px);
  line-height: 1.08;
}

.home-contact-cta p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
}

.home-contact-cta .eyebrow {
  color: var(--orange);
}

.home-contact-email {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.home-contact-email::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 8px;
  background: var(--orange);
}

.home-newsletter-final {
  margin-top: 0;
  margin-bottom: 56px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.article-showcase-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 28px;
}

.article-showcase-head a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.article-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mobile-article-controls {
  display: none;
}

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

.article-card {
  display: grid;
  grid-template-rows: auto 236px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.article-card-image {
  display: block;
  background: #eef3f7;
}

.article-card-image img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.article-card div {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  padding: 22px;
}

.article-card time {
  display: block;
  min-height: 32px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  text-transform: uppercase;
}

.article-card h3 {
  margin: 10px 0;
  font-size: 21px;
  line-height: 1.2;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

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

.article-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

@media (max-width: 900px) {
  .institutional-hero-inner,
  .newsletter-strip,
  .home-intro,
  .home-sif-feature,
  .modern-overview,
  .report-feature,
  .research-row,
  .latest-item {
    grid-template-columns: 1fr;
  }

  .institutional-hero-inner {
    min-height: 690px;
    align-items: center;
  }

  .hero-slides {
    min-height: 380px;
  }

  .hero-index {
    position: static;
    align-self: end;
    margin-top: 24px;
  }

  .newsletter-input-row {
    grid-template-columns: 1fr;
    border-radius: var(--radius);
  }

  .reports-subscribe-form .newsletter-input-row {
    grid-template-columns: 1fr;
  }

  .newsletter-strip button {
    min-height: 48px;
  }

  .overview-copy {
    position: static;
  }

  .overview-cards a,
  .featured-report,
  .home-contact-cta,
  .article-showcase-head {
    align-items: center;
    flex-direction: row;
    margin-bottom: 16px;
  }

  .article-showcase-head h2 {
    max-width: 230px;
    font-size: 28px;
  }

  .article-showcase-head .eyebrow {
    margin-bottom: 8px;
  }

  .article-head-actions {
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    margin-left: auto;
  }

  .article-head-actions a {
    font-size: 12px;
    white-space: nowrap;
  }

  .overview-cards a {
    grid-template-columns: 1fr;
  }

  .home-sif-feature {
    gap: 24px;
    padding: 52px 0 44px;
  }

  .home-focus-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 56px 0 48px;
  }

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

  .home-focus-card {
    min-height: 172px;
    padding: 22px 14px 18px;
  }

  .home-sif-side {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    padding-top: 0;
  }

  .home-sif-side span {
    writing-mode: horizontal-tb;
    transform: none;
  }

  .home-sif-side::after {
    width: 46px;
    height: 2px;
  }

  .home-sif-preview {
    padding: 12px;
  }

  .home-sif-points {
    grid-template-columns: 1fr;
  }

  .home-sif-points article {
    min-height: 0;
    padding: 20px;
  }

  .home-sif-points p {
    margin-top: 12px;
  }

  .article-card-grid,
  .more-post-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .article-card-grid::-webkit-scrollbar,
  .more-post-grid::-webkit-scrollbar {
    display: none;
  }

  .mobile-article-controls {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
  }

  .mobile-article-controls button {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font: inherit;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-article-controls button:active {
    transform: translateY(1px);
  }

  .article-card,
  .more-post-card {
    flex: 0 0 min(46vw, 220px);
    scroll-snap-align: start;
  }

  .article-card {
    grid-template-rows: auto 142px;
  }

  .article-card div,
  .more-post-card div {
    padding: 14px;
  }

  .article-card h3,
  .more-post-card h3 {
    font-size: 15px;
  }

  .article-card p {
    display: none;
  }

  .featured-report {
    margin-bottom: 56px;
  }
}

/* Inner pages aligned with the new homepage direction */
.inner-section {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0;
}

.page-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 58px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 880px;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 18px;
}

.initiatives-page-hero {
  padding-bottom: 14px;
}

.initiatives-page-hero + .project-capabilities {
  padding-top: 28px;
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 54px;
  align-items: center;
}

.about-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: contain;
}

.content-split {
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 54px;
}

.quote-panel {
  background: #252b31;
}

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

.person-card,
.focus-card {
  padding: 28px;
  background: #fff;
}

.visual-people-grid {
  gap: 18px;
}

.visual-person-card {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.visual-person-card img {
  width: 116px;
  height: 116px;
  object-fit: contain;
  background: #eef3f7;
  border-radius: 50%;
}

.visual-person-card h3 {
  margin-top: 0;
}

.about-process {
  display: grid;
  gap: 24px;
  padding-top: 0;
}

.about-process article {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 42px;
  align-items: center;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.about-process article:nth-child(even) img {
  order: 2;
}

.about-process img {
  width: 100%;
  max-height: 280px;
  object-fit: contain;
}

.about-process h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.08;
}

.about-process p:not(.eyebrow) {
  color: var(--muted);
}

.editorial-about-hero {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
}

.editorial-about-hero figure {
  margin: 0;
}

.editorial-about-hero img {
  width: 100%;
  aspect-ratio: 4 / 3;
  max-height: none;
  object-fit: cover;
  filter: grayscale(18%);
}

.about-minimal-hero {
  padding-top: 58px;
  padding-bottom: 30px;
}

/* Keep the principal About, Focus and Initiatives page titles on one scale. */
.about-minimal-hero h1,
.focus-modern-hero h1,
.initiatives-page-hero h1 {
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
}

.about-compact-intro {
  display: grid;
  gap: 18px;
  padding-top: 24px;
  padding-bottom: 10px;
}

.about-compact-intro + .inner-section {
  padding-top: 18px;
}

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

.about-compact-intro h2 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

.about-compact-intro p:not(.eyebrow) {
  max-width: 760px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 16px;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: 58px;
  align-items: center;
}

.about-editorial-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  filter: grayscale(12%);
}

.about-editorial-copy h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.about-editorial-copy p:not(.eyebrow) {
  color: var(--muted);
}

.founder-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  border-top: 1px solid var(--line);
}

.founder-list article {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 220px auto;
  gap: 20px;
  align-items: start;
  justify-items: start;
  padding: 24px 0 0;
}

.founder-portrait {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: fit-content;
  height: 220px;
  max-width: 100%;
  justify-self: start !important;
  margin-left: 0 !important;
}

.founder-portrait::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 0;
  z-index: 1;
  width: 4px;
  height: 130px;
  background: var(--orange);
}

.founder-list article:nth-child(2) .founder-portrait::before {
  right: 0;
  left: auto;
  background: #10223d;
}

.founder-portrait img {
  width: auto;
  max-width: 100%;
  max-height: 220px;
  object-fit: contain;
  object-position: center bottom;
  background: transparent;
}

.founder-list h3 {
  margin: 0 0 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.1;
}

.founder-list p {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.62;
}

.founder-list p:last-child {
  margin-bottom: 0;
}

.about-final-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding-top: 0;
}

.about-final-grid article {
  position: relative;
  isolation: isolate;
  min-height: 330px;
  display: flex;
  align-items: end;
  padding: 34px;
  color: #fff;
  overflow: hidden;
  background: #172534;
}

.about-final-grid article:nth-child(2) {
  background: #172534;
}

.about-final-grid article::before,
.about-final-grid article::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.about-final-grid article::before {
  z-index: 0;
  background: url("../uploads/images/be5efc98-0f22-488f-8a6f-9677d5654774-20260816125009-95a4f2.webp") center/cover;
  filter: grayscale(1) contrast(0.78) brightness(0.72);
  opacity: 0.72;
  transform: scale(1.025);
}

.about-final-grid article:nth-child(2)::before {
  background-image: url("../uploads/images/f1efec48-fff5-4447-81fa-94358041228c-20260816125014-2f7d8d.webp");
}

.about-final-grid article::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(16, 34, 61, 0.48), rgba(16, 34, 61, 0.9));
}

.about-final-grid article > div {
  position: relative;
  z-index: 2;
}

.about-final-grid h2 {
  margin: 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}

.about-final-grid p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.9);
}

.about-atmosphere {
  position: relative;
  overflow: hidden;
  background: #f4f7fa;
}

.about-atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 250, 0.76) 48%, rgba(232, 239, 246, 0.82)),
    radial-gradient(circle at 14% 12%, rgba(247, 124, 29, 0.1), transparent 30%),
    radial-gradient(circle at 84% 16%, rgba(16, 34, 61, 0.13), transparent 34%);
  pointer-events: none;
}

.about-atmosphere::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 61, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 34, 61, 0.034) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 18%, #000 0, transparent 72%);
  opacity: 0.48;
  pointer-events: none;
}

.about-atmosphere > * {
  position: relative;
  z-index: 1;
}

.about-corporate-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 70px 0 42px;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.82fr);
  gap: 56px;
  align-items: center;
}

.about-corporate-copy h1 {
  max-width: 820px;
  margin: 0;
  font-size: clamp(42px, 5.4vw, 70px);
  line-height: 1.04;
}

.about-corporate-copy p:not(.eyebrow) {
  max-width: 720px;
  color: var(--muted);
  font-size: 17px;
}

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

.about-corporate-visual {
  position: relative;
  margin: 0;
}

.about-corporate-visual::before {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  z-index: -1;
  border: 1px solid rgba(221, 228, 235, 0.95);
  background: #e8eef4;
}

.about-corporate-visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(22%) contrast(1.03);
  box-shadow: 0 24px 54px rgba(31, 41, 51, 0.12);
}

.about-identity-band {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.62);
}

.about-identity-item {
  padding: 24px 26px;
  border-right: 1px solid var(--line);
}

.about-identity-item:last-child {
  border-right: 0;
}

.about-identity-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-identity-item strong {
  display: block;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.3;
}

.about-approach-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.about-approach-copy {
  position: sticky;
  top: 126px;
}

.about-approach-copy h2,
.about-work-grid h2,
.about-contact-cta h2 {
  margin: 0;
  font-size: clamp(30px, 3.7vw, 48px);
  line-height: 1.08;
}

.about-approach-copy p:not(.eyebrow),
.about-work-grid p:not(.eyebrow) {
  color: var(--muted);
}

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

.about-capability-grid article {
  min-height: 190px;
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 34px rgba(31, 41, 51, 0.055);
}

.about-capability-grid span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 18px;
  font-weight: 700;
}

.about-capability-grid span::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--orange);
}

.about-capability-grid p {
  margin: 18px 0 0;
  color: var(--muted);
}

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

.about-work-grid article {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  color: #fff;
  background:
    linear-gradient(180deg, rgba(28, 35, 43, 0.18), rgba(28, 35, 43, 0.9)),
    url("../uploads/images/be5efc98-0f22-488f-8a6f-9677d5654774-20260816125009-95a4f2.webp") center/cover;
}

.about-work-grid article:nth-child(2) {
  background:
    linear-gradient(180deg, rgba(28, 35, 43, 0.18), rgba(28, 35, 43, 0.9)),
    url("../uploads/images/f1efec48-fff5-4447-81fa-94358041228c-20260816125014-2f7d8d.webp") center/cover;
}

.about-work-grid p:not(.eyebrow) {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.78);
}

.about-initiators {
  padding-top: 28px;
}

.about-founder-grid {
  display: grid;
  gap: 22px;
}

.about-founder-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
}

.about-founder-photo {
  display: grid;
  place-items: center;
  min-height: 220px;
  background: linear-gradient(180deg, #f7f9fb, #edf3f7);
  border: 1px solid #e1e8ef;
}

.about-founder-photo img {
  width: min(168px, 78%);
  aspect-ratio: 1;
  object-fit: contain;
}

.about-founder-content h3 {
  margin: 0;
  font-size: clamp(30px, 3vw, 44px);
  line-height: 1.1;
}

.about-founder-content p:not(.eyebrow) {
  margin: 14px 0 0;
  color: var(--muted);
}

.about-contact-cta {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 80px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
  background: #fff;
  border: 1px solid var(--line);
}

.about-contact-cta h2 {
  max-width: 760px;
}

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

.focus-card {
  min-height: 172px;
  display: grid;
  align-content: space-between;
}

.focus-card h2 {
  font-size: clamp(22px, 2.6vw, 32px);
}

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

.visual-focus-card {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.visual-focus-card:hover {
  border-color: var(--orange);
  box-shadow: 0 14px 36px rgba(31, 41, 51, 0.07);
  transform: translateY(-2px);
}

.focus-icon {
  display: grid;
  width: 92px;
  height: 92px;
  place-items: center;
  background: #eef3f7;
  border-radius: 50%;
}

.focus-icon img {
  width: 58px;
  height: 58px;
  object-fit: contain;
}

.visual-focus-card span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.visual-focus-card h2 {
  margin: 6px 0 10px;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.14;
}

.visual-focus-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.focus-modern-hero {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 58px 0 38px;
  border-bottom: 1px solid var(--line);
}

.focus-modern-hero > div {
  max-width: 980px;
}

.focus-modern-hero h1 {
  max-width: 980px;
  margin: 0;
  font-size: clamp(40px, 5.6vw, 68px);
  line-height: 1.04;
}

.focus-modern-intro {
  max-width: 720px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.58;
}

.focus-modern-list {
  display: grid;
  gap: 14px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 34px 0 58px;
}

.focus-modern-card {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding: 26px 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(12, 24, 39, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.focus-modern-card:hover {
  border-color: rgba(247, 124, 29, 0.38);
  box-shadow: 0 20px 48px rgba(12, 24, 39, 0.08);
  transform: translateY(-2px);
}

.focus-modern-icon {
  display: grid;
  width: 88px;
  height: 88px;
  place-items: center;
  color: var(--orange);
  background:
    linear-gradient(145deg, #fff, #f3f6f9);
  border: 1px solid #d8e2ea;
  border-radius: 50%;
}

.focus-modern-icon svg {
  width: 44px;
  height: 44px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.focus-modern-card h2 {
  max-width: 760px;
  margin: 0 0 8px;
  font-size: clamp(22px, 2.2vw, 29px);
  line-height: 1.12;
}

.focus-modern-card p {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.48;
}

.focus-modern-card small {
  display: block;
  max-width: 820px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.focus-contact-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  margin: -24px auto 72px;
  padding: 28px 30px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(16, 34, 61, 0.96), rgba(28, 35, 43, 0.96)),
    radial-gradient(circle at 84% 18%, rgba(247, 124, 29, 0.26), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  box-shadow: 0 22px 58px rgba(16, 34, 61, 0.16);
}

.focus-contact-cta .eyebrow {
  color: var(--orange);
}

.focus-contact-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.08;
}

.focus-contact-cta p:not(.eyebrow) {
  max-width: 760px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.58;
}

.focus-contact-cta .button {
  white-space: nowrap;
  background: var(--orange);
  border-color: var(--orange);
}

.focus-contact-cta .button:hover {
  color: #10223d;
  background: #fff;
  border-color: #fff;
}

.report-list {
  gap: 18px;
  padding-top: 54px;
}

/* Keep list-based research pages compact without changing other page heroes. */
.page-hero.compact-content-hero {
  padding-bottom: 14px;
}

.inner-section.compact-content-start {
  padding-top: 28px;
}

.report-list.compact-content-start {
  padding-top: 44px;
}

.report-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 32px;
  align-items: start;
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.report-card:first-child {
  border-top: 1px solid var(--line);
}

.report-card h2 {
  max-width: 780px;
  font-size: clamp(23px, 2.5vw, 34px);
}

.report-card p {
  max-width: 780px;
}

.report-download-form {
  margin: 0;
}

.report-download-form .button {
  width: 100%;
  font-family: inherit;
  cursor: pointer;
}

.report-card .button,
.report-list + .public-pagination .button {
  color: #fff;
  background: var(--orange);
  border-color: var(--orange);
}

.report-card .button:hover,
.report-list + .public-pagination .button:hover {
  color: #fff;
  background: #df6618;
  border-color: #df6618;
}

.reports-final-cta {
  width: min(1180px, calc(100% - 48px));
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 0.68fr);
  gap: 42px;
  align-items: start;
  margin: 0 auto 72px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.reports-request h2 {
  max-width: 600px;
  margin: 8px 0 10px;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.reports-request p:not(.eyebrow) {
  max-width: 560px;
  color: var(--muted);
}

.reports-newsletter-compact {
  display: grid;
  gap: 18px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.reports-subscribe-head {
  display: grid;
  gap: 4px;
}

.reports-subscribe-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.reports-subscribe-head h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.reports-subscribe-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.reports-subscribe-form {
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 12px;
}

.reports-subscribe-form .newsletter-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 118px;
  gap: 10px;
  align-items: stretch;
}

.reports-subscribe-form .newsletter-input-row input {
  min-height: 44px;
  padding: 0 13px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  font-size: 14px;
}

.reports-subscribe-form .newsletter-input-row button {
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  border-radius: var(--radius);
  color: #fff;
  background: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.reports-subscribe-form .newsletter-input-row button:hover {
  border-color: var(--orange);
  background: var(--orange);
}

.reports-subscribe-form .newsletter-input-row button:disabled {
  opacity: 0.7;
  cursor: wait;
}

.reports-subscribe-form .consent-check {
  gap: 8px;
  font-size: 12px;
}

.report-content > p {
  margin-bottom: 0;
}

.report-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.report-meta span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.report-body {
  max-width: 900px;
  margin-top: 18px;
  color: var(--muted);
}

.report-body.is-collapsed {
  max-height: 8.9em;
  overflow: hidden;
  position: relative;
}

.report-body.is-collapsed::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3.4em;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
}

.report-body p {
  max-width: 900px;
  margin: 0 0 14px;
}

.report-body p:last-child {
  margin-bottom: 0;
}

.report-body a {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
}

.report-toggle {
  margin-top: 12px;
  border: 0;
  padding: 0;
  color: var(--orange);
  background: transparent;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}

.public-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 64px;
}

.public-page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.public-page-numbers a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 8px 12px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}

.public-page-numbers a.is-current {
  color: #fff;
  background: var(--ink);
  border-color: var(--ink);
}

.inner-cta {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto 74px;
  padding: 34px 0 0;
  border-top: 1px solid var(--line);
}

.inner-cta h2 {
  margin: 0;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
}

.inner-cta p:not(.eyebrow) {
  color: var(--muted);
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.contact-form,
.contact-details {
  padding: 30px;
  background: #fff;
}

.contact-details a {
  color: var(--orange);
  font-weight: 600;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 48px;
  align-items: end;
}

.contact-hero aside {
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-hero aside span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.contact-hero aside a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
}

.contact-email-list {
  display: grid;
  gap: 7px;
}

.contact-modern {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 24px;
}

.modern-contact-form {
  padding: 34px;
}

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

.contact-side-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 34px;
  padding: 34px;
  color: #fff;
  background: #252b31;
  border-radius: var(--radius);
}

.contact-side-card h2 {
  margin: 0;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.contact-side-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.74);
}

.contact-email {
  display: inline-flex;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}

.contact-side-card .contact-email-list {
  margin-top: 12px;
}

.contact-socials {
  display: flex;
  gap: 12px;
}

.contact-socials a {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transition: background 180ms ease, transform 180ms ease;
}

.contact-socials a:hover {
  background: var(--orange);
  transform: translateY(-2px);
}

.contact-socials img,
.contact-socials svg {
  width: 19px;
  height: 19px;
  fill: #fff;
}

.contact-socials .social-icon-linkedin {
  width: 18px;
  height: 18px;
}

.project-capabilities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 980px;
  margin: 0 auto;
  padding-bottom: 34px;
}

.project-capabilities article {
  position: relative;
  display: flex;
  min-height: 220px;
  flex-direction: column;
  padding: 26px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.project-capabilities article::after {
  content: "";
  position: absolute;
  right: -18px;
  top: 50%;
  width: 150px;
  height: 150px;
  background-color: rgba(18, 53, 85, 0.13);
  filter: blur(1.6px);
  opacity: 0.72;
  transform: translateY(-50%) rotate(-5deg);
  pointer-events: none;
}

.project-capabilities article:nth-child(even)::after {
  background-color: rgba(247, 124, 29, 0.13);
}

.project-capabilities article[data-icon="framework"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7.5v9L12 21l-8-4.5v-9L12 3Z'/%3E%3Cpath d='M12 8v8M7.5 9.8l9 5.2M16.5 9.8l-9 5.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3 20 7.5v9L12 21l-8-4.5v-9L12 3Z'/%3E%3Cpath d='M12 8v8M7.5 9.8l9 5.2M16.5 9.8l-9 5.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.project-capabilities article[data-icon="survey"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 2v14H5V6l2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3Ccircle cx='17' cy='16' r='2.5'/%3E%3Cpath d='m18.8 17.8 2.2 2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 4h10l2 2v14H5V6l2-2Z'/%3E%3Cpath d='M9 8h6M9 12h6M9 16h3'/%3E%3Ccircle cx='17' cy='16' r='2.5'/%3E%3Cpath d='m18.8 17.8 2.2 2.2'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.project-capabilities article[data-icon="conversation"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h5A3.5 3.5 0 0 1 16 6.5v2A3.5 3.5 0 0 1 12.5 12H9l-4 3v-3.4A3.5 3.5 0 0 1 4 9V6.5Z'/%3E%3Cpath d='M10 15h4.5l4.5 3v-3.5A3.5 3.5 0 0 0 20 12V9.5A3.5 3.5 0 0 0 16.5 6H16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 6.5A3.5 3.5 0 0 1 7.5 3h5A3.5 3.5 0 0 1 16 6.5v2A3.5 3.5 0 0 1 12.5 12H9l-4 3v-3.4A3.5 3.5 0 0 1 4 9V6.5Z'/%3E%3Cpath d='M10 15h4.5l4.5 3v-3.5A3.5 3.5 0 0 0 20 12V9.5A3.5 3.5 0 0 0 16.5 6H16'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.project-capabilities article[data-icon="community"]::after {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Cpath d='M3.5 20c.8-3.7 2.6-5.5 5.5-5.5s4.7 1.8 5.5 5.5'/%3E%3Cpath d='M12.5 15.2c.9-.5 2-.7 3.2-.7 2.9 0 4.7 1.8 5.5 5.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='black' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3Ccircle cx='16' cy='8' r='3'/%3E%3Cpath d='M3.5 20c.8-3.7 2.6-5.5 5.5-5.5s4.7 1.8 5.5 5.5'/%3E%3Cpath d='M12.5 15.2c.9-.5 2-.7 3.2-.7 2.9 0 4.7 1.8 5.5 5.5'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.project-capabilities article > * {
  position: relative;
  z-index: 1;
}

.project-capabilities span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
}

.project-capabilities h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.1vw, 28px);
  line-height: 1.14;
}

.project-capabilities p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.project-capabilities .text-link {
  width: fit-content;
  margin-top: auto;
  padding-top: 24px;
}

.project-method {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 54px;
  align-items: start;
  padding-top: 34px;
}

.project-method h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

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

.project-method-list p {
  margin: 0;
  padding-bottom: 18px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}

.project-method-list strong {
  color: var(--ink);
}

.legal-content {
  display: grid;
  gap: 26px;
  max-width: 900px;
}

.legal-content article {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}

.legal-content article:last-child {
  border-bottom: 0;
}

.legal-content .legal-document {
  padding-bottom: 0;
  border-bottom: 0;
}

.legal-document-meta {
  margin-bottom: 28px !important;
  color: var(--ink) !important;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.legal-document > p {
  max-width: 820px;
  line-height: 1.8;
}

.legal-content .legal-document h2 {
  margin: 48px 0 18px;
  font-size: clamp(18px, 1.35vw, 22px);
  line-height: 1.35;
  scroll-margin-top: 130px;
}

.legal-content h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.15;
}

.legal-content p {
  margin: 0;
  color: var(--muted);
}

.legal-content a {
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.search-hero {
  display: grid;
  gap: 18px;
}

.site-search-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  gap: 10px;
  max-width: 820px;
  margin-top: 20px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.site-search-form input {
  min-height: 46px;
  width: 100%;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius);
  color: var(--ink);
  background: var(--soft);
  font: inherit;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 400;
}

.site-search-form input:focus {
  outline: none;
}

.site-search-form .button {
  min-height: 46px;
  padding: 0 18px;
  font-family: Poppins, Arial, sans-serif;
  font-size: 15px;
  font-weight: 600;
}

.search-results {
  padding-top: 42px;
}

.search-summary {
  margin-bottom: 24px;
}

.search-summary span,
.search-result span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.search-summary h2 {
  margin: 6px 0 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

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

.search-result,
.empty-state {
  padding: 22px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.search-result {
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.search-result:hover {
  border-color: #cfd6dd;
  box-shadow: 0 12px 30px rgba(31, 41, 51, 0.06);
  transform: translateY(-1px);
}

.search-result h3,
.empty-state h2 {
  margin: 7px 0 9px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.2;
}

.search-result h3 a {
  text-decoration: none;
}

.search-result p,
.empty-state p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
}

.form-message {
  padding: 13px 14px;
  border-radius: var(--radius);
  font-weight: 600;
}

.form-message.success {
  color: #1f7a4f;
  background: #e9f6ef;
}

.form-message.error {
  color: #b42318;
  background: #fff0ee;
}

.unsubscribe-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
  background: var(--soft);
}

.unsubscribe-page section {
  width: min(520px, 100%);
  padding: 34px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.unsubscribe-page img {
  width: 190px;
  height: auto;
  margin-bottom: 24px;
}

.unsubscribe-page h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}

.unsubscribe-page p {
  margin: 0 0 22px;
  color: var(--muted);
}

.unsubscribe-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.unsubscribe-actions .button {
  justify-content: center;
}

@media (max-width: 900px) {
  .content-split,
  .about-corporate-hero,
  .about-approach-panel,
  .about-hero,
  .about-compact-intro,
  .about-compact-intro-grid,
  .focus-modern-hero,
  .focus-modern-card,
  .about-editorial,
  .about-work-grid,
  .about-founder-card,
  .founder-list article,
  .about-final-grid,
  .contact-hero,
  .contact-modern,
  .project-capabilities,
  .project-method,
  .reports-final-cta,
  .site-search-form,
  .two-col-fields,
  .contact-grid,
  .people-grid,
  .visual-person-card,
  .about-process article,
  .focus-grid,
  .visual-focus-grid,
  .report-card {
    grid-template-columns: 1fr;
  }

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

  .about-corporate-hero {
    padding-top: 48px;
    gap: 34px;
  }

  .about-corporate-visual::before {
    inset: 12px -12px -12px 12px;
  }

  .about-identity-band {
    grid-template-columns: 1fr;
  }

  .about-identity-item {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .about-identity-item:last-child {
    border-bottom: 0;
  }

  .about-approach-copy {
    position: static;
  }

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

  .about-process article:nth-child(even) img {
    order: 0;
  }

  .visual-focus-card {
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 22px;
  }

  .focus-icon {
    width: 74px;
    height: 74px;
  }

  .focus-icon img {
    width: 46px;
    height: 46px;
  }

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

@media (max-width: 600px) {
  .subscribe-popup {
    right: 16px;
    bottom: 16px;
    left: 16px;
    max-width: none;
  }

  .subscribe-popup > div {
    align-items: flex-start;
  }

  .site-header {
    padding: 12px 0;
  }

  .site-header-inner {
    width: calc(100% - 32px);
    gap: 14px;
  }

  .brand img {
    height: 54px;
    max-width: 210px;
  }

  .header-actions {
    gap: 8px;
  }

  .admin-quick-link {
    top: 16px;
    right: 64px;
    width: 40px;
    height: 40px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
  }

  .site-nav {
    top: 78px;
    right: 16px;
    left: 16px;
    gap: 0;
    max-height: calc(100vh - 92px);
    padding: 12px 16px;
  }

  .site-nav a {
    padding: 10px 0;
  }

  .site-nav .nav-sif-link {
    justify-content: flex-start;
    padding-top: 18px;
  }

  .site-nav .nav-sif-link span {
    top: 8px;
    bottom: auto;
    left: 0;
  }

  .institutional-hero {
    min-height: auto;
  }

  .institutional-hero-inner {
    width: calc(100% - 32px);
    min-height: 400px;
    padding: 22px 0 42px;
  }

  .hero-slides {
    min-height: 290px;
  }

  .institutional-hero .hero-slide-title {
    font-size: 30px;
    line-height: 1.06;
  }

  .institutional-hero .slide > p:not(.eyebrow) {
    font-size: 14px;
    line-height: 1.45;
  }

  .institutional-hero .hero-actions {
    display: flex;
  }

  .institutional-hero .button {
    width: auto;
    min-width: 156px;
  }

  .hero-index {
    bottom: 18px;
    gap: 8px;
    margin-top: 0;
  }

  .hero-index button {
    width: 40px;
    height: 10px;
    flex: 0 0 40px;
  }

  .newsletter-strip,
  .home-intro,
  .research-list,
  .report-feature,
  .latest-section,
  .home-sif-feature,
  .home-initiatives-section,
  .home-insights-section,
  .modern-overview,
  .featured-report,
  .article-showcase,
  .home-contact-cta,
  .about-corporate-hero,
  .about-identity-band,
  .about-contact-cta,
  .inner-section,
  .page-hero,
  .contact-grid,
  .article {
    width: calc(100% - 32px);
  }

  .newsletter-strip {
    gap: 24px;
    margin-top: 28px;
    padding-bottom: 28px;
  }

  .newsletter-strip button,
  .site-search-form .button,
  .report-card .button,
  .home-contact-cta .button,
  .inner-cta .button {
    width: 100%;
  }

  .site-search-form {
    grid-template-columns: 1fr;
    padding: 6px;
  }

  .about-corporate-copy h1 {
    font-size: 38px;
  }

  .about-hero-actions,
  .about-hero-actions .button,
  .about-contact-cta .button {
    width: 100%;
  }

  .about-capability-grid {
    grid-template-columns: 1fr;
  }

  .about-capability-grid article {
    min-height: 0;
    padding: 22px;
  }

  .about-work-grid article {
    min-height: 280px;
    padding: 26px;
  }

  .about-founder-card {
    padding: 22px;
  }

  .about-founder-photo {
    min-height: 190px;
  }

  .modern-overview {
    gap: 28px;
    padding: 54px 0 44px;
  }

  .home-focus-grid,
  .research-insight-strip,
  .home-insights-grid,
  .home-initiative-grid {
    grid-template-columns: 1fr;
  }

  .home-focus-section {
    gap: 26px;
    padding: 46px 0 38px;
  }

  .home-focus-grid {
    display: flex;
    gap: 12px;
    margin: 0 -16px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .home-focus-grid::-webkit-scrollbar {
    display: none;
  }

  .home-focus-card {
    flex: 0 0 min(220px, 72vw);
    scroll-snap-align: start;
  }

  .home-focus-card,
  .home-focus-card:last-child {
    grid-column: auto;
  }

  .home-focus-card {
    min-height: 150px;
    padding: 18px 12px 16px;
  }

  .home-focus-icon {
    width: 52px;
    height: 52px;
  }

  .home-focus-icon svg {
    width: 42px;
    height: 42px;
  }

  .overview-cards a,
  .featured-report,
  .project-capabilities article,
  .article-card div,
  .visual-focus-card,
  .modern-contact-form,
  .contact-side-card,
  .contact-form,
  .contact-details {
    padding: 22px;
  }

  .featured-report {
    margin-bottom: 44px;
  }

  .project-capabilities article::after {
    right: -24px;
    width: 118px;
    height: 118px;
    opacity: 0.5;
  }

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

  .home-contact-cta {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 28px 24px;
  }

  .featured-report > .button {
    width: 100%;
    min-width: 0;
    white-space: nowrap;
  }

  .featured-report::after {
    right: -70px;
    bottom: -70px;
    width: 210px;
    height: 210px;
    opacity: 0.22;
  }

  .featured-report-item small {
    max-width: none;
    padding-right: 32px;
  }

  .home-initiatives-section {
    padding-bottom: 48px;
  }

  .home-insights-section {
    padding-bottom: 34px;
  }

  .home-insights-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .home-insights-grid::-webkit-scrollbar {
    display: none;
  }

  .home-insight-card {
    flex: 0 0 min(76vw, 310px);
    grid-template-rows: 184px 1fr;
    scroll-snap-align: start;
  }

  .home-insight-image img {
    height: 184px;
  }

  .home-insight-card > div {
    min-height: 148px;
    padding: 18px;
  }

  .home-insight-card h3 {
    font-size: 18px;
  }

  .home-insight-card p {
    display: none;
  }

  .home-initiative-card {
    min-height: 0;
    padding: 24px;
  }

  .home-initiative-card h3 {
    padding-right: 50px;
    font-size: 22px;
  }

  .home-initiative-card::after {
    right: -30px;
    bottom: -34px;
    width: 132px;
    height: 132px;
  }

  .article-showcase {
    padding-bottom: 56px;
  }

  .article-showcase-head {
    gap: 12px;
  }

  .article-showcase-head h2 {
    max-width: 190px;
    font-size: 24px;
  }

  .article-head-actions {
    gap: 7px;
  }

  .mobile-article-controls button {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

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

  .share-links {
    justify-content: flex-start;
  }

  .page-hero {
    padding: 52px 0 42px;
  }

  .initiatives-page-hero {
    padding-bottom: 30px;
  }

  .initiatives-page-hero + .project-capabilities {
    padding-top: 24px;
  }

  .page-hero h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .inner-section {
    padding: 46px 0;
  }

  .report-list {
    padding-top: 34px;
  }

  .report-card {
    gap: 18px;
    padding: 26px 20px;
  }

  .public-pagination {
    align-items: stretch;
    flex-direction: column;
    margin-bottom: 44px;
  }

  .report-card h2 {
    font-size: 24px;
  }

  .report-body.is-collapsed {
    max-height: 7.2em;
  }

  .founder-list article {
    gap: 16px;
    grid-template-rows: 190px auto;
    padding: 20px 0 0;
  }

  .founder-portrait {
    height: 190px;
  }

  .founder-portrait img {
    max-height: 190px;
  }

  .about-final-grid article {
    min-height: 260px;
    padding: 24px;
  }

  .visual-focus-card {
    grid-template-columns: 62px minmax(0, 1fr);
    gap: 16px;
  }

  .focus-modern-hero {
    gap: 18px;
    padding: 36px 0 26px;
  }

  .focus-modern-hero h1 {
    font-size: 34px;
  }

  .focus-modern-list {
    width: calc(100% - 32px);
    padding: 24px 0 46px;
  }

  .focus-modern-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .focus-modern-icon {
    width: 58px;
    height: 58px;
  }

  .focus-modern-icon svg {
    width: 30px;
    height: 30px;
  }

  .focus-modern-card h2 {
    font-size: 22px;
  }

  .focus-contact-cta {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    margin: -18px auto 50px;
    padding: 22px;
  }

  .focus-contact-cta .button {
    justify-self: start;
  }

  .focus-icon {
    width: 62px;
    height: 62px;
  }

  .focus-icon img {
    width: 38px;
    height: 38px;
  }

  .contact-modern {
    gap: 18px;
  }

  .contact-email,
  .footer-nav a {
    overflow-wrap: anywhere;
  }

  .footer-main {
    width: calc(100% - 32px);
    gap: 22px;
    padding: 22px 0 16px;
  }

  .footer-brand img {
    width: min(165px, 100%);
  }

  .footer-brand p {
    max-width: none;
    margin: 8px 0 12px;
    font-size: 13px;
    line-height: 1.45;
  }

  .social-links a {
    width: 34px;
    height: 34px;
  }

  .social-links img,
  .social-links svg {
    width: 16px;
    height: 16px;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 20px;
  }

  .footer-nav h2 {
    margin-bottom: 6px;
    font-size: 12px;
  }

  .footer-nav a {
    margin: 5px 0;
    font-size: 13px;
  }

.footer-bottom {
    width: calc(100% - 32px);
    padding: 10px 0 14px;
    font-size: 12px;
  }
}

.sif-hero,
.sif-intro,
.sif-pillars-section,
.sif-application {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.sif-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 44px;
  align-items: center;
  padding: 72px 0 54px;
}

.sif-coming-soon {
  position: relative;
  display: grid;
  min-height: calc(100vh - 92px);
  width: 100%;
  margin: 0;
  padding: 34px max(24px, calc((100vw - 1280px) / 2)) 54px;
  overflow: hidden;
  align-content: center;
  justify-items: center;
  background: #f4f7fa;
  text-align: left;
}

.sif-coming-soon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(244, 247, 250, 0.72) 48%, rgba(232, 239, 246, 0.78)),
    radial-gradient(circle at 18% 18%, rgba(247, 124, 29, 0.12), transparent 32%),
    radial-gradient(circle at 82% 20%, rgba(16, 34, 61, 0.16), transparent 34%);
  pointer-events: none;
}

.sif-coming-soon::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 34, 61, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(16, 34, 61, 0.038) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 45%, #000 0, transparent 72%);
  opacity: 0.55;
  pointer-events: none;
}

.sif-animated-bg {
  position: absolute;
  inset: -18%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.sif-animated-bg span {
  position: absolute;
  display: block;
  width: 36vw;
  min-width: 360px;
  aspect-ratio: 1;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.42;
  animation: sifFloat 18s ease-in-out infinite alternate;
}

.sif-animated-bg span:nth-child(1) {
  left: 4%;
  top: 6%;
  background: rgba(247, 124, 29, 0.36);
}

.sif-animated-bg span:nth-child(2) {
  right: 0;
  top: 10%;
  background: rgba(16, 34, 61, 0.34);
  animation-duration: 21s;
}

.sif-animated-bg span:nth-child(3) {
  left: 36%;
  bottom: 0;
  background: rgba(93, 117, 136, 0.28);
  animation-duration: 24s;
}

@keyframes sifFloat {
  0% {
    transform: translate3d(-18px, 12px, 0) scale(0.95);
  }

  100% {
    transform: translate3d(34px, -28px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .sif-animated-bg span {
    animation: none;
  }
}

.sif-coming-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.76fr) minmax(560px, 1fr);
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
  width: min(1280px, 100%);
  margin-top: 0;
  isolation: isolate;
}

.sif-coming-copy {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: start;
  width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.sif-coming-copy p {
  margin: 0 0 20px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.sif-coming-copy sup {
  margin-left: 1px;
  font-size: 0.58em;
}

.sif-coming-copy h1 {
  position: relative;
  z-index: 2;
  max-width: 680px;
  margin: 0;
  color: #10223d;
  font-size: clamp(48px, 5.6vw, 78px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: 0;
  text-shadow: 0 22px 60px rgba(16, 34, 61, 0.13);
}

.sif-coming-copy h1::after {
  content: "";
  display: block;
  width: min(220px, 42%);
  height: 5px;
  margin-top: 32px;
  background: var(--orange);
}

.sif-coming-status {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  display: inline-flex;
  justify-content: center;
  width: min(96%, 700px);
  box-sizing: border-box;
  margin: 0;
  padding: 18px 24px 20px;
  color: #fff;
  background: rgba(16, 34, 61, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-bottom: 5px solid var(--orange);
  border-radius: 3px;
  box-shadow: 0 18px 38px rgba(16, 34, 61, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(15px) saturate(115%);
  font-size: clamp(27px, 3.5vw, 47px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.11em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.16);
  text-transform: uppercase;
  transform: translate(-50%, -50%) rotate(-12deg);
}

.sif-coming-status::before {
  content: none;
}

.sif-coming-detail {
  max-width: 680px;
  margin-top: 24px;
  color: #4f6074;
  font-size: 17px;
  line-height: 1.72;
}

.sif-coming-detail sup {
  font-size: 0.62em;
}

.sif-coming-modal {
  position: relative;
  display: grid;
  gap: 0;
  width: min(720px, 100%);
  justify-self: end;
  padding-top: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.sif-coming-modal::before {
  content: none;
}

.sif-coming-modal-head {
  display: none;
}

.sif-coming-modal-head span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sif-coming-modal-head strong {
  color: #10223d;
  font-size: 22px;
  line-height: 1.15;
}

.sif-coming-model {
  position: relative;
  z-index: 1;
  inset: auto;
  width: 100%;
  margin: 0 auto;
  opacity: 1;
  filter: blur(5px) !important;
  transform: none;
}

.sif-coming-model .sif-live-model {
  margin-top: 0;
}

.sif-coming-model .sif-model-stage {
  display: grid;
  place-items: center;
}

.sif-coming-model .sif-path-map {
  display: block;
  width: 100%;
  max-width: 720px;
  max-height: min(72vh, 720px);
  object-fit: contain;
}

.sif-coming-model .sif-path-number-bg,
.sif-coming-model .sif-path-number {
  display: none;
}

.sif-coming-model .sif-live-model.is-static,
.sif-coming-model .sif-live-model.is-static .sif-path-segment {
  cursor: default;
  pointer-events: none;
}

.sif-coming-subscribe {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(220px, 0.55fr) minmax(420px, 1fr);
  gap: 22px;
  align-items: center;
  width: min(1120px, 100%);
  margin-top: clamp(100px, 10vh, 150px);
  padding: 20px 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(223, 231, 239, 0.9);
  border-radius: 10px;
  box-shadow: 0 22px 60px rgba(16, 34, 61, 0.12);
  backdrop-filter: blur(20px);
}

.sif-coming-subscribe > div {
  display: grid;
  gap: 4px;
}

.sif-coming-subscribe > div span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sif-coming-subscribe > div strong {
  color: #10223d;
  font-size: 19px;
  line-height: 1.2;
}

.sif-subscribe-drawer {
  position: sticky;
  z-index: 6;
  bottom: 0;
  display: grid;
  width: 100%;
  margin: -8px auto 0;
  justify-items: center;
  background: rgba(247, 250, 253, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(14px);
  pointer-events: none;
}

.sif-subscribe-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  justify-self: end;
  margin-right: max(20px, calc((100vw - 1120px) / 2));
  padding: 12px 16px;
  color: #fff;
  background: #10223d;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius) var(--radius) 0 0;
  box-shadow: 0 -12px 34px rgba(16, 34, 61, 0.16);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  pointer-events: auto;
}

.sif-subscribe-toggle span {
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  color: #10223d;
  background: #fff;
  border-radius: 50%;
  line-height: 1;
  transition: transform 160ms ease;
}

.sif-subscribe-drawer.is-open .sif-subscribe-toggle span {
  transform: rotate(45deg);
}

.sif-subscribe-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.62fr) minmax(360px, 1fr);
  gap: 22px;
  align-items: center;
  width: min(1120px, calc(100% - 40px));
  padding: 18px 0 20px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  pointer-events: auto;
}

.sif-subscribe-drawer:not(.is-open) {
  width: min(1120px, calc(100% - 40px));
  justify-items: end;
  background: transparent;
  border-top: 0;
  backdrop-filter: none;
}

.sif-subscribe-drawer:not(.is-open) .sif-subscribe-toggle {
  margin-right: 0;
}

.sif-subscribe-drawer:not(.is-open) .sif-subscribe-panel {
  display: none;
}

.sif-subscribe-panel span {
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.sif-subscribe-panel h2 {
  margin: 4px 0 0;
  color: #10223d;
  font-size: 22px;
  line-height: 1.16;
}

.sif-subscribe-form {
  position: relative;
  z-index: 1;
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 10px;
}

.sif-subscribe-form .newsletter-input-row {
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: stretch;
  padding: 6px;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(210, 221, 232, 0.95);
  border-radius: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.sif-subscribe-form .newsletter-input-row input {
  min-height: 46px;
  padding: 0 12px;
  color: #10223d;
  background: transparent;
  border: 0;
  border-radius: 6px;
}

.sif-subscribe-form .newsletter-input-row input::placeholder {
  color: #7a8795;
}

.sif-subscribe-form .newsletter-input-row button {
  min-height: 46px;
  padding: 0 20px;
  color: #fff;
  background: #10223d;
  border: 1px solid #10223d;
  border-radius: 6px;
  box-shadow: 0 12px 24px rgba(16, 34, 61, 0.18);
  font: inherit;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.sif-subscribe-form .newsletter-input-row button:hover {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 14px 28px rgba(233, 121, 34, 0.22);
  transform: translateY(-1px);
}

.sif-subscribe-form .newsletter-input-row button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.sif-subscribe-form .consent-check {
  margin-top: 0;
  color: #263442;
  font-size: 12px;
  line-height: 1.45;
}

.sif-hero-copy h1 {
  max-width: 620px;
  margin: 0;
  color: #10223d;
  font-size: clamp(42px, 5.2vw, 68px);
  line-height: 1.02;
}

.sif-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 17px;
}

.sif-model-visual {
  padding: 22px 22px 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sif-model-visual img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.sif-live-model-section {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto 58px;
  padding: 36px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.sif-live-model-section .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.sif-live-model {
  max-width: 900px;
  margin: 28px auto 0;
}

.sif-framework-svg {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.sif-orbit {
  fill: none;
  stroke: #e6ecf2;
  stroke-width: 3;
}

.sif-center-disc {
  fill: #fff;
  stroke: #eef2f6;
  stroke-width: 16;
}

.sif-center-title {
  fill: #10223d;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sif-center-line {
  stroke: #f05b21;
  stroke-width: 4;
}

.sif-center-copy {
  fill: #253449;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sif-svg-pillar polygon {
  stroke: rgba(255, 255, 255, 0.78);
  stroke-width: 8;
  stroke-linejoin: round;
}

.sif-svg-pillar.is-navy polygon {
  fill: #082542;
}

.sif-svg-pillar.is-orange polygon {
  fill: #f05b21;
}

.sif-svg-pillar.is-slate polygon {
  fill: #536879;
}

.sif-pillar-number-disc {
  fill: #fff;
  stroke: #e7edf3;
  stroke-width: 5;
}

.sif-pillar-number {
  fill: #10223d;
  font-size: 22px;
  font-weight: 700;
}

.sif-pillar-title {
  fill: #fff;
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
}

.sif-pillar-copy {
  fill: #fff;
  font-size: 13.5px;
  font-weight: 500;
}

.sif-foundation {
  fill: #10223d;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.sif-live-model[data-sif-model] {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 28px;
  max-width: 980px;
  align-items: stretch;
  margin: 30px auto 0;
}

.sif-hero-model[data-sif-model] {
  grid-template-columns: 1fr;
  width: min(100%, 680px);
  max-width: 680px;
  margin: 0 0 0 auto;
}

.sif-hero-model .sif-path-map {
  filter: drop-shadow(0 20px 38px rgba(16, 34, 61, 0.12));
}

.sif-model-stage {
  position: relative;
  min-height: 0;
  isolation: isolate;
}

.sif-path-map {
  display: block;
  width: 100%;
  height: auto;
  overflow: visible;
}

.sif-path-orbit {
  fill: none;
  stroke: #dfe7ef;
  stroke-width: 3;
}

.sif-path-orbit.is-inner {
  stroke-dasharray: 5 9;
  opacity: 0.9;
}

.sif-path-segment {
  cursor: pointer;
  outline: none;
}

.sif-path-shape {
  stroke: rgba(255, 255, 255, 0.88);
  stroke-width: 9;
  stroke-linejoin: round;
  stroke-linecap: round;
  transition: filter 180ms ease, stroke 180ms ease, transform 180ms ease;
  transform-box: fill-box;
  transform-origin: center;
}

.sif-path-highlight {
  fill: transparent;
  stroke: rgba(255, 255, 255, 0.22);
  stroke-width: 2;
  stroke-linejoin: round;
  stroke-linecap: round;
  pointer-events: none;
  transform: scale(0.94);
  transform-box: fill-box;
  transform-origin: center;
}

.sif-path-segment.is-navy .sif-path-shape {
  fill: url("#sifNavy");
}

.sif-path-segment.is-orange .sif-path-shape {
  fill: url("#sifOrange");
}

.sif-path-segment.is-slate .sif-path-shape {
  fill: url("#sifSlate");
}

.sif-path-segment:hover .sif-path-shape,
.sif-path-segment:focus-visible .sif-path-shape,
.sif-path-segment.is-active .sif-path-shape {
  filter: drop-shadow(0 18px 20px rgba(16, 34, 61, 0.16));
  stroke: #fff;
  transform: none;
}

.sif-path-segment.is-active .sif-path-highlight {
  stroke: rgba(255, 255, 255, 0.6);
}

.sif-path-number-bg {
  fill: #fff;
  stroke: #e7edf3;
  stroke-width: 6;
  filter: drop-shadow(0 7px 12px rgba(16, 34, 61, 0.16));
}

.sif-path-number {
  fill: #10223d;
  font-size: 22px;
  font-weight: 700;
  pointer-events: none;
}

.sif-path-icon-bg {
  fill: rgba(255, 255, 255, 0.96);
  filter: drop-shadow(0 10px 16px rgba(16, 34, 61, 0.16));
  pointer-events: none;
}

.sif-path-icon {
  fill: none;
  stroke: #10223d;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
}

.sif-path-title {
  fill: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
  pointer-events: none;
}

.sif-path-core circle {
  fill: #fff;
  stroke: #eef3f8;
  stroke-width: 16;
  filter: drop-shadow(0 24px 28px rgba(16, 34, 61, 0.16));
}

.sif-path-core-title {
  fill: #10223d;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-transform: uppercase;
}

.sif-path-core line {
  stroke: #f05b21;
  stroke-width: 4;
}

.sif-path-core-copy {
  fill: #253449;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.sif-path-foundation {
  fill: #10223d;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.sif-model-stage::before,
.sif-model-stage::after {
  display: none;
}

.sif-model-stage::before,
.sif-model-stage::after {
  content: "";
  position: absolute;
  inset: 76px;
  border: 1px solid #dfe7ef;
  border-radius: 50%;
  pointer-events: none;
}

.sif-model-stage::after {
  inset: 142px;
  border-style: dashed;
  border-color: #cfd9e4;
}

.sif-constellation {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.sif-constellation span {
  position: absolute;
  border-radius: 999px;
  background: #eef3f8;
}

.sif-constellation span:nth-child(1) {
  top: 308px;
  left: 80px;
  width: calc(100% - 160px);
  height: 2px;
}

.sif-constellation span:nth-child(2) {
  top: 124px;
  left: 50%;
  width: 2px;
  height: 370px;
  transform: translateX(-50%);
}

.sif-constellation span:nth-child(3) {
  top: 306px;
  left: 118px;
  width: calc(100% - 236px);
  height: 2px;
  transform: rotate(-58deg);
  transform-origin: center;
}

.sif-model-core {
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  display: grid;
  width: 230px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  padding: 28px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.9)),
    #fff;
  border: 10px solid #eef3f8;
  border-radius: 50%;
  box-shadow: 0 24px 56px rgba(16, 34, 61, 0.16);
  transform: translate(-50%, -50%);
}

.sif-model-core span {
  color: #10223d;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.08;
  text-transform: uppercase;
}

.sif-model-core strong {
  color: #253449;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.6;
  text-transform: uppercase;
}

.sif-model-core strong::before {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  margin: 16px auto 12px;
  background: #f05b21;
}

.sif-model-core small {
  margin-top: 14px;
  color: #536879;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sif-pillar-node {
  position: absolute;
  z-index: 3;
  display: grid;
  width: 174px;
  aspect-ratio: 86 / 100;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 30px 18px 26px;
  color: #fff;
  border: 0;
  clip-path: polygon(50% 0, 93.3% 25%, 93.3% 75%, 50% 100%, 6.7% 75%, 6.7% 25%);
  cursor: pointer;
  font: inherit;
  text-align: center;
  box-shadow: 0 18px 36px rgba(16, 34, 61, 0.16);
  transition: transform 180ms ease, filter 180ms ease, opacity 180ms ease;
}

.sif-pillar-node::before {
  content: "";
  position: absolute;
  inset: 7px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.42);
  clip-path: inherit;
}

.sif-pillar-node::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.18), transparent 44%);
}

.sif-pillar-node span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #10223d;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 6px 14px rgba(16, 34, 61, 0.16);
  font-size: 16px;
  font-weight: 700;
}

.sif-pillar-node strong {
  max-width: 126px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.18;
  text-transform: uppercase;
}

.sif-pillar-node em {
  max-width: 118px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.35;
}

.sif-pillar-node.is-navy {
  background: #082542;
}

.sif-pillar-node.is-orange {
  background: #f05b21;
}

.sif-pillar-node.is-slate {
  background: #536879;
}

.sif-pillar-node:hover,
.sif-pillar-node:focus-visible,
.sif-pillar-node.is-active {
  filter: saturate(1.05);
  transform: translate(-50%, -50%) translateY(-4px);
}

.sif-pillar-node.is-active {
  outline: 4px solid rgba(240, 91, 33, 0.18);
  outline-offset: 7px;
  box-shadow: 0 22px 42px rgba(16, 34, 61, 0.18), 0 0 0 10px rgba(240, 91, 33, 0.08);
}

.sif-pillar-node.sif-node-1 {
  top: 116px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sif-pillar-node.sif-node-2 {
  top: 246px;
  left: 79%;
  transform: translate(-50%, -50%);
}

.sif-pillar-node.sif-node-3 {
  top: 448px;
  left: 79%;
  transform: translate(-50%, -50%);
}

.sif-pillar-node.sif-node-4 {
  top: 560px;
  left: 50%;
  transform: translate(-50%, -50%);
}

.sif-pillar-node.sif-node-5 {
  top: 448px;
  left: 21%;
  transform: translate(-50%, -50%);
}

.sif-pillar-node.sif-node-6 {
  top: 246px;
  left: 21%;
  transform: translate(-50%, -50%);
}

.sif-model-panel {
  min-height: 670px;
  padding: 30px;
  background: #f7f9fb;
  border: 1px solid #dfe7ef;
  border-radius: var(--radius);
  box-shadow: 0 16px 36px rgba(16, 34, 61, 0.08);
}

.sif-panel-number {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  margin: 12px 0 22px;
  color: #fff;
  background: #10223d;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
}

.sif-model-panel h3 {
  margin: 0;
  color: #10223d;
  font-size: 28px;
  line-height: 1.12;
}

.sif-model-panel p {
  color: var(--muted);
}

.sif-panel-signal {
  display: grid;
  gap: 6px;
  margin: 24px 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #dfe7ef;
  border-radius: var(--radius);
}

.sif-panel-signal span {
  color: #6d7886;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.sif-panel-signal strong {
  color: #f05b21;
  font-size: 17px;
}

.sif-panel-detail {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.65;
  min-height: 126px;
}

.sif-pillars-detail-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

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

.sif-pillar-detail-card {
  display: grid;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-pillar-detail-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: #10223d;
  border-radius: 50%;
  font-weight: 700;
}

.sif-pillar-detail-card h3 {
  margin: 0;
  color: #10223d;
  font-size: 22px;
  line-height: 1.18;
}

.sif-pillar-detail-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sif-pillar-detail-card strong {
  display: inline-block;
  margin-top: 16px;
  color: #f05b21;
  font-size: 14px;
}

.sif-process-section,
.sif-insights-section {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

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

.sif-process-grid article {
  min-height: 168px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-process-grid span,
.sif-insight-list span {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  margin-bottom: 24px;
  color: #fff;
  background: #10223d;
  border-radius: 50%;
  font-weight: 700;
}

.sif-process-grid h3 {
  margin: 0;
  color: #10223d;
  font-size: 20px;
}

.sif-process-grid p,
.sif-insight-list p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.sif-evidence-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.sif-evidence-section h2 {
  margin: 0;
  color: #10223d;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.sif-evidence-list {
  display: grid;
  gap: 10px;
}

.sif-evidence-list p {
  margin: 0;
  padding: 16px 18px;
  color: var(--muted);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-insight-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.sif-insight-list article {
  display: grid;
  gap: 14px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-insight-list span {
  margin-bottom: 0;
}

.sif-intro,
.sif-application {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 48px;
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.sif-intro h2,
.sif-application h2,
.sif-pillars-section h2 {
  margin: 0;
  color: #10223d;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.12;
}

.sif-intro > p,
.sif-application p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.sif-pillars-section {
  padding: 58px 0;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  max-width: 760px;
  gap: 8px;
  margin-bottom: 24px;
}

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

.sif-pillar-grid article {
  min-height: 190px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-pillar-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  margin-bottom: 26px;
  color: #fff;
  background: #10223d;
  border-radius: 50%;
  font-weight: 700;
}

.sif-pillar-grid h3 {
  margin: 0;
  color: #10223d;
  font-size: 20px;
  line-height: 1.2;
}

.sif-pillar-grid p {
  margin: 10px 0 0;
  color: var(--muted);
}

.sif-use-list {
  display: grid;
  gap: 10px;
}

.sif-use-list p {
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.sif-cta {
  margin-top: 0;
}

@media (max-width: 1100px) {
  .sif-hero {
    grid-template-columns: 1fr;
  }

  .sif-model-visual {
    max-width: 760px;
  }

  .sif-coming-stage {
    grid-template-columns: minmax(300px, 0.76fr) minmax(460px, 1fr);
    gap: 30px;
  }

  .sif-coming-copy h1 {
    font-size: clamp(42px, 6vw, 64px);
  }

  .sif-coming-modal {
    width: min(620px, 100%);
  }
}

@media (max-width: 780px) {
  .sif-hero,
  .sif-coming-soon,
  .sif-intro,
  .sif-pillars-section,
  .sif-application {
    width: calc(100% - 32px);
  }

  .sif-coming-soon {
    width: 100%;
    min-height: calc(100vh - 82px);
    padding: 28px 16px 42px;
    align-content: center;
  }

  .sif-coming-soon::before {
    inset: 0;
  }

  .sif-coming-soon::after {
    inset: 0;
    background-size: 44px 44px;
    mask-image: radial-gradient(circle at 50% 45%, #000 0, transparent 76%);
  }

  .sif-animated-bg {
    inset: -24%;
  }

  .sif-animated-bg span {
    min-width: 280px;
    filter: blur(54px);
    opacity: 0.36;
  }

  .sif-coming-stage {
    grid-template-columns: 1fr;
    gap: 52px;
    align-items: center;
    justify-items: center;
  }

  .sif-coming-copy {
    justify-items: center;
    text-align: center;
  }

  .sif-coming-copy p {
    margin-bottom: 14px;
  }

  .sif-coming-copy h1 {
    max-width: 100%;
    font-size: clamp(40px, 12vw, 62px);
    line-height: 1.02;
  }

  .sif-coming-copy h1::after {
    width: 150px;
    height: 4px;
    margin: 24px auto 0;
  }

  .sif-coming-modal {
    width: 100%;
    justify-self: stretch;
    padding-top: 0;
    border-radius: 0;
  }

  .sif-coming-model {
    width: min(100%, 620px);
  }

  .sif-coming-model .sif-path-map {
    max-height: 54vh;
  }

  .sif-coming-modal-head strong {
    font-size: 19px;
  }

  .sif-coming-subscribe {
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    margin-top: 74px;
    padding: 16px;
    border-radius: 9px;
  }

  .sif-coming-subscribe > div strong {
    font-size: 17px;
  }

  .sif-subscribe-drawer {
    width: 100%;
    margin-top: -6px;
  }

  .sif-subscribe-toggle {
    width: calc(100% - 32px);
    margin-right: 16px;
    justify-content: space-between;
  }

  .sif-subscribe-panel {
    grid-template-columns: 1fr;
    width: calc(100% - 32px);
    gap: 16px;
    padding: 18px 0 20px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .sif-subscribe-drawer:not(.is-open) {
    width: calc(100% - 32px);
  }

  .sif-subscribe-form .newsletter-input-row {
    grid-template-columns: 1fr;
  }

  .sif-subscribe-form .newsletter-input-row button {
    width: 100%;
  }

  .sif-hero {
    gap: 30px;
    padding: 52px 0 38px;
  }

  .sif-model-visual {
    padding: 10px;
  }

  .sif-live-model-section {
    width: calc(100% - 32px);
    margin-bottom: 44px;
    padding: 20px;
  }

  .sif-live-model {
    margin-top: 20px;
  }

  .sif-pillar-title {
    font-size: 20px;
  }

  .sif-pillar-copy {
    font-size: 13px;
  }

  .sif-center-title {
    font-size: 26px;
  }

  .sif-foundation {
    font-size: 14px;
    letter-spacing: 0.16em;
  }

  .sif-live-model[data-sif-model] {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .sif-hero-model[data-sif-model] {
    width: 100%;
    max-width: 520px;
    margin: 12px auto 0;
  }

  .sif-model-stage {
    display: grid;
    min-height: 0;
    gap: 12px;
  }

  .sif-model-stage::before,
  .sif-model-stage::after,
  .sif-constellation {
    display: none;
  }

  .sif-model-core {
    position: relative;
    top: auto;
    left: auto;
    width: min(230px, 78vw);
    min-height: 230px;
    margin: 0 auto 8px;
    transform: none;
  }

  .sif-pillar-node,
  .sif-pillar-node:hover,
  .sif-pillar-node:focus-visible,
  .sif-pillar-node.is-active {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    min-height: 112px;
    justify-items: start;
    align-content: center;
    padding: 18px 20px;
    clip-path: none;
    border-radius: var(--radius);
    text-align: left;
    transform: none;
  }

  .sif-pillar-node::before {
    border-radius: calc(var(--radius) - 2px);
    clip-path: none;
  }

  .sif-pillar-node strong,
  .sif-pillar-node em {
    max-width: none;
  }

  .sif-pillar-node.is-active {
    outline-offset: 3px;
  }

  .sif-model-panel {
    min-height: 0;
    padding: 22px;
  }

  .sif-model-panel h3 {
    font-size: 24px;
  }

  .sif-pillars-detail-section {
    width: calc(100% - 32px);
    padding: 44px 0;
  }

  .sif-pillar-detail-grid {
    grid-template-columns: 1fr;
  }

  .sif-pillar-detail-card {
    padding: 20px;
  }

  .sif-pillar-detail-card h3 {
    font-size: 20px;
  }

  .sif-process-section,
  .sif-evidence-section,
  .sif-insights-section {
    width: calc(100% - 32px);
    padding: 44px 0;
  }

  .sif-process-grid,
  .sif-evidence-section,
  .sif-insight-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .sif-process-grid article {
    min-height: 0;
    padding: 20px;
  }

  .sif-evidence-section {
    gap: 24px;
  }

  .sif-insight-list article {
    padding: 20px;
  }

  .sif-intro,
  .sif-application {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 44px 0;
  }

  .sif-pillar-grid {
    grid-template-columns: 1fr;
  }
}
