/* /assets/site.css */
:root {
  --kiwi-green: #00C853;
  --kiwi-green-light: #00E676;
  --kiwi-green-dark: #009624;
  --volt-yellow: #FFEA00;
  --deep-purple: #651FFF;
  --ink-blue: #1A2333;
  --cool-gray: #F5F7FA;
  --soft-white: #FFFFFF;
  --mint-green: #B9F6CA;
  --line-gray: #E0E6ED;
  --translucent-green: rgba(0, 200, 83, 0.15);
  --header-height: 76px;
  --container: 1240px;
  --container-narrow: 920px;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-num: "Roboto Mono", Consolas, monospace;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-1: 0 8px 30px rgba(26, 35, 51, 0.05);
  --shadow-2: 0 16px 48px rgba(26, 35, 51, 0.08);
  --ease: cubic-bezier(0.2, 0.7, 0.3, 1);
}

@media (max-width: 600px) {
  :root {
    --header-height: 64px;
  }
}

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

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 12px);
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-blue);
  background-color: var(--cool-gray);
  background-image:
    linear-gradient(rgba(0, 200, 83, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 200, 83, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
p,
ul,
ol,
figure {
  margin: 0;
}

ul,
ol {
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
}

button {
  font: inherit;
  cursor: pointer;
  border: 0;
  background: none;
}

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

:focus-visible {
  outline: 3px solid var(--deep-purple);
  outline-offset: 3px;
  border-radius: 8px;
}

::selection {
  background: var(--volt-yellow);
  color: var(--ink-blue);
}

h1,
.h1 {
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  font-weight: 800;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 800;
}

h3 {
  font-size: 1.2rem;
  line-height: 1.4;
  font-weight: 800;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
  box-sizing: border-box;
}

.main-content {
  padding-top: var(--header-height);
  min-height: 70vh;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 10px;
  z-index: 2000;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--deep-purple);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transform: translateY(-220%);
  transition: transform 0.2s var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(224, 230, 237, 0.65);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: background-color 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.96);
  border-bottom-color: var(--line-gray);
  box-shadow: 0 6px 28px rgba(26, 35, 51, 0.07);
}

.site-header__inner {
  max-width: var(--container);
  margin-inline: auto;
  height: var(--header-height);
  padding-inline: clamp(14px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-sizing: border-box;
}

.site-header__progress {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--kiwi-green), var(--volt-yellow) 72%, var(--deep-purple));
  transform: scaleX(0);
  transform-origin: left;
  pointer-events: none;
  z-index: 3;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink-blue);
}

.brand-mark {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 32%, var(--kiwi-green-light), var(--kiwi-green) 52%, var(--kiwi-green-dark));
  box-shadow: 0 0 0 1px rgba(26, 35, 51, 0.08), 0 8px 18px rgba(0, 200, 83, 0.28);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto;
  transition: transform 0.3s var(--ease);
}

.brand-mark::before {
  content: "";
  position: absolute;
  inset: 7px 9px;
  border-radius: 58% 42% 50% 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(-18deg);
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 10%;
  width: 2px;
  height: 80%;
  background: rgba(101, 63, 255, 0.3);
  transform: rotate(18deg);
}

.brand-mark--negative {
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.22), 0 10px 26px rgba(0, 230, 118, 0.22);
}

.site-brand:hover .brand-mark,
.site-footer__brand:hover .brand-mark {
  transform: rotate(-8deg) scale(1.05);
}

.site-brand__text {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}

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

.nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav__link {
  display: inline-block;
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--ink-blue);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  border-radius: 999px;
  background: var(--volt-yellow);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s var(--ease);
}

.nav__link:hover {
  background: var(--mint-green);
  color: var(--kiwi-green-dark);
}

.nav__link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav__link[aria-current="page"] {
  background: var(--mint-green);
  color: var(--kiwi-green-dark);
}

.nav__link[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line-gray);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  color: var(--ink-blue);
  box-shadow: 0 4px 14px rgba(26, 35, 51, 0.06);
  position: relative;
  z-index: 1300;
}

.nav-toggle__bars {
  position: relative;
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: background 0.2s;
}

.nav-toggle__bars::before,
.nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: top 0.25s, transform 0.25s;
}

.nav-toggle__bars::before {
  top: -5px;
}

.nav-toggle__bars::after {
  top: 5px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bars::after {
  top: 0;
  transform: rotate(-45deg);
}

.nav-toggle:hover {
  border-color: var(--kiwi-green);
  color: var(--kiwi-green);
}

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

  .nav {
    position: fixed;
    top: calc(var(--header-height) + 10px);
    right: 12px;
    width: min(420px, calc(100vw - 24px));
    max-height: calc(100vh - var(--header-height) - 24px);
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.97);
    border: 1px solid var(--line-gray);
    border-radius: 22px;
    box-shadow: var(--shadow-2);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  }

  .nav[data-open] {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav__list {
    display: grid;
    gap: 4px;
  }

  .nav__link {
    padding: 14px 18px;
    border-radius: 14px;
    font-size: 1rem;
  }

  .nav__link::after {
    display: none;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--ink-blue);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -120px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  border: 72px solid rgba(0, 200, 83, 0.13);
  pointer-events: none;
}

