:root {
  color-scheme: dark;
  --bg: #050607;
  --bg-soft: #0a1013;
  --panel: rgba(14, 18, 22, 0.8);
  --panel-strong: rgba(16, 23, 28, 0.92);
  --stroke: rgba(255, 255, 255, 0.1);
  --stroke-strong: rgba(255, 123, 0, 0.28);
  --text: #f7f1e8;
  --muted: #a4adb3;
  --accent: #ff5b22;
  --accent-strong: #ff9c1a;
  --accent-soft: #ffd86f;
  --shadow: 0 28px 80px rgba(0, 0, 0, 0.45);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Space Grotesk", "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 88, 34, 0.18), transparent 28%),
    radial-gradient(circle at 85% 18%, rgba(255, 214, 111, 0.1), transparent 20%),
    linear-gradient(180deg, #07090a 0%, #040506 100%);
  color: var(--text);
  overflow-x: hidden;
}

html[lang="zh"] body,
html[lang="ja"] body,
html[lang="ko"] body {
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.5), transparent 85%);
  pointer-events: none;
  z-index: -3;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -12% -30% auto;
  width: 540px;
  height: 540px;
  background: radial-gradient(circle, rgba(255, 92, 34, 0.2) 0%, transparent 68%);
  filter: blur(50px);
  pointer-events: none;
  z-index: -2;
}

.speed-streak {
  position: fixed;
  left: -18vw;
  right: -18vw;
  --streak-angle: -14deg;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 111, 0.18), rgba(255, 99, 45, 0.85), transparent 78%);
  filter: blur(0.5px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.speed-streak::after {
  content: "";
  position: absolute;
  top: -6px;
  right: 18%;
  width: 120px;
  height: 14px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 219, 168, 0.7), rgba(255, 255, 255, 0));
  filter: blur(8px);
}

.speed-streak-a {
  top: 18%;
  --streak-angle: -14deg;
  animation: pageRush 7s linear infinite;
}

.speed-streak-b {
  top: 52%;
  --streak-angle: -9deg;
  animation: pageRush 9.2s linear infinite 1.4s;
  opacity: 0.42;
}

.speed-streak-c {
  top: 78%;
  --streak-angle: -12deg;
  animation: pageRush 8.4s linear infinite 2.8s;
  opacity: 0.32;
}

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

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

.background-orbit {
  position: fixed;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  pointer-events: none;
  z-index: -1;
}

.background-orbit-a {
  top: 6rem;
  right: -11rem;
  width: 480px;
  height: 480px;
  transform: rotate(18deg);
}

.background-orbit-b {
  left: -16rem;
  bottom: 6rem;
  width: 620px;
  height: 620px;
  transform: rotate(-18deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  isolation: isolate;
  overflow: visible;
  width: min(calc(100% - 32px), var(--content));
  margin: 20px auto 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 34px;
  background: rgba(6, 10, 12, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
  transition: padding-bottom 180ms ease;
}

.header-main {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 14px;
  overflow: visible;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(255, 96, 32, 0.24);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  flex: 1 1 auto;
  justify-content: flex-end;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  min-width: 212px;
  z-index: 30;
}

.language-switcher.is-open {
  z-index: 1000;
}

.language-trigger {
  position: relative;
  z-index: 230;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.language-trigger:hover,
.language-trigger:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 154, 56, 0.4);
}

.language-switcher.is-open .language-trigger {
  border-color: rgba(255, 154, 56, 0.48);
  background: linear-gradient(135deg, rgba(255, 90, 34, 0.22), rgba(255, 191, 81, 0.12));
  box-shadow: 0 10px 22px rgba(255, 94, 0, 0.16);
}

.language-trigger-copy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.language-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  min-height: 24px;
  padding: 0 6px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.22);
  color: var(--accent-soft);
  font-family: "Teko", sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.08em;
}

.language-name {
  font-size: 0.82rem;
  white-space: nowrap;
}

.language-chevron {
  color: var(--accent-soft);
  font-size: 0.78rem;
  transition: transform 180ms ease;
}

.language-switcher.is-open .language-chevron {
  transform: rotate(180deg);
}

