:root {
  --bg: #050403;
  --bg-soft: #0d0b08;
  --panel: rgba(11, 9, 6, 0.74);
  --panel-strong: rgba(16, 12, 7, 0.94);
  --line: rgba(247, 207, 93, 0.18);
  --line-strong: rgba(247, 207, 93, 0.34);
  --gold: #f5d367;
  --gold-2: #c69727;
  --gold-3: #8e6516;
  --text: #f5edd2;
  --muted: #c7b98a;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.48);
  --radius: 28px;
  --radius-sm: 18px;
  --container: 1240px;
  --header: 86px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at 20% 15%, rgba(255,210,96,0.08), transparent 28%),
    radial-gradient(circle at 84% 20%, rgba(255,194,76,0.06), transparent 24%),
    radial-gradient(circle at 50% 110%, rgba(255,179,43,0.08), transparent 40%);
  pointer-events: none;
  z-index: -2;
}

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

#chainCanvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -4;
}
.page-noise {
  position: fixed;
  inset: 0;
  z-index: -3;
  opacity: .16;
  background-image:
    linear-gradient(transparent 49%, rgba(255,255,255,.06) 50%, transparent 51%),
    linear-gradient(90deg, transparent 49%, rgba(255,255,255,.04) 50%, transparent 51%);
  background-size: 3px 3px, 3px 3px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 100%);
  pointer-events: none;
}
.page-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(90px);
  opacity: .14;
  z-index: -2;
  pointer-events: none;
}
.glow-a { width: 360px; height: 360px; background: #ffc342; top: 10%; left: -5%; }
.glow-b { width: 480px; height: 480px; background: #b87a0a; bottom: -10%; right: -8%; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: min(var(--container), calc(100% - 24px));
  margin: 16px auto 0;
  height: var(--header);
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(17,13,8,.9), rgba(9,7,5,.86));
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand-text { display: flex; flex-direction: column; line-height: 1.05; }
.brand-text strong {
  font-size: 1.45rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.brand-text span {
  font-size: .76rem;
  color: var(--muted);
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 20px;
}
.main-nav a {
  position: relative;
  color: rgba(245,237,210,.84);
  font-size: .96rem;
  font-weight: 500;
  transition: color .25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .28s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language { position: relative; }
.language-current, .round-icon {
  height: 46px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(14, 11, 8, .8);
  color: var(--text);
}
.language-current {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  cursor: pointer;
}
.language-current svg, .round-icon svg { width: 18px; height: 18px; fill: var(--gold); }
.language-current .chev { width: 16px; height: 16px; transition: transform .25s ease; }
.language.open .language-current .chev { transform: rotate(180deg); }
.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  min-width: 140px;
  padding: 8px;
  border-radius: 18px;
  border: 1px solid var(--line);
  background: rgba(10, 8, 6, .96);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .24s ease;
}
.language.open .language-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.language-menu button {
  width: 100%;
  text-align: left;
  color: var(--text);
  padding: 10px 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
}
.language-menu button:hover { background: rgba(255,215,100,.08); }
.round-icon {
  width: 46px;
  display: grid;
  place-items: center;
  transition: transform .2s ease, border-color .2s ease;
}
.round-icon:hover { transform: translateY(-2px); border-color: var(--line-strong); }

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(14,11,8,.84);
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--gold);
  margin: 5px auto;
}

.section {
  width: min(var(--container), calc(100% - 24px));
  margin: 0 auto;
}
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 34px;
  padding: 56px 6px 26px;
  align-items: center;
  min-height: calc(100vh - 130px);
}
.hero-copy, .hero-visual, .section-card {
  position: relative;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(12,9,6,.78), rgba(9,7,5,.88));
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}
.hero-copy {
  padding: 38px;
  overflow: hidden;
}
.hero-copy::before,
.section-card::before,
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(255,221,116,.5), rgba(255,221,116,0), rgba(255,221,116,.1));
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.eyebrow-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.chain-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-strong);
  color: var(--gold);
  background: rgba(247, 207, 93, .06);
  font-weight: 600;
}
.chain-badge svg { width: 18px; height: 18px; fill: currentColor; }
.eyebrow-text {
  color: var(--muted);
  font-size: .92rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}
