:root {
  --forest-980: #2a2175;
  --forest-940: #3b2fb2;
  --forest-900: #4a3bb2;
  --forest-820: #6c3fc7;
  --forest-700: #625ba3;
  --forest-620: #8a85b9;
  --gold-500: #c93396;
  --gold-420: #6fdad1;
  --gold-260: #d1f752;
  --accent-a-rgb: 103, 173, 174;
  --accent-b-rgb: 203, 221, 106;
  --cream-100: #f3f2ff;
  --cream-80: #f8f8ff;
  --cream-60: #fdfdff;
  --white: #ffffff;
  --line: rgba(74, 59, 178, 0.12);
  --line-strong: rgba(201, 51, 150, 0.32);
  --shadow-lg: 0 40px 90px rgba(42, 33, 117, 0.2);
  --shadow-md: 0 24px 52px rgba(42, 33, 117, 0.14);
  --shadow-sm: 0 14px 28px rgba(42, 33, 117, 0.1);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans: "Avenir Next", "Optima", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--forest-900);
  font-family: var(--sans);
  background:
    radial-gradient(circle at top left, rgba(111, 218, 209, 0.16), transparent 24%),
    radial-gradient(circle at top right, rgba(201, 51, 150, 0.1), transparent 20%),
    linear-gradient(180deg, #f6f5ff 0%, #fbfbff 34%, #f5f2ff 100%);
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(74, 59, 178, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(74, 59, 178, 0.045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at center, black 26%, transparent 74%);
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.shell {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 80;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-980);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(22px);
  background: rgba(252, 252, 255, 0.8);
  border-bottom: 1px solid rgba(var(--brand-rgb), 0.09);
}

.site-header.is-home {
  background: rgba(248, 247, 255, 0.7);
}

.header-inner {
  min-height: 96px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
}

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

.brand img {
  width: 248px;
  height: auto;
  flex-shrink: 0;
}

.brand-copy {
  display: grid;
  gap: 4px;
  max-width: 220px;
}

.brand-copy strong,
.hero-stat-card strong,
.metric-value,
.note-panel h2,
.feature-panel-overlay p:first-child + p {
  font-family: var(--serif);
}

.brand-copy strong {
  font-size: 1.18rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--forest-980);
}

.brand-copy span,
.footer-label,
.eyebrow,
.surface-label,
.audience-kicker,
.media-card span {
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand-copy span,
.footer-label,
.eyebrow,
.surface-label {
  color: var(--forest-700);
}

.brand-copy span {
  line-height: 1.55;
}

.site-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  color: var(--forest-700);
  font-size: 0.96rem;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold-500), rgba(var(--accent-a-rgb), 0.9) 62%, transparent 90%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav .is-active::after {
  transform: scaleX(1);
}

.site-nav .is-active {
  color: var(--forest-980);
}

.header-tools {
  display: flex;
  align-items: center;
  gap: 14px;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid rgba(74, 59, 178, 0.14);
  background: rgba(255, 255, 255, 0.72);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
  white-space: nowrap;
}

.lang-switch select {
  appearance: none;
  display: block;
  border: 0;
  background: transparent;
  color: var(--forest-980);
  min-width: 0;
  width: auto;
  field-sizing: content;
  padding-right: 0;
  cursor: pointer;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-align: center;
}

.lang-switch select:focus {
  outline: none;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 0.96rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

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

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--forest-980), var(--forest-900));
  box-shadow: 0 16px 30px rgba(var(--brand-rgb), 0.18);
}

.button-secondary,
.button-ghost {
  color: var(--forest-980);
  border-color: rgba(var(--brand-rgb), 0.16);
  background: rgba(255, 255, 255, 0.72);
}

.button-secondary:hover,
.button-ghost:hover {
  border-color: rgba(var(--brand-rgb), 0.28);
  background: rgba(255, 255, 255, 0.92);
}

.home-hero,
.page-hero {
  position: relative;
  overflow: clip;
  color: var(--white);
}

.home-hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
}

.home-hero::after,
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(42, 33, 117, 0.84), rgba(42, 33, 117, 0.34) 50%, rgba(59, 47, 178, 0.62)),
    linear-gradient(180deg, rgba(42, 33, 117, 0.18), rgba(42, 33, 117, 0.56)),
    radial-gradient(circle at 20% 22%, rgba(111, 218, 209, 0.2), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(201, 51, 150, 0.18), transparent 24%);
}

.home-hero-shell,
.page-hero-shell {
  position: relative;
  z-index: 1;
}

.home-hero-shell {
  min-height: calc(100svh - 108px);
  padding: 112px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.58fr);
  align-items: end;
  gap: 28px;
}

.page-hero-shell {
  min-height: min(84svh, 820px);
  padding: 112px 0 48px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.62fr);
  align-items: end;
  gap: 28px;
}

.home-hero-copy,
.page-hero-copy {
  max-width: 760px;
}

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

