:root {
  --ink: #151515;
  --muted: #696969;
  --soft: #969696;
  --line: rgba(21, 21, 21, 0.11);
  --paper: #f7f7f7;
  --white: #ffffff;
  --navigation-paper: #fffaf5;
  --gold: #ffc24d;
  --orange: #ff8a3d;
  --red: #d94f37;
  --button-flow: linear-gradient(120deg, var(--gold) 0%, var(--orange) 28%, #f45f45 50%, var(--orange) 72%, var(--gold) 100%);
  --button-outline-flow: linear-gradient(120deg, rgba(255, 194, 77, 0.95) 0%, rgba(255, 138, 61, 0.95) 28%, rgba(217, 79, 55, 0.78) 50%, rgba(255, 138, 61, 0.95) 72%, rgba(255, 194, 77, 0.95) 100%);
  --hover-exit-delay: 120ms;
  --disclosure-duration: 600ms;
  --disclosure-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: clamp(18px, 2vw, 44px);
  --radius: 8px;
  --shadow: 0 24px 70px rgba(21, 21, 21, 0.12);
  --title-serif:
    "Noto Serif SC", "Source Han Serif CN", "Source Han Serif SC", "思源宋体 CN",
    "STZhongsong", "华文中宋", "SimSun", serif;
}

@media (min-width: 1180px) {
  :root {
    --page-gutter: clamp(56px, 5.6vw, 118px);
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 104px;
}

/* Progressive enhancement: supporting browsers soften same-origin page changes; others retain the native navigation. */
@view-transition {
  navigation: auto;
}

::view-transition-old(root) {
  animation: ds-page-exit 160ms ease-out both;
}

::view-transition-new(root) {
  animation: ds-page-enter 320ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

/* The fixed navigation is shared across pages and must not blink with the content transition. */
::view-transition-group(ds-site-header),
::view-transition-old(ds-site-header),
::view-transition-new(ds-site-header) {
  animation: none;
}

@keyframes ds-page-exit {
  to {
    opacity: 0;
  }
}

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

  to {
    opacity: 1;
  }
}

.nav-contact { display: grid; grid-template-columns: minmax(0, 1fr) 152px; column-gap: 24px; width: calc(100% - 32px); color: var(--text, #24211d); }
.nav-mega-menu-about .nav-mega-group h3 { font-weight: 700 !important; }
.nav-contact-wechat { grid-column: 2; grid-row: 1; margin: 0; text-align: center; }
.nav-contact-details { grid-column: 1; grid-row: 1; min-width: 0; }
.nav-contact .nav-contact-details h3:first-child { margin-top: 0; }
.nav-contact-wechat img { display: block; width: 152px; height: 152px; object-fit: contain; }
.nav-contact-wechat figcaption { margin-top: 7px; font-size: 12px; color: #73695f; }
.nav-contact .nav-contact-details h3 { margin: 18px 0 9px; font-size: clamp(17px, 1.4vw, 20px); line-height: 1.3; font-weight: 400 !important; }
.nav-contact dl { margin: 0; display: grid; gap: 7px; }
.nav-contact dl > div { display: flex; align-items: baseline; gap: 20px; }
.nav-contact dt { min-width: 5em; font-size: 14px; }
.nav-contact dd { margin: 0; }
.nav-menu .nav-contact a, .mobile-nav-sub .nav-contact a { display: inline; padding: 0; border: 0; border-radius: 0; background: none; font-size: 14px; line-height: 1.6; font-weight: 400; color: #655b52; white-space: nowrap; text-decoration: none; }
.nav-menu .nav-contact a:hover, .mobile-nav-sub .nav-contact a:hover { color: #c4501f; }
.nav-contact a:focus-visible { outline: 2px solid #c4501f; outline-offset: 4px; }
.mobile-nav-sub .nav-contact { grid-column: 1 / -1; margin-top: 20px; padding-top: 24px; border-top: 1px solid #ded8d2; }
@media (max-width: 1120px) {
  .nav-contact { width: 100%; column-gap: 16px; grid-template-columns: minmax(0, 1fr) 120px; }
  .nav-contact-wechat img { width: 120px; height: 120px; }
  .nav-contact dl > div { display: block; }
  .nav-menu .nav-contact a, .mobile-nav-sub .nav-contact a { overflow-wrap: anywhere; white-space: normal; }
}
@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  .nav-menu.nav-mega-menu-about { max-height: calc(100dvh - 76px); overflow-y: auto; }
}

@media (prefers-reduced-motion: reduce) {
  ::view-transition-group(root),
  ::view-transition-old(root),
  ::view-transition-new(root) {
    animation-duration: 0.01ms;
  }
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(255, 194, 77, 0.22), transparent 28rem),
    radial-gradient(circle at 4% 18%, rgba(217, 79, 55, 0.08), transparent 24rem),
    var(--paper);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  letter-spacing: 0;
}

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

button,
input,
select {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  view-transition-name: ds-site-header;
  transition: translate 240ms cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 76px;
  padding: 0 var(--page-gutter);
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  background: #f7f7f7;
  backdrop-filter: blur(18px);
}

.site-header.is-scroll-hidden {
  translate: 0 calc(-100% - 1px);
  pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header { transition: none !important; }
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 180px;
}

.brand-logo {
  display: block;
  width: clamp(112px, 8.6vw, 138px);
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.5vw, 30px);
  color: #4a4a4a;
  font-size: 15px;
}

.desktop-nav a,
.nav-item > a {
  transition: color 0.2s ease;
}

.nav-item > a {
  font-weight: 720;
}

.desktop-nav a:hover,
.nav-item:hover > a {
  color: var(--orange);
}

.desktop-nav > .nav-item > a[role="button"] {
  cursor: pointer;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 76px;
}

.nav-menu {
  position: absolute;
  top: calc(100% - 8px);
  left: 50%;
  z-index: 30;
  display: grid;
  gap: 4px;
  min-width: 220px;
  padding: 12px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 22px 56px rgba(21, 21, 21, 0.16);
  backdrop-filter: blur(22px) saturate(1.12);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 8px);
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
}

.compact-menu {
  min-width: 148px;
}

.nav-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  color: #282828;
  font-size: 13px;
  font-weight: 650;
  white-space: nowrap;
}

.nav-menu a:hover {
  color: #151515;
  background: rgba(255, 194, 77, 0.16);
}

.has-menu:not(.has-mega-menu):hover .nav-menu,
.has-menu:not(.has-mega-menu):focus-within .nav-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

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

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  height: 42px;
  padding: 4px;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
}

.language-switch button {
  min-width: 34px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  color: #686868;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.is-active {
  color: #151515;
  background: rgba(255, 194, 77, 0.72);
}

.language-switch button:disabled {
  color: #999;
  background: transparent;
  cursor: default;
}

.language-switch button:focus-visible {
  outline: 2px solid #a84d1c;
  outline-offset: 1px;
}

.nav-action,
.button,
.apply-submit,
.footer-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  padding: 0 22px;
  border: 1px solid var(--line);
  font-weight: 700;
  white-space: nowrap;
  background-size: 240% 240%;
  background-position: 0% 50%;
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    background-position 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    color 0.25s ease;
}

.nav-action,
.button.primary,
.apply-submit {
  border: 0;
  color: #191919;
  background-image: var(--button-flow);
  box-shadow: 0 14px 35px rgba(255, 138, 61, 0.26);
}

.nav-action {
  min-height: 42px;
  padding: 0 22px;
}

.button.secondary,
.footer-cta {
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) padding-box,
    var(--button-outline-flow) border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
}

.button.inverted {
  color: #ffffff;
  border-color: transparent;
  background:
    linear-gradient(rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.1)) padding-box,
    linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 194, 77, 0.72), rgba(255, 255, 255, 0.3)) border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
}

.nav-action:hover,
.button:hover,
.apply-submit:hover,
.footer-cta:hover {
  background-position: 100% 50%;
  border-color: rgba(255, 138, 61, 0.42);
}

.button.secondary:hover,
.button.inverted:hover,
.footer-cta:hover {
  background-position:
    0 0,
    100% 50%;
}

.nav-action:hover,
.button.primary:hover,
.apply-submit:hover {
  box-shadow: 0 14px 35px rgba(255, 138, 61, 0.34);
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
.custom-select-trigger:focus-visible,
.custom-select-options button:focus-visible {
  outline: 3px solid rgba(255, 194, 77, 0.56);
  outline-offset: 3px;
}

.menu-toggle,
.mobile-header-tools,
.mobile-nav {
  display: none;
}

.section-shell {
  width: min(1850px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(34px, 4.2vw, 64px);
  min-height: clamp(500px, 60vh, 560px);
  align-items: start;
  justify-items: center;
  padding: clamp(52px, 6vw, 84px) 0 clamp(24px, 3vw, 42px);
}

.hero-network {
  position: absolute;
  inset: 10px -20px 12px;
  z-index: 0;
  width: calc(100% + 40px);
  height: calc(100% - 22px);
  pointer-events: none;
  opacity: 1;
}

.hero-copy,
.hero-panel {
  position: relative;
  z-index: 1;
}

.hero-copy {
  display: grid;
  justify-items: center;
  width: min(100%, 1120px);
  text-align: center;
  transform: translateY(clamp(18px, 2.2vw, 30px));
}

.hero-copy h1,
.section-heading h2,
.section-copy h2,
.anniversary-copy h2 {
  margin: 0;
  letter-spacing: 0;
  line-height: 0.98;
}

.hero-copy h1 {
  max-width: 1120px;
  font-family: var(--title-serif);
  font-size: clamp(52px, 5.8vw, 98px);
  font-weight: 900;
  font-variation-settings: "wght" 900;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span {
  display: inline;
  white-space: normal;
}

.section-label {
  margin: 0 0 18px;
  color: var(--soft);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #606060;
  font-size: clamp(18px, 1.25vw, 23px);
  font-weight: 800;
  text-transform: none;
}

.hero-kicker::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.42);
  animation: pulse-dot 2.4s ease-out infinite;
}

@keyframes pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.46);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 13px rgba(255, 138, 61, 0);
    transform: scale(1.08);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 138, 61, 0);
    transform: scale(1);
  }
}

.hero-lead {
  max-width: 900px;
  margin: 28px 0 0;
  color: #4f4f4f;
  font-size: 17px;
  line-height: 1.85;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 34px;
}

.metric,
.process-grid article,
.feature-card,
.news-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
}

body.reveal-ready [data-reveal] {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 34px, 0);
  transition:
    opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, filter, transform;
}

body.reveal-ready [data-reveal="headline"] {
  transform: translate3d(0, 44px, 0);
}

body.reveal-ready [data-reveal="card"] {
  transform: translate3d(0, 36px, 0) scale(0.992);
}

body.reveal-ready [data-reveal="metric"] {
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
  will-change: auto;
}

body.reveal-ready [data-reveal].is-revealed {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.metric > span {
  display: block;
  margin-top: 18px;
  width: 100%;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

.metric .count {
  display: inline-flex;
  align-items: flex-end;
  margin-top: 0;
  min-width: max-content;
  height: 0.95em;
  color: var(--orange);
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: inherit;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  line-height: 0.95;
  white-space: nowrap;
  overflow: hidden;
}

.count-char {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  justify-content: center;
  min-width: 0.58em;
  height: 0.95em;
  overflow: hidden;
  line-height: 0.95;
  vertical-align: top;
}

.count-char:not(.static-char)::before,
.count-char:not(.static-char)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  z-index: 2;
  height: 22%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.count-char:not(.static-char)::before {
  top: 0;
  background: linear-gradient(180deg, rgba(247, 247, 247, 0.78), rgba(247, 247, 247, 0));
}

.count-char:not(.static-char)::after {
  bottom: 0;
  background: linear-gradient(0deg, rgba(247, 247, 247, 0.78), rgba(247, 247, 247, 0));
}

.count.is-rolling .count-char:not(.static-char)::before,
.count.is-rolling .count-char:not(.static-char)::after {
  opacity: 0.46;
}

.count.is-settling .count-char:not(.static-char)::before,
.count.is-settling .count-char:not(.static-char)::after {
  opacity: 0;
  transition: opacity 0.72s cubic-bezier(0.45, 0, 0.55, 1) 0.06s;
}

.count-char.static-char {
  min-width: 0.28em;
  overflow: visible;
}

.count-reel {
  display: grid;
  transform: translateY(0);
  transition: transform 1.34s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.count-reel span {
  display: block;
  height: 0.95em;
  line-height: 0.95em;
  text-align: center;
}

.hero-panel {
  position: relative;
  overflow: visible;
  width: 100%;
  margin: 0;
  transform: none;
  scroll-margin-top: 112px;
  padding: 28px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.74)),
    radial-gradient(circle at 100% 0%, rgba(255, 194, 77, 0.42), transparent 16rem);
  box-shadow: var(--shadow);
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: auto 0 0 10%;
  height: 140px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(217, 79, 55, 0.25), rgba(255, 194, 77, 0.2));
  filter: blur(28px);
  opacity: 0.82;
  pointer-events: none;
}

.hero-panel > * {
  position: relative;
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  color: var(--soft);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-panel h2 {
  margin: 34px 0 12px;
  font-size: 30px;
  line-height: 1.15;
}

.hero-panel p {
  margin: 0;
  color: #565656;
  line-height: 1.7;
}

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

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

.apply-form [data-required-field].has-error input,
.apply-form [data-required-field].has-error textarea,
.apply-form [data-required-field].has-error .custom-select-trigger {
  border-color: rgba(217, 79, 55, 0.78);
  box-shadow: 0 0 0 4px rgba(217, 79, 55, 0.12);
}

.form-error {
  min-height: 16px;
  color: #d94f37;
  font-size: 12px;
  font-style: normal;
  font-weight: 800;
  line-height: 1.25;
  opacity: 0;
  transform: translateY(-2px);
  transition:
    opacity 0.18s ease,
    transform 0.18s ease;
}

.has-error .form-error {
  opacity: 1;
  transform: translateY(0);
}

.custom-select-field {
  position: relative;
}

.custom-select-field.is-open {
  z-index: 5;
}

.apply-form span {
  color: #565656;
  font-size: 13px;
  font-weight: 700;
}

.apply-form input,
.apply-form select,
.apply-form textarea,
.custom-select-trigger {
  width: 100%;
  min-height: 48px;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: var(--radius);
  padding: 0 14px;
  outline: 0;
  background: rgba(247, 247, 247, 0.8);
}

.apply-form textarea {
  min-height: 116px;
  padding: 13px 14px;
  resize: none;
  color: #272727;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
}

.apply-form input::placeholder,
.apply-form textarea::placeholder {
  color: rgba(39, 39, 39, 0.42);
  font-weight: 400;
}

.case-description-field {
  grid-column: 1 / -1;
}

.apply-form input:focus,
.apply-form select:focus,
.apply-form textarea:focus,
.custom-select-trigger:focus {
  border-color: rgba(255, 138, 61, 0.9);
  box-shadow: 0 0 0 4px rgba(255, 194, 77, 0.22);
}

.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #272727;
  cursor: pointer;
  text-align: left;
}

.custom-select-trigger span {
  color: inherit;
  font-size: inherit;
  font-weight: 600;
}

.custom-select-trigger::after {
  content: "";
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(21, 21, 21, 0.48);
  border-bottom: 2px solid rgba(21, 21, 21, 0.48);
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.22s ease;
}

.custom-select-field.is-open .custom-select-trigger::after {
  transform: translateY(2px) rotate(225deg);
}

.custom-select-options {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  z-index: 6;
  display: grid;
  gap: 6px;
  margin-top: 0;
  padding: 8px;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 18px 42px rgba(21, 21, 21, 0.14);
  backdrop-filter: blur(22px) saturate(1.12);
}

.custom-select-options[hidden] {
  display: none;
}

.custom-select-options button {
  min-height: 38px;
  border: 0;
  border-radius: 7px;
  padding: 0 11px;
  color: #4b4b4b;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.custom-select-options button:hover,
.custom-select-options button[aria-selected="true"] {
  color: #151515;
  background: rgba(255, 194, 77, 0.18);
}

.apply-form > button {
  grid-column: 1 / -1;
  width: 100%;
  margin-top: 4px;
  cursor: pointer;
}

.panel-note {
  display: grid;
  grid-template-columns: 8px 1fr;
  gap: 12px;
  margin-top: 18px;
}

.panel-note span {
  margin-top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.panel-note p {
  font-size: 13px;
}

.metrics-band {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  width: min(1850px, calc(100% - (var(--page-gutter) * 2)));
  margin: 28px auto 82px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 168px;
  padding: 26px 18px;
  border-top: 0;
  border-bottom: 0;
  border-left: 0;
  border-radius: 0;
  background: transparent;
}

.metric:last-child {
  border-right: 0;
}

@media (max-width: 980px) and (min-width: 681px) {
  .metrics-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .metrics-band .metric:nth-child(2n) {
    border-right: 0;
  }
}

.metric strong {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  width: 100%;
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  font-size: var(--metric-number-size, clamp(66px, 6.3vw, 104px)) !important;
  line-height: 0.82;
}

.metric .metric-fit-probe {
  position: fixed !important;
  top: 0;
  left: -10000px;
  z-index: -1;
  width: max-content !important;
  min-width: 0 !important;
  visibility: hidden;
  pointer-events: none;
  contain: layout style paint;
}

@media (max-width: 980px) {
  .metrics-band {
    --metric-fit-min-size: 58px;
  }
}

@media (min-width: 981px) {
  .metrics-band {
    --metric-fit-min-size: 32px;
  }
}

.metric strong em {
  font-family:
    Inter, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-style: normal;
  color: var(--ink);
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transform: translateY(-9px);
}

.split-section {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(48px, 7vw, 110px);
  align-items: start;
  padding: 0 0 120px;
}

.funding-model-section {
  padding: 0 0 124px;
}

.funding-data-section {
  padding: clamp(38px, 4vw, 64px) 0 40px;
}

.funding-coverage-shell {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 4.8vw, 86px);
  align-items: center;
  padding: clamp(42px, 4.8vw, 78px);
  border: 1px solid rgba(255, 138, 61, 0.14);
  border-radius: 32px;
  background:
    radial-gradient(ellipse at 8% 4%, rgba(255, 194, 77, 0.15), transparent 26rem),
    radial-gradient(ellipse at 88% 94%, rgba(255, 138, 61, 0.08), transparent 34rem),
    linear-gradient(135deg, rgba(255, 251, 247, 0.92), rgba(251, 235, 221, 0.42));
  box-shadow:
    0 28px 72px rgba(157, 116, 78, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.funding-data-heading {
  display: grid;
  justify-items: start;
  align-self: center;
  max-width: 560px;
  margin: 0;
  text-align: left;
}

.funding-data-heading p:not(.section-label) {
  max-width: min(100%, 540px);
  margin-top: 26px;
  color: #55504c;
  font-size: 17px;
  line-height: 1.92;
}

.funding-data-heading h2 {
  max-width: 640px;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.08;
  white-space: nowrap;
}

.funding-model-heading {
  display: grid;
  justify-items: center;
  max-width: 1220px;
  margin-inline: auto;
  margin-bottom: clamp(38px, 5vw, 70px);
  text-align: center;
}

.funding-model-heading p {
  max-width: none;
}

.funding-model-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(28px, 4.5vw, 64px);
  align-items: stretch;
}

.funding-mode-experience {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
}

.funding-mode-tabs {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  width: min(100%, 760px);
  margin-inline: auto;
  padding: 8px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 194, 77, 0.22), transparent 18rem),
    radial-gradient(circle at 92% 100%, rgba(255, 138, 61, 0.16), transparent 22rem),
    rgba(255, 255, 255, 0.72);
}

.funding-mode-tab {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 16px;
  text-align: center;
  color: #5f5f5f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.78)),
    linear-gradient(120deg, rgba(21, 21, 21, 0.1), rgba(21, 21, 21, 0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
  cursor: pointer;
  transition:
    color 0.22s ease,
    background-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.funding-mode-tab::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.5), transparent 8rem),
    linear-gradient(120deg, rgba(255, 194, 77, 0.22), rgba(255, 138, 61, 0.18), rgba(217, 79, 55, 0.12));
  transition: opacity 0.42s ease;
  pointer-events: none;
}

.funding-mode-tab:hover:not(.is-active) {
  color: #252525;
  background-image:
    linear-gradient(rgba(255, 249, 236, 0.9), rgba(255, 249, 236, 0.9)),
    var(--button-outline-flow);
  background-position:
    0 0,
    100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.12),
    0 12px 30px rgba(255, 138, 61, 0.1);
}

.funding-mode-tab.is-active {
  color: #191919;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  background-position: 100% 50%;
  box-shadow: 0 12px 28px rgba(255, 138, 61, 0.2);
}

.funding-mode-tab.is-active::before {
  opacity: 1;
}

.funding-mode-tab strong {
  position: relative;
  z-index: 1;
}

.funding-mode-tab strong {
  color: inherit;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.12;
  font-weight: 880;
}

.funding-mode-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: clamp(26px, 4.2vw, 64px);
  min-height: clamp(520px, 45vw, 640px);
  padding: clamp(28px, 4.5vw, 58px);
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 194, 77, 0.24), transparent 23rem),
    radial-gradient(circle at 100% 100%, rgba(255, 138, 61, 0.16), transparent 26rem),
    rgba(255, 255, 255, 0.68);
  box-shadow: 0 24px 80px rgba(21, 21, 21, 0.08);
}

.funding-mode-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(21, 21, 21, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(circle at 72% 48%, black, transparent 72%);
  opacity: 0.68;
  pointer-events: none;
}

.funding-mode-copy,
.funding-mode-demo {
  position: relative;
  z-index: 1;
}

.funding-mode-copy {
  align-self: center;
  display: grid;
  align-content: center;
  gap: 18px;
  min-width: 0;
}

.funding-mode-copy h3 {
  max-width: 680px;
  margin: 0;
  color: #181818;
  font-size: clamp(34px, 3.2vw, 54px);
  font-weight: 860;
  line-height: 1.08;
}

.funding-mode-copy p:not(.section-label) {
  max-width: 680px;
  margin: 0;
  color: #5f5f5f;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.78;
}

.funding-mode-copy ul {
  display: grid;
  gap: 12px;
  max-width: 640px;
  margin: 6px 0 0;
  padding: 0;
  list-style: none;
}

.funding-mode-copy li {
  position: relative;
  padding-left: 22px;
  color: #3d3d3d;
  font-size: 15px;
  line-height: 1.68;
}

.funding-mode-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-image: var(--button-flow);
  box-shadow: 0 0 18px rgba(255, 138, 61, 0.34);
}

.funding-mode-copy.is-switching {
  animation: mode-copy-in 0.58s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.funding-mode-demo {
  align-self: stretch;
  min-width: 0;
}

.funding-mode-demo.is-switching .demo-window {
  animation: demo-window-switch 0.62s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.demo-window {
  position: relative;
  overflow: visible;
  height: 100%;
  min-height: 500px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  color: #ffffff;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 194, 77, 0.35), transparent 18rem),
    radial-gradient(circle at 72% 64%, rgba(255, 138, 61, 0.28), transparent 20rem),
    linear-gradient(135deg, #17120f 0%, #0f0e0e 58%, #1d130f 100%);
  box-shadow:
    0 30px 90px rgba(21, 21, 21, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.demo-window::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.34;
  pointer-events: none;
}

.demo-window-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 8px;
  height: 54px;
  padding: 0 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.demo-window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
}

.demo-window-bar span:first-child {
  background: rgba(255, 138, 61, 0.78);
}

.demo-window-bar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
}

.demo-stage {
  position: relative;
  z-index: 1;
  display: block;
  height: calc(100% - 54px);
  min-height: 446px;
  padding: clamp(22px, 3vw, 34px);
}

.demo-form-card,
.demo-analysis-card {
  position: relative;
  z-index: 2;
  align-self: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
}

.demo-form-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  animation: demo-form-float 5.2s ease-in-out infinite;
}

.demo-field {
  display: grid;
  gap: 7px;
  min-height: 68px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.demo-field span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
}

.demo-field strong {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 820;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.demo-field.is-filled {
  border-color: rgba(255, 194, 77, 0.32);
  background: rgba(255, 194, 77, 0.08);
}

.demo-submit-line {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 50px;
  padding: 0 16px;
  border-radius: 999px;
  color: #181818;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  animation: demo-button-flow 4.4s ease-in-out infinite;
  font-size: 14px;
  font-weight: 900;
}

.demo-submit-line i {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.demo-analysis-card {
  overflow: hidden;
  align-self: center;
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 250px;
  padding: 26px;
}

.demo-analysis-card p {
  margin: 0 0 14px;
  color: #ffc24d;
  font-size: 13px;
  font-weight: 900;
}

.demo-analysis-card strong {
  color: #ffffff;
  font-size: clamp(58px, 7vw, 86px);
  line-height: 0.9;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.demo-analysis-card > span {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  font-weight: 760;
}

.demo-scan-line {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 194, 77, 0.2), transparent);
  transform: translateX(-110%);
  animation: demo-scan 3.2s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.demo-flow-path {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.demo-flow-path span {
  position: absolute;
  left: 46%;
  width: clamp(70px, 8vw, 118px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 194, 77, 0), rgba(255, 194, 77, 0.72), rgba(255, 138, 61, 0));
  transform-origin: left center;
  animation: demo-path 2.8s ease-in-out infinite;
}

.demo-flow-path span:nth-child(1) {
  top: 35%;
}

.demo-flow-path span:nth-child(2) {
  top: 50%;
  animation-delay: 0.35s;
}

.demo-flow-path span:nth-child(3) {
  top: 65%;
  animation-delay: 0.7s;
}

.demo-orbit {
  position: absolute;
  inset: 18px;
  pointer-events: none;
}

.demo-orbit i {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ffc24d;
  box-shadow: 0 0 22px rgba(255, 194, 77, 0.62);
  animation: demo-pulse 2.4s ease-in-out infinite;
}

.demo-orbit i:nth-child(1) {
  left: 8%;
  top: 18%;
}

.demo-orbit i:nth-child(2) {
  right: 18%;
  top: 22%;
  animation-delay: 0.4s;
}

.demo-orbit i:nth-child(3) {
  left: 36%;
  bottom: 10%;
  animation-delay: 0.8s;
}

.demo-orbit i:nth-child(4) {
  right: 8%;
  bottom: 18%;
  animation-delay: 1.2s;
}

.funding-mode-demo[data-demo-state="due"] .demo-form-card {
  gap: 12px;
}

.funding-mode-demo[data-demo-state="due"] .demo-submit-line,
.funding-mode-demo[data-demo-state="funding"] .demo-submit-line,
.funding-mode-demo[data-demo-state="success"] .demo-submit-line {
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(90deg, rgba(255, 194, 77, 0.2) var(--demo-progress, 68%), rgba(255, 255, 255, 0.08) 0),
    rgba(255, 255, 255, 0.08);
}

.funding-mode-demo[data-demo-state="due"] .demo-submit-line {
  --demo-progress: 74%;
}

.funding-mode-demo[data-demo-state="funding"] .demo-submit-line {
  --demo-progress: 92%;
}

.funding-mode-demo[data-demo-state="success"] .demo-submit-line {
  --demo-progress: 100%;
}

.demo-stage {
  display: block;
}

.screening-demo {
  --demo-cycle: 9.2s;
  position: relative;
  overflow: visible;
  display: grid;
  place-items: center;
  height: 100%;
  min-height: 446px;
  padding: clamp(16px, 2.8vw, 30px);
}

.screening-demo::before,
.screening-demo::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 28px;
  pointer-events: none;
}

.screening-demo::before {
  border: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.8;
}

.screening-demo::after {
  background: radial-gradient(circle at 50% 50%, rgba(255, 194, 77, 0.2), transparent 24rem);
  opacity: 0;
  transform: scale(0.78);
  animation: screening-scene-glow var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-card {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  overflow: hidden;
  width: min(100% - 36px, 560px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.05)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 76px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.screening-card > p {
  margin: 0;
  color: rgba(255, 194, 77, 0.92);
  font-size: 13px;
  font-weight: 900;
}

.screening-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 2.4vw, 28px);
  transform-origin: center center;
  animation: screening-form-scene var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-form::before,
.screening-form::after {
  content: none;
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.screening-form::before {
  z-index: 2;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255, 194, 77, 0.15), rgba(255, 138, 61, 0.08) 42%, rgba(12, 12, 12, 0.92) 100%),
    rgba(20, 18, 16, 0.94);
  opacity: 0;
  animation: screening-form-morph-skin var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-form::after {
  content: none;
  z-index: 3;
  display: grid;
  align-content: center;
  gap: 4px;
  padding: 16px 18px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 14px;
  font-weight: 900;
  line-height: 1.2;
  white-space: pre-line;
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.96);
  animation: screening-form-morph-label var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-field {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 70px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  transform-origin: center center;
}

.screening-field::after {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 11px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 194, 77, 0), rgba(255, 194, 77, 0.9), rgba(255, 138, 61, 0));
  transform: scaleX(0);
  transform-origin: left center;
  animation: screening-field-line var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-field:nth-of-type(2)::after {
  animation-delay: 0.34s;
}

.screening-field:nth-of-type(3)::after {
  animation-delay: 0.68s;
}

.screening-field span,
.screening-match-row span {
  color: rgba(255, 255, 255, 0.47);
  font-size: 12px;
  font-weight: 760;
}

.screening-field strong {
  overflow: hidden;
  max-width: max-content;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 850;
  line-height: 1.25;
  white-space: nowrap;
  clip-path: inset(0 100% 0 0);
  animation: screening-type var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-field:nth-of-type(2) strong {
  animation-delay: 0.34s;
}

.screening-field:nth-of-type(3) strong {
  animation-delay: 0.68s;
}

.screening-submit,
.screening-complete {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 17px;
  color: #181818;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  cursor: default;
  font-size: 14px;
  font-weight: 900;
}

.screening-submit {
  animation:
    demo-button-flow 4.4s ease-in-out infinite,
    screening-submit-click var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-submit::after,
.screening-complete::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.68), transparent);
  transform: translateX(-110%);
}

.screening-submit::after {
  animation: screening-submit-sweep var(--demo-cycle) ease infinite;
}

.screening-submit i {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
}

.screening-submit span,
.screening-complete span {
  position: relative;
  z-index: 1;
}

.screening-transition {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.screening-transition::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 4;
  width: min(68%, 470px);
  height: 72px;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 194, 77, 0.08), transparent 64%),
    rgba(15, 14, 13, 0.78);
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 30%, #000 70%, transparent);
  opacity: 0;
  transform: translate(-50%, -50%) scaleX(0.94);
  animation: collector-mouth-mask var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: opacity, transform;
}

.collector-form {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  display: grid;
  gap: 6px;
  width: 218px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 194, 77, 0.2);
  border-radius: 16px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(28, 24, 21, 0.78);
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, -128px, 0) scale(0.52);
}

.collector-form span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
  font-weight: 820;
}

.collector-form strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 15px;
  font-weight: 900;
  line-height: 1.15;
}

.collector-form-alt:nth-of-type(1) {
  animation: collector-form-left var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.collector-form-alt:nth-of-type(2) {
  animation: collector-form-right var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.collector-form-alt:nth-of-type(3) {
  animation: collector-form-back var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.collector-slot {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 5;
  width: min(62%, 430px);
  height: 30px;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: collector-slot-open var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  isolation: isolate;
}

.collector-slot::before,
.collector-slot::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: 50%;
  background:
    linear-gradient(90deg, rgba(255, 194, 77, 0.03), rgba(255, 194, 77, 0.34), rgba(255, 138, 61, 0.3)),
    rgba(12, 12, 12, 0.76);
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.18),
    inset 0 12px 18px rgba(0, 0, 0, 0.34),
    0 0 34px rgba(255, 138, 61, 0.14);
  opacity: 0;
  will-change: transform, opacity;
}

.collector-slot::before {
  left: 0;
  border-radius: 999px 0 0 999px;
  transform: translateX(-7%);
  animation: collector-slot-left-close var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.collector-slot::after {
  right: 0;
  border-radius: 0 999px 999px 0;
  transform: translateX(7%);
  animation: collector-slot-right-close var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.collector-slot > span {
  position: absolute;
  left: 16px;
  right: 16px;
  top: 50%;
  z-index: 3;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 194, 77, 0), rgba(255, 218, 118, 0.9), rgba(255, 138, 61, 0));
  transform: translateY(-50%) scaleX(0);
  transform-origin: center center;
  animation: collector-slot-pulse var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-transition i {
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 62%;
  width: min(76%, 540px);
  height: 122px;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 194, 77, 0.24), transparent 66%);
  filter: blur(12px);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  animation: collector-glow var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-transition b {
  position: absolute;
  z-index: 0;
  inset: -18%;
  background: linear-gradient(115deg, transparent 36%, rgba(255, 194, 77, 0.12), rgba(255, 138, 61, 0.14), transparent 62%);
  opacity: 0;
  transform: translateX(-36%) skewX(-10deg);
  animation: collector-wipe var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-match {
  display: grid;
  gap: 13px;
  padding: clamp(20px, 2.4vw, 28px);
  transform-origin: center center;
  animation: screening-match-scene var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-match-row {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 46px;
  padding: 0 14px 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.052);
  opacity: 0.3;
  transform: translate3d(0, 12px, 0);
  animation: screening-row-check var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-match-row:nth-of-type(2) {
  animation-delay: 0.24s;
}

.screening-match-row:nth-of-type(3) {
  animation-delay: 0.48s;
}

.screening-match-row::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-image: var(--button-flow);
  transform: translateY(-50%) scale(0.4);
  opacity: 0;
  animation: screening-check-dot var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-match-row:nth-of-type(2)::before {
  animation-delay: 0.24s;
}

.screening-match-row:nth-of-type(3)::before {
  animation-delay: 0.48s;
}

.screening-match-row strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 850;
}

.screening-complete {
  margin-top: 3px;
  justify-content: center;
  opacity: 0.28;
  transform: translate3d(0, 10px, 0);
  animation: screening-complete-click var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-complete::after {
  animation: screening-complete-sweep var(--demo-cycle) ease infinite;
}

.screening-result {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 8;
  display: grid;
  justify-items: center;
  gap: 14px;
  width: min(78%, 360px);
  padding: 30px 30px 28px;
  border: 1px solid rgba(255, 194, 77, 0.24);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 194, 77, 0.28), transparent 13rem),
    linear-gradient(145deg, rgba(30, 22, 16, 0.92), rgba(15, 14, 14, 0.88));
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.32),
    0 0 54px rgba(255, 138, 61, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(18px);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, 14px, 0) scale(0.94);
  animation: screening-result-in var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-result::before,
.screening-result::after {
  content: none;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  opacity: 0;
  background: #ffc24d;
  box-shadow:
    -92px -62px 0 rgba(255, 194, 77, 0.9),
    -66px 58px 0 rgba(255, 138, 61, 0.92),
    -26px -86px 0 rgba(255, 194, 77, 0.82),
    38px 76px 0 rgba(255, 138, 61, 0.86),
    86px -48px 0 rgba(255, 194, 77, 0.9),
    108px 24px 0 rgba(255, 138, 61, 0.72);
  pointer-events: none;
}

.screening-result::after {
  width: 5px;
  height: 5px;
  background: #ffffff;
  box-shadow:
    -118px -18px 0 rgba(255, 255, 255, 0.86),
    -52px -102px 0 rgba(255, 194, 77, 0.82),
    6px 96px 0 rgba(255, 255, 255, 0.72),
    68px -92px 0 rgba(255, 138, 61, 0.86),
    124px 58px 0 rgba(255, 194, 77, 0.82);
}

.screening-result p {
  margin: 0;
  color: #ffc24d;
  font-size: 13px;
  font-weight: 900;
}

.screening-result strong {
  display: none;
  color: #ffffff;
  font-size: clamp(54px, 6vw, 82px);
  line-height: 0.9;
  font-weight: 920;
  font-variant-numeric: tabular-nums;
}

.screening-result span {
  color: rgba(255, 255, 255, 0.94);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1;
  font-weight: 930;
}

.screening-cursor {
  position: absolute;
  z-index: 9;
  left: 50%;
  top: 50%;
  width: 28px;
  height: 28px;
  pointer-events: none;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.28));
  animation: screening-cursor var(--demo-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.screening-cursor::before {
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(0 0, 0 100%, 28% 76%, 43% 100%, 56% 93%, 42% 70%, 76% 70%);
  background: #ffffff;
}

.diligence-demo {
  --due-cycle: 10.8s;
  --due-lens-scale: 2;
  --due-lens-offset-x: 0px;
  --due-lens-offset-y: 0px;
  --due-mask-x: 50%;
  --due-mask-y: 50%;
  --due-mask-radius: 58px;
  --due-panel-width: 560px;
  --due-panel-height: 370px;
  position: relative;
  display: none;
  overflow: hidden;
  height: 100%;
  min-height: 446px;
  border-radius: 22px;
  isolation: isolate;
}

.funding-mode-demo[data-demo-state="due"] .screening-demo {
  display: none;
}

.funding-mode-demo[data-demo-state="due"] .diligence-demo {
  display: block;
}

.funding-mode-demo[data-demo-state="funding"] .screening-demo,
.funding-mode-demo[data-demo-state="funding"] .diligence-demo {
  display: none;
}

.funding-mode-demo[data-demo-state="funding"] .funding-support-demo {
  display: block;
}

.funding-mode-demo[data-demo-state="success"] .demo-window {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.diligence-ambient {
  position: absolute;
  inset: 9%;
  border-radius: 28px;
  background:
    radial-gradient(circle at 26% 24%, rgba(255, 194, 77, 0.2), transparent 18rem),
    radial-gradient(circle at 72% 72%, rgba(255, 138, 61, 0.17), transparent 20rem),
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.024) 1px, transparent 1px);
  background-size: auto, auto, 34px 34px, 34px 34px;
  opacity: 0.82;
  pointer-events: none;
}