.hero h1 {
  margin: 18px 0 10px;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  line-height: .96;
  letter-spacing: -.03em;
  color: #fff3c3;
  text-shadow: 0 0 30px rgba(247, 207, 93, .12);
}
.hero h2 {
  margin: 0 0 18px;
  font-size: clamp(1.08rem, 2.1vw, 1.44rem);
  color: var(--gold);
  font-weight: 600;
  max-width: 760px;
}
.hero p { margin: 0; color: rgba(245,237,210,.9); }
.hero-lead { font-size: 1.02rem; }
.hero-sub { margin-top: 14px !important; color: var(--muted) !important; }
.hero-points {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.hero-points article {
  padding: 16px 16px 14px;
  border-radius: 18px;
  border: 1px solid rgba(247, 207, 93, .12);
  background: linear-gradient(180deg, rgba(255,217,99,.06), rgba(255,217,99,.02));
}
.hero-points strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-size: .95rem;
}
.hero-points span { font-size: .9rem; color: var(--muted); }
.contract-card {
  margin-top: 24px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 20px;
  border: 1px solid var(--line-strong);
  background: linear-gradient(135deg, rgba(255,223,118,.06), rgba(255,223,118,.02));
}
.contract-card small,
.contract-strip small,
.founder-strip small {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .09em;
  font-size: .72rem;
}
.address {
  display: block;
  font-size: .98rem;
  font-weight: 600;
  color: #fff;
  word-break: break-all;
}
.copy-btn {
  width: 46px;
  min-width: 46px;
  height: 46px;
  border-radius: 14px;
  border: 1px solid var(--line-strong);
  background: rgba(255,217,99,.08);
  display: grid;
  place-items: center;
  color: var(--gold);
  cursor: pointer;
}
.copy-btn svg { width: 20px; height: 20px; fill: currentColor; }
.hero-buttons {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.btn {
  min-height: 54px;
  padding: 0 20px;
  border-radius: 16px;
  border: 1px solid var(--line-strong);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  transition: transform .2s ease, box-shadow .25s ease;
}
.btn svg { width: 20px; height: 20px; fill: currentColor; }
.btn:hover { transform: translateY(-2px); }
.btn.primary {
  color: #231403;
  background: linear-gradient(135deg, #ffd76f, #c68a1e);
  box-shadow: 0 12px 26px rgba(198,138,30,.24);
}
.btn.ghost {
  color: var(--gold);
  background: rgba(255,217,99,.04);
}

.hero-visual {
  min-height: 680px;
  overflow: hidden;
  padding: 24px;
}
.hero-visual > * { position: absolute; }
.visual-grid {
  inset: 11% 6% 8% 6%;
  border-radius: 28px;
  border: 1px solid rgba(247, 207, 93, .08);
  background:
    linear-gradient(rgba(255,221,116,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,221,116,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .35;
}
.hero-halo {
  width: 92%;
  aspect-ratio: 1;
  left: 50%;
  top: 10%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,208,96,.26), rgba(255,208,96,.02) 52%, transparent 70%);
  filter: blur(6px);
}
.visual-orbit {
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 1px solid rgba(247, 207, 93, .18);
}
.orbit-one { width: 85%; aspect-ratio: 1; top: 10%; animation: spinSlow 16s linear infinite; }
.orbit-two { width: 66%; aspect-ratio: 1; top: 18%; border-style: dashed; animation: spinSlowReverse 22s linear infinite; }
.holo-disc {
  left: 50%;
  bottom: 60px;
  width: 74%;
  aspect-ratio: 1.55;
  transform: translateX(-50%);
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(255,222,118,.45), rgba(255,222,118,.1) 28%, transparent 60%),
    linear-gradient(180deg, rgba(255,217,99,.28), rgba(255,217,99,.02));
  border: 1px solid rgba(247, 207, 93, .18);
  box-shadow: 0 0 70px rgba(255,196,79,.12);
}
.logo-stage {
  left: 50%;
  top: 18%;
  width: 60%;
  transform: translateX(-50%);
  filter: drop-shadow(0 22px 50px rgba(255,191,51,.22));
  animation: floatUp 5s ease-in-out infinite;
}
.city-lines {
  left: 11%;
  right: 11%;
  bottom: 112px;
  height: 110px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.city-lines i {
  width: 12%;
  border-radius: 10px 10px 0 0;
  background: linear-gradient(180deg, rgba(255,217,99,.22), rgba(255,217,99,.02));
  border: 1px solid rgba(247, 207, 93, .18);
  box-shadow: 0 0 18px rgba(255,191,51,.08);
}
.city-lines i:nth-child(1) { height: 36px; }
.city-lines i:nth-child(2) { height: 64px; }
.city-lines i:nth-child(3) { height: 84px; }
.city-lines i:nth-child(4) { height: 46px; }
.city-lines i:nth-child(5) { height: 92px; }
.city-lines i:nth-child(6) { height: 58px; }
.city-lines i:nth-child(7) { height: 78px; }
.mini-cubes {
  inset: auto 0 170px 0;
}
.mini-cubes span {
  position: absolute;
  width: 16px; height: 16px;
  border-radius: 4px;
  border: 1px solid rgba(247, 207, 93, .22);
  background: rgba(255,219,107,.08);
  box-shadow: 0 0 14px rgba(255,191,51,.14);
  animation: drift 9s ease-in-out infinite;
}
.mini-cubes span:nth-child(1) { left: 12%; top: 14px; }
.mini-cubes span:nth-child(2) { left: 24%; top: -10px; animation-delay: 1.2s; }
.mini-cubes span:nth-child(3) { right: 18%; top: 24px; animation-delay: 2.6s; }
.mini-cubes span:nth-child(4) { right: 8%; top: -2px; animation-delay: 3.8s; }

.section-card {
  padding: 34px;
  overflow: hidden;
}
.section + .section { margin-top: 28px; }
.section-head {
  position: relative;
  margin-bottom: 24px;
}
.section-head.center { text-align: center; max-width: 900px; margin-inline: auto; margin-bottom: 26px; }
.section-kicker {
  display: inline-block;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,217,99,.06);
  border: 1px solid rgba(247, 207, 93, .14);
  color: var(--gold);
  font-size: .78rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.section-head h3 {
  margin: 14px 0 10px;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.05;
  color: #fff1bf;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 860px;
}
.about-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 28px;
  align-items: center;
}
.about-copy p + p { margin-top: 16px; }
.about-side { display: grid; gap: 18px; }
.feature-illustration {
  position: relative;
  min-height: 360px;
  border-radius: 28px;
  border: 1px solid rgba(247, 207, 93, .12);
  background: radial-gradient(circle at center, rgba(255,212,92,.08), rgba(255,212,92,0) 62%);
  overflow: hidden;
}
.coin-core {
  position: absolute;
  inset: 50% auto auto 50%;
  width: 180px;
  height: 180px;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(247, 207, 93, .22);
  background: linear-gradient(180deg, rgba(255,224,125,.18), rgba(255,224,125,.04));
  box-shadow: 0 0 40px rgba(255,189,34,.16);
}
.coin-core img { width: 116px; }
.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(247, 207, 93, .18);
}
.r1 { inset: 18% 14%; }
.r2 { inset: 26% 22%; border-style: dashed; }
.r3 { inset: 10% 6%; opacity: .5; }
.block {
  position: absolute;
  width: 34px; height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(247, 207, 93, .2);
  background: rgba(255,219,107,.08);
}
.b1 { left: 18%; top: 22%; }
.b2 { right: 16%; top: 56%; }
.b3 { left: 52%; bottom: 14%; }
.project-pillars {
  display: grid;
  gap: 12px;
}
.project-pillars article {
  padding: 16px 18px;
  border-radius: 18px;
  border: 1px solid rgba(247, 207, 93, .12);
  background: rgba(255,217,99,.04);
}
.project-pillars strong {
  display: block;
  color: var(--gold);
  margin-bottom: 4px;
}
.project-pillars span { color: var(--muted); }

