@font-face {
  font-family: 'SourceSans3';
  src: url('../assets/fonts/SourceSans3-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SourceSans3';
  src: url('../assets/fonts/SourceSans3-Semibold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'SourceSans3';
  src: url('../assets/fonts/SourceSans3-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

.info-page-body {
  margin: 0;
  background: #090c12;
}

#info-page {
  --info-gold: #ffc928;
  --info-orange: #f3a211;
  --info-cream: #fff3c4;
  --info-muted: #949aa5;
  --info-panel: rgba(25, 31, 41, 0.82);
  position: absolute;
  inset: 0 0 calc(var(--menu-height, 63px) + var(--safe-area-inset-bottom, 0px)) 0;
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 190, 30, 0.13), transparent 29rem),
    radial-gradient(circle at 90% 36%, rgba(61, 93, 134, 0.2), transparent 24rem),
    linear-gradient(180deg, #0b0e14 0%, #121923 48%, #090c12 100%);
  color: #f7f7f7;
  font-family: 'SourceSans3', Arial, sans-serif;
  z-index: 20;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 201, 40, 0.45) transparent;
}

#info-page::-webkit-scrollbar { width: 4px; }
#info-page::-webkit-scrollbar-track { background: transparent; }
#info-page::-webkit-scrollbar-thumb { background: rgba(255, 201, 40, 0.45); border-radius: 9px; }

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

.info-shell {
  position: relative;
  z-index: 2;
  width: min(100%, 760px);
  margin: 0 auto;
  padding: 0 18px 46px;
}

.info-ambient {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(to bottom, black 0%, transparent 70%);
}

.info-ambient::after {
  content: '';
  position: absolute;
  width: 80vw;
  height: 80vw;
  max-width: 650px;
  max-height: 650px;
  top: 340px;
  left: 50%;
  border: 1px solid rgba(255, 208, 71, 0.06);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 0 50px rgba(255, 208, 71, 0.018), 0 0 0 110px rgba(255, 208, 71, 0.012);
}

.info-ambient i {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--info-gold);
  box-shadow: 0 0 9px rgba(255, 201, 40, .9);
  animation: infoFloatStar 8s linear infinite;
}

.info-ambient i:nth-child(1) { left: 8%; top: 9%; animation-delay: -2s; }
.info-ambient i:nth-child(2) { left: 83%; top: 17%; width: 2px; height: 2px; animation-delay: -5s; }
.info-ambient i:nth-child(3) { left: 17%; top: 29%; animation-delay: -7s; }
.info-ambient i:nth-child(4) { left: 92%; top: 41%; animation-delay: -1s; }
.info-ambient i:nth-child(5) { left: 5%; top: 53%; width: 2px; height: 2px; animation-delay: -4s; }
.info-ambient i:nth-child(6) { left: 76%; top: 64%; animation-delay: -6s; }
.info-ambient i:nth-child(7) { left: 24%; top: 78%; animation-delay: -3s; }
.info-ambient i:nth-child(8) { left: 88%; top: 91%; width: 2px; height: 2px; animation-delay: -8s; }

.info-hero {
  min-height: min(780px, 94vh);
  padding: 42px 4px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.info-kicker,
.info-section-label {
  color: var(--info-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
}

.info-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 201, 40, .18);
  border-radius: 999px;
  background: rgba(255, 201, 40, .05);
}

.info-kicker span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--info-gold);
  box-shadow: 0 0 11px var(--info-gold);
  animation: infoPulse 1.8s ease-in-out infinite;
}

.info-hero h1,
.info-section h2,
.info-footer h2 {
  margin: 0;
  font-weight: 700;
  line-height: .98;
  letter-spacing: -1.5px;
}

.info-hero h1 {
  margin-top: 22px;
  font-size: clamp(42px, 13vw, 76px);
}