.diligence-list-panel,
.diligence-desk {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(100% - 36px, 560px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 76px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(20px);
}

.diligence-list-panel {
  z-index: 2;
  overflow: hidden;
  height: min(78%, 370px);
  padding: 22px 22px 0;
  -webkit-mask-image: linear-gradient(#000, #000);
  mask-image: linear-gradient(#000, #000);
  -webkit-mask-position: top left;
  mask-position: top left;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 0%;
  mask-size: 100% 0%;
  transform: translate(-50%, -50%);
  animation: diligence-list-panel var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: mask-size, opacity;
}

.diligence-list-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  height: 74px;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, rgba(23, 18, 15, 0.64), rgba(23, 18, 15, 0.28) 58%, rgba(23, 18, 15, 0)),
    rgba(23, 18, 15, 0.06);
  -webkit-mask-image: linear-gradient(180deg, #000 0 48%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 48%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  pointer-events: none;
}

.diligence-list-panel > p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(255, 194, 77, 0.16);
  border-radius: 999px;
  background: rgba(18, 16, 15, 0.46);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  color: rgba(255, 194, 77, 0.94);
  font-size: 13px;
  font-weight: 900;
}

.diligence-list-track {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  animation: diligence-list-scroll var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform;
}

.diligence-row {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 820;
}

.diligence-row i {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 194, 77, 0.32);
  border-radius: 50%;
  background: rgba(255, 194, 77, 0.08);
  animation: diligence-check-dot var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.diligence-row i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #151515;
  border-bottom: 2px solid #151515;
  opacity: 0;
  transform: translate(-50%, -58%) rotate(-45deg) scale(0.78);
  animation: diligence-check-mark var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.diligence-row:nth-child(2) i,
.diligence-row:nth-child(2) i::after {
  animation-delay: 0.18s;
}

.diligence-row:nth-child(3) i,
.diligence-row:nth-child(3) i::after {
  animation-delay: 0.36s;
}

.diligence-row:nth-child(4) i,
.diligence-row:nth-child(4) i::after {
  animation-delay: 0.54s;
}

.diligence-row:nth-child(5) i,
.diligence-row:nth-child(5) i::after {
  animation-delay: 0.72s;
}

.diligence-row:nth-child(6) i,
.diligence-row:nth-child(6) i::after {
  animation-delay: 0.9s;
}

.diligence-row:nth-child(7) i,
.diligence-row:nth-child(7) i::after {
  animation-delay: 1.08s;
}

.diligence-row:nth-child(8) i,
.diligence-row:nth-child(8) i::after {
  animation-delay: 1.26s;
}

.diligence-lens {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 5;
  width: 142px;
  height: 142px;
  border: 7px solid rgba(42, 28, 24, 0.96);
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.2), transparent 42%),
    rgba(255, 194, 77, 0.1);
  box-shadow:
    0 18px 42px rgba(16, 12, 10, 0.34),
    0 0 38px rgba(255, 194, 77, 0.18),
    inset 0 0 0 1px rgba(255, 218, 118, 0.16);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(-190px, -96px, 0) scale(0.74);
  animation: diligence-lens-scan var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.diligence-lens-mask {
  position: absolute;
  inset: 0;
  z-index: 4;
  overflow: hidden;
  clip-path: circle(var(--due-mask-radius) at var(--due-mask-x) var(--due-mask-y));
  background:
    radial-gradient(circle at var(--due-mask-x) var(--due-mask-y), rgba(45, 30, 22, 0.98), rgba(17, 14, 13, 0.98) 72%);
  opacity: 0;
  pointer-events: none;
  animation: diligence-lens-mask var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: clip-path, opacity;
}

.diligence-lens::after {
  content: "";
  position: absolute;
  left: calc(50% + 52px);
  top: calc(50% + 52px);
  width: 76px;
  height: 18px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(58, 38, 31, 0.98) 0 18%, rgba(255, 138, 61, 0.94) 18% 100%),
    linear-gradient(90deg, rgba(255, 218, 118, 0.92), rgba(255, 138, 61, 0.82));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 14px 24px rgba(17, 12, 10, 0.24),
    0 0 20px rgba(255, 138, 61, 0.18);
  transform: translate(0, -50%) rotate(45deg);
  transform-origin: left center;
}

.diligence-lens span {
  position: absolute;
  inset: 14px;
  z-index: 2;
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 32% 26%, rgba(255, 255, 255, 0.24), transparent 18%),
    linear-gradient(115deg, transparent 20%, rgba(255, 255, 255, 0.18), transparent 68%);
  animation: diligence-lens-glint var(--due-cycle) ease-in-out infinite;
  pointer-events: none;
}

.diligence-lens-panel {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--due-panel-width, 516px);
  height: var(--due-panel-height, 370px);
  padding: 22px 22px 0;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.035)),
    #1d1714;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 26px 76px rgba(0, 0, 0, 0.22);
  opacity: 1;
  transform:
    translate3d(var(--due-lens-offset-x), var(--due-lens-offset-y), 0)
    scale(var(--due-lens-scale));
  transform-origin: 0 0;
  will-change: transform;
}

.diligence-lens-panel::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  z-index: 1;
  height: 74px;
  border-radius: 22px 22px 0 0;
  background:
    linear-gradient(180deg, rgba(23, 18, 15, 0.64), rgba(23, 18, 15, 0.28) 58%, rgba(23, 18, 15, 0)),
    rgba(23, 18, 15, 0.06);
  -webkit-mask-image: linear-gradient(180deg, #000 0 48%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0 48%, rgba(0, 0, 0, 0.72) 76%, transparent 100%);
  pointer-events: none;
}

.diligence-lens-panel > p {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin: 0 0 14px;
  padding: 0 12px;
  border: 1px solid rgba(255, 194, 77, 0.16);
  border-radius: 999px;
  background: rgba(18, 16, 15, 0.46);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.13);
  backdrop-filter: blur(12px);
  color: rgba(255, 194, 77, 0.94);
  font-size: 13px;
  font-weight: 900;
}

.diligence-lens-list-track {
  position: relative;
  z-index: 0;
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  animation: diligence-list-scroll var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform;
}

.diligence-lens-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(255, 194, 77, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-size: 13px;
  font-weight: 820;
  white-space: nowrap;
  filter: saturate(1.16) contrast(1.08);
}

.diligence-lens-row i {
  position: relative;
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #ffc24d;
  box-shadow: 0 0 16px rgba(255, 194, 77, 0.36);
}

.diligence-lens-row i::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 48%;
  width: 8px;
  height: 5px;
  border-left: 2px solid #151515;
  border-bottom: 2px solid #151515;
  transform: translate(-50%, -58%) rotate(-45deg);
}

.diligence-desk {
  z-index: 3;
  display: grid;
  place-items: center;
  overflow: visible;
  height: min(78%, 370px);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, 22px, 0) scale(0.94);
  animation: diligence-desk-in var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: clip-path, opacity, transform;
}

.funding-support-demo {
  --funding-cycle: 10.4s;
  position: relative;
  display: none;
  overflow: hidden;
  height: 100%;
  min-height: 446px;
  border-radius: 22px;
  perspective: 980px;
  isolation: isolate;
}

.funding-support-demo::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: transparent;
  opacity: 0;
  pointer-events: none;
}

.funding-mode-demo[data-demo-state="funding"] .demo-window::before {
  opacity: 0;
}

.funding-runway-scene,
.funding-scale-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  transform-style: preserve-3d;
}

.funding-runway-scene {
  animation: funding-runway-scene var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.funding-scale-scene {
  opacity: 0;
  animation: funding-scale-scene var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.funding-runway {
  position: absolute;
  left: 50%;
  bottom: -7%;
  width: min(142%, 980px);
  height: min(86%, 560px);
  clip-path: polygon(0% 100%, 100% 100%, 61.5% 10%, 38.5% 10%);
  background:
    radial-gradient(ellipse at 50% 13%, rgba(255, 194, 77, 0.13), transparent 24%),
    radial-gradient(ellipse at 50% 100%, rgba(255, 138, 61, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(28, 20, 15, 0.99), rgba(9, 8, 7, 0.995) 48%, #000 100%);
  box-shadow:
    inset 0 2px 0 rgba(255, 218, 118, 0.1),
    inset 0 -96px 126px rgba(0, 0, 0, 0.72),
    0 44px 110px rgba(0, 0, 0, 0.34);
  transform: translateX(-50%);
  transform-origin: center bottom;
  animation: funding-runway-breathe var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.funding-runway::before,
.funding-runway::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.funding-runway::before {
  background:
    linear-gradient(104deg, transparent 2%, rgba(255, 194, 77, 0.22) 2.26%, transparent 2.58%),
    linear-gradient(76deg, transparent 97.42%, rgba(255, 138, 61, 0.22) 97.74%, transparent 98%),
    repeating-linear-gradient(180deg, rgba(255, 194, 77, 0.16) 0 1px, transparent 1px 56px);
  opacity: 0.58;
  animation: funding-runway-grid 0.86s linear infinite;
}

.funding-runway::after {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(255, 138, 61, 0.18), transparent 36%),
    linear-gradient(180deg, transparent 0 52%, rgba(255, 194, 77, 0.1) 72%, rgba(255, 138, 61, 0.16));
  mix-blend-mode: screen;
  opacity: 0.68;
}

.funding-runway-horizon {
  position: absolute;
  left: 50%;
  top: 20%;
  z-index: 1;
  width: min(34%, 270px);
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 194, 77, 0.58), transparent);
  box-shadow: 0 0 34px rgba(255, 194, 77, 0.32);
  opacity: 0.62;
  transform: translateX(-50%);
}

.runway-line {
  position: absolute;
  top: 13.4%;
  bottom: 0;
  z-index: 2;
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 194, 77, 0), rgba(255, 194, 77, 0.52), rgba(255, 138, 61, 0.12));
  opacity: 0.42;
  transform-origin: center top;
}

.runway-line-left {
  left: 37.2%;
  transform: rotate(-16deg);
}

.runway-line-center {
  left: 50%;
  opacity: 0.58;
  box-shadow: 0 0 22px rgba(255, 194, 77, 0.28);
}

.runway-line-right {
  right: 37.2%;
  transform: rotate(16deg);
}

.funding-fee {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 84px;
  min-height: 30px;
  border: 1px solid rgba(255, 194, 77, 0.2);
  border-radius: 999px;
  padding: 0 13px 0 10px;
  color: rgba(255, 255, 255, 0.9);
  background:
    linear-gradient(135deg, rgba(255, 194, 77, 0.16), rgba(255, 138, 61, 0.08)),
    rgba(12, 11, 10, 0.88);
  box-shadow:
    0 14px 34px rgba(0, 0, 0, 0.22),
    0 0 0 rgba(255, 194, 77, 0);
  font-size: 12px;
  font-weight: 900;
  transform: translate(-50%, -50%) translate3d(var(--fee-x), var(--fee-y), 0) scale(var(--fee-scale, 1));
  will-change: opacity, transform, box-shadow;
}

.funding-fee em {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 194, 77, 0.46);
  box-shadow: 0 0 0 rgba(255, 194, 77, 0);
  animation: funding-fee-dot 1.8s cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fee-legal {
  --fee-x: -44px;
  --fee-y: 136px;
  --fee-scale: 1.12;
  animation: funding-fee-legal var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fee-arbitration {
  --fee-x: -30px;
  --fee-y: 42px;
  --fee-scale: 0.84;
  animation: funding-fee-arbitration var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fee-preserve {
  --fee-x: 24px;
  --fee-y: -12px;
  --fee-scale: 0.72;
  animation: funding-fee-preserve var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fee-expert {
  --fee-x: 0px;
  --fee-y: -66px;
  --fee-scale: 0.62;
  animation: funding-fee-expert var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.fee-court {
  --fee-x: 40px;
  --fee-y: 92px;
  --fee-scale: 0.98;
  animation: funding-fee-court var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.funding-orb,
.scale-orb {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 6;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.96), rgba(255, 218, 118, 0.78) 18%, rgba(255, 138, 61, 0.94) 58%, rgba(169, 72, 28, 0.95));
  box-shadow:
    inset -10px -12px 18px rgba(78, 30, 15, 0.28),
    inset 7px 7px 18px rgba(255, 255, 255, 0.3),
    0 18px 48px rgba(255, 138, 61, 0.26),
    0 0 44px rgba(255, 194, 77, 0.3);
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

.funding-orb {
  animation: funding-orb-hop var(--funding-cycle) cubic-bezier(0.18, 0.82, 0.24, 1) infinite;
}

.funding-orb-shadow {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 3;
  width: 104px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.42), transparent 70%);
  opacity: 0;
  transform: translate(-50%, -50%);
  animation: funding-orb-shadow var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.funding-orb i,
.scale-orb i {
  position: absolute;
  left: 15%;
  top: 12%;
  width: 28%;
  height: 22%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.76);
  filter: blur(1px);
}

.funding-lift-glow {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 4;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 194, 77, 0.3), transparent 64%);
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.5);
  animation: funding-lift-glow var(--funding-cycle) ease-in-out infinite;
}

.funding-scale {
  position: relative;
  width: min(86%, 560px);
  height: 360px;
  transform-style: preserve-3d;
}

.scale-beam {
  position: absolute;
  left: 50%;
  top: 42%;
  z-index: 3;
  width: 78%;
  height: 8px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 194, 77, 0.26), rgba(255, 255, 255, 0.42), rgba(255, 138, 61, 0.28)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 28px rgba(255, 194, 77, 0.18);
  transform: translateX(-50%) rotate(-8deg);
  transform-origin: center center;
  animation: scale-beam-balance var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.scale-pivot {
  position: absolute;
  left: 50%;
  top: 43%;
  z-index: 4;
  width: 18px;
  height: 132px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 218, 118, 0.88), rgba(255, 138, 61, 0.34));
  box-shadow: 0 0 30px rgba(255, 138, 61, 0.18);
  transform: translateX(-50%);
}

.scale-pivot::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 166px;
  height: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  transform: translateX(-50%);
}

.scale-pan {
  position: absolute;
  top: 52%;
  z-index: 2;
  width: 164px;
  height: 42px;
  border: 1px solid rgba(255, 194, 77, 0.18);
  border-radius: 50%;
  background:
    radial-gradient(ellipse at 50% 35%, rgba(255, 255, 255, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 -10px 18px rgba(0, 0, 0, 0.2),
    0 18px 46px rgba(0, 0, 0, 0.2);
}

.pan-left {
  left: 3%;
  animation: pan-left-move var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pan-right {
  right: 3%;
  animation: pan-right-move var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pressure-weight {
  position: absolute;
  left: 15%;
  top: 38%;
  z-index: 5;
  display: grid;
  place-items: center;
  width: 96px;
  height: 82px;
  border-radius: 22px 22px 18px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.03)),
    rgba(48, 41, 36, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 24px 46px rgba(0, 0, 0, 0.26);
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 930;
  animation: pressure-weight-out var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
  will-change: transform, opacity;
}

.pressure-weight::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -22px;
  width: 42px;
  height: 28px;
  border: 8px solid rgba(255, 255, 255, 0.18);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
}

.scale-orb {
  left: 76%;
  top: 22%;
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, -140px, 0) scale(0.74);
  animation: scale-orb-drop var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pressure-burst {
  position: absolute;
  left: 22%;
  top: 40%;
  z-index: 7;
  width: 160px;
  height: 120px;
  pointer-events: none;
}

.pressure-burst span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 46px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 194, 77, 0), rgba(255, 218, 118, 0.9), rgba(255, 138, 61, 0));
  opacity: 0;
  animation: pressure-burst var(--funding-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.pressure-burst span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(-18deg);
}

.pressure-burst span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(14deg);
  animation-delay: 0.08s;
}

.pressure-burst span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(42deg);
  animation-delay: 0.14s;
}

.funding-support-demo {
  --funding-cycle: 9.2s;
  --support-structure: #020403;
  --support-paper: #fffaf2;
  perspective: none;
}

.support-wheel-scene {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 194, 77, 0.16), transparent 18rem),
    linear-gradient(180deg, #f8f5ee 0%, #f1ede4 100%);
}

.support-wheel-scene::before {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(2, 4, 3, 0.08);
  opacity: 0.7;
}

.support-wheel-scene::after {
  display: none;
}

.support-field {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  pointer-events: none;
  display: none;
  transform: translate(-50%, -50%);
}

.support-field-one {
  width: min(54%, 330px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 194, 77, 0.15);
  background:
    radial-gradient(circle at 50% 50%, transparent 34%, rgba(255, 194, 77, 0.08) 35%, transparent 36%),
    conic-gradient(from 120deg, transparent, rgba(255, 194, 77, 0.16), transparent, rgba(255, 138, 61, 0.12), transparent);
  mask-image: radial-gradient(circle, transparent 34%, #000 35%, #000 72%, transparent 73%);
  opacity: 0;
  animation: none;
}

.support-field-two {
  width: min(38%, 230px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: conic-gradient(from -60deg, rgba(255, 138, 61, 0.22), transparent, rgba(255, 194, 77, 0.18), transparent);
  mask-image: radial-gradient(circle, transparent 45%, #000 46%, #000 74%, transparent 75%);
  opacity: 0;
  animation: none;
}

.support-orb-group {
  position: absolute;
  left: 50%;
  top: 62%;
  z-index: 8;
  width: clamp(440px, 74vw, 620px);
  height: clamp(270px, 48vw, 390px);
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, 96px, 0) scale(0.86) rotate(0deg);
  transform-origin: 50% 60%;
  will-change: transform, opacity;
}

.support-orb {
  position: absolute;
  left: 50%;
  top: 36%;
  z-index: 4;
  width: clamp(112px, 22vw, 164px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 244, 183, 0.4), transparent 32%),
    linear-gradient(145deg, #ffdc68 0%, #ff9c35 42%, #ff6433 74%, #ffc85c 100%);
  background-size: 180% 180%;
  box-shadow:
    inset -18px -20px 34px rgba(143, 52, 20, 0.34),
    inset 10px 10px 28px rgba(255, 235, 156, 0.14),
    0 18px 44px rgba(255, 118, 46, 0.26);
  transform: translate(-50%, -50%);
  animation: none;
  will-change: transform, opacity, background-position;
}

.support-orb::before,
.support-orb::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  pointer-events: none;
}

.support-orb::before {
  display: none;
}

.support-orb::after {
  display: none;
}

.support-base {
  position: absolute;
  left: 50%;
  bottom: -18%;
  z-index: 2;
  width: 150%;
  height: 58%;
  border: 0;
  border-radius: 34px 34px 0 0;
  background: var(--support-structure);
  box-shadow: 0 -18px 44px rgba(0, 0, 0, 0.08);
  transform: translateX(-50%);
  overflow: visible;
}

.support-base::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -38%;
  z-index: 1;
  width: clamp(240px, 42vw, 360px);
  height: clamp(190px, 34vw, 286px);
  border-radius: 0 0 999px 999px;
  background: #f5f1e8;
  box-shadow: 0 0 0 26px #f5f1e8;
  transform: translateX(-50%);
}

.support-base::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -22%;
  z-index: 3;
  width: clamp(196px, 34vw, 292px);
  height: clamp(156px, 27vw, 226px);
  border-radius: 0 0 999px 999px;
  background: transparent;
  box-shadow: inset 0 -28px 0 #f5f1e8;
  transform: translateX(-50%);
  pointer-events: none;
}

.support-base span {
  display: none;
}

.support-base span:nth-child(1) {
  left: 18px;
}

.support-base span:nth-child(2) {
  left: 48px;
  background: rgba(255, 138, 61, 0.42);
}

.support-base span:nth-child(3) {
  right: 18px;
}

.support-wheel {
  display: none;
}

.support-fees {
  position: absolute;
  inset: 0;
  z-index: 7;
  pointer-events: none;
}

.support-fees::before {
  display: none;
}

.support-ring,
.support-dial {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  pointer-events: none;
}

.support-ring {
  border: 1px solid rgba(255, 194, 77, 0.18);
  box-shadow:
    inset 0 0 32px rgba(255, 138, 61, 0.06),
    0 0 42px rgba(255, 194, 77, 0.12);
}

.support-dial {
  background:
    conic-gradient(from 0deg, transparent 0 14%, rgba(255, 194, 77, 0.32) 15% 17%, transparent 18% 33%, rgba(255, 138, 61, 0.22) 34% 36%, transparent 37% 55%, rgba(255, 218, 118, 0.25) 56% 58%, transparent 59% 100%);
  mask-image: radial-gradient(circle, transparent 35%, #000 36%, #000 53%, transparent 54%);
  animation: support-dial-spin var(--funding-cycle) cubic-bezier(0.7, 0, 0.2, 1) infinite;
}

.support-fee-chip {
  --chip-x: 0px;
  --chip-y: 0px;
  --chip-emit-x: 0px;
  --chip-emit-y: 0px;
  --chip-absorb-x: 0px;
  --chip-absorb-y: 0px;
  --chip-delay: 0s;
  --chip-pop: 1;
  position: absolute;
  left: 71%;
  top: 54%;
  z-index: 7;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-width: 122px;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: var(--support-paper);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
  color: #141414;
  font-size: 15px;
  font-weight: 900;
  opacity: 0;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scaleX(0.12) scaleY(0.82) rotate(var(--chip-angle, 0deg));
  transform-origin: 100% 50%;
  animation: none;
  will-change: transform, opacity, box-shadow;
}

.support-fee-chip em {
  display: none;
}

.funding-support-demo[data-support-phase="emit"] .support-base::before,
.funding-support-demo[data-support-phase="wheel"] .support-base::before {
  animation: support-base-mouth 1.1s ease-in-out infinite;
}

.chip-legal {
  --chip-x: -220px;
  --chip-y: -132px;
  --chip-emit-x: -82px;
  --chip-emit-y: -52px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: -10px;
  --chip-angle: 14deg;
  --chip-delay: 0s;
  --chip-pop: 0.88;
}

.chip-court {
  --chip-x: -276px;
  --chip-y: -34px;
  --chip-emit-x: -92px;
  --chip-emit-y: -8px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: 0px;
  --chip-angle: 0deg;
  --chip-delay: 0.12s;
  --chip-pop: 0.94;
}

.chip-arbitration {
  --chip-x: -222px;
  --chip-y: 76px;
  --chip-emit-x: -82px;
  --chip-emit-y: 44px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: 10px;
  --chip-angle: -14deg;
  --chip-delay: 0.24s;
  --chip-pop: 1;
}

.chip-preserve {
  --chip-x: -156px;
  --chip-y: 134px;
  --chip-emit-x: -66px;
  --chip-emit-y: 70px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: 18px;
  --chip-angle: -10deg;
  --chip-delay: 0.36s;
  --chip-pop: 0.96;
}

.chip-expert {
  --chip-x: -158px;
  --chip-y: -186px;
  --chip-emit-x: -60px;
  --chip-emit-y: -80px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: -18px;
  --chip-angle: 12deg;
  --chip-delay: 0.48s;
  --chip-pop: 0.92;
}

.chip-execution {
  --chip-x: -238px;
  --chip-y: 26px;
  --chip-emit-x: -74px;
  --chip-emit-y: 20px;
  --chip-absorb-x: -22px;
  --chip-absorb-y: 4px;
  --chip-angle: -3deg;
  --chip-delay: 0.6s;
  --chip-pop: 0.88;
}

.support-result-card {
  position: absolute;
  left: 68%;
  top: 50%;
  z-index: 9;
  display: grid;
  gap: 10px;
  width: min(76%, 360px);
  border: 1px solid rgba(255, 194, 77, 0.28);
  border-radius: 24px;
  padding: 26px 28px 28px;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 218, 118, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(255, 194, 77, 0.18), rgba(255, 101, 52, 0.1)),
    rgba(14, 13, 12, 0.92);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 24px 76px rgba(0, 0, 0, 0.34),
    0 0 58px rgba(255, 138, 61, 0.22);
  color: #fff;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.68);
  animation: none;
  will-change: transform, opacity;
}

.support-result-card span {
  color: #ffd86f;
  font-size: 14px;
  font-weight: 920;
}

.support-result-card strong {
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1;
  font-weight: 930;
  letter-spacing: 0;
}

.support-result-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 700;
}

.support-field,
.support-orb-group,
.support-orb,
.support-wheel,
.support-fee-chip,
.support-result-card {
  animation: none !important;
}

.support-field-one {
  transition: opacity 0.9s ease, transform 1.15s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-field-two {
  transition: opacity 0.9s ease 0.1s, transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) 0.1s;
}

.support-orb-group {
  transition:
    left 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.7s ease,
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-orb {
  background-position: var(--orb-shift, 0%) 50%;
  transition:
    opacity 0.72s ease,
    transform 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.9s ease;
}

.support-wheel {
  transition:
    opacity 0.76s ease,
    transform 0.95s cubic-bezier(0.16, 1, 0.3, 1);
}

.support-dial {
  opacity: 0;
  transform: rotate(var(--wheel-angle, 0deg)) scale(0.9);
  transition: opacity 0.72s ease, transform 0.42s linear;
}

.support-fee-chip {
  transition:
    opacity 0.56s ease,
    transform 0.98s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.72s ease;
  transition-delay: var(--chip-delay);
}

.support-result-card {
  transition:
    opacity 0.58s ease,
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
}

.funding-support-demo[data-support-phase="intro"] .support-field-one,
.funding-support-demo[data-support-phase="dock"] .support-field-one,
.funding-support-demo[data-support-phase="emit"] .support-field-one,
.funding-support-demo[data-support-phase="wheel"] .support-field-one,
.funding-support-demo[data-support-phase="result"] .support-field-one {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1) rotate(42deg);
}

.funding-support-demo[data-support-phase="intro"] .support-field-two,
.funding-support-demo[data-support-phase="dock"] .support-field-two,
.funding-support-demo[data-support-phase="emit"] .support-field-two,
.funding-support-demo[data-support-phase="wheel"] .support-field-two,
.funding-support-demo[data-support-phase="result"] .support-field-two {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1) rotate(-54deg);
}

.funding-support-demo[data-support-phase="intro"] .support-orb,
.funding-support-demo[data-support-phase="dock"] .support-orb,
.funding-support-demo[data-support-phase="emit"] .support-orb,
.funding-support-demo[data-support-phase="wheel"] .support-orb {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.funding-support-demo[data-support-phase="result"] .support-orb {
  opacity: 0.46;
  transform: translate(-50%, -50%);
}

.funding-support-demo[data-support-phase="intro"] .support-orb-group {
  left: 50%;
  top: 64%;
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.86) rotate(0deg);
}

.funding-support-demo[data-support-phase="dock"] .support-orb-group {
  left: 70%;
  top: 51%;
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.78) rotate(-90deg);
}

.funding-support-demo[data-support-phase="emit"] .support-orb-group,
.funding-support-demo[data-support-phase="wheel"] .support-orb-group,
.funding-support-demo[data-support-phase="result"] .support-orb-group {
  left: 72%;
  top: 51%;
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.78) rotate(-90deg);
}

.funding-support-demo[data-support-phase="emit"] .support-wheel,
.funding-support-demo[data-support-phase="wheel"] .support-wheel,
.funding-support-demo[data-support-phase="result"] .support-wheel {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

.funding-support-demo[data-support-phase="emit"] .support-dial,
.funding-support-demo[data-support-phase="wheel"] .support-dial,
.funding-support-demo[data-support-phase="result"] .support-dial {
  opacity: 0;
  transform: rotate(var(--wheel-angle, 0deg)) scale(1);
}

.funding-support-demo[data-support-phase="emit"] .support-wheel-scene::after,
.funding-support-demo[data-support-phase="wheel"] .support-wheel-scene::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(1);
}

.funding-support-demo[data-support-phase="emit"] .support-fees::before,
.funding-support-demo[data-support-phase="wheel"] .support-fees::before,
.funding-support-demo[data-support-phase="result"] .support-fees::before {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(-8deg) scale(1);
}

.funding-support-demo[data-support-phase="emit"] .support-fee-chip {
  opacity: 1 !important;
  transform: translate(-50%, -50%) translate3d(var(--chip-emit-x), var(--chip-emit-y), 0) scaleX(0.46) scaleY(0.92) rotate(var(--chip-angle)) !important;
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.16);
}

.funding-support-demo[data-support-phase="wheel"] .support-fee-chip {
  opacity: 1 !important;
  transform: translate(-50%, -50%) translate3d(var(--chip-x), var(--chip-y), 0) scale(1) rotate(var(--chip-angle)) !important;
  box-shadow:
    0 18px 42px rgba(0, 0, 0, 0.2);
}

.funding-support-demo[data-support-phase="result"] .support-fee-chip {
  opacity: 0 !important;
  transform: translate(-50%, -50%) translate3d(var(--chip-absorb-x), var(--chip-absorb-y), 0) scaleX(0.12) scaleY(0.82) rotate(var(--chip-angle)) !important;
}

.funding-support-demo[data-support-phase="result"] .support-result-card {
  opacity: 1 !important;
  transform: translate(-50%, -50%) scale(1) !important;
}

@keyframes support-ambient-pulse {
  0%,
  100% {
    opacity: 0.56;
    transform: scale(0.92);
  }
  28%,
  58% {
    opacity: 0.92;
    transform: scale(1);
  }
  78% {
    opacity: 0.72;
    transform: scale(1.06);
  }
}

@keyframes support-base-mouth {
  0%,
  100% {
    opacity: 0.54;
    transform: translateX(-50%) scaleX(0.9);
  }
  50% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1.14);
  }
}

@keyframes support-field-one {
  0%,
  8% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72) rotate(-20deg);
  }
  18%,
  66% {
    opacity: 0.82;
    transform: translate(-50%, -50%) scale(1) rotate(42deg);
  }
  78%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.18) rotate(82deg);
  }
}

@keyframes support-field-two {
  0%,
  14% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.62) rotate(24deg);
  }
  24%,
  64% {
    opacity: 0.72;
    transform: translate(-50%, -50%) scale(1) rotate(-54deg);
  }
  78%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.22) rotate(-88deg);
  }
}

@keyframes support-orb-flow {
  0% {
    opacity: 0;
    background-position: 0% 50%;
    transform: translate(-50%, -50%) scale(0.48);
  }
  9% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
  18% {
    opacity: 1;
    background-position: 54% 50%;
    transform: translate(-50%, -50%) scale(1);
  }
  40% {
    opacity: 1;
    background-position: 100% 50%;
    transform: translate(-50%, -50%) scale(0.96);
  }
  58% {
    opacity: 1;
    background-position: 36% 50%;
    transform: translate(-50%, -50%) scale(0.9);
  }
  66% {
    opacity: 0.42;
    transform: translate(-50%, -50%) scale(0.62);
  }
  75%,
  100% {
    opacity: 0;
    background-position: 0% 50%;
    transform: translate(-50%, -50%) scale(0.36);
  }
}

@keyframes support-orb-halo {
  0%,
  100% {
    opacity: 0.22;
    transform: scale(0.94);
  }
  24%,
  56% {
    opacity: 0.72;
    transform: scale(1.12);
  }
  68% {
    opacity: 0.3;
    transform: scale(1.32);
  }
}

@keyframes support-wheel-in {
  0%,
  14% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78) rotate(-18deg);
  }
  24%,
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.08) rotate(14deg);
  }
}

@keyframes support-dial-spin {
  0%,
  16% {
    opacity: 0;
    transform: rotate(-32deg) scale(0.9);
  }
  25% {
    opacity: 1;
    transform: rotate(28deg) scale(1);
  }
  58% {
    opacity: 1;
    transform: rotate(218deg) scale(1);
  }
  74%,
  100% {
    opacity: 0;
    transform: rotate(296deg) scale(1.06);
  }
}

@keyframes support-chip-orbit {
  0%,
  17% {
    opacity: 0;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 34px rgba(0, 0, 0, 0.24),
      0 0 0 rgba(255, 194, 77, 0);
    transform: translate(-50%, -50%) scale(0.48);
  }
  25% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--chip-near-x), var(--chip-near-y), 0) scale(0.92);
  }
  36%,
  52% {
    opacity: 1;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.24),
      0 0 28px rgba(255, 194, 77, 0.18);
    transform: translate(-50%, -50%) translate3d(var(--chip-x), var(--chip-y), 0) scale(1);
  }
  62% {
    opacity: 0.72;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.12),
      0 14px 34px rgba(0, 0, 0, 0.2),
      0 0 36px rgba(255, 194, 77, 0.34);
    transform: translate(-50%, -50%) translate3d(var(--chip-absorb-x), var(--chip-absorb-y), 0) scale(0.78);
  }
  72%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.42);
  }
}

@keyframes support-result-pop {
  0%,
  60% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.68);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.04);
  }
  78%,
  90% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.84);
  }
}

.diligence-paper {
  --paper-x: 0px;
  --paper-y: 0px;
  --paper-rot: 0deg;
  position: absolute;
  left: 50%;
  top: 54%;
  width: min(72%, 340px);
  min-height: 190px;
  border: 1px solid rgba(255, 194, 77, 0.16);
  border-radius: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 246, 224, 0.72)),
    #fff8e8;
  box-shadow:
    0 24px 68px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  color: #181818;
  transform-origin: center center;
  opacity: 0;
  animation: diligence-paper-drop var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.diligence-paper span {
  position: absolute;
  left: 20px;
  top: 18px;
  color: rgba(24, 24, 24, 0.52);
  font-size: 13px;
  font-weight: 900;
}

.paper-back {
  --paper-x: -22px;
  --paper-y: 20px;
  --paper-rot: -5deg;
  animation-delay: 0.12s;
}

.paper-mid {
  --paper-x: 18px;
  --paper-y: 10px;
  --paper-rot: 4deg;
  animation-delay: 0.24s;
}

.paper-front {
  --paper-x: 0px;
  --paper-y: 0px;
  --paper-rot: 0deg;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
  animation-delay: 0.36s;
}

.paper-front p {
  margin: 0;
  color: rgba(24, 24, 24, 0.54);
  font-size: 13px;
  font-weight: 900;
}

.paper-front strong {
  color: #151515;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.02;
  font-weight: 930;
}

.paper-front em {
  display: block;
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(24, 24, 24, 0.12);
}

.paper-front em:nth-of-type(2) {
  width: 82%;
}

.paper-front em:nth-of-type(3) {
  width: 64%;
}

.diligence-approval {
  position: absolute;
  left: 50%;
  top: 17%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border: 1px solid rgba(122, 255, 161, 0.34);
  border-radius: 999px;
  background: rgba(13, 31, 19, 0.74);
  box-shadow:
    0 0 46px rgba(122, 255, 161, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  font-weight: 920;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.86);
  animation: diligence-approval var(--due-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite;
}

.diligence-approval i {
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #7affa1;
  box-shadow: 0 0 24px rgba(122, 255, 161, 0.86);
}

@keyframes screening-type {
  0%,
  10% {
    clip-path: inset(0 100% 0 0);
  }
  19%,
  52% {
    clip-path: inset(0 0 0 0);
  }
  100% {
    clip-path: inset(0 100% 0 0);
  }
}

@keyframes screening-field-line {
  0%,
  8% {
    opacity: 0;
    transform: scaleX(0);
  }
  16%,
  28% {
    opacity: 1;
    transform: scaleX(1);
  }
  36%,
  100% {
    opacity: 0;
    transform: scaleX(1);
  }
}

@keyframes screening-form-detail-out {
  0%,
  38% {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
  43% {
    opacity: 0.22;
    filter: blur(4px);
    transform: translate3d(0, -6px, 0) scale(0.96);
  }
  48%,
  100% {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(0, -10px, 0) scale(0.92);
  }
}

@keyframes screening-form-morph-skin {
  0%,
  38% {
    opacity: 0;
  }
  43% {
    opacity: 0.72;
  }
  47%,
  63% {
    opacity: 1;
  }
  66%,
  100% {
    opacity: 0;
  }
}

@keyframes screening-form-morph-label {
  0%,
  39% {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(0.96);
  }
  44% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  48% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.98, 5.2);
  }
  58% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.94, 5.2);
  }
  64%,
  100% {
    opacity: 0;
    transform: translate3d(0, 4px, 0) scale(0.7, 4.8);
  }
}

@keyframes screening-form-scene {
  0% {
    opacity: 0.24;
    filter: blur(14px);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  5% {
    opacity: 0.52;
    filter: blur(8px);
    transform: translate(-50%, -50%) translate3d(0, 8px, 0) scale(0.98);
  }
  11% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1.03);
  }
  16%,
  43% {
    opacity: 1;
    filter: blur(0);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  47% {
    opacity: 0.88;
    filter: blur(0);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, -58px, 0) scale(0.48);
  }
  53% {
    opacity: 0;
    filter: blur(10px);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, -78px, 0) scale(0.28);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, -78px, 0) scale(0.28);
  }
}