.language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: min(420px, 80vw);
  isolation: isolate;
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top right, rgba(255, 98, 33, 0.12), transparent 32%),
    rgba(9, 13, 15, 0.97);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.45);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-8px) scale(0.98);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    visibility 180ms ease;
  z-index: 220;
  max-height: min(70vh, 420px);
  overflow-y: auto;
  overscroll-behavior: contain;
}

.language-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(10, 13, 15, 0.995), rgba(7, 10, 12, 0.995));
  z-index: -1;
}

.language-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  border: 0;
  padding: 0;
  background:
    radial-gradient(circle at top, rgba(255, 96, 32, 0.12), transparent 28%),
    rgba(3, 5, 6, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    visibility 180ms ease;
  z-index: 180;
}

.language-switcher.is-open .language-backdrop {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.language-switcher.is-open .language-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.language-menu-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.language-menu-button:hover,
.language-menu-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 154, 56, 0.4);
}

.language-menu-button.is-active {
  border-color: rgba(255, 154, 56, 0.48);
  background: linear-gradient(135deg, rgba(255, 90, 34, 0.22), rgba(255, 191, 81, 0.12));
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.section,
.site-footer {
  width: min(calc(100% - 32px), var(--content));
  margin: 0 auto;
}

.section {
  padding: 96px 0 0;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 42px;
  align-items: center;
  padding-top: 60px;
}

.hero-copy {
  position: relative;
}

.eyebrow,
.mini-label,
.card-index {
  display: inline-block;
  color: var(--accent-soft);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.76rem;
}

.hero h1,
.section-heading h2,
.site-footer h2,
.token-card h3,
.reward-card h3,
.pillar-card h3,
.source-card h3,
.event-card h3,
.roadmap-card h3 {
  font-family: "Teko", sans-serif;
  letter-spacing: 0.02em;
}

html[lang="zh"] .hero h1,
html[lang="zh"] .section-heading h2,
html[lang="zh"] .site-footer h2,
html[lang="zh"] .token-card h3,
html[lang="zh"] .reward-card h3,
html[lang="zh"] .pillar-card h3,
html[lang="zh"] .source-card h3,
html[lang="zh"] .event-card h3,
html[lang="zh"] .roadmap-card h3,
html[lang="ja"] .hero h1,
html[lang="ja"] .section-heading h2,
html[lang="ja"] .site-footer h2,
html[lang="ja"] .token-card h3,
html[lang="ja"] .reward-card h3,
html[lang="ja"] .pillar-card h3,
html[lang="ja"] .source-card h3,
html[lang="ja"] .event-card h3,
html[lang="ja"] .roadmap-card h3,
html[lang="ko"] .hero h1,
html[lang="ko"] .section-heading h2,
html[lang="ko"] .site-footer h2,
html[lang="ko"] .token-card h3,
html[lang="ko"] .reward-card h3,
html[lang="ko"] .pillar-card h3,
html[lang="ko"] .source-card h3,
html[lang="ko"] .event-card h3,
html[lang="ko"] .roadmap-card h3 {
  font-family: "Noto Sans SC", "Noto Sans JP", "Noto Sans KR", sans-serif;
  letter-spacing: 0;
}

.hero h1 {
  margin: 18px 0 18px;
  font-size: clamp(3rem, 7vw, 5.4rem);
  line-height: 0.92;
  max-width: 11ch;
}

.hero-text,
.section-lead,
.reward-card p,
.pillar-card p,
.event-card p,
.token-card p,
.roadmap-card p,
.source-card p,
.site-footer p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

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

.button-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-strong) 100%);
  color: #1a0d05;
  box-shadow: 0 18px 36px rgba(255, 94, 0, 0.24);
}

.button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.02);
}

.hero-tags {
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-tags li {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d9d1c8;
  font-size: 0.95rem;
}

.velocity-ruler {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 30px;
}

.velocity-ruler span {
  position: relative;
  display: block;
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.velocity-ruler span::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 95, 34, 0.18), rgba(255, 211, 138, 0.9), rgba(255, 95, 34, 0.18));
  transform: translateX(-65%);
  animation: laneSurge 2.8s linear infinite;
}

