

:root {

  --leaf: #8ec457;        
  --brand-green: #4f9f1d; 
  --leaf-700: #4e8718;    
  --deep: #3d5527;        

  --butter: #fff0c3;      
  --sun: #fce08c;         
  --amber: #f8cd5f;       
  --wheat: #f5b62d;       

  --apricot: #fdd2a6;     
  --peach: #fbb05b;       
  --path: #f28c0a;        
  --sunset: #e87328;      

  --honey: #fbefd9;       
  --earth: #987459;       
  --black: #000000;
  --white: #ffffff;

  --paper: #ffffff;                 
  --mist: #ffffff;                  
  --ink: #3d5527;                   
  --muted: rgba(61, 85, 39, 0.85);  
  --label: #3d5527;                 
  --link: #3d5527;                  
  --line: rgba(152, 116, 89, 0.32); 
  --shadow: 0 18px 45px rgba(61, 85, 39, 0.1);
  --card-radius: 22px;              
  --max: 1160px;
  --gutter: clamp(24px, 6vw, 120px); 

  --font-sans: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", system-ui, sans-serif; 
  --font-rounded: var(--font-sans); 
  --font-serif: var(--font-sans); 
  --font-en: var(--font-sans); 
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;

  overflow-x: clip;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  line-height: 1.7;
  letter-spacing: 0;
}

body.menu-open {
  overflow: hidden;
}

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

button {
  font: inherit;
}

img {
  max-width: 100%;
}

.site-shell {

  overflow: clip;
  background: var(--paper);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 30;
  width: 100%;
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px var(--gutter);
  transition: background 180ms ease, border-color 180ms ease, height 180ms ease;
}

.site-header.is-scrolled {
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
}

.brand-lockup {
  display: flex;
  align-items: center;
  width: 220px;
  height: 56px;
}

.brand-lockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--ink);
  font-size: 0.95rem;
}

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

.nav-item > a {
  position: relative;
  padding: 4px 0;
}

.nav-item > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: var(--path);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav-item:hover > a::after,
.nav-item:focus-within > a::after,
.nav-item > a:hover::after,
.nav-item > a:focus-visible::after {
  transform: scaleX(1);
}

.nav-item.is-current > a {
  background: var(--sun);
  border-radius: 8px;
  padding: 5px 12px;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 196px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-item:hover > .nav-dropdown,
.nav-item:focus-within > .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  line-height: 1.3;
  color: var(--ink);
  white-space: nowrap;
  border-radius: 10px;
  transition: background 140ms ease, color 140ms ease;
}

.nav-dropdown a:hover,
.nav-dropdown a:focus-visible {
  background: var(--honey);
  color: var(--leaf-700);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.contact-dot {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 0.9rem;
}

.contact-dot span {
  width: 8px;
  height: 8px;
  background: var(--path);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(242, 140, 10, 0.12);
}

.contact-dot b {
  font-weight: 500;
}

.menu-toggle {
  width: 46px;
  height: 46px;
  border: 0;
  background: var(--honey);
  border-radius: 13px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
  cursor: pointer;
  transition: background 160ms ease, transform 120ms ease;
}

.menu-toggle:hover {
  background: var(--butter);
}

.menu-toggle:active {
  transform: scale(0.96);
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 2.5px;
  border-radius: 3px;
  background: var(--deep);
  transition: transform 200ms ease, opacity 150ms ease;
}

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

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

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

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 25;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  padding: 96px var(--gutter) 42px;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.97);
  transform: translateX(100%);
  transition: transform 220ms ease;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.m-group {
  border-bottom: 1px solid var(--line);
}

.m-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-row > a {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  padding: 14px 0;
}

.m-row > .m-label {
  flex: 1;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  padding: 14px 0;
  color: var(--ink);
  cursor: default;
}

.m-toggle {
  flex: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
  position: relative;
}

.m-toggle::before,
.m-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 1.5px;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform 180ms ease, opacity 180ms ease;
}

.m-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.m-group.is-expanded .m-toggle::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.m-sub {
  display: none;
  flex-direction: column;
  padding: 2px 0 16px 6px;
}

.m-group.is-expanded .m-sub {
  display: flex;
}

.m-sub a {
  font-size: 1.1rem;
  color: var(--muted);
  padding: 9px 0;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 120px var(--gutter) 84px;
  isolation: isolate;
  background: var(--paper);
  overflow: hidden;
}

.hero-landscape {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: clamp(220px, 42vh, 460px);
  object-fit: cover;
  object-position: bottom center;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}

.hero-word {
  position: absolute;
  z-index: -1;
  font-family: var(--font-serif);
  font-size: 17rem;
  line-height: 1;
  color: rgba(78, 135, 24, 0.08);
  pointer-events: none;
}

.hero-word-left {
  left: -3.5rem;
  top: 9rem;
}

.hero-word-right {
  right: -3rem;
  bottom: 7rem;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(840px, 100%);
  text-align: center;
  padding-top: 36px;
}

.eyebrow,
.node-label,
.section-kicker p,
.section-kicker span {
  margin: 0;
  color: var(--label);
  font-size: 0.78rem;
  text-transform: uppercase;
  font-weight: 700;
}

.hero h1,
.section-grid h2,
.path-header h2,
.impact-layout h2 {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.22;
}

.hero h1 {
  margin-top: 22px;
  font-size: 4.2rem;
  letter-spacing: -0.015em;
}

.hero-subtitle {
  width: min(650px, 100%);
  margin: 24px auto 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 38px;
}

.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary,
.button-secondary {
  background: rgba(251, 239, 217, 0.68);
}

.button-primary,
.button-secondary {
  max-width: 100%;
  overflow-wrap: anywhere;
}

.button-primary:hover,
.button-secondary:hover,
.button-primary:focus-visible,
.button-secondary:focus-visible {
  transform: translateY(-2px);
}

.button-primary:hover,
.button-primary:focus-visible,
.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--mist);
}

.card-actions {
  margin-top: 14px;
}

.button-pending {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px dashed var(--label);
  border-radius: 6px;
  background: transparent;
  color: var(--label);
  font-weight: 700;
  cursor: default;
}

.hero-index {
  position: absolute;
  left: var(--gutter);
  bottom: 42px;
  z-index: 2;
  display: flex;
  gap: 22px;
  color: rgba(61, 85, 39, 0.6);
  font-family: var(--font-en);
  font-style: italic;
  font-synthesis: none; 
  font-size: clamp(1.1rem, 3.4vw, 2.2rem);
  letter-spacing: 0.02em;
}

.section-pad {
  padding: 132px var(--gutter);
}

.section-grid {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 72px;
}

.section-kicker {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding-top: 8px;
}

.section-kicker span {
  color: var(--link);
}

.section-grid h2,
.path-header h2,
.impact-layout h2 {

  font-size: clamp(2.3rem, 3.3vw, 3.35rem);
  max-width: 860px;
  font-weight: 900;
  line-height: 1.16;
}
.section-grid h2 .kw,
.path-header h2 .kw,
.impact-layout h2 .kw {
  color: var(--path); 
}

.lead,
.about-copy > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 760px;
}

.page-header {
  position: relative;
  isolation: isolate;
  width: min(var(--max), 100%);
  margin: 0 auto;
  padding: 96px var(--gutter) 0;
}

.page-crumb {
  font-size: 0.85rem;
  color: var(--muted);
}

.page-crumb a {
  color: var(--muted);
}

.page-crumb a:hover,
.page-crumb a:focus-visible {
  color: var(--ink);
}

.page-crumb span {
  margin: 0 0.5em;
  color: var(--line);
}

.page-crumb .page-crumb-current {
  margin: 0;
  color: var(--ink);
}

.page-crumb .page-crumb-parent {
  color: var(--muted);
}

.page-header h1 {
  margin: 16px 0 8px;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  font-size: 2.5rem;
}

.page-header-en {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--label);
}

.page-header::after {
  content: "";
  display: block;
  margin-top: 30px;
}

.page-header + .section-pad {
  padding-top: 54px;
}

.signal-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 46px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}

.signal-row div {
  min-height: 170px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.signal-row strong {
  color: var(--leaf-700);
  font-family: var(--font-en);
  font-size: 3.4rem;
  line-height: 1;
}

.signal-row span {
  color: var(--muted);
}

.about-section {
  position: relative;
  background: var(--white);
}

.large-watermark {
  position: absolute;
  right: -3rem;
  top: 2rem;
  color: rgba(152, 116, 89, 0.07);
  font-family: var(--font-en);
  font-size: 9rem;
  font-style: italic;
  font-synthesis: none; 
  pointer-events: none;
}

.mission-list {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.mission-list article {
  padding: 34px 28px;
  border-right: 1px solid var(--line);
}

.mission-list article:last-child {
  border-right: 0;
}

.mission-list > article > span {
  color: var(--link);

  font-family: var(--font-sans);
  font-style: italic;
  font-synthesis: none;
}

.mission-list h3 {
  margin: 18px 0 8px;
  font-size: 1.125rem;
  line-height: 1.35;
}

.mission-list h3 small {
  display: block;
  margin-bottom: 1px;
  font-family: var(--font-en);
  font-style: italic;
  font-synthesis: none; 
  font-weight: 400;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--leaf-700);
}

.mission-list p {
  margin: 0;
  color: var(--muted);
}

.mission-list--badge {
  gap: 18px;
}
.mission-list--badge article {
  background: var(--apricot); 
  border: 0;
  border-radius: var(--card-radius);
  padding: 26px 24px 28px;
  box-shadow: var(--shadow);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mission-list--badge article:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(61, 85, 39, 0.18);
}

.mission-list--badge > article > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 46px;
  padding: 0 12px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--deep); 
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
}
.mission-list--badge h3 {
  color: var(--deep);
  font-size: 1.25rem;
  margin: 0 0 8px;
}
.mission-list--badge h3 small {
  color: rgba(61, 85, 39, 0.72);
}
.mission-list--badge .node-label {
  color: rgba(61, 85, 39, 0.75);
  margin: 0 0 8px;
}
.mission-list--badge p {
  color: rgba(61, 85, 39, 0.9);
  font-size: 0.95rem;
}

.pcase-grid {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.pcase-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 24px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.pcase-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(61, 85, 39, 0.16);
}
.pcase-tag {
  display: inline-block;
  color: var(--link);
  font-family: var(--font-sans); 
  font-style: italic;
  font-synthesis: none;
  font-size: 0.95rem;
}
.pcase-pair {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  margin: 18px 0 20px;
}
.pcase-party {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 20px 10px;
  border-radius: var(--card-radius); 
  background: var(--honey);
  text-align: center;
}
.pcase-role {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: var(--muted);
}
.pcase-name {
  font-family: var(--font-rounded);
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--deep);
}
.pcase-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  margin-bottom: 12px;
  padding: 8px 10px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(61, 85, 39, 0.08);
}
.pcase-logo {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
}
.pcase-coin {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--deep);
  color: #fff;
  font-size: 1.55rem;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(61, 85, 39, 0.28);
}
.pcase-foot {
  text-align: center;
}
.pcase-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--deep);
  font-size: 0.86rem;
  font-weight: 700;
}
.pcase-status::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--leaf-700);
}
.pcase-note {
  margin: 12px 0 0;
  font-size: 0.9rem;
  color: var(--muted);
}
@media (max-width: 720px) {
  .pcase-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {

  .pcase-pair {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .pcase-coin {
    justify-self: center;
    width: 46px;
    height: 46px;
    font-size: 1.3rem;
  }
}

.path-section {
  background: var(--mist);
  scroll-margin-top: 88px;
}

.path-header {
  width: min(var(--max), 100%);
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 72px;
}

.journey-line {
  width: min(var(--max), 100%);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 38px;
}

.journey-line::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 31px;
  height: 1px;
  background: var(--line);
}

.journey-node {
  position: relative;
  min-height: 280px;
  padding-top: 78px;
}

.node-dot {
  position: absolute;
  left: 0;
  top: 20px;
  width: 24px;
  height: 24px;
  background: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 50%;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.featured-node .node-dot {
  background: var(--path);
  border-color: var(--path);
  box-shadow: 0 0 0 12px rgba(242, 140, 10, 0.14);
}

.journey-line.is-spy .featured-node:not(.is-active) .node-dot {
  background: var(--paper);
  border-color: var(--ink);
  box-shadow: none;
}

.journey-node.is-active .node-dot {
  background: var(--path);
  border-color: var(--path);
  box-shadow: 0 0 0 6px rgba(242, 140, 10, 0.16);
}

.journey-node:not(.is-active):hover .node-dot {
  background: var(--apricot);
  border-color: var(--path);
  box-shadow: 0 0 0 6px rgba(242, 140, 10, 0.12);
}

.journey-line.is-vertical {
  grid-template-columns: 1fr;
  gap: 0;
}
.journey-line.is-vertical::before {
  display: none; 
}
.journey-line.is-vertical .journey-node {
  min-height: 0;
  max-width: 760px;
  padding: 0 0 42px 56px;
}
.journey-line.is-vertical .journey-node:last-child {
  padding-bottom: 0;
}
.journey-line.is-vertical .journey-node::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 6px;
  bottom: -6px;
  width: 1px;
  background: var(--line);
}
.journey-line.is-vertical .journey-node:last-child::before {
  display: none;
}
.journey-line.is-vertical .node-dot {
  left: 0;
  top: 4px;
}

.journey-line.is-vertical.has-figures .journey-node {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(220px, 32%, 320px);
  align-items: start;
  gap: 34px;
  padding-bottom: 52px;
}
.journey-line.is-vertical.has-figures .node-text { min-width: 0; }
.journey-line.is-vertical.has-figures .node-figure { margin: 6px 0 0; }

.journey-line.is-vertical .node-text .node-label {
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}
.journey-line.is-vertical.has-figures .node-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;

  border-radius: 0;
  border: 0;
  box-shadow: 0 12px 26px rgba(61, 85, 39, 0.16), 0 3px 9px rgba(61, 85, 39, 0.1);
}
@media (max-width: 860px) {
  .journey-line.is-vertical.has-figures .journey-node {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .journey-line.is-vertical.has-figures .node-figure { margin-top: 2px; }
}

.journey-node h3,
.act-item h3,
.audience-item h3 {
  margin: 10px 0 14px;
  font-family: var(--font-serif);
  font-size: 1.8rem;
  line-height: 1.35;
}

.journey-node p:last-child,
.act-item p:last-child,
.audience-item p:last-child {
  margin: 0;
  color: var(--muted);
}

.act-panel {
  width: min(var(--max), 100%);
  margin: 58px auto 0;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--card-radius); 
  overflow: hidden;
}

.act-tabs {
  display: grid;
  border-right: 1px solid var(--line);
}

.act-tab,
.audience-tab {
  border: 0;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  font-weight: 800;
}

.act-tab {
  padding: 26px 28px;
  border-bottom: 1px solid var(--line);
  font-size: 1.15rem;
}

.act-tab:last-child {
  border-bottom: 0;
}

.act-tab.is-active,
.audience-tab.is-active {
  color: var(--ink);
  background: var(--mist);
}

.act-content {
  min-height: 300px;
  position: relative;
}

.act-item {
  display: none;
  padding: 44px 52px;
}

.act-item.is-active {
  display: block;
}

.tier-ladder {
  grid-template-columns: clamp(190px, 30%, 300px) minmax(0, 1fr);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.tier-ladder .tier-rail {
  background: var(--honey);
}
.tier-ladder .tier-tab {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 26px 28px;
  background: transparent;
}
.tier-ladder .tier-tab::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--leaf);
  opacity: 0;
  transition: opacity 0.18s ease;
}
.tier-ladder .tier-tab:hover::before {
  opacity: 0.45;
}
.tier-ladder .tier-tab.is-active {
  background: var(--white);
}
.tier-ladder .tier-tab.is-active::before {
  opacity: 1;
}

.tier-tab-name {
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: var(--muted);
}
.tier-ladder .tier-tab.is-active .tier-tab-name {
  color: var(--leaf-700);
}

.tier-tab-flag {
  align-self: flex-start;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--deep);
  background: var(--sun);
  padding: 2px 9px;
  border-radius: 999px;
}
.tier-ladder .tier-tab--rec,
.tier-ladder .tier-tab--rec.is-active {
  background: var(--deep);
}
.tier-ladder .tier-tab--rec::before {
  background: var(--sun);
}
.tier-ladder .tier-tab--rec .tier-tab-name,
.tier-ladder .tier-tab--rec.is-active .tier-tab-name {
  color: var(--sun);
}

.tier-ladder .tier-item {
  padding: 46px 52px 44px;
}
.tier-ladder .tier-kicker {
  margin: 0 0 10px;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--leaf-700);
}
.tier-ladder .tier-title {
  margin: 0 0 8px;
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 1.95rem;
  line-height: 1.3;
  color: var(--ink);
}
.tier-ladder .tier-bigamt {
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--leaf-700);
}
.tier-ladder .tier-bigamt small {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--muted);
  margin-left: 2px;
}
.tier-ladder .tier-incl {
  display: inline-block;
  margin: 2px 0 22px;
  padding: 9px 15px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--muted);
  background: var(--honey);
  border: 1px solid var(--line);
  border-radius: 8px;
}
.tier-ladder .tier-item--rec .tier-kicker {
  color: var(--deep); 
}
.tier-ladder .tier-item--rec .tier-incl {
  background: var(--sun);
  border-color: var(--wheat);
  color: var(--deep);
}
.tier-ladder .tier-feat {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 15px;
}
.tier-ladder .tier-feat li {
  position: relative;
  padding-left: 30px;
  font-size: 1.1rem;
  line-height: 1.55;
  color: var(--ink);
}
.tier-ladder .tier-feat li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--leaf);
  box-shadow: inset 0 0 0 2px var(--white);
}
.tier-ladder .tier-feat li.tier-base {
  color: var(--muted);
  font-weight: 700;
}
.tier-ladder .tier-feat li.tier-base::before {
  background: var(--amber);
}
.tier-ladder .tier-cta {
  display: inline-block;
  margin-top: 22px;
}

@media (min-width: 961px) and (max-width: 1200px) {
  .tier-ladder .tier-tab { padding: 20px 16px; }
  .tier-ladder .tier-tab-name { font-size: 1.06rem; }
  .tier-ladder .tier-item { padding: 32px 28px 30px; }
  .tier-ladder .tier-title { font-size: 1.7rem; }
  .tier-ladder .tier-bigamt { font-size: 2.2rem; }
}

@media (max-width: 960px) {
  .tier-ladder .tier-tab {
    align-items: center;
    text-align: center;
    padding: 14px 8px;
    gap: 4px;
  }

  .tier-ladder .tier-tab--rec { padding-top: 10px; }
  .tier-ladder .tier-tab::before {
    left: 0;
    right: 0;
    top: auto;
    bottom: 0;
    width: auto;
    height: 4px;
  }
  .tier-ladder .tier-tab-name {
    font-size: 0.92rem;
  }
  .tier-ladder .tier-tab-flag {
    position: static;
    align-self: center;
    margin-bottom: 2px;
    font-size: 0.56rem;
    padding: 1px 7px;
  }
  .tier-ladder .tier-item {
    padding: 26px 22px;
  }
}

.evidence-section {
  background: var(--deep);
  color: var(--paper);
}

.evidence-section .section-kicker p,
.evidence-section .section-grid h2 {
  color: var(--paper);
}

.evidence-section .section-kicker span,
.evidence-section .node-label {
  color: var(--wheat);
}

.evidence-board {
  margin-top: 48px;
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr);
  border-top: 1px solid rgba(251, 239, 217, 0.22);
}

.evidence-track {
  position: relative;
  border-right: 1px dotted rgba(251, 239, 217, 0.38);
}

.evidence-track span {
  position: absolute;
  right: -7px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--wheat);
}

.evidence-track span:nth-child(1) {
  top: 38px;
}

.evidence-track span:nth-child(2) {
  top: 118px;
}

.evidence-track span:nth-child(3) {
  top: 198px;
}

.evidence-track span:nth-child(4) {
  top: 278px;
}

.evidence-board ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.evidence-board li {
  min-height: 80px;
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  border-bottom: 1px solid rgba(251, 239, 217, 0.16);
  padding: 18px 0 18px 34px;
}

.evidence-board b {
  font-size: 1.1rem;
}

.evidence-board span {
  color: rgba(251, 239, 217, 0.72);
}

.program-section {
  background: var(--white);
  scroll-margin-top: 88px;
}

.audience-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 40px;
}

.audience-tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.audience-display {
  margin-top: 20px;
  border: 1px solid var(--line);
  min-height: 260px;
  background: var(--paper);
}

.audience-item {
  display: none;
  padding: 48px;
}

.audience-item.is-active {
  display: block;
}

.impact-section {
  background: var(--paper);
  scroll-margin-top: 88px;
}

.impact-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.impact-numbers {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.impact-numbers div {
  background: var(--white);
  padding: 28px;
  min-height: 150px;
  container-type: inline-size; 
}

.impact-numbers strong {
  display: block;
  color: var(--leaf-700);
  font-family: var(--font-en);

  font-size: clamp(1.8rem, 24cqi, 3rem);
  white-space: nowrap;
  line-height: 1;
}

.impact-numbers span {
  display: block;
  margin-top: 18px;
  color: var(--muted);
}

.partners-section {
  background: var(--mist);
  scroll-margin-top: 88px;
}

.partner-tiers {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.partner-tiers article {
  background: var(--white);
  padding: 30px 18px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  container-type: inline-size; 
}

.partner-tiers .highlight-tier {
  background: var(--deep);
  color: var(--paper);
}

.partner-tiers p {
  margin: 0;
  color: var(--muted);
  font-weight: 800;
}

.highlight-tier p {
  color: rgba(251, 239, 217, 0.78);
}

.partner-tiers strong {
  display: block;
  margin-top: 20px;
  color: var(--leaf-700);
  font-family: var(--font-en);

  font-size: clamp(1.4rem, 22cqi, 3rem);
  line-height: 1;
  white-space: nowrap;
}

.highlight-tier strong {
  color: var(--wheat);
}

.partner-tiers ul {
  margin: auto 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.highlight-tier ul {
  color: rgba(251, 239, 217, 0.78);
}

.site-footer {
  background: var(--honey);
  color: var(--ink);
  padding: 42px var(--gutter) 22px;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) minmax(248px, 0.85fr) minmax(200px, 1fr);
  gap: 26px 48px;
  padding-bottom: 24px;
}

.footer-brand {
  max-width: 380px;
  display: flex;
  flex-direction: column;
}

.footer-brand img {
  width: 300px;
  max-width: 100%;
  height: auto;

}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: auto; 
  padding-top: 6px;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--brand-green);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.footer-social a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--white);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.footer-legal-ids {
  list-style: none;
  margin: auto 0 0;
  padding: 16px 0 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-legal-ids li {
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.footer-sitemap h3,
.footer-contact h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.footer-sitemap ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  max-width: 248px;
}

.footer-sitemap a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}

.footer-sitemap a:hover {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--white);
}

.footer-contact {
  font-style: normal;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 9px;
  text-align: right;
}

.footer-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.8rem;
  line-height: 1.55;
  transition: color 0.18s ease;
}

.footer-contact a:hover {
  color: var(--leaf-700);
}

.footer-contact svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--brand-green);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 16px;
}

.footer-bottom small {
  color: var(--muted);
  font-size: 0.85rem;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 28px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.footer-legal-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.18s ease;
}

.footer-legal-links a:hover {
  color: var(--leaf-700);
  text-decoration: underline;
}

@media (max-width: 960px) {
  .site-header {
    padding: 16px var(--gutter);
  }

  .desktop-nav,
  .contact-dot b {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .brand-lockup {
    width: 180px;
  }

  .hero {
    min-height: 780px;
    padding: 112px var(--gutter) 72px;
  }

  .hero h1 {

    font-size: clamp(2.2rem, 7vw, 3.6rem);
  }

  .hero-word {
    font-size: 10rem;
  }

  .hero-index {
    left: var(--gutter);
    right: var(--gutter);
    justify-content: space-between;
    font-size: 0.85rem;
  }

  .section-pad {
    padding: 92px var(--gutter);
  }

  .page-header {
    padding: 78px var(--gutter) 0;
  }

  .page-header h1 {
    font-size: 2.1rem;
  }

  .section-grid,
  .path-header,
  .impact-layout {

    grid-template-columns: minmax(0, 1fr);
    gap: 30px;
  }

  .section-grid > *,
  .path-header > *,
  .impact-layout > * {
    min-width: 0;
  }

  .section-grid h2,
  .path-header h2,
  .impact-layout h2 {
    font-size: 2.25rem;
  }

  .signal-row,
  .mission-list,
  .journey-line,
  .partner-tiers,
  .impact-numbers {
    grid-template-columns: 1fr;
  }

  .journey-line {
    gap: 20px;
  }

  .journey-line::before {
    left: 12px;
    right: auto;
    top: 18px;
    bottom: 18px;
    width: 1px;
    height: auto;
  }

  .journey-node {
    min-height: auto;
    padding: 6px 0 32px 48px;
  }

  .node-dot {
    left: 0;
    top: 6px;
  }

  .act-panel {
    grid-template-columns: 1fr;
  }

  .act-tabs {
    grid-template-columns: repeat(3, 1fr);
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .act-tab {
    padding: 18px 12px;
    text-align: center;
    border-bottom: 0;
    border-right: 1px solid var(--line);
  }

  .act-tab:last-child {
    border-right: 0;
  }

  .act-item,
  .audience-item {
    padding: 30px 24px;
  }

  .evidence-board {
    grid-template-columns: 34px minmax(0, 1fr);
  }

  .evidence-board li {
    grid-template-columns: 1fr;
    gap: 4px;
    padding-left: 22px;
  }

  .partner-tiers article {
    min-height: 260px;
  }

}

@media (max-width: 1100px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-areas:
      'brand contact'
      'sitemap contact';
    align-items: start;
    gap: 22px 40px;
  }

  .footer-brand {
    grid-area: brand;
    max-width: 560px;
  }

  .footer-sitemap {
    grid-area: sitemap;
  }

  .footer-contact {
    grid-area: contact;
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .hero h1 {

    font-size: clamp(1.5rem, 8vw, 2.8rem);
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

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

  .section-grid h2,
  .path-header h2,
  .impact-layout h2 {

    font-size: clamp(1.3rem, 5.6vw, 1.95rem);
  }

  .page-header h1 {
    font-size: 1.75rem;
  }

  .signal-row strong,
  .impact-numbers strong,
  .partner-tiers strong {
    font-size: 2.45rem;
  }

  .impact-numbers {
    grid-template-columns: 1fr;
  }

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

  .audience-tab {
    text-align: center;
  }

  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas: none;
  }

  .footer-brand,
  .footer-sitemap,
  .footer-contact {
    grid-area: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

.hero-proof {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px 40px;
  margin: 40px 0 0;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.hero-proof strong {
  color: var(--leaf-700);
  font-family: var(--font-en);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.85rem;
}

.audience-cta {
  display: inline-flex;
  margin-top: 24px;
  color: var(--link);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
  transition: opacity 160ms ease;
}

.audience-cta:hover,
.audience-cta:focus-visible {
  opacity: 0.7;
}

.capability-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 30px 0 8px;
  padding: 0;
  list-style: none;
}

.capability-chips li {
  border: 1px solid rgba(251, 239, 217, 0.3);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.92rem;
  color: var(--paper);
}

.story-section {
  background: var(--mist);
  scroll-margin-top: 88px;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 34px;
  margin-top: 44px;
  align-items: stretch;
}

.story-quote {
  margin: 0;
  background: var(--accent-soft, var(--white));
  border: 1px solid var(--line);
  border-left: 3px solid var(--accent, var(--path));
  padding: 36px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.story-quote blockquote {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.5;
  color: var(--ink);
}

.story-quote figcaption {
  margin-top: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

.story-ratings {
  display: grid;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.story-ratings div {
  background: var(--white);
  padding: 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.story-ratings strong {
  color: var(--leaf-700);
  font-family: var(--font-en);
  font-size: 2.6rem;
  line-height: 1;
}

.story-ratings small {
  font-size: 1.1rem;
  color: var(--muted);
}

.story-ratings span {
  color: var(--muted);
}

.story-figures {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 18px;
}

.story-figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  background: var(--white);
  border: 1px dashed var(--line);
  display: grid;
  place-items: center;
}

.story-figure span {
  color: var(--muted);
  font-size: 0.85rem;
}

.partner-logos {
  width: min(var(--max), 100%);
  margin: 64px auto 0;
  text-align: center;
}

.partner-logos-title {
  margin: 0 0 22px;
  color: var(--muted);
  font-weight: 800;
}

.partner-logos ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.partner-logos li {
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  padding: 12px 20px;
  color: var(--ink);
  font-weight: 600;
}

.partner-logos small {
  display: block;
  margin-top: 20px;
  color: var(--muted);
}

.tier-cta {
  margin-top: 22px;
  color: var(--link);
  font-weight: 800;
}

.highlight-tier .tier-cta {
  color: var(--wheat);
}

.tier-cta:hover,
.tier-cta:focus-visible {
  text-decoration: underline;
}

.cta-band {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  background: var(--deep);
  color: var(--paper);
  border-radius: var(--card-radius); 
  padding: 48px 48px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 22px;
}

.cta-band h2,
.cta-band h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.7rem;
}

.cta-band p {
  margin: 12px auto 0;
  max-width: 56ch;
  color: rgba(251, 239, 217, 0.78);
}

.cta-band-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-band .button-primary,
.cta-band .button-secondary {
  background: transparent;
  border-color: var(--paper);
  color: var(--paper);
}

.cta-band .button-primary {
  padding: 14px 36px;
  font-size: 1.02rem;
}
.cta-band .cta-sublinks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 4px;
}
.cta-band .cta-sublinks a {
  min-height: 0;
  padding: 0 4px;
  border: none;
  background: transparent;
  border-radius: 0;
  font-weight: 400;
  font-size: 0.92rem;
  color: rgba(251, 239, 217, 0.82);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cta-band .cta-sublinks a:hover,
.cta-band .cta-sublinks a:focus-visible {
  transform: none;
  background: transparent;
  color: var(--paper);
}
.cta-band .cta-sublinks a:not(:last-child)::after {
  content: "·";
  margin-left: 12px;
  color: rgba(251, 239, 217, 0.45);
  text-decoration: none;
  display: inline-block;
}

.cta-legal {
  width: min(var(--max), 100%);
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.6;
}

@media (max-width: 960px) {
  .act-tabs {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .cta-band {
    padding: 40px 26px 36px;
  }
}

@media (max-width: 560px) {
  .story-figures {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-quote {
    padding: 28px 24px;
  }

  .story-quote blockquote {
    font-size: 1.3rem;
  }

  .hero-proof {
    gap: 12px 22px;
  }

  .hero-proof strong {
    font-size: 1.5rem;
  }
}

.icon {
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex: none;
}

.section-kicker {
  align-items: center;
}

.kicker-icon {
  width: 26px;
  height: 26px;
  color: var(--leaf-700);
  stroke-width: 1.5;
}

.node-icon {
  width: 32px;
  height: 32px;
  color: var(--leaf-700);
  margin-bottom: 14px;
  stroke-width: 1.5;
}

.home .section-kicker {
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

.home .section-kicker .kicker-icon {
  width: 34px;
  height: 34px;
}

.home .section-kicker p {
  position: relative;
  margin: 0;
  padding-bottom: 16px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.3;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--leaf-700);
}

.home .section-kicker p::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 3px;
  border-radius: 999px;
  background: var(--path);
}

.featured-node .node-icon {
  color: var(--path);
}

.cta-band h3 .icon {
  width: 26px;
  height: 26px;
  color: var(--wheat);
  vertical-align: -4px;
  margin-right: 8px;
}

.contact-grid {
  width: min(var(--max), 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 48px;
}

.contact-info {
  display: grid;
  gap: 16px;
  align-content: start;
}

.contact-info a {
  color: var(--link);
  font-weight: 700;
}

.contact-grid--info-only {
  grid-template-columns: 1fr;
}

.contact-grid--info-only .contact-info {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px 48px;
}

.contact-grid--info-only .contact-info > .contact-info-head {
  grid-column: 1 / -1;
}

.lead-form {
  display: grid;
  gap: 18px;
  max-width: 660px;
}

.lead-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--ink);
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  font: inherit;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px 14px;
  width: 100%;
}

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

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 2px;
  border-color: var(--leaf-700);
}

.news-list {
  width: min(var(--max), 100%);
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 26px 24px;
  min-height: 200px;
  overflow: hidden;
}

.news-card time {
  color: var(--label);
  font-size: 0.85rem;
  font-weight: 700;
}

.news-card h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.25rem;
}

.news-card p {
  margin: 0;
  color: var(--muted);
}

.news-card a {
  margin-top: auto;
  color: var(--link);
  font-weight: 700;
}

.news-card-soon {
  margin-top: auto;
  color: var(--label);
  font-weight: 700;
  font-size: 0.9rem;
}

.news-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  border-color: var(--leaf-700);
  box-shadow: 0 14px 30px rgba(61, 85, 39, 0.1);
}

.news-card .card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-card .card-meta time {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.news-card .i-date {
  width: 15px;
  height: 15px;
  flex: none;
}

.news-card .tag {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
  color: var(--deep);
  background: var(--apricot);
  padding: 4px 11px;
  border-radius: 999px;
}

.news-card .tag-event {
  background: var(--apricot);
}

.news-card .tag-partner {
  background: var(--amber);
}

.news-card .tag-course {
  background: var(--butter);
}

@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

.eyebrow-icon {
  width: 17px;
  height: 17px;
  color: var(--leaf-700);
  vertical-align: -3px;
  margin-right: 6px;
}

.hero-note {
  width: min(620px, 100%);
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.home .problem-section .initiative-panel {
  max-width: 920px;
  margin: 46px 0 34px;
  padding: 40px 38px 36px;
  background: var(--white);
  border-radius: 22px;
  border: 1px solid rgba(61, 85, 39, 0.07);
  box-shadow: 0 12px 34px rgba(61, 85, 39, 0.07);
}
.home .problem-section .initiative-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 6px;
}

.home .problem-section .initiative-cards::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 12.5%;
  right: 12.5%;
  border-top: 2px dashed rgba(242, 140, 10, 0.55);
  z-index: 0;
}
.home .problem-section .ic-card {
  position: relative;
  z-index: 1;
  flex: 1;
  min-width: 0;
  text-align: center;
  padding: 0 6px;
}

.home .problem-section .ic-card:not(:last-child)::after {
  content: "\203A";
  position: absolute;
  top: 23px;
  right: 0;
  transform: translate(50%, -50%);
  font-family: var(--font-en);
  font-size: 1.6rem;
  line-height: 1;
  color: var(--path);
  z-index: 2;
}
.home .problem-section .ic-num {
  width: 46px;
  height: 46px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--deep);
  background: var(--tab, var(--sun));
  box-shadow: inset 0 0 0 1.5px rgba(61, 85, 39, 0.2), 0 2px 6px rgba(61, 85, 39, 0.1);
  transition: transform 200ms ease;
}
.home .problem-section .ic-tab {
  display: block;
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--deep);
}
.home .problem-section .ic-gap {
  margin: 6px 0 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink);
}
.home .problem-section .ic-card:nth-of-type(1) { --tab: var(--sun); }
.home .problem-section .ic-card:nth-of-type(2) { --tab: var(--apricot); }
.home .problem-section .ic-card:nth-of-type(3) { --tab: var(--amber); }
.home .problem-section .ic-card:nth-of-type(4) { --tab: var(--butter); }
.home .problem-section .ic-card:hover .ic-num { transform: scale(1.08); }