@keyframes collector-slot-open {
  0%,
  43% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  49%,
  66% {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
  70% {
    opacity: 0.7;
    transform: translate(-50%, -50%);
  }
  76% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%);
  }
}

@keyframes collector-slot-left-close {
  0%,
  43% {
    opacity: 0;
    transform: translateX(-7%);
  }
  49%,
  68% {
    opacity: 1;
    transform: translateX(0);
  }
  74% {
    opacity: 0.72;
    transform: translateX(48%);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(56%);
  }
}

@keyframes collector-slot-right-close {
  0%,
  43% {
    opacity: 0;
    transform: translateX(7%);
  }
  49%,
  68% {
    opacity: 1;
    transform: translateX(0);
  }
  74% {
    opacity: 0.72;
    transform: translateX(-48%);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(-56%);
  }
}

@keyframes collector-slot-pulse {
  0%,
  45% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
  53%,
  66% {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
  }
  74%,
  100% {
    opacity: 0;
    transform: translateY(-50%) scaleX(0);
  }
}

@keyframes collector-mouth-mask {
  0%,
  47% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.9);
  }
  54%,
  68% {
    opacity: 1;
    transform: translate(-50%, -50%) scaleX(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scaleX(0.72);
  }
}

@keyframes funding-runway-scene {
  0%,
  6% {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.97);
  }
  11%,
  66% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  74% {
    opacity: 0;
    transform: translate3d(0, -70px, 0) scale(1.06);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -70px, 0) scale(1.06);
  }
}

@keyframes funding-runway-breathe {
  0%,
  10% {
    opacity: 0.72;
    transform: translateX(-50%) translate3d(0, 18px, 0) scale(0.985);
  }
  16%,
  62% {
    opacity: 1;
    transform: translateX(-50%) translate3d(0, 0, 0) scale(1);
  }
  74%,
  100% {
    opacity: 0.24;
    transform: translateX(-50%) translate3d(0, -18px, 0) scale(0.97);
  }
}

@keyframes funding-runway-grid {
  0% {
    background-position:
      0 0,
      0 0,
      0 0;
  }
  100% {
    background-position:
      0 0,
      0 0,
      0 112px;
  }
}

@keyframes funding-scale-scene {
  0%,
  68% {
    opacity: 0;
    transform: translate3d(0, 42px, 0) scale(0.94);
  }
  78%,
  92% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scale(0.98);
  }
}

@keyframes funding-fee-light {
  0%,
  14% {
    opacity: 0.5;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 0 rgba(255, 194, 77, 0);
    transform: translateX(-50%) translate3d(0, 0, 0) scale(var(--fee-scale));
  }
  22%,
  31% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 34px rgba(255, 194, 77, 0.38);
    transform: translateX(-50%) translate3d(0, -12px, 0) scale(var(--fee-scale));
  }
  42%,
  100% {
    opacity: 0.52;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 0 rgba(255, 194, 77, 0);
    transform: translateX(-50%) translate3d(0, 0, 0) scale(var(--fee-scale));
  }
}

@keyframes funding-fee-dot {
  0%,
  62% {
    background: rgba(255, 194, 77, 0.36);
    box-shadow: 0 0 0 rgba(255, 194, 77, 0);
  }
  68%,
  76% {
    background: #ffd86f;
    box-shadow:
      0 0 18px rgba(255, 194, 77, 0.82),
      0 0 34px rgba(255, 138, 61, 0.34);
  }
  92%,
  100% {
    background: rgba(255, 194, 77, 0.36);
    box-shadow: 0 0 0 rgba(255, 194, 77, 0);
  }
}

@keyframes funding-fee-legal {
  0%,
  12% {
    opacity: 0.92;
    transform: translate(-50%, -50%) translate3d(-44px, 136px, 0) scale(1.12) rotate(0deg);
  }
  15% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 38px rgba(255, 194, 77, 0.46);
    transform: translate(-50%, -50%) translate3d(-46px, 132px, 0) scale(1.2) rotate(0deg);
  }
  22%,
  71% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(-178px, 108px, 0) scale(0.8) rotate(-18deg);
  }
  76%,
  100% {
    opacity: 0.92;
    transform: translate(-50%, -50%) translate3d(-44px, 136px, 0) scale(1.12) rotate(0deg);
  }
}

@keyframes funding-fee-court {
  0%,
  19% {
    opacity: 0.9;
    transform: translate(-50%, -50%) translate3d(40px, 92px, 0) scale(0.98) rotate(0deg);
  }
  23% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 36px rgba(255, 194, 77, 0.42);
    transform: translate(-50%, -50%) translate3d(38px, 88px, 0) scale(1.08) rotate(0deg);
  }
  30%,
  71% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(148px, 72px, 0) scale(0.74) rotate(17deg);
  }
  76%,
  100% {
    opacity: 0.9;
    transform: translate(-50%, -50%) translate3d(40px, 92px, 0) scale(0.98) rotate(0deg);
  }
}

@keyframes funding-fee-arbitration {
  0%,
  27% {
    opacity: 0.86;
    transform: translate(-50%, -50%) translate3d(-30px, 42px, 0) scale(0.84) rotate(0deg);
  }
  31% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 34px rgba(255, 194, 77, 0.38);
    transform: translate(-50%, -50%) translate3d(-28px, 38px, 0) scale(0.94) rotate(0deg);
  }
  38%,
  71% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(-128px, 24px, 0) scale(0.64) rotate(-15deg);
  }
  76%,
  100% {
    opacity: 0.86;
    transform: translate(-50%, -50%) translate3d(-30px, 42px, 0) scale(0.84) rotate(0deg);
  }
}

@keyframes funding-fee-preserve {
  0%,
  35% {
    opacity: 0.82;
    transform: translate(-50%, -50%) translate3d(24px, -12px, 0) scale(0.72) rotate(0deg);
  }
  40% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 30px rgba(255, 194, 77, 0.38);
    transform: translate(-50%, -50%) translate3d(22px, -16px, 0) scale(0.82) rotate(0deg);
  }
  47%,
  71% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(104px, -34px, 0) scale(0.52) rotate(16deg);
  }
  76%,
  100% {
    opacity: 0.82;
    transform: translate(-50%, -50%) translate3d(24px, -12px, 0) scale(0.72) rotate(0deg);
  }
}

@keyframes funding-fee-expert {
  0%,
  44% {
    opacity: 0.78;
    transform: translate(-50%, -50%) translate3d(0, -66px, 0) scale(0.62) rotate(0deg);
  }
  49% {
    opacity: 1;
    box-shadow:
      0 14px 34px rgba(0, 0, 0, 0.22),
      0 0 30px rgba(255, 194, 77, 0.36);
    transform: translate(-50%, -50%) translate3d(0, -70px, 0) scale(0.72) rotate(0deg);
  }
  56%,
  71% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(-66px, -104px, 0) scale(0.44) rotate(-14deg);
  }
  76%,
  100% {
    opacity: 0.78;
    transform: translate(-50%, -50%) translate3d(0, -66px, 0) scale(0.62) rotate(0deg);
  }
}

@keyframes funding-orb-hop {
  0%,
  6% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 190px, 0) scale(1.26) rotate(0deg);
  }
  10% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 168px, 0) scale(1.22) rotate(80deg);
  }
  15% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(-44px, 132px, 0) scale(1.12) rotate(165deg);
  }
  23% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(40px, 88px, 0) scale(1) rotate(315deg);
  }
  31% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(-30px, 38px, 0) scale(0.84) rotate(480deg);
  }
  40% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(24px, -16px, 0) scale(0.72) rotate(655deg);
  }
  49% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, -70px, 0) scale(0.62) rotate(830deg);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, -146px, 0) scale(0.48) rotate(1040deg);
  }
  71%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, -218px, 0) scale(0.34) rotate(1240deg);
  }
}

@keyframes funding-orb-shadow {
  0%,
  6% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 222px, 0) scale(1.36, 0.74);
  }
  10% {
    opacity: 0.38;
    transform: translate(-50%, -50%) translate3d(0, 204px, 0) scale(1.32, 0.72);
  }
  15% {
    opacity: 0.26;
    transform: translate(-50%, -50%) translate3d(-44px, 164px, 0) scale(1.12, 0.62);
  }
  23% {
    opacity: 0.24;
    transform: translate(-50%, -50%) translate3d(40px, 124px, 0) scale(0.94, 0.54);
  }
  31% {
    opacity: 0.18;
    transform: translate(-50%, -50%) translate3d(-30px, 70px, 0) scale(0.78, 0.44);
  }
  40% {
    opacity: 0.14;
    transform: translate(-50%, -50%) translate3d(24px, 14px, 0) scale(0.64, 0.36);
  }
  49% {
    opacity: 0.08;
    transform: translate(-50%, -50%) translate3d(0, -38px, 0) scale(0.52, 0.3);
  }
  60%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, -88px, 0) scale(0.28, 0.22);
  }
}

@keyframes funding-lift-glow {
  0%,
  52% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.5);
  }
  64% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.2);
  }
  74%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.48);
  }
}

@keyframes scale-beam-balance {
  0%,
  58% {
    transform: translateX(-50%) rotate(-8deg);
  }
  67% {
    transform: translateX(-50%) rotate(5deg);
  }
  76%,
  92% {
    transform: translateX(-50%) rotate(0deg);
  }
  100% {
    transform: translateX(-50%) rotate(-5deg);
  }
}

@keyframes pan-left-move {
  0%,
  58% {
    transform: translate3d(0, 20px, 0);
  }
  67% {
    transform: translate3d(0, -12px, 0);
  }
  76%,
  92% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes pan-right-move {
  0%,
  58% {
    transform: translate3d(0, -12px, 0);
  }
  67% {
    transform: translate3d(0, 18px, 0);
  }
  76%,
  92% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes scale-orb-drop {
  0%,
  57% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, -150px, 0) scale(0.72);
  }
  63% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, -92px, 0) scale(0.92);
  }
  70% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 46px, 0) scale(1.08);
  }
  78%,
  92% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 34px, 0) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 12px, 0) scale(0.84);
  }
}

@keyframes pressure-weight-out {
  0%,
  61% {
    opacity: 1;
    transform: translate3d(0, 28px, 0) rotate(-2deg);
  }
  70% {
    opacity: 1;
    transform: translate3d(-20px, -8px, 0) rotate(-9deg);
  }
  76% {
    opacity: 0.2;
    transform: translate3d(-138px, -86px, 0) rotate(-28deg) scale(0.68);
  }
  100% {
    opacity: 0;
    transform: translate3d(-168px, -102px, 0) rotate(-32deg) scale(0.58);
  }
}

@keyframes pressure-burst {
  0%,
  66% {
    opacity: 0;
    translate: 0 0;
    scale: 0.6;
  }
  72% {
    opacity: 1;
    translate: -32px -20px;
    scale: 1.2;
  }
  80%,
  100% {
    opacity: 0;
    translate: -84px -48px;
    scale: 1.48;
  }
}

@keyframes collector-form-left {
  0%,
  44% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) translate3d(-152px, -126px, 0) scale(0.42) rotate(-5deg);
  }
  49% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(-122px, -108px, 0) scale(0.68) rotate(-3deg);
  }
  58% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(-42px, -18px, 0) scale(0.5) rotate(-1deg);
  }
  63% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(-16px, 28px, 0) scale(0.28) rotate(-0.4deg);
  }
  66% {
    opacity: 0.28;
    filter: blur(3px);
    transform: translate(-50%, -50%) translate3d(0, 54px, 0) scale(0.08) rotate(0deg);
  }
  68% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
}

@keyframes collector-form-right {
  0%,
  45% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) translate3d(150px, -122px, 0) scale(0.42) rotate(5deg);
  }
  50% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(122px, -104px, 0) scale(0.68) rotate(3deg);
  }
  59% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(42px, -18px, 0) scale(0.5) rotate(1deg);
  }
  64% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(16px, 28px, 0) scale(0.28) rotate(0.4deg);
  }
  67% {
    opacity: 0.28;
    filter: blur(3px);
    transform: translate(-50%, -50%) translate3d(0, 54px, 0) scale(0.08) rotate(0deg);
  }
  69% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
}

@keyframes collector-form-back {
  0%,
  46% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) translate3d(0, -162px, 0) scale(0.4) rotate(0deg);
  }
  51% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, -148px, 0) scale(0.64) rotate(0deg);
  }
  60% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, -28px, 0) scale(0.48) rotate(0deg);
  }
  65% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, 24px, 0) scale(0.26) rotate(0deg);
  }
  68% {
    opacity: 0.28;
    filter: blur(3px);
    transform: translate(-50%, -50%) translate3d(0, 54px, 0) scale(0.08) rotate(0deg);
  }
  70% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
  100% {
    opacity: 0;
    filter: blur(6px);
    transform: translate(-50%, -50%) translate3d(0, 58px, 0) scale(0.04) rotate(0deg);
  }
}

@keyframes screening-scene-glow {
  0%,
  42% {
    opacity: 0;
    transform: scale(0.78);
  }
  48%,
  60% {
    opacity: 1;
    transform: scale(1.16);
  }
  72%,
  100% {
    opacity: 0;
    transform: scale(1.28);
  }
}

@keyframes collector-glow {
  0%,
  44% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.72);
  }
  53%,
  65% {
    opacity: 0.86;
    transform: translate(-50%, -50%) scale(1);
  }
  76%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.14);
  }
}

@keyframes collector-wipe {
  0%,
  43% {
    opacity: 0;
    transform: translateX(-36%) skewX(-10deg);
  }
  50% {
    opacity: 0.74;
  }
  65% {
    opacity: 0.48;
    transform: translateX(34%) skewX(-10deg);
  }
  76%,
  100% {
    opacity: 0;
    transform: translateX(34%) skewX(-10deg);
  }
}

@keyframes screening-submit-click {
  0%,
  32% {
    transform: scale(1);
    box-shadow: none;
  }
  39% {
    transform: scale(0.975);
    box-shadow: 0 0 0 8px rgba(255, 194, 77, 0.1);
  }
  44%,
  100% {
    transform: scale(1);
    box-shadow: none;
  }
}

@keyframes screening-submit-sweep {
  0%,
  34% {
    transform: translateX(-120%);
  }
  44% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes screening-match-scene {
  0%,
  70% {
    opacity: 0;
    filter: blur(14px);
    transform: translate(-50%, -50%) translate3d(36px, 14px, 0) scale(0.9);
  }
  75% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1.02);
  }
  78%,
  90% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  94%,
  99% {
    opacity: 0.26;
    filter: blur(9px);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.985);
  }
  100% {
    opacity: 0;
    filter: blur(10px);
    transform: translate(-50%, -50%) translate3d(0, -18px, 0) scale(0.96);
  }
}

@keyframes screening-row-check {
  0%,
  74% {
    opacity: 0.3;
    transform: translate3d(0, 12px, 0);
  }
  79%,
  88% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  100% {
    opacity: 0.3;
    transform: translate3d(0, 12px, 0);
  }
}

@keyframes screening-check-dot {
  0%,
  76% {
    opacity: 0;
    transform: translateY(-50%) scale(0.4);
  }
  81%,
  89% {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translateY(-50%) scale(0.4);
  }
}

@keyframes screening-complete-click {
  0%,
  82% {
    opacity: 0.28;
    transform: translate3d(0, 10px, 0) scale(1);
  }
  85% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(0.976);
  }
  91%,
  99% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    opacity: 0.28;
    transform: translate3d(0, 10px, 0) scale(1);
  }
}

@keyframes screening-complete-sweep {
  0%,
  86% {
    transform: translateX(-120%);
  }
  92% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(120%);
  }
}

@keyframes screening-result-in {
  0%,
  88% {
    opacity: 0;
    filter: blur(10px);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 14px, 0) scale(0.94);
  }
  90% {
    opacity: 1;
    filter: blur(0);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  97% {
    opacity: 1;
    filter: blur(0);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  99% {
    opacity: 0.46;
    filter: blur(8px);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 2px, 0) scale(1.34, 1.42);
  }
  100% {
    opacity: 0.2;
    filter: blur(14px);
    border-radius: 22px;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1.56, 1.78);
  }
}

@keyframes screening-confetti {
  0%,
  89% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.08) rotate(0deg);
    animation-timing-function: cubic-bezier(0.12, 0.88, 0.18, 1);
  }
  91.5% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.32) rotate(10deg);
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  }
  96% {
    opacity: 0.58;
    transform: translate(-50%, -50%) scale(1.56) rotate(17deg);
  }
  99% {
    opacity: 0.14;
    transform: translate(-50%, -50%) scale(1.68) rotate(21deg);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.7) rotate(21deg);
  }
}

@keyframes screening-cursor {
  0%,
  7% {
    opacity: 0;
    transform: translate3d(-168px, -136px, 0) scale(0.94);
  }
  12% {
    opacity: 1;
    transform: translate3d(158px, -118px, 0) scale(1);
  }
  20% {
    opacity: 1;
    transform: translate3d(158px, -28px, 0) scale(1);
  }
  29% {
    opacity: 1;
    transform: translate3d(158px, 58px, 0) scale(1);
  }
  37% {
    opacity: 1;
    transform: translate3d(150px, 154px, 0) scale(1);
  }
  41% {
    opacity: 1;
    transform: translate3d(150px, 154px, 0) scale(0.9);
  }
  47% {
    opacity: 1;
    transform: translate3d(150px, 154px, 0) scale(1);
  }
  51% {
    opacity: 0;
    transform: translate3d(150px, 154px, 0) scale(0.96);
  }
  74% {
    opacity: 0;
    transform: translate3d(-68px, 52px, 0) scale(0.96);
  }
  83% {
    opacity: 1;
    transform: translate3d(0, 106px, 0) scale(1);
  }
  88% {
    opacity: 1;
    transform: translate3d(0, 106px, 0) scale(0.9);
  }
  91% {
    opacity: 1;
    transform: translate3d(0, 106px, 0) scale(1);
  }
  94% {
    opacity: 0;
    transform: translate3d(0, 106px, 0) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translate3d(0, 106px, 0) scale(0.96);
  }
}

@keyframes diligence-list-panel {
  0% {
    opacity: 0;
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    transform: translate(-50%, -50%);
  }
  8% {
    opacity: 1;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: translate(-50%, -50%);
  }
  48% {
    opacity: 1;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: translate(-50%, -50%);
  }
  58% {
    opacity: 0.12;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: translate(-50%, -50%);
  }
  88% {
    opacity: 0;
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    transform: translate(-50%, -50%);
  }
  96% {
    opacity: 0;
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    -webkit-mask-size: 100% 0%;
    mask-size: 100% 0%;
    transform: translate(-50%, -50%);
  }
}

@keyframes diligence-list-scroll {
  0%,
  10% {
    transform: translate3d(0, 0, 0);
  }
  48% {
    transform: translate3d(0, -214px, 0);
  }
  58%,
  94% {
    transform: translate3d(0, -246px, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes diligence-check-dot {
  0%,
  13% {
    border-color: rgba(255, 194, 77, 0.32);
    background: rgba(255, 194, 77, 0.08);
    transform: scale(1);
  }
  18% {
    border-color: rgba(255, 218, 118, 0.9);
    background: #ffc24d;
    box-shadow: 0 0 18px rgba(255, 194, 77, 0.38);
    transform: scale(1.08);
  }
  28%,
  52% {
    border-color: rgba(255, 218, 118, 0.84);
    background: #ffc24d;
    box-shadow: 0 0 14px rgba(255, 194, 77, 0.2);
    transform: scale(1);
  }
  62%,
  100% {
    border-color: rgba(255, 194, 77, 0.18);
    background: rgba(255, 194, 77, 0.04);
    box-shadow: none;
    transform: scale(0.96);
  }
}

@keyframes diligence-check-mark {
  0%,
  15% {
    opacity: 0;
    transform: translate(-50%, -58%) rotate(-45deg) scale(0.62);
  }
  20%,
  54% {
    opacity: 1;
    transform: translate(-50%, -58%) rotate(-45deg) scale(1);
  }
  64%,
  100% {
    opacity: 0;
    transform: translate(-50%, -58%) rotate(-45deg) scale(0.72);
  }
}

@keyframes diligence-lens-scan {
  0%,
  20% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(-218px, -96px, 0) scale(0.74);
  }
  26% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(-160px, -78px, 0) scale(1);
  }
  38% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(-74px, -12px, 0) scale(1.03);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(26px, 86px, 0) scale(0.98);
  }
  55%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(84px, 118px, 0) scale(0.82);
  }
}

@keyframes diligence-lens-glint {
  0%,
  26% {
    opacity: 0;
    transform: translateX(-28px) rotate(8deg);
  }
  38% {
    opacity: 1;
    transform: translateX(8px) rotate(8deg);
  }
  52%,
  100% {
    opacity: 0;
    transform: translateX(34px) rotate(8deg);
  }
}

@keyframes diligence-lens-mask {
  0%,
  20% {
    opacity: 0;
  }
  26%,
  50% {
    opacity: 1;
  }
  55%,
  100% {
    opacity: 0;
  }
}

@keyframes diligence-desk-in {
  0%,
  50% {
    opacity: 0;
    clip-path: inset(0 0 0 0 round 22px);
    transform: translate(-50%, -50%) translate3d(0, 26px, 0) scale(0.94);
  }
  58% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 22px);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  84% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 22px);
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(1);
  }
  92% {
    opacity: 0.62;
    clip-path: inset(0 0 58% 0 round 22px);
    transform: translate(-50%, -50%);
  }
  100% {
    opacity: 0.72;
    clip-path: inset(0 0 86% 0 round 22px);
    transform: translate(-50%, -50%);
  }
}

@keyframes diligence-paper-drop {
  0%,
  50% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, -180px, 0) scale(0.78) rotate(-4deg);
  }
  58% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--paper-x), calc(var(--paper-y) + 14px), 0) scale(1.04) rotate(calc(var(--paper-rot) + 2deg));
  }
  65% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--paper-x), var(--paper-y), 0) scale(1) rotate(var(--paper-rot));
  }
  84% {
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(var(--paper-x), var(--paper-y), 0) scale(1) rotate(var(--paper-rot));
  }
  92% {
    opacity: 0.5;
    transform: translate(-50%, -50%) translate3d(var(--paper-x), var(--paper-y), 0) scale(0.96) rotate(var(--paper-rot));
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(var(--paper-x), var(--paper-y), 0) scale(0.96) rotate(var(--paper-rot));
  }
}

@keyframes diligence-approval {
  0%,
  62% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.86);
  }
  68% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.08);
  }
  78%,
  91% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  94% {
    opacity: 0.2;
    transform: translate(-50%, -50%) scale(1.08);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes mode-copy-in {
  0% {
    opacity: 0;
    transform: translate3d(22px, 12px, 0);
    filter: blur(8px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes demo-window-switch {
  0% {
    opacity: 0.2;
    transform: translate3d(28px, 14px, 0) scale(0.985);
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
    filter: blur(0);
  }
}

@keyframes demo-form-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  50% {
    transform: translate3d(0, -8px, 0);
  }
}

@keyframes demo-button-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes demo-scan {
  0% {
    transform: translateX(-120%);
  }
  62%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes demo-path {
  0%,
  100% {
    opacity: 0.18;
    transform: translateX(-16px) scaleX(0.55);
  }
  44% {
    opacity: 0.72;
    transform: translateX(8px) scaleX(1);
  }
}

@keyframes demo-pulse {
  0%,
  100% {
    opacity: 0.24;
    transform: scale(0.72);
  }
  50% {
    opacity: 0.92;
    transform: scale(1.28);
  }
}

.coverage-panel {
  --map-glow-x: 76%;
  --map-glow-y: 48%;
  --card-left: 0px;
  --card-top: 0px;
  --card-origin-x: 50%;
  --card-origin-y: 50%;
  position: relative;
  overflow: visible;
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: clamp(460px, 38vw, 640px);
  padding: clamp(6px, 1vw, 12px) 0 0;
  border-radius: 0;
  color: #151515;
  background: transparent;
  box-shadow: none;
}

.coverage-map-heading {
  position: absolute;
  top: clamp(6px, 1.2vw, 18px);
  right: 0;
  z-index: 8;
  color: #ff8a3d;
  font-size: 30px;
  line-height: 1.15;
  font-weight: 850;
  letter-spacing: 0;
}

.coverage-panel::before {
  display: none;
}

.coverage-panel > * {
  position: relative;
  z-index: 1;
}

.coverage-map-copy {
  position: absolute;
  left: var(--card-left);
  top: var(--card-top);
  z-index: 6;
  pointer-events: none;
  display: grid;
  gap: 0;
  width: clamp(248px, 24vw, 286px);
  min-width: 0;
  padding: clamp(16px, 1.75vw, 22px);
  border: 1px solid rgba(25, 25, 25, 0.08);
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 250, 240, 0.78)),
    radial-gradient(circle at 0% 0%, rgba(255, 194, 77, 0.18), transparent 12rem);
  box-shadow:
    0 24px 62px rgba(18, 18, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(18px);
  transform: translate3d(0, 0, 0) scale(1);
  transform-origin: var(--card-origin-x) var(--card-origin-y);
  will-change: transform, left, top;
  transition:
    left 0.64s cubic-bezier(0.16, 1, 0.3, 1),
    top 0.64s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.56s ease,
    box-shadow 0.56s ease,
    opacity 0.44s ease,
    filter 0.44s ease,
    border-radius 0.64s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.68s cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage-map-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 3px;
  border-radius: 999px;
  background: var(--button-flow);
}

.coverage-map-copy strong {
  display: block;
  color: #181818;
  font-size: clamp(22px, 1.75vw, 30px);
  font-weight: 840;
  line-height: 1.1;
  transition:
    opacity 0.46s ease,
    transform 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.46s ease;
}

.coverage-map-copy p {
  min-height: 0;
  margin: clamp(12px, 1.2vw, 16px) 0 0;
  color: #666666;
  font-size: 14px;
  line-height: 1.62;
  transition:
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.32s ease;
}

.coverage-map-copy.is-switching {
  opacity: 0.08;
  filter: blur(9px) saturate(1.16);
  border-radius: 28px;
  box-shadow:
    0 0 0 10px rgba(255, 194, 77, 0.12),
    0 0 44px rgba(255, 138, 61, 0.22);
  transform: translate3d(0, 0, 0) scale(0.08);
}

.coverage-map-copy.is-switching p,
.coverage-map-copy.is-switching strong {
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(10px, 6px, 0);
}

.coverage-map {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(420px, 35vw, 600px);
  margin: 0 0 14px;
}

.coverage-map-canvas {
  position: relative;
  width: min(100%, 1060px);
  aspect-ratio: 695.61 / 511.7;
}

.coverage-map-real {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
  opacity: 1;
  filter: none;
  mix-blend-mode: normal;
}

.coverage-map-real svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.coverage-map-real img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
  filter: grayscale(1) contrast(1.16) brightness(0.72);
}

.coverage-map-real svg path {
  fill: rgba(255, 255, 255, 0) !important;
  stroke: rgba(53, 50, 45, 0.5) !important;
  stroke-width: 0.46px !important;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
  transition:
    stroke 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.72s ease;
}

.coverage-map-real svg .coverage-highlight-layer {
  pointer-events: none;
}

.coverage-map-real svg .coverage-highlight-layer .coverage-highlight-state {
  stroke: rgba(255, 138, 61, 0.7) !important;
  stroke-width: 0.54px !important;
  opacity: 0;
  transform-box: fill-box;
  transform-origin: center;
  transform: scale(0.992);
  filter: drop-shadow(0 12px 24px rgba(255, 138, 61, 0.12));
  transition:
    opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.78s ease;
}

.coverage-map-real svg .coverage-highlight-layer .coverage-highlight-fallback {
  fill: var(--coverage-fill, #ffb24a) !important;
  fill-opacity: 0.74 !important;
  stroke: rgba(255, 138, 61, 0.42) !important;
  stroke-width: 0.46px !important;
  filter: blur(0.08px) drop-shadow(0 10px 22px rgba(255, 138, 61, 0.1));
  mix-blend-mode: normal;
}

.coverage-map-real svg .coverage-highlight-layer .coverage-highlight-gradient {
  fill: url(#coverage-highlight-gradient) !important;
  fill-opacity: 0.42 !important;
  mix-blend-mode: normal;
}

.coverage-map-real svg .coverage-highlight-layer.is-visible .coverage-highlight-state {
  opacity: 0.86;
  transform: scale(1);
}

.coverage-map-real svg .coverage-highlight-layer.is-visible .coverage-highlight-gradient {
  opacity: 0.96;
}

.coverage-map-real svg .coverage-highlight-layer.is-exiting .coverage-highlight-state {
  opacity: 0;
  transform: scale(1.006);
}

.coverage-map-real.is-map-unavailable::before {
  content: "地图暂未载入";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #777777;
  font-size: 14px;
}

.coverage-spark-field {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.coverage-spark {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--spark-size, 4px);
  height: var(--spark-size, 4px);
  border-radius: 50%;
  background: rgba(255, 213, 90, 0.8);
  box-shadow:
    0 0 10px rgba(255, 194, 77, 0.28),
    0 0 22px rgba(255, 138, 61, 0.16);
  opacity: 0.18;
  transform: translate(-50%, -50%) scale(0.72);
  animation: coverage-spark-twinkle var(--spark-duration, 3.6s) ease-in-out infinite;
  animation-delay: var(--spark-delay, 0s);
}

.coverage-spark.is-hot {
  width: var(--spark-size, 5px);
  height: var(--spark-size, 5px);
  background: rgba(255, 236, 160, 0.92);
  box-shadow:
    0 0 14px rgba(255, 194, 77, 0.38),
    0 0 30px rgba(255, 138, 61, 0.2);
}

.coverage-point {
  position: absolute;
  z-index: 5;
  left: var(--x);
  top: var(--y);
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: #ffd75a;
  box-shadow:
    0 0 0 8px rgba(255, 194, 77, 0.13),
    0 0 0 16px rgba(255, 138, 61, 0.05),
    0 0 30px rgba(255, 138, 61, 0.48);
  cursor: pointer;
  transform: translate(-50%, -50%);
  transition:
    background 0.12s ease,
    box-shadow 0.16s ease,
    opacity 0.38s ease,
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: 0ms;
}

.coverage-point::before {
  content: "";
  position: absolute;
  inset: -16px;
  border: 1px solid rgba(255, 194, 77, 0.36);
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.7);
  transition:
    opacity 0.34s ease,
    transform 0.34s cubic-bezier(0.16, 1, 0.3, 1);
}

.coverage-point::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: 50%;
  background: #fff4c6;
}

.coverage-point:hover,
.coverage-point.is-active {
  background: #ff8738;
  box-shadow:
    0 0 0 9px rgba(255, 138, 61, 0.14),
    0 0 34px rgba(255, 194, 77, 0.58);
  transition-delay: 0ms !important;
}

.coverage-point:hover::before,
.coverage-point.is-active::before {
  opacity: 1;
  transform: scale(1);
}

@keyframes coverage-spark-twinkle {
  0%,
  100% {
    opacity: 0.1;
    transform: translate(-50%, -50%) scale(0.62);
  }
  38% {
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(1);
  }
  62% {
    opacity: 0.22;
    transform: translate(-50%, -50%) scale(0.78);
  }
}

body.reveal-ready .funding-model-section:not(.funding-model-active) .funding-mode-tab,
body.reveal-ready .funding-model-section:not(.funding-model-active) .funding-mode-panel {
  opacity: 0;
  filter: blur(6px);
  transform: translate3d(0, 34px, 0) scale(0.99);
}

body.reveal-ready .funding-data-section:not(.funding-data-active) .coverage-panel {
  opacity: 0;
  filter: none;
  transform: translate3d(0, 34px, 0) scale(0.99);
}

body.reveal-ready .funding-model-section.funding-model-active .funding-mode-tab,
body.reveal-ready .funding-model-section.funding-model-active .funding-mode-panel {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--funding-delay, 0ms);
}

body.reveal-ready .funding-data-section.funding-data-active .coverage-panel {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition:
    opacity 0.78s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.78s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--funding-delay, 0ms);
}

body.reveal-ready .funding-model-section:not(.funding-model-active) .coverage-point {
  opacity: 1;
}

body.reveal-ready .funding-data-section:not(.funding-data-active) .coverage-point {
  opacity: 0;
  transform: translate(-50%, calc(-50% + 18px)) scale(0.68);
}

body.reveal-ready .funding-data-section.funding-data-active .coverage-point {
  transition-delay: var(--point-delay, 0ms);
}

@keyframes coverage-halo {
  0%,
  100% {
    opacity: 0.28;
    transform: scale(0.94);
  }
  50% {
    opacity: 0.54;
    transform: scale(1.04);
  }
}

.section-copy {
  position: sticky;
  top: 118px;
}

.section-copy h2,
.section-heading h2,
.anniversary-copy h2 {
  max-width: 840px;
  font-size: clamp(38px, 5.2vw, 76px);
}

.section-copy p:not(.section-label),
.section-heading p:not(.section-label),
.anniversary-copy p {
  max-width: min(100%, 760px);
  margin: 22px 0 0;
  color: #555555;
  font-size: 17px;
  line-height: 1.85;
}

.funding-model-heading p:not(.section-label),
.impact-heading p:not(.section-label),
.anniversary-copy p {
  margin-left: auto;
  margin-right: auto;
}

.history-section .section-heading p:not(.section-label) {
  max-width: none;
}

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

.process-grid article {
  min-height: 220px;
  padding: 24px;
}

.process-grid span {
  display: inline-flex;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.process-grid h3,
.feature-card h3,
.news-card h3 {
  margin: 42px 0 12px;
  font-size: 22px;
}

.process-grid p,
.feature-card p,
.news-card p {
  margin: 0;
  color: #606060;
  line-height: 1.7;
}

.ecosystem-section {
  padding: 0 0 120px;
}

.ecosystem-heading {
  position: relative;
  max-width: 1060px;
}

.ecosystem-heading h2 {
  max-width: 840px;
}

.section-heading .char-title {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  width: fit-content;
  font-size: clamp(36px, 4.1vw, 64px);
}

.section-heading .char-title::after {
  content: "";
  position: absolute;
  top: -0.18em;
  right: -0.46em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.42);
  animation: pulse-dot 2.4s ease-out infinite;
}

.section-heading .char-title span {
  display: inline-block;
  will-change: opacity, filter, transform;
}

.section-heading .char-title:not(.is-revealed) span,
body.reveal-ready .section-heading .char-title span {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 0.28em, 0);
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--char-delay, 0ms);
}

body.reveal-ready .section-heading .char-title.is-revealed span {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.funding-data-heading .char-title {
  flex-wrap: nowrap;
  max-width: 640px;
  font-size: clamp(30px, 2.7vw, 44px);
  line-height: 1.08;
  white-space: nowrap;
}

.ecosystem-heading p:not(.section-label) {
  max-width: none;
}

.ecosystem-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: 16px;
  align-items: stretch;
}

.ecosystem-hero-card,
.ecosystem-grid article {
  border: 0;
  border-radius: 18px;
  background:
    radial-gradient(circle at 9% 78%, rgba(255, 123, 35, 0.5) 0%, rgba(190, 57, 24, 0.28) 34%, rgba(71, 22, 12, 0.16) 58%, transparent 76%),
    radial-gradient(circle at 18% 100%, rgba(255, 210, 70, 0.2) 0%, rgba(156, 74, 18, 0.15) 42%, transparent 74%),
    linear-gradient(145deg, #110806 0%, #090706 52%, #050505 100%);
  will-change: opacity, filter, transform;
}

body.reveal-ready .ecosystem-section:not(.ecosystem-active) .ecosystem-hero-card {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(-64px, 0, 0) scale(0.992);
}

body.reveal-ready .ecosystem-section:not(.ecosystem-active) .ecosystem-grid article {
  opacity: 0;
  filter: blur(4px);
  transform: translate3d(0, 42px, 0) scale(0.992);
}

body.reveal-ready .ecosystem-section.ecosystem-active .ecosystem-hero-card {
  animation: ecosystem-feature-reveal 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--ecosystem-delay, 0ms);
}

body.reveal-ready .ecosystem-section.ecosystem-active .ecosystem-grid article {
  animation: ecosystem-card-reveal 0.92s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--ecosystem-delay, 0ms);
}

@keyframes ecosystem-feature-reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(-64px, 0, 0) scale(0.992);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes ecosystem-card-reveal {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 42px, 0) scale(0.992);
  }

  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

.ecosystem-hero-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 520px;
  padding: clamp(26px, 3vw, 42px);
  background:
    radial-gradient(circle at 8% 68%, rgba(255, 126, 28, 0.74) 0%, rgba(191, 55, 19, 0.34) 36%, rgba(75, 24, 12, 0.18) 62%, transparent 82%),
    radial-gradient(circle at 24% 96%, rgba(255, 218, 74, 0.26) 0%, rgba(160, 74, 18, 0.16) 44%, transparent 78%),
    linear-gradient(150deg, #150907 0%, #0a0706 54%, #050505 100%);
  color: #ffffff;
  box-shadow: none;
}

