:root {
  --bg: #050205;
  --panel: rgba(18, 6, 8, 0.76);
  --panel-strong: rgba(24, 7, 10, 0.92);
  --line: rgba(255, 58, 72, 0.28);
  --line-strong: rgba(255, 58, 72, 0.56);
  --red: #ff2639;
  --red-2: #ff5c66;
  --red-dark: #8c0812;
  --white: #fff6f7;
  --muted: rgba(255, 238, 240, 0.68);
  --soft: rgba(255, 238, 240, 0.48);
  --shadow: 0 24px 80px rgba(255, 25, 44, 0.15);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1280px;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 5%, rgba(255, 38, 57, 0.16), transparent 34rem),
    radial-gradient(circle at 90% 15%, rgba(255, 38, 57, 0.12), transparent 26rem),
    linear-gradient(180deg, #030103 0%, #090304 45%, #030103 100%);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

#matrixCanvas,
#nodesCanvas {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: -5;
}
#nodesCanvas { z-index: -4; opacity: 0.82; }
.bg-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.022) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}
.bg-radial {
  position: fixed;
  width: 52vw;
  aspect-ratio: 1;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(40px);
  z-index: -2;
  opacity: .38;
}
.bg-radial-a { left: -16vw; top: 14vh; background: radial-gradient(circle, rgba(255, 39, 57, .34), transparent 62%); }
.bg-radial-b { right: -18vw; top: 52vh; background: radial-gradient(circle, rgba(255, 39, 57, .2), transparent 60%); }
.floating-chain {
  position: fixed;
  width: 46vw;
  height: 68px;
  z-index: -2;
  pointer-events: none;
  opacity: .38;
  background: repeating-linear-gradient(90deg, transparent 0 26px, rgba(255, 38, 57, .28) 27px 56px, transparent 57px 82px);
  border-top: 1px solid rgba(255, 58, 72, .2);
  border-bottom: 1px solid rgba(255, 58, 72, .15);
  filter: blur(.3px) drop-shadow(0 0 16px rgba(255, 32, 52, .45));
}
.chain-left { left: -18vw; top: 17vh; transform: rotate(23deg); animation: chainMove 12s linear infinite alternate; }
.chain-right { right: -17vw; top: 17vh; transform: rotate(-23deg); animation: chainMoveRight 12s linear infinite alternate; }
@keyframes chainMove { from { translate: -16px 0; } to { translate: 28px 14px; } }
@keyframes chainMoveRight { from { translate: 18px 0; } to { translate: -30px 14px; } }