.site-footer::after {
  content: "";
  position: absolute;
  left: -80px;
  bottom: -160px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  border: 60px solid rgba(101, 63, 255, 0.12);
  pointer-events: none;
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 32px) 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  padding-bottom: clamp(32px, 5vw, 56px);
}

.site-footer__panel {
  min-width: 0;
}

.site-footer__panel--brand {
  max-width: 40rem;
}

.site-footer__brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  text-decoration: none;
}

.site-footer__brand-text {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
}

.site-footer__domain {
  display: block;
  margin-top: 4px;
  font-family: var(--font-num);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.45);
}

.site-footer__statement {
  margin-top: 18px;
  max-width: 34ch;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.62);
}

.site-footer__badges {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}

.site-footer__badge {
  width: 36px;
  height: 10px;
  border-radius: 999px;
  background: var(--kiwi-green);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.site-footer__badge--yellow {
  background: var(--volt-yellow);
}

.site-footer__badge--purple {
  background: var(--deep-purple);
}

.site-footer__title {
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--volt-yellow);
}

.site-footer__list {
  display: grid;
  gap: 10px;
}

.site-footer__list a {
  color: rgba(255, 255, 255, 0.76);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s, padding-left 0.2s;
}

.site-footer__list a:hover {
  color: var(--kiwi-green-light);
  padding-left: 4px;
}

.site-footer__contact {
  display: grid;
  gap: 12px;
}

.site-footer__contact li {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 6px 12px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.74);
}

.site-footer__label {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.46);
}

.site-footer__note {
  margin-top: 16px;
  font-size: 0.82rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.46);
}

.site-footer__bottom {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px clamp(16px, 4vw, 32px) 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 18px;
}

.site-footer__copy {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.56);
}

.site-footer__icp {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
}

.site-footer__policy {
  display: flex;
  gap: 18px;
}

.site-footer__policy a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  transition: color 0.2s, border-color 0.2s;
}

.site-footer__policy a:hover {
  color: var(--volt-yellow);
  border-bottom-style: solid;
  border-color: var(--volt-yellow);
}

@media (max-width: 900px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__panel--brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

.breadcrumbs {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px clamp(16px, 4vw, 32px) 0;
  box-sizing: border-box;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.breadcrumbs__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumbs__item:not(:last-child)::after {
  content: "/";
  margin-left: 8px;
  color: var(--line-gray);
}

.breadcrumbs__link {
  color: var(--ink-blue);
  text-decoration: none;
}

.breadcrumbs__link:hover {
  color: var(--kiwi-green);
}

.breadcrumbs__item[aria-current="page"] {
  color: var(--deep-purple);
  font-weight: 700;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  line-height: 1;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s, color 0.25s;
}

.btn--primary {
  background: var(--kiwi-green);
  color: var(--ink-blue);
  box-shadow: 0 12px 28px rgba(0, 200, 83, 0.24);
}

.btn--primary:hover {
  background: var(--kiwi-green-light);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(0, 200, 83, 0.3);
}

.btn--secondary {
  background: var(--deep-purple);
  color: #fff;
  box-shadow: 0 12px 28px rgba(101, 63, 255, 0.22);
}

.btn--secondary:hover {
  background: #7B42FF;
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  border-color: var(--line-gray);
  color: var(--ink-blue);
}

.btn--ghost:hover {
  border-color: var(--kiwi-green);
  color: var(--kiwi-green);
  background: var(--mint-green);
}

.btn--yellow {
  background: var(--volt-yellow);
  color: var(--ink-blue);
  box-shadow: 0 10px 24px rgba(255, 234, 0, 0.22);
}

.btn--yellow:hover {
  transform: translateY(-2px);
}

.page-hero {
  position: relative;
  isolation: isolate;
  margin-top: calc(var(--header-height) * -1);
  padding: calc(var(--header-height) + clamp(56px, 9vw, 112px)) 0 clamp(48px, 8vw, 96px);
  background: var(--soft-white);
  border-bottom: 1px solid var(--line-gray);
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 58%;
  height: 100%;
  background: linear-gradient(120deg, rgba(0, 200, 83, 0.13), rgba(255, 234, 0, 0.04) 56%, rgba(101, 63, 255, 0.08));
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  z-index: -1;
}

.page-hero::after {
  content: "";
  position: absolute;
  top: 16%;
  right: 5%;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  border: 64px solid rgba(101, 63, 255, 0.08);
  z-index: -1;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(16px, 4vw, 32px);
}

.page-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--deep-purple);
}

.page-hero__kicker::before {
  content: "";
  width: 30px;
  height: 4px;
  border-radius: 99px;
  background: var(--volt-yellow);
  transform: skew(-18deg);
}

.page-hero__title {
  max-width: 14ch;
  margin-top: 16px;
}

.page-hero__lede {
  max-width: 64ch;
  margin-top: 22px;
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  line-height: 1.8;
  color: #49586c;
}