.ecosystem-hero-card::before,
.ecosystem-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(105deg, transparent 0%, transparent 18%, rgba(255, 88, 26, 0.34) 36%, rgba(255, 196, 60, 0.28) 48%, rgba(143, 35, 13, 0.14) 64%, transparent 82%),
    radial-gradient(ellipse at var(--glow-x, 8%) var(--glow-y, 76%), rgba(255, 143, 31, 0.68) 0%, rgba(222, 75, 22, 0.34) 30%, rgba(92, 27, 12, 0.18) 56%, transparent 82%),
    radial-gradient(ellipse at calc(var(--glow-x, 8%) + 18%) 100%, rgba(255, 220, 76, 0.3) 0%, rgba(190, 90, 20, 0.18) 42%, transparent 78%),
    linear-gradient(90deg, rgba(255, 118, 30, 0.24), rgba(132, 38, 15, 0.12) 32%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 34%),
    repeating-linear-gradient(90deg, rgba(255, 194, 77, 0.028) 0 1px, transparent 1px 12px);
  background-size:
    260% 100%,
    180% 160%,
    170% 145%,
    210% 100%,
    100% 100%,
    100% 100%;
  opacity: 0.86;
  animation: ecosystem-glow-flow 7.2s ease-in-out infinite alternate;
  pointer-events: none;
}

.ecosystem-grid article::after,
.ecosystem-hero-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  border: 1px solid rgba(255, 138, 61, 0.28);
  border-radius: inherit;
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.035),
    inset 0 -28px 70px rgba(255, 110, 34, 0.08);
  pointer-events: none;
}

.ecosystem-hero-card::before {
  --glow-x: 6%;
  --glow-y: 66%;
  animation-duration: 8.5s;
}

.ecosystem-grid article:nth-child(1)::before {
  --glow-x: 4%;
  --glow-y: 82%;
  animation-duration: 6.4s;
}

.ecosystem-grid article:nth-child(2)::before {
  --glow-x: 10%;
  --glow-y: 74%;
  animation-duration: 7.1s;
  animation-delay: -1.2s;
}

.ecosystem-grid article:nth-child(3)::before {
  --glow-x: 6%;
  --glow-y: 78%;
  animation-duration: 7.8s;
  animation-delay: -2.1s;
}

.ecosystem-grid article:nth-child(4)::before {
  --glow-x: 12%;
  --glow-y: 72%;
  animation-duration: 6.9s;
  animation-delay: -3s;
}

.ecosystem-grid article:nth-child(5)::before {
  --glow-x: 5%;
  --glow-y: 68%;
  animation-duration: 8.2s;
  animation-delay: -3.8s;
}

@keyframes ecosystem-glow-flow {
  from {
    background-position:
      0% 50%,
      0% 52%,
      4% 100%,
      0% 50%,
      0 0,
      0 0;
  }

  to {
    background-position:
      100% 50%,
      42% 44%,
      22% 94%,
      58% 50%,
      0 0,
      18px 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-hero-card::before,
  .ecosystem-grid article::before {
    animation: none;
  }
}

.ecosystem-hero-card > * {
  position: relative;
  z-index: 1;
}

.ecosystem-grid article > * {
  position: relative;
  z-index: 1;
}

.ecosystem-hero-card .section-label {
  margin-bottom: 24px;
  color: rgba(255, 194, 77, 0.9);
  font-size: clamp(18px, 1.18vw, 22px);
  font-weight: 850;
}

.ecosystem-hero-card h3 {
  margin: 0;
  font-size: clamp(34px, 3.6vw, 54px);
  font-weight: 650;
  line-height: 1.08;
}

.ecosystem-hero-card p:not(.section-label) {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  line-height: 1.78;
}

.funding-principles {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 42px;
}

.funding-principles span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  border: 1px solid rgba(255, 194, 77, 0.28);
  border-radius: 999px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 194, 77, 0.08);
  font-size: 13px;
  font-weight: 800;
}

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

.ecosystem-grid article {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 292px;
  padding: 24px;
  color: #ffffff;
}

.ecosystem-grid article:nth-child(1) {
  background:
    radial-gradient(circle at 6% 82%, rgba(255, 124, 35, 0.54) 0%, rgba(189, 55, 20, 0.28) 36%, rgba(62, 19, 10, 0.18) 62%, transparent 82%),
    radial-gradient(circle at 22% 100%, rgba(255, 213, 70, 0.2) 0%, rgba(157, 70, 16, 0.14) 46%, transparent 78%),
    linear-gradient(145deg, #120806 0%, #090706 55%, #050505 100%);
}

.ecosystem-grid article:nth-child(2) {
  background:
    radial-gradient(circle at 10% 72%, rgba(255, 138, 42, 0.5) 0%, rgba(197, 63, 18, 0.25) 38%, rgba(63, 20, 9, 0.16) 64%, transparent 84%),
    radial-gradient(circle at 36% 100%, rgba(255, 214, 67, 0.18) 0%, rgba(151, 70, 17, 0.13) 46%, transparent 78%),
    linear-gradient(145deg, #100806 0%, #090706 58%, #050505 100%);
}

.ecosystem-grid article:nth-child(3) {
  background:
    radial-gradient(circle at 8% 78%, rgba(255, 105, 55, 0.48) 0%, rgba(189, 48, 25, 0.25) 38%, rgba(61, 17, 10, 0.16) 64%, transparent 84%),
    radial-gradient(circle at 30% 100%, rgba(255, 213, 70, 0.2) 0%, rgba(151, 70, 17, 0.14) 46%, transparent 78%),
    linear-gradient(145deg, #120706 0%, #090706 58%, #050505 100%);
}

.ecosystem-grid article:nth-child(4) {
  background:
    radial-gradient(circle at 12% 74%, rgba(255, 126, 36, 0.52) 0%, rgba(192, 55, 18, 0.27) 38%, rgba(63, 20, 9, 0.16) 64%, transparent 84%),
    radial-gradient(circle at 42% 100%, rgba(255, 214, 67, 0.18) 0%, rgba(148, 68, 16, 0.13) 46%, transparent 78%),
    linear-gradient(145deg, #110806 0%, #090706 56%, #050505 100%);
}

.ecosystem-grid article:nth-child(5) {
  background:
    radial-gradient(circle at 6% 68%, rgba(245, 83, 45, 0.5) 0%, rgba(183, 44, 24, 0.27) 38%, rgba(58, 17, 10, 0.17) 64%, transparent 84%),
    radial-gradient(circle at 24% 100%, rgba(255, 214, 67, 0.22) 0%, rgba(151, 70, 17, 0.15) 46%, transparent 78%),
    linear-gradient(145deg, #120705 0%, #090706 56%, #050505 100%);
}

.ecosystem-grid span {
  display: inline-flex;
  color: rgba(255, 194, 77, 0.84);
  font-size: clamp(17px, 1.05vw, 21px);
  font-weight: 850;
}

.ecosystem-grid h3 {
  margin: 28px 0 16px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 25px;
  font-weight: 620;
  line-height: 1.18;
}

.ecosystem-grid p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14.5px;
  line-height: 1.72;
}

.ecosystem-grid .ecosystem-wide {
  grid-column: 1 / -1;
  min-height: 250px;
}

.ecosystem-wide p {
  max-width: 760px;
}

.impact-section {
  padding: 0 0 124px;
}

.impact-heading {
  justify-items: center;
  max-width: 1120px;
  margin-inline: auto;
  text-align: center;
}

.impact-title {
  position: relative;
  width: fit-content;
  margin: 0;
  font-size: clamp(36px, 4.1vw, 64px);
  font-weight: 900;
  line-height: 1;
}

.impact-title::after {
  content: "";
  position: absolute;
  top: -0.18em;
  right: -0.46em;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 0 rgba(255, 138, 61, 0.42);
  animation: pulse-dot 2.4s ease-out infinite;
}

.impact-heading p {
  max-width: min(100%, 760px);
  margin: 26px auto 0;
  color: #5f5f5f;
  font-size: 17px;
  line-height: 1.86;
}

.impact-showcase {
  display: grid;
  gap: 30px;
  margin-top: 52px;
}

.forum-stage {
  position: relative;
  min-height: clamp(590px, 56vw, 760px);
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 194, 77, 0.34), transparent 30rem),
    linear-gradient(145deg, #1a1715, #0f0e0e);
}

.forum-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.82fr);
  gap: clamp(18px, 2.4vw, 40px);
  align-items: stretch;
  padding: clamp(20px, 2.6vw, 42px);
  opacity: 0;
  pointer-events: none;
  transform: scale(0.985);
  transition:
    opacity 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.72s cubic-bezier(0.16, 1, 0.3, 1);
}

.forum-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.forum-slide.is-entering .forum-visual {
  animation: forum-visual-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.forum-slide.is-entering .forum-copy span {
  animation: forum-copy-in 0.56s cubic-bezier(0.16, 1, 0.3, 1) 0.12s both;
}

.forum-slide.is-entering .forum-copy h3 {
  animation: forum-copy-in 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.2s both;
}

.forum-slide.is-entering .forum-copy p {
  animation: forum-copy-up 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.32s both;
}

@keyframes forum-visual-in {
  from {
    opacity: 0;
    filter: blur(8px);
    transform: translate3d(-32px, 0, 0) scale(0.985);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes forum-copy-in {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(34px, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes forum-copy-up {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.forum-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: 16px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.45), transparent 13rem),
    linear-gradient(128deg, #ffc24d 0%, #ffb143 20%, #ff8a3d 52%, #f45f45 78%, #ffc24d 100%);
  background-size: 100% 100%, 170% 170%;
}

.forum-visual.has-cms-image {
  background-position: center;
  background-size: cover;
}

.forum-visual.has-cms-image::before,
.forum-visual.has-cms-image::after {
  content: none;
}

.forum-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.22), transparent 42%, rgba(255, 255, 255, 0.12)),
    repeating-linear-gradient(90deg, rgba(21, 21, 21, 0.07) 0 1px, transparent 1px 9px);
  opacity: 0.72;
}

.forum-year {
  position: absolute;
  top: clamp(16px, 1.5vw, 24px);
  left: clamp(16px, 1.5vw, 24px);
  padding: 8px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(21, 21, 21, 0.62);
  font-size: clamp(16px, 1.2vw, 18px);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  line-height: 1.3;
  letter-spacing: 0.02em;
  pointer-events: none;
}

.forum-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(6px, 1.2vw, 20px) 0;
  color: #ffffff;
}

.forum-copy span {
  color: rgba(255, 194, 77, 0.9);
  font-size: clamp(18px, 1.18vw, 22px);
  font-weight: 850;
}

.forum-copy h3 {
  max-width: 680px;
  margin: 24px 0 22px;
  font-size: clamp(32px, 4.2vw, 66px);
  font-weight: 760;
  line-height: 1.08;
}

.forum-copy p {
  max-width: 660px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.forum-navigation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.forum-nav-button {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(21, 21, 21, 0.14);
  border-radius: 50%;
  padding: 0;
  color: #292929;
  background:
    linear-gradient(rgba(255, 255, 255, 0.82), rgba(255, 255, 255, 0.82)) padding-box,
    var(--button-outline-flow) border-box;
  background-size: 100% 100%, 240% 240%;
  background-position: 0 0, 0% 50%;
  cursor: pointer;
  font-size: 19px;
  transition:
    color 0.24s ease,
    border-color 0.24s ease,
    background-position 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.forum-nav-button:hover {
  color: var(--orange);
  border-color: transparent;
  background-position: 0 0, 100% 50%;
}

.forum-nav-button:disabled {
  cursor: default;
  opacity: 0.32;
}

/* Same circular progress treatment as the funding-page viewpoint switcher. */
@property --forum-progress-angle {
  syntax: "<angle>";
  inherits: false;
  initial-value: 0deg;
}

.forum-nav-button.forum-progress-next {
  position: relative;
  border-color: transparent;
  background-clip: padding-box;
}

.forum-progress-border {
  --forum-progress-angle: 0deg;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: conic-gradient(from -90deg, var(--orange) 0deg var(--forum-progress-angle), rgba(255, 125, 66, 0.18) var(--forum-progress-angle) 360deg);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.forum-progress-border.is-progressing {
  animation: forum-progress 5200ms linear forwards;
}

.is-forum-paused .forum-progress-border.is-progressing {
  animation-play-state: paused;
}

@keyframes forum-progress {
  to { --forum-progress-angle: 360deg; }
}

.impact-article-link {
  color: inherit;
  font-weight: inherit !important;
  text-decoration: none;
  transition: color 240ms ease;
}

.impact-article-link:hover,
.impact-article-link:focus-visible {
  color: var(--orange);
}

.impact-article-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
  .forum-progress-border.is-progressing { animation: none; }
}

.forum-empty {
  display: grid;
  min-height: inherit;
  place-content: center;
  gap: 8px;
  padding: 40px;
  color: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.forum-empty span {
  color: #ffffff;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 760;
}

.forum-empty p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 15px;
}

.impact-tab-list button {
  position: relative;
  overflow: hidden;
  min-height: 64px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 20px;
  color: #5f5f5f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(120deg, rgba(21, 21, 21, 0.1), rgba(21, 21, 21, 0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
  cursor: pointer;
  font-size: 17px;
  font-weight: 800;
  transition:
    color 0.22s ease,
    background-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.impact-tab-list button:hover:not(.is-active) {
  color: #252525;
  background-image:
    linear-gradient(rgba(255, 249, 236, 0.9), rgba(255, 249, 236, 0.9)),
    var(--button-outline-flow);
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.12),
    0 12px 30px rgba(255, 138, 61, 0.1);
}

.impact-tab-list button.is-active {
  border-color: transparent;
  color: #191919;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  background-position: 100% 50%;
  box-shadow: 0 12px 28px rgba(255, 138, 61, 0.2);
}

.impact-tabs {
  display: grid;
  grid-template-columns: minmax(270px, 0.3fr) minmax(0, 1fr);
  gap: 28px;
  margin-top: 58px;
}

.impact-tab-list {
  display: grid;
  align-content: start;
  gap: 14px;
}

.impact-tab-list button {
  justify-content: flex-start;
  width: 100%;
}

.impact-panel {
  display: block;
  min-height: 0;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 18px;
  padding: clamp(64px, 7.6vw, 98px) clamp(38px, 3.8vw, 58px);
  background:
    radial-gradient(circle at 96% 10%, rgba(255, 194, 77, 0.28), transparent 18rem),
    rgba(255, 255, 255, 0.72);
}

.impact-panel span {
  display: none;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
}

.impact-panel h3 {
  margin: 0 0 32px;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.1;
}

.impact-panel p {
  max-width: 920px;
  margin: 0;
  color: #5d5d5d;
  font-size: 15.5px;
  line-height: 1.76;
}

.impact-detail-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  min-height: 190px;
}

.impact-detail-list article {
  min-height: 150px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 12px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
  transition:
    border-color 0.32s ease,
    background-color 0.32s ease,
    box-shadow 0.32s ease;
}

.impact-detail-list article:hover {
  border-color: rgba(255, 138, 61, 0.26);
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.16),
    0 18px 46px rgba(255, 138, 61, 0.12);
}

.impact-detail-list strong {
  display: block;
  color: #202020;
  font-size: 18px;
  line-height: 1.35;
}

.impact-detail-list p {
  margin-top: 14px;
}

.impact-detail-list.compact,
.impact-detail-list.honor-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.impact-detail-list.compact article {
  min-height: 86px;
}

.impact-detail-list.compact {
  min-height: 246px;
}

.impact-detail-list.honor-list article {
  min-height: auto;
}

.impact-detail-list.honor-list {
  min-height: 0;
}

.impact-panel.is-entering > span {
  animation: impact-panel-meta-in 0.54s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.impact-panel.is-entering h3 {
  animation: impact-panel-title-in 0.68s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.impact-panel.is-entering .impact-detail-list article {
  animation: impact-panel-detail-in 0.72s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(1) {
  animation-delay: 70ms;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(2) {
  animation-delay: 130ms;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(3) {
  animation-delay: 190ms;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(4) {
  animation-delay: 250ms;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(5) {
  animation-delay: 310ms;
}

.impact-panel.is-entering .impact-detail-list article:nth-child(6) {
  animation-delay: 370ms;
}

@keyframes impact-panel-meta-in {
  from {
    opacity: 0;
    transform: translate3d(12px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes impact-panel-title-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(34px, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes impact-panel-detail-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, 28px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.history-section,
.knowledge-section,
.insights-section {
  padding: 4px 0 118px;
}

.history-section {
  padding-bottom: clamp(34px, 4.2vw, 62px);
}

.section-heading {
  display: grid;
  gap: 0;
  margin-bottom: 44px;
}

.section-heading.compact {
  grid-template-columns: 0.82fr 1fr;
  column-gap: 50px;
  align-items: end;
}

.section-heading.compact .section-label {
  grid-column: 1 / -1;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(220px, 1fr));
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
}

.timeline article {
  min-height: 270px;
  padding: 24px 22px;
  border-top: 2px solid var(--ink);
  background: rgba(255, 255, 255, 0.58);
}

.timeline time {
  display: block;
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  line-height: 1;
}

.timeline h3 {
  margin: 70px 0 12px;
  font-size: 21px;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  line-height: 1.72;
}

.milestone-section {
  padding-top: 10px;
}

.milestone-heading {
  max-width: none;
}

.milestone-heading p {
  max-width: none;
}

.milestone-a {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 24px;
  padding: clamp(20px, 2.3vw, 34px);
  color: #181818;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 194, 77, 0.16), transparent 24rem),
    radial-gradient(circle at 94% 96%, rgba(255, 138, 61, 0.12), transparent 22rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 250, 241, 0.72));
  box-shadow: 0 28px 80px rgba(21, 21, 21, 0.06);
}

.milestone-a::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.08), transparent 18%, rgba(255, 194, 77, 0.08) 72%, transparent),
    repeating-linear-gradient(90deg, rgba(21, 21, 21, 0.035) 0 1px, transparent 1px 88px);
  opacity: 0.42;
  pointer-events: none;
}

.milestone-a > * {
  position: relative;
  z-index: 1;
}

.milestone-a__stage {
  display: grid;
  grid-template-columns: minmax(210px, 0.26fr) minmax(0, 1fr);
  gap: clamp(18px, 2.5vw, 42px);
  align-items: stretch;
}

.milestone-a__readout {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  padding: clamp(20px, 2.2vw, 28px);
  background:
    radial-gradient(circle at 20% 86%, rgba(255, 138, 61, 0.14), transparent 14rem),
    rgba(255, 255, 255, 0.72);
}

.milestone-a__readout span {
  color: #7d7d7d;
  font-size: 13px;
  font-weight: 850;
}

.milestone-a__readout strong {
  color: #171717;
  font-size: clamp(64px, 8vw, 116px);
  font-weight: 900;
  line-height: 0.8;
  letter-spacing: 0;
}

.milestone-a__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.milestone-a__nav button {
  min-height: 38px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 15px;
  color: #171717;
  background-image: var(--button-flow);
  font-size: 13px;
  font-weight: 850;
  background-size: 240% 240%;
  background-position: 0% 50%;
  transition:
    background-position 0.65s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.milestone-a__nav button:hover {
  background-position: 100% 50%;
  box-shadow: 0 12px 28px rgba(255, 138, 61, 0.2);
}

.milestone-a__track {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 24px max(0px, calc((100% - min(420px, 64vw)) / 2)) 18px;
}

.milestone-a__track::before {
  content: "";
  position: absolute;
  top: 63px;
  left: 0;
  width: max(100%, 3600px);
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0.1), rgba(255, 138, 61, 0.42), rgba(21, 21, 21, 0.08));
}

.milestone-a__track::-webkit-scrollbar {
  height: 0;
}

.milestone-a__track article {
  position: relative;
  flex: 0 0 min(420px, 64vw);
  min-height: 316px;
  scroll-snap-align: center;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 18px;
  padding: 72px clamp(22px, 2.4vw, 30px) clamp(22px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 10% 88%, rgba(255, 138, 61, 0.08), transparent 13rem),
    rgba(255, 255, 255, 0.72);
  opacity: 0.58;
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.58s ease,
    background-color 0.58s ease,
    box-shadow 0.58s ease;
  will-change: opacity;
}

.milestone-a__track article::before {
  content: "";
  position: absolute;
  top: 30px;
  left: clamp(22px, 2.4vw, 30px);
  width: 17px;
  height: 17px;
  border: 4px solid #fffaf1;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.28);
  box-shadow: 0 0 0 1px rgba(21, 21, 21, 0.1);
  transition:
    background-color 0.36s ease,
    box-shadow 0.36s ease,
    transform 0.36s cubic-bezier(0.16, 1, 0.3, 1);
}

.milestone-a__track article::after {
  content: "";
  position: absolute;
  top: 38px;
  left: calc(clamp(22px, 2.4vw, 30px) + 24px);
  right: 24px;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 138, 61, 0.32), transparent);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.milestone-a__track article.is-active {
  opacity: 1;
  border-color: rgba(255, 138, 61, 0.2);
  background:
    radial-gradient(circle at 6% 88%, rgba(255, 138, 61, 0.16), transparent 14rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 250, 241, 0.86));
  box-shadow: 0 20px 54px rgba(255, 138, 61, 0.1);
}

.milestone-a__track article.is-active::before {
  background: #ff8a3d;
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.3),
    0 0 0 10px rgba(255, 194, 77, 0.13);
  transform: scale(1.05);
}

.milestone-a__track article.is-active::after {
  opacity: 1;
}

.milestone-a__track time {
  display: block;
  color: #ff8a3d;
  font-size: clamp(30px, 3.2vw, 48px);
  font-weight: 900;
  line-height: 1;
}

.milestone-a__track h3 {
  max-width: none;
  margin: 34px 0 18px;
  color: #202020;
  font-size: clamp(23px, 2vw, 31px);
  font-weight: 760;
  line-height: 1.2;
}

.milestone-a__track p {
  max-width: none;
  margin: 0;
  color: #666;
  font-size: 15.5px;
  line-height: 1.78;
}

.milestone-a__track article.is-entering time {
  animation: milestone-detail-in 0.5s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.milestone-a__track article.is-entering h3 {
  animation: milestone-detail-in 0.62s cubic-bezier(0.16, 1, 0.3, 1) 0.08s both;
}

.milestone-a__track article.is-entering p {
  animation: milestone-detail-up 0.66s cubic-bezier(0.16, 1, 0.3, 1) 0.18s both;
}

@keyframes milestone-detail-in {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(18px, 0, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes milestone-detail-up {
  from {
    opacity: 0;
    filter: blur(3px);
    transform: translate3d(0, 18px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

.milestone-a__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.milestone-a__controls button {
  min-height: 38px;
  border: 1px solid rgba(21, 21, 21, 0.08);
  border-radius: 999px;
  padding: 0 15px;
  color: #6c6c6c;
  background: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 850;
  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.milestone-a__controls button:hover,
.milestone-a__controls button.is-active {
  color: #171717;
  border-color: transparent;
  background-image: var(--button-flow);
  box-shadow: 0 10px 24px rgba(255, 138, 61, 0.14);
}

.milestone-a__progress {
  height: 2px;
  margin-top: 18px;
  background: rgba(21, 21, 21, 0.08);
}

.milestone-a__progress span {
  display: block;
  width: 12.5%;
  height: 100%;
  background-image: var(--button-flow);
  transform-origin: left center;
  transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  .milestone-a__stage {
    grid-template-columns: 1fr;
  }

  .milestone-a__readout {
    min-height: 180px;
  }

  .milestone-a__track article {
    flex-basis: min(390px, 84vw);
    min-height: 310px;
  }
}

@media (max-width: 680px) {
  .milestone-a {
    border-radius: 18px;
    padding: 18px;
  }

  .milestone-a__track {
    padding-inline: 0;
  }

  .milestone-a__track article {
    flex-basis: 86vw;
  }
}

.milestone-a {
  --timeline-line-top: clamp(42px, 3.8vw, 56px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  color: #181818;
  background: transparent;
  box-shadow: none;
}

.milestone-a::before {
  content: "";
  position: absolute;
  top: var(--timeline-line-top);
  left: 50%;
  display: block;
  width: 100vw;
  height: 1px;
  background: linear-gradient(90deg, rgba(21, 21, 21, 0.08), rgba(255, 138, 61, 0.44), rgba(255, 194, 77, 0.34), rgba(21, 21, 21, 0.08));
  transform: translateX(-50%);
  pointer-events: none;
}

.milestone-a__controls {
  position: relative;
  display: flex;
  width: max-content;
  gap: clamp(42px, 6vw, 108px);
  margin: 0;
  padding: 0 0 calc(var(--timeline-line-top) + 4px);
  border-bottom: 0;
  transform: translate3d(var(--timeline-shift, 0px), 0, 0);
  transition: transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
}

.milestone-a__controls::before {
  display: none;
}

.milestone-a__controls button {
  position: relative;
  flex: 0 0 auto;
  min-width: 104px;
  min-height: auto;
  border: 0;
  border-radius: 0;
  padding: 0 12px 0 0;
  color: rgba(21, 21, 21, 0.08);
  background: transparent;
  box-shadow: none;
  opacity: 0.34;
  font-size: clamp(24px, 3.1vw, 44px);
  font-weight: 820;
  line-height: 1;
  text-align: left;
  transition:
    color 0.42s ease,
    opacity 0.42s ease;
}

.milestone-a__controls button::after {
  content: "";
  position: absolute;
  left: 0;
  top: calc(var(--timeline-line-top) - 8px);
  width: 10px;
  height: 10px;
  border: 3px solid #fbf7f0;
  border-radius: 50%;
  background: rgba(21, 21, 21, 0.24);
  box-shadow: 0 0 0 1px rgba(21, 21, 21, 0.12);
  transition:
    background-color 0.42s ease,
    box-shadow 0.42s ease;
}

.milestone-a__controls button:hover {
  color: rgba(21, 21, 21, 0.54);
  opacity: 0.82;
}

.milestone-a__controls button.is-active,
.milestone-a__controls button:hover,
.milestone-a__controls button:focus-visible {
  border-color: transparent;
  background: transparent;
  background-image: none;
  box-shadow: none;
}

.milestone-a__controls button.is-active {
  color: #181818;
  opacity: 1;
}

.milestone-a__controls button.is-emphasizing {
  animation: timeline-year-emphasis 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.milestone-a__controls button.is-near {
  color: rgba(21, 21, 21, 0.2);
  opacity: 0.52;
}

.milestone-a__controls button.is-active::after {
  background: #ff8a3d;
  box-shadow:
    0 0 0 1px rgba(255, 138, 61, 0.35),
    0 0 0 10px rgba(255, 194, 77, 0.13);
}

.milestone-a__controls button.is-emphasizing::after {
  animation: timeline-dot-emphasis 0.82s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes timeline-year-emphasis {
  0% {
    text-shadow: 0 0 0 rgba(255, 138, 61, 0);
  }
  42% {
    color: #ff8a3d;
    text-shadow: 0 14px 34px rgba(255, 138, 61, 0.2);
  }
  100% {
    text-shadow: 0 0 0 rgba(255, 138, 61, 0);
  }
}

@keyframes timeline-dot-emphasis {
  0% {
    box-shadow:
      0 0 0 1px rgba(255, 138, 61, 0.25),
      0 0 0 0 rgba(255, 194, 77, 0);
  }
  46% {
    box-shadow:
      0 0 0 1px rgba(255, 138, 61, 0.38),
      0 0 0 16px rgba(255, 194, 77, 0.16);
  }
  100% {
    box-shadow:
      0 0 0 1px rgba(255, 138, 61, 0.35),
      0 0 0 10px rgba(255, 194, 77, 0.13);
  }
}

.milestone-a__progress {
  display: none;
}

.milestone-a__active-year {
  display: none;
}

.milestone-a__stage {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2px, 0.45vw, 6px);
  align-items: start;
  align-content: start;
  min-height: clamp(200px, 21vw, 286px);
  margin-top: clamp(8px, 1.2vw, 18px);
}

.milestone-a__readout {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
}

.milestone-a__readout span {
  display: none;
}

.milestone-a__readout strong {
  display: none;
}

.milestone-a__nav {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
  margin-top: 0;
}

.milestone-a__nav button {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  width: 72px;
  height: 58px;
  min-height: 58px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0;
  color: #181818;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(120deg, rgba(21, 21, 21, 0.1), rgba(21, 21, 21, 0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
  font-size: 32px;
  font-weight: 650;
  line-height: 1;
  transition:
    background-position 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    color 0.28s ease,
    box-shadow 0.28s ease;
}

.milestone-a__nav button:hover {
  color: #252525;
  background-image:
    linear-gradient(rgba(255, 249, 236, 0.9), rgba(255, 249, 236, 0.9)),
    var(--button-outline-flow);
  background-position:
    0 0,
    100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.12),
    0 12px 30px rgba(255, 138, 61, 0.1);
}

.milestone-a__track {
  position: relative;
  display: block;
  min-height: clamp(126px, 13.5vw, 190px);
  overflow: hidden;
  padding: 0;
  scroll-snap-type: none;
}

.milestone-a__track::before {
  display: none;
}

.milestone-a__track article {
  position: absolute;
  inset: 0;
  flex: none;
  min-height: auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  opacity: 0;
  pointer-events: none;
  transform: translate3d(56px, 0, 0) scale(0.96);
  transform-origin: right center;
  transition:
    opacity 0.58s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.58s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity;
}

.milestone-a__track article > * {
  position: relative;
  z-index: 1;
}

.milestone-a__track article::before {
  display: none;
}

.milestone-a__track article::after {
  display: none;
}

.milestone-a__track article.is-active {
  opacity: 1;
  pointer-events: auto;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: translate3d(0, 0, 0) scale(1);
}

.milestone-a__track article.is-active::before {
  display: none;
}

.milestone-a__track article.is-entering::after {
  display: none;
  animation: none;
}

.milestone-a__track article.is-leaving {
  animation: milestone-event-out 0.48s cubic-bezier(0.55, 0, 0.1, 1) both;
}

.milestone-a__track time {
  display: none;
}

.milestone-a__track h3 {
  max-width: none;
  margin: 0 0 clamp(18px, 2.1vw, 28px);
  color: #181818;
  font-size: clamp(30px, 3.4vw, 52px);
  font-weight: 760;
  line-height: 1.13;
}

.milestone-a__track p {
  max-width: none;
  color: #5f5f5f;
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.86;
}

.milestone-a__track article.is-entering h3 {
  animation: milestone-event-title-in 0.72s cubic-bezier(0.16, 1, 0.3, 1) 0.04s both;
}

.milestone-a__track article.is-entering p {
  animation: milestone-event-copy-in 0.74s cubic-bezier(0.16, 1, 0.3, 1) 0.16s both;
}

@keyframes milestone-event-out {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    filter: blur(5px);
    transform: translate3d(94px, 0, 0) scale(0.88);
  }
}

@keyframes milestone-event-meta-in {
  from {
    opacity: 0;
    transform: translate3d(24px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes milestone-event-title-in {
  from {
    opacity: 0;
    filter: blur(6px);
    transform: translate3d(66px, 0, 0) scale(0.965);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes milestone-line-in {
  from {
    opacity: 0;
    transform: scaleX(0);
  }
  45% {
    opacity: 1;
  }
  to {
    opacity: 0.78;
    transform: scaleX(1);
  }
}

@keyframes milestone-event-copy-in {
  from {
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(0, 24px, 0);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .milestone-a__controls {
    display: flex;
    overflow: visible;
    gap: 28px;
    padding-bottom: calc(var(--timeline-line-top) + 22px);
  }

  .milestone-a__controls button {
    flex: 0 0 auto;
    min-width: 112px;
  }

  .milestone-a__stage {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .milestone-a__readout {
    gap: 20px;
  }

  .milestone-a__nav {
    display: flex;
  }
}

@media (max-width: 680px) {
  .milestone-a {
    padding: 0;
  }

  .milestone-a__controls button {
    min-width: 96px;
    font-size: 34px;
  }

  .milestone-a__track {
    min-height: 430px;
  }

  .milestone-a__track h3 {
    font-size: 36px;
  }
}

@media (max-width: 760px) {
  .history-section {
    overflow: visible;
  }

  .history-section .section-heading {
    overflow: visible;
    padding-top: 32px;
    margin-top: 0;
  }

  .milestone-a {
    --timeline-line-top: 0px;
    display: grid;
    grid-template-columns: 112px minmax(0, 1fr);
    column-gap: 14px;
    align-items: start;
  }

  .milestone-a::before {
    top: 0;
    bottom: 0;
    left: 37.5px;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(21, 21, 21, 0.08), rgba(255, 138, 61, 0.42), rgba(255, 194, 77, 0.28), rgba(21, 21, 21, 0.06));
    transform: none;
  }

  .milestone-a__controls {
    grid-column: 1;
    grid-row: 1 / span 2;
    display: grid;
    gap: 18px;
    width: 112px;
    overflow: visible;
    padding: 22px 0;
    margin-block: -22px;
    transform: none !important;
    transition: none;
  }

  .milestone-a__controls button {
    min-width: 0;
    width: 112px;
    min-height: 34px;
    padding: 0 0 0 52px;
    font-size: 19px;
    line-height: 34px;
  }

  .milestone-a__controls button::after {
    top: 50%;
    left: 30px;
    transform: translateY(-50%);
  }

  .milestone-a__stage {
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    min-height: 470px;
    margin-top: 0;
  }

  .milestone-a__nav {
    order: 2;
    justify-content: flex-start;
  }

  .milestone-a__nav button {
    width: 60px;
    height: 52px;
    min-height: 52px;
    border-radius: 13px;
  }

  .milestone-a__track {
    order: 1;
    min-height: 360px;
  }

  .milestone-a__track h3 {
    font-size: clamp(29px, 9vw, 40px);
  }

  .milestone-a__track p {
    font-size: 15.5px;
  }
}

.content-rail {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 16px;
}

.feature-card {
  padding: 14px;
}

.feature-card.large {
  min-height: 460px;
}

.media-frame {
  display: flex;
  align-items: flex-end;
  min-height: 220px;
  border-radius: var(--radius);
  padding: 18px;
  overflow: hidden;
}

.feature-card.large .media-frame {
  min-height: 300px;
}

.media-frame span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 13px;
  font-weight: 900;
}

.gradient-frame {
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.9), rgba(150, 150, 150, 0.58)),
    radial-gradient(circle at 70% 20%, var(--gold), transparent 16rem);
}

.light-frame {
  background:
    linear-gradient(135deg, rgba(255, 194, 77, 0.5), rgba(255, 255, 255, 0.1)),
    #e9e9e9;
}

.light-frame span {
  color: #282828;
}

.dark-frame {
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 194, 77, 0.65), transparent 10rem),
    linear-gradient(135deg, #292929, #777777);
}

.feature-card h3,
.feature-card p {
  padding: 0 8px;
}

.feature-card h3 {
  margin-top: 22px;
}

.anniversary-band {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 54px;
  align-items: center;
  width: min(2360px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto 118px;
  padding: 70px;
  border-radius: 18px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(21, 21, 21, 0.96), rgba(55, 55, 55, 0.84)),
    radial-gradient(circle at 85% 20%, rgba(255, 194, 77, 0.7), transparent 22rem);
  box-shadow: var(--shadow);
}

.anniversary-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.anniversary-board {
  display: grid;
  gap: 12px;
}

.anniversary-board div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 104px;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.anniversary-board span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
}

.anniversary-board strong {
  font-size: 24px;
  text-align: right;
}

.insights-heading {
  justify-items: start;
  text-align: left;
}

.insights-heading p:not(.section-label) {
  max-width: min(100%, 760px);
}

.news-carousel {
  position: relative;
  padding-bottom: 8px;
}

.news-carousel::before,
.news-carousel::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 28px;
  z-index: 3;
  width: clamp(20px, 3vw, 44px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s cubic-bezier(0.22, 1, 0.36, 1);
}

.news-carousel::before {
  left: -1px;
  background: linear-gradient(
    90deg,
    rgba(251, 247, 240, 0.42) 0%,
    rgba(251, 247, 240, 0.14) 42%,
    rgba(251, 247, 240, 0.04) 72%,
    transparent 100%
  );
}

.news-carousel::after {
  right: -1px;
  background: linear-gradient(
    270deg,
    rgba(251, 247, 240, 0.42) 0%,
    rgba(251, 247, 240, 0.14) 42%,
    rgba(251, 247, 240, 0.04) 72%,
    transparent 100%
  );
}

.news-carousel.is-edge-visible::before,
.news-carousel.is-edge-visible::after {
  opacity: 0.82;
}

.news-list {
  position: relative;
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: visible;
  overscroll-behavior-inline: contain;
  scroll-snap-type: none;
  scroll-padding-inline: max(0px, calc((100vw - 1180px) / 2));
  padding: 18px 2px 28px;
  cursor: grab;
  scrollbar-width: none;
  touch-action: pan-x pan-y;
}

.news-list::-webkit-scrollbar {
  display: none;
}

.news-list:hover {
  cursor: ew-resize;
}

.news-scrollbar {
  position: absolute;
  left: 50%;
  bottom: 2px;
  width: min(56%, 520px);
  height: 18px;
  margin: 0;
  opacity: 0.22;
  cursor: grab;
  user-select: none;
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  transform: translate3d(-50%, 6px, 0);
}

.news-carousel:hover .news-scrollbar,
.news-carousel:focus-within .news-scrollbar {
  opacity: 1;
  transform: translate3d(-50%, 0, 0);
}

.news-scrollbar:active {
  cursor: grabbing;
}

.news-scrollbar::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 4px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(255, 138, 61, 0.36), rgba(255, 194, 77, 0.72)),
    rgba(21, 21, 21, 0.08);
  transform: translateY(-50%);
}

.news-scrollbar-thumb {
  position: absolute;
  left: var(--thumb-left, 0px);
  top: 50%;
  width: var(--thumb-width, 96px);
  height: 12px;
  border-radius: 999px;
  background:
    linear-gradient(115deg, #ffd76a 0%, #ffb343 42%, #ff7338 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 8px 18px rgba(255, 138, 61, 0.2);
  transform: translateY(-50%);
  transition:
    left 0.12s linear,
    width 0.2s ease;
}

.news-scrollbar.is-disabled {
  display: none;
}

.insights-more {
  display: flex;
  justify-content: center;
  margin-top: clamp(18px, 2.2vw, 30px);
}

.insights-more .button {
  min-width: 0;
  width: auto;
}

.insights-more-phone { display: none; }

.news-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 0 0 clamp(330px, 36vw, 520px);
  min-height: 0;
  overflow: hidden;
  clip-path: inset(0 round var(--radius));
  padding: 28px;
  color: #181818;
  text-decoration: none;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.58)),
    radial-gradient(circle at 12% 15%, rgba(255, 194, 77, 0.2), transparent 18rem);
  transition:
    border-color 0.52s cubic-bezier(0.16, 1, 0.3, 1),
    background-position 0.72s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.52s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50%;
  border-radius: 0 0 var(--radius) var(--radius);
  pointer-events: none;
  background:
    radial-gradient(ellipse at 18% 100%, rgba(255, 138, 61, 0.2), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 249, 235, 0.5) 48%, rgba(255, 240, 210, 0.72) 100%);
  opacity: 0;
  transition: opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

.news-card:hover,
.news-card:focus-within {
  border-color: rgba(255, 157, 65, 0.2);
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.06),
    inset 0 -34px 72px rgba(255, 138, 61, 0.025);
  outline: none;
}

.news-card:hover::before,
.news-card:focus-within::before {
  opacity: 0.35;
}

.news-media {
  position: relative;
  display: flex;
  flex-shrink: 0;
  align-items: flex-end;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(24, 24, 24, 0.92), rgba(60, 56, 52, 0.74)),
    radial-gradient(circle at 20% 82%, rgba(255, 194, 77, 0.58), transparent 12rem),
    radial-gradient(circle at 82% 22%, rgba(255, 118, 49, 0.42), transparent 11rem);
}

.news-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-media span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(24, 24, 24, 0.52);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 900;
}

.news-card-copy {
  position: relative;
  z-index: 1;
  flex: 1;
  min-height: 140px;
  display: grid;
  grid-template-rows: auto;
  align-content: start;
  padding: 8px 0 0;
  transform: none;
}

.news-card h3 {
  margin: 0;
  font-size: clamp(21px, 2.15vw, 30px);
  font-weight: 780;
  line-height: 1.2;
  text-wrap: wrap;
  word-break: normal;
}

.news-card h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.news-card h3 a:hover {
  color: #c75220;
}

.news-card h3 a:focus-visible {
  outline: 2px solid #c75220;
  outline-offset: -2px;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 60px;
  padding: 0 0 94px;
}

.about-links {
  display: grid;
  gap: 10px;
  align-content: start;
}

.about-links a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  color: #303030;
  font-size: 20px;
  font-weight: 800;
}

.about-links a::after {
  content: "→";
  color: var(--orange);
}

.site-footer {
  width: min(1850px, calc(100% - (var(--page-gutter) * 2)));
  margin: 0 auto;
  display: grid;
  gap: clamp(34px, 4vw, 58px);
  padding: clamp(46px, 5vw, 76px) 0 clamp(30px, 3vw, 46px);
  border-top: 1px solid var(--line);
  background: var(--navigation-paper);
}

/* Every footer uses normal document flow, never scroll/reveal effects.
   Neutralize legacy reveal markers too, without affecting link hover feedback. */
body footer.site-footer {
  position: static;
}

body footer.site-footer,
body footer.site-footer :is(
  .footer-main,
  .footer-nav,
  .footer-nav-group,
  .footer-bottom,
  .footer-bottom-left,
  .footer-utilities,
  .footer-contact-icons,
  [data-reveal],
  .secondary-reveal
) {
  opacity: 1;
  transform: none;
  translate: none;
  filter: none;
  animation: none;
  transition: none;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(38px, 4.6vw, 72px);
  align-items: start;
}

.footer-brand {
  display: grid;
  justify-items: start;
  gap: 18px;
  max-width: 520px;
}

.footer-brand strong {
  color: #151515;
  font-size: clamp(22px, 2vw, 34px);
  font-weight: 850;
  letter-spacing: 0;
}

.site-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.footer-cta {
  margin-top: 10px;
}

.footer-nav {
  display: grid;
  width: min(100%, 940px);
  justify-self: start;
  grid-template-columns: repeat(5, minmax(118px, 1fr));
  gap: 24px;
}

.footer-nav-group {
  display: grid;
  align-content: start;
  gap: 11px;
}

.footer-nav-group h3 {
  margin: 0 0 8px;
  color: #171717;
  font-size: 16px;
  font-weight: 850;
}

.footer-nav-group a {
  position: relative;
  width: fit-content;
  color: rgba(35, 35, 35, 0.64);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.42;
  transition:
    color 0.28s ease,
    opacity 0.28s ease,
    text-shadow 0.28s ease;
}

.footer-nav-group a:hover {
  color: var(--orange);
  opacity: 0.94;
  text-shadow: 0 8px 20px rgba(255, 138, 61, 0.16);
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(18, 18, 18, 0.08);
  color: #706c67;
  font-size: 13px;
  font-weight: 650;
}

.footer-legal {
  min-width: 0;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
}

.footer-registration { white-space: nowrap; }
.footer-legal a { color: inherit; text-decoration: none; }
.footer-legal a:hover, .footer-legal a:focus-visible { color: var(--orange-deep); }
.footer-legal a:focus-visible { outline: 2px solid currentColor; outline-offset: 4px; }

.footer-bottom-left,
.footer-utilities {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-bottom-left > a,
.footer-utilities > a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease;
}

.footer-bottom-left { gap: 12px 16px; }
.footer-bottom-left > a { white-space: nowrap; }

.footer-bottom-left > a:hover,
.footer-bottom-left > a:focus-visible,
.footer-utilities > a:hover,
.footer-utilities > a:focus-visible {
  color: var(--orange);
}

.footer-language-switch {
  gap: 12px;
  padding: 0 0 0 24px;
  border: 0;
  border-left: 1px solid rgba(18, 18, 18, .14);
  border-radius: 0;
  background: none;
}

.footer-contact-icons {
  display: inline-flex;
  flex-flow: row nowrap;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
}

.footer-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  padding: 6px;
  border: 0;
  border-radius: 0;
  color: #706c67;
  background: none;
  cursor: pointer;
  transition: color .2s ease;
}

.footer-icon svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.35;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Dual speech bubbles occupy less of their canvas; balance their optical size. */
.footer-icon[popovertarget="footer-wechat"] svg {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
  stroke-width: 1.2;
}

.footer-icon:hover,
.footer-icon:focus-visible,
.footer-icon[aria-expanded="true"] {
  color: #c4501f;
}

.footer-icon:focus-visible {
  outline: 2px solid #c4501f;
  outline-offset: 2px;
}

.footer-wechat-popover,
.footer-phone-popover {
  position: fixed;
  inset: auto;
  margin: 0;
  width: 232px;
  max-width: calc(100vw - 24px);
  padding: 16px;
  border: 1px solid #dedbd6;
  border-radius: 8px;
  background: #fff;
  color: #494541;
}

.footer-wechat-popover img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-wechat-popover p {
  margin: 10px 0 0;
  color: inherit;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.footer-phone-popover {
  width: 244px;
  text-align: center;
}

.footer-phone-popover p {
  font-size: 13px;
  line-height: 1.5;
}

.footer-phone-number,
.footer-phone-dial {
  margin-top: 6px;
  font-size: 22px;
  line-height: 1.5;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.footer-phone-number {
  display: block;
  user-select: text;
}

.footer-phone-dial {
  display: none;
  color: #c4501f;
}

.footer-phone-dial:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

/* Phones expose dialing only after opening the popover; desktop shows text. */
@media (hover: none) and (pointer: coarse) {
  .footer-phone-number { display: none; }
  .footer-phone-dial {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
  }
}

@media (max-width: 680px) {
  .footer-bottom-left { gap: 16px 24px; }
  .footer-bottom-left .footer-legal { flex-basis: 100%; }
  .footer-utilities { gap: 16px; }
  .footer-icon { width: 44px; height: 44px; }
}

.footer-language-switch button {
  position: relative;
  min-width: 24px;
  padding: 6px 0;
  border-radius: 0;
  color: inherit;
  background: none;
}

.footer-language-switch button.is-active {
  color: #c4501f;
  background: none;
}

.footer-language-switch button.is-active::after {
  content: "";
  position: absolute;
  bottom: 1px;
  left: 3px;
  right: 3px;
  height: 1px;
  background: currentColor;
}

@media (max-width: 980px) {
  main,
  .funding-data-section,
  .history-section,
  .insights-section,
  .anniversary-feature-section,
  .site-footer {
    max-width: 100%;
    overflow-x: hidden;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .milestone-a {
    overflow: hidden;
  }

  .milestone-a__controls {
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    flex-wrap: nowrap;
    transform: none !important;
    scrollbar-width: none;
  }

  .milestone-a__controls::-webkit-scrollbar {
    display: none;
  }

  .milestone-a__track {
    contain: paint;
  }

  .milestone-a__track article {
    max-width: 100%;
  }

  .news-carousel {
    overflow: hidden;
  }

  .news-list {
    max-width: 100%;
    contain: paint;
  }
}

@media (max-width: 680px) {
  .site-footer {
    width: min(100% - (var(--page-gutter) * 2), 1180px);
    gap: 30px;
    padding-block: 38px 30px;
  }

  .footer-main {
    gap: 28px;
  }

  .footer-brand {
    gap: 12px;
  }

  .footer-brand strong {
    font-size: 24px;
  }

  .site-footer p {
    font-size: 14px;
    line-height: 1.68;
  }

  .footer-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px 18px;
  }

  .footer-nav-group {
    gap: 8px;
  }

  .footer-nav-group h3 {
    margin-bottom: 4px;
    font-size: 15px;
  }

  .footer-nav-group a {
    font-size: 13px;
    line-height: 1.38;
  }

  .footer-bottom {
    display: grid;
    gap: 8px;
  }
}

@media (max-width: 760px) and (min-width: 681px) {
  .footer-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 1180px) and (min-width: 981px) {
  .metrics-band {
    width: min(1850px, calc(100% - (var(--page-gutter) * 2)));
  }

  .metric {
    min-height: 146px;
    padding: 22px 10px;
  }

  .metric strong {
    gap: 6px;
    font-size: clamp(48px, 5vw, 58px);
  }

  .metric strong em {
    font-size: 18px;
    transform: translateY(-5px);
  }

  .metric > span {
    margin-top: 14px;
    font-size: 12px;
  }
}

.success-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(21, 21, 21, 0.34);
  backdrop-filter: blur(10px);
  animation: modal-backdrop-in 0.24s ease both;
  opacity: 1;
}

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

.success-modal.is-closing {
  pointer-events: none;
  animation: modal-backdrop-out 0.5s ease both;
}


.success-modal.is-closing .success-modal__dialog {
  animation: modal-dialog-out 0.42s cubic-bezier(0.55, 0, 0.25, 1) both;
}


.success-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 50%;
  color: #555555;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

@keyframes modal-backdrop-in {
  from {
    opacity: 0;
    backdrop-filter: blur(0);
  }
  to {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
}

@keyframes modal-backdrop-out {
  from {
    opacity: 1;
    backdrop-filter: blur(10px);
  }
  to {
    opacity: 0;
    backdrop-filter: blur(0);
  }
}

@keyframes modal-dialog-in {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes modal-dialog-out {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.94);
  }
}

@keyframes success-icon-pop {
  from {
    opacity: 0;
    transform: translate3d(0, 8px, 0) scale(0.72);
  }
  70% {
    transform: translate3d(0, 0, 0) scale(1.06);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes success-icon-ring {
  from {
    opacity: 0.7;
    transform: scale(0.84);
  }
  to {
    opacity: 0;
    transform: scale(1.42);
  }
}

@keyframes success-check-in {
  from {
    opacity: 0;
    transform: translateY(-2px) rotate(-45deg) scale(0);
  }
  to {
    opacity: 1;
    transform: translateY(-2px) rotate(-45deg) scale(1);
  }
}

@media (max-width: 980px) {
  :root {
    --page-gutter: 22px;
  }

  .site-header {
    gap: 10px;
    padding: 0 var(--page-gutter);
  }

  .site-header .brand {
    min-width: 0;
  }

  .desktop-nav,
  .header-actions {
    display: none;
  }

  .mobile-header-tools {
    order: 2;
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    flex-shrink: 0;
  }

  .mobile-language-switch {
    height: 40px;
    padding: 4px;
  }

  .mobile-language-switch button {
    min-width: 32px;
    height: 30px;
  }

  .menu-toggle {
    order: 3;
    display: grid;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    place-content: center;
    background: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition:
      background-color 0.24s ease,
      border-color 0.24s ease,
      box-shadow 0.24s ease,
      transform 0.16s ease;
  }

  .menu-toggle span {
    display: block;
    width: 17px;
    height: 2px;
    border-radius: 999px;
    background: var(--ink);
    transform-origin: center;
    transition:
      transform 0.28s cubic-bezier(0.16, 1, 0.3, 1),
      background-color 0.24s ease;
  }

  .menu-toggle:hover,
  .menu-toggle[aria-expanded="true"] {
    border-color: rgba(255, 138, 61, 0.38);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 26px rgba(255, 138, 61, 0.16);
  }

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

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
    background: var(--orange);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
    background: var(--orange);
  }

  .mobile-nav {
    position: sticky;
    top: 76px;
    z-index: 18;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 var(--page-gutter);
    border-bottom: 0 solid rgba(21, 21, 21, 0);
    background: rgba(247, 247, 247, 0.96);
    backdrop-filter: blur(18px) saturate(1.08);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1),
      opacity 0.28s ease,
      transform 0.36s cubic-bezier(0.16, 1, 0.3, 1),
      padding 0.28s ease,
      border-color 0.28s ease;
  }

  .mobile-nav.is-open {
    max-height: calc(100vh - 76px);
    overflow-y: auto;
    padding: 12px var(--page-gutter) 24px;
    border-bottom-width: 1px;
    border-bottom-color: rgba(21, 21, 21, 0.09);
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .mobile-nav-group {
    position: relative;
    display: grid;
    gap: 10px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(21, 21, 21, 0.08);
  }

  .mobile-nav-group:last-child {
    border-bottom: 0;
  }

  .mobile-nav a {
    position: relative;
    width: fit-content;
    padding: 0;
    background: transparent;
    font-weight: 700;
    transition:
      color 0.22s ease,
      opacity 0.22s ease,
      text-shadow 0.22s ease;
  }

  .mobile-nav-primary {
    color: #171717;
    font-size: 20px;
    font-weight: 850;
    line-height: 1.2;
  }

  .mobile-nav-sub {
    display: flex;
    flex-wrap: wrap;
    gap: 9px 18px;
    padding-right: 12px;
  }

  .mobile-nav-sub a {
    color: rgba(35, 35, 35, 0.62);
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.45;
  }

  .mobile-nav-action-row .mobile-nav-primary {
    color: var(--orange);
  }

  .mobile-nav a:hover {
    color: var(--orange);
    opacity: 0.94;
    text-shadow: 0 8px 20px rgba(255, 138, 61, 0.14);
  }

  .mobile-nav a:active {
    color: var(--orange);
  }

  .hero,
  .split-section,
  .funding-model-layout,
  .funding-mode-panel,
  .ecosystem-layout,
  .forum-slide,
  .impact-tabs,
  .section-heading.compact,
  .anniversary-band,
  .about-section {
    grid-template-columns: 1fr;
  }

  .ecosystem-hero-card {
    min-height: 430px;
  }

  .ecosystem-grid article {
    min-height: 270px;
  }

  .forum-stage {
    min-height: 760px;
  }

  .forum-slide {
    gap: 22px;
  }

  .forum-visual {
    min-height: 360px;
  }

  .forum-copy {
    justify-content: flex-start;
  }

  .impact-tab-list {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow-x: auto;
  }

  .impact-tab-list button {
    min-width: 148px;
    min-height: 58px;
  }

  .impact-detail-list,
  .impact-detail-list.compact,
  .impact-detail-list.honor-list {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 52px;
  }

  .hero-network {
    inset: 0 -10px;
    width: calc(100% + 20px);
    height: 100%;
  }

  .hero-panel {
    margin-left: 0;
    transform: none;
  }

  .section-copy {
    position: static;
  }

  .funding-coverage-shell {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: clamp(32px, 5vw, 54px);
    border-radius: 26px;
  }

  .funding-data-heading {
    max-width: 720px;
  }

  .coverage-panel {
    min-height: 560px;
  }

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

  .funding-mode-panel {
    min-height: 0;
  }

  .funding-mode-copy {
    align-self: start;
  }

  .coverage-map-copy {
    width: min(42vw, 380px);
    min-width: 280px;
  }

  .metrics-band,
  .ecosystem-grid,
  .content-rail {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .anniversary-band {
    padding: 44px 28px;
  }
}

@media (max-width: 680px) {
  .section-shell {
    width: min(100% - (var(--page-gutter) * 2), 1180px);
  }

  .apply-form {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11.5vw, 52px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-copy h1 span {
    white-space: normal;
  }

  .metrics-band,
  .process-grid,
  .funding-mode-tabs,
  .ecosystem-grid,
  .impact-tab-list,
  .content-rail {
    grid-template-columns: 1fr;
  }

  .impact-section {
    padding-bottom: 84px;
  }

  .funding-model-section {
    padding-bottom: 82px;
  }

  .funding-model-heading {
    margin-bottom: 34px;
  }

  .funding-coverage-shell {
    padding: 26px 20px 24px;
    border-radius: 22px;
  }

  .funding-data-heading p:not(.section-label) {
    font-size: 15px;
    line-height: 1.78;
  }

  .funding-data-heading h2 {
    white-space: normal;
  }

  .funding-mode-tabs {
    padding: 8px;
    border-radius: 16px;
  }

  .funding-mode-tab {
    min-height: 50px;
    padding: 0 14px;
  }

  .funding-mode-panel {
    padding: 22px;
    border-radius: 20px;
  }

  .funding-mode-copy h3 {
    font-size: clamp(30px, 8.2vw, 40px);
  }

  .demo-window {
    min-height: 520px;
  }

  .demo-stage {
    min-height: 466px;
  }

  .screening-demo {
    min-height: 540px;
  }

  .screening-demo::before,
  .screening-transition,
  .screening-cursor {
    display: none;
  }

  .screening-card {
    width: min(100% - 18px, 520px);
  }

  .screening-match {
    min-height: 0;
  }

  .coverage-panel {
    min-height: 0;
    padding: 0;
    border-radius: 0;
  }

  .coverage-map {
    min-height: 440px;
  }

  .coverage-map-canvas {
    width: 100%;
    aspect-ratio: 695.61 / 620;
  }

  .coverage-map-copy {
    left: 0;
    right: 0;
    top: 0;
    width: auto;
    min-width: 0;
    padding: 22px;
    transform: none;
  }

  .coverage-map-copy p {
    min-height: 0;
  }

  .impact-heading p,
  .impact-panel p {
    font-size: 15px;
  }

  .forum-stage {
    min-height: 720px;
    border-radius: 16px;
  }

  .forum-slide {
    padding: 18px;
  }

  .forum-visual {
    min-height: 300px;
  }

  .forum-copy h3 {
    font-size: 30px;
  }

  .forum-copy p {
    font-size: 14.5px;
  }

  .forum-navigation {
    gap: 10px;
  }

  .forum-nav-button {
    width: 38px;
    height: 38px;
  }

  .impact-panel {
    min-height: 250px;
    padding: 24px;
  }

  .impact-detail-list article {
    min-height: auto;
  }

  .ecosystem-section {
    padding-bottom: 82px;
  }

  .ecosystem-hero-card {
    min-height: 390px;
    padding: 24px;
  }

  .ecosystem-hero-card p:not(.section-label) {
    font-size: 15px;
  }

  .ecosystem-grid article {
    min-height: 250px;
  }

  .hero-panel {
    padding: 22px;
  }

  .metrics-band {
    margin-bottom: 78px;
  }

  .metric {
    min-height: 106px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .metric strong {
    font-size: 58px;
  }

  .metric strong em {
    font-size: 22px;
    transform: translateY(-6px);
  }

  .split-section,
  .ecosystem-section,
  .history-section,
  .knowledge-section,
  .insights-section {
    padding-bottom: 82px;
  }

  .history-section {
    padding-bottom: 58px;
  }

  .anniversary-feature-section {
    padding-top: 18px;
    padding-bottom: 58px;
  }

  .anniversary-feature-heading {
    margin-bottom: 30px;
  }

  .insights-section {
    padding-top: 18px;
  }

  .anniversary-board div {
    display: grid;
  }

  .anniversary-board strong {
    text-align: left;
  }

  .site-footer {
    display: grid;
    padding: 28px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.reveal-ready [data-reveal] {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  /* The global near-zero transition must not animate metric measurement itself.
     Otherwise a synchronous refit reads the previous font size as its ceiling. */
  .metric strong,
  .metric strong * { transition: none !important; }
}

/* Funding support v2: reference-video style motion skeleton */
.funding-support-demo {
  --support-cycle: 10.8s;
  --support-bg: #f4eee3;
  --support-black: #020403;
  --support-card: #fffaf3;
  min-height: 446px;
  overflow: hidden;
  border-radius: 22px;
  perspective: 900px;
}

.funding-support-demo::before,
.funding-mode-demo[data-demo-state="funding"] .demo-window::before {
  opacity: 0 !important;
  background: transparent !important;
}

.funding-mode-demo[data-demo-state="funding"] .demo-window {
  clip-path: none;
  transform: none;
}

.support-wheel-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: inherit;
  background:
    radial-gradient(circle at 60% 40%, rgba(255, 160, 58, 0.16), transparent 34%),
    linear-gradient(180deg, #faf6ee 0%, var(--support-bg) 100%);
}

.support-wheel-scene::before {
  content: "";
  position: absolute;
  inset: auto -8% 0;
  height: 1px;
  background: rgba(2, 4, 3, 0.08);
}

.support-field,
.support-wheel,
.support-fees::before,
.support-result-card {
  display: none !important;
}

.support-wheel-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block !important;
  opacity: 0.28;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 181, 79, 0.22), transparent 30%),
    linear-gradient(rgba(30, 26, 22, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 26, 22, 0.05) 1px, transparent 1px);
  background-size: auto, 34px 34px, 34px 34px;
  mask-image: radial-gradient(circle at 52% 50%, #000 0%, #000 42%, transparent 78%);
  pointer-events: none;
}

.support-orb-group {
  position: absolute !important;
  left: 50%;
  top: 58%;
  z-index: 6 !important;
  width: clamp(430px, 78vw, 640px) !important;
  height: clamp(250px, 43vw, 370px) !important;
  opacity: 1;
  transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.84) rotate(0deg);
  transform-origin: 50% 39% !important;
  animation: support-machine-reference var(--support-cycle) cubic-bezier(0.64, 0, 0.18, 1) infinite !important;
  will-change: transform, left, top;
}

.support-orb-group::before,
.support-orb-group::after {
  display: none !important;
}

.support-orb {
  position: absolute !important;
  left: 50% !important;
  top: 39% !important;
  z-index: 4 !important;
  width: clamp(112px, 20vw, 150px) !important;
  aspect-ratio: 1 !important;
  border-radius: 50% !important;
  background:
    radial-gradient(circle at 42% 35%, rgba(255, 239, 171, 0.55), transparent 34%),
    linear-gradient(145deg, #ffe075 0%, #ffad3f 42%, #ff7039 76%, #ffd76a 100%) !important;
  background-size: 180% 180% !important;
  box-shadow:
    inset -20px -22px 34px rgba(126, 48, 16, 0.3),
    inset 12px 12px 24px rgba(255, 255, 255, 0.16),
    0 16px 38px rgba(255, 111, 43, 0.22) !important;
  transform: translate(-50%, -50%);
  animation: support-orb-reference var(--support-cycle) cubic-bezier(0.16, 1, 0.3, 1) infinite !important;
  will-change: transform, filter, background-position;
}

.support-orb::before,
.support-orb::after {
  display: none !important;
}

.support-base {
  position: absolute !important;
  left: 50% !important;
  bottom: -58% !important;
  z-index: 2 !important;
  --support-cutout-radius: clamp(82px, 13vw, 106px);
  --support-shoulder-x: clamp(86px, 13.4vw, 108px);
  width: 174% !important;
  height: 148% !important;
  border: 0 !important;
  border-radius: 0 !important;
  background:
    radial-gradient(circle at 50% 6%, rgba(255, 194, 77, 0.2), transparent 26%),
    radial-gradient(circle at 72% 52%, rgba(255, 117, 47, 0.16), transparent 34%),
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    rgba(7, 6, 5, 0.88) !important;
  background-size: auto, auto, 34px 34px, 34px 34px, auto, auto !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 24px 54px rgba(255, 194, 77, 0.045),
    0 -18px 58px rgba(255, 138, 61, 0.1) !important;
  backdrop-filter: blur(18px) !important;
  transform: translateX(-50%) !important;
  overflow: visible !important;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500' preserveAspectRatio='none'%3E%3Cpath d='M0 94 H360 C381 94 390 101 399 116 C424 155 450 189 500 189 C550 189 576 155 601 116 C610 101 619 94 640 94 H1000 V500 H0 Z' fill='black'/%3E%3C/svg%3E") !important;
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500' preserveAspectRatio='none'%3E%3Cpath d='M0 94 H360 C381 94 390 101 399 116 C424 155 450 189 500 189 C550 189 576 155 601 116 C610 101 619 94 640 94 H1000 V500 H0 Z' fill='black'/%3E%3C/svg%3E") !important;
  -webkit-mask-size: 100% 100% !important;
  mask-size: 100% 100% !important;
  -webkit-mask-repeat: no-repeat !important;
  mask-repeat: no-repeat !important;
}

.support-base::before {
  content: "" !important;
  position: absolute !important;
  inset: 0 !important;
  z-index: 1 !important;
  display: none !important;
  border-radius: 42px 42px 0 0 !important;
  background: var(--support-black) !important;
  -webkit-mask-image: radial-gradient(
    circle at 50% 10%,
    transparent 0 var(--support-cutout-radius),
    #000 calc(var(--support-cutout-radius) + 1px)
  ) !important;
  mask-image: radial-gradient(
    circle at 50% 10%,
    transparent 0 var(--support-cutout-radius),
    #000 calc(var(--support-cutout-radius) + 1px)
  ) !important;
}

.support-base::after {
  content: "" !important;
  position: absolute !important;
  left: 50% !important;
  top: calc(10% - var(--support-cutout-radius) - 8px) !important;
  z-index: 2 !important;
  display: none !important;
  width: calc(var(--support-cutout-radius) * 2.08) !important;
  aspect-ratio: 1 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow:
    inset 0 -14px 20px rgba(255, 247, 232, 0.42),
    0 12px 36px rgba(255, 178, 76, 0.08) !important;
  transform: translateX(-50%) !important;
}

.support-base span {
  display: none !important;
}

.support-fees {
  --fee-center-x: 72%;
  --fee-center-y: 50%;
  --fee-radius: clamp(126px, 18.8vw, 166px);
  position: absolute !important;
  inset: 0 !important;
  z-index: 5 !important;
  pointer-events: none !important;
}

.support-fees::after {
  content: "" !important;
  position: absolute !important;
  left: var(--fee-center-x) !important;
  top: var(--fee-center-y) !important;
  z-index: 1 !important;
  width: calc(var(--fee-radius) * 2.08) !important;
  aspect-ratio: 1 !important;
  border-radius: 50% !important;
  border: 1px solid rgba(255, 185, 70, 0.16) !important;
  background:
    conic-gradient(
      from 210deg,
      rgba(255, 117, 47, 0) 0deg,
      rgba(255, 189, 75, 0.24) 88deg,
      rgba(255, 117, 47, 0) 178deg,
      rgba(255, 117, 47, 0) 360deg
    ) !important;
  -webkit-mask-image: radial-gradient(circle, transparent 0 62%, #000 63%, #000 66%, transparent 67%) !important;
  mask-image: radial-gradient(circle, transparent 0 62%, #000 63%, #000 66%, transparent 67%) !important;
  opacity: 0;
  transform: translate(-50%, -50%) rotate(var(--fee-ring-angle, 80deg)) scale(var(--fee-ring-scale, 0.82));
  animation: none !important;
  will-change: transform, opacity;
}

.support-fee-chip {
  --orbit-angle: 180deg;
  --counter-angle: -180deg;
  position: absolute !important;
  left: var(--fee-center-x) !important;
  top: var(--fee-center-y) !important;
  z-index: 5 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: clamp(122px, 20vw, 188px) !important;
  min-height: clamp(42px, 6.8vw, 62px) !important;
  padding: 0 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background:
    linear-gradient(115deg, #ffd76a 0%, #ffb343 42%, #ff7338 100%) !important;
  background-size: 180% 180% !important;
  color: rgba(34, 19, 10, 0.94) !important;
  font-size: clamp(15px, 2vw, 19px) !important;
  font-weight: 900 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 16px 38px rgba(255, 111, 43, 0.24),
    0 14px 32px rgba(2, 4, 3, 0.15) !important;
  opacity: 0;
  transform-origin: 50% 50% !important;
  transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--fee-radius)) rotate(180deg) scale(0.78);
  animation: none !important;
  transition: none !important;
  will-change: transform, opacity, filter;
}

.support-fee-chip em {
  display: none !important;
}

.chip-legal {
  --orbit-angle: 112.5deg;
  --counter-angle: -112.5deg;
}

.chip-court {
  --orbit-angle: 157.5deg;
  --counter-angle: -157.5deg;
}

.chip-arbitration {
  --orbit-angle: 202.5deg;
  --counter-angle: -202.5deg;
}

.chip-preserve {
  --orbit-angle: 247.5deg;
  --counter-angle: -247.5deg;
}

.chip-expert {
  --orbit-angle: 292.5deg;
  --counter-angle: -292.5deg;
}

.chip-execution {
  --orbit-angle: 337.5deg;
  --counter-angle: -337.5deg;
}

.chip-assessment {
  --orbit-angle: 22.5deg;
  --counter-angle: -22.5deg;
}

.chip-coordination {
  --orbit-angle: 67.5deg;
  --counter-angle: -67.5deg;
}

@keyframes support-machine-reference {
  0% {
    left: 50%;
    top: 78%;
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 116px, 0) scale(0.84) rotate(0deg);
  }
  8% {
    left: 50%;
    top: 57.5%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, -3px, 0) scale(0.86) rotate(0deg);
  }
  12% {
    left: 50%;
    top: 58%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.84) rotate(0deg);
  }
  23% {
    left: 50%;
    top: 58%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.84) rotate(0deg);
  }
  30% {
    left: 71%;
    top: 57.5%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(10px, -2px, 0) scale(0.79) rotate(-97deg);
  }
  37% {
    left: 72%;
    top: 58%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.78) rotate(-90deg);
  }
  82% {
    left: 72%;
    top: 58%;
    opacity: 1;
    transform: translate(-50%, -50%) translate3d(0, 0, 0) scale(0.78) rotate(-90deg);
  }
  100% {
    left: 50%;
    top: 78%;
    opacity: 0;
    transform: translate(-50%, -50%) translate3d(0, 116px, 0) scale(0.84) rotate(0deg);
  }
}

@keyframes support-orb-reference {
  0%,
  100% {
    filter: blur(9px);
    opacity: 0.55;
    transform: translate(-50%, -50%) scale(0.92);
  }
  9%,
  22%,
  78% {
    filter: blur(0);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  28% {
    filter: blur(0);
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.035);
  }
}

@keyframes support-fee-orbit-reference {
  0%,
  31% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(80deg) scale(0.76);
  }
  39% {
    opacity: 0.48;
    transform: translate(-50%, -50%) rotate(42deg) scale(0.9);
  }
  54%,
  80% {
    opacity: 0.72;
    transform: translate(-50%, -50%) rotate(0deg) scale(1);
  }
  94%,
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-52deg) scale(0.78);
  }
}