.info-hero h1 em {
  color: transparent;
  font-style: normal;
  background: linear-gradient(105deg, #fff0ad 0%, #ffc21d 48%, #f08d00 100%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 5px 16px rgba(255, 174, 0, .12));
}

.info-hero-copy,
.info-section-copy {
  max-width: 540px;
  margin: 18px auto 0;
  color: #aeb3bd;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

.info-cosmos {
  --cosmos-x: 0deg;
  --cosmos-y: 0deg;
  position: relative;
  width: 276px;
  height: 276px;
  margin: 18px auto 6px;
  perspective: 700px;
  transform: rotateX(var(--cosmos-y)) rotateY(var(--cosmos-x));
  transition: transform .25s ease-out;
}

.info-cosmos-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.info-cosmos:not(.info-canvas-ready) .info-cosmos-canvas {
  visibility: hidden;
}

.info-cosmos.info-canvas-ready > .info-glow,
.info-cosmos.info-canvas-ready > .info-energy-ring,
.info-cosmos.info-canvas-ready > .info-orbit,
.info-cosmos.info-canvas-ready > .info-core,
.info-cosmos.info-canvas-ready > .info-spark,
.info-cosmos.info-canvas-ready > .info-particle {
  display: none;
}

.info-glow {
  position: absolute;
  inset: 43px;
  border-radius: 50%;
  background: rgba(255, 191, 26, .12);
  filter: blur(32px);
  animation: infoGlow 3s ease-in-out infinite;
}

.info-core {
  position: absolute;
  inset: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 28%, rgba(255,255,255,.95) 0 2%, transparent 3%),
    radial-gradient(circle at 38% 34%, #fff081, #ffc311 31%, #dc7900 67%, #3b2100 100%);
  box-shadow:
    inset -12px -14px 22px rgba(66, 25, 0, .55),
    inset 8px 8px 18px rgba(255,255,255,.38),
    0 0 24px rgba(255, 190, 20, .62),
    0 0 70px rgba(255, 169, 0, .2);
  animation: infoCoreHover 4s ease-in-out infinite;
}

.info-core img {
  display: block;
  width: 54px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 3px 2px rgba(96, 43, 0, .5));
}

.info-orbit {
  position: absolute;
  inset: 38px;
  border: 1px solid rgba(255, 221, 111, .2);
  border-radius: 50%;
  animation: infoOrbit 11s linear infinite;
}

.info-orbit b {
  position: absolute;
  width: 9px;
  height: 9px;
  top: 17px;
  right: 25px;
  border-radius: 50%;
  background: #ffe45c;
  box-shadow: 0 0 13px #ffc400;
}

.info-orbit-two {
  inset: 23px;
  border-color: rgba(115, 136, 166, .24);
  animation-duration: 17s;
  animation-direction: reverse;
  transform: rotate(62deg) scaleY(.68);
}

.info-orbit-two b { width: 6px; height: 6px; background: #fff; }
.info-orbit-three { inset: 59px; animation-duration: 8s; transform: rotate(-31deg) scaleY(.77); }
.info-orbit-three b { width: 5px; height: 5px; top: auto; bottom: 9px; }

.info-spark { position: absolute; color: #fff0a4; filter: drop-shadow(0 0 7px #ffc400); animation: infoTwinkle 2.3s ease-in-out infinite; }
.spark-one { top: 43px; left: 51px; font-size: 14px; }
.spark-two { right: 37px; bottom: 62px; font-size: 10px; animation-delay: -.8s; }
.spark-three { left: 43px; bottom: 45px; font-size: 7px; animation-delay: -1.4s; }

.info-tags {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
}

.info-tags span,
.roadmap-tags span {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  color: #b6bbc4;
  font-size: 11px;
  letter-spacing: .3px;
}

.info-tags span { padding: 7px 10px; }

.info-section {
  position: relative;
  padding: 72px 4px 28px;
}

.info-section::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,.13), transparent);
}

.info-section h2 {
  margin-top: 13px;
  font-size: clamp(34px, 10vw, 55px);
}