.container { width: min(var(--max), calc(100% - 40px)); margin-inline: auto; }
.section { position: relative; padding: 68px 0; }
.compact-section { padding-top: 24px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 2, 5, .92), rgba(5, 2, 5, .62));
  border-bottom: 1px solid rgba(255, 55, 72, .25);
  box-shadow: 0 8px 40px rgba(0,0,0,.4);
}
.header-inner {
  width: min(1500px, calc(100% - 32px));
  margin-inline: auto;
  min-height: 78px;
  display: grid;
  grid-template-columns: auto auto 1fr auto auto;
  align-items: center;
  gap: 18px;
}
.brand { display: inline-flex; align-items: center; gap: 13px; min-width: max-content; }
.brand-logo {
  width: 50px; height: 50px;
  border-radius: 14px;
  overflow: hidden;
  background: #070303;
  box-shadow: 0 0 0 1px rgba(255, 56, 70, .24), 0 0 28px rgba(255, 39, 57, .2);
}
.brand-logo img { width: 100%; height: 100%; object-fit: cover; }
.brand-text { display: grid; line-height: 1.05; }
.brand-text strong { font-size: 21px; letter-spacing: .06em; }
.brand-text small { color: var(--muted); font-size: 12px; }
.language-shell { position: relative; }
.lang-toggle,
.lang-menu button {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--white);
  background: rgba(255,255,255,.035);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 12px;
}
.lang-toggle {
  height: 40px; padding: 0 12px; cursor: pointer;
  transition: .25s ease;
}
.lang-toggle:hover { border-color: var(--line-strong); box-shadow: 0 0 18px rgba(255, 38, 57, .18); }
.lang-toggle svg { width: 17px; height: 17px; fill: currentColor; color: rgba(255,255,255,.84); }
.lang-toggle .chev { width: 14px; height: 14px; opacity: .7; }
.lang-menu {
  position: absolute;
  top: calc(100% + 10px); left: 0;
  width: 150px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(8, 2, 4, .95);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: .2s ease;
}
.lang-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu button {
  width: 100%; justify-content: flex-start;
  height: 38px; padding: 0 10px; cursor: pointer;
  border-color: transparent;
  background: transparent;
}
.lang-menu button:hover { background: rgba(255, 38, 57, .12); border-color: rgba(255, 38, 57, .18); }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(16px, 2vw, 34px); }
.desktop-nav a {
  position: relative;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  font-weight: 650;
  transition: .25s ease;
}
.desktop-nav a:hover, .desktop-nav a.active { color: #fff; }
.desktop-nav a::after {
  content: "";
  position: absolute; left: 50%; bottom: -29px;
  width: 0; height: 2px;
  background: var(--red);
  box-shadow: 0 0 14px var(--red);
  transform: translateX(-50%);
  transition: .25s ease;
}
.desktop-nav a:hover::after, .desktop-nav a.active::after { width: 100%; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.social-btn,
.mobile-socials a,
.footer-socials a,
.community-actions a {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  color: rgba(255,255,255,.9);
  border: 1px solid rgba(255, 47, 65, .42);
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(255, 42, 58, .08), rgba(255, 42, 58, .02));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.02), 0 0 18px rgba(255, 38, 57, .08);
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease, background .25s ease;
}
.social-btn:hover,
.mobile-socials a:hover,
.footer-socials a:hover,
.community-actions a:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 89, 99, .8);
  box-shadow: 0 10px 32px rgba(255, 38, 57, .18);
  background: linear-gradient(180deg, rgba(255, 42, 58, .18), rgba(255, 42, 58, .05));
}
.icon { width: 16px; height: 16px; display: inline-block; flex: 0 0 16px; background: var(--red-2); }
.telegram-icon {
  clip-path: polygon(2% 45%, 100% 0, 76% 100%, 48% 67%, 28% 83%, 34% 58%);
}
.x-icon {
  width: 18px; height: 18px; position: relative; background: none;
}
.x-icon::before, .x-icon::after {
  content: ""; position: absolute; left: 8px; top: 0;
  width: 2px; height: 18px; border-radius: 3px; background: rgba(255,255,255,.9);
}
.x-icon::before { transform: rotate(45deg); }
.x-icon::after { transform: rotate(-45deg); }
.icon-only { min-width: 42px; padding: 0 10px; }
.menu-toggle { display: none; width: 42px; height: 42px; border: 1px solid var(--line); border-radius: 12px; background: rgba(255,255,255,.04); cursor: pointer; }
.menu-toggle span { display: block; width: 20px; height: 2px; background: #fff; margin: 5px auto; border-radius: 999px; transition: .2s ease; }
.mobile-panel { display: none; }

.hero { padding-top: 78px; }
.hero-grid {
  min-height: 640px;
  display: grid;
  grid-template-columns: minmax(360px, .9fr) minmax(440px, 1.1fr);
  gap: 56px;
  align-items: center;
}
.hero-visual { position: relative; min-height: 540px; display: grid; place-items: center; }
.logo-orbit {
  position: relative;
  width: min(450px, 92vw);
  aspect-ratio: 1;
  display: grid; place-items: center;
  perspective: 900px;
}
.logo-orbit img {
  width: 74%; height: 74%; object-fit: cover;
  border-radius: 42px;
  filter: drop-shadow(0 18px 55px rgba(255, 38, 57, .62));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo { 0%,100% { transform: translateY(0) rotateX(0deg); } 50% { transform: translateY(-16px) rotateX(5deg); } }
.orbit-ring {
  position: absolute;
  inset: 7%;
  border: 1px solid rgba(255, 62, 76, .3);
  border-radius: 50%;
  transform: rotateX(68deg);
  box-shadow: 0 0 28px rgba(255, 32, 52, .25), inset 0 0 28px rgba(255, 32, 52, .16);
}
.ring-a { animation: spin 12s linear infinite; }
.ring-b { inset: 18%; transform: rotateX(68deg) rotateZ(25deg); animation: spin 10s linear infinite reverse; }
.ring-c { inset: 29%; transform: rotateX(68deg) rotateZ(-55deg); animation: spin 8s linear infinite; border-style: dashed; }
@keyframes spin { to { rotate: 360deg; } }
.scan-light {
  position: absolute;
  top: 14%; left: 50%; width: 2px; height: 72%;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.75), transparent);
  filter: blur(.5px) drop-shadow(0 0 8px rgba(255,255,255,.8));
  opacity: .5;
  animation: scan 5s ease-in-out infinite;
}
@keyframes scan { 0%,100% { transform: translateX(-180px); opacity: 0; } 35%,65% { opacity: .55; } 50% { transform: translateX(180px); } }
.holo-platform {
  position: absolute;
  left: 50%; bottom: 45px;
  width: min(520px, 96%); height: 95px;
  transform: translateX(-50%) perspective(900px) rotateX(70deg);
  border: 2px solid rgba(255, 38, 57, .46);
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(255, 38, 57, .28), transparent 30%),
    repeating-radial-gradient(circle, transparent 0 18px, rgba(255, 38, 57, .2) 19px 20px);
  box-shadow: 0 0 42px rgba(255, 38, 57, .35), inset 0 0 36px rgba(255, 38, 57, .2);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .65; transform: translateX(-50%) perspective(900px) rotateX(70deg) scale(.96); } }