@keyframes support-card-reference {
  0%,
  31% {
    opacity: 0;
    filter: blur(8px);
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 80deg)) translateX(calc(var(--fee-radius) * 0.78)) rotate(calc(var(--counter-angle) - 80deg)) scale(0.72);
  }
  37% {
    opacity: 0.48;
    filter: blur(4px);
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 42deg)) translateX(calc(var(--fee-radius) * 0.9)) rotate(calc(var(--counter-angle) - 42deg)) scale(0.86);
  }
  46% {
    opacity: 0.88;
    filter: blur(2px);
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) + 18deg)) translateX(calc(var(--fee-radius) * 0.97)) rotate(calc(var(--counter-angle) - 18deg)) scale(0.96);
  }
  58%,
  78% {
    opacity: 1;
    filter: blur(0);
    transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateX(var(--fee-radius)) rotate(var(--counter-angle)) scale(1);
  }
  94%,
  100% {
    opacity: 0;
    filter: blur(7px);
    transform: translate(-50%, -50%) rotate(calc(var(--orbit-angle) - 52deg)) translateX(calc(var(--fee-radius) * 0.78)) rotate(calc(var(--counter-angle) + 52deg)) scale(0.72);
  }
}

/* Anniversary feature: scroll-expanded topic entrance */
.anniversary-feature-section {
  --anniversary-card-opacity: 0.72;
  --anniversary-clip-x: 19%;
  --anniversary-clip-bottom: 48%;
  --anniversary-radius: 30px;
  --anniversary-scale-x: 0.72;
  --anniversary-scale-y: 0.54;
  --anniversary-glow-opacity: 0.72;
  --anniversary-glow-y: 28px;
  --anniversary-content-opacity: 0;
  --anniversary-content-blur: 8px;
  --anniversary-content-y: 28px;
  padding-top: clamp(8px, 1.6vw, 26px);
  padding-bottom: clamp(112px, 11vw, 178px);
}

.anniversary-feature-heading {
  display: grid;
  justify-items: center;
  max-width: 960px;
  margin: 0 auto clamp(30px, 3.2vw, 52px);
  text-align: center;
}

.anniversary-feature-heading .char-title {
  justify-content: center;
}

.anniversary-feature-heading p:not(.section-label) {
  max-width: 720px;
  margin-top: 24px;
}

.anniversary-expand-card {
  transform-origin: top center;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 540px);
  align-items: stretch;
  justify-content: space-between;
  gap: clamp(40px, 5.8vw, 106px);
  width: 100%;
  min-height: clamp(410px, 39vw, 520px);
  margin: 0 auto;
  padding: clamp(34px, 4.5vw, 70px);
  border: 1px solid rgba(255, 214, 106, 0.14);
  border-radius: 30px;
  color: #ffffff;
  background:
    radial-gradient(circle at 14% 86%, rgba(255, 111, 43, 0.84), transparent 31%),
    radial-gradient(circle at 76% 22%, rgba(255, 213, 86, 0.58), transparent 30%),
    radial-gradient(circle at 46% 54%, rgba(255, 138, 61, 0.2), transparent 38%),
    linear-gradient(135deg, #171111 0%, #21110b 46%, #070605 100%);
  box-shadow:
    0 30px 92px rgba(21, 10, 4, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  opacity: var(--anniversary-card-opacity);
  clip-path: inset(0 var(--anniversary-clip-x) var(--anniversary-clip-bottom) round var(--anniversary-radius));
  transform: translate3d(0, 0, 0) scaleX(var(--anniversary-scale-x)) scaleY(var(--anniversary-scale-y));
  transition: none;
  backface-visibility: hidden;
  contain: layout paint;
  will-change: clip-path, transform, opacity;
}

.anniversary-feature-section.is-expanded .anniversary-expand-card {
  opacity: 1;
  clip-path: inset(0 round 32px);
  transform: translate3d(0, 0, 0) scaleX(1) scaleY(1);
}

.anniversary-feature-section.is-collapsing .anniversary-expand-card {
  transition:
    clip-path 1.08s cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 1.08s cubic-bezier(0.2, 0.72, 0.18, 1),
    opacity 0.92s ease;
}

.anniversary-expand-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.32;
  background:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 50% 55%, #000 0%, transparent 76%);
}

.anniversary-expand-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -24% -8%;
  z-index: -1;
  height: 46%;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 117, 47, 0.75), rgba(255, 213, 86, 0.54), rgba(255, 117, 47, 0.18));
  filter: blur(34px);
  opacity: var(--anniversary-glow-opacity);
  transform: translateY(var(--anniversary-glow-y));
  transition: none;
}

