:root {
  color-scheme: light;
  --hero-progress: 0;
  --ink: #10211e;
  --ink-soft: #253b36;
  --muted: #5f6e68;
  --line: #d8ddd4;
  --paper: #f7f3ea;
  --paper-deep: #ebe1d0;
  --white: #fffdf7;
  --green-950: #081e1b;
  --green-900: #0b2925;
  --green-800: #123a34;
  --green-700: #1b574c;
  --green-100: #e2ece5;
  --sage: #eef4ef;
  --coral: #b45f4d;
  --coral-dark: #964c3d;
  --gold: #b99555;
  --gold-deep: #8f6b34;
  --gold-soft: #eadbb9;
  --blue: #2d6474;
  --shadow-sm: 0 10px 28px rgba(8, 30, 27, 0.07);
  --shadow-md: 0 22px 58px rgba(8, 30, 27, 0.12);
  --shadow-lg: 0 34px 88px rgba(8, 30, 27, 0.22);
  --radius: 8px;
  --section-x: max(24px, calc((100% - 1120px) / 2));
  --ease: cubic-bezier(0.2, 0.8, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(180deg, #f7f3ea 0%, #fbf8f1 44%, #eef4ef 100%);
  font-family: "Microsoft YaHei", "PingFang SC", "Noto Sans SC", Arial, sans-serif;
  line-height: 1.68;
  letter-spacing: 0;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 42px;
  color: var(--white);
  transition:
    top 240ms ease,
    left 240ms ease,
    right 240ms ease,
    padding 240ms ease,
    background 240ms ease,
    color 240ms ease,
    box-shadow 240ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  left: 42px;
  right: 42px;
  padding: 10px 14px 10px 16px;
  border: 1px solid rgba(217, 221, 212, 0.78);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 253, 247, 0.86);
  box-shadow: 0 18px 52px rgba(8, 30, 27, 0.11);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 253, 247, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.94);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-header.is-scrolled .brand-mark {
  border-color: rgba(196, 160, 90, 0.42);
  box-shadow: 0 10px 22px rgba(18, 34, 31, 0.12);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  line-height: 1.2;
}

.brand small {
  margin-top: 1px;
  opacity: 0.72;
  font-size: 0.72rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0;
  border: 0;
  border-radius: var(--radius);
  background: transparent;
  backdrop-filter: none;
  font-size: 0.94rem;
}

.site-header.is-scrolled .site-nav {
  gap: 8px;
  padding: 4px;
  background: rgba(239, 244, 238, 0.52);
}

.site-nav a {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0;
  border-radius: 7px;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1px;
  background: currentColor;
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a.is-active {
  color: #f1dfb8;
  background: transparent;
}

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

.site-header.is-scrolled .site-nav a {
  min-height: 34px;
  padding: 0 12px;
}

.site-header.is-scrolled .site-nav a::after {
  display: none;
}

.site-header.is-scrolled .site-nav a:hover,
.site-header.is-scrolled .site-nav a.is-active {
  color: var(--green-900);
  background: rgba(234, 219, 185, 0.74);
  box-shadow: inset 0 0 0 1px rgba(185, 149, 85, 0.22);
}

.nav-toggle {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 253, 247, 0.62);
  border-radius: var(--radius);
  color: inherit;
  background: rgba(8, 30, 27, 0.32);
  backdrop-filter: blur(12px);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

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

@media (min-width: 981px) {
  .nav-toggle {
    display: none;
  }
}

.hero {
  position: relative;
  display: flex;
  min-height: 100svh;
  height: 100vh;
  flex-direction: column;
  justify-content: center;
  padding: 104px 0 72px;
  color: var(--white);
  overflow: hidden;
  background: var(--green-900);
}

.hero-media,
.hero-media::after,
.hero-shade,
.hero::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: block;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 56% 58%;
  transform: scale(1.045);
  filter: saturate(0.82) contrast(0.94) brightness(0.92);
  animation: heroImage 20s var(--ease) both;
}

.hero-media::after {
  background:
    radial-gradient(circle at 72% 30%, rgba(8, 30, 27, 0.5), transparent 34%),
    linear-gradient(180deg, rgba(8, 30, 27, 0.24), transparent 28%, rgba(8, 30, 27, 0.4));
  content: "";
  pointer-events: none;
}

.hero-shade {
  background:
    radial-gradient(circle at 18% 38%, rgba(10, 41, 37, 0.9), rgba(10, 41, 37, 0.42) 32%, transparent 58%),
    radial-gradient(circle at 72% 24%, rgba(8, 30, 27, 0.68), rgba(8, 30, 27, 0.2) 30%, transparent 52%),
    linear-gradient(90deg, rgba(8, 30, 27, 0.96), rgba(10, 41, 37, 0.78) 38%, rgba(10, 41, 37, 0.46) 68%, rgba(8, 30, 27, 0.64)),
    linear-gradient(0deg, rgba(8, 30, 27, 0.76), rgba(8, 30, 27, 0.08) 58%);
}

.hero::after {
  bottom: -1px;
  top: auto;
  height: 168px;
  background:
    linear-gradient(180deg, rgba(247, 243, 234, 0), rgba(247, 243, 234, 0.78) 72%, var(--paper));
  content: "";
  pointer-events: none;
}

.hero::before {
  position: absolute;
  z-index: 2;
  left: 50%;
  bottom: 22px;
  width: 1px;
  height: 38px;
  background: linear-gradient(180deg, rgba(239, 225, 191, 0), rgba(239, 225, 191, 0.86));
  content: "";
  transform: translateX(-50%);
  animation: scrollCue 1800ms ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1160px, calc(100% - 56px));
  margin: 0 auto;
  padding-top: 0;
  opacity: calc(1 - (var(--hero-progress) * 0.2));
  transform: translateY(calc(var(--hero-progress) * -22px));
  transition:
    opacity 180ms linear,
    transform 180ms linear;
}