.tokenomics-card { background: linear-gradient(180deg, rgba(14,11,8,.84), rgba(8,6,4,.94)); }
.token-hero-panel {
  display: grid;
  grid-template-columns: minmax(260px, .78fr) 1fr;
  gap: 18px;
  align-items: stretch;
}
.token-main-stat,
.token-mini-grid article,
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card,
.founder-strip {
  border: 1px solid rgba(247, 207, 93, .12);
  background: linear-gradient(180deg, rgba(255,217,99,.06), rgba(255,217,99,.02));
  border-radius: 22px;
}
.token-main-stat {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    radial-gradient(circle at 22% 10%, rgba(255,224,125,.22), transparent 34%),
    linear-gradient(180deg, rgba(255,217,99,.1), rgba(255,217,99,.03));
}
.token-main-stat span {
  color: var(--gold);
  font-size: .82rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.token-main-stat strong {
  margin-top: 12px;
  font-size: clamp(1.6rem, 3vw, 2.55rem);
  line-height: 1.1;
  color: #fff5d7;
}
.token-main-stat em {
  margin-top: 10px;
  font-style: normal;
  color: var(--muted);
}
.token-mini-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.token-mini-grid article {
  min-height: 122px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.token-mini-grid span {
  color: var(--muted);
  font-size: .84rem;
  margin-bottom: 8px;
}
.token-mini-grid strong { color: #fff0bc; font-size: 1.1rem; }
.contract-strip {
  margin-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 22px;
  border: 1px solid rgba(247, 207, 93, .12);
  background: rgba(255,217,99,.04);
}
.copy-btn.alt { background: rgba(255,217,99,.05); }
.token-principles {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card {
  padding: 22px;
}
.token-principles h4,
.eco-card h4,
.road-card h4,
.rule-box h4,
.social-card strong {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 1.08rem;
}
.token-principles p,
.eco-card p,
.road-card p,
.rule-box p,
.rule-note,
.social-card span {
  margin: 0;
  color: var(--muted);
}

.ecosystem-grid,
.roadmap-grid,
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.eco-card,
.road-card {
  position: relative;
  overflow: hidden;
}
.eco-card.highlighted {
  background: linear-gradient(180deg, rgba(255,217,99,.12), rgba(255,217,99,.03));
  box-shadow: 0 0 0 1px rgba(247, 207, 93, .08) inset;
}
.eco-icon, .road-icon {
  display: inline-flex;
  width: 58px;
  height: 58px;
  margin-bottom: 16px;
  border-radius: 16px;
  border: 1px solid rgba(247, 207, 93, .18);
  background: rgba(255,217,99,.08);
  position: relative;
}
.eco-icon::before, .eco-icon::after, .road-icon::before, .road-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
  opacity: .95;
}
.eco-icon.payment::before { width: 30px; height: 20px; border-radius: 6px; inset: 18px 14px auto; }
.eco-icon.payment::after { width: 16px; height: 3px; border-radius: 999px; left: 21px; top: 25px; box-shadow: 0 7px 0 var(--gold); }
.eco-icon.dapp::before { width: 14px; height: 14px; left: 12px; top: 12px; box-shadow: 20px 0 0 var(--gold), 10px 18px 0 var(--gold); transform: rotate(45deg); }
.eco-icon.dapp::after { width: 20px; height: 2px; left: 18px; top: 29px; box-shadow: -8px -10px 0 rgba(245,211,103,.55), 8px -10px 0 rgba(245,211,103,.55); }
.eco-icon.community::before { width: 10px; height: 10px; left: 12px; top: 16px; border-radius: 50%; box-shadow: 12px 0 0 var(--gold), 24px 0 0 var(--gold); }
.eco-icon.community::after { width: 34px; height: 10px; left: 12px; top: 31px; border-radius: 10px 10px 8px 8px; }
.eco-icon.value::before { width: 22px; height: 2px; left: 18px; top: 18px; transform: rotate(40deg); box-shadow: 0 14px 0 var(--gold); }
.eco-icon.value::after { width: 18px; height: 18px; left: 20px; top: 20px; border: 2px solid var(--gold); background: transparent; border-top: 0; border-left: 0; transform: rotate(45deg); }
.road-icon.users::before { width: 10px; height: 10px; left: 12px; top: 15px; border-radius: 50%; box-shadow: 12px 0 0 var(--gold), 24px 0 0 var(--gold); }
.road-icon.users::after { width: 34px; height: 10px; left: 12px; top: 30px; border-radius: 999px; }
.road-icon.chart::before { width: 6px; height: 16px; left: 14px; bottom: 14px; box-shadow: 10px -8px 0 var(--gold), 20px -16px 0 var(--gold); }
.road-icon.chart::after { width: 30px; height: 2px; left: 14px; bottom: 14px; }
.road-icon.alpha::before { width: 14px; height: 14px; left: 22px; top: 12px; transform: rotate(45deg); box-shadow: 0 20px 0 rgba(245,211,103,.9), -10px 10px 0 rgba(245,211,103,.7), 10px 10px 0 rgba(245,211,103,.7); }
.road-icon.alpha::after { width: 22px; height: 2px; left: 18px; top: 28px; }
.road-icon.rocket::before {
  width: 18px; height: 30px; left: 20px; top: 12px; border-radius: 50% 50% 40% 40%; transform: rotate(35deg);
}
.road-icon.rocket::after { width: 8px; height: 8px; right: 17px; top: 21px; border-radius: 50%; background: rgba(0,0,0,.25); }
.rules-shell { overflow: visible; }
.founder-strip {
  margin-bottom: 18px;
  padding: 16px 18px;
}
.rule-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.rule-box {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.rule-icon {
  width: 72px; height: 72px;
  border-radius: 22px;
  border: 1px solid rgba(247, 207, 93, .2);
  background: rgba(255,217,99,.08);
  position: relative;
}
.rule-icon::before,
.rule-icon::after {
  content: "";
  position: absolute;
  background: var(--gold);
}
.rule-icon.shield::before { width: 34px; height: 42px; left: 19px; top: 12px; clip-path: polygon(50% 0%, 100% 15%, 90% 62%, 50% 100%, 10% 62%, 0% 15%); }
.rule-icon.shield::after { width: 16px; height: 8px; left: 28px; top: 35px; border-left: 3px solid #050403; border-bottom: 3px solid #050403; background: transparent; transform: rotate(-45deg); }
.rule-icon.gift::before { width: 36px; height: 28px; left: 18px; top: 28px; border-radius: 6px; }
.rule-icon.gift::after { width: 10px; height: 38px; left: 31px; top: 18px; box-shadow: -12px 2px 0 -3px var(--gold), 12px 2px 0 -3px var(--gold); }
.rule-note { margin-top: 12px; font-size: .92rem; }
.rules-loop {
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px dashed rgba(247, 207, 93, .18);
  color: var(--gold);
  text-align: center;
  background: rgba(255,217,99,.03);
}
.social-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s ease, border-color .2s ease;
}
.social-card:hover { transform: translateY(-4px); border-color: rgba(247, 207, 93, .24); }
.social-card svg {
  width: 24px; height: 24px; fill: var(--gold);
}

.site-footer {
  width: min(var(--container), calc(100% - 24px));
  margin: 28px auto 44px;
  padding: 26px 26px 28px;
  border-radius: 28px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(13,10,7,.9), rgba(8,6,4,.96));
  box-shadow: var(--shadow);
}
.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 20px;
  align-items: center;
}
.footer-bottom p { margin: 0; color: var(--muted); }
.footer-bottom .powered { color: #ecd38e; }

.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translate(-50%, 18px);
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(247, 207, 93, .18);
  background: rgba(14, 11, 8, .94);
  color: var(--gold);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
  z-index: 110;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes spinSlow { to { transform: translateX(-50%) rotate(360deg); } }
@keyframes spinSlowReverse { to { transform: translateX(-50%) rotate(-360deg); } }
@keyframes floatUp {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-12px); }
}
@keyframes drift {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(20deg); }
}