.home-hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.site-footer h2,
.contact-ribbon h2,
.form-shell h2,
.note-panel h2,
.hero-note h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.home-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
}

.page-hero-copy h1 {
  max-width: 12ch;
  font-size: clamp(2.9rem, 5.5vw, 5.4rem);
}

.hero-text,
.section-copy,
.card p,
.stack-card p,
.timeline-item p,
.gallery-card p,
.channel-card p,
.media-card h3,
.form-shell p,
.mini-card p,
.proof-panel p,
.feature-panel-overlay p,
.ribbon-grid p,
.note-panel p,
.editorial-stat p {
  line-height: 1.78;
}

.hero-text {
  max-width: 64ch;
  margin: 26px 0 0;
  font-size: 1.06rem;
  color: rgba(243, 242, 255, 0.9);
}

.hero-microcopy {
  margin: 20px 0 0;
  max-width: 48ch;
  color: rgba(111, 218, 209, 0.95);
  letter-spacing: 0.04em;
  line-height: 1.7;
}

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

.hero-note,
.page-hero-panel,
.proof-panel,
.proof-partners,
.form-shell,
.note-panel,
.feature-panel-overlay,
.ribbon-grid,
.card,
.stack-card,
.media-card,
.channel-card,
.timeline-item,
.gallery-card,
.editorial-stat,
.audience-card {
  backdrop-filter: blur(10px);
}

.hero-note,
.page-hero-panel {
  padding: 28px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(111, 218, 209, 0.04)),
    rgba(47, 35, 135, 0.52);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-md);
}

.hero-note h2 {
  margin-top: 8px;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  line-height: 1.08;
}

.signal-list,
.mini-stack,
.stack-list,
.channel-stack,
.checklist,
.media-list {
  display: grid;
  gap: 14px;
}

.signal-list {
  margin-top: 22px;
}

.signal-chip,
.checklist div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(243, 242, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(243, 242, 255, 0.84);
  line-height: 1.6;
}

.page-hero-panel .channel-card,
.page-hero-panel .mini-card {
  background: rgba(243, 242, 255, 0.08);
}

.mini-card,
.channel-card {
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(243, 242, 255, 0.06);
}

.mini-card h3,
.channel-card strong,
.timeline-item h3,
.card h3,
.stack-card h3,
.gallery-card h3,
.editorial-stat h3,
.audience-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  color: var(--forest-980);
}

.page-hero-panel .mini-card h3,
.page-hero-panel .channel-card strong,
.page-hero-panel .surface-copy,
.page-hero-panel .channel-card p,
.page-hero-panel .channel-card span,
.mini-card p {
  color: rgba(243, 242, 255, 0.84);
}

.page-hero-panel .mini-card h3,
.page-hero-panel .channel-card strong {
  color: var(--white);
}

.page-hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  min-height: 360px;
}

.page-hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 26, 43, 0.04), rgba(23, 26, 43, 0.26)),
    linear-gradient(135deg, rgba(var(--brand-soft-rgb), 0.18), transparent 34%),
    linear-gradient(320deg, rgba(var(--brand-rgb), 0.12), transparent 36%);
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-stat-strip {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.hero-scroll-cue {
  grid-column: 1 / -1;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  justify-self: start;
  color: rgba(243, 242, 255, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-scroll-cue i {
  width: 26px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(243, 242, 255, 0.35);
  position: relative;
}

.hero-scroll-cue i::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(111, 218, 209, 0.92);
  transform: translateX(-50%);
  animation: scroll-nudge 1.6s ease-in-out infinite;
}

.hero-stat-card {
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(243, 242, 255, 0.08);
  box-shadow: var(--shadow-sm);
}

.hero-stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(1.55rem, 2vw, 2rem);
  color: var(--white);
}

.hero-stat-card span {
  color: rgba(243, 242, 255, 0.8);
}

.content-section,
.contact-ribbon {
  padding: 96px 0;
}

.muted-section {
  background:
    linear-gradient(180deg, rgba(111, 218, 209, 0.12), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(201, 51, 150, 0.08), transparent 22%);
}

.page-foundation-section {
  background:
    linear-gradient(180deg, rgba(var(--brand-soft-rgb), 0.1), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(var(--brand-rgb), 0.05), transparent 22%);
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 30px;
}

.section-heading h2,
.site-footer h2,
.contact-ribbon h2,
.form-shell h2,
.note-panel h2 {
  color: var(--forest-980);
}

.section-heading h2 {
  max-width: 14ch;
  font-size: clamp(2.1rem, 4vw, 3.7rem);
}

.section-copy {
  max-width: 62ch;
  margin: 0;
  color: var(--forest-700);
}

.editorial-grid,
.contact-layout,
.media-layout,
.two-column,
.footer-grid,
.feature-panel,
.proof-layout,
.manifesto-panel,
.news-digest-grid {
  display: grid;
  gap: 28px;
}

.editorial-grid {
  grid-template-columns: minmax(320px, 0.94fr) minmax(0, 1.06fr);
  align-items: stretch;
}

.editorial-grid.is-reversed {
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
}

.editorial-grid.is-reversed .editorial-visual {
  order: 2;
}

.editorial-visual,
.feature-panel-visual {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
  min-height: 100%;
}

.editorial-visual::after,
.feature-panel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(42, 33, 117, 0.08), rgba(42, 33, 117, 0.34)),
    linear-gradient(120deg, rgba(111, 218, 209, 0.12), transparent 58%),
    linear-gradient(300deg, rgba(201, 51, 150, 0.1), transparent 56%);
}