.anniversary-feature-section.is-expanded .anniversary-expand-card::after {
  opacity: 0.95;
  transform: translateY(0);
}

.anniversary-expand-copy,
.anniversary-expand-grid {
  position: relative;
  z-index: 1;
  opacity: var(--anniversary-content-opacity);
  filter: blur(var(--anniversary-content-blur));
  transform: translate3d(0, var(--anniversary-content-y), 0);
  transition: none;
}

.anniversary-feature-section.is-expanded .anniversary-expand-copy,
.anniversary-feature-section.is-expanded .anniversary-expand-grid {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0);
}

.anniversary-feature-section.is-collapsing .anniversary-expand-copy,
.anniversary-feature-section.is-collapsing .anniversary-expand-grid {
  transition:
    opacity 0.86s cubic-bezier(0.2, 0.72, 0.18, 1),
    filter 0.86s cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 0.86s cubic-bezier(0.2, 0.72, 0.18, 1);
}

.anniversary-feature-section.is-expanded .anniversary-expand-copy {
  transition-delay: 0.22s;
}

.anniversary-feature-section.is-expanded .anniversary-expand-grid {
  transition-delay: 0.34s;
}

.anniversary-expand-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  max-width: 720px;
}

.anniversary-expand-copy .section-label {
  color: rgba(255, 213, 86, 0.8);
}

.anniversary-expand-copy h3 {
  margin: 0;
  max-width: 640px;
  font-size: clamp(28px, 3.1vw, 46px);
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: 0;
}

.anniversary-expand-copy p:not(.section-label) {
  margin: 24px 0 30px;
  max-width: 660px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.78;
}

.anniversary-expand-copy .button {
  align-self: flex-start;
  margin-top: auto;
}

.anniversary-expand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-self: end;
  width: min(100%, 540px);
  justify-self: end;
  gap: clamp(14px, 1.25vw, 20px);
}

.anniversary-tile {
  display: grid;
  align-content: space-between;
  min-height: clamp(126px, 8.7vw, 158px);
  padding: clamp(18px, 1.55vw, 24px);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 15px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 194, 77, 0.18), transparent 38%),
    rgba(255, 255, 255, 0.07);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  transition:
    background-position 0.9s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.28s ease,
    color 0.28s ease;
}

a.anniversary-tile {
  cursor: pointer;
}

a.anniversary-tile:hover {
  border-color: rgba(255, 213, 86, 0.28);
  background-position: 100% 50%;
}

.anniversary-tile span {
  color: rgba(255, 117, 47, 0.94);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 820;
  line-height: 1.15;
}

.anniversary-tile strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(18px, 1.28vw, 22px);
  font-weight: 850;
  line-height: 1.24;
}

.tile-report {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 117, 47, 0.28), transparent 42%),
    rgba(255, 255, 255, 0.075);
}

.tile-forum {
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 213, 86, 0.24), transparent 44%),
    rgba(255, 255, 255, 0.065);
}

.tile-media {
  background:
    radial-gradient(circle at 70% 70%, rgba(255, 138, 61, 0.26), transparent 44%),
    rgba(255, 255, 255, 0.07);
}

@media (max-width: 980px) {
  .history-section {
    padding-bottom: 58px;
  }

  .anniversary-feature-section {
    --anniversary-card-opacity: 1 !important;
    --anniversary-clip-x: 0% !important;
    --anniversary-clip-bottom: 0% !important;
    --anniversary-radius: 26px !important;
    --anniversary-scale-x: 1 !important;
    --anniversary-scale-y: 1 !important;
    --anniversary-glow-opacity: 0.9 !important;
    --anniversary-glow-y: 0px !important;
    --anniversary-content-opacity: 1 !important;
    --anniversary-content-blur: 0px !important;
    --anniversary-content-y: 0px !important;
    padding-top: 18px;
    padding-bottom: 58px;
  }

  .insights-section {
    padding-top: 18px;
    padding-bottom: 82px;
  }

  .anniversary-expand-card {
    grid-template-columns: 1fr;
    width: 100%;
    min-height: auto;
    max-width: none;
    clip-path: inset(0 round 26px);
    transform: none;
  }

  .anniversary-feature-section.is-expanded .anniversary-expand-card {
    min-height: auto;
  }

  .anniversary-expand-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-self: stretch;
    width: 100%;
    justify-self: stretch;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .history-section {
    overflow: visible;
    padding-bottom: 84px;
  }

  .history-section .section-heading {
    overflow: visible;
    padding-top: 12px;
    padding-right: 28px;
  }

  .milestone-a {
    overflow: visible;
    padding-inline: 18px;
  }

  .milestone-a__stage {
    min-height: 0;
    margin-top: 0;
  }

  .milestone-a__controls {
    width: max-content;
    max-width: none;
    overflow: visible;
    padding-bottom: calc(var(--timeline-line-top) + 8px);
    transform: translate3d(var(--timeline-shift, 0px), 0, 0) !important;
  }

  .milestone-a__controls button::after {
    left: 4px;
  }

  .milestone-a__track {
    min-height: 0;
    height: var(--milestone-event-height, 128px);
  }

  .milestone-a__track h3 {
    font-size: clamp(28px, 3vw, 42px);
  }

  .milestone-a__track p {
    font-size: clamp(15px, 1.65vw, 17px);
    line-height: 1.76;
  }

  .anniversary-feature-section {
    padding-top: 50px;
    padding-bottom: 76px;
  }

  .insights-section {
    padding-top: 44px;
  }
}

@media (max-width: 820px) {
  .impact-tabs {
    grid-template-columns: 1fr;
  }

  .impact-tab-list {
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .impact-tab-list button {
    min-width: 0;
    width: 100%;
  }
}

@media (max-width: 760px) {
  .milestone-a {
    overflow: visible;
  }

  .milestone-a__controls {
    transform: none !important;
  }

  .milestone-a__controls button {
    padding-left: 52px;
  }

  .milestone-a__controls button::after {
    left: 30px;
  }
}

@media (max-width: 680px) {
  .anniversary-feature-heading p:not(.section-label) {
    max-width: 92%;
  }

  .anniversary-feature-section {
    --anniversary-radius: 24px !important;
    padding-bottom: 62px;
  }

  .anniversary-expand-card {
    width: min(100%, 92vw);
    min-height: auto;
    padding: 28px;
    border-radius: 24px;
    clip-path: inset(0 round 24px);
    transform: none;
  }

  .anniversary-expand-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .anniversary-tile {
    min-height: 108px;
  }
}

@media (max-width: 760px) {
  .funding-data-section {
    overflow: hidden;
  }

  .coverage-panel {
    overflow: hidden;
  }

  .coverage-map-copy {
    left: 14px !important;
    right: 14px !important;
    top: 18px !important;
    width: auto !important;
    min-width: 0;
    transform: none !important;
    transform-origin: center !important;
  }

  .coverage-map-copy::before {
    display: none;
  }

  .coverage-map-real svg {
    overflow: hidden;
  }

  .milestone-a__nav {
    justify-content: flex-end;
    margin-top: -4px;
  }

  .milestone-a__track {
    overflow: hidden;
  }

  .milestone-a__track article {
    transform: translate3d(24px, 0, 0) scale(0.97);
  }

  .milestone-a__track article.is-active {
    transform: translate3d(0, 0, 0) scale(1);
  }

  .milestone-a__track article.is-leaving {
    animation: none;
    opacity: 0;
    filter: blur(4px);
    transform: translate3d(24px, 0, 0) scale(0.96);
  }
}

@media (max-width: 420px) {
  .footer-nav {
    gap: 24px 14px;
  }

  .footer-nav-group a {
    font-size: 12.5px;
  }
}

.is-english .desktop-nav a {
  font-size: clamp(13px, 0.78vw, 15px);
}

.is-english .hero-copy h1 {
  max-width: 980px;
  font-size: clamp(46px, 6vw, 92px);
  line-height: 0.98;
}

.is-english .hero-lead,
.is-english .section-heading > p {
  line-height: 1.72;
}

.is-english .char-title {
  font-size: clamp(34px, 4.2vw, 60px);
  letter-spacing: 0;
}

.is-english .funding-mode-tab strong,
.is-english .impact-tab-list button,
.is-english .button,
.is-english .nav-action {
  white-space: normal;
}

.is-english .funding-mode-copy h3,
.is-english .forum-copy h3,
.is-english .milestone-a__track h3,
.is-english .anniversary-expand-copy h3 {
  letter-spacing: 0;
}

.is-english .ecosystem-grid h3,
.is-english .ecosystem-hero-card h3,
.is-english .news-card h3 {
  word-break: normal;
  overflow-wrap: anywhere;
}

@media (min-width: 1181px) and (max-width: 1599px) {
  .metric strong {
    gap: 8px;
    font-size: clamp(72px, 5.2vw, 82px);
  }

  .metric strong em {
    font-size: clamp(18px, 1.18vw, 21px);
    transform: translateY(-6px);
  }
}

@media (min-width: 1600px) {
  .metric strong {
    gap: 8px;
    font-size: clamp(92px, 5vw, 98px);
  }

  .metric strong em {
    font-size: clamp(20px, 1.15vw, 24px);
    transform: translateY(-7px);
  }
}

@media (min-width: 1600px) and (max-width: 1799px) {
  .metric strong {
    font-size: 88px;
  }
}

/* Light tone direction B: warm key areas with soft gradient only. */
:root {
  --warm-blush: #fbebdd;
  --warm-cream: #fff8f0;
  --warm-paper: #fffaf5;
  --warm-taupe: #9d907d;
  --warm-copper: #c86b3b;
}

body {
  background:
    radial-gradient(ellipse at 88% 5%, rgba(255, 194, 77, 0.24), transparent 32rem),
    radial-gradient(ellipse at 8% 13%, rgba(251, 235, 221, 0.88), transparent 38rem),
    radial-gradient(ellipse at 70% 52%, rgba(255, 138, 61, 0.075), transparent 44rem),
    linear-gradient(180deg, #fffdf9 0%, #fff9f2 36%, var(--warm-paper) 62%, var(--warm-blush) 100%);
}

.site-header {
  background: var(--navigation-paper);
  border-bottom-color: rgba(157, 144, 125, 0.16);
}

.nav-menu,
.mobile-menu {
  background: rgba(255, 250, 245, 0.98);
  border-color: rgba(157, 144, 125, 0.18);
}

.funding-data-section,
.funding-model-section,
.anniversary-feature-section,
.insights-section {
  position: relative;
  isolation: isolate;
}

.funding-data-section::before,
.funding-model-section::before,
.anniversary-feature-section::before,
.insights-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 12% 6%, rgba(255, 194, 77, 0.12), transparent 30rem),
    radial-gradient(ellipse at 94% 40%, rgba(251, 235, 221, 0.56), transparent 34rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.58), rgba(251, 235, 221, 0.2));
  opacity: 0.8;
  mix-blend-mode: normal;
}

.funding-data-section {
  background:
    radial-gradient(circle at 82% 8%, rgba(255, 194, 77, 0.16), transparent 32rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.66), rgba(251, 235, 221, 0.22));
}

.funding-mode-tabs {
  border-color: rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 194, 77, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(251, 235, 221, 0.62));
  box-shadow: 0 16px 42px rgba(157, 116, 78, 0.08);
}

.funding-mode-panel {
  border-color: rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 194, 77, 0.2), transparent 23rem),
    radial-gradient(circle at 100% 100%, rgba(255, 138, 61, 0.12), transparent 26rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(251, 235, 221, 0.62));
  box-shadow: 0 28px 88px rgba(157, 116, 78, 0.12);
}

.funding-mode-panel::before {
  background-image:
    linear-gradient(rgba(157, 144, 125, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 144, 125, 0.045) 1px, transparent 1px);
  opacity: 0.62;
}

.coverage-map-copy {
  border-color: rgba(157, 144, 125, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(251, 235, 221, 0.78)),
    radial-gradient(circle at 0% 0%, rgba(255, 194, 77, 0.16), transparent 12rem);
  box-shadow:
    0 24px 62px rgba(157, 116, 78, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.anniversary-feature-section {
  background:
    radial-gradient(circle at 76% 16%, rgba(255, 194, 77, 0.16), transparent 26rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.44), rgba(251, 235, 221, 0.24));
}

.anniversary-expand-card {
  color: var(--ink);
  border-color: rgba(200, 107, 59, 0.18);
  background:
    radial-gradient(circle at 16% 84%, rgba(255, 138, 61, 0.2), transparent 32%),
    radial-gradient(circle at 80% 18%, rgba(255, 213, 86, 0.28), transparent 30%),
    linear-gradient(135deg, rgba(255, 250, 245, 0.96) 0%, rgba(251, 235, 221, 0.92) 54%, rgba(255, 239, 220, 0.88) 100%);
  box-shadow:
    0 30px 92px rgba(157, 116, 78, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.anniversary-expand-card::before {
  opacity: 0.13;
  background:
    linear-gradient(rgba(157, 144, 125, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 144, 125, 0.05) 1px, transparent 1px);
  background-size: 42px 42px, 42px 42px;
  mix-blend-mode: multiply;
  mask-image: none;
}

.anniversary-expand-card::after {
  background: linear-gradient(90deg, rgba(255, 117, 47, 0.48), rgba(255, 213, 86, 0.36), rgba(251, 235, 221, 0.18));
  opacity: calc(var(--anniversary-glow-opacity) * 0.8);
}

.anniversary-expand-copy .section-label,
.anniversary-tile span {
  color: var(--warm-copper);
}

.anniversary-expand-copy p:not(.section-label) {
  color: rgba(21, 21, 21, 0.66);
}

.anniversary-tile {
  border-color: rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 194, 77, 0.14), transparent 38%),
    rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 46px rgba(157, 116, 78, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.anniversary-tile strong {
  color: rgba(21, 21, 21, 0.9);
}

.tile-report,
.tile-video,
.tile-film {
  background:
    radial-gradient(circle at 76% 22%, rgba(255, 117, 47, 0.16), transparent 42%),
    rgba(255, 255, 255, 0.56);
}

.insights-section {
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 235, 221, 0.76), transparent 30rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.42), rgba(255, 255, 255, 0));
}

.news-card {
  box-shadow: 0 22px 70px rgba(157, 116, 78, 0.12);
}

.site-footer {
  background: var(--navigation-paper);
}

/* Light tone v2: brighten dark modules with gradient-only page atmosphere. */
main {
  position: relative;
  isolation: isolate;
}

main::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 18%, rgba(251, 235, 221, 0.62), transparent 36rem),
    radial-gradient(ellipse at 92% 34%, rgba(255, 194, 77, 0.14), transparent 34rem),
    radial-gradient(ellipse at 52% 72%, rgba(255, 138, 61, 0.07), transparent 40rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(251, 235, 221, 0.22) 48%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.86;
  mix-blend-mode: normal;
}

main > * {
  position: relative;
  z-index: 1;
}

.funding-data-section::before,
.funding-model-section::before,
.anniversary-feature-section::before,
.insights-section::before {
  background:
    radial-gradient(ellipse at 14% 12%, rgba(255, 194, 77, 0.14), transparent 30rem),
    radial-gradient(ellipse at 92% 78%, rgba(251, 235, 221, 0.46), transparent 34rem),
    linear-gradient(180deg, rgba(255, 250, 245, 0.5), rgba(251, 235, 221, 0.2));
  opacity: 0.72;
  mix-blend-mode: normal;
}