@media (max-width: 1120px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 540px; }
  .about-grid,
  .token-hero-panel,
  .ecosystem-grid,
  .roadmap-grid,
  .social-grid,
  .rule-grid,
  .token-principles {
    grid-template-columns: 1fr 1fr;
  }
  .about-grid { grid-template-columns: 1fr; }
  .token-hero-panel { grid-template-columns: 1fr; }
}

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: auto auto;
    flex-wrap: wrap;
    height: auto;
    min-height: var(--header);
    padding: 14px 16px;
  }
  .nav-toggle { display: inline-block; order: 2; }
  .main-nav {
    order: 4;
    width: 100%;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding-top: 8px;
    gap: 12px;
  }
  .site-header.nav-open .main-nav { display: flex; }
  .main-nav a { padding: 4px 2px; }
  .main-nav a::after { bottom: -3px; }
  .header-actions { margin-left: auto; order: 3; }
  .hero-copy { padding: 28px; }
  .hero-points { grid-template-columns: 1fr; }
  .footer-bottom { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { justify-content: center; }
}

@media (max-width: 680px) {
  .section,
  .site-header,
  .site-footer { width: min(var(--container), calc(100% - 16px)); }
  .site-header { margin-top: 10px; }
  .hero { padding-top: 26px; gap: 18px; }
  .hero-copy, .hero-visual, .section-card, .site-footer { border-radius: 22px; }
  .hero-copy, .section-card, .site-footer { padding: 22px 18px; }
  .hero-visual { min-height: 420px; padding: 18px; }
  .brand img { width: 46px; height: 46px; }
  .brand-text strong { font-size: 1.24rem; }
  .brand-text span { font-size: .68rem; }
  .language-current { padding: 0 12px; }
  .hero h1 { font-size: clamp(2.35rem, 13vw, 4rem); }
  .hero h2 { font-size: 1rem; }
  .contract-card, .contract-strip {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
  .about-grid,
  .token-mini-grid,
  .ecosystem-grid,
  .roadmap-grid,
  .social-grid,
  .rule-grid,
  .token-principles {
    grid-template-columns: 1fr;
  }
  .rule-box {
    grid-template-columns: 1fr;
  }
  .rule-icon { width: 64px; height: 64px; }
  .feature-illustration { min-height: 280px; }
  .coin-core { width: 140px; height: 140px; }
  .coin-core img { width: 92px; }
  .address { font-size: .9rem; }
}

/* ===== V3 UI polish ===== */
:root {
  --gold: #f7d77a;
  --gold-2: #d19b27;
  --gold-3: #7f5a13;
  --muted: #d8c795;
  --line: rgba(247, 215, 122, 0.16);
  --line-strong: rgba(247, 215, 122, 0.32);
  --shadow: 0 34px 90px rgba(0, 0, 0, 0.56);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0%, rgba(255, 212, 102, 0.028) 22%, transparent 42%),
    linear-gradient(245deg, transparent 8%, rgba(255, 192, 66, 0.022) 28%, transparent 44%);
  animation: softSweep 16s linear infinite;
}