@media (max-width: 700px) {
  .home .problem-section .initiative-panel {
    max-width: 520px;
    margin: 32px 0 26px;
    padding: 26px 22px 24px;
    border-radius: 18px;
  }
  .home .problem-section .initiative-cards {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }
  .home .problem-section .initiative-cards::before {
    top: 23px;
    bottom: 58px;
    left: 23px;
    right: auto;
    border-top: 0;
    border-left: 2px dashed rgba(242, 140, 10, 0.55);
  }
  .home .problem-section .ic-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 16px;
    text-align: left;
    padding: 0 0 28px;
  }
  .home .problem-section .ic-card:last-child { padding-bottom: 0; }
  .home .problem-section .ic-num { grid-row: span 2; margin: 0; }
  .home .problem-section .ic-tab { margin-top: 0; align-self: end; }
  .home .problem-section .ic-gap { grid-column: 2; align-self: start; }
  .home .problem-section .ic-card:not(:last-child)::after {
    content: "\203A";
    top: auto;
    bottom: 6px;
    left: 23px;
    right: auto;
    width: 30px;
    margin-left: -15px; 
    text-align: center;
    transform: rotate(90deg); 
  }
}

.home .problem-section .initiative-cards.reveal .ic-card { opacity: 0; }
.home .problem-section .initiative-cards.reveal.in .ic-card {
  opacity: 1;
  animation: icRise 0.55s cubic-bezier(0.2, 0.7, 0.3, 1) backwards;
  animation-delay: calc(var(--i, 0) * 0.1s);
}
@keyframes icRise {
  from { opacity: 0; translate: 0 16px; }
  to   { opacity: 1; translate: 0 0; }
}
@media (prefers-reduced-motion: reduce) {
  .home .problem-section .ic-num { transition: none; }
  .home .problem-section .ic-card:hover .ic-num { transform: none; }
  .home .problem-section .initiative-cards.reveal .ic-card,
  .home .problem-section .initiative-cards.reveal.in .ic-card {
    opacity: 1;
    animation: none;
  }
}

.stage-grid {
  width: min(var(--max), 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stage-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stage-num {
  font-family: var(--font-en);
  font-size: 2.2rem;
  line-height: 1;
  color: var(--leaf-700);
}

.stage-card h3 {
  margin: 6px 0 0;
  font-family: var(--font-serif);
  font-size: 1.4rem;
}

.stage-card > p {
  margin: 0;
  color: var(--muted);
}

.stage-card .node-label {
  color: var(--label);
}

.stage-transform {
  margin-top: auto !important;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  color: var(--ink) !important;
  font-weight: 600;
}

.stage-transform b {
  color: var(--path);
  padding: 0 4px;
}

.stage-loop {
  width: min(var(--max), 100%);
  margin: 24px auto 0;
  text-align: center;
  color: var(--muted);
  font-weight: 600;
}

.stage-loop-mark {
  color: var(--path);
  font-size: 1.15rem;
  margin-right: 8px;
}

.home #audiences {
  background: var(--white);
}

.home .site-footer {
  background: var(--honey);
}

.signpost-system {
  --post-x: 24px; 
  position: relative;
  width: min(var(--max), 100%);
  margin: 60px auto 0;
  padding: 4px 74px 24px 58px; 
}

@media (min-width: 961px) {
  .signpost-system {
    width: calc(min(var(--max), 100%) - 252px);
    margin-left: calc(50% - min(var(--max), 100%) / 2 + 252px);
    margin-right: 0;
    padding-right: 74px; 
  }
}

.signpost-post {
  position: absolute;
  left: var(--post-x);
  top: 6px;
  bottom: 22px;
  width: 1px;
  background: rgba(61, 85, 39, 0.34);
  pointer-events: none;
}
.signpost-post::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -10px;
  transform: translateX(-50%);
  width: 9px;
  height: 9px;
  border: 1px solid rgba(61, 85, 39, 0.34);
  border-radius: 50%;
  background: var(--white);
}
.signpost-post::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 22px;
  height: 1px;
  background: rgba(61, 85, 39, 0.34);
}
.signpost-ground {
  position: absolute;
  left: 0;
  right: 6px;
  bottom: 0;
  height: 1px;
  background: rgba(61, 85, 39, 0.16);
  pointer-events: none;
}

.signpost-head {
  position: relative;
  margin: 0 0 22px;
}
.signpost-head::before {
  content: "";
  position: absolute;
  left: -34px;
  top: 50%;
  width: 34px;
  height: 1px;
  background: rgba(61, 85, 39, 0.3);
}
.signpost-plate {
  position: relative;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  padding: 7px 18px;
  border: 1px solid rgba(61, 85, 39, 0.3);
  border-right: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--earth);
}
.signpost-plate b {
  font-family: var(--font-en);
  font-style: italic;
  font-synthesis: none; 
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--leaf-700);
}
.signpost-plate .signpost-tip {
  width: 14px;
}

.signpost {
  --sign-c: rgba(78, 135, 24, 0.5); 
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 22px;
  padding: 18px 32px 18px 28px;
  border: 1px solid var(--sign-c);
  border-right: 0;
  background: transparent;
  transition: border-color 240ms ease;
}
.signpost + .signpost {
  margin-top: 15px;
}

.signpost::before {
  content: "";
  position: absolute;
  left: -20px;
  top: 50%;
  width: 20px;
  height: 1px;
  background: rgba(61, 85, 39, 0.34);
  transition: background 240ms ease;
}

.signpost-badge {
  position: absolute;
  left: -53px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(61, 85, 39, 0.34);
  border-radius: 50%;
  background: var(--white);
  color: var(--earth);
  transition: border-color 240ms ease, color 240ms ease, background 240ms ease;
}
.signpost-badge svg {
  width: 22px;
  height: 22px;
}

.signpost-tip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 100%;
  width: 14px; 
  transition: transform 240ms ease;
}
.signpost-tip svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible; 
}
.signpost-tip path {
  fill: none;
  stroke: var(--sign-c, rgba(61, 85, 39, 0.3));
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
  transition: stroke 240ms ease;
}

.signpost > .signpost-tip {
  width: auto;
  aspect-ratio: 14 / 34.6;
}

@media (max-width: 720px) {
  .signpost-system {
    padding-right: 60px; 
  }
  .signpost > .signpost-tip {
    aspect-ratio: auto;
    width: 52px;
  }
}

.signpost-meta {
  min-width: 0;
}
.signpost .node-label {
  color: var(--label);
}
.signpost h3 {
  margin: 7px 0 0;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--ink);
}
.signpost-desc {
  margin: 8px 0 0;
  max-width: 52ch;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.signpost-cta {
  position: relative;
  align-self: center;
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 11px;
  color: var(--link);
  font-weight: 700;
  white-space: nowrap;
}
.signpost-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 36px;
  height: 1px;
  background: var(--path);
  transition: width 260ms ease;
}
.signpost-cta .cta-arrow {
  transition: transform 240ms ease;
}

.signpost:hover,
.signpost:focus-within {
  --sign-c: var(--deep);
}

.signpost:hover .signpost-cta::after,
.signpost:focus-within .signpost-cta::after {
  width: 74px;
}
.signpost:hover .signpost-cta .cta-arrow,
.signpost:focus-within .signpost-cta .cta-arrow {
  transform: translateX(4px);
}
.signpost:hover .signpost-badge,
.signpost:focus-within .signpost-badge {
  border-color: var(--deep);
  color: var(--deep);

  background: var(--apricot);
}
.signpost:hover::before,
.signpost:focus-within::before {
  background: var(--deep);
}

@media (prefers-reduced-motion: reduce) {
  .signpost,
  .signpost::before,
  .signpost-tip,
  .signpost-tip path,
  .signpost-badge,
  .signpost-cta::after,
  .signpost-cta .cta-arrow {
    transition: none;
  }
  .signpost:hover .signpost-tip,
  .signpost:focus-within .signpost-tip,
  .signpost:hover .signpost-cta .cta-arrow,
  .signpost:focus-within .signpost-cta .cta-arrow {
    transform: none;
  }
}

.final-cta {
  background: var(--mist);
}

@media (max-width: 960px) {
  .stage-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .signpost-system {
    margin-top: 48px;
  }
  .signpost {
    gap: 18px;
  }
  .signpost h3 {
    font-size: 1.22rem;
  }
}

@media (max-width: 560px) {
  .stage-grid {
    grid-template-columns: 1fr;
  }

  .signpost-system {
    --post-x: 18px;
    margin-top: 40px;
    padding: 2px 60px 22px 48px; 
  }
  .signpost-head {
    margin-bottom: 18px;
  }
  .signpost-head::before {
    left: -30px;
    width: 30px;
  }
  .signpost {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 16px 24px 18px 24px;
  }
  .signpost::before {
    left: -18px;
    width: 18px;
  }
  .signpost-badge {
    left: -42px;
    width: 24px;
    height: 24px;
  }
  .signpost-badge svg {
    width: 14px;
    height: 14px;
  }
  .signpost-cta {
    justify-self: start;
  }
  .signpost-desc {
    max-width: none;
  }
}

.home .eyebrow {
  display: inline-block;
  padding: 0 2px 6px;
  background: none;
  border-radius: 0;
  border-bottom: 2px solid var(--wheat);
  color: var(--deep);
  letter-spacing: 0.04em;
}

.home .hero-index {
  color: rgba(242, 140, 10, 0.6);
}

.home .path-header h2::after,
.home .section-grid h2::after {
  content: "";
  display: none;
  width: 56px;
  height: 4px;
  margin-top: 18px;
  border-radius: 2px;
  background: var(--path);
}

.home .roadmap-node:nth-child(1) .stage-card { border-top: 3px solid var(--sun); }
.home .roadmap-node:nth-child(2) .stage-card { border-top: 3px solid var(--amber); }
.home .roadmap-node:nth-child(3) .stage-card { border-top: 3px solid var(--peach); }
.home .roadmap-node:nth-child(4) .stage-card { border-top: 3px solid var(--path); }
.home .stage-num {
  color: var(--sunset);
}

.home .mission-list span {
  color: var(--sunset);
}
.home .mission-list article {
  border-top: 3px solid transparent;
  transition: border-color 180ms ease;
}
.home .mission-list article:hover {
  border-top-color: var(--wheat);
}

.home .journey-node .node-dot {
  border-color: var(--path);
}

.home .impact-numbers strong {
  color: var(--sunset);
}

.home .impact-numbers {
  background: transparent;
  border: 0;
  gap: 16px;
}
.home .impact-numbers div {
  border: 1px solid var(--line);
  border-radius: 10px;
}

.home .stage-grid {
  position: relative;
}

.home .stage-card {
  position: relative;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
  border-radius: 0;
  background: transparent;
  padding: 26px 22px 22px 0;
}

@media (min-width: 961px) {

  .home .problem-section.section-pad {
    padding: 116px var(--gutter) 104px;
  }
  .home #method.section-pad {
    padding: 96px var(--gutter) 88px;
  }
  .home .partners-section.section-pad {
    padding: 92px var(--gutter);
  }
  .home .impact-section.section-pad {
    padding: 104px var(--gutter) 80px;
  }
  .home .final-cta.section-pad {
    padding: 96px var(--gutter) 104px;
  }

  .home .stage-card:not(:last-child)::after {
    content: "⇄";
    position: absolute;
    right: -13px;
    top: 24px;
    color: var(--path);
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1;
  }

  .home #method.is-anim .stage-card:not(:last-child)::after {
    content: none;
  }
}

.page-intro {
  background: var(--paper);
}

.page-intro-inner {
  width: min(var(--max), 100%);
  max-width: 940px;
  margin: 0 auto;
}

.page-intro h1 {
  margin: 18px 0 0;
  color: var(--ink);
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.18;
  font-size: 3.4rem;
  max-width: 26ch;
}

.page-intro .lead {
  font-size: 1.18rem;
  max-width: 780px;
}

.page-intro-note {
  margin: 16px 0 0;
  color: var(--muted);
  max-width: 680px;
}

.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.info-cards article {
  background: var(--white);
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.info-cards .tag {
  margin: 0;
  color: var(--leaf-700);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
}

.info-cards h3 {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  line-height: 1.4;
  color: var(--ink);
}

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

.info-cards a {
  align-self: flex-start;
  margin-top: 4px;
  color: var(--link);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
  transition: opacity 160ms ease;
}

.info-cards a:hover,
.info-cards a:focus-visible {
  opacity: 0.7;
}

.method-grid .stage-card {
  border-top-width: 3px;
}
.method-grid .stage-card:nth-child(1) { border-top-color: var(--sun); }
.method-grid .stage-card:nth-child(2) { border-top-color: var(--amber); }
.method-grid .stage-card:nth-child(3) { border-top-color: var(--peach); }
.method-grid .stage-card:nth-child(4) { border-top-color: var(--path); }

.method-grid .stage-num {
  color: var(--sunset);
}

.method-more {
  width: min(var(--max), 100%);
  margin: 26px auto 0;
}

@media (max-width: 960px) {
  .page-intro h1 {
    font-size: 2.6rem;
  }
}

@media (max-width: 560px) {
  .page-intro h1 {
    font-size: 2rem;
  }
}

.org-section { background: var(--white); }

.org-intro {
  width: min(var(--max), 100%);
  margin: 0 auto;
  text-align: center;
}
.org-intro h2 { margin: 0; }
.org-intro .lead { margin: 18px auto 0; }

.org-chart {
  --org-line: var(--line);
  --org-gap: 52px;
  width: min(var(--max), 100%);
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--org-gap);
}

.org-tier {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 28px;
  width: 100%;
}
.org-tier--units { gap: 24px; }

.org-node {
  position: relative;
  flex: 0 1 280px;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 0 0 18px;
  box-shadow: var(--shadow);
}
.org-tier--units .org-node {
  flex-basis: 230px;
  box-shadow: 0 8px 22px rgba(61, 85, 39, 0.06);
}

.org-role {
  display: block;
  margin: 0 0 14px;
  padding: 9px 24px;
  border-radius: calc(var(--card-radius) - 1px) calc(var(--card-radius) - 1px) 0 0;
  background: var(--deep);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.org-node--ceo .org-role,
.org-node--deputy .org-role { background: var(--leaf-700); }
.org-tier--units .org-role {
  background: var(--butter);
  color: var(--deep);
}
.org-node h3,
.org-node h4 {
  margin: 0 24px;
  font-family: var(--font-rounded);
  line-height: 1.3;
  color: var(--deep);
}
.org-node h3 { font-size: 1.3rem; }
.org-node h4 { font-size: 1.05rem; line-height: 1.35; }
.org-node p {
  margin: 10px 24px 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.org-tier--gov .org-node::before {
  content: ""; position: absolute; left: 50%; bottom: calc(var(--org-gap) / -2);
  width: 2px; height: calc(var(--org-gap) / 2);
  background: var(--org-line); transform: translateX(-50%);
}
.org-tier--gov .org-node::after {
  content: ""; position: absolute; bottom: calc(var(--org-gap) / -2);
  left: -14px; right: -14px; height: 2px; background: var(--org-line);
}
.org-tier--gov .org-node:first-child::after { left: 50%; }
.org-tier--gov .org-node:last-child::after { right: 50%; }

.org-tier--exec .org-node::before,
.org-tier--exec .org-node::after {
  content: ""; position: absolute; left: 50%; width: 2px;
  height: calc(var(--org-gap) / 2); background: var(--org-line);
  transform: translateX(-50%);
}
.org-tier--exec .org-node::before { top: calc(var(--org-gap) / -2); }
.org-tier--exec .org-node::after { bottom: calc(var(--org-gap) / -2); }

.org-tier--units .org-node::before {
  content: ""; position: absolute; left: 50%; top: calc(var(--org-gap) / -2);
  width: 2px; height: calc(var(--org-gap) / 2);
  background: var(--org-line); transform: translateX(-50%);
}
.org-tier--units .org-node::after {
  content: ""; position: absolute; top: calc(var(--org-gap) / -2);
  left: -12px; right: -12px; height: 2px; background: var(--org-line);
}
.org-tier--units .org-node:first-child::after { left: 50%; }
.org-tier--units .org-node:last-child::after { right: 50%; }

@media (max-width: 620px) {
  .org-chart { --org-gap: 30px; }
  .org-tier { flex-direction: column; align-items: center; gap: var(--org-gap); }
  .org-node { flex-basis: auto; width: 100%; max-width: 360px; }

  .org-tier--units .org-node { flex-basis: auto; }

  .org-tier .org-node::before,
  .org-tier .org-node::after { display: none; }

  .org-tier::before {
    content: ""; position: absolute; left: 50%; top: calc(var(--org-gap) / -2);
    width: 2px; height: calc(var(--org-gap) / 2);
    background: var(--org-line); transform: translateX(-50%);
  }
  .org-tier:first-child::before { display: none; }

  .org-node + .org-node::before {
    content: ""; position: absolute; left: 50%; top: calc(var(--org-gap) / -2);
    width: 2px; height: calc(var(--org-gap) / 2);
    background: var(--org-line); transform: translateX(-50%);
    display: block; bottom: auto;
  }
}

.orgtree-wrap {
  --tw-link: 60px;
  --tw-line: rgba(61, 85, 39, 0.42);
  margin: 56px auto 0;
  display: flex;
  justify-content: center;
  overflow-x: auto;
  padding: 6px 4px 18px;
}
.orgtree,
.orgtree ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.orgtree li {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 7px 0;
}
.orgtree li > ul { margin-left: var(--tw-link); }

.orgtree-node {
  position: relative;
  display: inline-block;
  white-space: nowrap;
  padding: 5px 20px 9px;
  border-bottom: 1.5px solid var(--line);
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--deep);
  letter-spacing: 0.02em;
}
.orgtree-node--root,
.orgtree-node--branch {
  font-weight: 700;
  border-bottom-color: var(--deep);
}
.orgtree-node--root { font-size: 1.15rem; }
.orgtree-node--leaf {
  font-size: 0.95rem;
  color: var(--muted);
}

.orgtree li > ul > li::before {
  content: "";
  position: absolute;
  left: calc(var(--tw-link) / -2);
  top: 0;
  height: 100%;
  border-left: 1.5px solid var(--tw-line);
}
.orgtree li > ul > li:first-child::before { top: 50%; height: 50%; }
.orgtree li > ul > li:last-child::before { top: 0; height: 50%; }
.orgtree li > ul > li:only-child::before { display: none; }

.orgtree li > ul > li > .orgtree-node::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(var(--tw-link) / -2);
  width: calc(var(--tw-link) / 2);
  border-top: 1.5px solid var(--tw-line);
}

.orgtree li:has(> ul) > .orgtree-node::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  width: calc(var(--tw-link) / 2);
  border-top: 1.5px solid var(--tw-line);
}

.orgtree--chain li:has(> ul > li:only-child) > .orgtree-node::after,
.orgtree--chain li > ul > li:only-child > .orgtree-node::before {
  border-top-color: var(--deep);
}

@media (max-width: 820px) {
  .orgtree-wrap { --tw-link: 40px; justify-content: flex-start; }
  .orgtree li { padding: 6px 0; }
  .orgtree-node { font-size: 0.92rem; padding: 4px 14px 8px; }
  .orgtree-node--root { font-size: 1rem; }
  .orgtree-node--leaf { font-size: 0.86rem; }
}
@media (max-width: 560px) {
  .orgtree-wrap { --tw-link: 30px; }
  .orgtree-node { font-size: 0.84rem; letter-spacing: 0; padding: 4px 10px 7px; }
}

.give-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.partner-tiers .amount-tag {
  display: inline-block;
  margin: 0 0 2px;
  color: var(--label);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.highlight-tier .amount-tag {
  color: var(--wheat);
}

.faq-list {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius); 
  padding: 0 26px;
  transition: border-color 180ms ease, background 180ms ease;
}

.faq-item:hover {
  border-color: var(--leaf-700);
}

.faq-item[open] {
  background: var(--honey);
  border-color: var(--leaf-700);
}

.faq-item > summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0;
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--ink);
  transition: color 160ms ease;
}

.faq-item > summary::-webkit-details-marker {
  display: none;
}

.faq-item > summary:hover,
.faq-item[open] > summary {
  color: var(--leaf-700);
}

.faq-item > summary:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 3px;
  border-radius: 4px;
}

.faq-mark {
  flex: none;
  position: relative;
  width: 18px;
  height: 18px;
  margin-top: 7px;
}

.faq-mark::before,
.faq-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  border-radius: 1px;
  background: var(--path);
  transform: translate(-50%, -50%);
  transition: transform 200ms ease, opacity 200ms ease;
}

.faq-mark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item[open] .faq-mark::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.faq-answer {
  margin: 0;
  padding: 0 0 24px;
  max-width: 760px;
  color: var(--muted);
}

.faq-answer a {
  color: var(--link);
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}

.faq-answer a:hover,
.faq-answer a:focus-visible {
  color: var(--leaf-700);
}

@media (prefers-reduced-motion: reduce) {
  .faq-mark::before,
  .faq-mark::after {
    transition: none;
  }
}

@media (max-width: 560px) {
  .faq-item {
    padding: 0 18px;
  }

  .faq-item > summary {
    font-size: 1.08rem;
    gap: 16px;
  }
}

.page-about .journey-line {
  display: block;
  position: relative;
  width: min(var(--max), 100%);
  margin: 0 auto;
}

.page-about .journey-line::before {
  left: 11px;
  right: auto;
  top: 12px;
  bottom: 12px;
  width: 1px;
  height: auto;
}

.page-about .journey-node {
  min-height: 0;
  max-width: 860px;
  padding: 0 0 46px 56px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 240px;
  gap: 30px;
  align-items: start;
}

.page-about .journey-node:last-child {
  padding-bottom: 0;
}

.page-about .journey-text {
  min-width: 0;
}

.page-about .journey-photo {
  margin: 0;
  align-self: start;
}
.page-about .journey-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
}

.page-about .journey-node .node-dot {
  left: 0;
  top: 0;
  transition: background 200ms ease, border-color 200ms ease, box-shadow 200ms ease;
}

.page-about .journey-node.is-active .node-dot {
  background: var(--path);
  border-color: var(--path);
  box-shadow: 0 0 0 6px rgba(242, 140, 10, 0.16);
}

.page-about .journey-node h3 {
  margin-top: 6px;
}

@media (min-width: 961px) {
  body:not(.home) .path-header ~ .stage-grid,
  body:not(.home) .path-header ~ .method-more,
  body:not(.home) .path-header ~ .act-panel,
  body:not(.home) .path-header ~ .news-list,
  body:not(.home) .path-header ~ .contact-grid,
  body:not(.home) .path-header ~ .partner-tiers,
  body:not(.home) .path-header ~ .partner-logos,
  body:not(.home) .path-header ~ .content-figure,
  body:not(.home) .path-header ~ .media-band,
  body:not(.home) .path-header ~ .press-toolbar,
  body:not(.home) .path-header ~ .impact-numbers {
    padding-left: calc(180px + 72px);
  }

  body:not(.home) .story-layout .path-header ~ .stage-grid,
  body:not(.home) .story-layout .path-header ~ .method-more,
  body:not(.home) .story-layout .path-header ~ .act-panel,
  body:not(.home) .story-layout .path-header ~ .news-list,
  body:not(.home) .story-layout .path-header ~ .contact-grid,
  body:not(.home) .story-layout .path-header ~ .partner-tiers,
  body:not(.home) .story-layout .path-header ~ .partner-logos,
  body:not(.home) .story-layout .path-header ~ .content-figure,
  body:not(.home) .story-layout .path-header ~ .media-band,
  body:not(.home) .story-layout .path-header ~ .press-toolbar,
  body:not(.home) .story-layout .path-header ~ .impact-numbers {
    padding-left: clamp(0px, calc(140px - (100vw - var(--max)) / 2), 160px);
  }
}