.hero-content::before {
  position: absolute;
  top: 5px;
  left: -30px;
  width: 3px;
  height: 182px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(234, 219, 185, 0.95), rgba(185, 149, 85, 0));
  content: "";
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--coral);
  font-weight: 800;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero .eyebrow {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(234, 219, 185, 0.32);
  border-radius: 999px;
  color: #f0ddba;
  background: rgba(255, 253, 247, 0.06);
  backdrop-filter: blur(10px);
}

h1,
h2,
h3,
p {
  margin-top: 0;
  letter-spacing: 0;
}

h1 {
  max-width: 880px;
  margin-bottom: 24px;
  font-size: 3.58rem;
  line-height: 1.1;
  font-weight: 800;
  overflow-wrap: anywhere;
}

h1 span {
  display: inline;
}

h2 {
  margin-bottom: 18px;
  color: var(--ink);
  font-size: 2.36rem;
  line-height: 1.18;
}

h3 {
  margin-bottom: 10px;
  color: var(--ink-soft);
  font-size: 1.2rem;
  line-height: 1.35;
}

.hero h1,
.hero h2,
.community h2,
.community h3,
.contact h2,
.contact h3 {
  color: currentColor;
}

.hero-copy {
  max-width: 710px;
  margin-bottom: 32px;
  color: rgba(255, 253, 247, 0.82);
  font-size: 1.06rem;
  line-height: 1.76;
}

.hero .eyebrow,
.hero h1,
.hero-copy,
.hero-actions {
  opacity: 0;
  transform: translateY(18px);
  animation: fadeRise 760ms var(--ease) forwards;
}

.hero .eyebrow {
  animation-delay: 140ms;
}

.hero h1 {
  animation-delay: 240ms;
}

.hero-copy {
  animation-delay: 360ms;
}

.hero-actions {
  animation-delay: 500ms;
}

.hero-actions,
.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button,
.contact-panel span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: var(--radius);
  font-weight: 800;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

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