.site-header {
  border-color: rgba(247, 215, 122, 0.18);
  background:
    linear-gradient(180deg, rgba(24, 17, 10, 0.88), rgba(10, 8, 6, 0.92)),
    radial-gradient(circle at 14% 20%, rgba(255, 220, 120, 0.06), transparent 20%);
}
.site-header::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 230, 148, 0.04), transparent);
  pointer-events: none;
}
.brand img {
  width: 62px;
  height: auto;
  filter: drop-shadow(0 8px 18px rgba(255, 194, 58, 0.24));
}
.brand-text strong {
  background: linear-gradient(180deg, #ffeaa4, #f2c651 60%, #bb8122);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy,
.hero-visual,
.section-card,
.site-footer {
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48), 0 0 0 1px rgba(247, 215, 122, 0.03) inset;
}
.hero-copy,
.section-card {
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 216, 106, 0.08), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 182, 62, 0.05), transparent 18%),
    linear-gradient(180deg, rgba(14, 11, 8, 0.86), rgba(8, 6, 4, 0.94));
}
.hero-copy::after,
.section-card::after,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: -25% auto auto -35%;
  width: 80%;
  height: 44%;
  transform: rotate(-12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 225, 143, 0.06), transparent);
  pointer-events: none;
}

.hero h1,
.section-head h3 {
  background: linear-gradient(180deg, #fff1b4 0%, #f8d978 42%, #c99229 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 { letter-spacing: -0.045em; }
.hero h2 {
  color: #f3d98a;
  text-shadow: 0 0 18px rgba(248, 213, 110, 0.08);
}
.hero-lead,
.hero-sub,
.section-head p,
.about-copy p,
.token-principles p,
.eco-card p,
.road-card p,
.rule-box p,
.rule-note,
.social-card span,
.footer-bottom p {
  color: #dfd0a8 !important;
}
.hero-points article,
.project-pillars article,
.token-mini-grid article,
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card,
.contract-strip,
.contract-card,
.founder-strip,
.rules-loop {
  backdrop-filter: blur(10px);
  background:
    linear-gradient(180deg, rgba(255, 223, 124, 0.075), rgba(255, 223, 124, 0.022));
}
.hero-points article,
.project-pillars article,
.token-mini-grid article,
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card {
  position: relative;
  overflow: hidden;
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}
.hero-points article::before,
.project-pillars article::before,
.token-mini-grid article::before,
.token-principles article::before,
.eco-card::before,
.road-card::before,
.rule-box::before,
.social-card::before {
  content: "";
  position: absolute;
  inset: -110% auto auto -50%;
  width: 80%;
  height: 240%;
  transform: rotate(28deg);
  background: linear-gradient(90deg, transparent, rgba(255, 237, 178, 0.10), transparent);
  transition: transform .55s ease;
}
.hero-points article:hover,
.project-pillars article:hover,
.token-mini-grid article:hover,
.token-principles article:hover,
.eco-card:hover,
.road-card:hover,
.rule-box:hover,
.social-card:hover {
  transform: translateY(-6px);
  border-color: rgba(247, 215, 122, 0.28);
  box-shadow: 0 16px 36px rgba(255, 184, 51, 0.09);
}
.hero-points article:hover::before,
.project-pillars article:hover::before,
.token-mini-grid article:hover::before,
.token-principles article:hover::before,
.eco-card:hover::before,
.road-card:hover::before,
.rule-box:hover::before,
.social-card:hover::before {
  transform: translateX(130%) rotate(28deg);
}

.btn.primary {
  background: linear-gradient(135deg, #ffe288, #d49a23 58%, #9a6815 100%);
  box-shadow: 0 16px 32px rgba(216, 155, 39, 0.26), inset 0 1px 0 rgba(255,255,255,.28);
}
.btn.ghost {
  background: linear-gradient(180deg, rgba(255, 223, 124, 0.075), rgba(255, 223, 124, 0.026));
}
.btn.primary:hover,
.btn.ghost:hover { box-shadow: 0 18px 34px rgba(216, 155, 39, 0.18); }

.hero-visual {
  background:
    radial-gradient(circle at 50% 25%, rgba(255, 224, 122, 0.09), transparent 26%),
    linear-gradient(180deg, rgba(13, 10, 7, 0.86), rgba(7, 5, 4, 0.96));
}
.hero-visual .visual-grid {
  opacity: .5;
  mask-image: radial-gradient(circle at center, black 52%, transparent 92%);
}
.hero-halo {
  background: radial-gradient(circle, rgba(255, 214, 102, 0.32), rgba(255, 214, 102, 0.02) 50%, transparent 72%);
  animation: pulseGold 5s ease-in-out infinite;
}
.visual-orbit { box-shadow: 0 0 22px rgba(255, 200, 74, 0.05); }
.logo-stage {
  width: 68%;
  top: 15%;
  filter: drop-shadow(0 24px 42px rgba(255, 198, 64, 0.16));
}
.city-lines i {
  background: linear-gradient(180deg, rgba(255, 220, 114, 0.34), rgba(255, 220, 114, 0.015));
  box-shadow: 0 0 24px rgba(255, 187, 45, 0.10);
}
.holo-disc::before,
.holo-disc::after {
  content: "";
  position: absolute;
  inset: 16% 8%;
  border-radius: 50%;
  border: 1px solid rgba(255, 224, 125, 0.16);
}
.holo-disc::after {
  inset: 28% 18%;
  border-style: dashed;
  animation: spinDisc 14s linear infinite;
}

.section-head {
  padding-bottom: 4px;
}
.section-kicker {
  background: linear-gradient(180deg, rgba(255,223,124,.08), rgba(255,223,124,.03));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.04);
}
.token-main-stat {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 229, 137, 0.28), transparent 32%),
    linear-gradient(135deg, rgba(255, 223, 124, 0.13), rgba(255, 223, 124, 0.03));
}
.token-main-stat::after {
  content: "";
  position: absolute;
  right: -8%;
  top: -12%;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 219, 112, 0.26), transparent 72%);
}
.token-main-stat strong {
  text-shadow: 0 0 28px rgba(255, 212, 98, 0.10);
}
.contract-strip .address,
.contract-card .address,
.founder-strip .address {
  color: #fff4c6;
}