.editorial-visual img,
.feature-panel-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-visual img {
  min-height: 620px;
}

.editorial-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.editorial-copy .section-heading {
  margin-bottom: 16px;
}

.editorial-stats,
.card-grid,
.resource-grid,
.gallery-grid,
.audience-grid,
.partner-grid,
.manifesto-points {
  display: grid;
  gap: 18px;
}

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

.metric-value {
  display: block;
  margin-bottom: 16px;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  color: var(--forest-980);
}

.editorial-stat,
.card,
.resource-card,
.stack-card,
.media-card,
.timeline-item,
.gallery-card,
.channel-card,
.form-shell,
.note-panel,
.audience-card,
.proof-panel,
.proof-partners {
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-sm);
}

.editorial-stat,
.card,
.resource-card,
.stack-card,
.media-card,
.channel-card,
.form-shell,
.note-panel,
.proof-panel,
.proof-partners {
  padding: 28px;
}

.card,
.stack-card,
.resource-card,
.form-shell,
.note-panel,
.proof-panel,
.proof-partners,
.audience-card {
  position: relative;
  overflow: hidden;
}

.card::before,
.stack-card::before,
.resource-card::before,
.form-shell::before,
.note-panel::before,
.proof-panel::before,
.proof-partners::before,
.audience-card::before {
  content: "";
  position: absolute;
  left: 28px;
  right: 28px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, rgba(var(--accent-a-rgb), 0.34), rgba(var(--brand-rgb), 0.1), rgba(var(--accent-b-rgb), 0.26));
}

.card .surface-label {
  margin: 0 0 12px;
}

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

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

.resource-card h3 {
  margin: 0 0 10px;
  font-size: 1.14rem;
  color: var(--forest-980);
}

.resource-card p {
  color: var(--forest-700);
  line-height: 1.76;
}

.resource-card .button {
  margin-top: 18px;
}

.trust-results-grid .card--trust:first-child {
  grid-column: span 2;
  padding: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--page-rgb), 0.88)),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.trust-results-grid .card--trust:first-child h3 {
  font-size: 1.42rem;
}

.trust-results-grid .card--trust:first-child p {
  max-width: 52ch;
}

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

.about-framework-grid .card--about:first-child {
  grid-column: span 2;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.14), transparent 40%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.9));
  box-shadow: var(--shadow-md);
}

.about-framework-grid .card--about:last-child {
  grid-column: span 2;
}

.card--about h3,
.card--awards h3,
.card--news h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.08;
}

.about-framework-grid .card--about:first-child h3 {
  font-size: 1.72rem;
}

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

.gallery-card--about:first-child {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
}

.gallery-card--about:first-child img {
  height: 100%;
  min-height: 420px;
}

.gallery-card--about:first-child .gallery-card-copy {
  display: grid;
  align-content: center;
  padding: 34px;
}

.gallery-card--about:first-child h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.06;
}

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

.awards-structure-grid .card--awards:first-child {
  grid-column: span 2;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(var(--accent-b-rgb), 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.9));
  box-shadow: var(--shadow-md);
}

.awards-structure-grid .card--awards:first-child h3 {
  font-size: 1.88rem;
}

.card--awards {
  min-height: 240px;
}

.awards-benefit-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card--awards-benefit {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--page-rgb), 0.9)),
    rgba(255, 255, 255, 0.88);
}

.card--awards-benefit h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  line-height: 1.08;
}

.note-panel--awards {
  background:
    linear-gradient(135deg, rgba(var(--accent-b-rgb), 0.16), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.92));
}

.note-panel--awards h2 {
  max-width: 18ch;
}

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

.institution-value-grid .card--institution:nth-child(2) {
  margin-top: 52px;
}

.institution-value-grid .card--institution:last-child {
  grid-column: span 2;
  display: grid;
  gap: 12px;
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(var(--page-rgb), 0.88));
}

.institution-support-grid .card--institution-support {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(var(--page-rgb), 0.86)),
    rgba(255, 255, 255, 0.88);
}

.contact-expectation-grid .card--contact {
  min-height: 240px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(var(--page-rgb), 0.88)),
    rgba(255, 255, 255, 0.88);
}

.contact-expectation-grid .card--contact h3 {
  font-family: var(--serif);
  font-size: 1.42rem;
  line-height: 1.08;
}

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