.hero-copy { position: relative; z-index: 2; }
.eyebrow,
.section-kicker {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--red-2);
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
}
.eyebrow span {
  width: 34px; height: 1px;
  background: var(--red);
  box-shadow: 0 0 12px var(--red);
}
.eyebrow em, .section-kicker em { font-style: normal; }
.hero-copy h1 {
  margin: 18px 0 0;
  font-size: clamp(56px, 7vw, 116px);
  line-height: .92;
  letter-spacing: -.06em;
}
.hero-copy h1 strong {
  color: var(--red);
  text-shadow: 0 0 30px rgba(255, 38, 57, .48);
}
.hero-copy h1 span { color: #fff; }
.hero-copy h2 {
  margin: 12px 0 18px;
  color: var(--red-2);
  font-size: clamp(34px, 4vw, 66px);
  letter-spacing: .05em;
  text-shadow: 0 0 24px rgba(255, 38, 57, .32);
}
.hero-copy p {
  width: min(700px, 100%);
  color: rgba(255,255,255,.84);
  font-size: clamp(18px, 1.5vw, 25px);
  line-height: 1.55;
  margin: 0 0 28px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 22px; }
.primary-btn,
.ghost-btn {
  min-height: 58px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 30px;
  border-radius: 16px;
  font-weight: 850;
  letter-spacing: .01em;
  transition: .25s ease;
}
.primary-btn {
  background: linear-gradient(135deg, #ff2138, #b80d18);
  color: #fff;
  box-shadow: 0 18px 48px rgba(255, 35, 52, .32), inset 0 0 0 1px rgba(255,255,255,.18);
}
.primary-btn::after { content: "→"; margin-left: 14px; font-size: 22px; }
.ghost-btn {
  border: 1px solid rgba(255, 60, 74, .56);
  background: rgba(255,255,255,.035);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.03);
}
.primary-btn:hover,
.ghost-btn:hover { transform: translateY(-3px); box-shadow: 0 24px 56px rgba(255, 38, 57, .28); }
.contract-box {
  width: min(720px, 100%);
  display: grid;
  grid-template-columns: 24px 1fr 24px;
  align-items: center;
  gap: 13px;
  padding: 17px 18px;
  border: 1px solid var(--line-strong);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 6, 8, .86), rgba(8, 2, 4, .8));
  box-shadow: 0 0 30px rgba(255, 38, 57, .12);
  cursor: pointer;
  overflow: hidden;
}
.contract-box p { display: flex; align-items: center; gap: 12px; margin: 0; min-width: 0; font-size: 14px; }
.contract-box b { color: var(--red-2); font-size: 14px; }
.contract-box em { color: rgba(255,255,255,.78); font-style: normal; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.contract-icon,
.copy-icon {
  width: 22px; height: 22px; display: block; position: relative;
  border: 1px solid rgba(255, 66, 80, .65); border-radius: 5px;
}
.contract-icon::after { content: ""; position: absolute; inset: 5px; border-top: 2px solid var(--red); border-bottom: 2px solid var(--red); }
.copy-icon::before { content: ""; position: absolute; width: 14px; height: 14px; left: 5px; top: 3px; border: 1px solid rgba(255,255,255,.68); border-radius: 3px; }
.copy-icon::after { content: ""; position: absolute; width: 14px; height: 14px; left: 2px; top: 6px; border: 1px solid var(--red); border-radius: 3px; background: rgba(255, 38, 57, .08); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: -36px;
}
.stat-card {
  position: relative;
  min-height: 116px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(28, 8, 12, .82), rgba(7, 2, 4, .78));
  overflow: hidden;
}
.stat-card::before,
.feature-card::before,
.token-panel::before,
.community-panel::before,
.airdrop-panel::before,
.roadmap-panel::before,
.lead-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(120deg, rgba(255, 38, 57, .44), transparent 27%, transparent 72%, rgba(255, 75, 89, .38));
  mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  -webkit-mask-composite: xor;
  padding: 1px;
  opacity: .72;
}
.stat-card small { display: block; color: var(--muted); margin: 2px 0 8px 66px; font-weight: 700; }
.stat-card strong { display: block; font-size: clamp(23px, 2vw, 34px); margin-left: 66px; letter-spacing: -.02em; }
.stat-icon {
  position: absolute; left: 24px; top: 25px;
  width: 48px; height: 48px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.22), transparent 18%), rgba(255, 38, 57, .12);
  box-shadow: inset 0 0 0 1px rgba(255, 38, 57, .25), 0 0 22px rgba(255, 38, 57, .16);
}
.cube-icon::before { content: "◇"; color: var(--red-2); position: absolute; inset: 0; display: grid; place-items: center; font-size: 24px; font-weight: 900; }
.stack-icon::before { content: "≋"; color: var(--red-2); position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; font-weight: 900; }
.coin-icon::before { content: "◉"; color: var(--red-2); position: absolute; inset: 0; display: grid; place-items: center; font-size: 23px; }
.parachute-icon::before { content: "♢"; color: var(--red-2); position: absolute; inset: 0; display: grid; place-items: center; font-size: 28px; transform: rotate(180deg); }