.site-footer {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 219, 112, 0.06), transparent 24%),
    linear-gradient(180deg, rgba(13,10,7,.92), rgba(7,5,4,.98));
}
.footer-brand img {
  width: 58px;
  filter: drop-shadow(0 8px 18px rgba(255, 194, 58, 0.22));
}

@keyframes pulseGold {
  0%, 100% { transform: translateX(-50%) scale(1); opacity: .9; }
  50% { transform: translateX(-50%) scale(1.05); opacity: 1; }
}
@keyframes spinDisc { to { transform: rotate(360deg); } }
@keyframes softSweep {
  0% { transform: translateX(-8%) translateY(0); }
  50% { transform: translateX(8%) translateY(1%); }
  100% { transform: translateX(-8%) translateY(0); }
}

@media (max-width: 920px) {
  .brand img { width: 54px; }
  .logo-stage { width: 72%; }
}
@media (max-width: 680px) {
  .brand img { width: 48px; }
  .hero-visual { min-height: 390px; }
  .logo-stage { width: 74%; top: 17%; }
  .city-lines { bottom: 92px; height: 86px; }
  .hero-copy::after,
  .section-card::after,
  .hero-visual::after { width: 120%; }
}


/* ===== V4 ultimate visual upgrade ===== */
:root {
  --gold: #ffe18c;
  --gold-2: #d49c2f;
  --gold-3: #8a5b13;
  --cream: #fff4ce;
  --ink: #040302;
  --glass: rgba(12, 9, 5, .62);
  --glass-strong: rgba(16, 12, 7, .82);
}