.news-category-grid .card--news:first-child {
  grid-column: span 2;
  padding: 36px;
  background:
    linear-gradient(135deg, rgba(var(--brand-rgb), 0.08), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.9));
}

.news-category-grid .card--news:first-child h3 {
  font-size: 1.82rem;
}

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

.resource-card--news:first-child {
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.15), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.92));
  box-shadow: var(--shadow-md);
}

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

.stack-card--news {
  min-height: 220px;
  padding-left: 32px;
  background:
    linear-gradient(90deg, rgba(var(--brand-rgb), 0.12), rgba(var(--brand-rgb), 0) 34px),
    rgba(255, 255, 255, 0.86);
}

.stack-card--news h3 {
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.08;
}

.card-step,
.audience-kicker,
.media-card span {
  color: var(--gold-420);
  font-weight: 700;
}

.card p,
.stack-card p,
.media-card h3,
.channel-card p,
.gallery-card p,
.timeline-item p,
.proof-panel p,
.feature-panel-overlay p,
.note-panel p,
.form-shell p,
.editorial-stat p,
.partner-chip,
.site-footer p,
.footer-links,
.footer-bottom {
  color: var(--forest-700);
}

.channel-card span,
.resource-card .surface-label,
.form-meta .surface-label {
  color: var(--forest-620);
}

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

.audience-card {
  padding: 34px;
}

.editorial-audience-grid {
  align-items: stretch;
}

.audience-card.is-featured {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(241, 237, 255, 0.92)),
    rgba(255, 255, 255, 0.78);
  border-color: rgba(111, 218, 209, 0.28);
}

.audience-card.is-secondary {
  margin-top: 46px;
}

.audience-card h3 {
  font-family: var(--serif);
  font-size: 1.85rem;
  line-height: 1.05;
  margin-bottom: 14px;
}

.audience-card p {
  margin: 0 0 24px;
  line-height: 1.76;
}

.proof-layout {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: start;
}

.editorial-proof-layout {
  align-items: stretch;
}

.proof-side {
  display: grid;
  gap: 18px;
}

.proof-results .stack-card:nth-child(2) {
  margin-left: 34px;
}

.proof-results .stack-card:nth-child(3) {
  margin-left: 12px;
}

.proof-intro h3 {
  margin: 10px 0 12px;
  font-family: var(--serif);
  font-size: 1.8rem;
  line-height: 1.08;
  color: var(--forest-980);
}

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

.partner-chip {
  padding: 16px 18px;
  text-align: center;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 252, 246, 0.9);
}

.feature-panel {
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  align-items: stretch;
}

.manifesto-section {
  padding-top: 26px;
}

.manifesto-panel {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  padding: 38px 0 0;
  border-top: 1px solid rgba(111, 218, 209, 0.35);
}

.manifesto-copy h2 {
  margin: 0;
  max-width: 16ch;
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
  color: var(--forest-980);
}

.manifesto-copy p:last-child {
  max-width: 64ch;
  margin: 18px 0 0;
  color: var(--forest-700);
  line-height: 1.82;
}

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

.manifesto-point {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
  padding: 18px 0;
  border-bottom: 1px solid rgba(74, 59, 178, 0.1);
}

.manifesto-point:first-child {
  border-top: 1px solid rgba(74, 59, 178, 0.1);
}

.manifesto-point span {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--gold-420);
}

.manifesto-point p {
  margin: 0;
  line-height: 1.72;
  color: var(--forest-900);
}

.feature-panel-copy {
  display: grid;
  align-content: start;
}

.feature-panel-visual img {
  min-height: 720px;
}

.feature-panel-overlay {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.82);
  color: var(--forest-700);
  backdrop-filter: blur(16px);
}

.feature-panel-overlay .button {
  margin-top: 14px;
}

.feature-panel-overlay .surface-label,
.feature-panel-overlay p:first-child + p {
  color: var(--forest-980);
}

.timeline {
  display: grid;
  gap: 16px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
}

.timeline-item h3 {
  font-family: var(--serif);
  font-size: 1.34rem;
  line-height: 1.08;
}

.timeline-item span:first-child {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(111, 218, 209, 0.18);
  color: var(--forest-980);
  font-weight: 700;
}

.timeline-item.is-pending span:first-child {
  background: rgba(197, 166, 92, 0.18);
  color: var(--forest-980);
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  margin: 8px 0 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(197, 166, 92, 0.24);
  background: rgba(197, 166, 92, 0.12);
  color: var(--forest-900) !important;
  font-size: 0.75rem;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.gallery-card {
  overflow: hidden;
  padding: 0;
}

.gallery-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.gallery-card-copy {
  padding: 24px;
}

.media-layout,
.contact-layout,
.two-column,
.footer-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-layout {
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 40px;
}

.contact-layout .form-shell {
  position: sticky;
  top: 118px;
}

.contact-route-column {
  display: grid;
  gap: 22px;
}

.contact-route-column .section-heading {
  margin-bottom: 8px;
}

.contact-route-column .section-heading h2 {
  max-width: 8.5ch;
}

.news-digest-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: start;
}