.velocity-ruler span:nth-child(2)::before {
  animation-delay: 0.28s;
}

.velocity-ruler span:nth-child(3)::before {
  animation-delay: 0.56s;
}

.velocity-ruler span:nth-child(4)::before {
  animation-delay: 0.84s;
}

.hero-visual {
  position: relative;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --pointer-x: 56%;
  --pointer-y: 42%;
  min-height: 580px;
  border-radius: 40px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(255, 121, 29, 0.26), transparent 25%),
    radial-gradient(circle at 10% 90%, rgba(255, 214, 111, 0.12), transparent 24%),
    linear-gradient(160deg, rgba(20, 26, 30, 0.92), rgba(8, 11, 13, 0.98));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  transform: perspective(1400px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 14% -24% auto auto;
  width: 420px;
  height: 420px;
  background:
    radial-gradient(circle at var(--pointer-x) var(--pointer-y), rgba(255, 255, 255, 0.15), transparent 18%),
    conic-gradient(from 220deg, rgba(255, 83, 32, 0.8), rgba(255, 148, 20, 0.3), transparent 40%);
  filter: blur(20px);
  opacity: 0.9;
}

.hero-visual::after {
  content: "";
  position: absolute;
  left: -12%;
  right: -10%;
  bottom: 16%;
  height: 14px;
  background: linear-gradient(90deg, transparent, rgba(194, 227, 248, 0.72), transparent);
  filter: blur(12px);
}

.hero-visual:hover {
  border-color: rgba(255, 154, 56, 0.2);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.5);
}

.visual-ring {
  position: absolute;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.visual-ring-a {
  inset: 22% 11% auto auto;
  width: 220px;
  height: 220px;
}

.visual-ring-b {
  inset: 12% auto auto 12%;
  width: 120px;
  height: 120px;
}

.visual-ring-c {
  inset: auto 14% 14% auto;
  width: 160px;
  height: 160px;
}

.hero-lanes {
  position: absolute;
  inset: 18% -14% 14% -12%;
  transform: skewX(-22deg);
  pointer-events: none;
}

.hero-lane {
  position: absolute;
  left: -20%;
  width: 88%;
  height: 12px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 205, 0.12), rgba(255, 108, 35, 0.92), transparent 82%);
  filter: blur(2px);
  animation: heroRush 4.6s linear infinite;
  opacity: 0.8;
}

.hero-lane::after {
  content: "";
  position: absolute;
  inset: -6px -12px;
  border-radius: inherit;
  background: inherit;
  filter: blur(14px);
  opacity: 0.7;
}

.hero-lane-a {
  top: 22%;
  animation-delay: 0s;
}

.hero-lane-b {
  top: 36%;
  height: 8px;
  opacity: 0.55;
  animation-delay: 0.9s;
}

.hero-lane-c {
  top: 58%;
  animation-delay: 1.8s;
}

.hero-lane-d {
  top: 74%;
  height: 7px;
  opacity: 0.46;
  animation-delay: 2.6s;
}

.hero-speed-disc {
  position: absolute;
  top: 14%;
  left: 9%;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0.78;
}

.disc-ring,
.disc-core,
.disc-needle {
  position: absolute;
  inset: 0;
  border-radius: 50%;
}

.disc-ring-a {
  border: 1px solid rgba(255, 214, 111, 0.26);
  animation: discPulse 3.6s ease-out infinite;
}

.disc-ring-b {
  inset: 14px;
  border: 1px solid rgba(255, 95, 34, 0.34);
  animation: discPulse 3.6s ease-out infinite 0.6s;
}

.disc-core {
  inset: 38px;
  background: radial-gradient(circle, rgba(255, 223, 173, 0.92), rgba(255, 100, 34, 0.22));
  box-shadow: 0 0 18px rgba(255, 158, 58, 0.34);
}

.disc-needle {
  inset: 16px;
  background:
    linear-gradient(135deg, transparent 47%, rgba(255, 222, 162, 0.92) 49%, rgba(255, 93, 34, 0.92) 52%, transparent 54%);
  animation: needleSweep 2.7s ease-in-out infinite alternate;
}