.info-story-card,
.info-trajectory-card,
.roadmap-card {
  border: 1px solid rgba(255,255,255,.1);
  background:
    linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
    var(--info-panel);
  box-shadow: 0 18px 45px rgba(0,0,0,.22), inset 0 1px rgba(255,255,255,.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.info-story-card {
  position: relative;
  margin-top: 26px;
  padding: 26px 22px 25px 65px;
  border-radius: 22px;
  overflow: hidden;
}

.info-story-card::after {
  content: '';
  position: absolute;
  width: 140px;
  height: 140px;
  right: -70px;
  bottom: -85px;
  border: 1px solid rgba(255, 200, 40, .18);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 200, 40, .025), 0 0 0 44px rgba(255, 200, 40, .018);
}

.info-story-mark {
  position: absolute;
  top: 28px;
  left: 22px;
  color: var(--info-gold);
  font-size: 24px;
  text-shadow: 0 0 13px rgba(255, 201, 40, .8);
}

.info-story-card p,
.roadmap-card p,
.trajectory-copy p {
  margin: 0;
  color: #aeb3bd;
  font-size: 15px;
  line-height: 1.55;
}

.info-loop {
  position: relative;
  height: 210px;
  margin-top: 27px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px;
  background: radial-gradient(circle at center, rgba(255, 191, 19, .09), transparent 58%), rgba(5,8,13,.28);
  overflow: hidden;
}

.info-loop-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  pointer-events: none;
}

.info-loop:not(.info-loop-canvas-ready) .info-loop-canvas {
  visibility: hidden;
}

.info-loop.info-loop-canvas-ready > .info-loop-line,
.info-loop.info-loop-canvas-ready > .info-loop-item,
.info-loop.info-loop-canvas-ready > .info-loop-runner {
  display: none;
}

.info-loop-line {
  position: absolute;
  inset: 26px 5% auto;
  width: 90%;
  height: 150px;
}

.info-loop-line path {
  fill: none;
  stroke: url('#unused');
  stroke: rgba(255, 199, 38, .38);
  stroke-width: 1.5;
  stroke-dasharray: 5 7;
  animation: infoDash 12s linear infinite;
}

.info-loop-item {
  position: absolute;
  width: 68px;
  height: 68px;
  display: grid;
  place-content: center;
  gap: 2px;
  text-align: center;
  border: 1px solid rgba(255, 208, 64, .3);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 25%, rgba(255,255,255,.11), rgba(18,22,29,.95));
  box-shadow: 0 9px 22px rgba(0,0,0,.34), 0 0 20px rgba(255, 193, 17, .06);
}

