:root {
  --paper: #f4f1ea;
  --paper-deep: #ece6dc;
  --ink: #1d2724;
  --ink-soft: #53605b;
  --line: #d6cec1;
  --green: #204f43;
  --green-light: #dce6dd;
  --clay: #a05a42;
  --white: #fcfaf6;
  --shadow: 0 18px 55px rgba(28, 37, 34, 0.08);
  --radius: 1.35rem;
  --container: min(1180px, calc(100vw - 3rem));
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

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

p,
h1,
h2,
h3 {
  margin: 0;
}

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

.page-noise {
  position: fixed;
  z-index: -1;
  inset: 0;
  pointer-events: none;
  opacity: 0.3;
  background-image:
    radial-gradient(circle at 18% 5%, rgba(160, 90, 66, 0.11), transparent 27rem),
    radial-gradient(circle at 88% 24%, rgba(32, 79, 67, 0.11), transparent 29rem),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent calc(25% - 1px),
      rgba(29, 39, 36, 0.025) calc(25% - 1px),
      rgba(29, 39, 36, 0.025) 25%
    );
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(214, 206, 193, 0.65);
  background: rgba(244, 241, 234, 0.84);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 4.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  font-size: 0.98rem;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.brand small {
  color: var(--ink-soft);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.17em;
}

.brand-mark {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 50%;
  background: var(--clay);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.7vw, 2rem);
  color: var(--ink-soft);
  font-size: clamp(0.82rem, 0.9vw, 0.94rem);
}

.nav-links a {
  position: relative;
  padding: 0.35rem 0;
}

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

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

.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  width: 2.7rem;
  height: 2.7rem;
  padding: 0.55rem;
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 0.39rem 0;
  background: var(--ink);
  transition: transform 200ms ease, opacity 200ms ease;
}

.hero {
  min-height: calc(100vh - 4.75rem);
  padding: clamp(4rem, 9vw, 7.3rem) 0 clamp(4rem, 9vw, 6.5rem);
  display: flex;
  align-items: center;
}

.eyebrow {
  margin-bottom: 1.3rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.23em;
}

.hero h1 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(3rem, 5.75vw, 5.2rem);
  font-weight: 500;
  line-height: 1.14;
  letter-spacing: -0.045em;
}

.hero h1 span {
  color: var(--green);
}

.hero-lede {
  max-width: 37rem;
  margin-top: 2.1rem;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.5vw, 1.24rem);
  line-height: 1.85;
}

.hero-support {
  max-width: 38rem;
  margin-top: 1.25rem;
  color: var(--ink-soft);
}

.hero-paths {
  max-width: 45rem;
  margin-top: 1.55rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-paths article {
  padding: 1rem 1.1rem 1.08rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(252, 250, 246, 0.5);
}

.hero-paths span {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--clay);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.hero-paths p {
  color: var(--ink-soft);
  font-size: 0.88rem;
  line-height: 1.72;
}

.hero-actions {
  margin-top: 2.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.button {
  min-height: 3.05rem;
  padding: 0.7rem 1.42rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 550;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button.primary {
  color: var(--white);
  background: var(--green);
}

.button.secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: rgba(252, 250, 246, 0.45);
}

.button.text-link {
  min-height: auto;
  padding: 0.7rem 0.45rem;
  border-radius: 0;
  color: var(--green);
  background: transparent;
}

.button.text-link::after {
  width: 1.15em;
  height: 1.15em;
  margin-left: 0.42rem;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "↗";
  font-size: 0.72em;
  line-height: 1;
  opacity: 0.88;
  transform: translateY(-0.08em);
}

.button.text-link:hover {
  transform: translateX(2px);
}

.section {
  padding: clamp(4.7rem, 9vw, 7.4rem) 0;
}

.agi-gateway {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 230, 220, 0.38);
}

.agi-gateway-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.agi-gateway-copy p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.starlets-overview .identity-card {
  min-height: 0;
}

.starlets-overview .identity-card.strong > p:last-child {
  max-width: 46rem;
}

.overview-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.78rem;
  max-width: 46rem;
  margin: 0 0 2rem;
}