.hero-logo {
  position: absolute;
  inset: 18% 12% auto 6%;
  width: 88%;
  opacity: 0.98;
  filter: drop-shadow(0 26px 48px rgba(0, 0, 0, 0.3));
  animation: drift 9s ease-in-out infinite;
}

.floating-card,
.token-badge,
.reward-card,
.pillar-card,
.token-card,
.roadmap-card,
.event-card,
.source-card {
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: linear-gradient(180deg, rgba(18, 23, 27, 0.82), rgba(10, 14, 16, 0.9));
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.floating-card {
  position: absolute;
  max-width: 250px;
  padding: 18px 20px;
  border-radius: 22px;
  transform: translateZ(30px);
}

.floating-card-top {
  top: 12%;
  right: 6%;
}

.floating-card-bottom {
  left: 7%;
  bottom: 10%;
}

.floating-card strong,
.token-badge strong {
  display: block;
  margin: 8px 0;
  font-size: 1.05rem;
}

.floating-label {
  color: var(--accent-soft);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.floating-card p,
.token-badge span {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.55;
}

.token-badge {
  position: absolute;
  right: 10%;
  bottom: 11%;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 999px;
  transform: translateZ(36px);
}

.token-badge img {
  width: 50px;
  height: 50px;
  border-radius: 16px;
}

.ticker {
  width: 100%;
  overflow: hidden;
  margin-top: 44px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.02);
}

.ticker-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding: 18px 0;
  animation: marquee 26s linear infinite;
  font-family: "Teko", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.ticker-track span::after {
  content: " /";
  margin-left: 28px;
  color: rgba(255, 150, 45, 0.6);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-heading h2,
.site-footer h2 {
  margin: 16px 0 12px;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 0.98;
}

.pillar-grid,
.reward-grid,
.roadmap-grid,
.events-grid,
.sources-list,
.token-layout {
  display: grid;
  gap: 18px;
}

.pillar-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.reward-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.events-grid,
.sources-list,
.token-layout {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.competition-track {
  position: relative;
  margin-bottom: 24px;
  padding: 26px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top left, rgba(255, 122, 31, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(15, 19, 22, 0.92), rgba(8, 10, 12, 0.96));
  overflow: hidden;
}

.competition-track::before {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(255, 95, 34, 0.16), transparent 68%);
  filter: blur(30px);
  pointer-events: none;
}

.competition-track-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 24px;
}

.competition-track-copy {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  text-align: right;
}

.competition-track-canvas {
  position: relative;
  min-height: 640px;
}

.competition-track-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.competition-track-shadow,
.competition-track-path,
.competition-track-glow {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.competition-track-shadow {
  stroke: rgba(0, 0, 0, 0.45);
  stroke-width: 48;
  filter: blur(20px);
}

.competition-track-path {
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 34;
}

.competition-track-glow {
  stroke: url(#competition-track-gradient);
  stroke-width: 18;
  stroke-dasharray: 12 16;
  filter: drop-shadow(0 0 14px rgba(255, 128, 44, 0.48));
  animation: trackPulse 6.2s linear infinite;
}

.competition-track-points {
  position: absolute;
  inset: 0;
}

.track-point {
  position: absolute;
  left: var(--point-x);
  top: var(--point-y);
  transform: translate(-50%, -50%);
  z-index: 1;
}

.track-point::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 42px;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 212, 109, 0.7), rgba(255, 255, 255, 0));
  filter: blur(0.4px);
}

.track-point.is-left::after {
  left: 56px;
}

.track-point.is-right::after {
  right: 56px;
  transform: scaleX(-1);
}

.track-point.is-center::after {
  left: 50%;
  top: 58px;
  width: 2px;
  height: 34px;
  background: linear-gradient(180deg, rgba(255, 212, 109, 0.7), rgba(255, 255, 255, 0));
  transform: translateX(-50%);
}

.track-marker {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255, 240, 219, 0.9), rgba(255, 118, 31, 0.92) 44%, rgba(92, 27, 8, 0.95));
  color: #2b1207;
  font-family: "Teko", sans-serif;
  font-size: 1.65rem;
  letter-spacing: 0.04em;
  box-shadow:
    0 0 0 1px rgba(255, 226, 171, 0.18),
    0 14px 32px rgba(255, 94, 0, 0.24);
}

