:root {
  --bg: #0a0a0b;
  --panel: #121215;
  --panel-2: #17171c;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --line: rgba(255,255,255,.08);
  --gold: #f0b90b;
  --gold-2: #ffd76a;
  --max: 1120px;
  --radius: 24px;
  --shadow: 0 20px 70px rgba(0,0,0,.45);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a { color: inherit; text-decoration: none; }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.bg-grid {
  position: fixed; inset: 0; pointer-events: none; opacity: .25;
  background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
}
.site-header { position: sticky; top: 0; z-index: 20; backdrop-filter: blur(16px); background: rgba(10,10,11,.6); border-bottom: 1px solid var(--line); }
.nav { display: flex; justify-content: space-between; align-items: center; min-height: 72px; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--gold); }
.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  object-fit: cover;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}
nav { display: flex; gap: 18px; color: var(--muted); font-size: 14px; }
nav a:hover { color: var(--text); }
.hero {
  padding: 88px 0 64px; display: grid; grid-template-columns: 1.25fr .9fr; gap: 28px; align-items: center;
}
.eyebrow, .section-kicker { color: var(--gold); text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 700; }
h1 { font-size: clamp(56px, 9vw, 110px); line-height: .94; margin: 8px 0 20px; letter-spacing: -0.05em; color: var(--gold); }
h2 { font-size: clamp(30px, 4.4vw, 52px); line-height: 1.02; margin: 6px 0 12px; letter-spacing: -0.04em; }
h3 { margin: 0 0 12px; font-size: 22px; }
.lede, p, li { color: var(--muted); line-height: 1.75; font-size: 16px; }
.lede-secondary { margin-top: -6px; }
.hero-project-logo {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin: 8px 0 10px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 0; }
.btn {
  display: inline-flex; align-items: center; justify-content: center; min-height: 48px; padding: 0 18px;
  border-radius: 999px; border: 1px solid var(--line); font-weight: 700;
}
.btn-primary { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: #111; border: none; }
.btn-secondary { background: rgba(255,255,255,.02); }
.icon-btn {
  width: 48px;
  min-width: 48px;
  padding: 0;
}
.social-icon {
  width: 20px;
  height: 20px;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 16px;
}
.link-card {
  display: block;
  padding: 22px;
  border-radius: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.link-label {
  display: block;
  color: var(--gold);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 10px;
}
.link-value {
  display: block;
  color: var(--text);
  font-weight: 700;
  line-height: 1.4;
}
.opcat-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.03);
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}
.mini-link:hover {
  border-color: rgba(240,185,11,.5);
  color: var(--gold-2);
}
.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.hero-tags span {
  padding: 10px 14px; border-radius: 999px; border: 1px solid var(--line); background: rgba(255,255,255,.03);
  color: #d4d4d8; font-size: 13px;
}
.hero-card {
  position: relative;
  background: #000;
  border: 1px solid rgba(255,255,255,.04);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.visual-card {
  background: #000;
  min-height: 460px;
  display: grid;
  place-items: center;
}
.coin-showcase {
  position: relative;
  z-index: 1;
  width: 100%;
  display: grid;
  place-items: center;
  background: #000;
}
.coin-main-wrap {
  position: relative;
  width: 320px;
  height: 320px;
  background: #000;
}
.coin-main-wrap::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -26px;
  width: 74%;
  height: 48px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,0,0,.38), rgba(0,0,0,0) 72%);
  filter: blur(16px);
}
.coin-main {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: #000;
  padding: 0;
  box-shadow:
    0 0 36px rgba(240,185,11,.22),
    0 0 88px rgba(240,185,11,.12),
    0 24px 70px rgba(0,0,0,.32);
  animation: floatCoin 5.5s ease-in-out infinite;
  overflow: hidden;
}
.coin-main::before {
  content: none;
}
.coin-main::after {
  content: none;
}
.coin-main img {
  width: 122%;
  height: 122%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.coin-sidecard {
  position: absolute;
  right: 10px;
  bottom: 6px;
  width: 130px;
  padding: 10px;
  border-radius: 20px;
  background: rgba(18,18,21,.92);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}
.coin-sidecard img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 50%;
  border: 2px solid rgba(240,185,11,.45);
}
.coin-sidecard p {
  margin: 8px 0 0;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold-2);
  text-align: center;
}
@keyframes floatCoin {
  0%, 100% { transform: translateY(0px) rotate(-8deg); }
  50% { transform: translateY(-28px) rotate(0deg); }
}
.card-glow {
  display: none;
}
.stat-card {
  position: relative; z-index: 1; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06); margin-bottom: 12px;
}
.stat-label, .token-label { margin: 0 0 8px; color: var(--gold); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.stat-value { margin: 0; color: var(--text); font-size: 18px; font-weight: 700; }
.section { padding: 56px 0; }
.section-dark { background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01)); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.two-col { display: grid; grid-template-columns: 1fr 1.2fr; gap: 28px; }
.cards { display: grid; gap: 18px; }
.three-up { grid-template-columns: repeat(3, 1fr); margin-top: 26px; }
.info-card, .media-card, .token-box {
  background: var(--panel); border: 1px solid var(--line); border-radius: 22px; box-shadow: var(--shadow);
}
.info-card { padding: 24px; }
.token-box { margin-top: 24px; padding: 24px; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.token-box-single { grid-template-columns: 1fr; max-width: 760px; }
.token-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}
.text-link {
  color: var(--gold-2);
  font-weight: 700;
}
.text-link:hover {
  color: var(--text);
}
.section-intro { max-width: 740px; margin-bottom: 24px; }
.dao-section {
  display: grid;
  gap: 18px;
}
.dao-section h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  line-height: 1.06;
  margin: 4px 0 6px;
}
.dao-overview {
  padding: 28px;
}
.dao-overview p {
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.8;
  color: var(--muted);
}
.dao-overview strong {
  color: var(--text);
}
.dao-lines {
  color: var(--muted);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
}
.dao-actions {
  margin-top: 8px;
}
.dao-proposal {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.dao-proposal summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  font-weight: 700;
  color: var(--text);
  position: relative;
}
.dao-proposal summary::-webkit-details-marker {
  display: none;
}
.dao-proposal summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold);
  font-size: 24px;
  line-height: 1;
}
.dao-proposal[open] summary::after {
  content: '−';
}
.dao-proposal-body {
  padding: 0 24px 24px;
  border-top: 1px solid var(--line);
}
.dao-proposal-body h3 {
  margin-top: 22px;
  margin-bottom: 10px;
}
.dao-proposal-body h4 {
  margin-top: 18px;
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--text);
}
.dao-proposal-body p,
.dao-proposal-body li {
  color: var(--muted);
}
.dao-proposal-body ul {
  margin: 0 0 12px 0;
  padding-left: 20px;
}
.media-grid { grid-template-columns: 1fr 1fr; margin-bottom: 22px; }
.media-card {
  min-height: 180px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(240,185,11,.12), rgba(255,255,255,.03));
}
.media-card.wide { grid-column: span 2; min-height: 280px; }
.placeholder span { color: #fafafa; font-weight: 700; letter-spacing: .03em; }
.chart-preview-card {
  display: block;
  margin: 16px auto 0;
  max-width: 760px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.chart-preview-image {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #0b0b0d;
}
.chart-actions {
  margin-top: 18px;
  display: flex;
  justify-content: center;
}
.video-shell {
  margin: 16px auto 0;
  max-width: 680px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
}
.hero-video {
  display: block;
  width: 100%;
  border-radius: 18px;
  background: #000;
}
.meme-section {
  overflow: hidden;
}
.meme-marquee {
  margin-top: 24px;
  display: grid;
  gap: 24px;
}
.meme-row {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0, black 8%, black 92%, transparent 100%);
}
.meme-track {
  display: flex;
  gap: 28px;
  width: max-content;
  will-change: transform;
  animation: memeScroll var(--meme-duration, 12s) linear infinite;
  animation-direction: var(--meme-direction, normal);
}
.meme-card {
  flex: 0 0 320px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #0b0b0d;
  box-shadow: var(--shadow);
}
.meme-card-image,
.meme-card-video {
  width: 100%;
  height: 100%;
  display: block;
  background: #000;
}
.meme-card-image {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
.meme-card-video {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}
@keyframes memeScroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-22% - 28px)); }
}
.site-footer { padding: 28px 0 44px; }
.footer-inner { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--line); padding-top: 20px; }
.footer-links { display: flex; gap: 18px; color: var(--muted); }

@media (max-width: 920px) {
  .hero, .two-col, .three-up, .token-box, .media-grid, .footer-inner, .links-grid { grid-template-columns: 1fr; display: grid; }
  .media-card.wide { grid-column: auto; }
  .nav { flex-direction: column; padding: 14px 0; }
}

@media (max-width: 640px) {
  nav { flex-wrap: wrap; justify-content: center; }
  .hero { padding-top: 48px; }
  h1 { font-size: 58px; }
  .meme-card { flex-basis: 240px; }
}