.news-digest-side {
  padding-top: 48px;
}

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

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

.full-width,
.form-status {
  grid-column: 1 / -1;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(74, 59, 178, 0.14);
  background: rgba(248, 248, 255, 0.96);
  color: var(--forest-980);
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  outline: 2px solid rgba(111, 218, 209, 0.28);
  border-color: transparent;
}

.form-status {
  margin: 0;
  color: var(--forest-900);
}

.form-meta {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.12), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.92));
}

.form-meta strong {
  display: block;
  margin: 6px 0 8px;
  font-family: var(--serif);
  font-size: 1.24rem;
  color: var(--forest-980);
}

.form-meta p:last-child {
  margin: 0;
}

.channel-stack {
  gap: 16px;
}

.contact-route-column .channel-card:first-child {
  padding: 22px 24px;
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.12), transparent 48%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.contact-route-column .channel-card:first-child strong {
  font-size: 1.42rem;
}

.inquiry-form .button {
  min-width: 220px;
  justify-content: center;
}

.inquiry-form textarea {
  min-height: 180px;
}

.faq-grid {
  gap: 16px;
}

.stack-card--faq {
  padding-left: 32px;
  background:
    linear-gradient(90deg, rgba(var(--accent-a-rgb), 0.16), rgba(var(--accent-a-rgb), 0) 32px),
    rgba(255, 255, 255, 0.84);
}

.stack-card--faq h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  line-height: 1.08;
}

.contact-ribbon {
  padding-top: 14px;
}

.ribbon-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.24fr) auto;
  align-items: center;
  gap: 22px;
  padding: 34px;
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background:
    linear-gradient(130deg, rgba(111, 218, 209, 0.14), transparent 36%),
    linear-gradient(320deg, rgba(201, 51, 150, 0.14), transparent 36%),
    linear-gradient(145deg, var(--forest-980), var(--forest-900));
  box-shadow: var(--shadow-lg);
}

.ribbon-copy {
  min-width: 0;
}

.ribbon-grid h2 {
  max-width: none;
  color: var(--white);
  font-size: clamp(2rem, 3.4vw, 3.2rem);
}

.ribbon-grid p {
  margin: 12px 0 0;
  max-width: 62ch;
  color: rgba(243, 242, 255, 0.82);
}

.ribbon-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

:root {
  --brand-rgb: 90, 72, 207;
  --brand-soft-rgb: 167, 158, 240;
  --accent-a-rgb: 103, 173, 174;
  --accent-b-rgb: 203, 221, 106;
  --page-rgb: 246, 247, 251;
  --page-soft-rgb: 251, 251, 253;
  --page-deep-rgb: 238, 241, 249;
  --forest-980: #171a2b;
  --forest-940: #34258f;
  --forest-900: #1f2338;
  --forest-820: #5a48cf;
  --forest-700: #60657b;
  --forest-620: #8e93a7;
  --gold-500: #5a48cf;
  --gold-420: #7fe0d8;
  --gold-260: #ece9ff;
  --cream-100: #f6f7fb;
  --cream-80: #fbfbfd;
  --cream-60: #ffffff;
  --line: rgba(90, 72, 207, 0.12);
  --line-strong: rgba(90, 72, 207, 0.24);
  --shadow-lg: 0 30px 70px rgba(18, 22, 44, 0.09);
  --shadow-md: 0 22px 48px rgba(18, 22, 44, 0.08);
  --shadow-sm: 0 12px 26px rgba(18, 22, 44, 0.06);
  --serif: "Baskerville", "Iowan Old Style", "Palatino Linotype", "Times New Roman", serif;
  --sans: "SF Pro Display", "Avenir Next", "Helvetica Neue", "PingFang SC", sans-serif;
}

body {
  color: var(--forest-900);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-a-rgb), 0.14), transparent 20%),
    radial-gradient(circle at top right, rgba(var(--accent-b-rgb), 0.16), transparent 18%),
    linear-gradient(180deg, rgb(var(--page-soft-rgb)) 0%, rgb(var(--page-rgb)) 100%);
}

body::before {
  opacity: 0;
}

.site-header {
  background: rgba(var(--page-soft-rgb), 0.8);
  border-bottom-color: rgba(23, 26, 43, 0.06);
}

.site-header.is-home {
  background: rgba(var(--page-soft-rgb), 0.72);
}

.lang-switch {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
}

.lang-switch:hover,
.lang-switch:focus-within {
  background: #f1f1f1;
}

.button-primary {
  background: linear-gradient(135deg, var(--forest-940), var(--forest-820));
  box-shadow: 0 16px 32px rgba(52, 37, 143, 0.16);
}

.button-secondary,
.button-ghost {
  border-color: var(--line-strong);
  background: rgba(255, 255, 255, 0.86);
}