.track-marker::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 203, 112, 0.2);
  animation: markerPulse 3.4s ease-out infinite;
}

.track-card {
  position: absolute;
  width: 190px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(17, 22, 25, 0.92), rgba(10, 13, 15, 0.96));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.42);
  animation: trackFloat 4.8s ease-in-out infinite;
}

.track-point.is-left .track-card {
  left: 74px;
  top: 50%;
  transform: translateY(-50%);
}

.track-point.is-right .track-card {
  right: 74px;
  top: 50%;
  transform: translateY(-50%);
  text-align: right;
}

.track-point.is-center .track-card {
  top: 84px;
  left: 50%;
  width: 220px;
  transform: translateX(-50%);
  text-align: center;
  animation-name: trackFloatCenter;
}

.track-point:nth-child(2) .track-card {
  animation-delay: 0.3s;
}

.track-point:nth-child(3) .track-card {
  animation-delay: 0.6s;
}

.track-point:nth-child(4) .track-card {
  animation-delay: 0.9s;
}

.track-point:nth-child(5) .track-card {
  animation-delay: 1.2s;
}

.track-point:nth-child(6) .track-card {
  animation-delay: 1.5s;
}

.track-point:nth-child(7) .track-card {
  animation-delay: 1.8s;
}

.track-point:nth-child(8) .track-card {
  animation-delay: 2.1s;
}

.track-point:nth-child(9) .track-card {
  animation-delay: 2.4s;
}

.track-card-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.track-card-date {
  display: block;
  margin: 12px 0 8px;
  font-family: "Teko", sans-serif;
  font-size: 1.45rem;
  line-height: 1;
  color: #ffe0ac;
}

.track-card-title {
  margin: 0;
  color: #f3ede4;
  font-size: 0.98rem;
  line-height: 1.45;
}

.section-panel {
  padding: 42px 30px 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 40px;
  background:
    radial-gradient(circle at top right, rgba(255, 98, 33, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(9, 13, 15, 0.92), rgba(5, 7, 8, 0.96));
}

.pillar-card,
.reward-card,
.roadmap-card,
.event-card,
.source-card,
.token-card {
  position: relative;
  padding: 24px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.pillar-card::after,
.reward-card::after,
.roadmap-card::after,
.event-card::after,
.source-card::after,
.token-card::after {
  content: "";
  position: absolute;
  top: -26%;
  bottom: -26%;
  left: -26%;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(255, 245, 230, 0.14), transparent);
  transform: skewX(-18deg) translateX(-220%);
  opacity: 0;
}

.pillar-card:hover,
.reward-card:hover,
.roadmap-card:hover,
.event-card:hover,
.source-card:hover,
.token-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 154, 56, 0.24);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.42);
}

.pillar-card:hover::after,
.reward-card:hover::after,
.roadmap-card:hover::after,
.event-card:hover::after,
.source-card:hover::after,
.token-card:hover::after {
  opacity: 1;
  animation: cardSweep 900ms ease forwards;
}

.pillar-card h3,
.reward-card h3,
.token-card h3,
.source-card h3,
.roadmap-card h3,
.event-card h3 {
  margin: 14px 0 10px;
  font-size: 1.55rem;
  line-height: 1;
}

.event-card {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
}

.event-card > :not(.event-media) {
  padding-left: 24px;
  padding-right: 24px;
}

.event-card > .event-meta {
  padding-top: 20px;
}

.event-card > .event-link {
  padding-bottom: 24px;
}

.event-media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.event-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 40%;
  background: linear-gradient(180deg, rgba(8, 10, 12, 0), rgba(8, 10, 12, 0.42));
  pointer-events: none;
}

.event-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 280ms ease;
}

.event-card:hover .event-media img {
  transform: scale(1.04);
}

.card-topline,
.roadmap-phase,
.event-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.pill-badge,
.event-badge,
.source-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reward-card p,
.pillar-card p,
.token-card p,
.event-card p,
.roadmap-card p,
.source-card p {
  margin: 0;
}

.token-layout {
  align-items: stretch;
}