.anniversary-expand-card::before {
  background:
    linear-gradient(rgba(157, 144, 125, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 144, 125, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  opacity: 0.2;
  mix-blend-mode: multiply;
}

/* Bright process demos */
.demo-window {
  color: var(--ink);
  border-color: rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 194, 77, 0.18), transparent 18rem),
    radial-gradient(circle at 72% 64%, rgba(255, 138, 61, 0.11), transparent 20rem),
    linear-gradient(135deg, rgba(255, 253, 249, 0.92) 0%, rgba(251, 235, 221, 0.7) 58%, rgba(255, 246, 235, 0.88) 100%);
  box-shadow:
    0 30px 90px rgba(157, 116, 78, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.demo-window::before,
.screening-demo::before,
.diligence-ambient {
  background-image:
    linear-gradient(rgba(157, 144, 125, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(157, 144, 125, 0.05) 1px, transparent 1px);
  opacity: 0.42;
}

.demo-window-bar {
  border-bottom-color: rgba(157, 144, 125, 0.14);
  background: rgba(255, 255, 255, 0.42);
}

.demo-window-bar span {
  background: rgba(157, 144, 125, 0.28);
}

.demo-window-bar strong {
  color: rgba(21, 21, 21, 0.58);
}

.demo-form-card,
.demo-analysis-card,
.screening-card,
.collector-form,
.diligence-list-panel,
.diligence-desk,
.diligence-lens-panel {
  border-color: rgba(157, 144, 125, 0.18);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(251, 235, 221, 0.58)),
    rgba(255, 255, 255, 0.64);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 26px 76px rgba(157, 116, 78, 0.12);
}

.screening-card > p,
.diligence-list-panel > p,
.diligence-lens-panel > p {
  color: var(--warm-copper);
  background: rgba(255, 250, 245, 0.66);
  border-color: rgba(200, 107, 59, 0.18);
  box-shadow: 0 10px 24px rgba(157, 116, 78, 0.09);
}

.screening-field,
.screening-match-row,
.diligence-row,
.diligence-lens-row,
.demo-field {
  border-color: rgba(157, 144, 125, 0.14);
  background: rgba(255, 255, 255, 0.5);
  color: rgba(21, 21, 21, 0.74);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.screening-field span,
.screening-match-row span,
.collector-form span,
.demo-field span {
  color: rgba(21, 21, 21, 0.48);
}

.screening-field strong,
.screening-match-row strong,
.collector-form strong,
.demo-field strong,
.diligence-row,
.diligence-lens-row {
  color: rgba(21, 21, 21, 0.86);
}

.screening-transition::after {
  background:
    radial-gradient(ellipse at 50% 50%, rgba(255, 194, 77, 0.16), transparent 64%),
    rgba(157, 144, 125, 0.2);
}

.collector-slot::before,
.collector-slot::after {
  background:
    linear-gradient(90deg, rgba(255, 194, 77, 0.06), rgba(255, 194, 77, 0.44), rgba(255, 138, 61, 0.36)),
    rgba(255, 250, 245, 0.88);
  box-shadow:
    inset 0 0 0 1px rgba(255, 138, 61, 0.16),
    inset 0 9px 16px rgba(157, 116, 78, 0.08),
    0 0 34px rgba(255, 138, 61, 0.12);
}

.screening-result,
.support-result-card {
  color: var(--ink);
  border-color: rgba(255, 138, 61, 0.22);
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 194, 77, 0.22), transparent 13rem),
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(251, 235, 221, 0.86));
  box-shadow:
    0 28px 80px rgba(157, 116, 78, 0.18),
    0 0 54px rgba(255, 138, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.screening-result p,
.support-result-card p {
  color: rgba(21, 21, 21, 0.62);
}

.screening-result span,
.support-result-card span {
  color: var(--warm-copper);
}

.screening-result strong,
.support-result-card strong {
  color: rgba(21, 21, 21, 0.92);
}

.diligence-list-panel::before,
.diligence-lens-panel::before {
  background:
    linear-gradient(180deg, rgba(255, 250, 245, 0.88), rgba(255, 250, 245, 0.52) 58%, rgba(255, 250, 245, 0)),
    rgba(255, 250, 245, 0.12);
}

.diligence-lens {
  border-color: rgba(87, 71, 58, 0.92);
  background:
    radial-gradient(circle at 42% 34%, rgba(255, 255, 255, 0.34), transparent 42%),
    rgba(255, 194, 77, 0.12);
  box-shadow:
    0 18px 42px rgba(157, 116, 78, 0.2),
    0 0 38px rgba(255, 194, 77, 0.16),
    inset 0 0 0 1px rgba(255, 218, 118, 0.18);
}

.diligence-lens::after {
  background:
    linear-gradient(90deg, rgba(87, 71, 58, 0.96) 0 18%, rgba(255, 138, 61, 0.94) 18% 100%),
    linear-gradient(90deg, rgba(255, 218, 118, 0.92), rgba(255, 138, 61, 0.82));
}

.diligence-lens-mask {
  background:
    radial-gradient(circle at var(--due-mask-x) var(--due-mask-y), rgba(255, 250, 245, 0.98), rgba(251, 235, 221, 0.96) 72%);
}

.support-wheel-scene {
  background:
    radial-gradient(circle at 72% 44%, rgba(255, 194, 77, 0.16), transparent 18rem),
    linear-gradient(180deg, #fffaf5 0%, #fbebdd 100%);
}

.funding-support-demo {
  --support-structure: rgba(157, 144, 125, 0.58);
  --support-black: rgba(157, 144, 125, 0.62);
  --support-paper: #fffaf4;
}

.support-base {
  background:
    radial-gradient(circle at 50% -8%, rgba(255, 194, 77, 0.18), transparent 22rem),
    linear-gradient(180deg, rgba(176, 160, 139, 0.78), rgba(124, 112, 96, 0.72));
  box-shadow:
    0 -18px 44px rgba(157, 116, 78, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.support-fee-chip {
  background-image: var(--button-flow);
  background-size: 240% 240%;
  color: #171717;
  box-shadow: 0 18px 44px rgba(255, 138, 61, 0.18);
}

/* Bright ecosystem */
.ecosystem-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(251, 235, 221, 0.58), transparent 34rem),
    radial-gradient(circle at 92% 44%, rgba(255, 194, 77, 0.1), transparent 30rem);
}

.ecosystem-hero-card,
.ecosystem-grid article,
.ecosystem-grid article:nth-child(1),
.ecosystem-grid article:nth-child(2),
.ecosystem-grid article:nth-child(3),
.ecosystem-grid article:nth-child(4),
.ecosystem-grid article:nth-child(5) {
  color: var(--ink);
  border: 1px solid rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 8% 78%, rgba(255, 138, 61, 0.18) 0%, rgba(255, 194, 77, 0.12) 36%, transparent 72%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(251, 235, 221, 0.7) 58%, rgba(255, 250, 245, 0.9) 100%);
  box-shadow:
    0 20px 62px rgba(157, 116, 78, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.ecosystem-hero-card::before,
.ecosystem-grid article::before {
  background:
    linear-gradient(105deg, transparent 0%, transparent 20%, rgba(255, 138, 61, 0.16) 38%, rgba(255, 196, 60, 0.18) 50%, transparent 78%),
    radial-gradient(ellipse at var(--glow-x, 8%) var(--glow-y, 76%), rgba(255, 143, 31, 0.22) 0%, rgba(255, 194, 77, 0.12) 38%, transparent 78%),
    repeating-linear-gradient(90deg, rgba(157, 144, 125, 0.026) 0 1px, transparent 1px 12px);
  opacity: 0.78;
}

.ecosystem-grid article::after,
.ecosystem-hero-card::after {
  border-color: rgba(255, 138, 61, 0.14);
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.04),
    inset 0 -28px 70px rgba(255, 194, 77, 0.06);
}

.ecosystem-hero-card .section-label,
.ecosystem-grid span {
  color: var(--warm-copper);
}

.ecosystem-hero-card h3,
.ecosystem-grid h3 {
  color: rgba(21, 21, 21, 0.92);
}

.ecosystem-hero-card p:not(.section-label),
.ecosystem-grid p {
  color: rgba(21, 21, 21, 0.62);
}

.funding-principles span {
  border-color: rgba(200, 107, 59, 0.18);
  color: rgba(21, 21, 21, 0.72);
  background: rgba(255, 255, 255, 0.5);
}

/* Bright impact showcase */
.impact-section {
  background:
    radial-gradient(circle at 92% 8%, rgba(255, 194, 77, 0.12), transparent 30rem),
    radial-gradient(circle at 10% 82%, rgba(251, 235, 221, 0.42), transparent 32rem);
}

.forum-stage {
  border: 1px solid rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 194, 77, 0.18), transparent 30rem),
    linear-gradient(145deg, rgba(255, 253, 249, 0.86), rgba(251, 235, 221, 0.72));
  box-shadow:
    0 28px 86px rgba(157, 116, 78, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.forum-copy {
  color: var(--ink);
}

.forum-copy span {
  color: var(--warm-copper);
}

.forum-copy h3 {
  color: rgba(21, 21, 21, 0.92);
}

.forum-copy p {
  color: rgba(21, 21, 21, 0.62);
}

.forum-visual {
  box-shadow:
    0 20px 60px rgba(255, 138, 61, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.impact-panel,
.impact-detail-list article {
  border-color: rgba(157, 144, 125, 0.16);
  background:
    radial-gradient(circle at 96% 10%, rgba(255, 194, 77, 0.18), transparent 18rem),
    rgba(255, 250, 245, 0.74);
  box-shadow: 0 18px 52px rgba(157, 116, 78, 0.08);
}

/* Light tone v4: continuous page wash, no section background seams. */
body {
  background:
    radial-gradient(ellipse at 86% 4%, rgba(255, 194, 77, 0.16), transparent 34rem),
    radial-gradient(ellipse at 9% 14%, rgba(251, 235, 221, 0.56), transparent 42rem),
    radial-gradient(ellipse at 78% 56%, rgba(255, 138, 61, 0.045), transparent 46rem),
    linear-gradient(180deg, #fffefd 0%, #fffaf6 34%, #fff8f2 64%, #fdf0e6 100%);
}

main::before {
  background:
    radial-gradient(ellipse at 10% 18%, rgba(251, 235, 221, 0.42), transparent 40rem),
    radial-gradient(ellipse at 92% 34%, rgba(255, 194, 77, 0.1), transparent 38rem),
    radial-gradient(ellipse at 52% 72%, rgba(255, 138, 61, 0.045), transparent 44rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(251, 235, 221, 0.12) 48%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.72;
}

.funding-data-section,
.funding-model-section,
.ecosystem-section,
.impact-section,
.anniversary-feature-section,
.insights-section {
  background: transparent !important;
}

.funding-data-section::before,
.funding-model-section::before,
.anniversary-feature-section::before,
.insights-section::before {
  display: none;
}

.funding-mode-panel,
.coverage-map-copy,
.ecosystem-hero-card,
.ecosystem-grid article,
.forum-stage,
.impact-panel,
.anniversary-expand-card,
.news-card {
  background-blend-mode: normal;
}

/* Light tone v5: whiter continuous wash and full-width footer edge. */
body {
  background:
    radial-gradient(ellipse at 86% 4%, rgba(255, 194, 77, 0.11), transparent 36rem),
    radial-gradient(ellipse at 8% 12%, rgba(251, 235, 221, 0.34), transparent 44rem),
    radial-gradient(ellipse at 78% 58%, rgba(255, 138, 61, 0.028), transparent 48rem),
    linear-gradient(180deg, #fffefd 0%, #fffdfb 32%, #fffaf6 68%, #fdf4ec 100%);
}

main::before {
  background:
    radial-gradient(ellipse at 10% 18%, rgba(251, 235, 221, 0.26), transparent 42rem),
    radial-gradient(ellipse at 92% 34%, rgba(255, 194, 77, 0.07), transparent 40rem),
    radial-gradient(ellipse at 52% 72%, rgba(255, 138, 61, 0.026), transparent 46rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0) 0%, rgba(251, 235, 221, 0.08) 48%, rgba(255, 255, 255, 0) 78%);
  opacity: 0.62;
}

.site-footer {
  width: 100%;
  max-width: none;
  padding-inline: var(--page-gutter);
  background: var(--navigation-paper);
  border-top-color: rgba(21, 21, 21, 0.08);
}

/* Application / cooperation section */
.application-section {
  position: relative;
  padding: clamp(18px, 3vw, 44px) 0 clamp(96px, 10vw, 148px);
  scroll-margin-top: 72px;
}

.application-anchor {
  position: absolute;
  top: -72px;
  left: 0;
  width: 1px;
  height: 1px;
  pointer-events: none;
}

.application-panel {
  width: 100%;
  max-width: none;
  margin-inline: auto;
}

.application-panel::before {
  inset: auto -2% -22px 8%;
  height: 190px;
  background:
    radial-gradient(
      ellipse at 50% 50%,
      rgba(217, 79, 55, 0.18) 0%,
      rgba(255, 194, 77, 0.14) 42%,
      rgba(255, 194, 77, 0) 74%
    );
  filter: none;
  opacity: 0.78;
}

.application-panel-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  gap: clamp(22px, 3vw, 48px);
  align-items: end;
}

.application-panel .panel-topline + .application-panel-head h2 {
  margin-top: 34px;
}

.application-switch {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  padding: 8px;
  border: 1px solid rgba(157, 144, 125, 0.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 194, 77, 0.14), transparent 18rem),
    rgba(255, 255, 255, 0.54);
}

.application-switch button {
  position: relative;
  overflow: hidden;
  min-height: 50px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 16px;
  color: #5f5f5f;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.72)),
    linear-gradient(120deg, rgba(21, 21, 21, 0.1), rgba(21, 21, 21, 0.1));
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  background-size: 100% 100%, 240% 240%;
  background-position: 0 0, 0% 50%;
  cursor: pointer;
  font-size: 15px;
  font-weight: 850;
  transition:
    color 0.22s ease,
    background-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.application-switch button:hover:not(.is-active) {
  color: #252525;
  background-image:
    linear-gradient(rgba(255, 249, 236, 0.9), rgba(255, 249, 236, 0.9)),
    var(--button-outline-flow);
  background-position: 0 0, 100% 50%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 194, 77, 0.12),
    0 12px 30px rgba(255, 138, 61, 0.1);
}

.application-switch button.is-active {
  color: #191919;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  background-position: 100% 50%;
  box-shadow: 0 12px 28px rgba(255, 138, 61, 0.18);
}

.application-form[hidden] {
  display: none;
}

.application-form.is-active {
  animation: application-form-in 0.46s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes application-form-in {
  from {
    opacity: 0;
    transform: translate3d(0, 14px, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 980px) {
  .application-panel-head {
    grid-template-columns: 1fr;
  }

  .application-switch {
    width: min(100%, 520px);
  }
}

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

/* Global typography weight pass: keep the public site to regular and bold only. */
body,
button,
input,
select,
textarea,
a,
p,
li,
span,
small,
label,
.desktop-nav,
.desktop-nav *,
.mobile-nav,
.mobile-nav *,
.site-header,
.site-header *,
.footer-nav,
.footer-nav *,
.footer-bottom,
.section-copy,
.hero-lead,
.application-note,
.form-disclaimer,
.metric span,
.map-note,
.coverage-card,
.news-card p,
.ecosystem-card p,
.impact-card p,
.milestone-a__copy,
.anniversary-copy,
.success-modal__dialog p {
  font-weight: 400 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
strong,
b,
.hero-title,
.section-title,
.metric strong,
.ecosystem-card h3,
.impact-title,
.impact-card h3,
.milestone-a__title,
.anniversary-title,
.news-card h3,
.application-title,
.coverage-heading h3,
.success-modal__dialog h2,
.char-title,
.char-title span,
.section-heading .char-title,
.section-heading .char-title span,
.funding-data-heading .char-title,
.funding-data-heading .char-title span,
.anniversary-feature-heading .char-title,
.anniversary-feature-heading .char-title span {
  font-weight: 850 !important;
}

.site-header .brand,
.site-header .brand *,
.footer-brand,
.footer-brand * {
  font-weight: 850 !important;
}

/* NIO-inspired text reference pass: lighter hierarchy, quieter copy, more air for future imagery. */
:root {
  --nio-copy: rgba(21, 21, 21, 0.62);
  --nio-copy-strong: rgba(21, 21, 21, 0.78);
  --nio-label: rgba(21, 21, 21, 0.46);
  --nio-title: #151515;
}

body {
  font-weight: 400;
  text-rendering: geometricPrecision;
}

.desktop-nav,
.desktop-nav a,
.nav-item > a,
.nav-menu a,
.mobile-nav-primary,
.mobile-nav-sub a,
.language-switch button,
.nav-action,
.button,
.application-switch button,
.footer-nav-group a,
.footer-bottom {
  font-size: 14px !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.nav-action,
.button,
.application-switch button {
  font-weight: 400 !important;
}

.hero-title {
  max-width: 1120px;
  font-size: clamp(48px, 7vw, 104px) !important;
  line-height: 1.02 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.hero-kicker,
.section-label,
.coverage-title,
.news-media span,
.forum-copy span,
.impact-tab,
.support-result-card span,
.anniversary-tile span {
  color: var(--nio-label) !important;
  font-size: clamp(12px, 0.8vw, 13.5px) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
}

.hero-lead,
.section-heading p,
.funding-data-copy p,
.application-intro p,
.mode-panel-copy p,
.ecosystem-card p,
.ecosystem-hero-card p,
.forum-copy p,
.impact-panel-copy p,
.milestone-a__copy p,
.anniversary-expand-copy p,
.news-card p,
.site-footer p {
  max-width: 760px;
  color: var(--nio-copy) !important;
  font-size: clamp(14px, 0.95vw, 16.5px) !important;
  line-height: 1.9 !important;
  font-weight: 400 !important;
}

.news-media span {
  color: #444 !important;
  background: rgba(255, 255, 255, 0.9);
}

.section-heading {
  gap: clamp(14px, 1.6vw, 24px) !important;
}

.section-heading .char-title,
.funding-data-heading .char-title,
.impact-title,
.anniversary-feature-heading .char-title,
.insights-heading .char-title {
  color: var(--nio-title) !important;
  font-size: clamp(30px, 3.2vw, 52px) !important;
  line-height: 1.16 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.section-heading .char-title span,
.funding-data-heading .char-title span,
.impact-title span,
.anniversary-feature-heading .char-title span,
.insights-heading .char-title span {
  font-weight: 850 !important;
}

.funding-data-heading,
.section-heading:not(.compact) {
  max-width: 880px;
}

.ecosystem-hero-card h3,
.ecosystem-grid h3,
.mode-panel-copy h3,
.forum-copy h3,
.impact-panel-copy h3,
.milestone-a__copy h3,
.anniversary-expand-copy h3,
.news-card h3,
.application-panel h2,
.coverage-heading h3 {
  color: var(--nio-title) !important;
  font-size: clamp(20px, 1.9vw, 30px) !important;
  line-height: 1.25 !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.ecosystem-grid span,
.funding-principles span,
.mode-tab strong,
.mode-tab span,
.metric span,
.coverage-card p,
.support-fee-chip span,
.demo-field span,
.demo-field strong,
.anniversary-tile strong {
  color: var(--nio-copy-strong) !important;
  font-size: clamp(13px, 0.9vw, 15px) !important;
  font-weight: 400 !important;
  line-height: 1.65 !important;
}

.metric strong {
  font-size: clamp(56px, 6.6vw, 104px) !important;
  font-weight: 850 !important;
  letter-spacing: 0 !important;
}

.metric strong span {
  font-size: clamp(20px, 1.8vw, 30px) !important;
  font-weight: 400 !important;
}

/* Keep the funding data module on its original calibrated display scale. */
.metrics-band {
  margin: 28px auto 82px !important;
}

.metric {
  min-height: 168px !important;
  padding: 26px 18px !important;
}

.metric strong {
  gap: 12px !important;
  font-size: var(--metric-number-size, clamp(66px, 6.3vw, 104px)) !important;
  font-weight: 900 !important;
  line-height: 0.82 !important;
}

.metric strong span,
.metric .count {
  color: var(--orange) !important;
  font-size: inherit !important;
  font-weight: 900 !important;
  line-height: 0.82 !important;
}

.metric strong em {
  color: var(--ink) !important;
  font-size: clamp(18px, 1.25vw, 24px) !important;
  font-weight: 500 !important;
  line-height: 1 !important;
  transform: translateY(-9px) !important;
}

.metric > span {
  margin-top: 18px !important;
  color: var(--muted) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  line-height: normal !important;
}

.ecosystem-layout,
.impact-showcase,
.mode-stage,
.anniversary-expand-card,
.news-carousel,
.application-panel,
.funding-data-visual {
  margin-top: clamp(30px, 4.2vw, 72px) !important;
}

.ecosystem-grid article,
.ecosystem-hero-card,
.mode-panel,
.forum-slide,
.impact-panel,
.anniversary-tile,
.news-card {
  letter-spacing: 0 !important;
}

.news-card-copy {
  gap: 10px !important;
}

.news-card h3 {
  min-height: 2.5em;
  font-size: clamp(20px, 1.6vw, 24px) !important;
}

.news-card p {
  max-width: none;
}

.footer-brand strong {
  font-size: clamp(22px, 1.8vw, 30px) !important;
  font-weight: 850 !important;
}

.footer-nav-group h3 {
  font-size: 15px !important;
  font-weight: 850 !important;
}

@media (min-width: 1180px) {
  .section-shell {
    padding-top: clamp(88px, 8vw, 138px);
    padding-bottom: clamp(88px, 8vw, 138px);
  }
}

@media (max-width: 760px) {
  .hero-title {
    font-size: clamp(42px, 12vw, 68px) !important;
  }

  .section-heading .char-title,
  .funding-data-heading .char-title,
  .impact-title,
  .anniversary-feature-heading .char-title,
  .insights-heading .char-title {
    font-size: clamp(28px, 9vw, 42px) !important;
  }
}

/* The section shell already supplies the inter-section rhythm here. */
/* The application section uses the funding-data tail as most of its inter-section gap. */
.application-section {
  padding-top: clamp(14px, 1.5vw, 22px) !important;
}

.application-panel {
  margin-top: 0 !important;
}

/* Center the data dashboard between the map and application modules. */
:root {
  --funding-dashboard-gap: clamp(38px, 5vw, 68px);
}

.funding-data-section {
  padding-bottom: 0;
}

.metrics-band {
  margin: var(--funding-dashboard-gap) auto 0 !important;
}

.application-section {
  padding-top: var(--funding-dashboard-gap) !important;
}
/* Ecosystem v17: stable split media accordion. */
.ecosystem-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(32px, 4vw, 72px);
  align-items: stretch;
  height: clamp(620px, 48vw, 760px);
  min-height: clamp(620px, 48vw, 760px);
}

.ecosystem-section {
  scroll-margin-top: 112px;
}

.ecosystem-accordion {
  --ecosystem-number-width: 42px;
  --ecosystem-row-gap: clamp(10px, 1.25vw, 20px);
  --ecosystem-row-padding: clamp(4px, 0.75vw, 12px);
  min-width: 0;
  height: 100%;
  border-top: 1px solid rgba(21, 21, 21, 0.16);
  border-bottom: 1px solid rgba(21, 21, 21, 0.16);
}

.ecosystem-accordion-item {
  position: relative;
  border-bottom: 1px solid rgba(21, 21, 21, 0.11);
  background: transparent;
}

.ecosystem-accordion-item:last-child {
  border-bottom: 0;
}

.ecosystem-accordion-trigger {
  position: relative;
  display: grid;
  grid-template-columns: var(--ecosystem-number-width) minmax(0, 1fr) 30px;
  gap: var(--ecosystem-row-gap);
  align-items: center;
  width: 100%;
  min-height: clamp(60px, 5.2vw, 76px);
  margin: 0;
  border: 0;
  padding: 0 var(--ecosystem-row-padding);
  color: var(--nio-title);
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: color 0.28s ease;
}

.ecosystem-accordion-trigger:hover,
.ecosystem-accordion-trigger:focus-visible {
  color: #bc4b24;
}

.ecosystem-accordion-trigger:focus-visible {
  outline: 2px solid rgba(222, 91, 39, 0.58);
  outline-offset: -2px;
}

.ecosystem-accordion-trigger[aria-expanded="true"] {
  color: #151515;
}

.ecosystem-accordion-number {
  color: var(--orange) !important;
  font-size: clamp(12px, 0.9vw, 14px) !important;
  font-variant-numeric: tabular-nums;
  font-weight: 500 !important;
  line-height: 1;
}

.ecosystem-accordion-title {
  min-width: 0;
  overflow-wrap: anywhere;
  color: inherit !important;
  font-size: clamp(22px, 1.65vw, 28px) !important;
  font-weight: 760 !important;
  line-height: 1.3 !important;
}

.ecosystem-accordion-symbol {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: end;
  width: 30px;
  height: 30px;
  color: var(--orange) !important;
}

.ecosystem-symbol-horizontal,
.ecosystem-symbol-vertical {
  position: absolute;
  width: 18px;
  height: 1px;
  background: currentColor;
  transform-origin: center;
}

.ecosystem-symbol-vertical {
  opacity: 1;
  transform: rotate(90deg);
  transition: transform var(--disclosure-duration) var(--disclosure-ease);
}

.ecosystem-accordion-trigger[aria-expanded="true"] .ecosystem-symbol-vertical {
  transform: rotate(0deg);
}

.ecosystem-accordion-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows var(--disclosure-duration) var(--disclosure-ease),
    opacity 0.32s ease;
}

.ecosystem-accordion-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.ecosystem-accordion-trigger[aria-expanded="true"] + .ecosystem-accordion-panel {
  grid-template-rows: 1fr;
  opacity: 1;
}

.ecosystem-accordion-copy {
  min-width: 0;
  padding-block: 0 24px;
  padding-inline-end: var(--ecosystem-row-padding);
  padding-inline-start: calc(var(--ecosystem-row-padding) + var(--ecosystem-number-width) + var(--ecosystem-row-gap));
}

.ecosystem-accordion-copy p {
  margin: 0;
  color: var(--nio-copy);
  font-weight: 400 !important;
  letter-spacing: 0;
  overflow-wrap: anywhere;
}

.ecosystem-accordion-lead {
  color: var(--nio-title) !important;
  font-size: clamp(16px, 1.05vw, 18px) !important;
  font-weight: 650 !important;
  line-height: 1.65 !important;
  text-wrap: pretty;
}

.ecosystem-more-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  margin-top: clamp(16px, 1.6vw, 24px);
  padding: 3px 0;
  border-bottom: 0;
  color: var(--nio-title);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: color 0.28s ease;
}

.ecosystem-more-link:hover,
.ecosystem-more-link:focus-visible {
  color: var(--orange);
}

.ecosystem-more-link:focus-visible {
  outline: 2px solid rgba(222, 91, 39, 0.58);
  outline-offset: 2px;
}

/* Shared inline “>” glyph, following the funding hero text link.
   Keep one text-sized glyph (not a drawn chevron or a stretched icon box). */
.text-link-chevron {
  display: inline-block;
  flex: 0 0 auto;
  font-family: inherit;
  font-size: 1em;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  transform: translateY(-1px);
  transition: transform 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

a:hover .text-link-chevron,
a:focus-visible .text-link-chevron {
  transform: translate(var(--text-link-hover-shift, 3px), -1px);
}

.text-link-chevron--back { --text-link-hover-shift: -3px; }

@media (hover: hover) and (pointer: fine) {
  .text-link-chevron { transition-delay: var(--hover-exit-delay); }
  a:is(:hover, :focus-visible, :active) .text-link-chevron { transition-delay: 0ms; }
}

@media (prefers-reduced-motion: reduce) {
  .text-link-chevron { transition: none; }
}

.ecosystem-media-slot {
  display: grid;
  justify-items: end;
  min-width: 0;
  min-height: 0;
}

.ecosystem-media-stage {
  position: sticky;
  top: clamp(96px, 9vh, 132px);
  width: auto;
  max-width: 100%;
  height: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #f3ece5;
}

.ecosystem-media-visual {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transform: scale(1.035);
  clip-path: inset(8% 0 8% 0 round 8px);
  transition:
    opacity 0.48s ease,
    transform 0.74s cubic-bezier(0.16, 1, 0.3, 1),
    clip-path 0.74s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.ecosystem-media-visual.is-active {
  opacity: 1;
  transform: scale(1);
  clip-path: inset(0 round 8px);
}

.ecosystem-media-stage.is-muted .ecosystem-media-visual.is-active {
  opacity: 0.58;
  transform: scale(1.012);
}

.ecosystem-media-visual img,
.ecosystem-mobile-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--ecosystem-image-position, center);
}

[data-ecosystem-index="0"],
[data-ecosystem-visual="0"] {
  --ecosystem-image-position: 56% 48%;
}

[data-ecosystem-index="1"],
[data-ecosystem-visual="1"] {
  --ecosystem-image-position: 68% 50%;
}

[data-ecosystem-index="2"],
[data-ecosystem-visual="2"] {
  --ecosystem-image-position: 70% 52%;
}

[data-ecosystem-index="3"],
[data-ecosystem-visual="3"] {
  --ecosystem-image-position: 70% 50%;
}

[data-ecosystem-index="4"],
[data-ecosystem-visual="4"] {
  --ecosystem-image-position: 62% 52%;
}

[data-ecosystem-index="5"],
[data-ecosystem-visual="5"] {
  --ecosystem-image-position: 58% 48%;
}

.ecosystem-media-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 253, 250, 0.34), transparent 24%, transparent 78%, rgba(255, 253, 250, 0.24)),
    linear-gradient(0deg, rgba(255, 253, 250, 0.28), transparent 22%, transparent 82%, rgba(255, 253, 250, 0.18));
  pointer-events: none;
}

.ecosystem-mobile-visual {
  margin: 0;
  overflow: hidden;
  border-radius: 6px;
  background: #f3ece5;
}

.is-english .ecosystem-accordion-title {
  font-size: clamp(20px, 1.45vw, 25px) !important;
}

.is-english .ecosystem-accordion-lead {
  font-size: clamp(15px, 1.05vw, 18px) !important;
  line-height: 1.52 !important;
}

@media (max-width: 1100px) and (min-width: 761px) {
  .ecosystem-showcase {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 44px);
  }

  .ecosystem-accordion {
    --ecosystem-number-width: 38px;
    --ecosystem-row-gap: 10px;
  }

  .ecosystem-accordion-trigger {
    min-height: 68px;
    padding-block: 10px;
  }

  .ecosystem-accordion-symbol {
    grid-column: 3;
  }

  .ecosystem-accordion-copy {
    padding-top: 0;
    padding-bottom: 24px;
  }

  .ecosystem-accordion-lead {
    font-size: clamp(15px, 1.65vw, 17px) !important;
    line-height: 1.52 !important;
  }

}

@media (max-width: 820px) and (min-width: 761px) {
  .ecosystem-accordion-copy {
    padding-block: 0 24px;
  }

  .ecosystem-more-link {
    margin-top: auto;
  }
}

@media (min-width: 761px) {
  .ecosystem-accordion {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .ecosystem-accordion-item {
    display: flex;
    flex-direction: column;
    flex: 1 1 0;
    min-height: 0;
    transition: flex-grow var(--disclosure-duration) var(--disclosure-ease);
  }

  .ecosystem-accordion-item.is-active {
    flex: 0 0 auto;
  }

  .ecosystem-accordion-item:not(.is-active) .ecosystem-accordion-trigger {
    flex: 1 1 auto;
    min-height: 0;
  }

  .ecosystem-accordion-item.is-active .ecosystem-accordion-trigger {
    flex: 0 0 clamp(60px, 5.2vw, 76px);
  }

  .ecosystem-accordion-item.is-active .ecosystem-accordion-panel {
    flex: 0 0 auto;
    min-height: 0;
  }

  .ecosystem-accordion-panel-inner {
    height: auto;
  }

  .ecosystem-accordion-copy {
    display: flex;
    flex-direction: column;
    height: auto;
    box-sizing: border-box;
  }

  .ecosystem-more-link {
    margin-top: auto;
  }
}

@media (max-width: 760px) {
  .ecosystem-showcase {
    display: block;
    height: auto;
    min-height: 0;
  }

  .ecosystem-accordion {
    --ecosystem-number-width: 36px;
    --ecosystem-row-gap: 10px;
    --ecosystem-row-padding: 4px;
    display: block;
    height: auto;
  }

  .ecosystem-accordion-item {
    display: block;
    flex: none;
  }

  .ecosystem-media-slot {
    display: none;
  }

  .ecosystem-accordion-trigger {
    min-height: 76px;
    padding-block: 12px;
  }

  .ecosystem-accordion-title {
    font-size: clamp(21px, 5.4vw, 25px) !important;
  }

  .ecosystem-accordion-symbol {
    grid-column: 3;
  }

  .ecosystem-accordion-copy {
    display: block;
    height: auto;
    padding-block: 0;
    padding-inline-end: var(--ecosystem-row-padding);
  }

  .ecosystem-accordion-panel-inner {
    height: auto;
  }

  .ecosystem-more-link {
    margin-top: clamp(18px, 4vw, 24px);
  }

  .ecosystem-accordion-lead,
  .is-english .ecosystem-accordion-lead {
    font-size: 16px !important;
    line-height: 1.65 !important;
  }

  .ecosystem-mobile-visual {
    display: block;
    aspect-ratio: 16 / 10;
    margin-top: 24px;
    margin-bottom: 28px;
  }
}

@media (min-width: 761px) {
  .ecosystem-mobile-visual {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ecosystem-accordion-panel,
  .ecosystem-accordion-item,
  .ecosystem-media-visual,
  .ecosystem-symbol-vertical,
  .ecosystem-more-link,
  .ecosystem-accordion-trigger {
    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;
  }
}

/* Impact activities and honors */
.impact-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(64px, 7vw, 104px);
  margin-top: clamp(48px, 5vw, 72px);
}

.impact-activity-matrix {
  display: grid;
  grid-template-columns: minmax(390px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(20px, 2.6vw, 42px);
  align-items: stretch;
}

.impact-tab-list {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  grid-template-rows: repeat(2, minmax(150px, 1fr)) minmax(184px, 1.2fr);
  grid-template-areas:
    "vision platform"
    "academic platform"
    "seminar seminar";
  gap: 12px;
  min-height: 540px;
  overflow: visible;
}

[data-impact-tab="vision"] {
  grid-area: vision;
}

[data-impact-tab="academic"] {
  grid-area: academic;
}

[data-impact-tab="platform"] {
  grid-area: platform;
}

[data-impact-tab="seminar"] {
  grid-area: seminar;
}

.impact-tab-list button {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  grid-template-rows: minmax(0, 1fr) auto;
  align-items: end;
  column-gap: 12px;
  width: 100%;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border: 1px solid rgba(21, 21, 21, 0.11);
  border-radius: 8px;
  padding: clamp(20px, 2vw, 30px);
  color: #34312e;
  background: transparent;
  box-shadow: none;
  cursor: pointer;
  font-size: clamp(17px, 1.22vw, 22px);
  font-weight: 760;
  line-height: 1.25;
  text-align: left;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
}

.impact-tab-number {
  align-self: start;
  color: rgba(21, 21, 21, 0.34);
  font-size: 12px;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
}

.impact-tab-label {
  grid-column: 1 / -1;
  min-width: 0;
}

.impact-tab-icon {
  align-self: start;
  justify-self: end;
  width: 24px;
  height: 24px;
  color: rgba(67, 59, 52, 0.54);
  transition: color 0.2s ease;
}

.impact-tab-list button[data-impact-tab="platform"],
.impact-tab-list button[data-impact-tab="seminar"] {
  font-size: clamp(21px, 1.75vw, 30px);
}

.impact-tab-list button:hover:not(.is-active) {
  color: #201d1a;
  border-color: rgba(255, 138, 61, 0.34);
  background: rgba(255, 249, 239, 0.94);
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.12);
}

.impact-tab-list button.is-active .impact-tab-number,
.impact-tab-list button.is-active .impact-tab-icon {
  color: #fff;
}

.impact-activity-panels {
  height: 540px;
  min-width: 0;
}

.impact-panel {
  display: block;
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  scrollbar-gutter: stable;
  border: 1px solid rgba(21, 21, 21, 0.12);
  border-radius: 8px;
  padding: clamp(28px, 3vw, 46px);
  background: rgba(255, 255, 255, 0.78);
  background-image: none;
  box-shadow: none;
  scrollbar-color: rgba(255, 138, 61, 0.52) transparent;
}

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

.impact-panel-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: end;
  padding-bottom: 22px;
  border-bottom: 2px solid rgba(255, 138, 61, 0.44);
}

.impact-panel h3 {
  margin: 0;
  color: #1f1d1b;
  font-size: clamp(24px, 2.1vw, 36px);
  font-weight: 820;
  line-height: 1.16;
}

.impact-detail-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0 28px;
  min-height: 0;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.impact-activity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: start;
  min-height: 0;
  border: 0;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  border-radius: 0;
  padding: 17px 2px 16px;
  background: transparent;
  box-shadow: none;
}

.impact-activity-copy {
  min-width: 0;
}

.impact-activity-row strong {
  display: block;
  color: #292622;
  font-size: clamp(14px, 0.98vw, 16px);
  font-weight: 650;
  line-height: 1.55;
}

.impact-activity-row .impact-activity-meta {
  max-width: none;
  margin: 7px 0 0;
  color: #8a8179;
  font-size: 12px;
  line-height: 1.55;
}

.impact-activity-date {
  align-self: start;
  justify-self: end;
  padding-top: 2px;
  color: #9b5a38;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.55;
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.impact-panel.is-entering .impact-panel-header h3 {
  animation: impact-ledger-title-in 0.4s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.impact-panel.is-entering .impact-activity-row {
  animation: impact-ledger-row-in 0.42s cubic-bezier(0.16, 1, 0.3, 1) both;
  animation-delay: var(--impact-row-delay, 0ms);
}

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

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

.impact-honors {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  padding:
    clamp(70px, 6vw, 98px)
    max(calc(var(--page-gutter) + clamp(12px, 1.25vw, 22px)), calc((100vw - 1740px) / 2))
    clamp(76px, 6.6vw, 108px);
  overflow: clip;
  background:
    radial-gradient(circle at 84% 14%, rgba(255, 194, 77, 0.2), transparent 31rem),
    radial-gradient(circle at 10% 88%, rgba(255, 138, 61, 0.09), transparent 34rem),
    #fbebdd;
}

.impact-honors-heading {
  margin: 0 0 clamp(38px, 3.5vw, 52px);
}

.impact-honors h3 {
  margin: 0;
  color: #22201e;
  font-size: clamp(32px, 2.4vw, 38px);
  font-weight: 850;
  line-height: 1.15;
  text-align: center;
}

.impact-honors-intro {
  max-width: min(100%, 760px);
  margin: 22px auto 0;
  color: #555555;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.9;
  text-align: center;
}

body.reveal-ready .impact-honors h3,
body.reveal-ready .impact-honors-intro,
body.reveal-ready .impact-honor-row,
body.reveal-ready .impact-honor-item {
  transition:
    opacity 0.62s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.62s cubic-bezier(0.16, 1, 0.3, 1);
}

body.reveal-ready .impact-honors:not(.is-revealed) h3,
body.reveal-ready .impact-honors:not(.is-revealed) .impact-honors-intro,
body.reveal-ready .impact-honors:not(.is-revealed) .impact-honor-row,
body.reveal-ready .impact-honors:not(.is-revealed) .impact-honor-item {
  opacity: 0;
  transform: translate3d(0, 12px, 0);
}

body.reveal-ready .impact-honors.is-revealed h3 {
  transition-delay: 0ms;
}

body.reveal-ready .impact-honors.is-revealed .impact-honors-intro {
  transition-delay: 60ms;
}

body.reveal-ready .impact-honors.is-revealed .impact-honor-row {
  transition-delay: var(--honor-row-delay, 90ms);
}

body.reveal-ready .impact-honors.is-revealed .impact-honor-item {
  transition-delay: var(--honor-item-delay, 180ms);
}

.impact-honors-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(42px, 5vw, 82px) clamp(30px, 4vw, 68px);
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.impact-honor-row {
  min-width: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(62, 51, 43, 0.2);
}

.impact-honor-trigger {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 34px;
  align-items: start;
  width: 100%;
  border: 0;
  padding: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.impact-honor-heading {
  display: flex;
  width: 100%;
}

.impact-honor-row time {
  color: #bd6339;
  font-size: clamp(42px, 4.2vw, 66px);
  font-weight: 850;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  transition: color 0.32s ease;
}

.impact-honor-symbol {
  position: relative;
  width: 28px;
  height: 28px;
  margin-top: 8px;
}

.impact-honor-symbol::before,
.impact-honor-symbol::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 13px;
  width: 18px;
  height: 1px;
  background: #a75935;
  transform-origin: center;
  transition:
    background-color 0.32s ease,
    transform var(--disclosure-duration) var(--disclosure-ease);
}

.impact-honor-symbol::after {
  transform: rotate(90deg);
}

.impact-honor-row.is-open .impact-honor-symbol::after {
  transform: rotate(0deg);
}

.impact-honor-trigger:not(:disabled):hover time {
  color: #ff7838;
}

.impact-honor-heading:hover time {
  color: #ff7838;
}

.impact-honor-trigger:not(:disabled):hover .impact-honor-symbol::before,
.impact-honor-trigger:not(:disabled):hover .impact-honor-symbol::after {
  background: #ff7838;
}

.impact-honor-lead.impact-honor-item {
  margin: clamp(24px, 2vw, 30px) 0 0;
  padding: 0;
}

.impact-honor-more {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  visibility: hidden;
  transition:
    grid-template-rows 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.28s ease,
    visibility 0s linear 0.5s;
}

.impact-honor-more > div {
  min-height: 0;
  overflow: hidden;
}

.impact-honor-row.is-open .impact-honor-more {
  grid-template-rows: 1fr;
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.impact-honor-items {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 8px 0 0;
  list-style: none;
}

.impact-honor-item {
  margin: 0;
  padding: 6px 0;
  color: rgba(34, 32, 30, 0.78);
  font-size: clamp(14px, 0.98vw, 17px);
  font-weight: 400;
  line-height: 1.62;
}

.impact-honor-items .impact-honor-item {
  padding: 0;
}

@media (max-width: 980px) {
  .impact-activity-matrix {
    grid-template-columns: 1fr;
  }

  .impact-tab-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: auto;
    grid-template-areas: "vision platform academic seminar";
    gap: 6px;
    min-height: 0;
    overflow: visible;
  }

  .impact-tab-list button,
  .impact-tab-list button[data-impact-tab="platform"],
  .impact-tab-list button[data-impact-tab="seminar"] {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    min-width: 0;
    min-height: 64px;
    padding: 12px 2px;
    font-size: clamp(12px, 1.8vw, 16px);
    line-height: 1.45;
    text-align: center;
  }

  .impact-tab-number { display: none; }
  .impact-tab-list .impact-tab-icon { position: static; align-self: center; flex-shrink: 0; width: 20px; height: 20px; order: -1; }
  .impact-tab-label { max-width: 100%; overflow-wrap: anywhere; hyphens: auto; }
  .is-english .impact-tab-list button { font-size: clamp(10px, 3vw, 14px); }
  .is-english .impact-tab-label { letter-spacing: -0.2px; }

  .impact-activity-panels {
    height: 520px;
  }

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

@media (max-width: 360px) {
  .impact-tab-list { gap: 4px; }
}

@media (max-width: 760px) {
  .impact-activity-matrix {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .impact-activity-panels {
    position: relative;
    height: var(--impact-phone-panel-height, auto);
  }

  /* Synchronous, non-painted measurement includes hidden tabs at their real width. */
  .impact-activity-panels.is-measuring-impact > .impact-panel {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    visibility: hidden;
    overflow: visible;
  }

  .impact-panel {
    padding: 24px 20px;
  }

  section.impact-honors {
    padding-block: 58px 66px;
  }

  .impact-honors-list {
    grid-template-columns: minmax(0, 1fr);
    gap: 40px;
  }

  .impact-honor-row time {
    font-size: clamp(40px, 12vw, 54px);
  }
}

@media (max-width: 520px) {
  .impact-activity-row {
    gap: 12px;
  }

  .impact-activity-date {
    max-width: 8ch;
    justify-self: end;
    text-align: right;
    white-space: normal;
  }

}

@media (prefers-reduced-motion: reduce) {
  .impact-panel.is-entering .impact-panel-header h3,
  .impact-panel.is-entering .impact-activity-row {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  body.reveal-ready .impact-honors :is(h3, .impact-honors-intro, .impact-honor-row, .impact-honor-item) {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .impact-honor-more,
  .impact-honor-symbol::before,
  .impact-honor-symbol::after {
    transition: none !important;
  }
}

/* Shared tab states: transparent at rest, theme response on hover, gradient when selected. */
.funding-mode-tab {
  border-color: rgba(21, 21, 21, 0.13);
  background: transparent;
  background-image: none;
  background-size: 240% 240%;
  background-position: 0 50%;
  box-shadow: none;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    background-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.funding-mode-tab:hover:not(.is-active) {
  color: #9b5a38;
  border-color: rgba(255, 138, 61, 0.44);
  background: rgba(255, 247, 234, 0.58);
  background-image: none;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.14);
}

.funding-mode-tab.is-active {
  color: #241e17;
  border-color: rgba(255, 153, 61, 0.52);
  background: transparent;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  background-position: 100% 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.2);
}

.impact-tab-list button {
  background: transparent;
  background-size: 240% 240%;
  background-position: 0 50%;
  transition:
    color 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease,
    background-position 0.95s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.22s ease;
}

.impact-tab-list button:hover:not(.is-active) {
  color: #9b5a38;
  border-color: rgba(255, 138, 61, 0.44);
  background: rgba(255, 247, 234, 0.58);
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.14);
}

.impact-tab-list button.is-active {
  color: #241e17;
  border-color: rgba(255, 153, 61, 0.52);
  background: transparent;
  background-image: var(--button-flow);
  background-size: 240% 240%;
  background-position: 100% 50%;
  box-shadow: inset 0 0 0 1px rgba(255, 194, 77, 0.2);
}

.impact-tab-icon {
  position: absolute;
  top: clamp(18px, 1.8vw, 28px);
  right: clamp(18px, 1.8vw, 28px);
  width: 22px;
  height: 22px;
}

.impact-activity-row {
  grid-template-columns: minmax(0, 1fr) auto;
  border-bottom: 1px solid rgba(21, 21, 21, 0.1);
  padding-inline: 0;
}

.impact-panel-header {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}

.impact-detail-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding-left: 0;
}

/* Anniversary single visual */
.anniversary-expand-card {
  grid-template-columns: 1fr;
  gap: 0;
  border: 1px solid rgba(157, 144, 125, 0.16);
  border-radius: var(--anniversary-radius);
  background: #fbebdd;
  clip-path: inset(0 var(--anniversary-clip-x) var(--anniversary-clip-bottom) round var(--anniversary-radius));
  box-shadow:
    0 22px 70px rgba(157, 116, 78, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.anniversary-feature-section.is-expanded .anniversary-expand-card {
  clip-path: inset(0 round var(--anniversary-radius));
}

.anniversary-expand-card::before {
  --anniversary-copy-bloom: radial-gradient(
    ellipse 78% 118% at 13% 50%,
    rgba(255, 253, 249, 0.98) 0%,
    rgba(255, 250, 244, 0.91) 36%,
    rgba(251, 235, 221, 0.58) 58%,
    rgba(251, 235, 221, 0.18) 76%,
    transparent 100%
  );
  --anniversary-top-feather: linear-gradient(
    180deg,
    rgba(255, 253, 249, 0.56) 0%,
    rgba(255, 250, 244, 0.16) 14%,
    transparent 32%
  );
  --anniversary-bottom-feather: linear-gradient(
    0deg,
    rgba(255, 253, 249, 0.56) 0%,
    rgba(255, 250, 244, 0.16) 14%,
    transparent 32%
  );
  z-index: 2;
  opacity: 1;
  background:
    var(--anniversary-copy-bloom),
    var(--anniversary-top-feather),
    var(--anniversary-bottom-feather),
    radial-gradient(circle at 73% 56%, rgba(255, 145, 63, 0.1), transparent 46%);
  mix-blend-mode: normal;
  -webkit-mask-image: none;
  mask-image: none;
  pointer-events: none;
}

.anniversary-expand-card::after {
  display: none;
  filter: none;
  pointer-events: none;
}

.anniversary-expand-copy {
  position: relative;
  z-index: 3;
  width: min(54%, 690px);
  opacity: var(--anniversary-content-opacity);
  filter: none;
  transform: translate3d(0, var(--anniversary-content-y), 0);
  transition: none;
}

.anniversary-expand-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  margin: 0;
  background-color: transparent;
  background-image: url("./assets/anniversary/anniversary-clear-glass-bg-v2.webp");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 1;
  filter: saturate(0.96) contrast(1.015);
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  pointer-events: none;
  transition: none;
}

.anniversary-feature-section.is-expanded .anniversary-expand-copy {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0);
}

.anniversary-feature-section.is-collapsing .anniversary-expand-copy {
  transition:
    opacity 0.86s cubic-bezier(0.2, 0.72, 0.18, 1),
    transform 0.86s cubic-bezier(0.2, 0.72, 0.18, 1);
}

.anniversary-feature-section.is-expanded .anniversary-expand-visual {
  opacity: 1;
  filter: saturate(0.96) contrast(1.015);
  transform: translate3d(0, 0, 0);
}

@media (max-width: 980px) {
  .anniversary-expand-copy {
    width: min(76%, 620px);
  }

  .anniversary-expand-visual {
    background-position: 58% center;
  }

  .anniversary-expand-card::before {
    --anniversary-copy-bloom: radial-gradient(
      ellipse 94% 126% at 5% 48%,
      rgba(255, 253, 249, 0.98) 0%,
      rgba(255, 250, 244, 0.93) 42%,
      rgba(251, 235, 221, 0.58) 66%,
      rgba(251, 235, 221, 0.14) 84%,
      transparent 100%
    );
  }

}

@media (max-width: 680px) {
  .anniversary-expand-copy {
    width: 100%;
  }

  .anniversary-expand-card::before {
    --anniversary-copy-bloom: radial-gradient(
      ellipse 112% 104% at -8% 39%,
      rgba(255, 253, 249, 0.99) 0%,
      rgba(255, 250, 244, 0.94) 46%,
      rgba(251, 235, 221, 0.58) 67%,
      rgba(251, 235, 221, 0.12) 84%,
      transparent 100%
    );
  }

}

@media (prefers-reduced-motion: reduce) {
  .anniversary-expand-visual,
  .anniversary-feature-section.is-expanded .anniversary-expand-visual,
  .anniversary-feature-section.is-collapsing .anniversary-expand-visual,
  .anniversary-feature-section.is-expanded .anniversary-expand-card:hover .anniversary-expand-visual {
    opacity: 1 !important;
    filter: saturate(0.96) contrast(1.015) !important;
    transform: none !important;
    transition: none !important;
  }
}

/* Insights pinned horizontal journey */
.insights-section[data-insights-pinned] {
  padding-bottom: clamp(48px, 5vw, 80px);
}

.insights-sticky {
  position: static;
}

#anniversary.anniversary-feature-section {
  padding-bottom: clamp(112px, 10vw, 160px);
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) {
  /* Preserve the full sticky stage and travel independently of the section gap. */
  .insights-footer-stage {
    position: sticky;
    top: 76px;
    width: 100%;
  }

  .insights-footer-stage > .insights-sticky {
    position: static;
  }

  .insights-section[data-insights-pinned] {
    width: 100%;
    max-width: none;
    height: auto;
    margin: 0;
    padding: 0 !important;
    overflow: visible;
  }

  .insights-section.is-pinned-scroll {
    height: var(--insights-scroll-height);
  }

  .insights-sticky {
    position: static;
    display: grid;
    align-content: start;
    width: 100%;
    height: auto;
    min-height: 0;
    overflow: hidden;
    padding: clamp(16px, 2.6vh, 34px) max(var(--page-gutter), calc((100vw - 1850px) / 2));
    padding-top: clamp(48px, 5vh, 80px);
    padding-bottom: clamp(48px, 5vw, 80px);
  }

  .insights-sticky .insights-heading {
    margin-bottom: clamp(22px, 3vh, 36px);
  }

  .insights-sticky .news-carousel {
    margin-top: 0 !important;
    overflow: hidden;
    contain: layout paint;
  }

  .insights-sticky .news-list {
    padding: 2px 2px 12px;
  }

  .insights-section.is-pinned-scroll .news-list {
    overflow: visible;
    cursor: default;
    touch-action: auto;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    will-change: transform;
  }

  .insights-sticky .news-media {
    height: clamp(160px, 21vh, 220px);
    aspect-ratio: auto;
  }

  .insights-sticky .news-card {
    backface-visibility: hidden;
    transform: translateZ(0);
  }

  .insights-section.is-track-moving .news-card:hover,
  .insights-section.is-track-moving .news-card:focus-within {
    border-color: transparent;
    box-shadow: none;
  }

  .insights-section.is-track-moving .news-card:hover::before,
  .insights-section.is-track-moving .news-card:focus-within::before {
    opacity: 0;
  }

  .insights-sticky .news-list:hover {
    cursor: default;
  }

  .insights-sticky .insights-more {
    margin-top: clamp(14px, 2vh, 24px);
  }
}

@media (min-width: 981px) and (hover: hover) and (pointer: fine) and (max-height: 980px) {
  .insights-sticky {
    padding-top: 12px;
    padding-bottom: 40px;
  }

  .insights-sticky .insights-heading {
    gap: 10px !important;
    margin-bottom: 16px;
  }

  .insights-sticky .insights-more {
    margin-top: 10px;
  }
}

@media (max-width: 980px) {
  .insights-section[data-insights-pinned] {
    height: auto;
  }

  .news-card {
    padding: 20px;
  }

  .news-card-copy {
    min-height: 120px;
  }

  .insights-sticky {
    position: static;
    height: auto;
    overflow: visible;
  }
}

@media (prefers-reduced-motion: reduce) {
  .insights-section[data-insights-pinned] {
    height: auto !important;
  }

  .insights-sticky {
    position: static !important;
    height: auto !important;
    overflow: visible !important;
  }

  .insights-sticky .news-list {
    overflow-x: auto !important;
    transform: none !important;
    will-change: auto !important;
  }
}

/* Keep the existing hover-in feedback immediate, then let controls settle before easing back out. */
@media (hover: hover) and (pointer: fine) {
  :where(
    .nav-action,
    .button,
    .apply-submit,
    .footer-cta,
    .menu-toggle,
    .language-switch button,
    .funding-mode-tab,
    .forum-nav-button,
    .impact-tab-list button,
    .milestone-a__nav button,
    .milestone-a__controls button,
    .application-switch button,
    .ecosystem-accordion-trigger,
    .ecosystem-more-link,
    .impact-honor-trigger
  ):not(:hover):not(:focus-visible):not(:active) {
    transition-delay: var(--hover-exit-delay);
  }

  :where(
    .nav-action,
    .button,
    .apply-submit,
    .footer-cta,
    .menu-toggle,
    .language-switch button,
    .funding-mode-tab,
    .forum-nav-button,
    .impact-tab-list button,
    .milestone-a__nav button,
    .milestone-a__controls button,
    .application-switch button,
    .ecosystem-accordion-trigger,
    .ecosystem-more-link,
    .impact-honor-trigger
  ):hover,
  :where(
    .nav-action,
    .button,
    .apply-submit,
    .footer-cta,
    .menu-toggle,
    .language-switch button,
    .funding-mode-tab,
    .forum-nav-button,
    .impact-tab-list button,
    .milestone-a__nav button,
    .milestone-a__controls button,
    .application-switch button,
    .ecosystem-accordion-trigger,
    .ecosystem-more-link,
    .impact-honor-trigger
  ):focus-visible,
  :where(
    .nav-action,
    .button,
    .apply-submit,
    .footer-cta,
    .menu-toggle,
    .language-switch button,
    .funding-mode-tab,
    .forum-nav-button,
    .impact-tab-list button,
    .milestone-a__nav button,
    .milestone-a__controls button,
    .application-switch button,
    .ecosystem-accordion-trigger,
    .ecosystem-more-link,
    .impact-honor-trigger
  ):active {
    transition-delay: 0ms;
  }

  .impact-honor-trigger:not(:hover):not(:focus-visible):not(:active) .impact-honor-symbol::before,
  .impact-honor-trigger:not(:hover):not(:focus-visible):not(:active) .impact-honor-symbol::after {
    transition-delay: var(--hover-exit-delay);
  }

  .impact-honor-trigger:hover .impact-honor-symbol::before,
  .impact-honor-trigger:hover .impact-honor-symbol::after,
  .impact-honor-trigger:focus-visible .impact-honor-symbol::before,
  .impact-honor-trigger:focus-visible .impact-honor-symbol::after {
    transition-delay: 0ms;
  }
}

/* The wide header also appears on unfolded touch screens. Use the same menu
   layout there; opening it must not depend on mouse-hover capability. */
@media (min-width: 981px) {
  body::before {
    content: "";
    position: fixed;
    inset: 76px 0 0;
    z-index: 19;
    pointer-events: none;
    opacity: 0;
    background: rgba(255, 250, 245, 0.28);
    backdrop-filter: blur(12px) saturate(0.92);
    transition: opacity 220ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  body.has-open-mega-menu::before {
    opacity: 1;
  }

  .site-header {
    isolation: isolate;
  }

  .nav-item.has-mega-menu {
    position: static;
  }

  .nav-mega-menu {
    position: fixed;
    top: 76px;
    left: 0;
    z-index: 1;
    display: block;
    width: 100vw;
    min-width: 0;
    min-height: clamp(332px, 37vh, 426px);
    margin: 0;
    padding: clamp(30px, 4vw, 62px) max(var(--page-gutter), calc((100vw - 1480px) / 2));
    overflow: hidden;
    border: 0;
    border-top: 1px solid rgba(49, 39, 29, 0.16);
    border-bottom: 1px solid rgba(49, 39, 29, 0.24);
    border-radius: 0;
    background:
      linear-gradient(120deg, rgba(255, 254, 251, 0.985) 0%, rgba(255, 251, 245, 0.975) 46%, rgba(255, 246, 233, 0.965) 100%);
    box-shadow: none;
    backdrop-filter: blur(18px) saturate(1.02);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate3d(0, -12px, 0);
    transition:
      opacity 220ms cubic-bezier(0.16, 1, 0.3, 1),
      transform 280ms cubic-bezier(0.16, 1, 0.3, 1),
      visibility 0s linear 280ms;
  }

  .has-mega-menu.is-mega-open .nav-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate3d(0, 0, 0);
    transition-delay: 0s;
  }

  body.is-menu-navigating::before,
  body.is-menu-navigating .nav-mega-menu {
    transition: none;
  }

  .nav-mega-inner {
    display: grid;
    grid-template-columns: minmax(300px, 0.84fr) minmax(0, 1.46fr);
    gap: clamp(46px, 7vw, 128px);
    width: min(100%, 1320px);
    min-height: clamp(268px, 30vh, 332px);
    margin: 0 auto;
  }

  .nav-mega-intro {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    min-width: 0;
    padding-right: clamp(24px, 4.4vw, 76px);
    border-right: 1px solid rgba(43, 34, 24, 0.12);
  }

  .nav-mega-label {
    margin: 0 0 16px;
    color: rgba(119, 77, 39, 0.8);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
  }

  .nav-mega-intro h2 {
    max-width: 13em;
    margin: 0;
    color: #1c1916;
    font-size: clamp(28px, 2.65vw, 43px);
    font-weight: 850;
    letter-spacing: -0.028em;
    line-height: 1.16;
    text-wrap: balance;
  }

  .nav-mega-copy {
    max-width: 38em;
    margin: 18px 0 0;
    color: rgba(46, 39, 31, 0.72);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.75;
    text-wrap: pretty;
  }

  .nav-mega-action {
    display: inline-flex !important;
    align-items: center;
    gap: 9px;
    margin-top: 26px;
    padding: 0 0 7px !important;
    border-bottom: 1px solid currentColor;
    border-radius: 0 !important;
    color: #2a2520 !important;
    background: transparent !important;
    font-size: 14px !important;
    font-weight: 850 !important;
    line-height: 1;
  }

  .nav-mega-action span {
    display: inline-block;
    font-family: Arial, sans-serif;
    font-style: normal;
    font-weight: 400;
    transition: transform 180ms cubic-bezier(0.16, 1, 0.3, 1);
  }

  .nav-mega-action:hover span,
  .nav-mega-action:focus-visible span {
    transform: translate3d(3px, -3px, 0);
  }

  .nav-mega-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: center;
    gap: 0 clamp(26px, 3.2vw, 62px);
    min-width: 0;
  }

  .nav-mega-link {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    min-width: 0;
    padding: 20px 0 !important;
    border-bottom: 1px solid rgba(47, 39, 30, 0.12);
    border-radius: 0 !important;
    color: #29231d !important;
    background: transparent !important;
    font-size: clamp(15px, 1.12vw, 17px) !important;
    font-weight: 850 !important;
    line-height: 1.3;
    white-space: normal !important;
    transition:
      color 180ms ease,
      border-color 180ms ease;
  }

  .nav-mega-link:hover,
  .nav-mega-link:focus-visible {
    border-bottom-color: rgba(213, 105, 41, 0.82);
    color: #c85d1e !important;
  }

  .nav-mega-link span {
    min-width: 0;
    text-wrap: balance;
  }

  .nav-mega-link i {
    color: rgba(191, 93, 33, 0.76);
  }

  .nav-mega-menu-insights,
  .nav-mega-menu-about {
    --nav-mega-column-inset: clamp(28px, 2.2vw, 36px);
  }

  .nav-mega-menu-insights .nav-mega-inner,
  .nav-mega-menu-about .nav-mega-inner {
    grid-template-columns: minmax(380px, 0.96fr) minmax(0, 1.04fr);
    gap: 0;
    width: 100%;
    margin: 0;
  }

  .nav-mega-menu-insights .nav-mega-label {
    margin: 0 0 22px;
    color: #1c1916;
    font-size: clamp(30px, 3vw, 46px);
    font-weight: 850;
    letter-spacing: -0.028em;
    line-height: 1.16;
  }

  .nav-mega-menu-insights .nav-mega-copy,
  .nav-mega-menu-insights .nav-mega-link {
    font-size: clamp(17px, 1.4vw, 20px) !important;
  }

  .nav-mega-menu-insights .nav-mega-copy {
    max-width: 32em;
    margin-top: 0;
    color: rgba(46, 39, 31, 0.78);
    line-height: 1.68;
  }

.nav-mega-menu-insights .nav-mega-intro > .nav-mega-label,
.nav-mega-menu-insights .nav-mega-intro > .nav-mega-copy {
  transform: translateY(clamp(-18px, -1.2vw, -12px));
}

  .nav-mega-menu-insights .nav-mega-links,
  .nav-mega-menu-about .nav-mega-links {
    position: relative;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }

  .nav-mega-menu-insights .nav-mega-links::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(43, 34, 24, 0.12);
    pointer-events: none;
  }

  .nav-mega-menu-insights .nav-mega-link {
    justify-content: flex-start;
    gap: 7px;
    padding: 20px var(--nav-mega-column-inset) !important;
    border-bottom: 0;
    font-weight: 400 !important;
    transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-mega-menu-insights .nav-mega-link:hover,
  .nav-mega-menu-insights .nav-mega-link:focus-visible {
    border-bottom-color: transparent;
    color: var(--orange) !important;
  }

  .nav-mega-menu-insights .nav-mega-link i {
    color: inherit;
  }

  .nav-mega-menu-about .nav-mega-links::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 1px;
    background: rgba(43, 34, 24, 0.12);
    pointer-events: none;
  }

  .nav-mega-group {
    min-width: 0;
  }

  .nav-mega-group h3 {
    margin: 0 0 18px;
    color: #1c1916;
    font-size: clamp(17px, 1.4vw, 20px);
    font-weight: 850;
    line-height: 1.3;
  }

  .nav-mega-menu-about .nav-mega-group {
    padding-inline: var(--nav-mega-column-inset);
  }

  .nav-mega-menu-about .nav-mega-intro,
  .nav-mega-menu-about .nav-mega-links {
    padding-block: clamp(32px, 4vh, 48px);
  }

  .nav-mega-menu-about .nav-mega-intro {
    justify-content: flex-start;
  }

  .nav-mega-menu-about .nav-mega-links {
    align-content: start;
  }

  .nav-mega-group-links {
    display: grid;
    gap: 2px;
  }

  .nav-mega-menu-about .nav-mega-group-link {
    justify-content: flex-start;
    gap: 7px;
    min-height: 38px;
    padding: 7px 0 !important;
    border-bottom: 0;
    color: rgba(46, 39, 31, 0.78) !important;
    font-size: clamp(17px, 1.4vw, 20px) !important;
    font-weight: 400 !important;
    line-height: 1.45;
    transition: color 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .nav-mega-menu-about .nav-mega-group-link:hover,
  .nav-mega-menu-about .nav-mega-group-link:focus-visible {
    border-bottom-color: transparent;
    color: var(--orange) !important;
  }

  .nav-mega-menu-about .nav-mega-group-link i {
    color: inherit;
  }
}

@media (min-width: 981px) and (max-width: 1120px) {
  .nav-mega-inner {
    grid-template-columns: minmax(270px, 0.9fr) minmax(0, 1.3fr);
    gap: 42px;
  }

  .nav-mega-intro {
    padding-right: 38px;
  }

  .nav-mega-links {
    gap: 0 32px;
  }

  .nav-mega-menu-insights .nav-mega-inner,
  .nav-mega-menu-about .nav-mega-inner {
    grid-template-columns: minmax(340px, 0.96fr) minmax(0, 1.04fr);
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  .nav-mega-menu,
  .nav-mega-action span,
  .nav-mega-link i {
    transition: none !important;
  }
}

@supports not (backdrop-filter: blur(1px)) {
  body::before {
    background: rgba(255, 250, 245, 0.82);
  }

  .nav-mega-menu {
    background: rgba(255, 252, 247, 0.98);
  }
}

/* Homepage funding primer: an editorial explanation replaces the retired process simulator. */
.funding-literacy {
  width: min(100%, 1320px);
  margin: 0 auto;
  border-top: 1px solid rgba(55, 43, 31, 0.16);
}

.funding-literacy-explainer {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(290px, 0.72fr);
  gap: clamp(42px, 8vw, 150px);
  padding: clamp(42px, 5.2vw, 82px) 0 clamp(40px, 4vw, 62px);
}

.funding-literacy-intro h3 {
  max-width: 10em;
  margin: 16px 0 20px;
  color: #201b16;
  font-size: clamp(34px, 4vw, 58px);
  font-weight: 850;
  letter-spacing: -0.065em;
  line-height: 1.08;
}

.funding-literacy-intro > p:last-child,
.funding-literacy-value > p:last-child {
  max-width: 40em;
  margin: 0;
  color: #5d554c;
  font-size: clamp(15px, 1.2vw, 18px);
  line-height: 1.9;
}

.funding-literacy-value {
  align-self: end;
  padding: 4px 0 4px clamp(28px, 4vw, 68px);
  border-left: 1px solid rgba(205, 92, 31, 0.58);
}

.funding-literacy-value .section-label,
.funding-literacy-context .section-label {
  color: #c56427;
}

.funding-literacy-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(55, 43, 31, 0.16);
}

.funding-literacy-principles li {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  column-gap: 18px;
  align-content: start;
  min-height: 210px;
  padding: clamp(28px, 3.3vw, 50px) clamp(12px, 2.8vw, 48px) clamp(28px, 3vw, 46px) 0;
  border-bottom: 1px solid rgba(55, 43, 31, 0.14);
}

.funding-literacy-principles li:nth-child(odd) {
  padding-right: clamp(30px, 5.4vw, 94px);
  border-right: 1px solid rgba(55, 43, 31, 0.14);
}

.funding-literacy-principles li > span {
  grid-row: span 2;
  color: #d56a2d;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.funding-literacy-principles h4 {
  margin: 0 0 14px;
  color: #241e18;
  font-size: clamp(19px, 1.7vw, 25px);
  font-weight: 850;
  line-height: 1.25;
}

.funding-literacy-principles p {
  margin: 0;
  color: #675e54;
  font-size: 15px;
  line-height: 1.8;
}

.funding-literacy-context {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) auto;
  gap: clamp(26px, 4vw, 72px);
  align-items: start;
  margin-top: clamp(36px, 4.8vw, 70px);
  padding: clamp(30px, 3.8vw, 52px) clamp(26px, 4vw, 66px);
  border: 1px solid rgba(174, 126, 83, 0.2);
  background: linear-gradient(106deg, rgba(255, 249, 240, 0.9), rgba(255, 244, 229, 0.5));
}

.funding-literacy-context > p:not(.section-label) {
  margin: 0;
  color: #514940;
  font-size: clamp(15px, 1.18vw, 17px);
  line-height: 1.85;
}

.funding-literacy-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
  color: #a94e21;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.35;
  white-space: nowrap;
}

.funding-literacy-link span {
  font-family: Arial, sans-serif;
  transition: transform 180ms ease;
}

.funding-literacy-link:hover,
.funding-literacy-link:focus-visible {
  color: #d15e22;
}

.funding-literacy-link:hover span,
.funding-literacy-link:focus-visible span {
  transform: translate3d(3px, -3px, 0);
}

@media (max-width: 820px) {
  .funding-literacy-explainer,
  .funding-literacy-context {
    grid-template-columns: 1fr;
  }

  .funding-literacy-value {
    padding: 26px 0 0;
    border-top: 1px solid rgba(205, 92, 31, 0.5);
    border-left: 0;
  }

  .funding-literacy-context {
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .funding-literacy-explainer {
    gap: 30px;
    padding: 42px 0;
  }

  .funding-literacy-principles {
    grid-template-columns: 1fr;
  }

  .funding-literacy-principles li,
  .funding-literacy-principles li:nth-child(odd) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  .funding-literacy-context {
    margin-top: 28px;
    padding: 30px 24px;
  }
}

/* Funding primer rework: risk allocation, not a generic benefits grid. */
.funding-literacy {
  --funding-ink: #1e1f1e;
  --funding-accent: #ef7034;
  --funding-soft-ink: #6a675f;
  width: min(100%, 1320px);
  margin: 0 auto;
  border-top: 2px solid #252522;
}

.funding-literacy-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.42fr) minmax(280px, 0.58fr);
  gap: clamp(36px, 7vw, 132px);
  align-items: end;
  padding: clamp(52px, 6.5vw, 110px) 0 clamp(44px, 5vw, 82px);
}

.funding-literacy-index {
  grid-column: 1 / -1;
  margin: 0;
  color: #b94d21;
  font-family: Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.13em;
  line-height: 1.2;
}

.funding-literacy-intro h3 {
  max-width: 10.5em;
  margin: 0;
  color: var(--funding-ink);
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 850;
  letter-spacing: -0.04em;
  line-height: 1.06;
  text-wrap: balance;
}

.funding-literacy-intro > p:last-child {
  max-width: 34em;
  margin: 0 0 5px;
  color: #504e49;
  font-size: clamp(15px, 1.18vw, 18px);
  line-height: 1.9;
  text-wrap: pretty;
}

.funding-risk-allocation {
  position: relative;
  overflow: hidden;
  padding: clamp(34px, 4.4vw, 66px) clamp(26px, 5.3vw, 92px) clamp(40px, 5.3vw, 88px);
  color: #f5f1e9;
  background: var(--funding-ink);
}

.funding-risk-allocation::before {
  position: absolute;
  top: 0;
  left: clamp(26px, 5.3vw, 92px);
  width: clamp(74px, 12vw, 172px);
  height: 4px;
  background: var(--funding-accent);
  content: "";
}

.funding-risk-allocation-heading {
  display: grid;
  grid-template-columns: minmax(160px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: baseline;
  padding-bottom: clamp(28px, 3.2vw, 48px);
  border-bottom: 1px solid rgba(250, 246, 238, 0.22);
}

.funding-risk-allocation-heading p {
  margin: 0;
}

.funding-risk-allocation-heading p:first-child {
  color: var(--funding-accent);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.funding-risk-allocation-heading p:last-child {
  max-width: 31em;
  color: #f6f2e9;
  font-size: clamp(19px, 1.65vw, 27px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.4;
  text-wrap: balance;
}

.funding-risk-lanes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.funding-risk-lanes li {
  position: relative;
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 18px;
  min-height: 250px;
  padding: clamp(30px, 4.1vw, 64px) clamp(20px, 3.4vw, 54px) 0 0;
}

.funding-risk-lanes li + li {
  padding-left: clamp(20px, 3.4vw, 54px);
  border-left: 1px solid rgba(250, 246, 238, 0.22);
}

.funding-risk-lanes li > span {
  color: var(--funding-accent);
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.funding-risk-lanes li div > p:first-child {
  margin: 0 0 18px;
  color: #cfc9bd;
  font-size: 13px;
  letter-spacing: 0.08em;
}

.funding-risk-lanes h4 {
  margin: 0 0 18px;
  color: #fffdf8;
  font-size: clamp(20px, 1.82vw, 30px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.25;
  text-wrap: balance;
}

.funding-risk-lanes li div > p:last-child {
  margin: 0;
  color: #d8d3c8;
  font-size: 15px;
  line-height: 1.8;
}

.funding-terms {
  padding: clamp(58px, 7.1vw, 116px) 0 0;
}

.funding-term-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 96px);
  align-items: baseline;
  margin-bottom: clamp(28px, 3vw, 46px);
}

.funding-term-heading p {
  margin: 0;
}

.funding-term-heading p:first-child {
  color: #b94d21;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.funding-term-heading p:last-child {
  max-width: 37em;
  color: #44423e;
  font-size: clamp(18px, 1.55vw, 25px);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.45;
  text-wrap: balance;
}

.funding-terms ol {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(32, 32, 30, 0.7);
}

.funding-terms li {
  display: grid;
  grid-template-columns: 52px minmax(175px, 0.76fr) minmax(0, 1.45fr);
  gap: clamp(22px, 3vw, 54px);
  align-items: baseline;
  padding: clamp(24px, 2.7vw, 42px) 0;
  border-bottom: 1px solid rgba(32, 32, 30, 0.17);
}

.funding-terms li > span {
  color: #bd5728;
  font-family: Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.funding-terms h4,
.funding-terms li > p {
  margin: 0;
}

.funding-terms h4 {
  color: #252522;
  font-size: clamp(20px, 1.65vw, 27px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.3;
}

.funding-terms li > p {
  max-width: 43em;
  color: var(--funding-soft-ink);
  font-size: 15px;
  line-height: 1.8;
}

.funding-literacy-proof {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr) auto;
  gap: clamp(28px, 4vw, 74px);
  align-items: start;
  margin-top: clamp(56px, 7vw, 112px);
  padding: clamp(30px, 3.8vw, 54px) 0 0;
  border-top: 2px solid var(--funding-ink);
}

.funding-proof-date {
  margin: 0;
  color: #b94d21;
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.funding-literacy-proof > p:not(.funding-proof-date) {
  max-width: 42em;
  margin: 0;
  color: #55514b;
  font-size: 16px;
  line-height: 1.85;
}

.funding-literacy .funding-literacy-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 6px;
  border-bottom: 1px solid currentColor;
  color: #8f3f1f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
  white-space: nowrap;
}

.funding-literacy .funding-literacy-link span {
  font-family: Arial, sans-serif;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1);
}

.funding-literacy .funding-literacy-link:hover,
.funding-literacy .funding-literacy-link:focus-visible {
  color: #d75c28;
}

.funding-literacy .funding-literacy-link:hover span,
.funding-literacy .funding-literacy-link:focus-visible span {
  transform: translate3d(3px, -3px, 0);
}

@media (max-width: 860px) {
  .funding-literacy-intro,
  .funding-risk-allocation-heading,
  .funding-term-heading,
  .funding-literacy-proof {
    grid-template-columns: 1fr;
  }

  .funding-literacy-intro {
    gap: 28px;
  }

  .funding-risk-allocation-heading,
  .funding-term-heading,
  .funding-literacy-proof {
    gap: 18px;
  }

  .funding-risk-lanes {
    grid-template-columns: 1fr;
  }

  .funding-risk-lanes li,
  .funding-risk-lanes li + li {
    min-height: 0;
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(250, 246, 238, 0.2);
  }

  .funding-risk-lanes li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .funding-terms li {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 14px 22px;
  }

  .funding-terms li > p {
    grid-column: 2;
  }
}

@media (max-width: 560px) {
  .funding-literacy-intro {
    padding: 46px 0 40px;
  }

  .funding-literacy-intro h3 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .funding-risk-allocation {
    padding: 30px 22px 38px;
  }

  .funding-risk-allocation::before {
    left: 22px;
  }

  .funding-risk-lanes li {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 14px;
  }

  .funding-terms {
    padding-top: 66px;
  }

  .funding-terms li {
    grid-template-columns: 38px minmax(0, 1fr);
  }

  .funding-literacy-proof {
    margin-top: 64px;
    padding-top: 30px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funding-literacy .funding-literacy-link span {
    transition: none;
  }
}

/* Homepage funding gateway: one promotional scene with one next action. */
.funding-model-section {
  padding: clamp(34px, 5vw, 82px) 0 clamp(86px, 9vw, 148px);
}

.funding-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: minmax(500px, 0.94fr) minmax(0, 1.06fr);
  min-height: clamp(620px, 50vw, 760px);
  overflow: hidden;
  color: #181817;
  background: #ed6d32;
  box-shadow: 0 32px 80px rgba(98, 48, 24, 0.14);
}

.funding-spotlight-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(54px, 5.4vw, 96px) clamp(38px, 4vw, 64px) clamp(44px, 4.4vw, 76px);
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 219, 149, 0.56), transparent 28rem),
    linear-gradient(145deg, #ffad50 0%, #f48238 43%, #e7612c 100%);
}

.funding-spotlight-copy::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40%;
  height: 38%;
  border-right: 1px solid rgba(31, 28, 25, 0.24);
  border-bottom: 1px solid rgba(31, 28, 25, 0.24);
  content: "";
  pointer-events: none;
}

.funding-spotlight-kicker {
  margin: 0 0 clamp(42px, 5vw, 80px);
  font-family: Inter, Arial, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.4;
  text-transform: uppercase;
}

.funding-spotlight h2 {
  max-width: none;
  margin: 0;
  color: #171716;
  font-size: clamp(50px, 3.8vw, 60px);
  font-weight: 850;
  letter-spacing: -0.055em;
  line-height: 1.04;
  text-wrap: balance;
}

.funding-spotlight-summary {
  max-width: 34em;
  margin: clamp(30px, 3.5vw, 52px) 0 0;
  color: rgba(25, 24, 22, 0.82);
  font-size: clamp(15px, 1.08vw, 18px);
  line-height: 1.9;
  text-wrap: pretty;
}

.funding-spotlight-link {
  display: inline-flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  min-width: 210px;
  margin-top: clamp(32px, 3.7vw, 56px);
  padding: 15px 20px 15px 23px;
  border: 1px solid #171716;
  border-radius: 999px;
  color: #fffaf4;
  background: #171716;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.25;
  text-decoration: none;
  transition:
    color 180ms ease,
    background-color 180ms ease;
}

.funding-spotlight-link:hover,
.funding-spotlight-link:focus-visible {
  color: #171716;
  background: transparent;
  transform: none;
}

.funding-spotlight-proof {
  display: flex;
  gap: 16px;
  align-items: baseline;
  max-width: 34em;
  margin: auto 0 0;
  padding-top: clamp(40px, 5vw, 72px);
  color: rgba(25, 24, 22, 0.72);
  font-size: 12px;
  line-height: 1.6;
}

.funding-spotlight-proof strong {
  color: #171716;
  font-family: Inter, Arial, sans-serif;
  font-size: clamp(22px, 1.8vw, 30px);
  font-weight: 850;
  letter-spacing: -0.035em;
  line-height: 1;
}

.funding-spotlight-visual {
  position: relative;
  min-width: 0;
  min-height: 100%;
  margin: 0;
  background: #d9d0c6;
}

.funding-spotlight-visual::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: 1;
  width: clamp(24px, 5vw, 86px);
  background: linear-gradient(90deg, rgba(231, 97, 44, 0.5), rgba(231, 97, 44, 0));
  content: "";
  pointer-events: none;
}

.funding-spotlight-visual img {
  width: 100%;
  height: 100%;
  min-height: clamp(620px, 50vw, 760px);
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(0.94) contrast(1.02);
  transform: scale(1.015);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.funding-spotlight:hover .funding-spotlight-visual img {
  transform: scale(1.04);
}

body.reveal-ready .funding-model-section:not(.funding-model-active) .funding-spotlight {
  opacity: 0;
  transform: translate3d(0, 42px, 0);
}

body.reveal-ready .funding-model-section.funding-model-active .funding-spotlight {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.82s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.82s cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 980px) {
  .funding-spotlight {
    grid-template-columns: minmax(330px, 0.92fr) minmax(0, 1.08fr);
    min-height: 610px;
  }

  .funding-spotlight h2 {
    font-size: clamp(48px, 6.4vw, 68px);
  }

  .funding-spotlight-visual img {
    min-height: 610px;
    object-position: 55% 50%;
  }
}

@media (max-width: 760px) {
  .funding-model-section {
    width: 100%;
    padding-top: 24px;
  }

  .funding-spotlight {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .funding-spotlight-copy {
    min-height: 610px;
    padding: 48px var(--page-gutter) 42px;
  }

  .funding-spotlight-copy::after {
    right: var(--page-gutter);
  }

  .funding-spotlight-kicker {
    margin-bottom: 52px;
  }

  .funding-spotlight h2 {
    font-size: clamp(49px, 13.5vw, 72px);
  }

  .funding-spotlight-summary {
    max-width: 31em;
    line-height: 1.8;
  }

  .funding-spotlight-proof {
    align-items: flex-start;
  }

  .funding-spotlight-visual {
    min-height: 74vw;
  }

  .funding-spotlight-visual::before {
    inset: 0 0 auto;
    width: auto;
    height: 64px;
    background: linear-gradient(180deg, rgba(231, 97, 44, 0.42), rgba(231, 97, 44, 0));
  }

  .funding-spotlight-visual img {
    min-height: 74vw;
    object-position: 50% 50%;
  }
}

@media (max-width: 480px) {
  .funding-spotlight-copy {
    min-height: 590px;
  }

  .funding-spotlight-summary {
    font-size: 15px;
  }

  .funding-spotlight-link {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funding-spotlight,
  .funding-spotlight-link,
  .funding-spotlight-link > span:last-child,
  .funding-spotlight-visual img {
    transition: none !important;
  }

  .funding-spotlight:hover .funding-spotlight-visual img {
    transform: scale(1.015);
  }
}

/* Full-bleed funding panorama: one image, one mask, one action. */
.funding-model-section {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: clamp(34px, 5vw, 82px) 0 clamp(86px, 9vw, 148px);
}

.funding-spotlight {
  position: relative;
  display: block;
  min-height: clamp(660px, 49vw, 780px);
  overflow: hidden;
  color: #fff;
  background: #11100f;
  box-shadow: none;
}

.funding-spotlight::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 10, 9, 0.94) 0%, rgba(10, 10, 9, 0.86) 20%, rgba(10, 10, 9, 0.56) 39%, rgba(10, 10, 9, 0.16) 58%, rgba(10, 10, 9, 0) 76%),
    linear-gradient(180deg, rgba(10, 10, 9, 0.1), rgba(10, 10, 9, 0.22));
  content: "";
  pointer-events: none;
}

.funding-spotlight-background {
  position: absolute;
  inset: 0;
  z-index: 0;
  margin: 0;
  overflow: hidden;
}

.funding-spotlight-background img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.01);
}