.page-hero__index {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.panel-stack {
  display: grid;
  gap: clamp(16px, 3vw, 28px);
}

.section-panel {
  position: relative;
  padding: clamp(26px, 5vw, 56px);
  background: var(--soft-white);
  border: 1px solid var(--line-gray);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-1);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.section-panel--dark {
  background: var(--ink-blue);
  color: var(--cool-gray);
  border-color: var(--ink-blue);
}

.section-panel--green {
  background: var(--kiwi-green);
  color: var(--ink-blue);
  border-color: transparent;
  box-shadow: 0 20px 44px rgba(0, 200, 83, 0.22);
}

.section-panel--slant::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 72%, rgba(255, 234, 0, 0.7) 72%, rgba(255, 234, 0, 0.7) 78%, transparent 78%);
  pointer-events: none;
}

.section-panel__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--deep-purple);
}

.section-panel__eyebrow::before {
  content: "";
  width: 32px;
  height: 4px;
  border-radius: 99px;
  background: var(--volt-yellow);
  transform: skew(-18deg);
}

.section-panel--dark .section-panel__eyebrow {
  color: var(--volt-yellow);
}

.section-panel--green .section-panel__eyebrow {
  color: var(--ink-blue);
}

.section-panel__title {
  margin-top: 14px;
}

.section-panel__body {
  margin-top: 16px;
  max-width: 68ch;
  font-size: 1rem;
  line-height: 1.8;
  color: #5a6a7f;
}

.section-panel--dark .section-panel__body {
  color: rgba(255, 255, 255, 0.66);
}

.section-panel--green .section-panel__body {
  color: rgba(26, 35, 51, 0.76);
}

.section-panel__footer {
  margin-top: 26px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px;
  background: var(--soft-white);
  border: 1px solid var(--line-gray);
  border-radius: 22px;
  box-shadow: var(--shadow-1);
  color: var(--ink-blue);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.card::after {
  content: "";
  position: absolute;
  right: -24px;
  bottom: -24px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  border: 20px solid var(--translucent-green);
  opacity: 0.65;
  transition: opacity 0.3s, transform 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-2);
}

.card:hover::after {
  opacity: 1;
  transform: scale(1.08);
}

.card__meta,
.card__title {
  position: relative;
  z-index: 1;
}

.card__meta {
  font-family: var(--font-num);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--deep-purple);
}

.card__title {
  margin-top: 10px;
  font-size: 1.18rem;
  line-height: 1.4;
}

.card__body {
  margin-top: 8px;
  font-size: 0.94rem;
  line-height: 1.7;
  color: #5a6a7f;
  position: relative;
  z-index: 1;
}

.data-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line-gray);
  border-radius: 18px;
  background: var(--soft-white);
  box-shadow: var(--shadow-1);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.data-table th {
  padding: 12px 16px;
  text-align: left;
  background: var(--cool-gray);
  color: var(--ink-blue);
  font-weight: 800;
  letter-spacing: 0.02em;
  font-size: 0.86rem;
}

.data-table td {
  padding: 14px 16px;
  border-top: 1px solid var(--line-gray);
  color: #344054;
  vertical-align: middle;
}

.data-table tbody tr {
  transition: background 0.2s;
}

.data-table tbody tr:hover {
  background: var(--mint-green);
}

.data-table .num {
  font-family: var(--font-num);
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.index-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--cool-gray);
  border: 1px solid var(--line-gray);
  color: var(--ink-blue);
  font-size: 0.84rem;
  font-weight: 700;
}

.index-tag--green {
  background: var(--mint-green);
  border-color: rgba(0, 200, 83, 0.32);
  color: var(--kiwi-green-dark);
}

.index-tag--yellow {
  background: var(--volt-yellow);
  border-color: rgba(255, 234, 0, 0.5);
  color: var(--ink-blue);
}

.index-tag--purple {
  background: var(--deep-purple);
  border-color: var(--deep-purple);
  color: #fff;
}

.metric {
  font-family: var(--font-num);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
  font-weight: 800;
  color: var(--kiwi-green);
}

.metric--dark {
  color: var(--ink-blue);
}

.metric--yellow {
  color: var(--volt-yellow);
}

.figure-placeholder {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--mint-green), rgba(0, 200, 83, 0.15) 55%, rgba(101, 63, 255, 0.08));
  border: 1px solid rgba(0, 200, 83, 0.22);
  overflow: hidden;
}

.figure-placeholder::before {
  content: "";
  position: absolute;
  inset: 16px;
  border-radius: 50%;
  border: 2px dashed rgba(101, 63, 255, 0.28);
}

.figure-placeholder::after {
  content: "";
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--volt-yellow), var(--kiwi-green));
  box-shadow: 0 0 0 14px rgba(255, 234, 0, 0.14);
  opacity: 0.8;
}

.figure-placeholder--tall {
  aspect-ratio: 4 / 5;
}

.figure-placeholder--wide {
  aspect-ratio: 21 / 9;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  .js [data-reveal] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}