.overview-metrics div {
  padding: 1rem 1.05rem;
  border: 1px solid rgba(252, 250, 246, 0.24);
  border-radius: 1.15rem;
  background: rgba(252, 250, 246, 0.08);
}

.overview-metrics strong {
  display: block;
  color: var(--white);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.55rem, 3vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;
}

.overview-metrics span {
  display: block;
  margin-top: 0.48rem;
  color: rgba(252, 250, 246, 0.72);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
}

.agi-positioning {
  margin-top: clamp(1.4rem, 4vw, 3rem);
}

.agi-positioning .identity-card {
  min-height: 0;
  background: rgba(252, 250, 246, 0.34);
}

.gateway-links {
  margin-top: 1.45rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.72rem;
}

.gateway-links a {
  min-height: 8.2rem;
  padding: 1.05rem;
  display: grid;
  align-content: end;
  gap: 0.55rem;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 1rem;
  color: var(--green);
  background: rgba(252, 250, 246, 0.62);
  line-height: 1.45;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.gateway-links a::after {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 1.35em;
  height: 1.35em;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "↗";
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.78;
}

.gateway-links strong {
  display: block;
  padding-right: 1.6rem;
  font-size: 1.02rem;
  font-weight: 700;
}

.gateway-links span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.82rem;
  line-height: 1.65;
}

.gateway-links a:hover,
.gateway-links a:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(32, 79, 67, 0.5);
  background: var(--white);
}

.agi-hero {
  padding: clamp(4.6rem, 10vw, 8.2rem) 0 clamp(4.6rem, 8vw, 7rem);
}

.agi-hero h1 {
  max-width: 62rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.75rem, 6vw, 5.35rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.agi-hero h1 span {
  color: var(--green);
}

.news-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(236, 230, 220, 0.35), rgba(252, 250, 246, 0.58)),
    rgba(252, 250, 246, 0.36);
}

.news-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.05fr;
  gap: clamp(2.3rem, 7vw, 5.7rem);
  align-items: start;
}

.news-heading {
  position: sticky;
  top: 6.5rem;
}