@media (max-width: 700px) {
  .page-about .journey-node {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .page-about .journey-node {
    padding-left: 46px;
  }
}

.story-layout {
  width: min(var(--max), 100%);
  margin: 0 auto;

  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 176px minmax(0, 1fr);
  gap: 60px;
  align-items: start;
}

.story-layout .section-pad { padding: 72px 0; }
.story-layout .story-flow > .section-pad:first-child { padding-top: 6px; }
.story-layout .section-grid,
.story-layout .path-header {
  width: 100%;
  grid-template-columns: 1fr;
  gap: 0;
}
.story-layout .section-kicker { display: none; }
.story-layout .journey-line,
.story-layout .cta-band { width: 100%; }
.story-flow > section { scroll-margin-top: 104px; }

.exit-nav {
  position: sticky;
  top: 120px;
  align-self: start;
  z-index: 10;
}
.exit-rail {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
  counter-reset: exitstop;
}

.exit-sign {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 0 10px;
  padding: 16px 15px 14px;
  border: 1px solid rgba(61, 85, 39, 0.22);
  border-radius: 6px;
  background: var(--paper);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}
.exit-sign:hover {
  transform: translateX(4px);
  border-color: rgba(61, 85, 39, 0.55);
}
.exit-sign:focus-visible {
  outline: 2px solid var(--deep);
  outline-offset: 2px;
}

.exit-sign::after {
  content: "";
  position: absolute;
  inset: 4px;
  border: 1px solid rgba(61, 85, 39, 0.2);
  border-radius: 3px;
  pointer-events: none;
  transition: border-color 180ms ease;
}
.exit-sign.is-active::after { border-color: rgba(232, 115, 40, 0.4); }

.exit-sign + .exit-sign::before {
  content: "";
  position: absolute;
  left: 21px;
  top: -22px;
  height: 22px;
  width: 1px;
  background: rgba(61, 85, 39, 0.16);
  transition: background 180ms ease;
}

.exit-tag {
  position: absolute;
  top: -10px;
  right: 12px;
  z-index: 2;
  display: inline-block;
  padding: 2px 9px;
  border: 1px solid rgba(232, 115, 40, 0.55);
  border-radius: 5px;
  background: var(--white);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: rgba(61, 85, 39, 0.9);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.exit-name {
  grid-column: 1;
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.3;
  color: rgba(61, 85, 39, 0.82);
  transition: color 180ms ease;
}

.exit-arrow {
  grid-column: 2;
  align-self: center;
  display: inline-flex;
  color: var(--deep);
  opacity: 0.4;
  transition: opacity 180ms ease, transform 180ms ease;
}
.exit-arrow svg { width: 16px; height: 16px; display: block; transform: rotate(-45deg); }
.exit-sign:hover .exit-arrow,
.exit-sign.is-active .exit-arrow { opacity: 1; transform: translate(3px, -3px); }

.exit-sign--main {
  grid-template-columns: 1fr;
  gap: 3px;
  padding: 14px 12px 15px;
  border-color: rgba(61, 85, 39, 0.34);
}
.exit-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(61, 85, 39, 0.8);
}
.exit-sign--main .exit-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--deep);
  white-space: nowrap;
}

.exit-sign.is-active {
  border-color: var(--sunset);
  background: var(--honey);
}
.exit-sign.is-active .exit-name { color: var(--deep); font-weight: 600; }
.exit-sign.is-active .exit-tag {
  background: var(--sun);
  color: var(--deep);
  border-color: var(--sunset);
}
.exit-sign.is-active .exit-arrow { opacity: 1; color: var(--sunset); }
.exit-sign.is-active::before { background: var(--sunset); }

.exit-sign:not(.exit-sign--main) { counter-increment: exitstop; }
.exit-tag,
.exit-arrow { display: none; }
.exit-sign:not(.exit-sign--main) .exit-name::before {
  content: counter(exitstop, decimal-leading-zero);
  margin-right: 11px;
  font-size: 0.82em;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(61, 85, 39, 0.62);
}
.exit-sign.is-active .exit-name::before { color: var(--deep); }

@media (max-width: 960px) {
  .story-layout {

    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    padding: 0 22px;
  }
  .story-layout .section-pad { padding: 56px 0; }

  .exit-nav {
    position: sticky;
    top: 68px;
    z-index: 18;

    margin: 0 -22px 24px;
    background: rgba(255, 255, 255, 0.93);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
  }
  .exit-rail {
    flex-direction: row;
    align-items: stretch;
    gap: 8px;
    padding: 10px 22px;
    overflow-x: auto;
    scrollbar-width: none;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  }
  .exit-rail::-webkit-scrollbar { display: none; }
  .exit-sign {
    flex: 0 0 auto;
    grid-template-columns: auto;
    gap: 2px;
    padding: 8px 13px;
  }
  .exit-sign::after { display: none; }
  .exit-tag {
    position: static;
    top: auto;
    right: auto;
  }
  .exit-sign:hover { transform: none; }
  .exit-sign + .exit-sign::before { display: none; }
  .exit-arrow { display: none; }
  .exit-name { font-size: 0.9rem; }
  .exit-sign--main .exit-name { font-size: 1rem; }
  .story-flow > section { scroll-margin-top: 128px; }
}

@media (prefers-reduced-motion: reduce) {
  .exit-sign,
  .exit-arrow,
  .exit-sign::after,
  .exit-sign + .exit-sign::before { transition: none; }
  .exit-sign:hover { transform: none; }
}

.give-note {
  width: min(var(--max), 100%);
  margin: 34px auto 0;
}

.method-cycle {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
}
.mc-tier {
  text-align: center;
}
.mc-eyebrow {
  margin: 0;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--path);
}
.method-cycle .mc-tier h3 {
  margin: .5rem 0 .2rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep);
}
.mc-sub {
  margin: 0 auto 20px;
  max-width: 32em;
  color: var(--muted);
}
.mc-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.mc-node {
  flex: 1 1 124px;
  max-width: 160px;
  min-width: 116px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 15px 12px 13px;
}
.mc-node.is-out {
  background: var(--honey);
  border-color: rgba(79, 159, 29, .28);
}
.mc-node b {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--deep);
}
.mc-node span {
  display: block;
  margin-top: 3px;
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--earth);
}
.mc-conn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  margin: 16px 0;
}
.mc-conn-line {
  width: 0;
  height: 30px;
  border-left: 2px dashed var(--path);
}
.mc-conn-tag {
  font-size: .74rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--earth);
}
.mc-wheel {
  display: flex;
  justify-content: center;
  margin: 8px 0 4px;
}
.mc-wheel svg {
  width: min(360px, 84vw);
  height: auto;
}
.mc-w1 { fill: var(--brand-green); }
.mc-w2 { fill: var(--leaf-700); }
.mc-w3 { fill: var(--peach); }
.mc-w4 { fill: var(--path); }
.mc-hub { fill: var(--white); }
.mc-loop {
  fill: none;
  stroke: var(--path);
  stroke-width: 2.6;
  stroke-linecap: round;
}
.mc-arrowhead { fill: var(--path); }
.mc-wt-name {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
}
.mc-wt-n { font-family: var(--font-sans); font-size: 11px; }
.mc-wt-en { font-size: 9px; letter-spacing: 1px; }
.mc-on-light { fill: var(--white); }
.mc-on-light.mc-wt-en,
.mc-on-light.mc-wt-n { fill: rgba(255, 255, 255, .85); }
.mc-on-dark { fill: var(--deep); }
.mc-on-dark.mc-wt-en,
.mc-on-dark.mc-wt-n { fill: rgba(61, 85, 39, .82); }
.mc-hub-t {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 700;
  fill: var(--deep);
}

@media (max-width: 760px) {
  .method-cycle .mc-tier h3 { font-size: 1.3rem; }
  .mc-node { flex-basis: 104px; min-width: 96px; }
  .mc-conn-line { height: 22px; }
}

.mc-wheel svg { width: min(380px, 88vw); }
.mc-wt-name { font-size: 16px; }

.mc-wedge { cursor: pointer; }

.mc-wedge path {
  stroke: rgba(255, 255, 255, 0);
  stroke-width: 0;
  stroke-linejoin: round;
  transition: stroke .18s ease, stroke-width .18s ease;
}
.mc-wedge:hover path,
.mc-wedge:focus-visible path,
.mc-wedge.is-active path {
  stroke: #fff;
  stroke-width: 4; 
}

svg.mc-selfclip .mc-wedge:hover path,
svg.mc-selfclip .mc-wedge:focus-visible path,
svg.mc-selfclip .mc-wedge.is-active path {
  stroke-width: 9;
}
.mc-wedge:focus { outline: none; }
.mc-wedge:focus-visible { outline: 2px solid var(--brand-green); outline-offset: 2px; }

.mc-wedge {
  transform-box: view-box;
  transform-origin: 175px 175px;
  transition: transform .22s ease, opacity .22s ease;
}

.mc-wedge:hover,
.mc-wedge:focus-visible,
.mc-wedge.is-active { transform: scale(1.10); }
.method-cycle:has(.mc-wedge.is-active) .mc-wedge:not(.is-active):not(:hover):not(:focus-visible) { opacity: 0.55; }

.method-cycle {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: clamp(26px, 3.4vw, 46px);
  box-shadow: 0 20px 46px rgba(61, 85, 39, 0.09);
  container-type: inline-size;
}
.mc-wheel { padding: 12px 0; }
.mc-wheel svg { overflow: visible; }
.mc-detail .mc-detail-no {
  display: inline-block;
  padding: 2px 11px;
  border-radius: 10px;
  background: rgba(252, 224, 140, 0.62);
}
.mc-wheel-col .mc-hint.mc-hint--under {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 14px 0 0;
  padding: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--muted);
  background: none;
  border: 0;
  text-align: center;
}
.mc-hint-icon {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--muted);
  animation: mc-hint-tap 2.4s ease-in-out infinite;
}
@keyframes mc-hint-tap {
  0%, 100% { transform: none; }
  10% { transform: translate(1.5px, 1.5px) scale(0.92); }
  20% { transform: none; }
}
@container (max-width: 860px) {
  .method-cycle .mc-stage { flex-direction: column; gap: 6px; }
  .method-cycle .mc-wheel svg { width: min(380px, 100%); }
  .method-cycle .mc-stage .mc-detail-col { width: min(560px, 100%); }
  .method-cycle .mc-stage .mc-detail { flex: none; width: 100%; margin-top: 14px; }
}
@media (prefers-reduced-motion: reduce) {
  .mc-hint-icon { animation: none; }
}
@media (prefers-reduced-motion: reduce) {
  .mc-wedge { transition: none; }
}

.mc-hint {
  margin: 12px auto 0;
  font-size: .82rem;
  color: var(--earth);
}

.mc-detail {
  transition: background-color 0.35s ease, border-color 0.35s ease;
}
.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) { background: var(--brand-green); border-color: var(--brand-green); } 
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) { background: var(--leaf-700);    border-color: var(--leaf-700); }    
.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) { background: var(--peach);       border-color: var(--peach); }       
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) { background: var(--path);        border-color: var(--path); }        

.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-h,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-h,
.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-desc,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-desc { color: var(--white); }
.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-en,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-en { color: var(--butter); }

.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) .mc-detail-en,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-en,
.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) .mc-detail-desc,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-desc { color: var(--deep); }

.mc-detail-col { width: min(560px, 100%); }
.mc-detail-col .mc-detail { width: 100%; margin-top: 0; }
.mc-detail-col .mc-hint {
  margin: 12px 4px 0;
  font-size: .78rem;
  text-align: left;
}
.mc-detail {
  width: min(560px, 100%);
  margin: 14px auto 0;
  text-align: left;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius); 
  padding: 18px 22px;
  min-height: 120px; 
}
.mc-detail-item { display: none; }
.mc-detail-item.is-active { display: block; }
.mc-detail-h {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep);
}
.mc-detail-no {
  font-family: var(--font-en);
  color: var(--sunset);
  margin-right: 8px;
}
.mc-detail-en {
  margin-left: 8px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--earth);
  white-space: nowrap; 
}
.mc-detail-sub {
  margin: 5px 0 0;
  font-size: .92rem;
  font-weight: 600;
  color: var(--label);
}
.mc-detail-desc {
  margin: 9px 0 0;
  color: var(--muted);
}
.mc-detail-shift {
  margin: 11px 0 0;
  padding-top: 11px;
  border-top: 1px dashed var(--line);
  color: var(--deep);
  font-weight: 600;
}
.mc-detail-shift b { color: var(--path); padding: 0 4px; }

.mc-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 4vw, 52px);
  margin-top: 22px;
}
.mc-wheel-col { flex: 0 0 auto; }
.mc-stage .mc-wheel { margin: 0; }
.mc-stage .mc-detail {
  flex: 0 1 440px;
  width: auto;
  margin: 0;
}
@media (max-width: 880px) {
  .mc-stage { flex-direction: column; gap: 6px; }
  .mc-stage .mc-detail {
    flex: none;
    width: min(560px, 100%);
    margin-top: 14px;
  }
}

.mc-node { border-style: dashed; }
.mc-node.is-out { border-style: solid; }
.mc-node,
.mc-node.is-out {
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.mc-node:hover { border-color: var(--brand-green); }
.mc-node.is-out:hover {
  transform: translateY(-3px);
  border-color: var(--brand-green);
  box-shadow: 0 10px 24px rgba(61, 85, 39, .10);
}

main.wip-mode > *:not(.wip-screen) {
  display: none !important;
}
.wip-screen {
  min-height: calc(100vh - 168px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  padding: clamp(72px, 16vh, 200px) var(--gutter);
}
.wip-screen .wip-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  margin-bottom: 6px;
  border-radius: 50%;
  color: var(--brand-green);
  background: rgba(79, 159, 29, 0.10);
}
.wip-screen .wip-icon svg {
  width: 38px;
  height: 38px;
}
.wip-screen .wip-eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--leaf-700);
}
.wip-screen h1 {
  margin: 0;
  font-size: clamp(30px, 5.4vw, 50px);
  line-height: 1.18;
  color: var(--ink);
}
.wip-screen .wip-section-en {
  margin: 0;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
}
.wip-screen .wip-lead {
  margin: 6px 0 0;
  max-width: 34em;
  color: var(--muted);
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.85;
}
.wip-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
}
.wip-actions .wip-link {
  color: var(--leaf-700);
  text-decoration: none;
  font-weight: 600;
}
.wip-actions .wip-link:hover {
  text-decoration: underline;
}

.signal-row--terms strong {
  font-size: 2rem;
  line-height: 1.2;
  white-space: nowrap;
}
@media (max-width: 560px) {
  .signal-row--terms strong {
    font-size: 1.55rem;

    white-space: normal;
    text-wrap: balance;   
  }
}

.signal-row--ids {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.signal-row--ids strong {
  font-size: 1.5rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

@media (max-width: 820px) {
  .signal-row--ids {
    grid-template-columns: 1fr;
  }
}

.page-legal .path-header {
  grid-template-columns: minmax(0, 1fr);
}
.page-legal .path-header > .section-kicker {
  display: none;
}

.page-legal .path-header,
.page-legal .cta-band,
.page-latest .path-section > *:not(.decor),
.page-doc .section-grid {
  width: min(calc(var(--max) - var(--gutter) * 2), 100%);
  margin-left: auto;
  margin-right: auto;
}

.legal-doc .lead {
  max-width: 62ch;
}

.legal-doc .legal-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1px;
  margin: 28px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--line);
}
.legal-doc .legal-meta > div {
  background: var(--paper);
  padding: 16px 20px;
}
.legal-doc .legal-meta dt {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--muted);
  margin: 0 0 4px;
}
.legal-doc .legal-meta dd {
  margin: 0;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.legal-doc .legal-toc {
  margin: 36px 0 0;
  padding: 24px 28px;
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--honey);
}
.legal-doc .legal-toc h3 {
  margin: 0 0 14px;
  font-size: 1.05rem;
  color: var(--ink);
}
.legal-doc .legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 32px;
}
.legal-doc .legal-toc li {
  font-size: 0.94rem;
  line-height: 1.5;
}
.legal-doc .legal-toc a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color 0.15s, border-color 0.15s;
}
.legal-doc .legal-toc a:hover,
.legal-doc .legal-toc a:focus-visible {
  color: var(--leaf-700);
  border-bottom-color: var(--leaf-700);
}

.legal-doc .legal-body {
  margin-top: 40px;
}
.legal-doc .legal-article {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  scroll-margin-top: 96px;
}
.legal-doc .legal-article:first-child {
  border-top: 0;
  padding-top: 8px;
}
.legal-doc .legal-article > h3 {
  margin: 0 0 14px;
  font-size: 1.22rem;
  line-height: 1.4;
  color: var(--ink);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
}
.legal-doc .legal-no {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--leaf-700);
  background: var(--butter);
  border-radius: 999px;
  padding: 3px 12px;
  white-space: nowrap;
}
.legal-doc .legal-article p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.8;
}
.legal-doc .legal-article > ol,
.legal-doc .legal-article > ul {
  margin: 0;
  padding-left: 1.5em;
  color: var(--muted);
}
.legal-doc .legal-article > ol > li,
.legal-doc .legal-article > ul > li {
  margin: 0 0 10px;
  line-height: 1.8;
  padding-left: 4px;
}
.legal-doc .legal-article li::marker {
  color: var(--leaf-700);
  font-weight: 600;
}
.legal-doc .legal-article strong {
  color: var(--ink);
  font-weight: 700;
}
.legal-doc .legal-article a {
  color: var(--leaf-700);
  text-decoration: underline;
  text-underline-offset: 2px;

  overflow-wrap: anywhere;
}

.legal-doc .legal-sub {
  margin: 10px 0 4px;
  padding-left: 1.4em;
  list-style: none;
  counter-reset: sub;
}
.legal-doc .legal-sub > li {
  position: relative;
  margin: 0 0 8px;
  line-height: 1.8;
  counter-increment: sub;
}
.legal-doc .legal-sub > li::before {
  content: "(" counter(sub) ") ";
  position: absolute;
  left: -1.6em;
  color: var(--leaf-700);
  font-weight: 600;
}

.legal-doc .legal-facts {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.legal-doc .legal-facts > li {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 12px;
  line-height: 1.7;
  color: var(--ink);
}
.legal-doc .legal-facts > li > span {
  color: var(--muted);
  font-size: 0.9rem;
}
.legal-doc .legal-facts a {
  color: var(--leaf-700);
}

@media (max-width: 720px) {
  .legal-doc .legal-toc {
    padding: 20px;
  }
  .legal-doc .legal-toc ol {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .legal-doc .legal-facts > li {

    grid-template-columns: 76px minmax(0, 1fr);
    gap: 8px;
  }
  .legal-doc .legal-facts > li > * {
    min-width: 0;
    overflow-wrap: anywhere;
  }
}

.kicker-icon--solid {
  fill: currentColor;
  stroke: none;
  display: block;
}

.home .button-primary,
.home .cta-band .button-primary,
.home .hero-cta .button-secondary {
  background: var(--path);
  border-color: var(--path);
  color: var(--white);
}
.home .button-primary:hover,
.home .button-primary:focus-visible,
.home .cta-band .button-primary:hover,
.home .cta-band .button-primary:focus-visible,
.home .hero-cta .button-secondary:hover,
.home .hero-cta .button-secondary:focus-visible {
  background: var(--sunset);
  border-color: var(--sunset);
  color: var(--white);
}

.home .signpost .node-label {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 999px;
  color: var(--deep);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}
.home .signpost:nth-of-type(1) .node-label { background: var(--leaf); }
.home .signpost:nth-of-type(2) .node-label { background: var(--sun); }
.home .signpost:nth-of-type(3) .node-label { background: var(--apricot); }
.home .signpost:nth-of-type(4) .node-label { background: var(--butter); }

.home .partner-logos li {
  transition: border-color 180ms ease, background 180ms ease, translate 180ms ease;
}
.home .partner-logos li:hover {
  border-color: var(--leaf-700);
  background: var(--honey);
  translate: 0 -3px;
}

@keyframes partnerRise {
  from { opacity: 0; translate: 0 18px; }
  to { opacity: 1; translate: 0 0; }
}
@keyframes partnerFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.home .partner-logos.reveal li { opacity: 0; }
.home .partner-logos.reveal.in li {
  opacity: 1;
  animation: partnerRise 0.6s cubic-bezier(0.2, 0.7, 0.3, 1) backwards,
             partnerFloat 4.6s ease-in-out infinite;
  animation-delay: calc(var(--i, 0) * 0.07s), calc(var(--i, 0) * -0.6s);
}
@media (prefers-reduced-motion: reduce) {
  .home .partner-logos.reveal li { opacity: 1; }
  .home .partner-logos.reveal.in li { animation: none; }
}

.home #impact {
  position: relative;
  isolation: isolate;
  padding-top: 170px;
  padding-bottom: 150px;
}

.home #impact::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><g><path fill='%23ffffff' d='M-40,86 C150,73 330,74 500,86 C670,99 820,99 980,86 C1110,74 1180,75 1240,82 L1240,140 L-40,140 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,72 C250,42 450,112 650,77 950,27 1080,60 1240,57 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>");
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}
.home #impact > .section-grid {
  position: relative;
  z-index: 1;
}

.home #impact .kicker-icon { color: var(--sun); }
.home #impact .section-kicker p {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: var(--wheat);
  color: var(--deep);
  font-size: 1.05rem;
}
.home #impact .section-kicker p::after { display: none; }
.home #impact .section-grid h2 { color: var(--paper); }

.home #impact .lead { color: rgba(251, 239, 217, 0.85); }
.home #impact .impact-numbers div {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(251, 239, 217, 0.35);
}
.home #impact .impact-numbers strong { color: var(--sun); }
.home #impact .impact-numbers span { color: rgba(251, 239, 217, 0.85); }
.home #impact .audience-cta { color: var(--paper); }

@media (max-width: 720px) {
  .home #impact {
    padding-top: 96px;
    padding-bottom: 90px;
  }
}

.home .problem-section {
  background: transparent;
  position: relative;
  isolation: isolate;
  padding-top: 150px;
  padding-bottom: 140px;
}
.home .problem-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><g><path fill='%23ffffff' d='M-40,84 C150,71 330,72 500,84 C670,97 820,97 980,84 C1110,72 1180,73 1240,80 L1240,140 L-40,140 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,70 C260,40 460,100 660,72 940,38 1080,66 1240,60 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>");
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}
.home .problem-section > .section-grid { position: relative; z-index: 1; }
.home .problem-section .kicker-icon { color: var(--deep); }
.home .problem-section .section-kicker p {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: var(--white);
  color: var(--leaf-700);
  font-size: 1.05rem;
}
.home .problem-section .section-kicker p::after { display: none; }
@media (max-width: 720px) {
  .home .problem-section { padding-top: 92px; padding-bottom: 88px; }
}

.home #audiences {
  background: transparent;
  position: relative;
  isolation: isolate;
  padding-top: 150px;
  padding-bottom: 140px;
}
.home #audiences::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><g><path fill='%23ffffff' d='M-40,84 C150,71 330,72 500,84 C670,97 820,97 980,84 C1110,72 1180,73 1240,80 L1240,140 L-40,140 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,64 C230,98 430,48 650,82 910,118 1050,58 1240,78 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>");
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}
.home #audiences > .path-header,
.home #audiences > .signpost-system { position: relative; z-index: 1; }

.home #audiences .kicker-icon { color: var(--deep); }
.home #audiences .section-kicker p {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: var(--sun); 
  border: 1px solid rgba(61, 85, 39, 0.14);
  color: var(--deep);
  font-size: 1.05rem;
}
.home #audiences .section-kicker p::after { display: none; }

.home #audiences .signpost { --sign-c: rgba(61, 85, 39, 0.7); }
.home #audiences .signpost-post,
.home #audiences .signpost-post::after { background: rgba(61, 85, 39, 0.7); }
.home #audiences .signpost-post::before { border-color: rgba(61, 85, 39, 0.7); }
.home #audiences .signpost-ground { display: none; } 
.home #audiences .signpost-head::before { background: rgba(61, 85, 39, 0.6); }
.home #audiences .signpost-plate { border-color: rgba(61, 85, 39, 0.6); }
.home #audiences .signpost::before { background: rgba(61, 85, 39, 0.7); }
.home #audiences .signpost-badge { border-color: rgba(61, 85, 39, 0.6); }

.home #audiences .signpost:nth-of-type(1) { --accent: var(--leaf-700); --pill: var(--sun); }
.home #audiences .signpost:nth-of-type(2) { --accent: var(--wheat);    --pill: var(--apricot); }
.home #audiences .signpost:nth-of-type(3) { --accent: var(--path);     --pill: var(--amber); }
.home #audiences .signpost:nth-of-type(4) { --accent: var(--sunset);   --pill: var(--butter); }

.home #audiences .signpost {
  background: var(--white);
  border-color: transparent; 
  border-radius: 14px; 
  box-shadow: 0 9px 22px rgba(61, 85, 39, 0.12);
  transition: border-color 240ms ease, box-shadow 240ms ease;
}

.home #audiences .signpost > .signpost-tip path {
  fill: var(--white);
  stroke: none;
}

.home #audiences .signpost > .signpost-tip {
  margin-left: -1px;
}

.home #audiences .signpost-badge {
  border-color: rgba(61, 85, 39, 0.3);
  color: var(--accent);
}

.home #audiences .signpost .node-label {
  background: var(--pill);
  color: var(--deep);
  border: 1px solid rgba(61, 85, 39, 0.14);
}

.home #audiences .signpost-cta::after { background: var(--accent); }

.home #audiences .signpost-plate {
  background: var(--white);
  border-color: transparent;
  border-radius: 10px; 
  color: var(--deep);
  box-shadow: 0 6px 14px rgba(61, 85, 39, 0.1);
}
.home #audiences .signpost-plate .signpost-tip path {
  fill: var(--white);
  stroke: none;
}
.home #audiences .signpost-plate .signpost-tip {
  margin-left: -1px;
}

.home #audiences .signpost:hover,
.home #audiences .signpost:focus-within {
  border-color: var(--accent);
  box-shadow: 0 14px 30px rgba(61, 85, 39, 0.17);
}

.home #partners {
  position: relative;
  isolation: isolate;
  padding-top: 150px;
  padding-bottom: 150px;
}
.home #partners::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><g><path fill='%23ffffff' d='M-40,82 C150,69 330,70 500,82 C670,95 820,95 980,82 C1110,70 1180,71 1240,78 L1240,140 L-40,140 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fce08c' d='M-40,82 C260,44 470,102 680,72 940,34 1060,82 1240,64 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>");
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}
.home #partners > .path-header,
.home #partners > .partner-logos { position: relative; z-index: 1; }
.home #partners .kicker-icon { color: var(--deep); }
.home #partners .section-kicker p {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: var(--white);
  color: var(--leaf-700);
  font-size: 1.05rem;
}
.home #partners .section-kicker p::after { display: none; }

@media (max-width: 720px) {
  .home #audiences,
  .home #partners {
    padding-top: 92px;
    padding-bottom: 88px;
  }
}

.home #impact,
.home #audiences,
.home #partners,
.home .problem-section.section-pad {
  padding-bottom: 130px;
}

@media (max-width: 720px) {
  .home #impact {
    padding-bottom: 176px;
  }
}

.hero #hero-title,
.hero #hero-title .kw,
.page-header h1,
.page-intro h1 {
  font-family: var(--font-sans);
}

.signal-row strong,
.impact-numbers strong,
.partner-tiers strong,
.hero-proof strong,
.story-ratings strong,
.stage-num {
  font-family: var(--font-rounded);
}

h1, h2, h3 { text-wrap: balance; line-break: strict; } 

.kw { white-space: nowrap; }

.nw { white-space: nowrap; }

.content-figure {
  margin: 40px 0 0;
}

.figure-solo {
  max-width: var(--max);
  margin: 0 auto;
}
.figure-solo .content-figure {
  margin: 0;
}
.content-figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;

  border-radius: 0;
  border: 0;
  box-shadow: 0 16px 36px rgba(61, 85, 39, 0.18), 0 4px 12px rgba(61, 85, 39, 0.12);
}

.content-figure,
.journey-line.is-vertical.has-figures .node-figure {
  position: relative;
  z-index: 7;
}
.content-figure figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.content-figure--tall img { aspect-ratio: 4 / 3; }

.media-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 36px;
  align-items: center;
  margin-top: 44px;
}
.media-band > .media-text { min-width: 0; }
.media-band > .media-text > :first-child { margin-top: 0; }
.media-band figure { margin: 0; }
.media-band figure img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: var(--card-radius);
  border: 1px solid var(--line);
}
.media-band figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.media-band--reverse > figure { order: -1; }

@media (max-width: 760px) {
  .media-band {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .media-band--reverse > figure { order: 0; }
}

.press-toolbar {
  width: min(var(--max), 100%);
  margin: 32px auto 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px 20px;
}
.press-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.press-filter {
  appearance: none;
  cursor: pointer;
  padding: 10px 18px;
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}
.press-filter:hover {
  background: var(--honey);
}
.press-filter:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 2px;
}
.press-filter.is-active,
.press-filter[aria-pressed="true"] {
  background: var(--leaf);
  border-color: var(--leaf);
  color: var(--deep);
}

.press-tag {
  align-self: flex-start;
  display: inline-block;
  padding: 3px 12px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 700;
}

.press-sort {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.press-sort-label {
  margin-right: 2px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}
.press-segment {
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
  background: var(--white);
}
.press-sort-btn {
  appearance: none;
  cursor: pointer;
  padding: 9px 18px;
  min-height: 40px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background-color 0.18s ease, color 0.18s ease;
}
.press-sort-btn + .press-sort-btn {
  border-left: 1px solid var(--line);
}
.press-sort-btn:hover {
  background: var(--honey);
}
.press-sort-btn:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: -2px;
}
.press-sort-btn.is-active,
.press-sort-btn[aria-pressed="true"] {
  background: var(--sunset);
  color: var(--white);
}

.news-card-cover {
  display: block;
  width: calc(100% + 48px);
  height: auto;
  margin: -26px -24px 4px;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

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

.news-card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}
.press-source {
  color: var(--leaf-700);
  font-weight: 700;
  font-size: 0.85rem;
}

.story-figure:has(img) {
  border-style: solid;
  border-radius: var(--card-radius);
  overflow: hidden;
}
.story-figure img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-logos li:has(img) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  min-height: 74px;
  min-width: 132px;
}
.partner-logos li img {
  display: block;
  height: 46px;
  width: auto;
  max-width: 172px;
  object-fit: contain;
}
@media (max-width: 560px) {
  .partner-logos li:has(img) {
    min-height: 60px;
    min-width: 106px;
    padding: 10px 16px;
  }
  .partner-logos li img { height: 34px; max-width: 128px; }
}