.token-card-primary {
  grid-column: 1 / -1;
  background:
    radial-gradient(circle at top right, rgba(255, 118, 31, 0.18), transparent 26%),
    linear-gradient(180deg, rgba(19, 24, 27, 0.92), rgba(10, 13, 15, 0.96));
}

.token-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.copy-button {
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  border-radius: 999px;
  padding: 12px 16px;
  font: inherit;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.copy-button:hover,
.copy-button:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 146, 32, 0.4);
}

.contract-address {
  margin: 0 0 22px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: #ffcb8a;
  word-break: break-all;
}

.token-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.token-stats div {
  padding: 16px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.token-stats span {
  display: block;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.token-stats strong {
  font-family: "Teko", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

.detail-list,
.roadmap-points {
  margin: 14px 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
}

.detail-list li,
.roadmap-points li {
  margin: 0 0 10px;
  line-height: 1.6;
}

.roadmap-phase strong,
.event-date {
  font-family: "Teko", sans-serif;
  font-size: 1.75rem;
  line-height: 1;
}

.event-date {
  color: var(--accent-soft);
  letter-spacing: 0.04em;
}

.event-card a,
.source-card a {
  color: #ffd29d;
}

.event-link,
.source-link {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #ffd29d;
  font-weight: 700;
}

.event-link::after,
.source-link::after {
  content: "→";
}

.event-link {
  margin-bottom: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: start;
  padding: 96px 0 64px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer-copy {
  max-width: 640px;
}

.footer-contact {
  display: grid;
  gap: 10px;
}

.footer-contact-label {
  color: var(--accent-soft);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
}

.footer-contact-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.footer-contact-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 0;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.018));
  color: #f3ede4;
  text-decoration: none;
  transition:
    border-color 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.footer-contact-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 3px;
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 168, 79, 0.95), rgba(255, 209, 128, 0.45));
}

.footer-contact-card:hover {
  border-color: rgba(255, 206, 119, 0.24);
  background-color: rgba(255, 255, 255, 0.045);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.16);
}

.footer-contact-kicker {
  position: relative;
  z-index: 1;
  color: var(--accent-soft);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.66rem;
}

.footer-contact-card strong {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: "Space Grotesk", sans-serif;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  font-size: clamp(0.94rem, 1.15vw, 1rem);
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: #ffffff;
  word-break: break-word;
  text-align: right;
}

.telegram-mark {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  object-fit: contain;
  box-shadow: 0 0 10px rgba(48, 172, 238, 0.14);
}

.footer-contact-note {
  position: relative;
  z-index: 1;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-contact-card:hover strong {
  color: #ffe8bf;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0) rotate(0.2deg);
  }

  50% {
    transform: translateY(-10px) rotate(-0.4deg);
  }
}

@keyframes pageRush {
  from {
    transform: translate3d(-8%, 0, 0) rotate(var(--streak-angle));
  }

  to {
    transform: translate3d(22%, 0, 0) rotate(var(--streak-angle));
  }
}

@keyframes laneSurge {
  from {
    transform: translateX(-72%);
  }

  to {
    transform: translateX(108%);
  }
}

@keyframes heroRush {
  from {
    transform: translateX(-24%) scaleX(0.82);
  }

  to {
    transform: translateX(74%) scaleX(1.06);
  }
}

@keyframes discPulse {
  0% {
    opacity: 0.2;
    transform: scale(0.94);
  }

  50% {
    opacity: 0.9;
    transform: scale(1.02);
  }

  100% {
    opacity: 0.2;
    transform: scale(1.08);
  }
}

@keyframes needleSweep {
  0% {
    transform: rotate(-42deg);
  }

  100% {
    transform: rotate(28deg);
  }
}

@keyframes cardSweep {
  from {
    transform: skewX(-18deg) translateX(-220%);
  }

  to {
    transform: skewX(-18deg) translateX(430%);
  }
}

@keyframes trackPulse {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -280;
  }
}

@keyframes markerPulse {
  0% {
    opacity: 0.2;
    transform: scale(0.86);
  }

  55% {
    opacity: 0.85;
    transform: scale(1.12);
  }

  100% {
    opacity: 0.05;
    transform: scale(1.28);
  }
}