.luxury-fx-layer {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  overflow: hidden;
}
.luxury-fx-layer span {
  position: absolute;
  width: 1px;
  height: 48vh;
  top: -12vh;
  background: linear-gradient(180deg, transparent, rgba(255, 225, 143, .34), transparent);
  filter: blur(.2px);
  transform: rotate(34deg);
  animation: fallingRay 10s linear infinite;
  opacity: .55;
}
.luxury-fx-layer span:nth-child(1) { left: 12%; animation-delay: -1s; }
.luxury-fx-layer span:nth-child(2) { left: 32%; animation-delay: -6s; height: 58vh; }
.luxury-fx-layer span:nth-child(3) { left: 55%; animation-delay: -3s; height: 42vh; }
.luxury-fx-layer span:nth-child(4) { left: 76%; animation-delay: -8s; height: 62vh; }
.luxury-fx-layer span:nth-child(5) { left: 91%; animation-delay: -4.4s; }

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(255, 205, 77, .12), transparent 34%),
    linear-gradient(180deg, #050403 0%, #080603 38%, #030201 100%);
}
.site-header {
  width: min(1280px, calc(100% - 28px));
  height: 78px;
  border-radius: 999px;
  padding: 0 16px 0 20px;
  background:
    linear-gradient(180deg, rgba(28, 21, 12, .74), rgba(7, 6, 4, .72));
  border-color: rgba(255, 225, 143, .22);
  box-shadow:
    0 20px 70px rgba(0,0,0,.52),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.brand img {
  width: 74px !important;
  max-height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(255, 203, 70, .26));
}
.brand-text strong {
  font-size: 1.55rem;
  letter-spacing: .08em;
}
.brand-text span {
  opacity: .86;
}
.main-nav {
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 224, 133, .035);
  border: 1px solid rgba(255, 224, 133, .08);
  gap: 6px;
}
.main-nav a {
  padding: 8px 12px;
  border-radius: 999px;
  font-size: .91rem;
}
.main-nav a::after { display: none; }
.main-nav a:hover,
.main-nav a.active {
  color: #1d1303;
  background: linear-gradient(135deg, #ffe698, #c98d21);
}
.language-current,
.round-icon {
  background: rgba(255, 226, 148, .06);
  border-color: rgba(255, 226, 148, .18);
}
.round-icon:hover,
.language-current:hover {
  background: rgba(255, 226, 148, .1);
}

.hero {
  width: min(1320px, calc(100% - 28px));
  min-height: calc(100vh - 104px);
  padding-top: 44px;
  grid-template-columns: minmax(0, 1.06fr) minmax(380px, .94fr);
  gap: 44px;
}
.hero-copy {
  padding: 28px 0 28px 8px;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}
.hero-copy::before,
.hero-copy::after { display: none; }
.eyebrow-group { gap: 14px; }
.chain-badge {
  border: 1px solid rgba(255, 226, 148, .32);
  background: linear-gradient(180deg, rgba(255,226,148,.12), rgba(255,226,148,.04));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08), 0 10px 26px rgba(211, 151, 34, .1);
}
.eyebrow-text {
  color: #edcf83;
  opacity: .9;
}
.hero h1 {
  max-width: 820px;
  font-size: clamp(3.6rem, 7vw, 7.2rem);
  line-height: .88;
  margin-top: 28px;
  filter: drop-shadow(0 0 24px rgba(255, 202, 78, .12));
}
.hero h2 {
  max-width: 760px;
  font-size: clamp(1.18rem, 2vw, 1.7rem);
  line-height: 1.35;
  margin: 18px 0 18px;
}
.hero-lead {
  max-width: 760px;
  font-size: 1.05rem;
}
.hero-sub {
  max-width: 760px;
}
.hero-points {
  max-width: 830px;
  grid-template-columns: repeat(3, minmax(0,1fr));
}
.hero-points article {
  border-radius: 22px;
  border-color: rgba(255, 226, 148, .18);
  background:
    radial-gradient(circle at top left, rgba(255, 231, 159, .13), transparent 38%),
    linear-gradient(180deg, rgba(255, 226, 148, .075), rgba(255, 226, 148, .025));
}
.hero-contract {
  max-width: 830px;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 230, 153, .1), rgba(255, 230, 153, .03));
}
.hero-buttons .btn {
  min-width: 190px;
  border-radius: 999px;
}
.btn.primary {
  color: #1d1303;
  background: linear-gradient(135deg, #fff0ac, #dfab35 45%, #a36a13 100%);
}
.btn.ghost {
  background: rgba(255, 230, 153, .055);
  border-color: rgba(255, 230, 153, .22);
}

.hero-visual {
  min-height: 720px;
  border-radius: 44px;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 222, 116, .18), transparent 32%),
    radial-gradient(circle at 50% 80%, rgba(255, 170, 24, .1), transparent 30%),
    linear-gradient(180deg, rgba(17, 12, 7, .74), rgba(5, 4, 3, .94));
  border-color: rgba(255, 230, 153, .22);
  box-shadow:
    0 34px 95px rgba(0, 0, 0, .58),
    0 0 70px rgba(255, 186, 46, .08),
    inset 0 1px 0 rgba(255,255,255,.08);
}
.hero-visual::after {
  display: block;
  inset: -30% -40% auto auto;
  width: 90%;
  height: 60%;
  background: linear-gradient(90deg, transparent, rgba(255, 232, 164, .12), transparent);
  animation: visualSweep 6s ease-in-out infinite;
}
.logo-stage {
  width: 76% !important;
  top: 12% !important;
  filter:
    drop-shadow(0 18px 22px rgba(255, 199, 61, .12))
    drop-shadow(0 0 38px rgba(255, 219, 122, .16));
}
.logo-stage img {
  width: 100%;
  object-fit: contain;
}
.holo-disc {
  bottom: 48px;
  width: 84%;
  background:
    radial-gradient(circle at center, rgba(255, 230, 153, .56), rgba(255, 197, 73, .14) 28%, transparent 62%),
    conic-gradient(from 0deg, transparent, rgba(255, 228, 145, .22), transparent 35%, rgba(255, 184, 48, .16), transparent 70%);
}
.holo-disc::before {
  box-shadow: 0 0 34px rgba(255, 208, 88, .18);
}
.city-lines {
  bottom: 104px;
}
.city-lines i {
  border-color: rgba(255, 230, 153, .22);
  background: linear-gradient(180deg, rgba(255, 229, 145, .38), rgba(255, 188, 47, .04));
}
.energy-beam {
  position: absolute;
  width: 2px;
  height: 58%;
  top: 21%;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(255, 231, 158, .42), transparent);
  filter: blur(.4px);
  transform-origin: bottom;
  animation: beamMove 5.6s ease-in-out infinite;
}
.beam-one { left: 27%; transform: rotate(-24deg); }
.beam-two { left: 50%; height: 66%; animation-delay: -2s; }
.beam-three { right: 24%; transform: rotate(24deg); animation-delay: -3.6s; }
.data-chip {
  position: absolute;
  z-index: 3;
  padding: 12px 15px;
  border-radius: 18px;
  border: 1px solid rgba(255, 231, 158, .2);
  background: rgba(10, 8, 5, .58);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  animation: chipFloat 5s ease-in-out infinite;
}
.data-chip b {
  display: block;
  color: #ffe18c;
  font-size: 1.08rem;
  line-height: 1;
}
.data-chip span {
  display: block;
  margin-top: 5px;
  color: #d8c795;
  font-size: .76rem;
  white-space: nowrap;
}
.chip-one { left: 8%; top: 18%; }
.chip-two { right: 7%; top: 38%; animation-delay: -1.4s; }
.chip-three { left: 13%; bottom: 24%; animation-delay: -2.8s; }