.mc-fold-bar { display: none; }
.method-cycle.is-enhanced .mc-fold-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(440px, 100%);
  margin: 0 auto;
  padding: 13px 22px;
  border: 1px solid var(--deep);
  border-radius: 12px;
  background: var(--deep);
  color: var(--white);
  font-family: "Noto Sans TC", sans-serif;
  font-size: .98rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .18s ease, transform .18s ease;
}
.method-cycle.is-enhanced .mc-fold-bar:hover { border-color: var(--brand-green); }
.method-cycle.is-enhanced .mc-fold-bar:focus-visible {
  outline: 2px solid var(--brand-green);
  outline-offset: 2px;
}
.mc-fold-label { letter-spacing: .04em; }
.mc-fold-meta { font-size: .82rem; font-weight: 500; color: var(--earth); }
.mc-fold-ic {
  margin-left: auto;
  font-size: 1.15rem;
  line-height: 1;
  color: var(--path);
  transition: transform .3s ease;
}
.mc-fold-bar[aria-expanded="true"] .mc-fold-ic { transform: rotate(45deg); }

.method-cycle.is-enhanced .mc-fold-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .42s ease;
}
.method-cycle.is-enhanced .mc-fold-body.open { grid-template-rows: 1fr; }
.method-cycle.is-enhanced .mc-fold-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.method-cycle.is-enhanced .mc-fold-body.open .mc-fold-inner { opacity: 1; }
.mc-fold-inner { padding-top: 18px; }

.method-cycle.fold-init .mc-fold-body,
.method-cycle.fold-init .mc-fold-inner { transition: none !important; }

@media (prefers-reduced-motion: reduce) {
  .method-cycle.is-enhanced .mc-fold-body,
  .method-cycle.is-enhanced .mc-fold-inner,
  .mc-fold-ic { transition: none; }
}

.has-decor { position: relative; isolation: isolate; overflow: clip; }

.decor {
  position: absolute;
  z-index: -1;
  width: calc(var(--w, 120px) * 2); 
  height: auto;
  opacity: var(--op, 1);
  transform: rotate(var(--rot, 0deg));
  pointer-events: none;
  user-select: none;
  -webkit-user-drag: none;
  filter: drop-shadow(0 10px 16px rgba(61, 85, 39, 0.1));
}

@media (prefers-reduced-motion: no-preference) {
  .decor { animation: decor-float 7s ease-in-out infinite; }
  .decor:nth-of-type(2n) { animation-duration: 8.4s; animation-delay: -1.3s; }
  .decor:nth-of-type(3n) { animation-duration: 6.2s; animation-delay: -2.7s; }
}
@keyframes decor-float {
  0%, 100% { transform: rotate(var(--rot, 0deg)) translateY(0); }
  50% { transform: rotate(var(--rot, 0deg)) translateY(-9px); }
}

@media (max-width: 760px) {
  .decor { width: calc(var(--w, 120px) * 1.24); opacity: calc(var(--op, 1) * 0.92); }
  .decor.decor--hide-sm { display: none; }
}

.method-cycle.is-enhanced .mc-fold-inner {
  padding-top: 0;
  transition: opacity .3s ease, padding-top .42s ease;
}
.method-cycle.is-enhanced .mc-fold-body.open .mc-fold-inner { padding-top: 18px; }
@media (prefers-reduced-motion: reduce) {
  .method-cycle.is-enhanced .mc-fold-inner { transition: none; }
}

.signal-source {
  display: block;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px dashed var(--line);
  font-style: normal;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--muted);
}
.signal-source b {
  margin-right: 6px;
  color: var(--earth);
  font-weight: 600;
}
.signal-row--cited div {
  justify-content: flex-start;
}
.signal-row--cited span {
  margin-top: 14px;
}

.story-layout .signpost-system {
  padding-right: 48px; 
}
.story-layout .signpost {
  padding-top: 13px;
  padding-bottom: 13px; 
}
.story-layout .signpost-desc {
  max-width: none; 
}
.story-layout .signpost > .signpost-tip {
  aspect-ratio: auto;
  width: 30px; 
}
@media (min-width: 961px) {
  .story-layout .signpost-system {
    width: 100%; 
    margin-left: 0;
    margin-right: 0;
    padding-right: 48px;
  }
}

.story-layout .section-actions {
  margin-top: 32px;
}

.sheet {
  position: relative;
  isolation: isolate;
  background: transparent;
}
.sheet > *:not(.large-watermark) {
  position: relative;
  z-index: 1;
}
.sheet::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}

.story-layout .sheet {
  padding: 84px 44px 132px;
}
.story-layout .story-flow > .sheet:first-child {
  padding-top: 72px;
}

.sheet--apricot .lead,
.sheet--apricot .about-copy > p {
  color: var(--ink);
}

.sheet--forest h2,
.sheet--forest h3 {
  color: var(--paper);
}
.sheet--forest .lead,
.sheet--forest p {
  color: rgba(251, 239, 217, 0.88);
}

.usage-diagram {
  display: flex;
  align-items: stretch;
  gap: 18px;
  margin: 28px 0 14px;
  flex-wrap: wrap;
}
.usage-source {
  flex: 0 0 auto;
  align-self: center;
  padding: 16px 22px;
  border: 1.5px solid var(--brand-green);
  border-radius: 14px;
  font-weight: 500;
  color: var(--deep);
  background: var(--honey);
}
.usage-uses {
  flex: 1 1 320px;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}
.usage-uses li {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.usage-uses strong { color: var(--deep); font-weight: 500; }
.usage-uses span { color: var(--muted); font-size: 0.95rem; line-height: 1.5; }
@media (max-width: 560px) {
  .usage-source { width: 100%; text-align: center; }
}

.sheet--apricot .lead, .sheet--leaf .lead, .sheet--wheat .lead,
.sheet--apricot .about-copy > p, .sheet--leaf .about-copy > p, .sheet--wheat .about-copy > p {
  color: var(--ink);
}
.sheet--apricot .mission-list article,
.sheet--leaf .mission-list article,
.sheet--wheat .mission-list article {
  border-color: rgba(61, 85, 39, 0.22);
}

.sheet--forest .about-copy > p {
  color: rgba(251, 239, 217, 0.88);
}
.sheet--forest .mission-list article {
  border-color: rgba(251, 239, 217, 0.22);
}
.sheet--forest .mission-list h3 {
  color: var(--paper);
}
.sheet--forest .mission-list span {
  color: var(--sun);
}
.sheet--forest .mission-list p,
.sheet--forest .node-label {
  color: rgba(251, 239, 217, 0.85);
}
.sheet--forest .signal-row {
  background: rgba(251, 239, 217, 0.24);
  border-color: rgba(251, 239, 217, 0.24);
}
.sheet--forest .signal-row div {
  background: rgba(61, 85, 39, 0.5);
}
.sheet--forest .signal-row strong {
  color: var(--sun);
}
.sheet--forest .signal-row span {
  color: rgba(251, 239, 217, 0.85);
}
.sheet--forest .content-figure figcaption {
  color: rgba(251, 239, 217, 0.8);
}

.home .path-header,
.home .section-grid {
  grid-template-columns: 1fr;
  gap: 22px;
}

.home .section-kicker .kicker-icon { display: none; }

@media (min-width: 961px) {
  .home #audiences .signpost-system {
    width: min(var(--max), 100%);
    margin-left: auto;
    margin-right: auto;
  }
}

.home #method .section-kicker p {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 2px;
  background: var(--sun);
  border: 1px solid rgba(61, 85, 39, 0.14);
  color: var(--deep);
  font-size: 1.05rem;
}
.home #method .section-kicker p::after { display: none; }

.sheet--amber .lead, .sheet--sun .lead, .sheet--butter .lead, .sheet--peach .lead, .sheet--honey .lead,
.sheet--amber .about-copy > p, .sheet--sun .about-copy > p, .sheet--butter .about-copy > p, .sheet--peach .about-copy > p, .sheet--honey .about-copy > p {
  color: var(--ink);
}
.sheet--amber .mission-list article, .sheet--sun .mission-list article, .sheet--butter .mission-list article, .sheet--peach .mission-list article, .sheet--honey .mission-list article {
  border-color: rgba(61, 85, 39, 0.22);
}

.sheet--forest h2, .sheet--brand-green h2, .sheet--sunset h2, .sheet--earth h2, .sheet--path h2, .sheet--leaf-700 h2,
.sheet--forest h3, .sheet--brand-green h3, .sheet--sunset h3, .sheet--earth h3, .sheet--path h3, .sheet--leaf-700 h3 {
  color: var(--paper);
}
.sheet--forest .lead, .sheet--brand-green .lead, .sheet--sunset .lead, .sheet--earth .lead, .sheet--path .lead, .sheet--leaf-700 .lead,
.sheet--forest p, .sheet--brand-green p, .sheet--sunset p, .sheet--earth p, .sheet--path p, .sheet--leaf-700 p,
.sheet--forest .about-copy > p, .sheet--brand-green .about-copy > p, .sheet--sunset .about-copy > p, .sheet--earth .about-copy > p, .sheet--path .about-copy > p, .sheet--leaf-700 .about-copy > p {
  color: rgba(251, 239, 217, 0.9);
}
.sheet--brand-green .mission-list article, .sheet--sunset .mission-list article, .sheet--earth .mission-list article, .sheet--path .mission-list article, .sheet--leaf-700 .mission-list article {
  border-color: rgba(251, 239, 217, 0.22);
}
.sheet--brand-green .mission-list h3, .sheet--sunset .mission-list h3, .sheet--earth .mission-list h3, .sheet--path .mission-list h3, .sheet--leaf-700 .mission-list h3 {
  color: var(--paper);
}
.sheet--brand-green .mission-list span, .sheet--sunset .mission-list span, .sheet--earth .mission-list span, .sheet--path .mission-list span, .sheet--leaf-700 .mission-list span {
  color: var(--sun);
}
.sheet--brand-green .mission-list p, .sheet--sunset .mission-list p, .sheet--earth .mission-list p, .sheet--path .mission-list p, .sheet--leaf-700 .mission-list p,
.sheet--brand-green .node-label, .sheet--sunset .node-label, .sheet--earth .node-label, .sheet--path .node-label, .sheet--leaf-700 .node-label {
  color: rgba(251, 239, 217, 0.85);
}
.sheet--brand-green .signal-row, .sheet--sunset .signal-row, .sheet--earth .signal-row, .sheet--path .signal-row, .sheet--leaf-700 .signal-row {
  background: rgba(251, 239, 217, 0.24);
  border-color: rgba(251, 239, 217, 0.24);
}
.sheet--brand-green .signal-row div, .sheet--sunset .signal-row div, .sheet--earth .signal-row div, .sheet--path .signal-row div, .sheet--leaf-700 .signal-row div {
  background: rgba(61, 85, 39, 0.5);
}
.sheet--brand-green .signal-row strong, .sheet--sunset .signal-row strong, .sheet--earth .signal-row strong, .sheet--path .signal-row strong, .sheet--leaf-700 .signal-row strong {
  color: var(--sun);
}
.sheet--brand-green .signal-row span, .sheet--sunset .signal-row span, .sheet--earth .signal-row span, .sheet--path .signal-row span, .sheet--leaf-700 .signal-row span {
  color: rgba(251, 239, 217, 0.85);
}
.sheet--brand-green .content-figure figcaption, .sheet--sunset .content-figure figcaption, .sheet--earth .content-figure figcaption, .sheet--path .content-figure figcaption, .sheet--leaf-700 .content-figure figcaption {
  color: rgba(251, 239, 217, 0.8);
}

:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid :is(h2, h3) { color: var(--paper); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid :is(.lead, p, .about-copy) { color: rgba(255, 255, 255, 0.92); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .section-kicker :is(p, span) { color: var(--paper); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid a { color: var(--paper); text-decoration-color: rgba(255, 255, 255, 0.6); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .signal-row { background: var(--line); border-color: var(--line); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .signal-row div { background: var(--white); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .signal-row strong { color: var(--leaf-700); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .signal-row span { color: var(--muted); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .mission-list article { border-color: var(--line); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .mission-list h3 { color: var(--ink); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .mission-list span { color: var(--link); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .mission-list :is(p, .node-label) { color: var(--muted); }
:is(.sheet--brand-green, .sheet--sunset, .sheet--path) > .section-grid .content-figure figcaption { color: var(--muted); }

.sheet::before { transform: scaleY(-1); }

.home #impact::before,
.home .problem-section::before,
.home #audiences::before,
.home #partners::before { transform: scaleY(-1); }

.sheet--forest .cta-band {
  background: transparent;
  margin-top: 0;
  padding: 4px 0 0;
  border-radius: 0;
}

.collab-accordion {
  margin-top: 32px;
}

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

.collab-tab {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  text-align: left;
  font: inherit;
  cursor: pointer;
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: var(--card-radius);
  padding: 18px 20px;
  transition: border-color 180ms ease, background 180ms ease;
}

.collab-tab:hover {
  border-color: var(--ink);
}

.collab-tab:focus-visible {
  outline: 3px solid var(--sun);
  outline-offset: 2px;
}

.collab-tab-text {
  flex: 1 1 auto;
  min-width: 0;
}

.collab-tab-title {
  display: block;
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.3;
  color: var(--ink);
}

.collab-tab-sub {
  display: block;
  margin-top: 5px;
  font-size: 0.92rem;
  color: var(--muted);
}

.collab-tab-icon {
  flex: none;
  position: relative;
  width: 22px;
  height: 22px;
  margin-top: 3px;
}

.collab-tab-icon::before,
.collab-tab-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 2px;
  border-radius: 1px;
  background: var(--leaf-700);
  transform: translate(-50%, -50%);
  transition: transform 220ms ease, opacity 220ms ease, background 180ms ease;
}

.collab-tab-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.collab-tab[aria-expanded="true"] {
  background: var(--ink);
  border-color: var(--ink);
}

.collab-tab[aria-expanded="true"] .collab-tab-title {
  color: var(--paper);
}

.collab-tab[aria-expanded="true"] .collab-tab-sub {
  color: rgba(251, 239, 217, 0.78);
}

.collab-tab[aria-expanded="true"] .collab-tab-icon::before,
.collab-tab[aria-expanded="true"] .collab-tab-icon::after {
  background: var(--honey);
}

.collab-tab[aria-expanded="true"] .collab-tab-icon::after {
  transform: translate(-50%, -50%) rotate(0);
  opacity: 0;
}

.collab-panel {
  margin-top: 22px;
  animation: collab-expand 360ms cubic-bezier(0.2, 0.7, 0.2, 1) both;
}

.collab-panel[hidden] {
  display: none;
}

.collab-panel-title {
  margin: 0 0 18px;
  font-size: 1.3rem;
  color: var(--ink);
}

@keyframes collab-expand {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
  .collab-panel { animation: none; }
  .collab-tab,
  .collab-tab-icon::before,
  .collab-tab-icon::after { transition: none; }
}

@media (max-width: 640px) {
  .collab-row { grid-template-columns: minmax(0, 1fr); }
}

.collab-panel .cta-band {
  background: var(--earth);
}

.collab-panel .cta-band p {
  color: var(--honey);
}

.story-layout .sheet { padding-top: 116px; }
.story-layout .story-flow > .sheet:first-child { padding-top: 116px; }

body:not(.home) .section-kicker {
  display: none;
}
body:not(.home) .section-grid,
body:not(.home) .path-header {
  grid-template-columns: 1fr;
  gap: 0;
}
@media (min-width: 961px) {
  body:not(.home) .path-header ~ .stage-grid,
  body:not(.home) .path-header ~ .method-more,
  body:not(.home) .path-header ~ .act-panel,
  body:not(.home) .path-header ~ .news-list,
  body:not(.home) .path-header ~ .contact-grid,
  body:not(.home) .path-header ~ .partner-tiers,
  body:not(.home) .path-header ~ .partner-logos,
  body:not(.home) .path-header ~ .content-figure,
  body:not(.home) .path-header ~ .media-band,
  body:not(.home) .path-header ~ .press-toolbar,
  body:not(.home) .path-header ~ .impact-numbers {
    padding-left: 0;
  }
}

@media (min-width: 961px) {
  .story-layout {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
  }
  .exit-nav {
    position: fixed;
    left: clamp(16px, 3vw, 56px);
    top: 50%;
    transform: translateY(-50%);
    width: 176px;
    max-height: 84vh;
    overflow-y: auto;
    z-index: 40;
  }
  .exit-rail { gap: 16px; }
  .exit-sign {
    background: var(--white);
    box-shadow: none;
  }
  .story-layout .section-grid,
  .story-layout .path-header,
  .story-layout .cta-band {
    max-width: var(--max);
    margin-inline: auto;
    padding-left: 248px;
    padding-right: var(--gutter);
    box-sizing: border-box;
  }
  .story-layout .sheet {
    padding-left: 0;
    padding-right: 0;
  }
}
@media (max-width: 960px) {
  .story-layout .sheet {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
  .story-layout .sheet > .section-grid,
  .story-layout .sheet > .cta-band,
  .story-layout .sheet > .path-header {
    padding-left: 22px;
    padding-right: 22px;
    box-sizing: border-box;
  }
}

@media (min-width: 961px) {
  main:has(.story-layout) > .page-header {
    padding-left: 248px;
  }
}

@media (min-width: 961px) {
  .story-layout {
    display: block;
    width: 100%;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
  }
  .story-layout .section-grid,
  .story-layout .path-header,
  .story-layout .cta-band {
    max-width: none;
    margin-inline: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .story-layout .sheet {
    padding-left: 0;
    padding-right: 0;
  }
  main:has(.story-layout) > .page-header {
    padding-left: 0;
  }
  .exit-nav {
    left: max(clamp(10px, 1.5vw, 24px), calc((100vw - var(--max)) / 2 + var(--gutter) - 200px));
  }
  .story-layout .sheet::before {
    left: 50%;
    right: auto;
    margin-left: -50vw;
    width: 100vw;
  }
}
@media (max-width: 960px) {
  .story-layout .sheet {
    width: auto;
    margin-left: 0;
  }
  .story-layout .sheet > .section-grid,
  .story-layout .sheet > .cta-band,
  .story-layout .sheet > .path-header {
    padding-left: 0;
    padding-right: 0;
  }
  .story-layout .sheet::before {
    left: 50%;
    right: auto;
    margin-left: -50vw;
    width: 100vw;
  }
}

@media (min-width: 961px) {
  .story-layout .section-grid,
  .story-layout .path-header,
  .story-layout .cta-band,
  .story-layout .journey-line,
  .story-layout .impact-layout,
  .story-layout .contact-grid,
  .story-layout .news-list,
  .story-layout .signpost-system,
  .story-layout .stage-grid,
  .story-layout .act-panel,
  .story-layout .partner-tiers,
  .story-layout .partner-logos,
  .story-layout .faq-list,
  .story-layout .info-cards,
  .story-layout .press-toolbar,
  main:has(.story-layout) > .page-header {
    padding-left: clamp(0px, calc(140px - (100vw - var(--max)) / 2), 160px);
    box-sizing: border-box;
  }
}

@media (min-width: 961px) {
  main:has(.story-layout) > .page-header {
    padding-left: calc(var(--gutter) + clamp(0px, calc(140px - (100vw - var(--max)) / 2), 160px));
  }
}

@media (min-width: 961px) {
  .story-flow > section > * {
    padding-left: clamp(0px, calc(140px - (100vw - var(--max)) / 2), 160px);
    box-sizing: border-box;
  }
}

.partner-years {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.partner-years .pyear {
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: #fff;
  border: 1px solid rgba(61, 85, 39, 0.12);
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(61, 85, 39, 0.05);
}

.partner-years .pyear-badge {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  padding: 18px 22px;
  background: var(--deep);
  color: #fff;
}
.partner-years .pyear-num {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
}
.partner-years .pyear-cap {
  font-size: 0.72rem;
  color: rgba(251, 239, 217, 0.85); 
  letter-spacing: 0.04em;
}

.partner-years .pyear-win {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
}

.partner-years .pyear-track {
  list-style: none;
  margin: 0;
  width: 100%;
  padding: 30px clamp(28px, 4vw, 52px);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  justify-content: center;
  gap: 30px 40px;
}

.partner-years .pyear-track li,
.home .partner-years .pyear-track li {
  border: 0;
  background: none;
  padding: 0;
  margin: 0;
  min-height: 0;
  min-width: 0;
  flex: 0 1 calc(33.333% - 40px);   
  display: flex;
  align-items: center;
  justify-content: center;
  transition: none;
}
.home .partner-years .pyear-track li:hover {
  background: none;
  border-color: transparent;
  translate: 0;
}
.partner-years .pyear-track li img {
  display: block;
  height: 60px;
  width: auto;
  max-width: 300px;
  object-fit: contain;
  border-radius: 6px;   
}

.partner-years .pyear-track li.logo-wide img { height: 46px; }  
.partner-years .pyear-track li.logo-mid  img { height: 62px; }  
.partner-years .pyear-track li.logo-mark img { height: 78px; }  

@media (max-width: 720px) {
  .partner-years .pyear-badge { padding: 14px 16px; }
  .partner-years .pyear-num { font-size: 1.3rem; }
  .partner-years .pyear-cap { font-size: 0.66rem; }
  .partner-years .pyear-track { padding: 22px clamp(18px, 5vw, 28px); gap: 22px 24px; }
  .home .partner-years .pyear-track li,
  .partner-years .pyear-track li { flex: 0 1 100%; }   
  .partner-years .pyear-track li img { max-width: 78%; }
  .partner-years .pyear-track li.logo-wide img { height: 40px; }
  .partner-years .pyear-track li.logo-mid  img { height: 54px; }
  .partner-years .pyear-track li.logo-mark img { height: 66px; }
}

.sheet::before { background-image: none; background-size: 100% 100%; background-position: top; background-repeat: no-repeat; }

@media (min-width: 961px) {
  .story-layout {
    display: grid;
    grid-template-columns: 176px minmax(0, 1fr);
    column-gap: 64px;
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--gutter);
    align-items: start;
  }
  .exit-nav {
    position: sticky;
    top: 110px;
    left: auto;
    transform: none;
    width: auto;
    max-height: calc(100vh - 140px);
    overflow-y: auto;

    overflow-x: hidden;

    padding-left: 8px;
    padding-right: 8px;
    margin-left: -8px;
    margin-right: -8px;
    scrollbar-width: none;      
    z-index: 5;
  }
  .exit-nav::-webkit-scrollbar { display: none; }  
  .story-layout .section-grid,
  .story-layout .path-header,
  .story-layout .cta-band,
  .story-layout .journey-line,
  .story-layout .impact-layout,
  .story-layout .contact-grid,
  .story-layout .news-list,
  .story-layout .signpost-system,
  .story-layout .stage-grid,
  .story-layout .act-panel,
  .story-layout .partner-tiers,
  .story-layout .partner-logos,
  .story-layout .faq-list,
  .story-layout .info-cards,
  .story-layout .press-toolbar {
    padding-left: 0;
  }
  .story-flow > section > * {
    padding-left: 0;
  }
  main:has(.story-layout) > .page-header {
    padding-left: calc(var(--gutter) + 240px);
  }
  .story-layout .sheet {
    width: auto;
    margin-left: 0;
    padding-left: 0;
    padding-right: 0;
  }
  .story-layout .sheet::before {
    left: calc(-1 * (max(0px, (100vw - var(--max)) / 2) + var(--gutter) + 240px));
    right: auto;
    margin-left: 0;
    width: 100vw;
  }
}

.sheet::before { transform: none; background-size: 100% 100%; background-position: center; background-repeat: no-repeat, no-repeat; }
.sheet--apricot::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,45 C-20,44 38,44 80,43 C122,42 170,38 215,38 C260,37 304,36 350,39 C396,42 444,49 490,54 C536,59 579,67 625,69 C671,72 718,72 765,69 C812,66 858,57 905,52 C952,46 998,39 1045,38 C1092,36 1152,41 1185,42 C1218,44 1231,46 1240,47 L1240,538 C1231,538 1218,533 1185,537 C1152,541 1092,555 1045,562 C998,568 952,577 905,575 C858,573 812,554 765,548 C718,542 671,535 625,537 C579,540 536,559 490,565 C444,571 396,577 350,574 C304,571 260,552 215,546 C170,540 122,535 80,537 C38,540 -20,558 -40,562 Z'/></svg>"); }
.sheet--leaf::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,45 C-20,44 38,39 80,38 C122,37 170,39 215,40 C260,41 304,44 350,44 C396,45 444,44 490,45 C536,45 579,45 625,47 C671,49 718,55 765,58 C812,62 858,69 905,71 C952,73 998,72 1045,68 C1092,64 1152,52 1185,47 C1218,42 1231,40 1240,38 L1240,578 C1231,578 1218,580 1185,578 C1152,575 1092,568 1045,563 C998,558 952,550 905,548 C858,546 812,547 765,549 C718,551 671,557 625,558 C579,559 536,558 490,556 C444,555 396,548 350,546 C304,543 260,541 215,542 C170,542 122,547 80,549 C38,552 -20,557 -40,558 Z'/></svg>"); }
.sheet--wheat::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,70 C-20,71 38,77 80,74 C122,71 170,59 215,51 C260,44 304,31 350,28 C396,26 444,29 490,34 C536,38 579,51 625,56 C671,61 718,65 765,64 C812,64 858,56 905,53 C952,50 998,45 1045,45 C1092,45 1152,50 1185,51 C1218,53 1231,54 1240,54 L1240,543 C1231,544 1218,545 1185,547 C1152,550 1092,554 1045,556 C998,558 952,559 905,561 C858,563 812,566 765,567 C718,568 671,568 625,565 C579,563 536,555 490,551 C444,547 396,543 350,544 C304,544 260,552 215,555 C170,558 122,563 80,562 C38,562 -20,555 -40,553 Z'/></svg>"); }
.sheet--amber::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f8cd5f' d='M-40,50 C-20,47 38,38 80,34 C122,31 170,27 215,29 C260,31 304,40 350,45 C396,49 444,57 490,58 C536,59 579,55 625,53 C671,51 718,46 765,46 C812,46 858,51 905,53 C952,55 998,59 1045,59 C1092,59 1152,54 1185,52 C1218,51 1231,50 1240,50 L1240,574 C1231,575 1218,577 1185,577 C1152,576 1092,575 1045,572 C998,569 952,563 905,559 C858,555 812,550 765,548 C718,546 671,547 625,548 C579,548 536,552 490,553 C444,555 396,557 350,557 C304,558 260,556 215,555 C170,554 122,551 80,550 C38,549 -20,548 -40,548 Z'/></svg>"); }
.sheet--sun::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fce08c' d='M-40,67 C-20,66 38,65 80,61 C122,58 170,49 215,44 C260,40 304,34 350,32 C396,31 444,34 490,37 C536,39 579,45 625,48 C671,50 718,51 765,51 C812,51 858,48 905,49 C952,49 998,50 1045,53 C1092,56 1152,62 1185,65 C1218,68 1231,68 1240,68 L1240,533 C1231,533 1218,531 1185,535 C1152,540 1092,555 1045,561 C998,566 952,571 905,568 C858,566 812,550 765,547 C718,543 671,541 625,545 C579,549 536,565 490,570 C444,575 396,577 350,575 C304,572 260,558 215,553 C170,549 122,547 80,548 C38,549 -20,558 -40,560 Z'/></svg>"); }
.sheet--butter::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fff0c3' d='M-40,52 C-20,52 38,53 80,54 C122,54 170,55 215,54 C260,52 304,49 350,46 C396,43 444,37 490,35 C536,32 579,30 625,31 C671,32 718,37 765,42 C812,47 858,57 905,62 C952,68 998,74 1045,75 C1092,77 1152,72 1185,70 C1218,68 1231,64 1240,63 L1240,553 C1231,553 1218,554 1185,557 C1152,560 1092,566 1045,568 C998,570 952,571 905,569 C858,567 812,561 765,556 C718,551 671,543 625,539 C579,536 536,533 490,535 C444,536 396,542 350,548 C304,554 260,563 215,568 C170,573 122,577 80,578 C38,579 -20,573 -40,572 Z'/></svg>"); }
.sheet--peach::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbb05b' d='M-40,51 C-20,48 38,37 80,34 C122,31 170,31 215,33 C260,35 304,43 350,48 C396,52 444,57 490,58 C536,59 579,57 625,55 C671,54 718,50 765,50 C812,49 858,50 905,51 C952,52 998,54 1045,53 C1092,53 1152,51 1185,50 C1218,49 1231,48 1240,48 L1240,548 C1231,549 1218,548 1185,551 C1152,554 1092,562 1045,566 C998,571 952,577 905,578 C858,578 812,572 765,568 C718,564 671,556 625,553 C579,551 536,552 490,552 C444,553 396,556 350,555 C304,555 260,551 215,550 C170,549 122,547 80,548 C38,549 -20,556 -40,557 Z'/></svg>"); }
.sheet--honey::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbefd9' d='M-40,54 C-20,52 38,43 80,42 C122,41 170,44 215,46 C260,49 304,56 350,57 C396,58 444,54 490,51 C536,48 579,39 625,38 C671,37 718,40 765,45 C812,50 858,64 905,67 C952,70 998,70 1045,65 C1092,60 1152,42 1185,36 C1218,30 1231,29 1240,27 L1240,561 C1231,561 1218,561 1185,559 C1152,557 1092,553 1045,552 C998,551 952,551 905,552 C858,554 812,557 765,559 C718,560 671,560 625,560 C579,559 536,556 490,555 C444,554 396,553 350,553 C304,553 260,555 215,556 C170,557 122,558 80,558 C38,559 -20,557 -40,557 Z'/></svg>"); }
.sheet--forest::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,64 C-20,64 38,66 80,63 C122,60 170,50 215,46 C260,41 304,36 350,36 C396,37 444,45 490,49 C536,52 579,58 625,59 C671,59 718,53 765,51 C812,48 858,44 905,44 C952,44 998,50 1045,52 C1092,54 1152,57 1185,57 C1218,57 1231,55 1240,54 L1240,548 C1231,547 1218,545 1185,546 C1152,547 1092,550 1045,554 C998,559 952,569 905,571 C858,573 812,571 765,567 C718,563 671,551 625,547 C579,543 536,541 490,543 C444,545 396,554 350,558 C304,561 260,563 215,563 C170,562 122,556 80,555 C38,553 -20,555 -40,555 Z'/></svg>"); }
.sheet--brand-green::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234f9f1d' d='M-40,53 C-20,54 38,57 80,56 C122,55 170,48 215,47 C260,46 304,49 350,51 C396,53 444,61 490,61 C536,60 579,52 625,48 C671,43 718,31 765,31 C812,31 858,41 905,48 C952,55 998,71 1045,73 C1092,75 1152,63 1185,58 C1218,54 1231,48 1240,45 L1240,547 C1231,547 1218,546 1185,548 C1152,550 1092,554 1045,558 C998,562 952,570 905,573 C858,576 812,577 765,575 C718,573 671,566 625,561 C579,555 536,547 490,542 C444,538 396,536 350,536 C304,536 260,541 215,544 C170,547 122,553 80,556 C38,559 -20,561 -40,562 Z'/></svg>"); }
.sheet--earth::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23987459' d='M-40,40 C-20,41 38,47 80,51 C122,55 170,62 215,64 C260,66 304,66 350,63 C396,60 444,51 490,46 C536,42 579,37 625,37 C671,36 718,41 765,45 C812,49 858,58 905,60 C952,63 998,64 1045,63 C1092,61 1152,54 1185,52 C1218,49 1231,48 1240,47 L1240,559 C1231,559 1218,559 1185,558 C1152,556 1092,551 1045,550 C998,550 952,553 905,556 C858,559 812,567 765,568 C718,570 671,568 625,566 C579,564 536,556 490,554 C444,552 396,552 350,554 C304,556 260,563 215,565 C170,567 122,567 80,565 C38,563 -20,555 -40,553 Z'/></svg>"); }
.sheet--leaf-700::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234e8718' d='M-40,48 C-20,47 38,45 80,45 C122,45 170,46 215,47 C260,48 304,50 350,51 C396,52 444,52 490,52 C536,52 579,51 625,50 C671,49 718,48 765,48 C812,48 858,48 905,48 C952,49 998,51 1045,52 C1092,52 1152,53 1185,54 C1218,54 1231,53 1240,53 L1240,544 C1231,545 1218,544 1185,547 C1152,550 1092,559 1045,562 C998,565 952,566 905,564 C858,563 812,554 765,552 C718,550 671,550 625,551 C579,553 536,558 490,559 C444,560 396,558 350,556 C304,555 260,550 215,550 C170,550 122,555 80,557 C38,560 -20,564 -40,565 Z'/></svg>"); }
.sheet--sunset::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23e87328' d='M-40,44 C-20,42 38,30 80,30 C122,31 170,40 215,46 C260,52 304,65 350,67 C396,69 444,63 490,58 C536,53 579,41 625,38 C671,35 718,36 765,40 C812,43 858,54 905,58 C952,61 998,62 1045,60 C1092,58 1152,50 1185,47 C1218,44 1231,44 1240,43 L1240,546 C1231,547 1218,546 1185,549 C1152,552 1092,561 1045,563 C998,565 952,565 905,562 C858,558 812,545 765,541 C718,536 671,532 625,534 C579,536 536,546 490,551 C444,556 396,564 350,566 C304,567 260,562 215,561 C170,559 122,554 80,554 C38,554 -20,560 -40,561 Z'/></svg>"); }
.sheet--path::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f28c0a' d='M-40,68 C-20,69 38,75 80,70 C122,65 170,48 215,41 C260,33 304,24 350,25 C396,27 444,42 490,49 C536,56 579,67 625,68 C671,70 718,60 765,56 C812,51 858,43 905,42 C952,41 998,49 1045,50 C1092,52 1152,51 1185,51 C1218,50 1231,47 1240,46 L1240,560 C1231,560 1218,561 1185,559 C1152,557 1092,550 1045,549 C998,547 952,546 905,549 C858,552 812,563 765,567 C718,571 671,575 625,573 C579,571 536,562 490,557 C444,553 396,546 350,545 C304,544 260,549 215,552 C170,554 122,558 80,558 C38,558 -20,552 -40,551 Z'/></svg>"); }

.home #impact::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,59 C-20,58 38,56 80,52 C122,49 170,41 215,38 C260,35 304,33 350,34 C396,35 444,41 490,44 C536,47 579,52 625,55 C671,57 718,57 765,58 C812,59 858,58 905,59 C952,60 998,62 1045,63 C1092,63 1152,62 1185,61 C1218,60 1231,57 1240,56 L1240,552 C1231,551 1218,549 1185,550 C1152,550 1092,553 1045,556 C998,559 952,565 905,566 C858,567 812,565 765,562 C718,559 671,552 625,551 C579,549 536,550 490,552 C444,553 396,559 350,560 C304,561 260,559 215,556 C170,554 122,547 80,545 C38,543 -20,545 -40,545 Z'/></svg>"); background-size: 100% 100%; background-position: center; background-repeat: no-repeat, no-repeat; }
.home .problem-section::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,60 C-20,60 38,59 80,56 C122,54 170,47 215,44 C260,40 304,36 350,36 C396,36 444,39 490,42 C536,46 579,52 625,55 C671,58 718,60 765,60 C812,59 858,55 905,52 C952,50 998,45 1045,44 C1092,44 1152,47 1185,48 C1218,50 1231,52 1240,53 L1240,561 C1231,561 1218,562 1185,563 C1152,564 1092,566 1045,565 C998,565 952,563 905,560 C858,557 812,552 765,550 C718,547 671,544 625,545 C579,545 536,549 490,551 C444,554 396,559 350,561 C304,563 260,563 215,562 C170,561 122,557 80,556 C38,555 -20,556 -40,556 Z'/></svg>"); background-size: 100% 100%; background-position: center; background-repeat: no-repeat, no-repeat; }
.home #audiences::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,68 C-20,66 38,61 80,57 C122,53 170,47 215,44 C260,41 304,40 350,40 C396,40 444,43 490,44 C536,45 579,46 625,47 C671,48 718,47 765,47 C812,48 858,48 905,49 C952,51 998,53 1045,55 C1092,57 1152,59 1185,60 C1218,61 1231,60 1240,60 L1240,545 C1231,545 1218,546 1185,548 C1152,549 1092,552 1045,553 C998,553 952,551 905,552 C858,552 812,553 765,555 C718,557 671,563 625,565 C579,568 536,570 490,569 C444,568 396,564 350,562 C304,560 260,557 215,557 C170,557 122,561 80,562 C38,563 -20,562 -40,563 Z'/></svg>"); background-size: 100% 100%; background-position: center; background-repeat: no-repeat, no-repeat; }
.home #partners::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,62 C-20,62 38,66 80,64 C122,62 170,55 215,50 C260,46 304,38 350,37 C396,35 444,38 490,41 C536,44 579,52 625,56 C671,60 718,64 765,63 C812,63 858,57 905,53 C952,49 998,41 1045,39 C1092,37 1152,39 1185,39 C1218,40 1231,43 1240,44 L1240,558 C1231,558 1218,560 1185,559 C1152,559 1092,558 1045,555 C998,553 952,545 905,543 C858,540 812,539 765,542 C718,545 671,555 625,559 C579,564 536,570 490,571 C444,571 396,564 350,561 C304,557 260,551 215,550 C170,550 122,556 80,559 C38,562 -20,568 -40,570 Z'/></svg>"); background-size: 100% 100%; background-position: center; background-repeat: no-repeat, no-repeat; }

.aud-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), 100%);
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.aud-card {
  display: flex;
  flex-direction: column;
  background: var(--white); 
  border: 1px solid rgba(61, 85, 39, 0.2); 
  border-radius: var(--card-radius); 
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 1px 0 rgba(61, 85, 39, 0.06);
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.aud-card:hover,
.aud-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(61, 85, 39, 0.16);
  outline: none;
}
.aud-card:focus-visible { box-shadow: 0 0 0 3px var(--deep), 0 14px 30px rgba(61, 85, 39, 0.16); }
.aud-head {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 94px;
  padding: 13px 16px;
  background: var(--pill, var(--sun));
}
.aud-tag {
  flex: 1;                 
  text-wrap: balance;      
  min-width: 0;            
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: var(--deep);
}
.aud-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 9px;
  padding: 18px 18px 20px;
}
.aud-title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.32rem;
  line-height: 1.35;
  color: var(--deep);
}
.aud-desc {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--muted);
}
.aud-cta {
  margin-top: auto;
  padding-top: 6px;
  font-family: var(--font-serif);
  font-size: 0.98rem;
  color: var(--leaf-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.aud-cta .cta-arrow { transition: transform 200ms ease; }
.aud-card:hover .aud-cta .cta-arrow,
.aud-card:focus-visible .aud-cta .cta-arrow { transform: translateX(4px); }

.aud-card:nth-of-type(1) { --pill: var(--wheat);  --accent: var(--leaf-700); }
.aud-card:nth-of-type(2) { --pill: var(--amber);  --accent: var(--wheat); }
.aud-card:nth-of-type(3) { --pill: var(--peach);  --accent: var(--path); }
.aud-card:nth-of-type(4) { --pill: var(--path);   --accent: var(--sunset); }
@media (max-width: 900px) {
  .aud-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 44px; }
}
@media (max-width: 520px) {
  .aud-grid { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  .aud-card, .aud-cta .cta-arrow { transition: none; }
  .aud-card:hover, .aud-card:focus-visible { transform: none; }
}

.float-dock {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
}
.float-dock__actions {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  border-radius: 14px 0 0 14px;
  overflow: hidden;
  box-shadow: -2px 6px 22px rgba(61, 85, 39, 0.18);
}
.float-dock__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  width: 66px;
  padding: 13px 6px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border-top: 1px solid var(--line);
  transition: background 180ms ease, color 180ms ease;
}
.float-dock__actions li:first-child .float-dock__item { border-top: 0; }
.float-dock__item svg { width: 23px; height: 23px; }
.float-dock__item:hover,
.float-dock__item:focus-visible { background: var(--honey); }
.float-dock__item.is-primary { background: var(--sunset); color: var(--white); }
.float-dock__item.is-primary:hover,
.float-dock__item.is-primary:focus-visible { background: #cf5f1c; }
.float-dock__item:focus-visible { outline: 2px solid var(--wheat); outline-offset: -2px; }

.float-dock__tab { display: none; }
.float-dock__tab-close { display: none; }

body.menu-open .float-dock { display: none; }

@media print { .float-dock { display: none; } }

@media (max-width: 960px) {
  .float-dock { top: 50%; }

  .float-dock__tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 14px 8px;
    border: 0;
    border-radius: 12px 0 0 12px;
    background: var(--sunset);
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    box-shadow: -2px 4px 16px rgba(207, 95, 28, 0.28);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .float-dock__tab svg { width: 22px; height: 22px; }
  .float-dock__tab-text { writing-mode: vertical-rl; }

  .float-dock__tab .float-dock__tab-close { display: none; }

  .float-dock__actions {
    position: absolute;
    right: 100%;
    margin-right: 10px;
    top: 50%;
    transform: translate(24px, -50%);
    border-radius: 18px;
    opacity: 0;
    visibility: hidden;
    transition: transform 240ms ease, opacity 240ms ease, visibility 240ms;
  }
  .float-dock__item {
    flex-direction: row;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    min-width: 132px;
    padding: 13px 18px;
    font-size: 0.92rem;
    text-align: left;
  }

  .float-dock.is-open .float-dock__actions {
    transform: translate(0, -50%);
    opacity: 1;
    visibility: visible;
  }
  .float-dock.is-open .float-dock__tab { padding: 10px 8px; }
  .float-dock.is-open .float-dock__tab .float-dock__tab-icon,
  .float-dock.is-open .float-dock__tab .float-dock__tab-text { display: none; }
  .float-dock.is-open .float-dock__tab .float-dock__tab-close { display: block; }
}

@media (max-width: 960px) and (prefers-reduced-motion: reduce) {
  .float-dock__tab,
  .float-dock__actions { transition: none; }
}

#entries {
  position: relative;

}
#entries::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image:
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 110' preserveAspectRatio='none'><g><path fill='%23ffffff' d='M-40,84 C150,71 330,72 500,84 C670,97 820,97 980,84 C1110,72 1180,73 1240,80 L1240,140 L-40,140 Z'/></g></svg>"),
    url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,64 C230,98 430,48 650,82 910,118 1050,58 1240,78 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>");
  background-size: 100% 96px, 100% 100%;
  background-position: bottom, top;
  background-repeat: no-repeat, no-repeat;
}
#entries > .path-header { position: relative; z-index: 1; }

.login-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 16px;
  margin: 28px 0 8px;
}
.login-cta .button-primary:disabled,
.login-cta .button-primary[disabled] {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}
.login-cta .button-primary:disabled:hover,
.login-cta .button-primary[disabled]:hover {
  background: rgba(251, 239, 217, 0.68);
  transform: none;
}
.login-cta-note {
  font-size: 0.92rem;
  color: var(--muted);
}

.sheet::before { transform: none; background-size: 100% 110px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.sheet--apricot::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--wheat::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--amber::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f8cd5f' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f8cd5f' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sun::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fce08c' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fce08c' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--butter::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fff0c3' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fff0c3' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--peach::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbb05b' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbb05b' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--honey::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbefd9' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbefd9' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--forest::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--brand-green::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234f9f1d' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234f9f1d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--earth::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23987459' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23987459' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf-700::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234e8718' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234e8718' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sunset::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23e87328' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23e87328' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--path::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f28c0a' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f28c0a' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }

.home #impact::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 110px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home .problem-section::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 110px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #audiences::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 110px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #partners::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,46 C300,32 600,60 900,42 1080,34 1240,48 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 110px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }

.sheet::before { transform: none; background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.sheet--apricot::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--wheat::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--amber::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f8cd5f' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f8cd5f' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sun::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fce08c' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fce08c' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--butter::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fff0c3' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fff0c3' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--peach::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbb05b' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbb05b' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--honey::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbefd9' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbefd9' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--forest::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--brand-green::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234f9f1d' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234f9f1d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--earth::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23987459' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23987459' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf-700::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234e8718' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234e8718' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sunset::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23e87328' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23e87328' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--path::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f28c0a' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f28c0a' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.home #impact::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home .problem-section::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #audiences::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #partners::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,34 C200,16 430,50 660,33 C900,15 1080,52 1240,30 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }

.sheet::before { transform: none; background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.sheet--apricot::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,42 C65,42 65,48 170,48 C280,48 280,42 390,42 C500,42 500,47 610,47 C720,47 720,22 830,22 C940,22 940,37 1050,37 C1145,37 1145,32 1240,32 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,21 C65,21 65,40 170,40 C280,40 280,39 390,39 C500,39 500,48 610,48 C720,48 720,27 830,27 C940,27 940,26 1050,26 C1145,26 1145,41 1240,41 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--wheat::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,31 C65,31 65,35 170,35 C280,35 280,46 390,46 C500,46 500,24 610,24 C720,24 720,25 830,25 C940,25 940,19 1050,19 C1145,19 1145,22 1240,22 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--amber::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f8cd5f' d='M-40,29 C65,29 65,45 170,45 C280,45 280,29 390,29 C500,29 500,20 610,20 C720,20 720,33 830,33 C940,33 940,41 1050,41 C1145,41 1145,40 1240,40 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f8cd5f' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sun::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fce08c' d='M-40,44 C65,44 65,37 170,37 C280,37 280,41 390,41 C500,41 500,18 610,18 C720,18 720,39 830,39 C940,39 940,42 1050,42 C1145,42 1145,33 1240,33 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fce08c' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--butter::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fff0c3' d='M-40,48 C65,48 65,26 170,26 C280,26 280,34 390,34 C500,34 500,22 610,22 C720,22 720,19 830,19 C940,19 940,23 1050,23 C1145,23 1145,38 1240,38 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fff0c3' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--peach::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbb05b' d='M-40,33 C65,33 65,24 170,24 C280,24 280,49 390,49 C500,49 500,47 610,47 C720,47 720,42 830,42 C940,42 940,45 1050,45 C1145,45 1145,19 1240,19 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbb05b' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--honey::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fbefd9' d='M-40,22 C65,22 65,38 170,38 C280,38 280,43 390,43 C500,43 500,20 610,20 C720,20 720,36 830,36 C940,36 940,47 1050,47 C1145,47 1145,29 1240,29 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fbefd9' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--forest::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,42 C65,42 65,24 170,24 C280,24 280,25 390,25 C500,25 500,37 610,37 C720,37 720,20 830,20 C940,20 940,43 1050,43 C1145,43 1145,42 1240,42 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--brand-green::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234f9f1d' d='M-40,21 C65,21 65,28 170,28 C280,28 280,48 390,48 C500,48 500,33 610,33 C720,33 720,37 830,37 C940,37 940,22 1050,22 C1145,22 1145,31 1240,31 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234f9f1d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--earth::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23987459' d='M-40,43 C65,43 65,45 170,45 C280,45 280,25 390,25 C500,25 500,47 610,47 C720,47 720,26 830,26 C940,26 940,40 1050,40 C1145,40 1145,31 1240,31 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23987459' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--leaf-700::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%234e8718' d='M-40,28 C65,28 65,21 170,21 C280,21 280,48 390,48 C500,48 500,29 610,29 C720,29 720,25 830,25 C940,25 940,47 1050,47 C1145,47 1145,20 1240,20 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%234e8718' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--sunset::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23e87328' d='M-40,32 C65,32 65,25 170,25 C280,25 280,47 390,47 C500,47 500,29 610,29 C720,29 720,27 830,27 C940,27 940,43 1050,43 C1145,43 1145,27 1240,27 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23e87328' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.sheet--path::before { background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f28c0a' d='M-40,18 C65,18 65,28 170,28 C280,28 280,42 390,42 C500,42 500,45 610,45 C720,45 720,47 830,47 C940,47 940,49 1050,49 C1145,49 1145,24 1240,24 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f28c0a' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); }
.home #impact::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%233d5527' d='M-40,42 C65,42 65,24 170,24 C280,24 280,25 390,25 C500,25 500,37 610,37 C720,37 720,20 830,20 C940,20 940,43 1050,43 C1145,43 1145,42 1240,42 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%233d5527' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home .problem-section::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23fdd2a6' d='M-40,42 C65,42 65,48 170,48 C280,48 280,42 390,42 C500,42 500,47 610,47 C720,47 720,22 830,22 C940,22 940,37 1050,37 C1145,37 1145,32 1240,32 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23fdd2a6' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #audiences::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,21 C65,21 65,40 170,40 C280,40 280,39 390,39 C500,39 500,48 610,48 C720,48 720,27 830,27 C940,27 940,26 1050,26 C1145,26 1145,41 1240,41 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
.home #partners::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%23f5b62d' d='M-40,31 C65,31 65,35 170,35 C280,35 280,46 390,46 C500,46 500,24 610,24 C720,24 720,25 830,25 C940,25 940,19 1050,19 C1145,19 1145,22 1240,22 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%23f5b62d' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
#entries::before { transform: none; background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 130' preserveAspectRatio='none'><g><path fill='%238ec457' d='M-40,21 C65,21 65,40 170,40 C280,40 280,39 390,39 C500,39 500,48 610,48 C720,48 720,27 830,27 C940,27 940,26 1050,26 C1145,26 1145,41 1240,41 L1240,130 L-40,130 Z'/></g></svg>"), url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 600' preserveAspectRatio='none'><path fill='%238ec457' d='M-40,0 L1240,0 L1240,556 C975,592 700,544 430,576 C215,600 70,548 -40,572 Z'/></svg>"); background-size: 100% 105px, 100% 100%; background-position: top, top; background-repeat: no-repeat, no-repeat; }
@media (min-width: 961px) { .story-layout #entries::before { left: calc(-1 * (max(0px, (100vw - var(--max)) / 2) + var(--gutter) + 240px)); right: auto; margin-left: 0; width: 100vw; } }
@media (max-width: 960px) { .story-layout #entries::before { left: 50%; right: auto; margin-left: -50vw; width: 100vw; } }

.home #audiences::before { display: none !important; }

.mission-list--badge.badge--sun article { background: var(--sun); }
.mission-list--badge.badge--peach article { background: var(--peach); }

.mission-list--badge.badge--amber article { background: var(--butter); }
.mission-list--badge.badge--wheat article { background: var(--butter); }
.mission-list--badge.badge--sun h3, .mission-list--badge.badge--peach h3,
.mission-list--badge.badge--amber h3, .mission-list--badge.badge--wheat h3 { color: var(--deep); }
.mission-list--badge.badge--sun .node-label, .mission-list--badge.badge--peach .node-label,
.mission-list--badge.badge--amber .node-label, .mission-list--badge.badge--wheat .node-label { color: var(--deep); }
.mission-list--badge.badge--sun p, .mission-list--badge.badge--peach p,
.mission-list--badge.badge--amber p, .mission-list--badge.badge--wheat p { color: rgba(61, 85, 39, 0.9); }

.mission-list--badge.badge--sun h3 small, .mission-list--badge.badge--peach h3 small,
.mission-list--badge.badge--amber h3 small, .mission-list--badge.badge--wheat h3 small { color: var(--deep); }
.mission-list--badge.badge--sun > article > span, .mission-list--badge.badge--peach > article > span { background: var(--deep); color: #ffffff; }

.mission-list--badge.badge--amber > article > span { background: var(--deep); color: #ffffff; }
.mission-list--badge.badge--wheat > article > span { background: var(--deep); color: #ffffff; }

.mission-list--badge.badge--forest-sun article, .mission-list--badge.badge--forest-peach article { background: var(--butter); }
.mission-list--badge.badge--forest-sun h3, .mission-list--badge.badge--forest-peach h3 { color: var(--deep); }
.mission-list--badge.badge--forest-sun p, .mission-list--badge.badge--forest-peach p { color: rgba(61, 85, 39, 0.9); }
.mission-list--badge.badge--forest-sun .node-label { color: rgba(61, 85, 39, 0.75); }
.mission-list--badge.badge--forest-peach .node-label { color: rgba(61, 85, 39, 0.75); }
.mission-list--badge.badge--forest-sun > article > span { background: var(--deep); color: #ffffff; }
.mission-list--badge.badge--forest-peach > article > span { background: var(--deep); color: #ffffff; }

.mission-list--badge.badge--esg-trio article:nth-child(1) { background: rgba(142, 196, 87, 0.24); }
.mission-list--badge.badge--esg-trio article:nth-child(1) h3 { color: var(--deep); }
.mission-list--badge.badge--esg-trio article:nth-child(1) .node-label { color: rgba(61, 85, 39, 0.75); }
.mission-list--badge.badge--esg-trio article:nth-child(1) p { color: rgba(61, 85, 39, 0.9); }
.mission-list--badge.badge--esg-trio > article:nth-child(1) > span { background: var(--deep); color: #ffffff; }

.mission-list--badge.badge--esg-trio article:nth-child(2) { background: var(--butter); }
.mission-list--badge.badge--esg-trio article:nth-child(2) h3,
.mission-list--badge.badge--esg-trio article:nth-child(2) .node-label { color: var(--deep); }
.mission-list--badge.badge--esg-trio article:nth-child(2) p { color: rgba(61, 85, 39, 0.9); }
.mission-list--badge.badge--esg-trio > article:nth-child(2) > span { background: var(--deep); color: #ffffff; } 

.mission-list--badge.badge--esg-trio article:nth-child(3) { background: var(--apricot); }
.mission-list--badge.badge--esg-trio article:nth-child(3) h3,
.mission-list--badge.badge--esg-trio article:nth-child(3) .node-label { color: var(--deep); }
.mission-list--badge.badge--esg-trio article:nth-child(3) p { color: rgba(61, 85, 39, 0.9); }
.mission-list--badge.badge--esg-trio > article:nth-child(3) > span { background: var(--deep); color: #ffffff; }

.apply-tabs {
  width: min(var(--max), 100%);
  margin: 40px auto 0;
}
.apply-tabnav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}
.apply-tab {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--muted);
  cursor: pointer;
  font-family: var(--font-serif);
  font-weight: 700;
  font-size: 1.02rem;
  line-height: 1.2;
  padding: 12px 22px;
  border-radius: 999px;
  transition: color 160ms ease, background 160ms ease, border-color 160ms ease;
}
.apply-tab small {
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.8em;
  opacity: 0.9;
}
.apply-tab:hover {
  border-color: var(--leaf-700);
  color: var(--leaf-700);
}
.apply-tab.is-active {
  background: var(--brand-green);
  border-color: var(--brand-green);
  color: var(--white);
}
.apply-tab:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: 2px;
}
.apply-panel {
  display: none;
  padding-top: 20px;
}
.apply-panel.is-active {
  display: block;
}

.apply-panel .faq-list {
  margin-top: 0;
}

.apply-soon {
  margin: 8px auto 0;
  max-width: 640px;
  text-align: center;
  background: var(--honey);
  border: 1px dashed var(--leaf-700);
  border-radius: var(--card-radius);
  padding: 40px 32px;
}
.apply-soon-tag {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--path);
}
.apply-soon h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep);
}
.apply-soon p {
  margin: 0 auto 20px;
  max-width: 34em;
  color: var(--muted);
}

.apply-soon-cta {
  margin: 4px auto 0 !important;
  max-width: none !important;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--deep) !important;
}
.apply-soon-cta a {
  color: var(--leaf-700);
  border-bottom: 2px solid currentColor;
  padding-bottom: 1px;
  white-space: nowrap;
}
.apply-soon-cta a:hover,
.apply-soon-cta a:focus-visible {
  color: var(--brand-green);
}

@media (max-width: 560px) {
  .apply-soon-cta {
    font-size: 1.08rem;
  }

  .apply-tab {
    flex: 1 1 auto;
    text-align: center;
    padding: 11px 14px;
    font-size: 0.96rem;
  }
  .apply-soon {
    padding: 32px 22px;
  }
}

.download-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}
.download-list > li {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
}
.download-list .dl-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--honey);
  color: var(--leaf-700);
}
.download-list .dl-icon svg { width: 22px; height: 22px; }
.download-list .dl-body { flex: 1 1 auto; min-width: 0; }
.download-list .dl-title {
  margin: 0;
  font-family: var(--font-rounded);
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--ink);
}
.download-list .dl-meta {
  margin: 3px 0 0;
  font-size: 0.86rem;
  color: var(--muted);
}
.download-list .dl-pending {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 18px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.9rem;
  white-space: nowrap;
}
.download-note {
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.download-note a {
  color: var(--leaf-700);
  font-weight: 600;
}
@media (max-width: 600px) {
  .download-list > li {
    flex-wrap: wrap;
    padding: 16px 18px;
  }
  .download-list .dl-pending {
    width: 100%;
    justify-content: center;
  }
}

.prepost-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px;
  margin-top: 28px;
}
.prepost-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 24px 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.prepost-name {
  margin: 0;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 1.15rem;
  line-height: 1.4;
  color: var(--ink);
}
.prepost-pair {
  display: flex;
  align-items: center;
  gap: 10px;
}
.prepost-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1 1 0;
  min-width: 0;
}
.prepost-stat small {
  font-size: 0.92rem;
  color: var(--muted);
}
.prepost-stat strong {
  font-family: var(--font-rounded);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--muted);
}
.prepost-stat--after strong {
  color: var(--leaf-700); 
}
.prepost-sep {
  flex: 0 0 auto;
  color: var(--leaf-700);
  font-size: 1.3rem;
  line-height: 1;
}
.prepost-delta {
  margin: 0;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 13px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--leaf-700);
  font-weight: 700;
  font-size: 1rem;
}
.prepost-up { font-size: 1.05rem; line-height: 1; }

.data-note {
  margin: 18px 0 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.quote-grid {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.quote-grid .story-quote {
  padding: 30px 32px;
}
.quote-grid .story-quote blockquote {
  font-size: 1.25rem;
}
@media (max-width: 760px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.ig-feature {
  margin-top: 40px;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--deep);
  color: var(--paper);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 38px 56px;
}
.ig-feature > svg {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  color: var(--paper);
  box-sizing: content-box;
  padding: 14px;
  background: rgba(255, 255, 255, 0.14);
  border-radius: 16px;
}
.ig-feature-text {
  flex: 1;
}
.ig-feature-text h3 {
  margin: 0 0 6px;
  color: var(--paper);
  font-size: 1.3rem;
}
.ig-feature-text p {
  margin: 0;
  color: rgba(251, 239, 217, 0.9);
}
.ig-feature-link {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--paper);
  color: var(--deep);
  font-family: var(--font-rounded);
  font-weight: 800;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.18s ease, transform 0.18s ease;
}
.ig-feature-link:hover {
  background: var(--sun);
  transform: translateY(-2px);
}

.biz-grid {
  margin-top: 24px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.biz-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: var(--shadow);
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.biz-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 34px rgba(61, 85, 39, 0.16);
}
.biz-logo {
  height: 52px;
  display: flex;
  align-items: center;
}
.biz-logo img {
  max-height: 100%;
  max-width: 168px;
  width: auto;
  object-fit: contain;
}
.biz-name {
  margin: 0;
  font-family: var(--font-rounded);
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--deep);
}
.biz-note {
  margin: 0;
  flex: 1;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}
.biz-ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  align-self: flex-start;
  font-weight: 700;
  font-size: 0.92rem;
}
.biz-ig--todo {
  color: var(--muted);
  font-weight: 600;
}
.biz-foot {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}
@media (max-width: 920px) {
  .biz-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .biz-grid {
    grid-template-columns: 1fr;
  }
  .ig-feature {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    padding: 32px 26px; 
  }
}

.ig-carousel {
  margin-top: 24px;
}
.ig-carousel__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none; 
  padding: 2px 2px 6px;
}
.ig-carousel__track::-webkit-scrollbar {
  display: none; 
}
.ig-carousel__track > .instagram-media {
  scroll-snap-align: start;
  flex: 0 0 auto;
  width: 336px !important; 
  min-width: 336px !important;
  max-width: 336px !important;
  margin: 0 !important;
}
.ig-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 18px;
}
.ig-carousel__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.ig-carousel__nav svg {
  width: 20px;
  height: 20px;
}
.ig-carousel__nav:hover,
.ig-carousel__nav:focus-visible {
  background: var(--honey);
  border-color: var(--path);
}
.ig-carousel__nav:active {
  transform: scale(0.94);
}
.ig-carousel__nav:disabled {
  opacity: 0.35;
  cursor: default;
  background: var(--white);
  border-color: var(--line);
}
@media (max-width: 560px) {
  .ig-carousel__nav {
    width: 42px;
    height: 42px;
  }
}

.impact-stat .media-band {
  margin-top: 0;
  align-items: center;
}
.stat-figure-num {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3rem, 8vw, 4.4rem);
  line-height: 1;
  color: var(--leaf-700);
  white-space: nowrap;
}
.impact-stat .media-text h2 {
  font-size: 1.7rem;
  margin: 12px 0 14px;
}

.stat-figure-num.is-pending {
  color: var(--muted);
  font-family: inherit;
  font-size: clamp(1.8rem, 4.5vw, 2.4rem);
}

.proc-timeline {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
}
.proc-step {
  position: relative;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 26px;
  padding-bottom: 44px;
}
.proc-step:last-child {
  padding-bottom: 0;
}

.proc-step::before {
  content: "";
  position: absolute;
  left: 26px; 
  top: 60px; 
  bottom: -10px;
  width: 2px;
  background: rgba(79, 159, 29, 0.35); 
}
.proc-step:last-child::before {
  display: none;
}
.proc-num {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-green);
  color: var(--white);
  font-family: var(--font-rounded);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
  position: relative;
  z-index: 1;
}
.proc-detail {
  min-width: 0;
  padding-top: 6px;
}
.proc-detail h3 {
  margin: 0 0 12px;
  font-family: var(--font-serif);
  font-size: 1.6rem;
  line-height: 1.35;
}
.proc-detail p {
  margin: 0;
  max-width: 760px;
  color: var(--muted);
}
@media (max-width: 560px) {
  .proc-step {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 18px;
    padding-bottom: 34px;
  }
  .proc-num {
    width: 44px;
    height: 44px;
    font-size: 1.3rem;
  }
  .proc-step::before {
    left: 21px;
    top: 50px;
  }
  .proc-detail h3 {
    font-size: 1.4rem;
  }
}

.sheet .faq-answer {
  color: var(--muted);
}

.cp-form-actions {
  margin-top: 28px;
}

.journey-line.is-numbered .node-dot {
  width: 38px;
  height: 38px;
  left: 0;
  top: 0;
  background: var(--path);
  border: none;
  color: var(--deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1;
}
.journey-line.is-vertical.is-numbered .journey-node {
  padding-left: 62px;
}
.journey-line.is-vertical.is-numbered .journey-node h3 {
  margin-top: 4px;
}
.journey-line.is-vertical.is-numbered .journey-node::before {
  left: 18px;
  top: 42px;
  bottom: -4px;
}
.journey-line.is-numbered .journey-node:not(.is-active):hover .node-dot {
  background: var(--apricot);
}
@media (max-width: 560px) {
  .journey-line.is-numbered .node-dot { width: 32px; height: 32px; font-size: 1.05rem; }
  .journey-line.is-vertical.is-numbered .journey-node { padding-left: 52px; }
  .journey-line.is-vertical.is-numbered .journey-node::before { left: 15px; top: 36px; }
}

.logo-carousel {
  width: min(var(--max), 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.logo-carousel__viewport {
  flex: 1 1 auto;
  overflow: hidden;
}
.logo-carousel__track {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px 24px;
}
.partner-logos.is-carousel .logo-carousel__track > li {
  box-sizing: border-box;
  flex: 0 1 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 14px 10px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--card-radius);
}
.partner-logos.is-carousel .logo-carousel__track > li img {
  display: block;
  width: auto;
  height: auto;
  max-height: calc(var(--logo-h, 76px) * var(--logo-scale, 1));
  max-width: 100%;
  object-fit: contain;
}

.partner-logos.is-carousel .logo-carousel__track > li.logo-xwide img { --logo-h: 36px; } 
.partner-logos.is-carousel .logo-carousel__track > li.logo-wide  img { --logo-h: 40px; } 
.partner-logos.is-carousel .logo-carousel__track > li.logo-mid   img { --logo-h: 46px; } 
.partner-logos.is-carousel .logo-carousel__track > li.logo-mark  img { --logo-h: 58px; } 
.partner-logos.is-carousel .logo-carousel__track > li.partner-more {
  border-style: dashed;
  color: var(--muted);
  font-weight: 600;
  text-align: center;
}
.logo-carousel__nav {
  flex: 0 0 auto;
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.12s ease;
}
.logo-carousel__nav svg { width: 20px; height: 20px; }
.logo-carousel__nav:hover,
.logo-carousel__nav:focus-visible {
  background: var(--honey);
  border-color: var(--path);
}
.logo-carousel__nav:active { transform: scale(0.94); }
.partner-logos.is-carousel.is-enhanced .logo-carousel__nav { display: inline-flex; }
.partner-logos.is-carousel.is-enhanced .logo-carousel__track {
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: 24px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.partner-logos.is-carousel.is-enhanced .logo-carousel__track > li {
  flex: 0 0 calc((100% - (var(--per, 3) - 1) * 24px) / var(--per, 3));
}
.logo-carousel.is-static .logo-carousel__nav { visibility: hidden; }
@media (max-width: 560px) {
  .partner-logos.is-carousel .logo-carousel__track > li { min-height: 84px; padding: 12px 12px; }

  .partner-logos.is-carousel .logo-carousel__track { --logo-scale: 0.84; }
  .logo-carousel__nav { width: 40px; height: 40px; }
}

.ability-board {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.3fr);
  gap: 30px;
  align-items: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  padding: 30px 32px;
}
.ability-board__num {
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--leaf-700);
}
.ability-board__head h3 {
  margin: 8px 0 12px;
  font-family: var(--font-rounded);
  font-size: 1.5rem;
  line-height: 1.3;
  color: var(--ink);
}
.ability-board__head p { margin: 0; color: var(--muted); }
.ability-board__detail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ability-board__detail > div {
  border-left: 2px solid var(--sun);
  padding-left: 14px;
}
.ability-board__label {
  margin: 0 0 6px;
  font-family: var(--font-rounded);
  font-weight: 700;
  font-size: 0.98rem;
  color: var(--leaf-700);
}
.ability-board__detail p:last-child { margin: 0; color: var(--muted); }
@media (max-width: 760px) {
  .ability-board { grid-template-columns: 1fr; gap: 22px; padding: 24px 22px; }
  .ability-board__detail { grid-template-columns: 1fr; gap: 14px; }
}

.cases-carousel { margin-top: 28px; }

.cases-carousel .logo-carousel__viewport {
  padding: 60px 0;
  margin: -60px 0;
}
.cases-carousel .logo-carousel__track > li {
  box-sizing: border-box;
  display: flex;
  flex: 0 1 300px;            
}
.cases-carousel .logo-carousel__track > li > .news-card {
  flex: 1 1 auto;
  width: 100%;
  margin: 0;
}
.cases-carousel.is-enhanced .logo-carousel__nav { display: inline-flex; }
.cases-carousel.is-enhanced .logo-carousel__track {
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
  gap: 18px;
  transition: transform 0.42s cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}
.cases-carousel.is-enhanced .logo-carousel__track > li {
  flex: 0 0 calc((100% - (var(--per, 3) - 1) * 18px) / var(--per, 3));
}

.page-header-kicker {
  position: relative;
  z-index: 1;
  margin: 14px 0 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--leaf-700);
}
.page-header-kicker + h1 {
  margin-top: 4px;
}

.module-cards {
  margin: 26px 0 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.module-card {
  border-radius: var(--card-radius);
  padding: 28px 24px 26px;
}
.module-card .mod-no {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--deep); 
}
.module-card .mod-en {
  margin: 8px 0 2px;
  font-family: var(--font-en);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--earth);
}
.module-card h3 {
  margin: 0 0 8px;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: var(--deep);
}
.module-card p {
  margin: 0;
  color: var(--deep);
}
.module-card:nth-child(1) { background: rgba(142, 196, 87, 0.24); }
.module-card:nth-child(2) { background: var(--butter); }
.module-card:nth-child(3) { background: var(--apricot); }