.news-heading > p:not(.eyebrow) {
  max-width: 31rem;
  margin-top: 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.news-article {
  padding: clamp(1.65rem, 4vw, 2.65rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 18px 52px rgba(31, 44, 39, 0.07);
}

.news-article > p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.9;
}

.news-article > p + p {
  margin-top: 1.05rem;
}

.news-article blockquote {
  margin: 1.45rem 0;
  padding: 1.05rem 1.25rem;
  border-left: 3px solid var(--clay);
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.55;
  background: rgba(177, 89, 59, 0.07);
}

.news-columns {
  margin: 1.35rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.news-columns > div {
  padding: 1.05rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(244, 241, 234, 0.64);
}

.news-columns h3 {
  margin-bottom: 0.65rem;
  color: var(--green);
  font-size: 1.02rem;
}

.news-columns li {
  padding: 0.32rem 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.news-columns p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.news-footer-note {
  margin-top: 1.45rem;
  padding-top: 1.15rem;
  border-top: 1px solid var(--line);
}

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

.news-footer-note strong {
  color: var(--clay);
  font-size: 0.78rem;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.news-footer-note span {
  margin-top: 0.45rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.news-index-section {
  padding: clamp(2rem, 5vw, 3.5rem) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 230, 220, 0.3);
}

.news-index-card {
  padding: clamp(1.25rem, 3vw, 1.85rem);
  display: grid;
  grid-template-columns: 0.42fr 1fr auto;
  gap: 1rem;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 1.35rem;
  color: var(--ink);
  background: rgba(252, 250, 246, 0.75);
  box-shadow: 0 16px 42px rgba(31, 44, 39, 0.06);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.news-index-card:hover,
.news-index-card:focus-visible {
  transform: translateY(-3px);
  border-color: rgba(32, 79, 67, 0.38);
  background: var(--white);
}

.news-index-card .eyebrow {
  margin: 0;
}

.news-index-card strong {
  display: block;
  color: var(--green);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.3rem, 2.6vw, 1.75rem);
  font-weight: 600;
  line-height: 1.32;
}

.news-index-card p {
  margin-top: 0.42rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.news-index-card em {
  justify-self: end;
  color: var(--green);
  font-style: normal;
  font-weight: 750;
  white-space: nowrap;
}

.news-index-card em::after {
  content: " ↗";
}

.news-page-hero {
  padding: clamp(4.6rem, 10vw, 7.4rem) 0 clamp(2.7rem, 6vw, 4.6rem);
}

.news-page-hero h1 {
  max-width: 62rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.6rem, 5.8vw, 5rem);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: -0.04em;
}

.news-page-hero .detail-lede {
  max-width: 42rem;
}

.news-page-section {
  padding-top: 0;
}

.news-longform {
  max-width: 860px;
  padding: clamp(1.55rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.78);
  box-shadow: 0 18px 52px rgba(31, 44, 39, 0.07);
}

.news-longform p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.95;
}

.news-longform p + p {
  margin-top: 1rem;
}

.news-longform h2 {
  margin: clamp(1.8rem, 4vw, 2.7rem) 0 0.85rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  color: var(--ink);
  font-size: clamp(1.55rem, 3vw, 2rem);
  font-weight: 550;
  line-height: 1.36;
}

.news-longform blockquote {
  margin: 1.6rem 0;
  padding: 1.1rem 1.25rem;
  border-left: 3px solid var(--clay);
  color: var(--ink);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  line-height: 1.6;
  background: rgba(177, 89, 59, 0.07);
}

.news-longform ul {
  margin: 0.8rem 0 1.25rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.55rem;
}

.news-longform li {
  padding: 0.72rem 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  color: var(--ink-soft);
  background: rgba(244, 241, 234, 0.62);
}

.news-page-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.persona-section {
  color: var(--white);
  background: #162e29;
  overflow: hidden;
}

.persona-heading {
  max-width: 44rem;
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.persona-heading .eyebrow {
  color: #d1ad92;
}

.persona-heading h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(3rem, 6vw, 5.1rem);
  font-weight: 500;
  line-height: 1.1;
}

.persona-heading p {
  max-width: 38rem;
  margin-top: 1.2rem;
  color: rgba(252, 250, 246, 0.68);
}

.persona-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.persona-card {
  position: relative;
  min-height: 13.5rem;
  padding: 1.35rem;
  display: block;
  border: 1px solid rgba(252, 250, 246, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(252, 250, 246, 0.1), rgba(252, 250, 246, 0.035)),
    rgba(252, 250, 246, 0.04);
  opacity: 0;
  transform: translateY(22px) scale(0.98);
  animation: personaIn 680ms ease forwards;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.persona-card:nth-child(2) {
  animation-delay: 80ms;
}

.persona-card:nth-child(3) {
  animation-delay: 160ms;
}

.persona-card:nth-child(4) {
  animation-delay: 240ms;
}

.persona-card:nth-child(5) {
  animation-delay: 320ms;
}

.persona-card:nth-child(6) {
  animation-delay: 400ms;
}

.persona-card:hover,
.persona-card:focus-visible {
  transform: translateY(-5px);
  border-color: rgba(209, 173, 146, 0.65);
  background-color: rgba(252, 250, 246, 0.08);
}

.persona-card[open] {
  border-color: rgba(209, 173, 146, 0.58);
  background:
    linear-gradient(145deg, rgba(252, 250, 246, 0.14), rgba(252, 250, 246, 0.045)),
    rgba(252, 250, 246, 0.06);
}

.persona-card summary {
  min-height: 7.4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  cursor: pointer;
  list-style: none;
}

.persona-card summary::-webkit-details-marker {
  display: none;
}

.persona-card summary:focus-visible {
  outline: 2px solid rgba(209, 173, 146, 0.72);
  outline-offset: 0.35rem;
  border-radius: 0.55rem;
}

.persona-card span {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  color: #d1ad92;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.persona-card strong {
  display: block;
  margin-bottom: 0.7rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: 1.35rem;
  font-weight: 500;
  line-height: 1.35;
}

.persona-card em {
  color: rgba(252, 250, 246, 0.66);
  font-size: 0.88rem;
  font-style: normal;
  line-height: 1.55;
}

.persona-card p {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(252, 250, 246, 0.14);
  color: rgba(252, 250, 246, 0.7);
  font-size: 0.88rem;
}

.persona-more {
  margin-top: 0.8rem;
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
  color: #d1ad92;
  font-size: 0.82rem;
  font-weight: 650;
}

.persona-more::after {
  width: 1.18em;
  height: 1.18em;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "↗";
  font-size: 0.76em;
  line-height: 1;
  opacity: 0.9;
  transform: translateY(-0.06em);
}

.persona-card-muted {
  background: rgba(160, 90, 66, 0.22);
}

@keyframes personaIn {
  to {
    opacity: 1;
    transform: none;
  }
}

.founder-intro {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2.5rem, 8vw, 6.5rem);
}

.founder-copy {
  max-width: 47rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.founder-copy > p + p {
  margin-top: 1.35rem;
}

.founder-copy .highlight {
  padding-left: 1.2rem;
  border-left: 2px solid var(--clay);
  color: var(--ink);
  font-size: 1.08rem;
}

.identity-cloud {
  margin: 1.65rem 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.identity-cloud span {
  padding: 0.42rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--green);
  background: rgba(252, 250, 246, 0.58);
  font-size: 0.82rem;
}

.story-section {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 230, 220, 0.38);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2.5rem, 8vw, 6.8rem);
}

.story-copy {
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.story-copy > p + p {
  margin-top: 1.35rem;
}

.infrastructure-list {
  margin-top: 1.65rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.infrastructure-list span {
  padding: 0.46rem 0.82rem;
  border-radius: 999px;
  color: var(--green);
  background: var(--green-light);
  font-size: 0.84rem;
  font-weight: 600;
}

.bridge-card {
  padding: clamp(2rem, 5vw, 3.4rem);
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
  box-shadow: var(--shadow);
}

.bridge-card .eyebrow {
  color: #d1ad92;
}

.bridge-card h2 {
  max-width: 48rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 500;
  line-height: 1.32;
}

.bridge-card p {
  max-width: 46rem;
  margin: 1.35rem 0 1.8rem;
  color: rgba(252, 250, 246, 0.76);
}

.bridge-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.bridge-card .button.primary,
.big-table-card .button.primary {
  color: var(--green);
  background: var(--white);
}

.button.secondary.light {
  border-color: rgba(252, 250, 246, 0.22);
  color: var(--white);
  background: rgba(252, 250, 246, 0.08);
}

.rena-hero {
  padding: clamp(4.8rem, 10vw, 8rem) 0 clamp(3.4rem, 7vw, 5.4rem);
}

.rena-hero h1 {
  max-width: 54rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.8rem, 6.5vw, 5.6rem);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.rena-lede {
  max-width: 36rem;
  margin-top: 1.8rem;
  color: var(--green);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}

.rena-longform {
  max-width: min(980px, calc(100vw - 3rem));
  padding-bottom: clamp(5rem, 10vw, 8rem);
}

.rena-chapter {
  padding: clamp(2.2rem, 5vw, 3.6rem) 0;
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(1.8rem, 6vw, 4.6rem);
  border-top: 1px solid var(--line);
}

.rena-section-head h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.7rem, 3vw, 2.35rem);
  font-weight: 500;
  line-height: 1.35;
}

.rena-chapter p {
  color: var(--ink);
  font-size: clamp(0.98rem, 1.45vw, 1.08rem);
  line-height: 1.85;
}

.rena-chapter > p,
.rena-chapter > .rena-profile-grid,
.rena-chapter > .rena-list,
.rena-chapter > .infrastructure-list {
  grid-column: 2;
}

.rena-chapter p + p {
  margin-top: 0.78rem;
}

.rena-profile-grid {
  margin: 1.2rem 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.rena-profile-grid span {
  padding: 0.7rem 0.82rem;
  border: 1px solid var(--line);
  border-radius: 0.78rem;
  color: var(--ink-soft);
  background: rgba(252, 250, 246, 0.58);
  font-size: 0.86rem;
}

.rena-list {
  margin: 1.2rem 0 0;
  display: grid;
  gap: 0.65rem;
}

.rena-list li {
  padding-left: 1rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--clay);
  font-size: 0.94rem;
}

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

.rena-callout {
  margin-top: 2rem;
  padding: 1.1rem 1.25rem;
  border-left: 2px solid var(--clay);
  color: var(--green) !important;
  background: rgba(252, 250, 246, 0.55);
  grid-column: 2;
}

.rena-ending {
  margin-top: 2.4rem !important;
  color: var(--green) !important;
  font-size: clamp(1.45rem, 3vw, 2.1rem) !important;
  line-height: 1.45 !important;
}


.audience-section {
  padding-top: 0;
}

.audience-stack {
  display: grid;
  gap: 0.85rem;
}

.audience-card {
  padding: clamp(1.6rem, 4vw, 2.4rem);
  display: grid;
  grid-template-columns: 0.38fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.62);
}

.audience-card .eyebrow {
  grid-row: 1 / span 3;
}

.audience-card h3 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.45rem, 2.7vw, 2rem);
  font-weight: 500;
  line-height: 1.4;
}