.button-secondary:hover,
.button-ghost:hover {
  background: rgba(255, 255, 255, 0.96);
}

.home-hero .hero-actions .button-ghost:hover,
.home-hero .hero-actions .button-ghost:focus-visible {
  background: #f1f1f1;
}

.header-tools .button-secondary:hover,
.header-tools .button-secondary:focus-visible {
  background: #f1f1f1;
}

.home-hero--editorial {
  overflow: visible;
  color: var(--forest-900);
}

.home-hero--editorial::before,
.home-hero--editorial::after {
  display: none;
}

.home-hero--editorial .home-hero-shell {
  min-height: auto;
  padding: 34px 0 8px;
  grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.97fr);
  align-items: stretch;
  gap: 48px;
}

.home-hero--editorial .home-hero-copy {
  max-width: 680px;
}

.home-hero--editorial .home-hero-copy .eyebrow {
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.08em;
}

.home-hero--editorial .home-hero-copy h1 {
  max-width: 9ch;
  color: var(--forest-980);
  font-size: clamp(3.6rem, 7vw, 6.8rem);
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.home-hero--editorial .hero-text {
  max-width: 48ch;
  margin-top: 20px;
  color: var(--forest-700);
  font-size: 1rem;
}

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

.home-hero-metrics {
  margin-top: 32px;
}

.home-hero-metric,
.statement-card {
  padding: 22px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 14px 30px rgba(42, 33, 117, 0.08);
  backdrop-filter: blur(18px);
}

.home-hero-metric strong {
  display: block;
  margin-bottom: 8px;
  font-family: var(--serif);
  font-size: 1.52rem;
  color: var(--forest-980);
}

.home-hero-metric span {
  color: var(--forest-700);
}

.home-hero-side {
  display: grid;
  gap: 18px;
  height: 100%;
}

.home-hero-note {
  padding: 26px 28px;
  border-radius: 30px;
  border: 1px solid rgba(var(--brand-rgb), 0.1);
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.12), transparent 42%),
    linear-gradient(24deg, rgba(var(--accent-b-rgb), 0.06), transparent 50%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(var(--page-rgb), 0.84));
  box-shadow: 0 20px 36px rgba(42, 33, 117, 0.09);
}

.home-hero-note h2 {
  margin: 12px 0 10px;
  color: var(--forest-980);
  font-size: clamp(1.7rem, 3vw, 2.45rem);
  line-height: 1.06;
}

.home-hero-note p:last-child {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.72;
}

.home-hero-visual,
.home-showcase-visual {
  position: relative;
  overflow: hidden;
  border-radius: 36px;
  box-shadow: var(--shadow-lg);
}

.home-hero-visual {
  min-height: 0;
  height: 100%;
}

.home-hero-visual::after,
.home-showcase-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(23, 26, 43, 0.04), rgba(23, 26, 43, 0.3)),
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.16), transparent 34%),
    linear-gradient(320deg, rgba(var(--accent-b-rgb), 0.14), transparent 36%),
    linear-gradient(295deg, rgba(var(--brand-rgb), 0.1), transparent 42%);
}

.home-hero-visual img,
.home-showcase-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-hero-panel {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 1;
  padding: 20px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.56);
  backdrop-filter: blur(18px);
}

.home-hero-panel strong {
  display: block;
  margin: 6px 0 8px;
  font-size: 1.34rem;
  color: var(--forest-980);
}

.home-hero-panel p:last-child {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.66;
}

.home-statement-section {
  padding-top: 84px;
}

.statement-card h3 {
  margin: 0 0 12px;
  color: var(--forest-980);
  font-size: 1.18rem;
}

.statement-card p:last-child {
  margin: 0;
  color: var(--forest-700);
}

.home-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(360px, 1.06fr);
  align-items: center;
  gap: 42px;
}

.home-showcase-copy .section-heading {
  margin-bottom: 18px;
}

.home-showcase-copy .section-heading h2 {
  max-width: 11ch;
}

.home-proof-list {
  display: grid;
  gap: 0;
  margin-bottom: 28px;
}

.home-proof-list div {
  padding: 18px 0;
  border-top: 1px solid rgba(23, 26, 43, 0.08);
}

.home-proof-list div:last-child {
  border-bottom: 1px solid rgba(23, 26, 43, 0.08);
}

.home-proof-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--forest-980);
}

.home-proof-list p {
  margin: 0;
  color: var(--forest-700);
  line-height: 1.72;
}

.home-showcase-visual {
  min-height: 660px;
}

.page-hero--editorial {
  overflow: visible;
  color: var(--forest-900);
}

.page-hero--editorial::before,
.page-hero--editorial::after {
  display: none;
}

.page-hero--editorial .page-hero-shell {
  min-height: auto;
  padding: 42px 0 22px;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.9fr);
  align-items: center;
  gap: 42px;
}

.page-hero--editorial .page-hero-copy {
  max-width: 680px;
}