.week-tabs .apply-tab {
  text-align: center;
  line-height: 1.3;
}
.week-tabs .apply-tab small {
  display: block;
  margin-top: 2px;
  font-size: 0.8em;
}
.week-tabs .apply-tab.is-active small {
  opacity: 1;
}

.week-panel.is-active {
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  background: var(--white);
  padding: 28px 30px;
  box-shadow: 0 10px 30px rgba(61, 85, 39, 0.06);
}
.week-panel h3 {
  margin: 0 0 10px;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep);
}
.week-panel h3 small {
  display: block;
  margin-bottom: 8px;
  font-family: var(--font-en);
  font-size: 1.02rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--path);
}
.week-panel p {
  margin: 0;
  max-width: 48em;
  color: var(--muted);
}
@media (max-width: 560px) {
  .week-panel.is-active {
    padding: 22px 20px;
  }
  .week-panel h3 small {
    font-size: 0.92rem;
  }
}

@media (max-width: 760px) {
  .module-cards { grid-template-columns: 1fr; }
}

.apply-tabs--sun .apply-soon { background: var(--sun); }

.hero-landscape { display: none; }
.hero-blobs {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.hero-blob {
  position: absolute;
  width: var(--bw);
  aspect-ratio: 1;
  background: var(--bg) center / contain no-repeat;
  opacity: var(--op, .88);
  transform: rotate(var(--rot, 0deg));
  filter: drop-shadow(0 8px 16px rgba(47, 82, 51, .1));
}

.hb-1 { --bg: url(assets/blobs/08_deep_green.png);  --bw: clamp(320px,34vw,480px); --op: .92; --rot: -6deg; inset: 14% auto auto -17%; }
.hb-2 { --bg: url(assets/blobs/12_wheat_gold.png);  --bw: clamp(210px,23vw,320px); --op: .85; --rot: 6deg;  inset: 15% 2% auto auto; }
.hb-3 { --bg: url(assets/blobs/11_amber.png);       --bw: 120px; --op: .78; --rot: -8deg; inset: auto 12% 24% auto; }
.hb-4 { --bg: url(assets/blobs/09_butter.png);      --bw: 92px;  --op: .65; --rot: 10deg; inset: 18% auto auto 7%; }
.hb-5, .hb-6, .hb-7, .hb-8, .hb-9 { display: none; }
@media (prefers-reduced-motion: no-preference) {
  .hero-blob { animation: decor-float 30s ease-in-out infinite; }
  .hb-2 { animation-duration: 34s; animation-delay: -8s; }
  .hb-3 { animation-duration: 26s; animation-delay: -12s; }
  .hb-4 { animation-duration: 28s; animation-delay: -5s; }
}
@media (max-width: 760px) {
  .hb-4 { display: none; }
  .hb-1 { --bw: clamp(180px,50vw,260px); inset: 12% auto auto -32%; }
  .hb-2 { --bw: 128px; inset: 11% 3% auto auto; }
  .hb-3 { --bw: 92px;  inset: auto 6% 12% auto; }
}

@media (max-width: 960px) {
  .signal-row:not(.signal-row--ids) {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 560px) {
  .signal-row:not(.signal-row--ids) { gap: 8px; }   
  .signal-row:not(.signal-row--ids) div {
    padding: 14px 9px;
    min-height: 0;
    gap: 6px;
    min-width: 0;   
  }
  .signal-row:not(.signal-row--ids):not(.signal-row--terms) strong {
    font-size: clamp(1.25rem, 6.2vw, 1.95rem);
    white-space: nowrap;   
  }
  .signal-row:not(.signal-row--ids) span {
    font-size: 0.74rem;
    line-height: 1.3;
    margin-top: 6px;
  }
}

.post-block {
  width: min(var(--max), 100%);
  margin: 44px auto 0;
}
.post-block__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--deep);
}
.post-block__title {
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--deep);
}
.post-block__note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.post-list {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
}
.post-list > li { margin: 0; }

.post-row {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 15px 14px;
  border-bottom: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: background 0.16s ease;
}
a.post-row:hover { background: rgba(79, 159, 29, 0.06); }
a.post-row:focus-visible {
  outline: 2px solid var(--leaf-700);
  outline-offset: -2px;
  border-radius: 6px;
}

.post-block { --postrow-tag-col: 84px; }
.post-block--press { --postrow-tag-col: 166px; }

.post-row__meta {
  flex: none;
  display: grid;
  grid-template-columns: 76px var(--postrow-tag-col);
  align-items: center;
  gap: 10px;
}

.post-block--record .post-row__meta { grid-template-columns: 76px; }

.post-row__meta .post-row__tag { justify-self: stretch; text-align: center; }
.post-row__tag {
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  color: var(--deep);
  background: var(--apricot);
  padding: 5px 10px;
  border-radius: 999px;
}
.post-row__tag.tag--sample { background: var(--deep); color: var(--white); }
.post-row__tag.tag--course { background: var(--butter); color: var(--deep); }
.post-row__tag.tag--partner { background: var(--amber); color: var(--deep); }
.post-row__tag.tag--event { background: var(--apricot); color: var(--deep); }
.post-row__tag.tag--press {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  font-weight: 600;
}
.post-row__date {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--label);
  white-space: nowrap;
}
.post-row__title {
  flex: 1;
  min-width: 0;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--deep);
}
.post-row__arrow {
  flex: none;
  width: 19px;
  height: 19px;
  color: var(--label);
  display: inline-flex;
  transition: transform 0.16s ease, color 0.16s ease;
}
.post-row__arrow svg { width: 100%; height: 100%; }
a.post-row:hover .post-row__title { color: var(--leaf-700); }
a.post-row:hover .post-row__arrow { color: var(--leaf-700); transform: translateX(2px); }

.post-row--record { cursor: default; align-items: flex-start; }
.post-row--record .post-row__meta { align-items: start; padding-top: 4px; }
.post-row__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.post-row__excerpt {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
}

.post-row--soon { cursor: default; }
.post-row--soon .post-row__title { color: var(--label); }
.post-row__soon {
  flex: none;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--label);
}

@media (max-width: 640px) {
  .post-row {
    flex-wrap: wrap;
    gap: 8px 12px;
    padding: 14px 2px;
  }

  .post-row__meta { order: 1; }
  .post-row__arrow,
  .post-row__soon { order: 2; margin-left: auto; }
  .post-row__title { order: 3; flex-basis: 100%; font-size: 1rem; }

  .post-row__body { order: 3; flex-basis: 100%; }
  .post-row__body .post-row__title { order: 0; }
  .post-row--record .post-row__meta { padding-top: 0; }
}

@media (max-width: 340px) {
  .post-row__meta { display: inline-flex; }
}

.article {
  width: min(760px, 100%);
  margin: 0 auto;
}
.article__notice {
  background: rgba(252, 224, 140, 0.35);
  border-left: 3px solid var(--sun);
  border-radius: 8px;
  padding: 12px 16px;
  margin: 0 0 26px;
  color: var(--deep);
  font-size: 0.92rem;
  line-height: 1.6;
}
.article__meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.article__date {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--label);
}
.article__title {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 4vw, 2rem);
  line-height: 1.35;
  color: var(--deep);
  margin: 6px 0 22px;
}
.article__media { margin: 0 0 26px; }
.article__media img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--card-radius);
  display: block;
}
.article__media figcaption {
  margin-top: 8px;
  font-size: 0.85rem;
  color: var(--muted);
}
.article__body { font-size: 1.02rem; line-height: 1.8; }
.article__body p { margin: 0 0 16px; }
.article__body h3 {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--deep);
  margin: 26px 0 10px;
}
.article__body ul { margin: 0 0 16px; padding-left: 20px; }
.article__body li { margin-bottom: 6px; }
.article__body a { color: var(--link); font-weight: 700; }
.article__disclaimer { color: var(--muted); font-size: 0.9rem; font-style: italic; }
.article__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 26px;
  color: var(--link);
  font-weight: 700;
  text-decoration: none;
}
.article__back svg { width: 16px; height: 16px; }
.article__back:hover { text-decoration: underline; }

@media (max-width: 900px) {
  .article.section-pad { padding-right: clamp(38px, 12vw, 110px); }
}

.redirect-note {
  min-height: 68vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}
.redirect-card { text-align: center; max-width: 460px; }
.redirect-title {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep);
  margin: 0 0 10px;
}
.redirect-sub { color: var(--muted); margin: 0 0 20px; line-height: 1.6; }

.channel-grid {
  width: min(var(--max), 100%);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.channel-card {
  position: relative;
  display: flex;
  flex-direction: column;

  align-items: center;
  text-align: center;
  gap: 6px;
  padding: 62px 22px 22px;

  container-type: inline-size;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
  box-shadow: 0 3px 10px rgba(61, 85, 39, 0.05);
}

.channel-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 46px;
  background: var(--accent, var(--leaf-700));
  border-radius: calc(var(--card-radius) - 1px) calc(var(--card-radius) - 1px) 0 0;
}

.channel-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: clamp(38px, 33cqi, 52px);
  margin-bottom: 4px;
}
.channel-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.channel-logo img[alt="netiCRM"] { border-radius: 8px; }
.channel-desc {
  line-height: 1.55;
  color: var(--muted);

  white-space: nowrap;
  font-size: clamp(0.72rem, 9.5cqi, 0.95rem);

  margin-bottom: 10px;
}
.channel-status {

  margin-top: auto;
  align-self: center;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border: 1px dashed var(--line);
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 0.86rem;
  white-space: nowrap;
}
.channel-card:nth-of-type(1) { --accent: var(--leaf-700); }
.channel-card:nth-of-type(2) { --accent: var(--amber); }
.channel-card:nth-of-type(3) { --accent: var(--path); }
.channel-card:nth-of-type(4) { --accent: var(--sunset); }

.rf-scene--panel[aria-labelledby="faq-title"] > .rf-panel,
body.audience-spine-page .rf-scene--panel[aria-labelledby="faq-title"] > .rf-panel {
  padding-block: clamp(30px, 3.4vw, 44px);
}
.rf-scene--panel[aria-labelledby="faq-title"] .faq-list { margin-top: 32px; }

.channel-note {
  width: min(var(--max), 100%);
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}
.channel-note a { color: var(--leaf-700); font-weight: 600; }
@media (max-width: 900px) {
  .channel-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 40px; }
}
@media (max-width: 520px) {
  .channel-grid { grid-template-columns: 1fr; }
}

.mka-stage,
.mkb-stage {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body.hero-mock-a .mka-stage { display: block; }
body.hero-mock-b .mkb-stage { display: block; }
body.hero-mock-a .hero-blobs,
body.hero-mock-a .hero-landscape,
body.hero-mock-a .hero-index,
body.hero-mock-b .hero-blobs,
body.hero-mock-b .hero-landscape,
body.hero-mock-b .hero-index { display: none; }
body.hero-mock-a .hero-content,
body.hero-mock-b .hero-content {
  justify-self: start;
  text-align: left;
  width: min(680px, 100%);
  padding-top: 0;
  margin-left: clamp(0px, 3vw, 72px);
}
body.hero-mock-a .hero .eyebrow,
body.hero-mock-b .hero .eyebrow {
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}
body.hero-mock-a .hero h1,
body.hero-mock-b .hero h1 {
  font-weight: 700;
  font-size: clamp(2.5rem, 4.9vw, 4.3rem);
  line-height: 1.34;
  letter-spacing: 0.015em;
  margin-top: 28px;
}
body.hero-mock-a .hero-subtitle,
body.hero-mock-b .hero-subtitle {
  margin-left: 0;
  width: min(560px, 100%);
  font-size: 1.05rem;
  line-height: 2.15;
}
body.hero-mock-a .hero-cta,
body.hero-mock-b .hero-cta {
  justify-content: flex-start;
  margin-top: 44px;
}

.mka-lines {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(54vw, 780px);
}
.mka-elbow {
  position: absolute;
  left: 24%;
  bottom: 0;
  width: 240px;
  height: 138px;
}
.mka-sq { position: absolute; display: block; }
.mka-sq--bl { left: 0; bottom: 64px; width: 86px; height: 86px; background: var(--deep); }
.mka-sq--bls { left: 106px; bottom: 170px; width: 38px; height: 38px; background: var(--butter); }
.mka-sq--tr { right: 0; top: 96px; width: 118px; height: 118px; background: var(--butter); }
.mka-sq--br { right: 0; bottom: -26px; width: 132px; height: 132px; background: var(--butter); }

.mka-hatch { position: absolute; display: block; }
.mka-hatch--bl {
  left: 0;
  bottom: 18px;
  width: 132px;
  height: 40px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='40'><path d='M1.5,0 V40' stroke='%233d5527' stroke-width='1.6'/></svg>") repeat-x;
}
.mka-hatch--tr {
  right: 134px;
  top: 122px;
  width: 98px;
  height: 66px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='66'><path d='M1.5,0 V66' stroke='%23f28c0a' stroke-width='1.6'/></svg>") repeat-x;
}
.mka-hatch--br {
  right: 150px;
  bottom: 40px;
  width: 110px;
  height: 54px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='54'><path d='M1.5,0 V54' stroke='%23f28c0a' stroke-width='1.6'/></svg>") repeat-x;
}

body.hero-mock-a .hero .eyebrow {
  display: inline-block;
  padding-bottom: 10px;
  border-bottom: 2.5px solid var(--path);
}

body.hero-mock-a .hero-cta .button-primary {
  position: relative;
  background: var(--deep);
  border: none;
  border-radius: 0;
  color: var(--white);
  min-height: 52px;
  padding: 14px 42px;
  margin-right: 52px;
  letter-spacing: 0.02em;
}
body.hero-mock-a .hero-cta .button-primary::after {
  content: "\2192";
  position: absolute;
  right: -52px;
  top: 0;
  width: 52px;
  height: 100%;
  display: grid;
  place-items: center;
  background: var(--path);
  color: var(--white);
  font-size: 1.15rem;
}
body.hero-mock-a .hero-cta .button-primary:hover,
body.hero-mock-a .hero-cta .button-primary:focus-visible {
  background: var(--leaf-700);
  color: var(--white);
}

.mkb-blk { position: absolute; display: block; }

.mkb-blk--tr {
  right: 0;
  top: 88px;
  width: min(30vw, 330px);
  height: 400px;
  background: var(--path);
  border-radius: 140px 0 0 140px;
}

.mkb-blk--apricot { right: 70px; top: 468px; width: 250px; height: 150px; background: var(--apricot); border-radius: 64px; }
.mkb-blk--butter { right: 34px; top: 556px; width: 300px; height: 214px; background: var(--butter); border-radius: 76px; }

.mkb-blk--bl { left: -50px; bottom: -70px; width: 330px; height: 230px; background: var(--deep); border-radius: 46% 58% 42% 54% / 52% 46% 58% 44%; }
.mkb-blk--bm { left: 300px; bottom: -92px; width: 280px; height: 160px; background: var(--deep); border-radius: 54% 46% 50% 50% / 58% 54% 46% 42%; }
.mkb-blk--br { right: -50px; bottom: -54px; width: 340px; height: 170px; background: var(--butter); border-radius: 80px; }

.mkb-frame {
  position: absolute;
  top: 96px;
  right: clamp(120px, 12vw, 180px);
  bottom: 92px;
  left: clamp(24px, 3.5vw, 56px);
  border: 1.5px solid var(--sun);
  border-radius: 60px;
}
.mkb-frame::before {
  content: "";
  position: absolute;
  left: -5.5px;
  top: 112px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--sun);
}

.mkb-vline {
  position: absolute;
  right: clamp(370px, 31vw, 440px);
  top: 100px;
  width: 2px;
  height: 250px;
  background: var(--deep);
  opacity: 0.85;
}
.mkb-vline::after {
  content: "";
  position: absolute;
  left: -3.5px;
  bottom: -5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--deep);
}

.mkb-dots {
  position: absolute;
  left: 36%;
  bottom: 42px;
  width: 152px;
  height: 96px;
  background-image: radial-gradient(circle, var(--sun) 2.4px, transparent 2.6px);
  background-size: 19px 19px;
}

body.hero-mock-b .hero .eyebrow {
  display: inline-block;
  border-left: 3px solid var(--path);
  padding-left: 12px;
}

body.hero-mock-b .hero-cta .button-primary {
  border: none;
  border-radius: 999px;
  min-height: 52px;
  padding: 14px 36px;
  gap: 10px;
}
body.hero-mock-b .hero-cta .button-primary::after { content: "\2192"; }

@media (max-width: 1260px) {
  .mka-lines { display: none; }
}
@media (max-width: 900px) {
  .mka-elbow { display: none; }
  .mka-sq--bl { width: 56px; height: 56px; bottom: 48px; }
  .mka-sq--bls { left: 70px; bottom: 118px; width: 26px; height: 26px; }
  .mka-sq--tr { width: 78px; height: 78px; }
  .mka-hatch--tr { right: 92px; top: 112px; width: 70px; height: 48px; }
  .mka-sq--br { width: 88px; height: 88px; bottom: -18px; }
  .mka-hatch--br { right: 102px; bottom: 28px; width: 78px; height: 40px; }
  .mka-hatch--bl { width: 92px; bottom: 14px; height: 30px; }
  .mkb-blk--tr { width: 170px; height: 240px; border-radius: 90px 0 0 90px; }
  .mkb-blk--apricot { display: none; }
  .mkb-blk--butter { right: 12px; top: auto; bottom: 150px; width: 180px; height: 130px; border-radius: 56px; }
  .mkb-blk--bl { width: 230px; height: 150px; left: -40px; bottom: -50px; }
  .mkb-blk--bm { display: none; }
  .mkb-blk--br { right: -40px; bottom: -40px; width: 220px; height: 120px; border-radius: 56px; }
  .mkb-frame { top: 92px; right: 14px; bottom: 70px; left: 14px; border-radius: 40px; }
  .mkb-vline,
  .mkb-dots { display: none; }
}
@media (max-width: 700px) {

  body.hero-mock-a .hero-content,
  body.hero-mock-b .hero-content,
  body.hero-jp .hero-content { padding-right: 46px; }
}
@media (max-width: 620px) {
  body.hero-mock-a .hero h1,
  body.hero-mock-b .hero h1 { font-size: clamp(1.9rem, 8vw, 2.5rem); }
  body.hero-mock-a .hero-subtitle,
  body.hero-mock-b .hero-subtitle { font-size: 0.98rem; line-height: 2; }
  .mka-sq--tr { width: 56px; height: 56px; }
  .mka-hatch--tr { right: 68px; width: 50px; height: 38px; }
  .mkb-blk--tr { width: 120px; height: 180px; }
  .mkb-blk--butter { bottom: 120px; width: 130px; height: 96px; }
  .mkb-frame { border-radius: 32px; }
}

.mkc-stage {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
body.hero-jp .mkc-stage { display: block; }
body.hero-jp .hero-blobs,
body.hero-jp .hero-landscape { display: none; }

body.hero-jp .hero-content {
  justify-self: start;
  text-align: left;
  width: min(680px, 100%);
  padding-top: 0;
  margin-left: clamp(0px, 3vw, 72px);
}
body.hero-jp .hero .eyebrow {
  border-bottom: 0;
  padding-bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.3em;
  color: var(--deep);
}
body.hero-jp .hero .eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  background: var(--path);
}
body.hero-jp .hero h1 {
  font-weight: 700;
  font-size: clamp(2.3rem, 4.3vw, 3.8rem);
  line-height: 1.46;
  letter-spacing: 0.06em;
  margin-top: 30px;
}
body.hero-jp .hero-subtitle {
  margin-left: 0;
  width: min(544px, 100%);
  text-wrap: pretty;
  font-size: 0.98rem;
  line-height: 2.3;
  letter-spacing: 0.05em;
}
body.hero-jp .hero-cta {
  justify-content: flex-start;
  margin-top: 46px;
}
body.hero-jp .hero-cta .button-primary {
  background: var(--deep);
  border: none;
  border-radius: 2px;
  color: var(--white);
  min-height: 46px;
  padding: 12px 44px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}
body.hero-jp .hero-cta .button-primary::after {
  content: "\2192";
  margin-left: 16px;
  letter-spacing: 0;
  text-indent: 0;
}
body.hero-jp .hero-cta .button-primary:hover,
body.hero-jp .hero-cta .button-primary:focus-visible {
  background: var(--leaf-700);
  color: var(--white);
}

body.hero-jp .hero-index {
  display: flex;
  gap: 30px;
  bottom: 46px;
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(61, 85, 39, 0.55);
}

.jpc-block { position: absolute; display: block; }
.jpc-block--cream { top: 128px; right: 176px; width: 244px; height: 244px; background: var(--butter); }
.jpc-block--green { top: 492px; right: 240px; width: 146px; height: 146px; background: var(--deep); }
.jpc-stripes { position: absolute; display: block; }
.jpc-stripes--orange {
  top: 170px; right: 444px; width: 88px; height: 150px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='20'><path d='M1.5,0 V20' stroke='%23f28c0a' stroke-width='1.7'/></svg>") repeat;
}
.jpc-stripes--green {
  top: 650px; right: 240px; width: 146px; height: 40px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='20'><path d='M1.5,0 V20' stroke='%233d5527' stroke-width='1.7'/></svg>") repeat;
}
.jpc-spark { position: absolute; display: block; }
.jpc-spark--lg { top: 380px; right: 456px; width: 140px; height: 140px; }
.jpc-spark--sm { top: 642px; right: 452px; width: 48px; height: 48px; }

.jpc-lines {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: min(54vw, 780px);
}

.jpc-vtext {
  position: absolute;
  top: 118px;
  right: 100px;
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(61, 85, 39, 0.5);
}

.jpc-hatch {
  position: absolute;
  left: var(--gutter);
  bottom: 92px;
  width: 46px;
  height: 24px;
  background: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='6' height='24'><path d='M1,0 V24' stroke='%233d5527' stroke-width='1.2' opacity='.55'/></svg>") repeat-x;
}
.jpc-sq {
  position: absolute;
  left: calc(var(--gutter) + 58px);
  bottom: 94px;
  width: 10px;
  height: 10px;
  background: var(--sun);
}