.button.primary {
  border: 1px solid rgba(234, 219, 185, 0.4);
  color: var(--green-950);
  background:
    linear-gradient(180deg, #eadbb9, #c6a060),
    var(--gold);
  box-shadow:
    0 18px 38px rgba(8, 30, 27, 0.26),
    inset 0 1px 0 rgba(255, 253, 247, 0.46);
}

.button.primary:hover,
.button.primary:focus-visible {
  background:
    linear-gradient(180deg, #f0dfba, #b99555),
    var(--gold);
  box-shadow:
    0 22px 46px rgba(8, 30, 27, 0.32),
    inset 0 1px 0 rgba(255, 253, 247, 0.5);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 247, 0.46);
  color: rgba(255, 253, 247, 0.9);
  background: rgba(255, 253, 247, 0.06);
  backdrop-filter: blur(10px);
}

.button.secondary:hover,
.button.secondary:focus-visible {
  border-color: rgba(234, 219, 185, 0.76);
  background: rgba(255, 253, 247, 0.12);
}

.hero-metrics {
  position: relative;
  z-index: 1;
  left: auto;
  bottom: auto;
  display: grid;
  width: min(1160px, calc(100% - 56px));
  margin: clamp(32px, 4.8vh, 50px) auto 0;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  transform: none;
  border: 1px solid rgba(234, 219, 185, 0.24);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(10, 41, 37, 0.78), rgba(8, 30, 27, 0.6)),
    rgba(8, 30, 27, 0.64);
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.08);
  backdrop-filter: blur(18px);
  opacity: 0;
  animation: metricsIn 760ms var(--ease) 650ms forwards;
}

.hero-metrics div {
  padding: 20px 26px;
  border-right: 1px solid rgba(234, 219, 185, 0.18);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: #f0dfba;
  font-size: 1.62rem;
  line-height: 1.2;
}

.hero-metrics span {
  color: rgba(255, 253, 247, 0.68);
  font-size: 0.9rem;
}

section {
  scroll-margin-top: 86px;
}

.intro,
.services,
.ecosystem,
.life-scenes,
.partners,
.roadmap {
  padding: 88px var(--section-x);
}

.section-watch:not(.hero) {
  position: relative;
  overflow: hidden;
}

.section-watch:not(.hero)::before {
  position: absolute;
  z-index: 0;
  top: 0;
  left: var(--section-x);
  right: var(--section-x);
  height: 1px;
  background: linear-gradient(90deg, rgba(185, 149, 85, 0), rgba(185, 149, 85, 0.34), rgba(185, 149, 85, 0));
  content: "";
}

.section-watch:not(.hero) > * {
  position: relative;
  z-index: 1;
}

.section-heading {
  position: relative;
  max-width: 780px;
  margin-bottom: 38px;
}

.section-heading::before {
  display: block;
  width: 46px;
  height: 2px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--gold), rgba(185, 149, 85, 0));
  content: "";
}

.section-heading p,
.split-copy p,
.platform-copy p,
.community-copy p,
.contact p,
.statement p,
.mode-card p {
  color: var(--muted);
}

.section-heading.compact {
  max-width: 700px;
}

.intro {
  position: relative;
  background:
    linear-gradient(180deg, var(--paper) 0%, #fbf8f1 58%, #fffdf7 100%);
}

.intro::before {
  display: none;
}

.intro > * {
  position: relative;
}

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

.statement,
.service-grid article,
.gbc article,
.timeline li {
  border: 1px solid rgba(207, 214, 204, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.94), rgba(248, 243, 233, 0.8)),
    rgba(255, 253, 247, 0.9);
  box-shadow: 0 16px 42px rgba(8, 30, 27, 0.06);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.statement:hover,
.service-grid article:hover,
.gbc article:hover,
.timeline li:hover,
.mode-card:hover,
.scene-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(185, 149, 85, 0.48);
  box-shadow: 0 24px 58px rgba(8, 30, 27, 0.1);
}

.statement {
  position: relative;
  min-height: 260px;
  padding: 30px;
  overflow: hidden;
}

.statement::before {
  position: absolute;
  top: 0;
  left: 30px;
  right: 30px;
  height: 3px;
  background: linear-gradient(90deg, rgba(185, 149, 85, 0.9), rgba(185, 149, 85, 0));
  content: "";
}

.statement h3,
.service-grid strong,
.gbc strong,
.timeline h3 {
  position: relative;
}

.statement h3::after {
  display: block;
  width: 26px;
  height: 2px;
  margin-top: 12px;
  border-radius: 999px;
  background: var(--gold);
  content: "";
}

.statement.accent {
  border-color: rgba(185, 149, 85, 0.32);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.96), rgba(239, 226, 194, 0.42)),
    #fffaf0;
}