.page-hero--editorial .page-hero-copy h1 {
  max-width: 11ch;
  color: var(--forest-980);
  font-size: clamp(3rem, 5.8vw, 5.5rem);
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.page-hero--editorial .hero-text {
  color: var(--forest-700);
}

.page-hero--editorial .page-hero-panel {
  padding: 24px 26px;
  border-radius: 28px;
  border: 1px solid rgba(var(--brand-rgb), 0.12);
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.14), transparent 42%),
    linear-gradient(24deg, rgba(var(--accent-b-rgb), 0.08), transparent 54%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-sm);
}

.page-hero--editorial .page-hero-panel .surface-label,
.page-hero--editorial .page-hero-panel .surface-copy,
.page-hero--editorial .page-hero-panel .channel-card p,
.page-hero--editorial .page-hero-panel .channel-card span,
.page-hero--editorial .page-hero-panel .mini-card p {
  color: var(--forest-700);
}

.page-hero--editorial .page-hero-panel .mini-card,
.page-hero--editorial .page-hero-panel .channel-card {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.84);
}

.page-hero--editorial .page-hero-panel .mini-card h3,
.page-hero--editorial .page-hero-panel .channel-card strong {
  color: var(--forest-980);
}

.page-hero--contact .page-hero-shell {
  grid-template-columns: minmax(0, 1.02fr) minmax(360px, 0.98fr);
  align-items: start;
  gap: 54px;
  padding-top: 56px;
}

.page-hero--contact .page-hero-copy {
  max-width: 720px;
  padding-top: 36px;
}

.page-hero--contact .page-hero-copy h1 {
  max-width: 8.6ch;
  font-size: clamp(3rem, 6vw, 5.9rem);
  line-height: 0.92;
  text-wrap: balance;
}

.page-hero--contact .hero-text {
  max-width: 28ch;
  font-size: 1.08rem;
}

.page-hero--contact .page-hero-side {
  gap: 22px;
}

.page-hero--contact .page-hero-panel {
  padding: 26px;
  background:
    linear-gradient(135deg, rgba(var(--accent-a-rgb), 0.16), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.97), rgba(var(--page-rgb), 0.92));
  box-shadow: var(--shadow-md);
}

.page-hero--contact .mini-stack {
  gap: 12px;
  margin-top: 10px;
}

.page-hero--contact .mini-card {
  padding: 16px 18px;
}

.page-hero--contact .mini-card h3 {
  margin-bottom: 8px;
  font-size: 1.06rem;
}

.page-hero--contact .mini-card p {
  margin: 0;
}

.contact-hero-direct {
  display: grid;
  gap: 4px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(var(--brand-rgb), 0.12);
}