.audience-card p:not(.eyebrow) {
  color: var(--ink-soft);
}

.audience-card p + p {
  margin-top: -0.25rem;
}

.big-table {
  color: var(--white);
  background: #162e29;
}

.big-table-card {
  max-width: 58rem;
}

.big-table-card .eyebrow {
  color: #d1ad92;
}

.big-table-card h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.2rem, 4.5vw, 3.7rem);
  font-weight: 500;
  line-height: 1.3;
}

.big-table-card p {
  max-width: 47rem;
  margin-top: 1.4rem;
  color: rgba(252, 250, 246, 0.74);
}

.big-table-card strong {
  display: block;
  margin-top: 2rem;
  color: var(--white);
  font-size: clamp(1.25rem, 2.3vw, 1.7rem);
  font-weight: 600;
}

.ecosystem {
  border-bottom: 1px solid var(--line);
  background: rgba(252, 250, 246, 0.26);
}

.ecosystem-intro {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: clamp(2rem, 7vw, 6rem);
  align-items: end;
}

.ecosystem-copy > p {
  max-width: 42rem;
  color: var(--ink-soft);
  font-size: 1.02rem;
}

.ecosystem-points {
  margin-top: 1.35rem;
  display: grid;
  gap: 0.65rem;
}

.ecosystem-points li {
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  background: rgba(252, 250, 246, 0.52);
}