.lead-card,
.feature-card,
.token-panel,
.airdrop-panel,
.community-panel,
.roadmap-panel {
  position: relative;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(22, 6, 10, .86), rgba(5, 2, 4, .75)),
    radial-gradient(circle at 20% 20%, rgba(255, 38, 57, .12), transparent 28rem);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.lead-card {
  min-height: 350px;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 30px;
  align-items: center;
  padding: clamp(28px, 4vw, 58px);
  border-radius: var(--radius-lg);
}
.lead-card::after,
.token-panel::after,
.airdrop-panel::after,
.community-panel::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 38, 57, .8), transparent);
  box-shadow: 0 0 20px rgba(255, 38, 57, .8);
}
.lead-illustration { min-height: 260px; display: grid; place-items: center; position: relative; }
.cube-cloud { position: relative; width: 230px; height: 200px; transform-style: preserve-3d; animation: slowFloat 5.5s ease-in-out infinite; }
.cube-cloud i {
  position: absolute; width: 84px; height: 84px;
  background: linear-gradient(145deg, rgba(255, 82, 94, .72), rgba(155, 0, 15, .14));
  border: 1px solid rgba(255, 105, 115, .5);
  box-shadow: 0 0 34px rgba(255, 38, 57, .34), inset 0 0 25px rgba(255,255,255,.1);
  transform: rotate(45deg) skew(-8deg, -8deg);
}
.cube-cloud i:nth-child(1) { left: 74px; top: 0; }
.cube-cloud i:nth-child(2) { left: 20px; top: 54px; }
.cube-cloud i:nth-child(3) { left: 128px; top: 54px; }
.cube-cloud i:nth-child(4) { left: 74px; top: 104px; }
.cube-cloud i:nth-child(5) { left: -8px; top: 108px; opacity: .7; }
.cube-cloud i:nth-child(6) { left: 156px; top: 116px; opacity: .7; }
.cube-cloud i:nth-child(7) { left: 70px; top: 156px; opacity: .62; }
@keyframes slowFloat { 50% { transform: translateY(-14px) rotateZ(2deg); } }
.orbit-line {
  position: absolute;
  width: 440px; height: 100px;
  border-top: 2px solid rgba(255, 57, 70, .42);
  border-radius: 50%;
  transform: rotate(-8deg);
  filter: drop-shadow(0 0 10px rgba(255, 38, 57, .55));
}
.lead-copy p {
  margin: 0;
  font-size: clamp(24px, 2.35vw, 38px);
  line-height: 1.25;
  letter-spacing: -.04em;
  color: rgba(255,255,255,.92);
}
.lead-copy p::first-letter { color: var(--red); }
.thin-line { width: 100%; height: 1px; background: linear-gradient(90deg, var(--red), transparent); margin: 24px 0; }
.lead-copy span { color: var(--muted); font-size: 17px; line-height: 1.7; display: block; }