.contact-hero-direct span {
  color: var(--forest-700);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.contact-hero-direct strong {
  font-family: var(--serif);
  font-size: 1.34rem;
  color: var(--forest-980);
}

.audience-section--home .audience-grid {
  gap: 18px;
}

.audience-section--home .audience-card {
  padding: 30px;
  background: rgba(255, 255, 255, 0.82);
}

.audience-section--home .audience-card.is-secondary {
  margin-top: 0;
}

.audience-section--home .audience-card.is-featured {
  border-color: rgba(var(--brand-rgb), 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(var(--page-rgb), 0.94)),
    rgba(255, 255, 255, 0.9);
}

.home-foundation-section {
  background:
    linear-gradient(180deg, rgba(var(--accent-a-rgb), 0.09), rgba(255, 255, 255, 0)),
    radial-gradient(circle at top right, rgba(var(--accent-b-rgb), 0.1), transparent 20%);
}

.home-foundation-grid .card {
  background: rgba(255, 255, 255, 0.84);
}

.ribbon-grid {
  border: 1px solid var(--line);
  background:
    linear-gradient(130deg, rgba(var(--accent-a-rgb), 0.12), transparent 38%),
    linear-gradient(320deg, rgba(var(--accent-b-rgb), 0.12), transparent 34%),
    linear-gradient(210deg, rgba(var(--brand-rgb), 0.06), transparent 40%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-md);
}

.ribbon-grid h2 {
  color: var(--forest-980);
}

.ribbon-grid p,
.ribbon-grid .footer-label {
  color: var(--forest-700);
}

.site-footer {
  padding: 72px 0 34px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(circle at top left, rgba(var(--accent-a-rgb), 0.14), transparent 22%),
    radial-gradient(circle at top right, rgba(var(--accent-b-rgb), 0.14), transparent 18%),
    radial-gradient(circle at 50% 0%, rgba(var(--brand-rgb), 0.05), transparent 22%),
    linear-gradient(180deg, rgb(var(--page-soft-rgb)) 0%, rgb(var(--page-deep-rgb)) 100%);
  color: var(--forest-900);
}

.footer-brand-block {
  display: grid;
  gap: 14px;
}

.footer-lockup {
  width: min(100%, 420px);
  height: auto;
}

.footer-brand-copy {
  max-width: 42ch;
  color: var(--forest-700);
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
  display: grid;
  gap: 10px;
}

.site-footer h2,
.site-footer .footer-label,
.site-footer .footer-links,
.site-footer .footer-bottom,
.site-footer p {
  color: var(--forest-700);
}

.site-footer h2 {
  color: var(--forest-980);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(23, 26, 43, 0.08);
  font-size: 0.92rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 720ms ease, transform 720ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes scroll-nudge {
  0%,
  100% {
    transform: translate(-50%, 0);
    opacity: 0.4;
  }
  40% {
    transform: translate(-50%, 9px);
    opacity: 1;
  }
}

@media (max-width: 1120px) {
  .header-inner,
  .home-hero-shell,
  .page-hero-shell,
  .editorial-grid,
  .proof-layout,
  .feature-panel,
  .media-layout,
  .contact-layout,
  .two-column,
  .footer-grid,
  .card-grid,
  .audience-grid,
  .gallery-grid,
  .editorial-stats,
  .hero-stat-strip,
  .partner-grid,
  .manifesto-panel,
  .news-digest-grid {
    grid-template-columns: 1fr;
  }

  .header-inner {
    padding: 18px 0;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .header-tools {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .editorial-visual img,
  .feature-panel-visual img {
    min-height: 420px;
  }

  .audience-card.is-secondary,
  .proof-results .stack-card:nth-child(2),
  .proof-results .stack-card:nth-child(3) {
    margin-left: 0;
  }

  .news-digest-side {
    padding-top: 0;
  }

  .page-hero-shell,
  .home-hero-shell {
    min-height: auto;
  }

  .contact-layout .form-shell {
    position: static;
  }

  .trust-results-grid .card--trust:first-child,
  .institution-value-grid .card--institution:last-child,
  .about-framework-grid .card--about:first-child,
  .about-framework-grid .card--about:last-child,
  .gallery-card--about:first-child,
  .awards-structure-grid .card--awards:first-child,
  .news-category-grid .card--news:first-child {
    grid-column: auto;
  }

  .institution-value-grid .card--institution:nth-child(2) {
    margin-top: 0;
  }

  .about-framework-grid,
  .about-visual-grid,
  .awards-structure-grid,
  .awards-benefit-grid,
  .news-category-grid,
  .news-resource-grid,
  .news-archive-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card--about:first-child {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(100% - 24px, 1180px);
  }

  .site-header {
    position: static;
  }

  .brand {
    align-items: flex-start;
  }

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

  .home-hero-shell,
  .page-hero-shell {
    padding: 72px 0 32px;
    gap: 18px;
  }

  .content-section,
  .contact-ribbon {
    padding: 64px 0;
  }

  .home-hero-copy h1,
  .page-hero-copy h1,
  .section-heading h2,
  .ribbon-grid h2 {
    max-width: 100%;
  }

  .timeline-item,
  .inquiry-form {
    grid-template-columns: 1fr;
  }

  .timeline-item {
    padding: 18px;
  }

  .editorial-stat,
  .card,
  .stack-card,
  .media-card,
  .channel-card,
  .form-shell,
  .note-panel,
  .proof-panel,
  .proof-partners,
  .audience-card,
  .hero-note,
  .page-hero-panel,
  .gallery-card-copy,
  .ribbon-grid,
  .feature-panel-overlay {
    padding-left: 20px;
    padding-right: 20px;
  }

  .feature-panel-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .gallery-card img,
  .editorial-visual img,
  .feature-panel-visual img {
    min-height: 0;
    height: 240px;
  }

  .gallery-card--about:first-child .gallery-card-copy,
  .awards-structure-grid .card--awards:first-child,
  .news-category-grid .card--news:first-child {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 860px) {
  .ribbon-grid {
    grid-template-columns: 1fr;
    align-items: start;
  }
}

@media (max-width: 1120px) {
  .home-hero--editorial .home-hero-shell,
  .page-hero--editorial .page-hero-shell,
  .home-statement-grid,
  .home-showcase-grid,
  .home-hero-metrics {
    grid-template-columns: 1fr;
  }

  .home-hero-visual,
  .page-hero-visual,
  .home-showcase-visual {
    min-height: 420px;
  }
}

@media (max-width: 720px) {
  .home-hero--editorial .home-hero-shell {
    padding-top: 24px;
    gap: 20px;
  }

  .home-hero--editorial .home-hero-copy h1,
  .page-hero--editorial .page-hero-copy h1,
  .home-showcase-copy .section-heading h2 {
    max-width: 100%;
  }

  .home-hero-note,
  .home-hero-panel,
  .page-hero-panel,
  .statement-card,
  .home-hero-metric {
    padding-left: 20px;
    padding-right: 20px;
  }

  .home-hero-visual,
  .page-hero-visual,
  .home-showcase-visual {
    min-height: 280px;
  }
}