.statement.dark {
  border-color: rgba(18, 59, 53, 0.9);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(196, 160, 90, 0.2), transparent 44%),
    var(--green-800);
}

.statement.dark h3,
.statement.dark p {
  color: rgba(255, 253, 247, 0.86);
}

.split-section,
.platform,
.community,
.contact {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 52px;
  padding: 88px var(--section-x);
  background:
    linear-gradient(180deg, #fffdf7 0%, #f9f5ed 100%);
}

.split-media,
.platform-media,
.community-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(217, 221, 212, 0.72);
  box-shadow: 0 28px 70px rgba(8, 30, 27, 0.16);
}

.split-media::after,
.platform-media::after,
.community-media::after,
.mode-card::after,
.scene-grid article::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.split-media img,
.platform-media img,
.community-media img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: transform 620ms var(--ease);
}

.split-media:hover img,
.platform-media:hover img,
.community-media:hover img,
.mode-card:hover img,
.scene-grid article:hover img {
  transform: scale(1.035);
}

.value-list {
  display: grid;
  gap: 18px;
  margin: 30px 0 0;
}

.value-list div {
  position: relative;
  padding: 18px 18px 18px 24px;
  border: 1px solid rgba(207, 214, 204, 0.86);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background:
    linear-gradient(90deg, rgba(234, 219, 185, 0.28), rgba(255, 253, 247, 0.72) 36%),
    rgba(255, 253, 247, 0.72);
}

.value-list dt {
  font-weight: 800;
}

.value-list dd {
  margin: 4px 0 0;
  color: var(--muted);
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.mode-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 214, 204, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(247, 243, 234, 0.86)),
    var(--white);
  box-shadow: 0 22px 58px rgba(8, 30, 27, 0.09);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.mode-card::before {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  right: 10px;
  height: 290px;
  border-radius: 6px 6px 0 0;
  background:
    linear-gradient(180deg, rgba(239, 225, 191, 0.24), rgba(13, 44, 40, 0.12)),
    radial-gradient(circle at 18% 12%, rgba(255, 253, 247, 0.34), transparent 42%);
  content: "";
  mix-blend-mode: soft-light;
  pointer-events: none;
}

.mode-card img {
  width: 100%;
  height: 300px;
  border: 10px solid rgba(255, 253, 247, 0.82);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
  background: #f8f1e3;
  filter: saturate(0.78) contrast(0.96) sepia(0.12) brightness(1.02);
  object-fit: cover;
  transition: transform 620ms var(--ease);
}

.mode-card > div {
  position: relative;
  z-index: 2;
  padding: 28px 30px 30px;
}

.mode-kicker {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 12px;
  padding: 0 11px;
  border: 1px solid rgba(45, 100, 116, 0.12);
  border-radius: 7px;
  color: var(--blue);
  background: rgba(226, 236, 229, 0.76);
  font-weight: 800;
}

.mode-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 20px;
  color: var(--muted);
}

.mode-card li::marker {
  color: var(--gold);
}

.ecosystem {
  background:
    linear-gradient(180deg, #f9f5ed 0%, var(--sage) 42%, #f8f3e9 100%);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  counter-reset: service;
}

.service-grid article {
  position: relative;
  counter-increment: service;
  min-height: 178px;
  padding: 30px 26px 30px;
  overflow: hidden;
}

.timeline li:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: none;
}

.service-grid article::before {
  display: inline-flex;
  min-width: 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  border: 1px solid rgba(185, 149, 85, 0.34);
  border-radius: 50%;
  color: rgba(18, 58, 52, 0.66);
  content: "0" counter(service);
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
}

.service-grid article::after {
  position: absolute;
  left: 0;
  right: auto;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, rgba(185, 149, 85, 0.86), rgba(185, 149, 85, 0));
  content: "";
}

.service-grid strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-800);
  font-size: 1.08rem;
}

.service-grid p,
.gbc p,
.timeline p {
  margin-bottom: 0;
  color: var(--muted);
}

.platform {
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.98), rgba(226, 236, 229, 0.72)),
    var(--white);
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.platform-tags span,
.five-good span,
.partner-strip span {
  border-radius: var(--radius);
  font-weight: 800;
}