.feature-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.feature-card {
  min-height: 310px;
  border-radius: var(--radius-md);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
  align-items: center;
}
.section-kicker { margin-bottom: 12px; letter-spacing: .08em; }
.section-kicker > span:not(.icon) { width: 34px; height: 34px; border-radius: 10px; background: rgba(255, 38, 57, .12); border: 1px solid rgba(255, 38, 57, .22); position: relative; box-shadow: inset 0 0 0 1px rgba(255,255,255,.03); }
.eye-icon::before { content: "◉"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 17px; }
.network-icon::before { content: "⌬"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 20px; }
.people-icon::before { content: "♟"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 20px; }
.rocket-icon::before { content: "➤"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 18px; }
.feature-card h3,
.token-data h2,
.community-copy h2,
.section-head h2 {
  margin: 0 0 14px;
  font-size: clamp(26px, 2.2vw, 42px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.feature-card p,
.community-copy p,
.roadmap-panel p,
.footer-inner p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 16px;
}
.graphic { height: 230px; position: relative; }
.globe-graphic {
  display: grid; place-items: center;
  border-radius: 50%;
}
.globe-graphic::before {
  content: ""; width: 190px; height: 190px; border-radius: 50%;
  background:
    radial-gradient(circle at 35% 30%, rgba(255,255,255,.3), transparent 12%),
    radial-gradient(circle, rgba(255,38,57,.32), transparent 60%),
    repeating-linear-gradient(0deg, transparent 0 18px, rgba(255, 76, 88, .24) 19px 20px),
    repeating-linear-gradient(90deg, transparent 0 22px, rgba(255, 76, 88, .22) 23px 24px);
  border: 1px solid rgba(255, 59, 72, .45);
  box-shadow: 0 0 52px rgba(255, 38, 57, .32), inset 0 0 40px rgba(255, 38, 57, .22);
  animation: globePulse 4s ease-in-out infinite;
}
.globe-graphic span { position: absolute; width: 8px; height: 8px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 15px var(--red); }
.globe-graphic span:nth-child(1) { left: 42px; top: 82px; }
.globe-graphic span:nth-child(2) { right: 44px; top: 54px; }
.globe-graphic span:nth-child(3) { right: 76px; bottom: 44px; }
.globe-graphic span:nth-child(4) { left: 78px; bottom: 58px; }
@keyframes globePulse { 50% { transform: scale(1.04) rotate(2deg); } }
.platform-graphic { display: grid; place-items: center; }
.platform-graphic i {
  position: absolute;
  width: 190px; height: 60px;
  border: 1px solid rgba(255, 56, 70, .45);
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(255, 40, 58, .26), rgba(0,0,0,.1));
  transform: rotateX(60deg) rotateZ(-35deg);
  box-shadow: 0 0 28px rgba(255, 38, 57, .22);
}
.platform-graphic i:nth-child(1) { top: 138px; }
.platform-graphic i:nth-child(2) { top: 100px; width: 150px; }
.platform-graphic i:nth-child(3) { top: 64px; width: 112px; }
.platform-graphic i:nth-child(4) { top: 20px; width: 70px; height: 70px; transform: rotateX(56deg) rotateZ(-35deg) translateY(-10px); background: linear-gradient(135deg, rgba(255, 65, 78, .72), rgba(80,0,7,.25)); }