@media (max-width: 1160px) {
  body.hero-jp .jpc-block--green,
  body.hero-jp .jpc-stripes--green,
  body.hero-jp .jpc-spark--sm,
  body.hero-jp .jpc-lines,
  body.hero-jp .jpc-vtext { display: none; }
  .jpc-block--cream { top: 104px; right: 16px; width: 172px; height: 172px; }
  .jpc-stripes--orange { top: 132px; right: 200px; width: 74px; height: 120px; }
  .jpc-spark--lg { top: 286px; right: 150px; width: 100px; height: 100px; }
}
@media (max-width: 860px) {

  body.hero-jp .hero { align-items: start; }
  body.hero-jp .hero-content { padding-top: 184px; }
  body.hero-jp .hero-index { gap: 18px; font-size: 0.66rem; letter-spacing: 0.24em; }
  .jpc-block--cream { top: 100px; right: 0; width: 148px; height: 148px; }
  .jpc-stripes--orange { top: 126px; right: 160px; width: 66px; height: 108px; }
  .jpc-spark--lg { top: 150px; right: 242px; width: 90px; height: 90px; }
  .jpc-hatch { bottom: 84px; }
  .jpc-sq { bottom: 86px; }
}
@media (max-width: 620px) {
  body.hero-jp .hero h1 { font-size: clamp(1.8rem, 7.4vw, 2.3rem); line-height: 1.5; }
  body.hero-jp .hero-subtitle { font-size: 0.92rem; line-height: 2.1; }
}

.line-frame .story-flow .section-grid h2 { position: relative; }
.line-frame .story-flow .section-grid h2::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -22px;
  width: var(--lf-el-w, 46px);
  height: 40px;
  pointer-events: none;
  background: var(--lf-el, url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='46' height='40'><path d='M6,40 V16 a10,10 0 0 1 10,-10 H42' fill='none' stroke='%233d5527' stroke-width='2.6' stroke-linecap='round'/><circle cx='42' cy='6' r='4.2' fill='%23f28c0a'/></svg>")) no-repeat left top;
}

.line-frame .story-flow > section:nth-of-type(5n+2) {
  --lf-el-w: 108px;
  --lf-el: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='108' height='40'><path d='M6,40 V16 a10,10 0 0 1 10,-10 H104' fill='none' stroke='%23f28c0a' stroke-width='2.6' stroke-linecap='round'/><circle cx='104' cy='6' r='4.2' fill='%233d5527'/></svg>");
}
.line-frame .story-flow > section:nth-of-type(5n+3) {
  --lf-el-w: 62px;
  --lf-el: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='62' height='40'><path d='M6,40 V16 a10,10 0 0 1 10,-10 H58' fill='none' stroke='%23f5b62d' stroke-width='2.8' stroke-linecap='round'/><circle cx='58' cy='6' r='4.2' fill='%233d5527'/></svg>");
}
.line-frame .story-flow > section:nth-of-type(5n+4) {
  --lf-el-w: 136px;
  --lf-el: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='136' height='40'><path d='M6,40 V16 a10,10 0 0 1 10,-10 H132' fill='none' stroke='%233d5527' stroke-width='2.6' stroke-linecap='round'/><circle cx='132' cy='6' r='4.4' fill='%23f8cd5f'/></svg>");
}
.line-frame .story-flow > section:nth-of-type(5n+5) {
  --lf-el-w: 78px;
  --lf-el: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='78' height='40'><path d='M6,40 V16 a10,10 0 0 1 10,-10 H74' fill='none' stroke='%234e8718' stroke-width='2.6' stroke-linecap='round'/><circle cx='74' cy='6' r='4.2' fill='%23f28c0a'/></svg>");
}

body.line-frame .story-flow .section-pad:not(.sheet):not(.final-cta):not(.cta-band)::before {
  height: 20px;
  background-position: left center, 28px center;
  background-size: 20px 20px, 9px 100%;
}

@media (max-width: 960px) {
  .line-frame .story-flow .section-grid h2::before { display: none; }
}

.ph-about { --ph-accent: var(--apricot); }   

.ph-stamp {
  position: absolute;
  top: 76px;
  right: var(--gutter);
  width: 150px;
  height: 120px;
  z-index: 0;
  pointer-events: none;
}
.ph-stamp-svg { display: block; width: 100%; height: 100%; overflow: visible; }
.ph-stamp-svg .phs-block { fill: var(--ph-accent, var(--apricot)); }
.ph-stamp-svg .phs-line  { fill: none; stroke: var(--deep); stroke-width: 2.2; stroke-linecap: round; }
.ph-stamp-svg .phs-node  { fill: var(--deep); }
.ph-stamp-svg .phs-end   { fill: var(--path); }
.ph-stamp-svg .phs-spark { fill: var(--path); }

@media (max-width: 960px) {
  .ph-stamp { display: none; }
}

body:not(.home) .section-pad:not(.sheet):not(.final-cta):not(.cta-band) {
  position: relative;
}
body:not(.home) .section-pad:not(.sheet):not(.final-cta):not(.cta-band)::before {
  content: "";
  position: absolute;
  top: 0;
  left: var(--gutter);
  width: var(--rb-w, 240px);
  max-width: 66vw;
  height: 9px;
  z-index: 1;
  pointer-events: none;
  background-image: var(--rb-sq), var(--rb-line);
  background-repeat: no-repeat, repeat-x;
  background-position: left center, 15px center;
  background-size: 9px 9px, 7px 100%;
}

body:not(.home) .section-pad:not(.sheet):not(.final-cta):not(.cta-band):first-of-type::before {
  content: none;
}

body:not(.home) .section-pad:nth-of-type(8n+1) {
  --rb-w: 320px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%233d5527'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%233d5527' stroke-width='1.8'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+2) {
  --rb-w: 150px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%23e87328'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%23e87328' stroke-width='2.3'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+3) {
  --rb-w: 250px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%23f5b62d'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%23f5b62d' stroke-width='1.5'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+4) {
  --rb-w: 120px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%234f9f1d'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%234f9f1d' stroke-width='2'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+5) {
  --rb-w: 300px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%23987459'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%23987459' stroke-width='1.6'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+6) {
  --rb-w: 190px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%23f28c0a'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%23f28c0a' stroke-width='2.4'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+7) {
  --rb-w: 210px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%234e8718'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%234e8718' stroke-width='1.4'/></svg>");
}
body:not(.home) .section-pad:nth-of-type(8n+8) {
  --rb-w: 270px;
  --rb-sq: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='9' height='9'><rect width='9' height='9' fill='%23f8cd5f'/></svg>");
  --rb-line: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='7' height='16'><path d='M1.6 0V16' stroke='%23f8cd5f' stroke-width='1.9'/></svg>");
}
@media (max-width: 700px) {
  body:not(.home) .section-pad:not(.sheet):not(.final-cta):not(.cta-band)::before {
    height: 7px;
    max-width: 72vw;
  }
}

body.no-decor .section-pad:not(.sheet):not(.final-cta):not(.cta-band)::before {
  content: none;
}

body:not(.home) .section-pad:not(.sheet):not(.final-cta):not(.cta-band)::before {
  content: none;
}

.signal-row--tag {
  gap: 14px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.signal-row--tag > div {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--card-radius);
}
@media (max-width: 600px) {
  .signal-row--tag { gap: 8px; }
}

body.rspine main { position: relative; }

body.rspine { --spine-c: #f28c0a; }  

body.rspine .page-header,
body.rspine .story-layout {
  position: relative;
  z-index: 1;
  width: min(1100px, 100%);
}

body.rspine .rroute {
  position: absolute;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

body.rspine .rroute-over {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

body.rspine .rspine-vlabel {
  position: absolute;
  top: clamp(320px, 30vh, 430px);
  right: clamp(14px, 3.2vw, 54px);
  z-index: 1;
  writing-mode: vertical-rl;
  color: rgba(61, 85, 39, 0.24);
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.34em;
  white-space: nowrap;
  pointer-events: none;
}

body.rspine .rroute-deco {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

body.rspine .rspine-mark { position: absolute; }
body.rspine .rspine-mark--bar {
  width: 76px;
  height: 54px;
  background: none;
}
body.rspine .rspine-mark--bar::before { 
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 28px;
  height: 28px;
  background: var(--sun);
  border-radius: 11px;
}
body.rspine .rspine-mark--bar::after { 
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 32px;
  background: repeating-linear-gradient(90deg, rgba(61, 85, 39, 0.4) 0 2px, transparent 2px 11px);
  border-radius: 13px;
}
body.rspine .rspine-mark--square {
  width: 78px;
  height: 78px;
  background: rgba(252, 224, 140, 0.66);
  border-radius: 24px;
}
body.rspine .rspine-mark--block {
  width: 98px;
  height: 72px;
  background: none;
}
body.rspine .rspine-mark--block::before { 
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 82px;
  height: 48px;
  background: var(--deep);
  border-radius: 16px;
}
body.rspine .rspine-mark--block::after { 
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 66px;
  height: 38px;
  background: repeating-linear-gradient(90deg, rgba(242, 140, 10, 0.8) 0 2px, transparent 2px 11px);
  border-radius: 13px;
}

@media (max-width: 1100px) {
  body.rspine .rroute,
  body.rspine .rroute-over { opacity: 0.2; }
  body.rspine .rspine-vlabel,
  body.rspine .rroute-deco { display: none; }
}
@media (max-width: 700px) {

  body.rspine .story-flow > section { background: transparent; }
  body.rspine .rroute { display: block; opacity: 1; z-index: 0; }
  body.rspine .rroute-over { display: block; opacity: 1; z-index: 2; }
  body.rspine .rspine-vlabel,
  body.rspine .rroute-deco { display: none; }
}

.sheet::before,
#entries::before {
  left: 50%;
  right: auto;
  margin-left: -50vw;
  width: 100vw;
  transform: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
}
@media (min-width: 961px) {
  .story-layout .sheet::before,
  .story-layout #entries::before {
    left: calc(-1 * (max(0px, (100vw - var(--max)) / 2) + var(--gutter) + 240px));
    right: auto;
    margin-left: 0;
    width: 100vw;
  }
}

@media (min-width: 961px) {
  body.rspine .story-layout .sheet::before,
  body.rspine .story-layout #entries::before {
    left: calc(-1 * (max(0px, (100vw - 1100px) / 2) + var(--gutter) + 240px));
  }
}

.sheet--apricot::before { background: var(--apricot); }
.sheet--leaf::before { background: var(--leaf); }
#entries::before { background: var(--leaf); }
.sheet--wheat::before { background: var(--wheat); }
.sheet--amber::before { background: var(--amber); }
.sheet--sun::before { background: var(--sun); }
.sheet--butter::before { background: var(--butter); }
.sheet--peach::before { background: var(--peach); }
.sheet--honey::before { background: var(--honey); }
.sheet--forest::before { background: var(--deep); }
.sheet--brand-green::before { background: var(--brand-green); }
.sheet--earth::before { background: var(--earth); }
.sheet--leaf-700::before { background: var(--leaf-700); }
.sheet--sunset::before { background: var(--sunset); }
.sheet--path::before { background: var(--path); }

@media (min-width: 1240px) {
  body.rspine .page-header,
  body.rspine .story-layout {
    margin-left: auto;
    margin-right: auto;
  }
}

.page-header.ph-aud-donor { --ph-accent: var(--path); }        
.page-header.ph-aud-corp  { --ph-accent: var(--brand-green); } 
.page-header.ph-about     { --ph-accent: var(--peach); }       

.page-header .ph-hero {
  position: absolute;
  z-index: -1;              
  background: var(--ph-accent);
  pointer-events: none;
}
.page-header .ph-hero::after {
  content: "";
  position: absolute;
  background: var(--ph-accent);
}
@media (max-width: 760px) {
  .page-header .ph-hero { display: none; }   
}

.page-header.phv-a .ph-hero {
  top: 34px;
  right: -34px;
  width: 176px;
  height: 130px;
  border-radius: 36px 0 30px 84px;
}
.page-header.phv-a .ph-hero::after { display: none; }

.page-header.phv-b .ph-hero {
  top: 20px;
  right: -20px;
  width: 132px;
  height: 152px;
  border-radius: 30px 30px 66px 66px;
}
.page-header.phv-b .ph-hero::after {
  left: -30px;
  bottom: 4px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  opacity: 0.5;
}

.page-header.phv-c .ph-hero {
  top: 48px;
  right: -22px;
  width: 106px;
  height: 116px;
  border-radius: 30px 0 30px 54px;
}
.page-header.phv-c .ph-hero::after {
  right: 30px;
  top: -26px;
  width: 168px;
  height: 30px;
  border-radius: 999px;
  opacity: 0.6;
}

.page-header.ph-framed { padding-bottom: 6px; }
.ph-framed .ph-card {
  position: relative;
  width: fit-content;
  min-width: min(500px, 100%);
  max-width: 100%;
  margin-top: 14px;                
  padding: 30px 172px 28px 36px;
  border-radius: 18px;
  background: var(--f-fill, var(--deep));  
  overflow: visible;               
}

.ph-framed .ph-card h1 { color: #fff; }
.ph-framed .ph-card .page-crumb,
.ph-framed .ph-card .page-crumb a { color: rgba(255, 255, 255, 0.82); }
.ph-framed .ph-card .page-crumb .page-crumb-current,
.ph-framed .ph-card .page-crumb .page-crumb-parent { color: #fff; }
.ph-framed .ph-card .page-header-en { color: rgba(255, 255, 255, 0.72); }
.ph-framed .ph-card .page-header-kicker { color: rgba(255, 255, 255, 0.86); }

.ph-framed .ph-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  border-radius: 18px;
  box-shadow: inset 0 0 0 4px var(--f-fill, var(--deep)), inset 0 0 0 5px rgba(255, 255, 255, 0.5);
  pointer-events: none;
  z-index: 2;
}

.ph-framed .ph-card .ph-hero { z-index: 1; border-radius: 22px; background: var(--f-block, var(--path)); }
.ph-framed .ph-card .ph-hero::after { display: none; }

.ph-framed.phv-a .ph-card .ph-hero { width: 150px; height: 90px; }  
.ph-framed.phv-b .ph-card .ph-hero { width: 100px; height: 122px; }
.ph-framed.phv-c .ph-card .ph-hero { width: 128px; height: 104px; }

.ph-framed.phpos-tr .ph-card .ph-hero { top: -15px; right: -26px; }
.ph-framed.phpos-mr .ph-card .ph-hero { top: 50%; right: -26px; transform: translateY(-50%); }
.ph-framed.phpos-br .ph-card .ph-hero { bottom: -15px; right: -26px; }

.phc-1 { --f-fill: var(--leaf-700); --f-line: var(--amber);  --f-block: var(--butter); } 
.phc-2 { --f-fill: var(--deep);     --f-line: var(--sun);    --f-block: var(--sun); }    
.phc-3 { --f-fill: var(--path);     --f-line: var(--butter); --f-block: var(--butter); } 
.phc-4 { --f-fill: var(--leaf-700); --f-line: var(--honey);  --f-block: var(--sun); }    
.phc-5 { --f-fill: var(--earth);    --f-line: var(--leaf);   --f-block: var(--sun); }    
.phc-6 { --f-fill: var(--sunset);   --f-line: var(--honey);  --f-block: var(--sun); }    
.phc-7 { --f-fill: var(--earth);    --f-line: var(--sun);    --f-block: var(--path); }   

@media (max-width: 760px) {
  .ph-framed .ph-card {
    width: auto;
    padding: 24px 26px;
    border-radius: 12px;
  }

  .ph-framed .ph-card::before {
    border-radius: 12px;
  }

  .ph-framed.phpos-tr .ph-card .ph-hero,
  .ph-framed.phpos-mr .ph-card .ph-hero,
  .ph-framed.phpos-br .ph-card .ph-hero {
    display: block;
    top: -22px;
    right: 16px;
    bottom: auto;
    width: 92px;
    height: 52px;
    border-radius: 18px;
    transform: none;
  }
}

@media (max-width: 960px) {
  .impact-numbers {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .home .impact-numbers {
    gap: 8px;
  }
  .impact-numbers div {
    padding: 14px 8px;
    min-height: 0;
  }
  .impact-numbers strong {

    font-size: clamp(0.85rem, 22cqi, 2.6rem);
  }
  .impact-numbers span {
    font-size: clamp(0.62rem, 8.5cqi, 0.9rem);
    line-height: 1.3;
    margin-top: 8px;
  }
}
@media (max-width: 430px) {
  .impact-numbers div {
    padding: 11px 5px;
  }
  .impact-numbers span {
    margin-top: 5px;
  }
}

#entries::before { content: none; }

.page-header.phk {
  padding-top: 84px;            
  padding-bottom: 0;
}

main:has(.story-layout) > .page-header.phk {
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.phk .phk-inner {
  position: relative;
  overflow: visible;           
  min-height: 244px;
  padding: 30px 0 26px;
}
.phk .phk-copy {
  position: relative;
  z-index: 3;                  
  width: min(100%, 640px);
}
.phk .phk-bar {
  display: block;
  width: 46px;
  height: 6px;
  margin: 0 0 16px;
  border-radius: 3px;
  background: var(--brand-green);
}
.phk .page-crumb { margin: 0 0 16px; }
.phk h1 {
  margin: 0 0 12px;
  color: var(--brand-green);
  font-family: var(--font-sans);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.15;
  font-size: clamp(2.3rem, 4.6vw, 3.5rem);
}
.phk .page-header-en {
  color: var(--leaf-700);
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  letter-spacing: 0.14em;
  font-weight: 800;
  text-transform: uppercase;
}

.phk .phk-decor {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  margin-left: -50vw;          
  z-index: 0;
  overflow: hidden;            
  pointer-events: none;
}
.phk .phk-b { position: absolute; }

.phk-about .phk-b1 { 
  left: 0;
  top: 44px;
  width: clamp(190px, 22vw, 300px);
  height: 132px;
  border-radius: 0 22px 22px 0;
  background: linear-gradient(90deg, rgba(251, 176, 91, 0.40), rgba(251, 176, 91, 0.26));
}
.phk-about .phk-b2 { 
  right: 0;
  top: 28px;
  width: clamp(220px, 26vw, 350px);
  height: 150px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(270deg, rgba(252, 224, 140, 0.66), rgba(252, 224, 140, 0.42));
}
.phk-about .phk-b3 { 
  right: 0;
  top: 154px;
  width: clamp(160px, 19vw, 250px);
  height: 90px;
  border-radius: 22px 0 0 22px;
  background: linear-gradient(270deg, rgba(255, 240, 196, 0.7), rgba(255, 240, 196, 0.46));
}

.phk-programs .phk-b1 { left: 0; top: 34px; width: clamp(180px, 21vw, 290px); height: 74px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(142, 196, 87, 0.42), rgba(142, 196, 87, 0.28)); }
.phk-programs .phk-b2 { left: 0; top: 118px; width: clamp(210px, 24vw, 320px); height: 66px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(79, 159, 29, 0.30), rgba(79, 159, 29, 0.18)); }
.phk-programs .phk-b3 { right: 0; top: 40px; width: clamp(200px, 24vw, 320px); height: 130px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(142, 196, 87, 0.5), rgba(142, 196, 87, 0.3)); }

.phk-impact .phk-b1 { left: 0; top: 30px; width: clamp(200px, 23vw, 310px); height: 104px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(242, 140, 10, 0.34), rgba(242, 140, 10, 0.20)); }
.phk-impact .phk-b2 { left: 0; top: 114px; width: clamp(150px, 18vw, 240px); height: 82px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(232, 115, 40, 0.42), rgba(232, 115, 40, 0.24)); } 
.phk-impact .phk-b3 { right: 0; top: 28px; width: clamp(230px, 27vw, 360px); height: 164px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(232, 115, 40, 0.42), rgba(232, 115, 40, 0.24)); }

.phk-involve .phk-b1 { left: 0; top: 50px; width: clamp(180px, 21vw, 290px); height: 108px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(245, 182, 45, 0.38), rgba(245, 182, 45, 0.24)); }
.phk-involve .phk-b2 { right: 0; top: 28px; width: clamp(190px, 23vw, 300px); height: 94px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(252, 224, 140, 0.7), rgba(252, 224, 140, 0.46)); }
.phk-involve .phk-b3 { right: 0; top: 132px; width: clamp(150px, 18vw, 240px); height: 60px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(255, 240, 196, 0.85), rgba(255, 240, 196, 0.55)); }

.phk-news .phk-b1 { left: 0; top: 44px; width: clamp(150px, 18vw, 236px); height: 64px; border-radius: 0 18px 18px 0; background: linear-gradient(90deg, rgba(248, 205, 95, 0.52), rgba(248, 205, 95, 0.34)); }

.phk-news .phk-b2 { right: 0; top: 28px; width: clamp(170px, 20vw, 272px); height: 62px; border-radius: 18px 0 0 18px; background: linear-gradient(270deg, rgba(152, 116, 89, 0.26), rgba(152, 116, 89, 0.14)); }
.phk-news .phk-b3 { right: 0; top: 76px; width: clamp(150px, 18vw, 228px); height: 58px; border-radius: 18px 0 0 18px; background: linear-gradient(270deg, rgba(248, 205, 95, 0.52), rgba(248, 205, 95, 0.32)); }
.phk-news .phk-b4 { right: 0; top: 120px; width: clamp(190px, 22vw, 300px); height: 54px; border-radius: 18px 0 0 18px; background: linear-gradient(270deg, rgba(251, 239, 217, 0.95), rgba(251, 239, 217, 0.6)); }

.phk-audiences .phk-b1 { left: 0; top: 34px; width: clamp(160px, 19vw, 250px); height: 66px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(142, 196, 87, 0.44), rgba(142, 196, 87, 0.28)); }
.phk-audiences .phk-b2 { left: 0; top: 112px; width: clamp(190px, 22vw, 300px); height: 66px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(252, 224, 140, 0.66), rgba(252, 224, 140, 0.42)); }
.phk-audiences .phk-b3 { right: 0; top: 34px; width: clamp(160px, 19vw, 250px); height: 66px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(242, 140, 10, 0.34), rgba(242, 140, 10, 0.2)); }
.phk-audiences .phk-b4 { right: 0; top: 112px; width: clamp(160px, 19vw, 250px); height: 66px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(251, 176, 91, 0.5), rgba(251, 176, 91, 0.32)); }

.phk-neutral .phk-b1 { left: 0; top: 44px; width: clamp(180px, 21vw, 290px); height: 120px; border-radius: 0 22px 22px 0; background: linear-gradient(90deg, rgba(142, 196, 87, 0.30), rgba(142, 196, 87, 0.18)); }
.phk-neutral .phk-b2 { right: 0; top: 30px; width: clamp(210px, 25vw, 330px); height: 130px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(255, 240, 196, 0.72), rgba(255, 240, 196, 0.46)); }
.phk-neutral .phk-b3 { right: 0; top: 150px; width: clamp(150px, 18vw, 240px); height: 64px; border-radius: 22px 0 0 22px; background: linear-gradient(270deg, rgba(142, 196, 87, 0.34), rgba(142, 196, 87, 0.2)); }

.phk-programs h1, .phk-impact h1, .phk-news h1, .phk-audiences h1, .phk-neutral h1 { color: var(--deep); }

.phk-about .phk-b2 { z-index: 2; }                 
.phk-impact .phk-b1 { z-index: 2; }                
.phk-neutral .phk-b2 { z-index: 2; }               
.phk-news .phk-b2 { z-index: 3; }                  
.phk-news .phk-b3 { z-index: 2; }
.phk-news .phk-b4 { z-index: 1; }

@media (max-width: 960px) {
  .phk .phk-inner { min-height: 208px; }
  .phk .phk-copy { width: min(100%, 460px); }
}
@media (max-width: 760px) {
  .page-header.phk { padding-top: 74px; }
  .phk .phk-inner { min-height: 174px; padding: 18px 0 16px; } 
  .phk .phk-copy { width: 100%; padding-right: 108px; } 
  .phk h1 { font-size: clamp(1.85rem, 8vw, 2.25rem); }
  .phk-about .phk-b1 { 
    left: 0; top: 40px;
    width: 42vw; height: 104px;
    border-radius: 0 18px 18px 0;
  }
  .phk-about .phk-b2 { 
    right: 0; top: 6px;
    width: 46vw; height: 112px;
    border-radius: 18px 0 0 18px;
  }
  .phk-about .phk-b3 { 
    right: 0; top: 122px;
    width: 36vw; height: 74px;
    border-radius: 18px 0 0 18px;
  }

  .phk-programs .phk-b1 { left: 0; top: 30px; width: 40vw; height: 56px; border-radius: 0 18px 18px 0; }
  .phk-programs .phk-b2 { left: 0; top: 98px; width: 48vw; height: 52px; border-radius: 0 18px 18px 0; }
  .phk-programs .phk-b3 { right: 0; top: 34px; width: 40vw; height: 104px; border-radius: 18px 0 0 18px; }

  .phk-impact .phk-b1 { left: 0; top: 28px; width: 44vw; height: 66px; border-radius: 0 18px 18px 0; }
  .phk-impact .phk-b2 { left: 0; top: 80px; width: 34vw; height: 58px; border-radius: 0 18px 18px 0; } 
  .phk-impact .phk-b3 { right: 0; top: 18px; width: 48vw; height: 128px; border-radius: 18px 0 0 18px; }

  .phk-involve .phk-b1 { left: 0; top: 44px; width: 40vw; height: 92px; border-radius: 0 18px 18px 0; }
  .phk-involve .phk-b2 { right: 0; top: 6px; width: 44vw; height: 80px; border-radius: 18px 0 0 18px; }
  .phk-involve .phk-b3 { right: 0; top: 100px; width: 34vw; height: 56px; border-radius: 18px 0 0 18px; }

  .phk-news .phk-b1 { left: 0; top: 38px; width: 38vw; height: 52px; border-radius: 0 16px 16px 0; }
  .phk-news .phk-b2 { right: 0; top: 8px; width: 44vw; height: 52px; border-radius: 16px 0 0 16px; }
  .phk-news .phk-b3 { right: 0; top: 50px; width: 36vw; height: 48px; border-radius: 16px 0 0 16px; } 
  .phk-news .phk-b4 { right: 0; top: 88px; width: 46vw; height: 44px; border-radius: 16px 0 0 16px; } 

  .phk-audiences .phk-b1 { left: 0; top: 32px; width: 40vw; height: 58px; border-radius: 0 18px 18px 0; }
  .phk-audiences .phk-b2 { left: 0; top: 102px; width: 46vw; height: 58px; border-radius: 0 18px 18px 0; }
  .phk-audiences .phk-b3 { right: 0; top: 32px; width: 40vw; height: 58px; border-radius: 18px 0 0 18px; }
  .phk-audiences .phk-b4 { right: 0; top: 102px; width: 40vw; height: 58px; border-radius: 18px 0 0 18px; }

  .phk-neutral .phk-b1 { left: 0; top: 40px; width: 42vw; height: 100px; border-radius: 0 18px 18px 0; }
  .phk-neutral .phk-b2 { right: 0; top: 6px; width: 46vw; height: 104px; border-radius: 18px 0 0 18px; }
  .phk-neutral .phk-b3 { right: 0; top: 116px; width: 34vw; height: 56px; border-radius: 18px 0 0 18px; }
}

.signal-row--hl strong {
  display: inline-block;
  align-self: flex-start;   
  padding: 6px 16px;
  border-radius: 14px;

}
.signal-row--hl div:nth-of-type(3n + 1) strong { background: rgba(251, 176, 91, 0.34); } 
.signal-row--hl div:nth-of-type(3n + 2) strong { background: rgba(252, 224, 140, 0.62); } 
.signal-row--hl div:nth-of-type(3n) strong { background: rgba(253, 210, 166, 0.5); }      

body:not(.home) .impact-numbers strong {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 13px;
}
body:not(.home) .impact-numbers div:nth-of-type(3n + 1) strong { background: rgba(251, 176, 91, 0.34); }
body:not(.home) .impact-numbers div:nth-of-type(3n + 2) strong { background: rgba(252, 224, 140, 0.62); }
body:not(.home) .impact-numbers div:nth-of-type(3n) strong { background: rgba(253, 210, 166, 0.5); }

.stat-figure-num:not(.is-pending) {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 16px;
  background: rgba(251, 176, 91, 0.32); 
}

.act-tab-label {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 12px;
}
.act-tabs .act-tab:nth-of-type(3n + 1) .act-tab-label { background: rgba(251, 176, 91, 0.30); }
.act-tabs .act-tab:nth-of-type(3n + 2) .act-tab-label { background: rgba(252, 224, 140, 0.55); }
.act-tabs .act-tab:nth-of-type(3n) .act-tab-label { background: rgba(253, 210, 166, 0.46); }

@media (max-width: 640px) {
  body:not(.home) .impact-numbers strong { padding: 3px 8px; border-radius: 10px; }
}

.signal-row + .node-label,
.impact-numbers + .node-label,
.mission-list + .node-label,
.journey-line + .node-label,
.usage-diagram + .node-label,
.apply-tabs + .node-label {
  margin-top: 30px;
}
@media (max-width: 640px) {
  .signal-row + .node-label,
  .impact-numbers + .node-label,
  .mission-list + .node-label,
  .journey-line + .node-label,
  .usage-diagram + .node-label,
  .apply-tabs + .node-label {
    margin-top: 24px;
  }
}

@media (min-width: 961px) {
  body:not(.home) .story-layout .path-header ~ .act-panel.tier-ladder {
    padding-left: 0;
  }
}

.cta-band--sun {
  background: var(--sun);
  color: var(--deep);
}
.cta-band--sun h2,
.cta-band--sun h3 {
  color: var(--deep);
}
.cta-band--sun p {
  color: rgba(61, 85, 39, 0.82);
}
.cta-band--sun .button-primary {
  background: var(--deep);
  border-color: var(--deep);
  color: var(--paper);
}