.info-loop-item b { color: var(--info-gold); font-size: 10px; letter-spacing: 1px; }
.info-loop-item span { color: #ececec; font-size: 12px; font-weight: 600; }
.loop-a { left: 4%; top: 73px; }
.loop-b { left: 28%; top: 26px; }
.loop-c { right: 28%; bottom: 25px; }
.loop-d { right: 4%; top: 73px; }

.info-roadmap-section { padding-bottom: 12px; }

.info-roadmap {
  position: relative;
  margin-top: 32px;
  padding-left: 9px;
}

.info-roadmap::before {
  content: '';
  position: absolute;
  top: 21px;
  bottom: 35px;
  left: 28px;
  width: 1px;
  background: linear-gradient(to bottom, var(--info-gold) 0 18%, rgba(255,255,255,.18) 42%, rgba(255, 181, 20, .7) 100%);
  box-shadow: 0 0 13px rgba(255, 192, 20, .15);
}

.roadmap-step {
  position: relative;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.roadmap-node {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: 16px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  background: #141a22;
  color: #8e959f;
  font-size: 10px;
  font-weight: 700;
}

.is-live .roadmap-node,
.is-next .roadmap-node,
.is-cex .roadmap-node {
  border-color: rgba(255, 202, 42, .6);
  background: radial-gradient(circle at 35% 30%, #ffe765, #d88a00);
  color: #1b1200;
  box-shadow: 0 0 18px rgba(255, 189, 17, .28);
}

.is-next .roadmap-node::after {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  opacity: .45;
  box-shadow: 0 0 14px rgba(255, 189, 17, .28);
}

.roadmap-card {
  padding: 20px 18px 18px;
  border-radius: 19px;
}

.is-next .roadmap-card,
.is-cex .roadmap-card {
  border-color: rgba(255, 198, 30, .24);
  background: linear-gradient(145deg, rgba(255, 200, 41, .09), rgba(255,255,255,.02)), rgba(23,28,37,.9);
}

.roadmap-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.roadmap-meta b { color: var(--info-gold); font-size: 10px; letter-spacing: 1.5px; }
.roadmap-meta small { color: #8f96a0; font-size: 9px; letter-spacing: 1.2px; }
.is-live .roadmap-meta small { color: #ffe168; }

.roadmap-card h3 {
  margin: 9px 0 8px;
  color: #f7f7f7;
  font-size: 22px;
  line-height: 1.05;
}

.roadmap-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 15px; }
.roadmap-tags span { padding: 5px 8px; font-size: 10px; }

.info-trajectory-card {
  position: relative;
  margin-top: 16px;
  padding: 24px 20px 20px;
  border-radius: 23px;
  overflow: hidden;
}

.info-trajectory-card::before {
  content: '';
  position: absolute;
  width: 220px;
  height: 220px;
  right: -100px;
  top: -115px;
  border-radius: 50%;
  background: rgba(255, 192, 20, .14);
  filter: blur(40px);
}

.trajectory-copy { position: relative; z-index: 1; }
.trajectory-copy small { color: var(--info-gold); font-size: 10px; letter-spacing: 1.8px; }
.trajectory-copy h2 { margin: 9px 0 13px; font-size: 34px; }

.trajectory-chart {
  position: relative;
  height: 170px;
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-top: 25px;
  padding: 17px 13px 25px;
  border-left: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 100% 32px;
}

.chart-bar {
  position: relative;
  flex: 1;
  min-width: 0;
  border: 1px solid rgba(255, 222, 108, .3);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  background: linear-gradient(to top, rgba(210, 119, 0, .55), #ffd83c);
  box-shadow: 0 0 18px rgba(255, 188, 17, .08);
  transform-origin: bottom;
  animation: infoChartGrow .9s cubic-bezier(.2,.8,.2,1) both;
}

.bar-one { height: 32%; }
.bar-two { height: 50%; animation-delay: .12s; }
.bar-three { height: 72%; animation-delay: .24s; }
.bar-four { height: 95%; animation-delay: .36s; }
.chart-bar span { position: absolute; left: 50%; bottom: -20px; color: #8e959f; font-size: 9px; transform: translateX(-50%); }

.info-footer {
  padding: 92px 16px 45px;
  text-align: center;
}

.info-footer-star {
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  margin: 0 auto 19px;
  border: 1px solid rgba(255, 212, 67, .3);
  border-radius: 50%;
  color: var(--info-gold);
  font-size: 29px;
  background: rgba(255, 201, 40, .06);
  box-shadow: 0 0 35px rgba(255, 181, 0, .12);
}

.info-footer-star img {
  display: block;
  width: 31px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 2px rgba(67, 35, 0, .72));
}

.info-footer h2 { font-size: 35px; }
.info-footer p { max-width: 430px; margin: 15px auto 27px; color: #858c96; font-size: 13px; line-height: 1.5; }
.info-footer > span { color: #656c77; font-size: 10px; font-weight: 700; letter-spacing: 2px; }

.info-ready .info-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s cubic-bezier(.2,.72,.2,1);
}

.info-ready .info-reveal.is-visible {
  opacity: 1;
  /* End on a real non-transformed layer. Android WebView can otherwise keep
     the whole section rasterized and intermittently drop trajectory text. */
  transform: none;
}

/* Keep the trajectory copy on the normal paint layer. Android Telegram
   WebView can discard text from a section that previously transitioned its
   opacity/transform while animated chart children are being composited. */
.info-trajectory-section {
  opacity: 1;
  transform: none;
  transition: none;
}

@keyframes infoFloatStar {
  0% { transform: translate3d(0, 18px, 0); opacity: 0; }
  18%, 78% { opacity: .8; }
  100% { transform: translate3d(11px, -60px, 0); opacity: 0; }
}

@keyframes infoPulse { 50% { opacity: .45; transform: scale(.72); } }
@keyframes infoGlow { 50% { transform: scale(1.22); opacity: .68; } }
@keyframes infoCoreHover { 50% { transform: translateY(-5px) rotate(3deg); } }
@keyframes infoOrbit { to { rotate: 360deg; } }
@keyframes infoTwinkle { 50% { opacity: .2; transform: scale(.55) rotate(45deg); } }
@keyframes infoDash { to { stroke-dashoffset: -120; } }
@keyframes infoNodePulse { 50% { box-shadow: 0 0 0 8px rgba(255, 194, 22, 0), 0 0 22px rgba(255, 189, 17, .45); } }
@keyframes infoChartGrow {
  from { transform: scaleY(0); opacity: 0; }
  to { transform: scaleY(1); opacity: 1; }
}

@media (min-width: 620px) {
  .info-shell { padding-inline: 28px; }
  .info-hero { padding-top: 58px; }
  .info-cosmos { width: 310px; height: 310px; }
  .info-core { inset: 91px; }
  .info-orbit { inset: 42px; }
  .info-orbit-two { inset: 24px; }
  .info-orbit-three { inset: 65px; }
  .info-story-card { padding: 30px 30px 30px 78px; }
  .info-story-mark { left: 30px; }
  .roadmap-step { grid-template-columns: 48px 1fr; gap: 20px; }
  .roadmap-node { width: 44px; height: 44px; }
  .info-roadmap::before { left: 30px; }
  .roadmap-card { padding: 24px; }
  .info-trajectory-card { display: grid; grid-template-columns: 1fr 1.05fr; align-items: end; gap: 24px; padding: 30px; }
  .trajectory-chart { margin-top: 0; }
}

@media (max-width: 370px) {
  .info-shell { padding-inline: 13px; }
  .info-hero h1 { font-size: 39px; }
  .info-hero-copy { font-size: 15px; }
  .info-cosmos { width: 250px; height: 250px; }
  .info-core { inset: 74px; }
  .info-orbit { inset: 34px; }
  .info-orbit-two { inset: 20px; }
  .info-orbit-three { inset: 52px; }
  .info-loop-item { width: 62px; height: 62px; }
  .roadmap-step { gap: 11px; }
  .roadmap-card { padding-inline: 15px; }
}

/* Compact animated presentation */
.info-shell { padding-bottom: 30px; }

.info-ambient {
  contain: layout paint style;
  background-image: none;
}

.info-ambient::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 32px 32px;
  animation: infoGridDrift 16s linear infinite;
}

.info-ambient::after {
  animation: infoAmbientOrbit 14s ease-in-out infinite alternate;
}

.info-ambient i:nth-child(9) { left: 48%; top: 13%; width: 2px; height: 2px; animation-delay: -3.8s; animation-duration: 6s; }
.info-ambient i:nth-child(10) { left: 62%; top: 38%; animation-delay: -6.2s; animation-duration: 10s; }
.info-ambient i:nth-child(11) { left: 35%; top: 59%; width: 2px; height: 2px; animation-delay: -1.2s; animation-duration: 7s; }
.info-ambient i:nth-child(12) { left: 55%; top: 86%; animation-delay: -5.4s; animation-duration: 9s; }

.info-shooting-stars { position: absolute; inset: 0; overflow: hidden; }
.info-shooting-stars span {
  position: absolute;
  width: 72px;
  height: 1px;
  border-radius: 99px;
  background: linear-gradient(90deg, transparent, rgba(255, 224, 105, .95));
  filter: drop-shadow(0 0 4px rgba(255, 201, 40, .9));
  opacity: 0;
  transform: rotate(-24deg);
  animation: infoShoot 6.5s linear infinite;
}
.info-shooting-stars span:nth-child(1) { top: 12%; left: -25%; animation-delay: 1s; }
.info-shooting-stars span:nth-child(2) { top: 32%; left: -30%; animation-delay: 4.7s; animation-duration: 8s; }
.info-shooting-stars span:nth-child(3) { top: 58%; left: -24%; animation-delay: 8.2s; animation-duration: 9s; }
.info-shooting-stars span:nth-child(4) { top: 82%; left: -28%; animation-delay: 12.1s; animation-duration: 10s; }

.info-hero {
  min-height: min(650px, 86vh);
  padding: 27px 4px 18px;
}

.info-kicker {
  position: relative;
  background:
    linear-gradient(105deg, rgba(255, 201, 40, .045) 0 43%, rgba(255, 232, 153, .16) 50%, rgba(255, 201, 40, .045) 57% 100%),
    rgba(255, 201, 40, .035);
  background-size: 260% 100%, auto;
  background-position: 100% 50%, 0 0;
  box-shadow: 0 0 24px rgba(255, 190, 20, .05);
  animation: infoKickerSurface 4.2s ease-in-out infinite;
  -webkit-font-smoothing: antialiased;
}

.info-kicker::after {
  content: none;
}

.info-hero h1 {
  margin-top: 16px;
  font-size: clamp(39px, 11.5vw, 70px);
}

.info-hero h1 em {
  background-size: 220% 100%;
  animation: infoTextShine 4s ease-in-out infinite;
}

.info-hero-copy,
.info-section-copy {
  margin-top: 14px;
  line-height: 1.45;
}

.info-cosmos {
  width: 242px;
  height: 242px;
  margin: 10px auto 2px;
}

.info-energy-ring {
  position: absolute;
  inset: 49px;
  border: 2px solid transparent;
  border-top-color: rgba(255, 220, 80, .78);
  border-right-color: rgba(255, 162, 0, .22);
  border-radius: 50%;
  filter: drop-shadow(0 0 7px rgba(255, 190, 20, .55));
  animation: infoEnergySpin 3.4s linear infinite;
}

.info-core { inset: 71px; animation-duration: 3s; }
.info-core img { width: 48px; animation: infoStarBeat 2.2s ease-in-out infinite; }
.info-orbit { inset: 33px; animation-duration: 7.5s; }
.info-orbit-two { inset: 20px; animation-duration: 11s; }
.info-orbit-three { inset: 52px; animation-duration: 5.5s; }

.info-particle {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #fff7c0;
  box-shadow: 0 0 8px #ffc928;
  animation: infoParticle 3.2s ease-in-out infinite;
}
.particle-one { top: 27%; left: 23%; animation-delay: -.4s; }
.particle-two { top: 21%; right: 27%; animation-delay: -1.1s; }
.particle-three { bottom: 25%; left: 18%; animation-delay: -1.8s; }
.particle-four { right: 19%; bottom: 30%; animation-delay: -2.5s; }

.info-section { padding: 44px 4px 14px; }
.info-section::before { top: 15px; }
.info-section h2 {
  margin-top: 8px;
  font-size: clamp(27px, 7.4vw, 42px);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -.65px;
}
.info-section-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 2.2px;
}
.info-section-label { animation: infoLabelGlow 3s ease-in-out infinite; }

.info-story-card { margin-top: 18px; padding: 20px 18px 20px 56px; }
.info-story-card::after { animation: infoStoryRings 7s linear infinite; }
.info-story-mark { top: 21px; left: 19px; animation: infoTwinkle 1.8s ease-in-out infinite; }
.info-card-orbit {
  position: absolute;
  width: 7px;
  height: 7px;
  right: 37px;
  bottom: 30px;
  border-radius: 50%;
  background: var(--info-gold);
  box-shadow: 0 0 13px var(--info-gold);
  animation: infoCardComet 5s ease-in-out infinite;
}

.info-loop { height: 180px; margin-top: 19px; }
.info-loop-line { inset: 13px 5% auto; }
.info-loop-item { width: 62px; height: 62px; animation: infoLoopBob 3s ease-in-out infinite; }
.loop-a { left: 4%; top: 63px; }
.loop-b { left: 28%; top: 18px; animation-delay: -.75s; }
.loop-c { right: 28%; bottom: 18px; animation-delay: -1.5s; }
.loop-d { right: 4%; top: 63px; animation-delay: -2.25s; }
.info-loop-runner {
  position: absolute;
  top: 50%;
  left: 8%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff4a0;
  box-shadow: 0 0 5px #fff, 0 0 16px #ffc400;
  animation: infoLoopRunner 5s ease-in-out infinite;
}

.info-roadmap { margin-top: 22px; }
.info-roadmap::after {
  content: '';
  position: absolute;
  z-index: 3;
  top: 20px;
  bottom: 35px;
  left: 19px;
  width: 19px;
  background:
    radial-gradient(
      circle,
      #fff 0 11%,
      #fff6b0 12% 22%,
      rgba(255, 196, 0, .92) 30%,
      rgba(255, 196, 0, .36) 48%,
      transparent 72%
    )
    50% 0 / 19px 19px no-repeat;
  opacity: 0;
  pointer-events: none;
  animation: infoRoadmapSignal 6s linear infinite;
}
.roadmap-step { margin-bottom: 12px; }
.roadmap-node { margin-top: 13px; }
.roadmap-card { padding: 16px 16px 15px; }
.roadmap-card { position: relative; overflow: hidden; }
.roadmap-card::after {
  content: '';
  position: absolute;
  inset: -50% auto -50% -45%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 225, 132, .08), transparent);
  transform: translateX(0) skewX(-18deg);
  animation: infoCardShine 7s ease-in-out infinite;
}
.roadmap-step:nth-child(2) .roadmap-card::after { animation-delay: -1.2s; }
.roadmap-step:nth-child(3) .roadmap-card::after { animation-delay: -2.4s; }
.roadmap-step:nth-child(4) .roadmap-card::after { animation-delay: -3.6s; }
.roadmap-step:nth-child(5) .roadmap-card::after { animation-delay: -4.8s; }
.roadmap-card h3 { margin: 7px 0 6px; font-size: 20px; }
.roadmap-tags { margin-top: 11px; }
.roadmap-step.is-visible .roadmap-card { animation: infoCardArrival .7s cubic-bezier(.2,.8,.2,1) both; }
.roadmap-step.is-visible .roadmap-node { animation: infoNodeArrival .65s cubic-bezier(.2,.9,.2,1) backwards; }
.roadmap-step.is-visible.is-next .roadmap-node {
  animation: infoNodeArrival .65s cubic-bezier(.2,.9,.2,1) backwards;
}
.roadmap-step.is-visible.is-next .roadmap-node::after {
  animation: infoNodePulse 2.4s .7s ease-in-out infinite;
}

.info-trajectory-card { margin-top: 12px; padding: 20px 17px 17px; }
.trajectory-chart { height: 145px; margin-top: 18px; }
.chart-bar { transform: scaleY(1); opacity: 1; animation: none; }
.info-ready .info-reveal:not(.is-visible) .chart-bar { transform: scaleY(0); opacity: 0; }
.info-reveal.is-visible .chart-bar {
  animation: infoChartGrow .9s cubic-bezier(.2,.8,.2,1) both, infoBarGlow 2.8s 1s ease-in-out infinite;
}

.info-footer { padding: 58px 16px 28px; }
.info-footer-star { animation: infoFooterStar 4s ease-in-out infinite; }

@keyframes infoGridDrift { to { background-position: 32px 32px; } }
@keyframes infoAmbientOrbit { to { transform: translateX(-50%) scale(1.1) rotate(12deg); opacity: .65; } }
@keyframes infoShoot {
  0%, 70% { opacity: 0; transform: translate3d(0, 0, 0) rotate(-24deg); }
  73% { opacity: 1; }
  88%, 100% { opacity: 0; transform: translate3d(135vw, -34vw, 0) rotate(-24deg); }
}
@keyframes infoKickerSurface {
  0%, 100% { background-position: 100% 50%, 0 0; border-color: rgba(255, 201, 40, .18); }
  50% { background-position: 0 50%, 0 0; border-color: rgba(255, 201, 40, .3); }
}
@keyframes infoTextShine { 0%, 100% { background-position: 0 50%; } 50% { background-position: 100% 50%; } }
@keyframes infoEnergySpin { to { transform: rotate(360deg) scale(1.04); } }
@keyframes infoStarBeat { 50% { transform: scale(1.1) rotate(-4deg); } }
@keyframes infoParticle { 50% { transform: translateY(-12px) scale(1.8); opacity: .25; } }
@keyframes infoStoryRings { to { transform: rotate(360deg); } }
@keyframes infoCardComet { 0%, 100% { transform: translate(0, 0); opacity: .2; } 50% { transform: translate(-75px, -38px); opacity: 1; } }
@keyframes infoLoopBob { 50% { transform: translateY(-6px); } }
@keyframes infoLoopRunner { 0% { transform: translate(0, 10px); } 33% { transform: translate(25vw, -42px); } 66% { transform: translate(55vw, 39px); } 100% { transform: translate(76vw, 10px); } }
@keyframes infoCardArrival { from { transform: translateX(24px); opacity: 0; } }
@keyframes infoNodeArrival { from { transform: scale(.3) rotate(-90deg); opacity: 0; } }
@keyframes infoBarGlow { 50% { filter: brightness(1.2); box-shadow: 0 0 22px rgba(255, 188, 17, .25); } }
@keyframes infoFooterStar { 50% { transform: translateY(-7px) rotate(12deg); box-shadow: 0 0 45px rgba(255, 181, 0, .28); } }
@keyframes infoLabelGlow { 50% { color: #ffe780; text-shadow: 0 0 12px rgba(255, 194, 25, .45); } }
@keyframes infoRoadmapSignal {
  0%, 7% { background-position: 50% 0; opacity: 0; }
  13% { opacity: 1; }
  86% { opacity: 1; }
  95%, 100% { background-position: 50% 100%; opacity: 0; }
}
@keyframes infoCardShine {
  0%, 68% { transform: translateX(0) skewX(-18deg); }
  100% { transform: translateX(607%) skewX(-18deg); }
}

@media (max-width: 370px) {
  .info-cosmos { width: 224px; height: 224px; }
  .info-core { inset: 66px; }
  .info-orbit { inset: 31px; }
  .info-orbit-two { inset: 18px; }
  .info-orbit-three { inset: 47px; }
  .info-energy-ring { inset: 45px; }
  .info-loop-item { width: 57px; height: 57px; }
}

@media (prefers-reduced-motion: reduce) {
  #info-page { scroll-behavior: auto; }
  .info-ready .info-reveal { transition-duration: .35s; }
}

@media (max-width: 619px) {
  /* The animated cosmos is one Canvas bitmap on mobile. No render state is
     changed during scrolling, so Android WebView always retains a full frame. */
  .info-cosmos {
    transform: none;
    transition: none;
  }

  .info-story-card,
  .info-trajectory-card,
  .roadmap-card {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .info-story-card {
    background:
      linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.018)),
      rgba(25, 31, 41, 0.96);
  }

  .info-energy-ring,
  .info-spark,
  .info-shooting-stars span {
    filter: none;
  }

  /* These two full-page surfaces are still visible, but stay paint-stable while
     the nested Telegram WebView scroller moves. Foreground motion remains on
     the hero, loop, particles, shooting stars, roadmap nodes and cards. */
  .info-ambient::before,
  .info-ambient::after {
    animation: none;
  }

  .info-ambient::before {
    background-position: 0 0;
  }

  .info-trajectory-card::before {
    content: none;
  }

  .trajectory-copy {
    position: static;
    z-index: auto;
    opacity: 1;
    visibility: visible;
    transform: none;
    filter: none;
  }

  .chart-bar,
  .info-ready .info-reveal:not(.is-visible) .chart-bar,
  .info-reveal.is-visible .chart-bar {
    opacity: 1;
    transform: none;
    animation: none;
    filter: none;
  }
}