.token-panel {
  min-height: 500px;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 54px);
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: center;
}
.token-table { margin-top: 26px; border: 1px solid rgba(255,255,255,.07); border-radius: 18px; overflow: hidden; background: rgba(255,255,255,.025); }
.token-table div {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.token-table div:last-child { border-bottom: 0; }
.token-table span { color: var(--muted); font-weight: 700; }
.token-table strong { color: rgba(255,255,255,.92); overflow-wrap: anywhere; }
.contract-row strong { font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace; font-size: 13px; color: var(--red-2); }
.dashboard-art { min-height: 420px; position: relative; display: grid; place-items: center; perspective: 900px; }
.coin-stage {
  position: relative;
  width: min(360px, 80vw);
  aspect-ratio: 1;
  display: grid; place-items: center;
}
.coin-stage img {
  width: 58%; height: 58%; object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(255, 76, 90, .48);
  box-shadow: 0 0 60px rgba(255, 38, 57, .42);
  animation: coinHover 5s ease-in-out infinite;
}
@keyframes coinHover { 50% { transform: translateY(-12px) rotateY(10deg); } }
.coin-stage span {
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(255, 48, 62, .38);
  border-radius: 50%;
  transform: rotateX(68deg);
  animation: spin 8s linear infinite;
}
.coin-stage span:nth-child(3) { inset: 10%; animation-duration: 10s; animation-direction: reverse; }
.coin-stage span:nth-child(4) { inset: 35%; border-style: dashed; animation-duration: 6s; }
.hud {
  position: absolute;
  width: 128px;
  padding: 14px;
  border: 1px solid rgba(255, 55, 72, .36);
  border-radius: 16px;
  background: rgba(12, 3, 5, .76);
  box-shadow: 0 0 24px rgba(255, 38, 57, .13);
}
.hud b { color: var(--red-2); font-size: 13px; }
.hud i { display: block; height: 6px; margin-top: 10px; border-radius: 999px; background: linear-gradient(90deg, var(--red), rgba(255,255,255,.12)); }
.hud-a { left: 4%; top: 20%; }
.hud-b { right: 2%; top: 28%; }
.hud-c { left: 12%; bottom: 14%; }
.hud i:nth-child(3) { width: 70%; opacity: .65; }
.hud i:nth-child(4) { width: 48%; opacity: .45; }


.airdrop-section { padding-top: 24px; }
.airdrop-panel {
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 54px);
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
}
.airdrop-copy h2 {
  margin: 0;
  font-size: clamp(34px, 3.7vw, 58px);
  line-height: 1.05;
  letter-spacing: -.04em;
}
.airdrop-copy > p {
  margin: 18px 0 22px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.75;
}
.airdrop-icon::before { content: "✦"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 22px; }
.rule-address {
  display: grid;
  gap: 9px;
  padding: 17px 18px;
  margin: 0 0 22px;
  border-radius: 18px;
  border: 1px solid rgba(255, 58, 72, .34);
  background:
    linear-gradient(135deg, rgba(255, 38, 57, .14), rgba(255,255,255,.025)),
    rgba(255,255,255,.02);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.025), 0 0 26px rgba(255, 38, 57, .1);
}
.rule-address span {
  color: var(--red-2);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.rule-address strong {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  color: rgba(255,255,255,.88);
  font-size: clamp(12px, 1.15vw, 15px);
  line-height: 1.45;
  overflow-wrap: anywhere;
  word-break: break-all;
}
.airdrop-rules {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.rule-card {
  position: relative;
  min-height: 250px;
  padding: 26px 22px 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 58, 72, .28);
  background:
    radial-gradient(circle at 12% 4%, rgba(255, 70, 83, .18), transparent 40%),
    linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.018));
  overflow: hidden;
}
.rule-card::before {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 1px solid rgba(255, 58, 72, .28);
  box-shadow: 0 0 38px rgba(255, 38, 57, .22);
}
.rule-card b {
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #ff2a3d, #810711);
  box-shadow: 0 0 24px rgba(255, 38, 57, .42);
  margin-bottom: 18px;
}
.rule-card h3 { margin: 0 0 10px; font-size: 22px; }
.rule-card p { margin: 0; color: rgba(255,255,255,.68); line-height: 1.68; font-size: 15px; }
.rule-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.rule-chips span {
  padding: 7px 10px;
  border-radius: 999px;
  color: rgba(255,255,255,.82);
  background: rgba(255, 38, 57, .09);
  border: 1px solid rgba(255, 58, 72, .22);
  font-size: 12px;
  font-weight: 750;
}
.rule-loop {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  border: 1px solid rgba(255, 58, 72, .32);
  background: linear-gradient(90deg, rgba(255, 38, 57, .14), rgba(255,255,255,.025));
}
.rule-loop strong { display: block; color: var(--red-2); font-size: 18px; margin-bottom: 8px; }
.rule-loop p { margin: 0; color: rgba(255,255,255,.7); line-height: 1.68; }
.airdrop-art {
  min-height: 520px;
  display: grid;
  place-items: center;
  position: relative;
}
.airdrop-orbit {
  position: relative;
  width: min(430px, 100%);
  aspect-ratio: 1;
  border-radius: 50%;
  border: 1px solid rgba(255, 58, 72, .18);
  background:
    radial-gradient(circle at center, rgba(255, 38, 57, .25) 0 18%, transparent 19% 100%),
    repeating-radial-gradient(circle at center, rgba(255, 58, 72, .18) 0 1px, transparent 1px 48px);
  box-shadow: inset 0 0 60px rgba(255, 38, 57, .12), 0 0 70px rgba(255, 38, 57, .18);
  animation: slowFloat 6.5s ease-in-out infinite;
}
.airdrop-orbit::before,
.airdrop-orbit::after {
  content: "";
  position: absolute;
  inset: 9%;
  border-radius: 50%;
  border: 1px dashed rgba(255, 75, 89, .46);
  animation: rotateGlow 15s linear infinite;
}
.airdrop-orbit::after { inset: 22%; animation-duration: 9s; animation-direction: reverse; opacity: .75; }
@keyframes rotateGlow { to { transform: rotate(360deg); } }
.airdrop-core {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: 122px; height: 122px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 0 55px rgba(255, 38, 57, .55), 0 0 0 18px rgba(255, 38, 57, .07);
}
.airdrop-core img { width: 100%; height: 100%; object-fit: cover; }
.airdrop-orbit i {
  position: absolute;
  width: 72px; height: 72px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255, 81, 93, .7), rgba(120, 6, 14, .24));
  border: 1px solid rgba(255, 81, 93, .42);
  box-shadow: 0 0 26px rgba(255, 38, 57, .32);
  transform: rotate(45deg);
}
.airdrop-orbit i:nth-of-type(1) { left: 9%; top: 18%; }
.airdrop-orbit i:nth-of-type(2) { right: 7%; top: 34%; width: 58px; height: 58px; opacity: .82; }
.airdrop-orbit i:nth-of-type(3) { left: 43%; bottom: 8%; width: 64px; height: 64px; opacity: .7; }
.orbit-dot {
  position: absolute;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: #ff5c66;
  box-shadow: 0 0 22px rgba(255, 38, 57, .9);
}
.dot-a { left: 50%; top: 0; }
.dot-b { right: 8%; bottom: 20%; }
.dot-c { left: 12%; bottom: 26%; }