@keyframes trackFloat {
  0%,
  100% {
    transform: translateY(-50%);
  }

  50% {
    transform: translateY(calc(-50% - 6px));
  }
}

@keyframes trackFloatCenter {
  0%,
  100% {
    transform: translateX(-50%);
  }

  50% {
    transform: translate(-50%, -6px);
  }
}

@media (max-width: 1040px) {
  .hero,
  .site-footer,
  .events-grid,
  .sources-list,
  .token-layout {
    grid-template-columns: 1fr;
  }

  .pillar-grid,
  .reward-grid,
  .roadmap-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero h1 {
    max-width: none;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-speed-disc {
    width: 98px;
    height: 98px;
  }

  .competition-track-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .competition-track-copy {
    max-width: none;
    text-align: left;
  }

  .token-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .site-header {
    position: relative;
    z-index: 500;
    border-radius: 28px;
    padding-bottom: var(--language-menu-reserve, 14px);
  }

  body.language-menu-open .site-header {
    z-index: 2200;
  }

  .header-main {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .language-switcher {
    min-width: 0;
    width: 100%;
  }

  body.language-menu-open .language-switcher,
  body.language-menu-open .header-main {
    position: relative;
    z-index: 2300;
  }

  .language-backdrop {
    display: none !important;
  }

  .language-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    width: 100%;
    max-width: none;
    padding: 12px;
    gap: 8px;
    border-radius: 26px;
    background: rgba(8, 11, 13, 0.995);
    box-shadow:
      0 30px 80px rgba(0, 0, 0, 0.5),
      inset 0 1px 0 rgba(255, 255, 255, 0.04);
    z-index: 2400;
  }

  .language-menu-button {
    position: relative;
    z-index: 1;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(20, 25, 29, 0.98);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  }

  .language-menu-button.is-active {
    background: linear-gradient(135deg, rgba(61, 36, 18, 0.98), rgba(78, 44, 14, 0.98));
    border-color: rgba(255, 154, 56, 0.4);
  }

  .footer-contact-links {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    width: 100%;
  }

  .footer-contact-card {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .footer-contact-card strong {
    text-align: left;
  }

  .section {
    padding-top: 74px;
  }

  .hero {
    padding-top: 34px;
    gap: 28px;
  }

  .hero h1 {
    font-size: clamp(2.6rem, 12vw, 4rem);
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-lanes {
    inset: 22% -18% 18% -22%;
  }

  .hero-speed-disc {
    top: 10%;
    left: 8%;
    width: 82px;
    height: 82px;
  }

  .disc-core {
    inset: 24px;
  }

  .competition-track {
    padding: 22px 18px;
  }

  .competition-track-canvas {
    min-height: auto;
  }

  .competition-track-svg {
    display: none;
  }

  .competition-track-points {
    position: relative;
    display: grid;
    gap: 16px;
    padding-left: 18px;
  }

  .competition-track-points::before {
    content: "";
    position: absolute;
    left: 26px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(180deg, rgba(255, 140, 41, 0.82), rgba(255, 220, 155, 0.18));
  }

  .track-point {
    position: relative;
    left: auto;
    top: auto;
    transform: none;
    display: grid;
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
  }

  .track-point::after {
    display: none;
  }

  .track-card {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    width: auto;
    transform: none;
    animation: none;
    text-align: left;
  }

  .track-point.is-center .track-card,
  .track-point.is-left .track-card,
  .track-point.is-right .track-card {
    width: auto;
    transform: none;
    text-align: left;
  }

  .floating-card {
    max-width: 220px;
    padding: 16px;
  }

  .token-badge {
    right: 6%;
    bottom: 6%;
    padding: 12px 14px;
  }

  .pillar-grid,
  .reward-grid,
  .roadmap-grid,
  .events-grid,
  .sources-list,
  .token-layout,
  .token-stats {
    grid-template-columns: 1fr;
  }

  .section-panel {
    padding: 32px 18px 0;
    border-radius: 28px;
  }

  .token-card-header {
    align-items: flex-start;
    flex-direction: column;
  }
}