.funding-spotlight-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: min(1850px, 100%);
  min-height: clamp(660px, 49vw, 780px);
  margin-inline: auto;
  padding: clamp(60px, 6vw, 104px) var(--page-gutter) clamp(48px, 5vw, 82px);
  color: #fff;
  background: none;
}

.funding-spotlight-copy::after {
  display: none;
}

.funding-spotlight-kicker {
  margin-bottom: clamp(44px, 5.2vw, 82px);
  color: #f3a25f;
}

.funding-spotlight h2 {
  max-width: 9em;
  color: #fff;
  font-size: clamp(54px, 4.5vw, 76px);
  letter-spacing: -0.05em;
  text-shadow: 0 2px 28px rgba(0, 0, 0, 0.18);
}

.funding-spotlight-summary {
  max-width: 35em;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(15px, 1.04vw, 17px);
}

.funding-spotlight-link {
  border-color: #fff;
  color: #171716;
  background: #fff;
}

.funding-spotlight-link:hover,
.funding-spotlight-link:focus-visible {
  color: #fff;
  background: transparent;
}

.funding-spotlight-proof {
  color: rgba(255, 255, 255, 0.62);
}

.funding-spotlight-proof strong {
  color: #fff;
}

@media (max-width: 980px) {
  .funding-spotlight,
  .funding-spotlight-copy {
    min-height: 650px;
  }

  .funding-spotlight::after {
    background:
      linear-gradient(90deg, rgba(10, 10, 9, 0.94) 0%, rgba(10, 10, 9, 0.82) 30%, rgba(10, 10, 9, 0.35) 64%, rgba(10, 10, 9, 0.08) 100%),
      linear-gradient(180deg, rgba(10, 10, 9, 0.12), rgba(10, 10, 9, 0.28));
  }

  .funding-spotlight h2 {
    font-size: clamp(50px, 6.2vw, 66px);
  }

  .funding-spotlight-background img {
    min-height: 100%;
    object-position: 52% center;
  }
}

@media (max-width: 760px) {
  .funding-model-section {
    width: 100%;
    padding-top: 24px;
  }

  .funding-spotlight,
  .funding-spotlight-copy {
    min-height: 720px;
  }

  .funding-spotlight::after {
    background:
      linear-gradient(90deg, rgba(9, 9, 8, 0.92), rgba(9, 9, 8, 0.7)),
      linear-gradient(180deg, rgba(9, 9, 8, 0.12) 0%, rgba(9, 9, 8, 0.22) 58%, rgba(9, 9, 8, 0.66) 100%);
  }

  .funding-spotlight-copy {
    padding: 52px var(--page-gutter) 44px;
  }

  .funding-spotlight-kicker {
    margin-bottom: 52px;
  }

  .funding-spotlight h2 {
    max-width: 8em;
    font-size: clamp(48px, 13.2vw, 66px);
  }

  .funding-spotlight-summary {
    max-width: 31em;
    color: rgba(255, 255, 255, 0.82);
  }

  .funding-spotlight-background img {
    min-height: 100%;
    object-position: 44% center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funding-spotlight-background img {
    transition: none !important;
  }
}

/* Light orange panorama variant. */
.funding-spotlight {
  color: #fff7ef;
  background: #f4d6b8;
}

.funding-spotlight::after {
  background:
    linear-gradient(90deg, rgba(224, 126, 53, 0.7) 0%, rgba(230, 139, 68, 0.56) 23%, rgba(239, 170, 104, 0.34) 40%, rgba(248, 211, 170, 0.12) 58%, rgba(255, 246, 235, 0) 76%),
    linear-gradient(180deg, rgba(255, 247, 237, 0.08), rgba(163, 70, 19, 0.1));
}

.funding-spotlight-copy {
  color: #fff7ef;
}

.funding-spotlight-kicker {
  color: rgba(255, 250, 244, 0.72);
  font-size: 13px;
}

.funding-spotlight h2 {
  color: #fffaf4;
  text-shadow: 0 2px 28px rgba(80, 31, 8, 0.28);
}

.funding-spotlight-summary {
  color: rgba(255, 250, 244, 0.84);
}

.funding-spotlight-link {
  border-color: rgba(255, 250, 244, 0.9);
  color: #fffaf4;
  background: rgba(54, 25, 10, 0.18);
  backdrop-filter: blur(8px);
}

.funding-spotlight-link:hover,
.funding-spotlight-link:focus-visible {
  color: #2b1b13;
  background: #fff7ef;
}

.funding-spotlight-proof {
  color: rgba(255, 250, 244, 0.7);
}

.funding-spotlight-proof strong {
  color: #fffaf4;
}

@media (max-width: 980px) {
  .funding-spotlight::after {
    background:
      linear-gradient(90deg, rgba(224, 126, 53, 0.76) 0%, rgba(232, 145, 74, 0.62) 32%, rgba(242, 185, 125, 0.34) 65%, rgba(252, 231, 205, 0.1) 100%),
      linear-gradient(180deg, rgba(255, 247, 237, 0.06), rgba(163, 70, 19, 0.12));
  }
}

@media (max-width: 760px) {
  .funding-spotlight::after {
    background:
      linear-gradient(90deg, rgba(225, 128, 55, 0.78), rgba(239, 172, 107, 0.56)),
      linear-gradient(180deg, rgba(255, 247, 237, 0.08) 0%, rgba(234, 151, 81, 0.16) 58%, rgba(137, 57, 17, 0.28) 100%);
  }
}

/* Funding panorama light switch: dark base with a staged bright layer. */
.funding-spotlight-background img.funding-spotlight-image {
  position: absolute;
  inset: 0;
}

.funding-spotlight-background img.funding-spotlight-image-dark {
  z-index: 0;
  transform: translate(0.1%, -0.129%) scale(1.01);
}

.funding-spotlight-background img.funding-spotlight-image-light {
  z-index: 1;
  opacity: 0;
  filter: brightness(0.88) saturate(0.9) contrast(1.02);
  transform: scale(1.01);
  will-change: opacity, filter, transform;
  transition:
    opacity 460ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 460ms cubic-bezier(0.22, 1, 0.36, 1);
}

.funding-spotlight-background::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 72% 29%, rgba(255, 177, 84, 0.46), transparent 18%),
    radial-gradient(circle at 55% 54%, rgba(255, 194, 115, 0.34), transparent 22%),
    linear-gradient(90deg, transparent 34%, rgba(255, 169, 72, 0.12) 62%, transparent 88%);
  content: "";
  mix-blend-mode: screen;
  opacity: 0;
  pointer-events: none;
  transition: opacity 420ms ease-out;
}

.funding-spotlight:is(:hover, :focus-within) .funding-spotlight-image-light {
  opacity: 1;
  animation: funding-light-switch-on 760ms linear forwards;
}

.funding-spotlight:is(:hover, :focus-within) .funding-spotlight-background::after {
  animation: funding-light-warmup 760ms linear forwards;
}

@keyframes funding-light-switch-on {
  0% {
    filter: brightness(0.82) saturate(0.86) contrast(1.04);
  }

  11% {
    filter: brightness(0.95) saturate(0.94) contrast(1.03);
  }

  17% {
    filter: brightness(1.08) saturate(1.05) contrast(1.01);
  }

  23% {
    filter: brightness(0.88) saturate(0.9) contrast(1.04);
  }

  35% {
    filter: brightness(1.08) saturate(1.06) contrast(1.01);
  }

  43% {
    filter: brightness(0.96) saturate(0.97) contrast(1.03);
  }

  59% {
    filter: brightness(1.04) saturate(1.03) contrast(1.01);
  }

  68% {
    filter: brightness(0.99) saturate(1) contrast(1.02);
  }

  82%,
  100% {
    filter: brightness(1) saturate(1) contrast(1.02);
  }
}

@keyframes funding-light-warmup {
  0%,
  9% {
    opacity: 0;
  }

  17% {
    opacity: 0.48;
  }

  23% {
    opacity: 0.08;
  }

  35% {
    opacity: 0.42;
  }

  43% {
    opacity: 0.16;
  }

  59% {
    opacity: 0.36;
  }

  100% {
    opacity: 0.18;
  }
}

@media (prefers-reduced-motion: reduce) {
  .funding-spotlight-image-light {
    animation: none;
    transition: opacity 180ms ease-out;
  }

  .funding-spotlight:is(:hover, :focus-within) .funding-spotlight-image-light {
    animation: none;
    opacity: 1;
    filter: brightness(1) saturate(1) contrast(1.02);
  }

  .funding-spotlight:is(:hover, :focus-within) .funding-spotlight-background::after {
    animation: none;
    opacity: 0.18;
  }
}

/* Homepage funding highlights: secondary-page icons and one quiet next action. */
.funding-spotlight-copy::before {
  position: absolute;
  inset: 0 auto 0 0;
  z-index: -1;
  width: min(820px, 68vw);
  content: "";
  pointer-events: none;
  background: rgba(83, 39, 17, 0.025);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
  mask-image: linear-gradient(90deg, #000 0%, #000 70%, transparent 100%);
}

.funding-spotlight-kicker {
  margin-bottom: clamp(36px, 3.5vw, 54px);
}

.funding-spotlight-summary {
  width: min(35rem, 61vw);
  max-width: none;
  margin-top: clamp(24px, 2.4vw, 36px);
}

.funding-spotlight-features {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px 14px;
  width: min(500px, 54vw);
  margin-top: clamp(24px, 2vw, 30px);
  padding-top: clamp(18px, 1.6vw, 24px);
}

.funding-spotlight-features::before {
  position: absolute;
  top: 0;
  left: 0;
  width: min(35rem, 61vw);
  height: 1px;
  background: rgba(255, 250, 244, 0.28);
  content: "";
  pointer-events: none;
}

.funding-spotlight-feature {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
  color: rgba(255, 250, 244, 0.9);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.35;
  white-space: nowrap;
}

.funding-spotlight-feature-icon {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  color: #fffaf4;
}

.funding-spotlight-link.button.secondary {
  position: relative;
  right: auto;
  bottom: auto;
  z-index: 3;
  align-self: flex-start;
  width: auto;
  min-width: 0;
  min-height: 46px;
  margin: clamp(36px, 3.2vw, 48px) 0 0;
  padding: 0 22px;
  border: 1px solid transparent;
  color: #2b1b13;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) padding-box,
    var(--button-outline-flow) border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    0% 50%;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
  transition:
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    background-position 1.05s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.25s ease,
    color 0.25s ease;
  transition-delay: var(--hover-exit-delay);
}

.funding-spotlight-link.button.secondary:hover,
.funding-spotlight-link.button.secondary:focus-visible {
  color: #2b1b13;
  background:
    linear-gradient(rgba(255, 255, 255, 0.74), rgba(255, 255, 255, 0.74)) padding-box,
    var(--button-outline-flow) border-box;
  background-size:
    100% 100%,
    240% 240%;
  background-position:
    0 0,
    100% 50%;
  border-color: rgba(255, 138, 61, 0.42);
  box-shadow: none;
  transform: none;
  transition-delay: 0ms;
}

@media (max-width: 1100px) {
  .funding-spotlight-summary {
    width: min(100%, 35rem);
  }

  .funding-spotlight-features {
    width: min(100%, 500px);
  }
}

@media (max-width: 760px) {
  .funding-spotlight,
  .funding-spotlight-copy {
    min-height: 0;
  }

  .funding-spotlight-copy {
    padding-bottom: 52px;
  }

  .funding-spotlight-kicker {
    margin-bottom: 40px;
  }

  .funding-spotlight-summary {
    width: min(100%, 31rem);
    margin-top: 28px;
  }

  .funding-spotlight-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px 18px;
    margin-top: 30px;
    padding-top: 24px;
  }

  .funding-spotlight-features::before {
    width: min(100%, 31rem);
  }

  .funding-spotlight-feature {
    gap: 11px;
    font-size: 14px;
  }

  .funding-spotlight-feature-icon {
    width: 27px;
    height: 27px;
  }

  .funding-spotlight-link.button.secondary {
    align-self: flex-start;
    margin-top: 32px;
  }
}

@media (max-width: 380px) {
  .funding-spotlight-feature {
    gap: 9px;
    font-size: 13px;
  }

  .funding-spotlight-feature-icon {
    width: 25px;
    height: 25px;
  }
}

/* Compact text-and-chevron entry; keep it close to the accordion copy. */
.ecosystem-more-link {
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: 20px;
  font-size: 16px;
  font-weight: 400;
}