.ecosystem-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--ink);
  font-weight: 650;
}

.ecosystem-points span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.88rem;
}

.ecosystem-architecture {
  margin-top: clamp(2.7rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1rem;
}

.resource-panel,
.partner-panel {
  padding: clamp(1.65rem, 3.3vw, 2.25rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.64);
}

.panel-kicker {
  margin-bottom: 0.55rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.17em;
}

.resource-panel h3,
.partner-panel h3 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.45rem, 2.6vw, 1.85rem);
  font-weight: 500;
  line-height: 1.4;
}

.resource-stack,
.partner-tiers {
  margin-top: 1.55rem;
  display: grid;
  gap: 0.7rem;
}

.resource-stack div,
.partner-tiers div {
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  background: rgba(244, 241, 234, 0.6);
}

.resource-stack span,
.partner-tiers strong {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 650;
}

.resource-stack p,
.partner-tiers p {
  color: var(--ink-soft);
  font-size: 0.86rem;
}

.entry-grid {
  margin-top: clamp(2.4rem, 4.5vw, 3.4rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.entry-card {
  position: relative;
  padding: clamp(1.55rem, 3.2vw, 2rem);
  display: flex;
  flex-direction: column;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--green);
}

.entry-number {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  width: 2.45rem;
  height: 2.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: var(--white);
  font-weight: 700;
}

.entry-card h3 {
  margin-bottom: 0.55rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 500;
}

.entry-target {
  margin-bottom: 1.2rem;
  color: rgba(252, 250, 246, 0.74);
}

.entry-card li {
  padding: 0.62rem 0;
  color: rgba(252, 250, 246, 0.84);
  font-size: 0.9rem;
  border-top: 1px solid rgba(252, 250, 246, 0.16);
}

.entry-note {
  margin-top: auto;
  padding: 0.78rem 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  border-radius: 0.7rem;
  color: var(--white);
  background: #c66f4f;
  font-size: 0.88rem;
  font-weight: 650;
}

.entry-link {
  transition:
    background-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.entry-link::after {
  width: 1.25em;
  height: 1.25em;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "↗";
  font-size: 0.76em;
  line-height: 1;
  opacity: 0.9;
}

.entry-link:hover,
.entry-link:focus-visible {
  background: #d47a55;
  box-shadow: 0 10px 26px rgba(160, 90, 66, 0.26);
  transform: translateY(-1px);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.46rem;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.back-link::before {
  width: 1.35em;
  height: 1.35em;
  display: inline-grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 999px;
  content: "←";
  font-size: 0.78em;
  line-height: 1;
  opacity: 0.86;
}

.back-link.forward-link::before {
  order: 2;
  content: "↗";
}

.detail-hero {
  padding: clamp(4.2rem, 10vw, 8rem) 0 clamp(4.6rem, 8vw, 7rem);
  max-width: min(980px, calc(100vw - 3rem));
}

.detail-hero h1 {
  max-width: 62rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.7rem, 6vw, 5.15rem);
  font-weight: 500;
  line-height: 1.16;
  letter-spacing: -0.05em;
}

.detail-hero h1 span {
  color: var(--green);
}

.detail-lede {
  max-width: 47rem;
  margin-top: 2.35rem;
  color: var(--ink-soft);
  font-size: clamp(1rem, 1.45vw, 1.17rem);
  line-height: 1.9;
}

.detail-strip {
  margin-top: clamp(2.5rem, 5vw, 3.7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.56);
  overflow: hidden;
}

.detail-strip div {
  padding: 1.25rem;
  border-right: 1px solid var(--line);
}

.detail-strip div:last-child {
  border-right: 0;
}

.detail-strip span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--clay);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.detail-strip strong {
  font-weight: 600;
}

.detail-section {
  padding: clamp(4.6rem, 9vw, 7rem) 0;
}

.detail-muted {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 230, 220, 0.42);
}