.platform-tags span {
  padding: 9px 13px;
  border: 1px solid rgba(207, 214, 204, 0.84);
  color: var(--green-800);
  background: rgba(255, 253, 247, 0.64);
}

.community {
  position: relative;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185, 149, 85, 0.18), transparent 38%),
    linear-gradient(180deg, var(--green-800), var(--green-950));
  overflow: hidden;
}

.community-copy p {
  color: rgba(255, 253, 247, 0.76);
}

.five-good {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.five-good span {
  padding: 9px 13px;
  border: 1px solid rgba(234, 219, 185, 0.34);
  color: #f0dfba;
  background: rgba(255, 253, 247, 0.08);
}

.life-scenes {
  background:
    linear-gradient(180deg, #f3ead9 0%, var(--paper) 42%, #fffdf7 100%);
}

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

.scene-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(207, 214, 204, 0.88);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgba(255, 253, 247, 0.98), rgba(248, 243, 233, 0.78)),
    var(--white);
  box-shadow: 0 18px 46px rgba(8, 30, 27, 0.07);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.scene-grid img {
  width: 100%;
  height: 230px;
  filter: saturate(0.88) contrast(0.97) brightness(0.98);
  object-fit: cover;
  transition: transform 620ms var(--ease);
}

.scene-grid h3,
.scene-grid p {
  padding: 0 22px;
}

.scene-grid h3 {
  margin-top: 22px;
  color: var(--green-800);
}

.scene-grid p {
  margin-bottom: 24px;
  color: var(--muted);
}

.partners {
  background:
    linear-gradient(180deg, #fffdf7 0%, #f3f7f3 100%);
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-bottom: 34px;
  overflow: hidden;
  border: 1px solid rgba(207, 214, 204, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 253, 247, 0.72);
  box-shadow: 0 20px 52px rgba(8, 30, 27, 0.07);
  counter-reset: partner;
}

.partner-strip span {
  position: relative;
  display: grid;
  counter-increment: partner;
  min-height: 112px;
  align-content: center;
  gap: 8px;
  padding: 24px 20px 20px;
  border: 0;
  border-right: 1px solid rgba(207, 214, 204, 0.78);
  border-bottom: 1px solid rgba(207, 214, 204, 0.78);
  border-radius: 0;
  color: var(--green-800);
  background:
    linear-gradient(135deg, rgba(226, 236, 229, 0.36), rgba(255, 253, 247, 0.92)),
    rgba(255, 253, 247, 0.82);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.partner-strip span:nth-child(4n) {
  border-right: 0;
}

.partner-strip span:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.partner-strip span::after {
  position: absolute;
  top: 18px;
  right: 18px;
  color: rgba(18, 58, 52, 0.18);
  content: "0" counter(partner);
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
}

.partner-strip small {
  display: block;
  color: var(--gold-deep);
  font-size: 0.76rem;
  font-weight: 800;
}

.partner-strip span:hover {
  transform: translateY(-2px);
  color: var(--green-950);
  background:
    linear-gradient(135deg, rgba(234, 219, 185, 0.38), rgba(255, 253, 247, 0.96)),
    #fffaf0;
}

.gbc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.gbc article {
  position: relative;
  padding: 28px 26px;
  overflow: hidden;
}

.gbc article::before {
  position: absolute;
  top: 0;
  left: 26px;
  right: 26px;
  height: 2px;
  background: linear-gradient(90deg, rgba(185, 149, 85, 0.9), rgba(185, 149, 85, 0));
  content: "";
}

.gbc strong {
  display: block;
  margin-bottom: 10px;
  color: var(--green-800);
}

.roadmap {
  background:
    linear-gradient(180deg, #f3f7f3 0%, #f4eedf 42%, var(--paper-deep) 100%);
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 34px;
  margin: 0;
  padding: 66px 0 0;
  list-style: none;
}

.timeline::before {
  position: absolute;
  top: 29px;
  left: 8px;
  right: 8px;
  height: 2px;
  background:
    linear-gradient(90deg, rgba(196, 160, 90, 0), rgba(196, 160, 90, 0.92) 12%, rgba(196, 160, 90, 0.92) 88%, rgba(196, 160, 90, 0));
  content: "";
}

.timeline li {
  position: relative;
  min-height: 0;
  padding: 0 8px 0 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.timeline li::before {
  position: absolute;
  top: -46px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 4px solid var(--paper-deep);
  border-radius: 50%;
  background: var(--gold);
  box-shadow:
    0 0 0 6px rgba(196, 160, 90, 0.12),
    0 12px 26px rgba(18, 34, 31, 0.14);
  content: "";
}

.timeline li::after {
  position: absolute;
  top: -24px;
  left: 9px;
  width: 1px;
  height: 34px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(196, 160, 90, 0.95), rgba(196, 160, 90, 0));
  content: "";
}

.timeline span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 16px;
  padding: 0 12px;
  border: 1px solid rgba(196, 160, 90, 0.34);
  border-radius: 999px;
  color: var(--gold-deep);
  background: rgba(255, 253, 247, 0.58);
  font-weight: 800;
}

.contact {
  grid-template-columns: minmax(0, 1fr) auto;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(185, 149, 85, 0.14), transparent 42%),
    linear-gradient(180deg, var(--green-900), #081e1b);
}

.contact p {
  max-width: 720px;
  color: rgba(255, 253, 247, 0.76);
}

.contact-panel {
  max-width: 420px;
  justify-content: flex-end;
}

.contact-panel span,
.contact-phone {
  min-width: 116px;
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.contact-phone {
  display: grid;
  min-width: 214px;
  gap: 2px;
  padding: 14px 18px;
  border-radius: var(--radius);
  color: var(--green-950);
  background: linear-gradient(180deg, #eadbb9, #c6a060);
}

.contact-phone small {
  color: rgba(8, 30, 27, 0.68);
  font-size: 0.76rem;
  font-weight: 800;
}

.contact-phone strong {
  color: var(--green-950);
  font-size: 1.12rem;
  line-height: 1.2;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 42px;
  color: rgba(255, 253, 247, 0.72);
  background: #091f1c;
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span + span,
.site-footer .icp-link {
  margin-top: 4px;
}

.site-footer strong {
  color: var(--white);
}

.site-footer a {
  color: var(--white);
}

.site-footer .icp-link {
  display: inline-block;
  color: rgba(255, 253, 247, 0.72);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold-soft);
}

.reveal-ready .section-watch:not(.hero) :is(
  .section-heading,
  .intro-grid > *,
  .split-copy,
  .split-media,
  .value-list > *,
  .mode-card,
  .service-grid > *,
  .platform-copy,
  .platform-media,
  .platform-tags span,
  .community-media,
  .community-copy,
  .five-good span,
  .scene-grid > *,
  .partner-strip > *,
  .gbc > *,
  .timeline > *,
  .contact > *,
  .contact-panel span
) {
  opacity: 0;
  filter: blur(10px);
  transform: translate3d(0, 44px, 0) scale(0.975);
  transition:
    opacity 860ms var(--ease),
    filter 860ms var(--ease),
    transform 860ms var(--ease);
  transition-delay: calc(var(--reveal-index, 0) * 54ms);
  will-change: opacity, filter, transform;
}

.reveal-ready .section-watch.is-visible:not(.hero) :is(
  .section-heading,
  .intro-grid > *,
  .split-copy,
  .split-media,
  .value-list > *,
  .mode-card,
  .service-grid > *,
  .platform-copy,
  .platform-media,
  .platform-tags span,
  .community-media,
  .community-copy,
  .five-good span,
  .scene-grid > *,
  .partner-strip > *,
  .gbc > *,
  .timeline > *,
  .contact > *,
  .contact-panel span
) {
  opacity: 1;
  filter: blur(0);
  transform: translate3d(0, 0, 0) scale(1);
}

.reveal-ready .timeline::before {
  opacity: 0;
  transform: scaleX(0.08);
  transform-origin: left center;
  transition:
    opacity 800ms var(--ease),
    transform 900ms var(--ease);
}

.reveal-ready .section-watch.is-visible .timeline::before {
  opacity: 1;
  transform: scaleX(1);
  transition-delay: 180ms;
}

.reveal-ready .timeline li::before,
.reveal-ready .timeline li::after {
  opacity: 0;
  transition:
    opacity 720ms var(--ease),
    transform 720ms var(--ease);
  transition-delay: calc(180ms + (var(--reveal-index, 0) * 90ms));
}

.reveal-ready .timeline li::before {
  transform: scale(0.62);
}

.reveal-ready .timeline li::after {
  transform: scaleY(0);
  transform-origin: top center;
}

.reveal-ready .section-watch.is-visible .timeline li::before,
.reveal-ready .section-watch.is-visible .timeline li::after {
  opacity: 1;
}

.reveal-ready .section-watch.is-visible .timeline li::before {
  transform: scale(1);
}

.reveal-ready .section-watch.is-visible .timeline li::after {
  transform: scaleY(1);
}

@keyframes fadeRise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes metricsIn {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroImage {
  from {
    transform: scale(1.08);
  }

  to {
    transform: scale(1.02);
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.28;
    transform: translate(-50%, -4px);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, 8px);
  }
}

@media (max-width: 980px) {
  .site-header {
    padding: 14px 22px;
  }

  .site-header.is-scrolled {
    top: 10px;
    left: 18px;
    right: 18px;
    padding: 10px 12px;
  }

  .nav-toggle {
    display: grid;
    flex: 0 0 auto;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 18px;
    right: 18px;
    display: none;
    padding: 12px;
    border: 1px solid rgba(217, 221, 212, 0.9);
    color: var(--ink);
    background: rgba(255, 253, 247, 0.96);
    box-shadow: var(--shadow-md);
  }

  .site-nav.is-open {
    display: grid;
    gap: 6px;
  }

  .site-nav a {
    justify-content: flex-start;
    padding: 0 12px;
  }

  .site-nav a:hover,
  .site-nav a.is-active {
    color: var(--green-900);
    background: rgba(234, 219, 185, 0.78);
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: 100svh;
    height: auto;
    padding-top: 110px;
    padding-bottom: 56px;
    justify-content: flex-start;
  }

  .hero-media img {
    object-position: 58% 52%;
  }

  .hero-content {
    width: min(100% - 36px, 720px);
    padding-top: 0;
    padding-bottom: 32px;
  }

  h1 {
    font-size: 2.46rem;
  }

  h2 {
    font-size: 1.9rem;
  }

  .hero-metrics,
  .intro-grid,
  .mode-grid,
  .service-grid,
  .scene-grid,
  .gbc,
  .timeline {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    width: calc(100% - 36px);
    margin: 0 auto;
    animation-name: fadeRise;
  }

  .hero-metrics div {
    padding: 14px 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 253, 247, 0.18);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .split-section,
  .platform,
  .community,
  .contact {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .community-media {
    order: 2;
  }

  .contact-panel {
    max-width: none;
    justify-content: flex-start;
  }

  .timeline {
    gap: 28px;
    padding: 6px 0 0 32px;
  }

  .timeline::before {
    display: block;
    top: 0;
    bottom: 0;
    left: 8px;
    right: auto;
    width: 2px;
    height: auto;
    background: linear-gradient(180deg, rgba(196, 160, 90, 0), rgba(196, 160, 90, 0.92) 10%, rgba(196, 160, 90, 0.92) 86%, rgba(196, 160, 90, 0));
  }

  .timeline li {
    padding: 0 0 26px 22px;
  }

  .timeline li::before {
    top: 4px;
    left: -32px;
    width: 16px;
    height: 16px;
    border-width: 4px;
  }

  .timeline li::after {
    top: 14px;
    left: -11px;
    width: 24px;
    height: 1px;
    background: rgba(196, 160, 90, 0.92);
  }

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

  .partner-strip span {
    border-right: 1px solid rgba(207, 214, 204, 0.78);
    border-bottom: 1px solid rgba(207, 214, 204, 0.78);
  }

  .partner-strip span:nth-child(4n) {
    border-right: 1px solid rgba(207, 214, 204, 0.78);
  }

  .partner-strip span:nth-child(2n) {
    border-right: 0;
  }

  .partner-strip span:nth-last-child(-n + 4) {
    border-bottom: 1px solid rgba(207, 214, 204, 0.78);
  }

  .partner-strip span:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}

@media (max-width: 640px) {
  .site-header {
    padding: 12px 16px;
  }

  .site-header.is-scrolled {
    left: 12px;
    right: 12px;
  }

  .brand small {
    display: none;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .brand strong {
    font-size: 0.96rem;
  }

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

  h1 {
    font-size: 1.66rem;
    line-height: 1.14;
  }

  h1 span {
    display: block;
  }

  h2 {
    font-size: 1.52rem;
  }

  .hero .eyebrow {
    min-height: 26px;
    margin-bottom: 12px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .hero-copy {
    max-width: 320px;
    margin-bottom: 15px;
    font-size: 0.84rem;
    line-height: 1.48;
  }

  .hero-actions {
    display: flex;
    gap: 0;
  }

  .button {
    width: auto;
    min-height: 40px;
    font-size: 0.92rem;
  }

  .hero-actions .button.secondary {
    display: none;
  }

  .hero-actions .button.primary {
    min-width: 148px;
    padding: 0 16px;
  }

  .hero {
    min-height: 100svh;
    padding-top: 84px;
    padding-bottom: 30px;
  }

  .hero-media img {
    object-position: 64% 52%;
  }

  .hero-content {
    padding-bottom: 10px;
  }

  .hero-content::before {
    left: 0;
    top: -18px;
    width: 44px;
    height: 2px;
  }

  .hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: calc(100% - 32px);
    margin-top: 8px;
    padding: 6px 8px;
    border-color: rgba(255, 253, 247, 0.16);
    border-radius: 999px;
    background:
      linear-gradient(90deg, rgba(10, 41, 37, 0.68), rgba(8, 30, 27, 0.44)),
      rgba(10, 31, 28, 0.42);
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
  }

  .hero-metrics div {
    display: grid;
    min-width: 0;
    align-content: center;
    gap: 1px;
    padding: 0 7px;
    border-right: 1px solid rgba(255, 253, 247, 0.16);
    border-bottom: 0;
  }

  .hero-metrics strong {
    font-size: 0.84rem;
    line-height: 1.2;
  }

  .hero-metrics span {
    overflow: hidden;
    font-size: 0.56rem;
    line-height: 1.25;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

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

  .partner-strip span {
    min-height: 84px;
    padding: 18px 20px 16px;
    border-right: 0;
    border-bottom: 1px solid rgba(207, 214, 204, 0.78);
  }

  .partner-strip span:nth-child(2n),
  .partner-strip span:nth-child(4n) {
    border-right: 0;
  }

  .partner-strip span:nth-last-child(-n + 2) {
    border-bottom: 1px solid rgba(207, 214, 204, 0.78);
  }

  .partner-strip span:last-child {
    border-bottom: 0;
  }

  .intro,
  .services,
  .ecosystem,
  .life-scenes,
  .partners,
  .roadmap,
  .split-section,
  .platform,
  .community,
  .contact {
    padding-top: 54px;
    padding-bottom: 54px;
  }

  .statement,
  .mode-card > div,
  .service-grid article,
  .gbc article {
    padding: 18px;
  }

  .timeline li {
    padding: 0 0 24px 20px;
  }

  .mode-card::before {
    height: 220px;
  }

  .split-media img,
  .platform-media img,
  .community-media img {
    height: 260px;
  }

  .mode-card img,
  .scene-grid img {
    height: 200px;
  }

  .mode-card::before {
    height: 190px;
  }

  .reveal-ready .section-watch:not(.hero) :is(
    .section-heading,
    .intro-grid > *,
    .split-copy,
    .split-media,
    .value-list > *,
    .mode-card,
    .service-grid > *,
    .platform-copy,
    .platform-media,
    .platform-tags span,
    .community-media,
    .community-copy,
    .five-good span,
    .scene-grid > *,
    .partner-strip > *,
    .gbc > *,
    .timeline > *,
    .contact > *,
    .contact-panel span
  ) {
    filter: none;
    transform: translate3d(0, 22px, 0);
    transition-duration: 620ms;
    transition-delay: calc(var(--reveal-index, 0) * 36ms);
  }

  .site-footer {
    display: grid;
    padding: 24px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .reveal-ready .section-watch :is(*) {
    opacity: 1 !important;
    transform: none !important;
  }
}