.community-panel {
  min-height: 440px;
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 54px);
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 30px;
  align-items: center;
}
.community-copy p { font-size: 17px; margin-top: 16px; }
.community-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.network-map { min-height: 330px; position: relative; }
.network-map svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.network-map path { fill: none; stroke: rgba(255, 67, 79, .48); stroke-width: 2; stroke-dasharray: 6 10; filter: drop-shadow(0 0 6px rgba(255, 38, 57, .6)); animation: dash 12s linear infinite; }
@keyframes dash { to { stroke-dashoffset: -160; } }
.core-node {
  position: absolute; left: 50%; top: 49%; transform: translate(-50%, -50%);
  width: 86px; height: 86px; border-radius: 50%; overflow: hidden;
  box-shadow: 0 0 50px rgba(255, 38, 57, .52), 0 0 0 12px rgba(255, 38, 57, .07);
}
.core-node img { width: 100%; height: 100%; object-fit: cover; }
.person {
  position: absolute;
  width: 48px; height: 68px;
  border-radius: 24px 24px 12px 12px;
  background: linear-gradient(180deg, #ff4f5c, #91101a);
  box-shadow: 0 0 24px rgba(255, 38, 57, .38);
}
.person::before { content: ""; position: absolute; top: -22px; left: 13px; width: 22px; height: 22px; border-radius: 50%; background: #ff5c66; }
.person::after { content: ""; position: absolute; width: 76px; height: 18px; left: 50%; bottom: -18px; transform: translateX(-50%); border: 1px solid rgba(255, 65, 78, .46); border-radius: 50%; }
.p1 { left: 8%; top: 42%; transform: scale(.72); }
.p2 { left: 27%; top: 18%; transform: scale(.58); }
.p3 { right: 9%; top: 42%; transform: scale(.7); }
.p4 { right: 26%; top: 73%; transform: scale(.62); }
.p5 { left: 46%; top: 4%; transform: scale(.52); }

.roadmap-panel { border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 54px); }
.section-head { display: flex; justify-content: space-between; gap: 30px; align-items: end; margin-bottom: 38px; }
.section-head h2 { width: min(720px, 100%); }
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline::before {
  content: "";
  position: absolute;
  left: 9%; right: 9%; top: 42px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  box-shadow: 0 0 16px rgba(255, 38, 57, .8);
}
.timeline article {
  position: relative;
  min-height: 230px;
  padding: 78px 20px 22px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
  overflow: visible;
}
.timeline article::before { content: ""; position: absolute; inset: 0; border-radius: inherit; background: radial-gradient(circle at 50% 0%, rgba(255,38,57,.13), transparent 62%); pointer-events: none; }
.step {
  position: absolute;
  top: 18px; left: 50%; transform: translateX(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(180deg, #ff3041, #7a0710);
  border: 1px solid rgba(255,255,255,.16);
  box-shadow: 0 0 25px rgba(255, 38, 57, .52);
  font-weight: 900;
  z-index: 3;
}
.road-icon { position: relative; width: 44px; height: 44px; border-radius: 13px; background: rgba(255, 38, 57, .1); border: 1px solid rgba(255, 38, 57, .22); margin-bottom: 16px; }
.globe-icon-mini::before { content: "◎"; position: absolute; inset: 0; display: grid; place-items: center; color: var(--red-2); font-size: 24px; }
.timeline h3 { margin: 0 0 9px; font-size: 21px; }
.timeline p { font-size: 14px; color: rgba(255,255,255,.64); }

.site-footer { padding: 28px 0 20px; border-top: 1px solid rgba(255, 38, 57, .2); background: rgba(3, 1, 3, .78); }
.footer-inner { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 28px; }
.footer-brand { display: inline-flex; align-items: center; gap: 14px; min-width: 200px; }
.footer-brand img { width: 66px; height: 66px; object-fit: cover; border-radius: 16px; box-shadow: 0 0 20px rgba(255, 38, 57, .22); }
.footer-brand div { display: grid; line-height: 1.05; }
.footer-brand strong { font-size: 35px; }
.footer-brand small { color: var(--muted); font-size: 17px; }
.footer-inner p { max-width: 560px; font-size: 14px; }
.footer-socials { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.copyright { color: rgba(255,255,255,.42); text-align: center; font-size: 13px; margin-top: 18px; }
.toast {
  position: fixed;
  left: 50%; bottom: 30px;
  transform: translate(-50%, 30px);
  opacity: 0;
  pointer-events: none;
  z-index: 100;
  padding: 13px 18px;
  border-radius: 999px;
  border: 1px solid rgba(255, 66, 78, .45);
  background: rgba(10, 2, 4, .92);
  box-shadow: 0 16px 44px rgba(255, 38, 57, .22);
  color: #fff;
  transition: .25s ease;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1320px) {
  .header-inner { grid-template-columns: auto auto 1fr auto; }
  .header-actions .social-btn span:last-child { display: none; }
  .social-btn { min-width: 42px; padding: 0 11px; }
}
@media (max-width: 1080px) {
  .desktop-nav, .header-actions { display: none; }
  .header-inner { grid-template-columns: auto auto 1fr auto; }
  .menu-toggle { display: block; justify-self: end; }
  .mobile-panel {
    display: grid;
    width: min(720px, calc(100% - 32px));
    margin: 0 auto;
    max-height: 0;
    overflow: hidden;
    transition: max-height .25s ease;
    border-top: 1px solid transparent;
  }
  .mobile-panel.open { max-height: 560px; border-top-color: rgba(255, 38, 57, .18); padding: 10px 0 18px; }
  .mobile-panel > a { padding: 14px 4px; border-bottom: 1px solid rgba(255,255,255,.06); color: rgba(255,255,255,.85); font-weight: 750; }
  .mobile-socials { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 14px; }
  .hero-grid { grid-template-columns: 1fr; gap: 24px; min-height: auto; }
  .hero-visual { min-height: 430px; order: 1; }
  .hero-copy { order: 2; text-align: center; }
  .eyebrow { justify-content: center; }
  .hero-copy p, .contract-box { margin-inline: auto; }
  .hero-buttons { justify-content: center; }
  .stats-grid { margin-top: 20px; grid-template-columns: repeat(2, 1fr); }
  .lead-card, .token-panel, .airdrop-panel, .community-panel { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: repeat(2, 1fr); row-gap: 34px; }
  .timeline::before { display: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; justify-items: center; }
  .footer-socials { justify-content: center; }
}
@media (max-width: 720px) {
  .container { width: min(100% - 24px, var(--max)); }
  .section { padding: 48px 0; }
  .header-inner { width: min(100% - 20px, 1500px); min-height: 70px; gap: 10px; }
  .brand-logo { width: 42px; height: 42px; border-radius: 12px; }
  .brand-text strong { font-size: 18px; }
  .brand-text small { font-size: 11px; }
  .lang-toggle { height: 38px; padding: 0 10px; }
  .hero { padding-top: 42px; }
  .hero-visual { min-height: 320px; }
  .logo-orbit { width: min(330px, 92vw); }
  .holo-platform { bottom: 20px; }
  .hero-copy h1 { font-size: clamp(46px, 14vw, 76px); }
  .hero-copy h2 { font-size: clamp(30px, 9vw, 48px); }
  .hero-copy p { font-size: 17px; }
  .primary-btn, .ghost-btn { width: 100%; min-height: 54px; }
  .contract-box { grid-template-columns: 20px minmax(0, 1fr) 20px; padding: 14px; gap: 10px; }
  .contract-box p { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; min-width: 0; }
  .contract-box em { display: block; width: 100%; max-width: 100%; white-space: normal; overflow: visible; text-overflow: clip; overflow-wrap: anywhere; word-break: break-all; font-size: clamp(10px, 2.55vw, 12px); line-height: 1.35; letter-spacing: -.02em; }
  .contract-box b { font-size: 12px; }
  .contract-row strong { font-size: 11px; line-height: 1.45; overflow-wrap: anywhere; word-break: break-all; }
  .stats-grid { grid-template-columns: 1fr; gap: 12px; }
  .stat-card { min-height: 98px; }
  .lead-card { padding: 24px; }
  .lead-copy p { font-size: 24px; line-height: 1.32; }
  .lead-illustration { min-height: 210px; }
  .cube-cloud { transform: scale(.75); }
  .orbit-line { width: 300px; }
  .feature-card { grid-template-columns: 1fr; padding: 24px; }
  .graphic { height: 190px; }
  .token-panel, .airdrop-panel, .community-panel, .roadmap-panel { padding: 24px; }
  .airdrop-art { min-height: 320px; }
  .airdrop-orbit { width: min(310px, 92vw); }
  .airdrop-core { width: 92px; height: 92px; border-radius: 24px; }
  .airdrop-orbit i { width: 50px; height: 50px; border-radius: 14px; }
  .airdrop-rules { grid-template-columns: 1fr; }
  .rule-card { min-height: auto; padding: 22px 18px; }
  .rule-address { padding: 14px; }
  .token-table div { grid-template-columns: 1fr; gap: 5px; }
  .dashboard-art { min-height: 330px; }
  .hud { transform: scale(.82); }
  .timeline { grid-template-columns: 1fr; }
  .timeline article { min-height: auto; }
  .footer-socials { display: grid; grid-template-columns: repeat(2, minmax(120px, 1fr)); width: 100%; }
  .community-actions { display: grid; grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 430px) {
  .brand-text small { display: none; }
  .language-shell { justify-self: start; }
  #currentLangLabel { display: none; }
  .lang-toggle { width: 42px; justify-content: center; }
  .lang-toggle .chev { display: none; }
  .mobile-socials { grid-template-columns: 1fr; }
  .contract-box { padding: 12px; }
  .contract-box em { font-size: 10px; }
  .airdrop-copy h2 { font-size: 30px; }
  .airdrop-copy > p, .rule-loop p { font-size: 14px; }
  .rule-address strong { font-size: 10px; }
  .footer-socials, .community-actions { grid-template-columns: 1fr; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
}