.detail-grid {
  display: grid;
  grid-template-columns: 0.78fr 1fr;
  gap: clamp(2.4rem, 8vw, 7rem);
}

.detail-list {
  display: grid;
  gap: 0.85rem;
}

.mode-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.mode-card {
  position: relative;
  min-height: 12rem;
  padding: 1.45rem;
  border: 1px solid rgba(174, 91, 62, 0.22);
  border-radius: 1.15rem;
  background: rgba(252, 250, 246, 0.7);
}

.mode-card span {
  display: inline-flex;
  width: 2.2rem;
  height: 2.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  border-radius: 999px;
  color: var(--white);
  background: var(--green);
  font-size: 0.85rem;
  font-weight: 700;
}

.mode-card h3 {
  margin-bottom: 0.55rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.mode-card p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.detail-list article {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(252, 250, 246, 0.62);
}

.detail-list h3 {
  margin-bottom: 0.45rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.detail-list p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.detail-list.numbered article {
  position: relative;
  padding-left: 4.4rem;
}

.detail-list.numbered span {
  position: absolute;
  top: 1.35rem;
  left: 1.35rem;
  color: var(--clay);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.detail-dark {
  color: var(--white);
  background: #162e29;
}

.detail-dark .eyebrow {
  color: #d1ad92;
}

.detail-dark .section-heading h2 {
  color: var(--white);
}

.detail-steps {
  display: grid;
  gap: 0.85rem;
  list-style: none;
}

.detail-steps li {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(252, 250, 246, 0.16);
  border-radius: 1rem;
  background: rgba(252, 250, 246, 0.045);
}

.detail-steps strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--white);
}

.detail-steps p {
  color: rgba(252, 250, 246, 0.72);
  font-size: 0.92rem;
}

.detail-boundary {
  display: grid;
  grid-template-columns: 0.75fr 1fr;
  gap: clamp(2.4rem, 8vw, 6rem);
}

.boundary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem;
}