.section-deck {
  position: relative;
  margin: 26px 0 48px; 
  max-width: 720px;
}
.section-deck::before {

  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 18px;
  bottom: -18px;
  background: var(--leaf);
  border-radius: 24px;
}
.section-deck > h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 50px 40px 34px;
  border-radius: 24px;
  background: var(--deep);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 16px 32px rgba(61, 85, 39, 0.30);
  font-size: clamp(1.18rem, 1.6vw, 1.4rem);
  font-weight: 700;
  line-height: 1.5;
  color: #fbefd9;
}
.section-deck > h3::before {
  content: "\201C";
  position: absolute;
  top: 14px;
  left: 30px;
  font-size: 4.6rem;
  line-height: 1;
  font-weight: 800;
  color: var(--leaf);
}
@media (max-width: 640px) {
  .section-deck > h3 { padding: 40px 26px 26px; }
  .section-deck > h3::before { font-size: 3.6rem; top: 12px; left: 22px; }
}

.exit-nav--top {
  position: sticky;
  top: 68px; 
  align-self: auto;
  z-index: 18;
  margin: 0;
  background: rgba(255, 255, 255, 0.93);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.exit-nav--top .exit-rail {
  flex-direction: row;
  align-items: stretch;
  gap: 10px;
  width: min(1160px, 100%);
  margin: 0 auto;
  padding: 10px clamp(24px, 5vw, 64px);
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 20px, #000 calc(100% - 20px), transparent 100%);
}
.exit-nav--top .exit-rail::-webkit-scrollbar { display: none; }
.exit-nav--top .exit-sign {
  flex: 0 0 auto;
  grid-template-columns: auto;
  gap: 2px;
  padding: 11px 17px;
  align-content: center;
}

.exit-nav--top .exit-sign::after { display: block; }
.exit-nav--top .exit-sign:hover { transform: none; }
.exit-nav--top .exit-sign + .exit-sign::before { display: none; }
.exit-nav--top .exit-name { font-size: 0.9rem; white-space: nowrap; }
.exit-nav--top .exit-sign--main { padding: 7px 14px 8px; }
.exit-nav--top .exit-sign--main .exit-name { font-size: 0.98rem; }
.exit-nav--top .exit-eyebrow { font-size: 0.6rem; letter-spacing: 0.14em; }

.impact-stepper { position: relative; padding-top: clamp(72px, 8vw, 108px); }

.istep-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--sunset);
  margin: 0 0 10px;
  padding-left: 68px;
}
.istep-track { position: relative; height: 178vh; }

.istep-sticky {
  position: sticky;
  top: 96px;
  min-height: min(74vh, 560px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.istep-grid {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(360px, 48%, 520px);
  gap: 48px;
  align-items: center;
}
.istep-list { display: flex; flex-direction: column; }
.istep-item {
  display: grid;

  grid-template-columns: 18px 34px minmax(0, 1fr);
  align-items: start;
  column-gap: 8px;
  padding: 18px 0;
  border-top: 1px solid rgba(61, 85, 39, 0.12);
  transition: opacity 0.3s;
}

.istep-item:first-of-type { border-top: none; }
.istep-sq {
  width: 12px; height: 12px;
  background: var(--sunset);
  margin-top: 12px;
  opacity: 0;
  transition: opacity 0.25s;
}
.istep-num {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--muted);
  opacity: 0.55;
  margin-top: 7px;
  transition: color 0.3s, opacity 0.3s;
}
.istep-copy { grid-column: 3; }
.istep-copy h2 {
  font-size: clamp(1.5rem, 2.4vw, 1.9rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  color: #b7b2a5;
  white-space: nowrap;
  transition: color 0.3s;
}
.istep-stat {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: clamp(2.4rem, 3.2vw, 3rem);
  font-weight: 800;
  line-height: 1;
  margin: 10px 0 0;
  color: #c2c9b4;
  transition: color 0.3s;
}

.istep-copy p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: #b7b2a5;
  margin: 8px 0 0;
  max-width: 40ch;
  text-align: justify;
  text-justify: inter-character;
  transition: color 0.3s;
}
.istep-item.is-on .istep-sq { opacity: 1; }
.istep-item.is-on .istep-num { opacity: 1; color: var(--sunset); }
.istep-item.is-on .istep-copy h2 { color: var(--deep); }
.istep-item.is-on .istep-stat { color: var(--leaf-700); }
.istep-item.is-on .istep-copy p { color: var(--muted); }

.istep-mediawrap { display: contents; }
.istep-media {
  position: relative;
  aspect-ratio: 3 / 2;
  border-radius: var(--card-radius);
  overflow: hidden;
  background: var(--honey);
}
.istep-fig {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.istep-fig.is-on { opacity: 1; }
.istep-fig img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (min-width: 861px) and (max-width: 1439px) {
  .istep-grid {
    grid-template-columns: minmax(0, 1fr) clamp(280px, 30%, 360px);
    gap: 36px;
  }
  .istep-media { margin-right: -80px; }
}

@media (max-width: 860px) {
  .istep-track { height: auto; }
  .istep-sticky { position: static; min-height: 0; height: auto; display: block; }
  .istep-grid { grid-template-columns: 1fr; gap: 22px; }

  .istep-mediawrap {
    display: block;
    position: sticky;
    top: 148px;            
    z-index: 3;
    order: -1;
    background: var(--paper);
    padding: 10px 0 24px;  
    margin: 0;
  }

  .istep-mediawrap::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 100%;
    height: 26px;
    background: linear-gradient(var(--paper), rgba(255, 255, 255, 0));
    pointer-events: none;
  }

  .istep-media {
    position: relative;
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
  }
  .istep-item { padding: 22px 0; }
  .istep-eyebrow { margin-bottom: 8px; }
}

body.aud-donor .signal-row--hl div:nth-of-type(3n + 1) strong,
body.aud-school .signal-row--hl div:nth-of-type(3n + 1) strong {
  background: rgba(142, 196, 87, 0.30); 
}

@property --u2card-a { syntax: "<angle>"; inherits: false; initial-value: 0deg; }
@keyframes u2card-orbit { to { --u2card-a: 360deg; } }

.mission-list,
.module-cards,
.signal-row--terms {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  margin-top: 40px;
  counter-reset: u1n;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.mission-list article,
.mission-list.mission-list--badge article,
.module-cards .module-card,
.signal-row--terms > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center; 
  background: #fff;
  border: 1px solid var(--u1acc, var(--wheat));
  border-radius: 26px;
  padding: 46px 26px 34px; 
  min-height: 200px;
  margin: 0;
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
  counter-increment: u1n;
  overflow: visible;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.mission-list article:hover,
.module-cards .module-card:hover,
.signal-row--terms > div:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(61, 85, 39, 0.14), 0 2px 6px rgba(61, 85, 39, 0.06);
}

.mission-list article:nth-of-type(3n + 1),
.module-cards .module-card:nth-of-type(3n + 1),
.signal-row--terms > div:nth-of-type(3n + 1) { --u1acc: var(--wheat); }
.mission-list article:nth-of-type(3n + 2),
.module-cards .module-card:nth-of-type(3n + 2),
.signal-row--terms > div:nth-of-type(3n + 2) { --u1acc: var(--amber); }
.mission-list article:nth-of-type(3n),
.module-cards .module-card:nth-of-type(3n),
.signal-row--terms > div:nth-of-type(3n) { --u1acc: var(--apricot); }

.mission-list article::before,
.module-cards .module-card::before,
.signal-row--terms > div::before {
  content: counter(u1n);
  position: absolute;
  left: 24px; top: -16px;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: var(--deep);
  color: #fff0c3;
  display: flex; align-items: center; justify-content: center;
  z-index: 3;
  box-shadow: 0 7px 16px rgba(61, 85, 39, 0.30);
  font-family: var(--font-en);
  font-weight: 800; font-size: 22px; line-height: 1;
}

.mission-list:not(.mission-list--badge) > article > span,
.mission-list--badge .node-label,
.module-cards .module-card .mod-en {
  display: block;
  font-family: var(--font-sans);
  font-style: normal;
  font-synthesis: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: none;
  color: var(--leaf-700);
  margin: 0 0 8px;
  padding: 0;
  background: none;
  min-width: 0; height: auto;
}

.mission-list--badge > article > span,
.module-cards .module-card .mod-no { display: none; }

.mission-list article h3,
.module-cards .module-card h3,
.signal-row--terms > div strong {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.18rem;
  font-weight: 800;
  line-height: 1.4;
  color: var(--deep);
  margin: 0 0 10px;
  white-space: normal;
  background: none;
}
.mission-list article h3 small,
.module-cards .module-card h3 small {
  display: block;
  margin-bottom: 2px;
  font-family: var(--font-en);
  font-style: normal;
  font-synthesis: none;
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--leaf-700);
}

.mission-list article p,
.module-cards .module-card p,
.signal-row--terms > div span {
  display: block;
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--muted);
  font-weight: 400;
}

.signal-row.signal-row--terms > div strong { background: none; padding: 0; border-radius: 0; }

@media (min-width: 761px) {
  .mission-list:has(> article:nth-child(2):last-child),
  .module-cards:has(> .module-card:nth-child(2):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .mission-list:has(> article:nth-child(4):last-child) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.signal-row:not(.signal-row--terms) {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  overflow: visible;
}
.signal-row:not(.signal-row--terms) > div {
  position: relative;
  background: #fff;
  border: 1px solid var(--u2acc, var(--path));
  border-radius: 20px;
  padding: 32px 24px 28px;
  min-height: 200px;
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.signal-row:not(.signal-row--terms) > div:nth-of-type(4n + 1) { --u2acc: var(--path);   --u2num: var(--leaf-700); }
.signal-row:not(.signal-row--terms) > div:nth-of-type(4n + 2) { --u2acc: var(--wheat);  --u2num: var(--deep); }
.signal-row:not(.signal-row--terms) > div:nth-of-type(4n + 3) { --u2acc: var(--sunset); --u2num: var(--leaf-700); }
.signal-row:not(.signal-row--terms) > div:nth-of-type(4n)     { --u2acc: var(--amber);  --u2num: var(--leaf-700); }

.signal-row:not(.signal-row--terms) > div::before {
  content: ""; position: absolute; right: 20px; top: -6px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--u2acc);
  z-index: 3; pointer-events: none;
}

.signal-row:not(.signal-row--terms) > div::after {
  content: ""; position: absolute; inset: -1px; border-radius: 21px; padding: 1px;
  background: conic-gradient(from var(--u2card-a), var(--u2acc), transparent 80deg 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1; pointer-events: none;
  animation: u2card-orbit 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .signal-row:not(.signal-row--terms) > div::after { animation: none; }
}

.signal-row:not(.signal-row--terms):not(.signal-row--ids) > div strong {
  font-family: var(--font-en);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--u2num, var(--leaf-700));
  font-size: clamp(2.5rem, 4.4vw, 3.2rem);
  white-space: nowrap; 
  background: none;
  padding: 0; 
  border-radius: 0;
  align-self: center; 
}

.signal-row:not(.signal-row--terms) > div span {
  display: block;
  margin: 12px 0 0;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--deep);
}

.signal-row--cited:not(.signal-row--terms) > div { justify-content: flex-start; }
.signal-row--cited .signal-source {
  margin-top: 16px;
  padding-top: 0;
  border-top: 0;
  text-align: center;
  font-size: 0.72rem;
  line-height: 1.55;
  color: var(--earth);
}

.signal-row--ids:not(.signal-row--terms) > div { align-items: center; text-align: center; justify-content: center; }
.signal-row--ids > div strong {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 1.5rem;
  line-height: 1.25;
  color: var(--leaf-700);
  overflow-wrap: anywhere;
  background: none;
}

.prepost-grid { gap: 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 640px) { .prepost-grid { grid-template-columns: 1fr; } }
.prepost-card {
  position: relative;
  border: 1px solid var(--u2acc, var(--path));
  border-radius: 20px;
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
  isolation: isolate;
}
.prepost-grid .prepost-card:nth-of-type(4n + 1) { --u2acc: var(--path); }
.prepost-grid .prepost-card:nth-of-type(4n + 2) { --u2acc: var(--wheat); }
.prepost-grid .prepost-card:nth-of-type(4n + 3) { --u2acc: var(--sunset); }
.prepost-grid .prepost-card:nth-of-type(4n)     { --u2acc: var(--amber); }
.prepost-card::before {
  content: ""; position: absolute; right: 20px; top: -6px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--u2acc);
  z-index: 3; pointer-events: none; 
}

.mission-list article::after,
.module-cards .module-card::after,
.signal-row--terms > div::after {
  content: ""; position: absolute; inset: -1px; border-radius: 27px; padding: 1px;
  background: conic-gradient(from var(--u2card-a), var(--u1acc, var(--wheat)), transparent 80deg 360deg);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  z-index: 1; pointer-events: none;
  animation: u2card-orbit 4s linear infinite;
}
@media (prefers-reduced-motion: reduce) {
  .mission-list article::after,
  .module-cards .module-card::after,
  .signal-row--terms > div::after { animation: none; }
}

.mission-list article svg.rf-edge,
.module-cards .module-card svg.rf-edge,
.signal-row > div svg.rf-edge,
.prepost-card svg.rf-edge {
  position: absolute; inset: 0; width: 100%; height: 100%;
  pointer-events: none; overflow: visible; z-index: 2;
}
.mission-list article svg.rf-edge rect,
.module-cards .module-card svg.rf-edge rect,
.signal-row > div svg.rf-edge rect,
.prepost-card svg.rf-edge rect { fill: none; vector-effect: non-scaling-stroke; }
.mission-list article svg.rf-edge .base,
.module-cards .module-card svg.rf-edge .base,
.signal-row > div svg.rf-edge .base,
.prepost-card svg.rf-edge .base { stroke: none; }
.mission-list article svg.rf-edge .runner,
.module-cards .module-card svg.rf-edge .runner,
.signal-row > div svg.rf-edge .runner,
.prepost-card svg.rf-edge .runner {
  stroke: var(--deep); stroke-width: 2.5px; stroke-linecap: round;
  stroke-dasharray: 12 88; stroke-dashoffset: 12; opacity: 0;
}

@keyframes rf-runner-lap { from { stroke-dashoffset: 12; } to { stroke-dashoffset: -88; } }
@keyframes rf-runner-fade { 0% { opacity: 0; } 7% { opacity: 1; } 88% { opacity: 1; } 100% { opacity: 0; } }
.mission-list article.rf-running svg.rf-edge .runner,
.module-cards .module-card.rf-running svg.rf-edge .runner,
.signal-row > div.rf-running svg.rf-edge .runner,
.prepost-card.rf-running svg.rf-edge .runner {
  animation: rf-runner-lap 1.3s cubic-bezier(0.45, 0.05, 0.35, 1) both,
             rf-runner-fade 1.3s linear both;
}
@media (prefers-reduced-motion: reduce) {
  .mission-list article.rf-running svg.rf-edge .runner,
  .module-cards .module-card.rf-running svg.rf-edge .runner,
  .signal-row > div.rf-running svg.rf-edge .runner,
  .prepost-card.rf-running svg.rf-edge .runner { animation: none; }
}

@media (max-width: 760px) {

  .mission-list,
  .module-cards,
  .signal-row.signal-row--terms {
    grid-template-columns: 1fr;
    max-width: 460px;
    gap: 20px;
  }
  .mission-list article,
  .module-cards .module-card,
  .signal-row.signal-row--terms > div { min-height: 0; }
}
@media (max-width: 560px) {

  .signal-row:not(.signal-row--terms):not(.signal-row--ids) > div {
    padding: 16px 10px;
    min-height: 0;
  }
  .signal-row:not(.signal-row--terms):not(.signal-row--ids) > div strong {
    font-size: clamp(1.15rem, 5.4vw, 1.8rem);
    white-space: nowrap; 
  }
  .signal-row:not(.signal-row--terms) > div span { font-size: 0.74rem; }
}

.apply-tabnav[aria-label="決策設計七大能力分頁"] { counter-reset: sevncap; }
.apply-tabnav[aria-label="決策設計七大能力分頁"] .apply-tab::before {
  counter-increment: sevncap;
  content: counter(sevncap);
  margin-right: 8px;
  font-family: var(--font-en);
  font-weight: 800;
  opacity: 0.85;
}

body.home .company-title-accent { color: var(--path); }

.rf-scene--panel[aria-labelledby="timeline-title"] > .rf-panel { background: none; }
.rf-scene--panel[aria-labelledby="timeline-title"] > .rf-panel::after { display: none; }

[aria-labelledby="timeline-title"] .journey-line.is-vertical.has-figures .journey-node {
  padding-bottom: 78px; 
  padding-left: 80px;   
}
[aria-labelledby="timeline-title"] .journey-node > .node-text,
[aria-labelledby="timeline-title"] .journey-node > .node-figure {
  position: relative;
  z-index: 1; 
}
[aria-labelledby="timeline-title"] .journey-node::after {
  content: "";
  position: absolute;
  z-index: 0;
  left: 46px;   
  right: -30px;
  top: -22px;
  bottom: 44px;
  border-radius: var(--card-radius);
  background: transparent;
  transition: background 380ms ease;
}
[aria-labelledby="timeline-title"] .journey-node.is-active::after { background: var(--honey); }

[aria-labelledby="timeline-title"] .era-heading {
  position: relative;

  margin: 46px 0 40px;
  padding-left: 36px;
  font-size: clamp(1.3rem, 2.1vw, 1.62rem);
  line-height: 1.35;
  color: var(--ink);
}
[aria-labelledby="timeline-title"] .era-heading::before {
  content: "";
  position: absolute;
  left: 8px; 
  top: -6px;
  bottom: -6px;
  width: 8px;
  border-radius: 4px;
  background: var(--leaf-700);
}
[aria-labelledby="timeline-title"] .era-heading:first-of-type { margin-top: 10px; }
@media (max-width: 860px) {
  [aria-labelledby="timeline-title"] .era-heading { padding-left: 32px; }
}

body.grp-about .rf-scene--panel:not([aria-labelledby="timeline-title"]) > .rf-panel {
  background: var(--butter);
}
@media (max-width: 860px) {
  [aria-labelledby="timeline-title"] .journey-line.is-vertical.has-figures .journey-node {
    padding-left: 70px;
  }
  [aria-labelledby="timeline-title"] .journey-node::after {
    left: 42px;
    right: -22px;
    top: -18px;
    bottom: 38px;
  }
}

.org-section.rf-scene--panel > .rf-panel { background: none; }
.org-section.rf-scene--panel > .rf-panel::after { display: none; }

body.audience-spine-page .about-section[aria-labelledby="corp-model-title"] > .rf-panel { padding-bottom: clamp(80px, 10vw, 120px); }

[aria-labelledby="download-title"] .download-list { margin-top: clamp(28px, 3.5vw, 44px); }

[aria-labelledby="journey-title"] .rf-cards { margin-top: clamp(36px, 5vw, 60px); }

body.aud-school.audience-spine-page .rf-hero { padding-bottom: clamp(12px, 2vw, 26px); }
body.aud-school.audience-spine-page .rf-hero + .rf-scene { padding-top: clamp(6px, 1.2vw, 16px); }

.cta-band { align-items: flex-start; text-align: left; }
.cta-band p { margin-left: 0; margin-right: 0; }
.cta-band-actions { align-items: flex-start; }

.rf-hero .rf-wrap .rf-wrap { display: block; padding-inline: 0; }

@media (max-width: 900px) {
  main.rf { padding-top: 82px; }
}

.section-deck .company-hl,
.section-deck .company-hl--01,
.section-deck .company-hl--04 {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: none !important;
  box-shadow: none !important;
  color: inherit !important;
  font-weight: inherit;
  white-space: inherit;
}

.impact-stepper { margin-bottom: clamp(40px, 6vw, 80px); }

:is(.company-hl, .lead strong, .lead b, .rf-lead strong, .rf-lead b) {
  position: relative; z-index: 0; font-weight: 750;
  -webkit-box-decoration-break: clone; box-decoration-break: clone;
  margin-inline: 0.04em; padding: 0.03em 0.28em 0.08em;
  border-radius: 0.32em;
}
.company-hl--04 { white-space: nowrap; }

:root { --hl-brush: rgba(245, 182, 45, 0.65); }

.rf-panel { --hl-brush: rgba(142, 196, 87, 0.65); }

:is(.mission-list > article, .rf-card, .aud-card, .faq-item, .prepost-card, .method-cycle, .sp,
    .rollup, .fp-card, .fp-modal__panel) {
  --hl-brush: rgba(245, 182, 45, 0.65);
}

:is(.cta-band, .ig-feature, .rf-panel-cta) { --hl-brush: var(--butter); }

:is(.company-hl, .lead strong, .lead b, .rf-lead strong, .rf-lead b) {
  color: var(--deep);
  background: var(--hl-brush);
}

.section-actions { margin-top: 32px; }

.section-actions + .node-label { margin-top: 30px; }

.act-panel--cycle {
  display: block;
  padding: clamp(22px, 3vw, 34px);
  container-type: inline-size;
}
.act-panel--cycle .method-cycle { margin-top: 0; }
.act-panel--cycle .mc-stage { margin-top: 0; }
.act-panel--cycle .mc-detail { min-height: 0; }

.act-panel--cycle .mc-detail .mc-detail-no {
  display: inline-block;
  padding: 2px 11px;
  border-radius: 10px;
  background: rgba(252, 224, 140, 0.62);
}

.mc-detail-say {
  margin: 10px 0 0;
  font-family: var(--font-serif);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--deep);
}

.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-sub,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-sub,
.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-say,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-say { color: var(--white); }
.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) .mc-detail-sub,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-sub,
.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) .mc-detail-say,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-say { color: var(--deep); }

@container (max-width: 900px) and (min-width: 701px) {
  .act-panel--cycle .mc-stage { gap: 24px; }
  .act-panel--cycle .mc-wheel svg { width: min(330px, 100%); }
}

@container (max-width: 700px) {
  .act-panel--cycle .mc-stage { flex-direction: column; gap: 6px; }
  .act-panel--cycle .mc-wheel svg { width: min(380px, 100%); }
  .act-panel--cycle .mc-stage .mc-detail-col { width: min(560px, 100%); }
  .act-panel--cycle .mc-stage .mc-detail { flex: none; width: 100%; margin-top: 14px; }
}
@media (max-width: 560px) {
  .act-panel--cycle { padding: 18px 14px 20px; }
}

.faq-list[data-faq-lock] {

  interpolate-size: allow-keywords;
}

.faq-list[data-faq-lock] .faq-item::details-content {
  block-size: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    block-size 260ms ease,
    opacity 200ms ease,
    content-visibility 260ms allow-discrete;
}

.faq-list[data-faq-lock] .faq-item[open]::details-content {
  block-size: auto;
  opacity: 1;
}

.faq-list[data-faq-lock].is-faq-measuring .faq-item::details-content {
  transition: none;
}

@media (prefers-reduced-motion: reduce) {
  .faq-list[data-faq-lock] .faq-item::details-content { transition: none; }
}

.section-deck {
  width: fit-content;
}
.section-deck > h3 {
  text-wrap: pretty;   
  text-align: left;    
}

#enquiry .rf-wrap > .path-header:last-child {
  margin-bottom: 0;
}
#enquiry + .path-section .rf-wrap > .cta-band:only-child {
  margin-top: 0;
}

br.br-m { display: none; }
@media (max-width: 640px) {
  br.br-m { display: inline; }
}

br.br-d { display: inline; }
@media (max-width: 900px) {
  br.br-d { display: none; }
}

@media (max-width: 560px) {
  .signal-row.signal-row--terms > div {
    padding: 40px 20px 24px;
    gap: 0;
  }
  .signal-row.signal-row--terms > div::before {
    left: 18px;
    top: -14px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    font-size: 19px;
  }
}

.mc-detail .mc-detail-no {
  display: inline-block;
  padding: 2px 11px;
  border-radius: 10px;
  font-weight: 700;
}

.mc-detail:has(.mc-detail-item[data-stage="1"].is-active) .mc-detail-no,
.mc-detail:has(.mc-detail-item[data-stage="2"].is-active) .mc-detail-no {
  background: var(--butter);
  color: var(--deep);
}

.mc-detail:has(.mc-detail-item[data-stage="3"].is-active) .mc-detail-no,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-no {
  background: var(--deep);
  color: var(--butter);
}

.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-h,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-en,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-sub,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-say,
.mc-detail:has(.mc-detail-item[data-stage="4"].is-active) .mc-detail-desc {
  color: var(--white);
}

.cta-band-actions--row {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.section-subhead {
  margin: 26px 0 0;
  max-width: 720px;
  font-size: clamp(1.06rem, 1.35vw, 1.22rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--deep);
  text-wrap: pretty;   
  text-align: left;
}

.section-subhead--gap {
  margin-top: 56px;
}
@media (max-width: 640px) {
  .section-subhead--gap { margin-top: 40px; }
}

.quote-role {
  margin: 0 0 14px;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--deep);
}

.impact-cite {
  margin: 26px 0 34px;
  max-width: 720px;
}
.impact-cite blockquote {
  font-size: 1.32rem;
}

.section-subhead + .node-label {
  margin-top: 14px;
}

.link-more {
  margin: 30px 0 0;
}
.link-more a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--path);
  text-underline-offset: 5px;
}
.link-more a:hover,
.link-more a:focus-visible {
  color: var(--path);
}

.fp-grid {
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}
.fp-card {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 30px 24px 24px;
  background: var(--white);
  border: 1px solid var(--u2acc, var(--path));
  border-radius: 20px;
  box-shadow: 0 9px 24px rgba(61, 85, 39, 0.08), 0 1px 4px rgba(61, 85, 39, 0.05);
}
.fp-card::before {
  content: "";
  position: absolute;
  right: 20px;
  top: -6px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--u2acc, var(--path));
  z-index: 3;
  pointer-events: none;
}
.fp-card__tag {
  align-self: flex-start;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 700;
}
.fp-card__date {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 700;
}
.fp-card__org {
  margin: 0;
  font-size: 1.32rem;
  line-height: 1.35;
  color: var(--deep);
}
.fp-card__course {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
}
.fp-card__desc {
  flex: 1;
  margin: 6px 0 0;
  color: var(--ink);
  line-height: 1.75;
}
.fp-card__more {
  align-self: flex-start;
  margin-top: 16px;
  padding: 10px 18px;
  border: 0;
  border-radius: 999px;
  background: var(--deep);
  color: var(--white);
  font-family: inherit;
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.18s ease;
}
.fp-card__more:hover,
.fp-card__more:focus-visible {
  background: var(--path);
}

.fp-card--more {
  grid-column: 1 / -1;   
  border-style: dashed;
  border-color: var(--line);
  background: var(--honey);
  box-shadow: none;
}
.fp-card--more::before {
  display: none;   
}

.fp-modal {
  position: fixed;
  inset: 0;
  z-index: 200;   
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.fp-modal[hidden] {
  display: none;
}
.fp-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(61, 85, 39, 0.66);
  backdrop-filter: blur(3px);
}
.fp-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  max-height: min(86vh, 920px);
  overflow-y: auto;
  padding: 44px 40px 36px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 28px 60px rgba(61, 85, 39, 0.32);
}
.fp-modal__close {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  color: var(--deep);
  cursor: pointer;
}
.fp-modal__close svg {
  width: 18px;
  height: 18px;
}
.fp-modal__close:hover,
.fp-modal__close:focus-visible {
  background: var(--honey);
  color: var(--path);
}
.fp-modal__tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--sun);
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 700;
}
.fp-modal__panel h3 {
  margin: 14px 0 6px;
  font-size: clamp(1.4rem, 2vw, 1.72rem);
  color: var(--deep);
}
.fp-modal__meta {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}
.fp-modal__figure {
  margin: 24px 0 0;
  border-radius: 18px;
  overflow: hidden;
}
.fp-modal__figure img {
  display: block;
  width: 100%;
  height: auto;
}
.fp-modal__block {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.fp-modal__block h4 {
  margin: 0 0 8px;
  font-size: 1rem;
  color: var(--deep);
}
.fp-modal__block p {
  margin: 0;
  color: var(--ink);
  line-height: 1.8;
}
.fp-modal__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-weight: 700;
  color: var(--deep);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-decoration-color: var(--path);
  text-underline-offset: 5px;
}

body.fp-lock {
  overflow: hidden;
}
@media (max-width: 640px) {
  .fp-modal {
    padding: 0;
    align-items: flex-end;
  }
  .fp-modal__panel {
    max-width: none;
    max-height: 92vh;
    padding: 40px 22px 28px;
    border-radius: 22px 22px 0 0;
  }
}

.rollup-list {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.rollup {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
}
.rollup > summary {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  cursor: pointer;
  font-size: 1.06rem;
  font-weight: 700;
  color: var(--deep);
  list-style: none;
}
.rollup > summary::-webkit-details-marker {
  display: none;
}

.rollup > summary::before {
  content: "";
  flex: none;
  width: 9px;
  height: 9px;
  margin-left: 2px;
  border-right: 2px solid var(--path);
  border-bottom: 2px solid var(--path);
  transform: rotate(-45deg);
  transition: transform 0.18s ease;
}
.rollup[open] > summary::before {
  transform: rotate(45deg);
}
.rollup > summary:hover,
.rollup > summary:focus-visible {
  color: var(--path);
}
.rollup__state {
  margin-left: auto;
  flex: none;
  padding: 4px 11px;
  border-radius: 999px;
  background: var(--butter);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 700;
}
.rollup__body {
  padding: 0 24px 22px 49px;
  color: var(--ink);
  line-height: 1.8;
}
.rollup__body p {
  margin: 0;
}
@media (max-width: 560px) {
  .rollup > summary {
    flex-wrap: wrap;
    padding: 18px 18px;
    font-size: 1rem;
  }
  .rollup__state {
    margin-left: 23px;   
    order: 3;
    width: 100%;
    max-width: max-content;
  }
  .rollup__body {
    padding: 0 18px 20px 41px;
  }
}

.ig-feature {
  flex-wrap: wrap;
  row-gap: 22px;
  padding-inline: clamp(26px, 4vw, 56px);
}
.ig-feature-text {
  flex: 1 1 330px;   
  min-width: 0;
}
.ig-feature-text h3 {
  text-wrap: balance;
}

@media (max-width: 560px) {
  .ig-feature-text {
    flex: 0 0 auto;
  }
}