.gold-flow-divider {
  width: min(1180px, calc(100% - 40px));
  height: 64px;
  margin: -10px auto 6px;
  position: relative;
  pointer-events: none;
}
.gold-flow-divider i {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  height: 1px;
  transform: translate(-50%, -50%);
  background: linear-gradient(90deg, transparent, rgba(255, 232, 159, .32), transparent);
}
.gold-flow-divider i:nth-child(2) {
  width: 38%;
  top: 44%;
  opacity: .9;
}
.gold-flow-divider i:nth-child(3) {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255,232,159,.38);
  border-radius: 50%;
  background: rgba(255,232,159,.08);
  box-shadow: 0 0 22px rgba(255, 204, 77, .2);
}

.section {
  width: min(1240px, calc(100% - 28px));
}
.section-card {
  border-radius: 34px;
  padding: 42px;
  border-color: rgba(255, 231, 158, .16);
  background:
    radial-gradient(circle at 0 0, rgba(255, 231, 158, .095), transparent 28%),
    radial-gradient(circle at 100% 100%, rgba(255, 171, 42, .06), transparent 30%),
    linear-gradient(180deg, rgba(15, 11, 6, .76), rgba(7, 5, 3, .92));
}
.section-head h3 {
  font-size: clamp(2.05rem, 3.8vw, 3.65rem);
}
.section-kicker {
  border-color: rgba(255, 231, 158, .18);
  background: rgba(255, 231, 158, .065);
}
.about-copy p {
  font-size: 1.01rem;
}
.feature-illustration {
  border-radius: 34px;
  background:
    radial-gradient(circle at center, rgba(255, 224, 122, .14), rgba(255, 224, 122, .02) 48%, transparent 68%),
    linear-gradient(180deg, rgba(255, 230, 153, .04), rgba(255, 230, 153, .015));
}
.coin-core {
  background: linear-gradient(180deg, rgba(255, 232, 164, .22), rgba(255, 186, 50, .05));
  box-shadow:
    0 0 46px rgba(255, 201, 72, .16),
    inset 0 1px 0 rgba(255,255,255,.1);
}
.coin-core img {
  width: 132px;
  object-fit: contain;
}
.token-hero-panel {
  gap: 22px;
}
.token-main-stat,
.token-mini-grid article,
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card {
  border-color: rgba(255, 231, 158, .16);
  background:
    radial-gradient(circle at 20% 0, rgba(255, 230, 153, .11), transparent 32%),
    linear-gradient(180deg, rgba(255, 230, 153, .07), rgba(255, 230, 153, .022));
}
.token-main-stat {
  min-height: 290px;
  border-radius: 30px;
}
.token-main-stat strong {
  font-size: clamp(1.9rem, 3.6vw, 3rem);
}
.token-mini-grid article {
  border-radius: 24px;
}
.token-principles article,
.eco-card,
.road-card,
.rule-box,
.social-card {
  border-radius: 26px;
}
.eco-icon,
.road-icon,
.rule-icon {
  background: linear-gradient(180deg, rgba(255,230,153,.13), rgba(255,230,153,.04));
  border-color: rgba(255, 231, 158, .22);
  box-shadow: 0 0 24px rgba(255, 196, 54, .07);
}
.roadmap-grid,
.ecosystem-grid,
.social-grid {
  gap: 20px;
}
.rules-loop {
  border-style: solid;
  background: linear-gradient(90deg, rgba(255, 230, 153, .06), rgba(255, 230, 153, .02), rgba(255, 230, 153, .06));
}
.site-footer {
  border-radius: 34px;
  border-color: rgba(255, 231, 158, .16);
}

@keyframes fallingRay {
  from { transform: translateY(-30vh) rotate(34deg); opacity: 0; }
  18% { opacity: .65; }
  to { transform: translateY(130vh) rotate(34deg); opacity: 0; }
}
@keyframes visualSweep {
  0%, 100% { transform: translateX(-30%) rotate(-12deg); opacity: 0; }
  45%, 60% { opacity: 1; }
  70% { transform: translateX(30%) rotate(-12deg); opacity: 0; }
}
@keyframes beamMove {
  0%, 100% { opacity: .22; transform: translateY(0) rotate(var(--r, 0deg)); }
  50% { opacity: .75; transform: translateY(-8px) rotate(var(--r, 0deg)); }
}
@keyframes chipFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@media (max-width: 1120px) {
  .hero {
    grid-template-columns: 1fr;
  }
  .hero-copy {
    padding: 24px 4px 0;
  }
  .hero-visual {
    min-height: 560px;
  }
}
@media (max-width: 920px) {
  .site-header {
    border-radius: 28px;
    height: auto;
  }
  .main-nav {
    border-radius: 20px;
    background: transparent;
    border: 0;
  }
  .main-nav a:hover,
  .main-nav a.active {
    color: var(--gold);
    background: rgba(255, 230, 153, .06);
  }
}
@media (max-width: 680px) {
  .hero,
  .section,
  .site-header,
  .site-footer {
    width: min(100% - 18px, 1240px);
  }
  .hero {
    padding-top: 28px;
    gap: 22px;
  }
  .hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);
  }
  .hero-copy {
    padding-left: 0;
  }
  .hero-visual {
    min-height: 430px;
    border-radius: 28px;
  }
  .logo-stage {
    width: 86% !important;
    top: 16% !important;
  }
  .data-chip {
    padding: 9px 11px;
    border-radius: 14px;
  }
  .data-chip b {
    font-size: .95rem;
  }
  .data-chip span {
    font-size: .68rem;
  }
  .chip-one { left: 5%; top: 18%; }
  .chip-two { right: 5%; top: 39%; }
  .chip-three { left: 8%; bottom: 24%; }
  .section-card {
    padding: 24px 18px;
    border-radius: 26px;
  }
  .token-main-stat {
    min-height: auto;
  }
}