.boundary-grid p {
  padding: 1.1rem;
  border: 1px solid var(--line);
  border-radius: 0.95rem;
  color: var(--ink-soft);
  background: rgba(252, 250, 246, 0.58);
}

.detail-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.detail-note {
  grid-column: 2;
  margin-top: -0.2rem;
  text-align: left;
}

.ecosystem-note {
  margin-top: 1.25rem;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.section-heading h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.05rem, 3.9vw, 3.25rem);
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -0.04em;
}

.section-heading.narrow {
  max-width: 37rem;
}

.about {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1rem;
}

.about-origin {
  grid-column: 1 / -1;
  padding-bottom: clamp(1.2rem, 3vw, 2rem);
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(2.4rem, 7vw, 7.5rem);
}

.about-copy {
  max-width: 39rem;
  color: var(--ink-soft);
  font-size: 1.03rem;
}

.about-copy > p + p {
  margin-top: 2rem;
}

.about-copy .highlight {
  padding-left: 1.3rem;
  border-left: 2px solid var(--clay);
  color: var(--ink);
  font-size: 1.08rem;
}

.tags {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.tags span {
  padding: 0.42rem 0.78rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.82rem;
}

.track-number {
  margin-bottom: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--clay);
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: 0.22em;
}

.identity-card {
  min-height: 25rem;
  padding: clamp(1.8rem, 5vw, 3.35rem);
  border-radius: var(--radius);
}

.identity-card.muted {
  border: 1px solid var(--line);
}

.identity-card.muted li {
  padding: 1.05rem 0;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line);
}

.identity-card.muted li strong {
  display: block;
  margin-bottom: 0.38rem;
  color: var(--ink);
  font-size: 1.03rem;
  font-weight: 550;
}

.identity-card.muted li span {
  display: block;
  color: var(--ink-soft);
  font-size: 0.87rem;
  line-height: 1.72;
}

.identity-card.strong {
  color: var(--white);
  background: var(--green);
}

.identity-card.strong .eyebrow {
  color: #d1ad92;
}

.identity-statement {
  margin: 2.35rem 0 2rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  line-height: 1.42;
}

.identity-card.strong > p:last-child {
  max-width: 29rem;
  color: rgba(252, 250, 246, 0.76);
}

.standards {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(236, 230, 220, 0.32);
}

.standards-heading {
  max-width: 48rem;
  margin-bottom: clamp(2.5rem, 5vw, 3.8rem);
}

.standards-heading > p:last-child {
  max-width: 40rem;
  margin-top: 1.35rem;
  color: var(--ink-soft);
}

.standard-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.standard-card {
  padding: clamp(1.5rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.6);
}

.standard-card .track-number {
  margin-bottom: 1.8rem;
}

.standard-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: 1.35rem;
  font-weight: 500;
}

.standard-card > p:last-child {
  color: var(--ink-soft);
  font-size: 0.91rem;
}

.directions {
  text-align: center;
}

.directions .section-heading {
  max-width: 50rem;
  margin: 0 auto;
}

.direction-list {
  max-width: 58rem;
  margin: clamp(2.5rem, 5vw, 3.7rem) auto 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.72rem;
}

.direction-list span {
  padding: 0.7rem 1.18rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: rgba(252, 250, 246, 0.45);
}

.connect {
  padding: clamp(4.8rem, 9vw, 7.3rem) 0;
  color: var(--white);
  background: #162e29;
}

.connect-grid {
  display: grid;
  grid-template-columns: 0.92fr 1fr;
  gap: clamp(2.5rem, 9vw, 8.2rem);
}

.connect .eyebrow {
  color: #d1ad92;
}

.connect-copy h2 {
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(2.35rem, 4.5vw, 3.65rem);
  font-weight: 500;
  line-height: 1.36;
}

.connect-copy > p:last-child {
  max-width: 34rem;
  margin-top: 2rem;
  color: rgba(252, 250, 246, 0.72);
}

.connect-panel {
  padding: clamp(1.7rem, 4vw, 2.35rem);
  border: 1px solid rgba(252, 250, 246, 0.17);
  border-radius: var(--radius);
  background: rgba(252, 250, 246, 0.045);
}

