:root {
  --gold: #d8a52d;
  --gold-bright: #f6ce63;
  --gold-deep: #7f5a11;
  --gold-line: rgba(216, 165, 45, 0.32);
  --gold-soft: rgba(216, 165, 45, 0.09);
  --ink: #050504;
  --ink-soft: #0b0905;
  --panel: rgba(18, 14, 7, 0.88);
  --cream: #f1ead7;
  --text: #ddd3bc;
  --muted: #a89775;
  --font-display: "Cinzel", serif;
  --font-ui: "Rajdhani", sans-serif;
  --font-body: "Inter", sans-serif;
  --shell: min(1180px, calc(100vw - 48px));
  --ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  background:
    radial-gradient(circle at 75% 4%, rgba(125, 85, 9, 0.12), transparent 25rem),
    var(--ink);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  background-image:
    linear-gradient(rgba(216, 165, 45, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(216, 165, 45, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  content: "";
  mask-image: linear-gradient(to bottom, black, transparent 72%);
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 4px;
}

#particles-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.42;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid transparent;
  transition: background var(--ease), border-color var(--ease), backdrop-filter var(--ease);
}

.site-header.scrolled {
  border-color: var(--gold-line);
  background: rgba(5, 5, 4, 0.9);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  width: var(--shell);
  min-height: 76px;
  margin-inline: auto;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
}

.brand img {
  width: 45px;
  height: 45px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  box-shadow: 0 0 24px rgba(216, 165, 45, 0.16);
}

.brand span {
  display: grid;
  line-height: 1.05;
}

.brand strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.94rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.brand small {
  margin-top: 5px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 20px;
}

.nav-links a,
.nav-cta {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.87rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.nav-links a:hover,
.nav-cta:hover {
  color: var(--gold-bright);
}

.nav-cta {
  padding: 9px 14px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
}

.hamburger {
  display: none;
  margin-left: auto;
  padding: 8px;
  border: 0;
  background: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px;
  border-radius: 1px;
  background: var(--gold);
  transition: transform var(--ease), opacity var(--ease);
}

.hero {
  display: grid;
  min-height: calc(100vh - 76px);
  padding: 82px 0 90px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 44px;
}

.eyebrow,
.card-kicker {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  display: grid;
  margin: 24px 0 20px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3.15rem, 6.4vw, 6.5rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.gold-text {
  color: var(--gold-bright);
  text-shadow: 0 0 30px rgba(216, 165, 45, 0.2);
}

.hero-lead {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.22rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-description {
  max-width: 640px;
  margin-top: 18px;
  color: var(--text);
  font-size: 1.05rem;
}

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

.button {
  display: inline-flex;
  padding: 13px 19px;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--gold-line);
  color: var(--gold-bright);
  font-family: var(--font-ui);
  font-size: 0.91rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
  transition: transform var(--ease), background var(--ease), border-color var(--ease), color var(--ease);
}

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

.button-primary {
  border-color: var(--gold);
  background: linear-gradient(135deg, #946a15, #e3b43c);
  color: #090702;
}

.button-primary:hover {
  background: linear-gradient(135deg, #d2a12d, #f6d46e);
}

.button-ghost:hover {
  border-color: var(--gold);
  background: var(--gold-soft);
}

.hero-signature {
  display: flex;
  margin-top: 32px;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: 0.83rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-signature span {
  width: 42px;
  height: 1px;
  background: var(--gold);
}

.hero-art {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
}

.hero-flare,
.hero-orbit {
  position: absolute;
  border-radius: 50%;
}

.hero-flare {
  inset: 13%;
  background: radial-gradient(circle, rgba(216, 165, 45, 0.32), transparent 70%);
  filter: blur(18px);
  animation: glow 5s ease-in-out infinite;
}

.hero-orbit {
  border: 1px solid var(--gold-line);
}

.orbit-one {
  inset: 8%;
  animation: rotate 30s linear infinite;
}

.orbit-two {
  inset: 1%;
  border-style: dashed;
  opacity: 0.52;
  animation: rotateReverse 48s linear infinite;
}

.hero-coin {
  position: relative;
  width: 80%;
  border-radius: 50%;
  filter: drop-shadow(0 0 22px rgba(216, 165, 45, 0.26));
  animation: float 6s ease-in-out infinite;
}

.hero-art-caption {
  position: absolute;
  right: 0;
  bottom: 8%;
  display: grid;
  padding: 10px 14px;
  border-left: 2px solid var(--gold);
  background: rgba(5, 5, 4, 0.72);
  line-height: 1;
}

.hero-art-caption span {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.4rem;
  letter-spacing: 0.2em;
}

.hero-art-caption small {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.69rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fact-strip {
  position: relative;
  z-index: 1;
  display: grid;
  padding: 20px max(24px, calc((100vw - 1180px) / 2));
  border-block: 1px solid var(--gold-line);
  background: rgba(16, 12, 6, 0.92);
  grid-template-columns: repeat(4, 1fr);
}

.fact-strip div {
  display: grid;
  padding: 7px 28px;
  border-left: 1px solid var(--gold-line);
  text-align: center;
}

.fact-strip div:first-child {
  border-left: 0;
}

.fact-strip strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.08em;
}

.fact-strip span {
  margin-top: 4px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.73rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section {
  position: relative;
  padding: 108px 0;
}

.section-dark {
  border-block: 1px solid rgba(216, 165, 45, 0.11);
  background: linear-gradient(140deg, rgba(11, 9, 5, 0.95), rgba(5, 5, 4, 0.88));
}

.section-panel {
  background:
    linear-gradient(135deg, rgba(216, 165, 45, 0.035), transparent 60%),
    #080704;
}

.section-heading {
  max-width: 820px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-heading.narrow {
  max-width: 880px;
}

h2 {
  margin-top: 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-heading > p:last-child,
.section-intro {
  margin-top: 18px;
  color: var(--text);
  font-size: 1.02rem;
}

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

.statement-card,
.founder-card {
  position: relative;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--gold-line);
  background: linear-gradient(145deg, rgba(23, 17, 8, 0.92), rgba(7, 6, 4, 0.92));
}

.statement-card::before,
.founder-card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 90px;
  height: 2px;
  background: var(--gold);
  content: "";
}

.statement-card h3,
.founder-card h3 {
  margin: 10px 0 12px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1.25;
}

.statement-card p,
.founder-card p {
  color: var(--text);
  font-size: 0.98rem;
}

.compact-list {
  display: flex;
  margin-top: 24px;
  gap: 9px;
  list-style: none;
  flex-wrap: wrap;
}

.compact-list li {
  padding: 7px 10px;
  border: 1px solid var(--gold-line);
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

blockquote {
  margin-top: 24px;
  padding-left: 16px;
  border-left: 1px solid var(--gold);
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.6;
}

blockquote strong {
  color: var(--gold);
  font-weight: 600;
}

.ecosystem-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 310px 1fr;
  gap: 42px;
}

.ecosystem-core {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  text-align: center;
}

.ecosystem-core::before,
.core-ring {
  position: absolute;
  inset: 1%;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  content: "";
}

.core-ring {
  inset: 11%;
  border-style: dashed;
  animation: rotate 35s linear infinite;
}

.ecosystem-core img {
  position: absolute;
  width: 67%;
  border-radius: 50%;
  opacity: 0.62;
  filter: drop-shadow(0 0 16px rgba(216, 165, 45, 0.36));
}

.ecosystem-core strong {
  position: relative;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1.13rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.ecosystem-core strong span {
  color: var(--gold);
}

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

.feature-card,
.allocation-grid article {
  padding: 20px;
  border: 1px solid var(--gold-line);
  background: rgba(15, 12, 7, 0.75);
  transition: border-color var(--ease), transform var(--ease), background var(--ease);
}

.feature-card:hover,
.allocation-grid article:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  background: rgba(216, 165, 45, 0.07);
}

.feature-icon {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.8rem;
}

.feature-card h3,
.allocation-grid h3 {
  margin: 8px 0 5px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.feature-card p,
.allocation-grid p,
.transparency-grid span {
  color: var(--text);
  font-size: 0.89rem;
  line-height: 1.65;
}

.alignment-bar,
.transparency-grid {
  display: grid;
  margin-top: 34px;
  border: 1px solid var(--gold-line);
  background: rgba(11, 9, 5, 0.8);
  grid-template-columns: repeat(3, 1fr);
}

.alignment-bar div,
.transparency-grid div {
  display: grid;
  padding: 22px;
  border-left: 1px solid var(--gold-line);
}

.alignment-bar div:first-child,
.transparency-grid div:first-child {
  border-left: 0;
}

.alignment-bar span {
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-size: 1.65rem;
}

.alignment-bar strong,
.transparency-grid strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.alignment-bar p {
  margin-top: 4px;
  color: var(--text);
  font-size: 0.89rem;
}

.split-layout {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, 0.95fr);
  gap: 44px;
}

.split-layout h2 {
  max-width: 690px;
}

.phase-reasons {
  display: grid;
  margin-top: 30px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.phase-reasons div {
  display: grid;
  padding: 16px;
  border: 1px solid var(--gold-line);
  background: rgba(15, 12, 7, 0.6);
}

.phase-reasons strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.phase-reasons span {
  margin-top: 5px;
  color: var(--text);
  font-size: 0.85rem;
}

.evolution-card {
  padding: 24px;
  border: 1px solid var(--gold-line);
  background: var(--panel);
}

.evolution-card ol {
  display: grid;
  margin-top: 20px;
  gap: 13px;
  list-style: none;
}

.evolution-card li {
  display: flex;
  align-items: center;
  gap: 13px;
}

.evolution-card li > span {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 0.8rem;
  place-items: center;
}

.evolution-card li div {
  display: grid;
}

.evolution-card strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.evolution-card small {
  margin-top: 3px;
  color: var(--text);
  font-size: 0.82rem;
}

.token-layout {
  display: grid;
  align-items: center;
  grid-template-columns: 350px 1fr;
  gap: 42px;
}

.token-chart {
  display: grid;
  place-items: center;
}

.donut {
  display: grid;
  width: 320px;
  max-width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    #e5b33b 0 30%,
    #9d731e 30% 50%,
    #704d10 50% 65%,
    #5a4a2d 65% 80%,
    #34301f 80% 90%,
    #181711 90% 100%
  );
  box-shadow: 0 0 40px rgba(216, 165, 45, 0.18);
  place-items: center;
}

.donut-center {
  display: grid;
  width: 61%;
  aspect-ratio: 1;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: #090703;
  place-items: center;
  align-content: center;
  text-align: center;
}

.donut-center img {
  width: 48px;
  border-radius: 50%;
}

.donut-center span,
.donut-center small {
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.71rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.donut-center strong {
  margin: 5px 0 0;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.allocation-grid article b {
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 500;
}

.transparency-grid span {
  margin-top: 7px;
}

.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
}

.roadmap::before {
  position: absolute;
  top: 42px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), var(--gold), var(--gold-deep), rgba(216, 165, 45, 0.2));
  content: "";
}

.roadmap-step {
  position: relative;
  padding: 72px 18px 22px;
  border: 1px solid var(--gold-line);
  background: rgba(13, 10, 6, 0.68);
}

.roadmap-step > span {
  position: absolute;
  top: 19px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid var(--gold-line);
  border-radius: 50%;
  background: #080603;
  color: var(--gold);
  font-family: var(--font-display);
  place-items: center;
}

.roadmap-step.is-complete > span {
  border-color: var(--gold);
  background: #211706;
}

.roadmap-step.is-current > span {
  border-color: var(--gold-bright);
  box-shadow: 0 0 22px rgba(216, 165, 45, 0.44);
}

.roadmap-step small {
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.roadmap-step h3 {
  margin: 12px 0 8px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}

.roadmap-step p {
  color: var(--text);
  font-size: 0.84rem;
}

.founder-card {
  min-height: 100%;
  padding: 32px;
}

.founder-monogram {
  display: grid;
  width: 74px;
  height: 74px;
  margin-bottom: 20px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  place-items: center;
}

.founder-card small {
  display: block;
  margin: -8px 0 16px;
  color: var(--gold);
  font-family: var(--font-ui);
  font-size: 0.83rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.manifesto {
  padding: 118px 0;
  border-top: 1px solid var(--gold-line);
  background:
    radial-gradient(circle at 50% 50%, rgba(216, 165, 45, 0.14), transparent 23rem),
    #050504;
  text-align: center;
}

.manifesto h2 span {
  color: var(--gold);
}

.manifesto p {
  max-width: 670px;
  margin: 22px auto;
  color: var(--text);
  font-size: 1.02rem;
}

.manifesto strong {
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.08em;
}

.footer {
  border-top: 1px solid var(--gold-line);
  background: #080704;
}

.footer-grid {
  display: grid;
  padding: 44px 0;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 42px;
}

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

.footer-grid p {
  max-width: 360px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-grid > div > strong {
  margin-bottom: 10px;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-grid > div > a:not(.brand) {
  padding: 3px 0;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color var(--ease);
}

.footer-grid > div > a:hover {
  color: var(--gold);
}

.footer-bottom {
  padding: 15px 0;
  border-top: 1px solid var(--gold-line);
}

.footer-bottom .section-shell {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  max-width: 780px;
  color: var(--muted);
  font-family: var(--font-ui);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.footer-bottom strong {
  color: var(--gold);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

@keyframes rotate {
  to { transform: rotate(360deg); }
}

@keyframes rotateReverse {
  to { transform: rotate(-360deg); }
}

@keyframes glow {
  50% { opacity: 0.65; transform: scale(1.08); }
}

@keyframes float {
  50% { transform: translateY(-12px); }
}

@media (max-width: 1060px) {
  .nav-links { gap: 14px; }
  .nav-links a { font-size: 0.79rem; }
  .ecosystem-layout { grid-template-columns: 250px 1fr; gap: 30px; }
  .token-layout { grid-template-columns: 300px 1fr; gap: 30px; }
}

@media (max-width: 860px) {
  :root { --shell: min(calc(100% - 32px), 680px); }
  .nav-shell { min-height: 68px; }
  .nav-links {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    padding: 14px 16px 20px;
    border-bottom: 1px solid var(--gold-line);
    background: rgba(5, 5, 4, 0.98);
  }
  .nav-links.open { display: grid; }
  .nav-links a { padding: 8px; font-size: 0.9rem; }
  .nav-cta { display: none; }
  .hamburger { display: block; }
  .hero { min-height: auto; padding: 62px 0 70px; grid-template-columns: 1fr; gap: 28px; }
  .hero-art { width: min(100%, 440px); margin-inline: auto; }
  .fact-strip { grid-template-columns: repeat(2, 1fr); }
  .fact-strip div:nth-child(3) { border-left: 0; }
  .section { padding: 82px 0; }
  .ecosystem-layout,
  .split-layout,
  .token-layout { grid-template-columns: 1fr; }
  .ecosystem-core { width: min(100%, 300px); margin-inline: auto; }
  .roadmap { grid-template-columns: 1fr; gap: 10px; }
  .roadmap::before { display: none; }
  .roadmap-step { padding: 22px 20px 22px 82px; }
  .roadmap-step > span { top: 20px; left: 18px; }
}

@media (max-width: 620px) {
  .hero,
  .hero-copy,
  .hero-art {
    width: calc(100vw - 32px);
    min-width: 0;
    max-width: calc(100vw - 32px);
  }
  .hero h1 {
    font-size: clamp(1.8rem, 9vw, 3rem);
    letter-spacing: -0.075em;
  }
  .hero-lead { font-size: 1rem; }
  .hero-signature {
    max-width: 100%;
    font-size: 0.7rem;
  }
  .hero-coin { width: 72%; }
  .hero-art-caption { right: 8px; }
  .hero-description,
  .section-heading > p:last-child,
  .section-intro { font-size: 0.96rem; }
  .vision-grid,
  .founders-grid,
  .ecosystem-grid,
  .allocation-grid,
  .alignment-bar,
  .transparency-grid,
  .phase-reasons { grid-template-columns: 1fr; }
  .alignment-bar div,
  .transparency-grid div { border-top: 1px solid var(--gold-line); border-left: 0; }
  .alignment-bar div:first-child,
  .transparency-grid div:first-child { border-top: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
  .footer-bottom .section-shell { display: grid; }
}

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