.connect-label {
  margin-bottom: 1.25rem;
  color: rgba(252, 250, 246, 0.65);
  font-size: 0.85rem;
}

.connect-roles {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.connect-roles span {
  padding: 0.42rem 0.72rem;
  border: 1px solid rgba(252, 250, 246, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
}

.connect-line {
  margin: 2rem 0;
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1.17rem, 2.2vw, 1.4rem);
}

.connect .button.primary {
  color: var(--green);
  background: var(--white);
}

.button.full {
  width: 100%;
}

.contact-note {
  margin-top: 0.9rem;
  color: rgba(252, 250, 246, 0.5);
  font-size: 0.77rem;
  text-align: center;
}

.contact-note.confirmed {
  color: #d5baa3;
}

.site-footer {
  color: rgba(252, 250, 246, 0.63);
  background: #162e29;
}

.footer-grid {
  padding: 1.8rem 0 2.35rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: clamp(1.5rem, 4vw, 3.4rem);
  border-top: 1px solid rgba(252, 250, 246, 0.13);
  font-size: 0.8rem;
}

.footer-signature {
  margin-right: auto;
}

.footer-brand {
  color: var(--white);
  letter-spacing: 0.13em;
}

.footer-vision {
  max-width: 22rem;
  margin-top: 1rem;
  color: rgba(252, 250, 246, 0.84);
  font-family: "Noto Serif SC", "Songti SC", SimSun, serif;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.8;
}

.reveal {
  opacity: 1;
  transform: none;
  transition:
    opacity 600ms ease,
    transform 600ms ease;
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes pulse {
  0% {
    opacity: 0.55;
    transform: scale(0.8);
  }
  70%,
  100% {
    opacity: 0;
    transform: scale(2.2);
  }
}

@media (max-width: 960px) {
  .ecosystem-intro,
  .ecosystem-architecture,
  .news-layout,
  .agi-gateway-grid,
  .founder-intro,
  .story-grid,
  .about,
  .about-origin,
  .detail-grid,
  .detail-boundary,
  .connect-grid {
    grid-template-columns: 1fr;
  }

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

  .news-heading {
    position: static;
  }

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

  .news-index-card em {
    justify-self: start;
  }

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

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

  .detail-strip div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .detail-strip div:last-child {
    border-bottom: 0;
  }

  .detail-actions {
    grid-column: auto;
  }

  .detail-note {
    grid-column: auto;
  }

  .hero {
    min-height: 0;
  }

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

  .gateway-links,
  .persona-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rena-chapter {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .rena-chapter > p,
  .rena-chapter > .rena-profile-grid,
  .rena-chapter > .rena-list,
  .rena-chapter > .infrastructure-list,
  .rena-callout {
    grid-column: auto;
  }

  .audience-card {
    grid-template-columns: 1fr;
  }

  .audience-card .eyebrow {
    grid-row: auto;
  }

}

@media (max-width: 720px) {
  :root {
    --container: min(100vw - 2.2rem, 1180px);
  }

  .overview-metrics {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    position: relative;
  }

  .nav-toggle {
    display: block;
  }

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

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

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

  .nav-links {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0;
    left: 0;
    padding: 0.7rem 1rem;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.2rem;
    border: 1px solid var(--line);
    border-radius: 0.8rem;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 0.62rem 0;
  }

  .hero {
    padding-top: 3.1rem;
  }

  .hero-paths {
    grid-template-columns: 1fr;
  }

  .gateway-links,
  .persona-grid,
  .mode-grid {
    grid-template-columns: 1fr;
  }

  .persona-card {
    min-height: 11.5rem;
  }

  .rena-profile-grid,
  .rena-list.compact {
    grid-template-columns: 1fr;
  }

  .rena-chapter {
    padding: 2.2rem 0;
  }

  .entry-card {
    padding: 1.45rem;
  }

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

  .detail-list.numbered article {
    padding-left: 1.35rem;
  }

  .detail-list.numbered span {
    position: static;
    display: block;
    margin-bottom: 0.4rem;
  }

  .identity-card {
    min-height: 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .persona-card {
    opacity: 1;
    transform: none;
  }
}
