/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #060818;
  --bg2:        #0a0d22;
  --bg3:        #0e1230;
  --card:       rgba(255,255,255,0.032);
  --card-hover: rgba(255,255,255,0.055);
  --blue:       #2563eb;
  --blue-lt:    #60a5fa;
  --orange:     #f97316;
  --orange-lt:  #fb923c;
  --orange-dim: rgba(249,115,22,0.15);
  --green:      #22c55e;
  --green-dim:  rgba(34,197,94,0.12);
  --red:        #ef4444;
  --white:      #eef2ff;
  --muted:      #6b7db3;
  --muted2:     #4a5578;
  --border:     rgba(255,255,255,0.065);
  --border2:    rgba(255,255,255,0.1);
  --r:          16px;
  --r-sm:       10px;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3 { font-family: 'Syne', sans-serif; line-height: 1.12; }
h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 99px; }

/* ── Utilities ── */
.container { max-width: 1080px; margin: 0 auto; padding: 0 28px; }
.section { padding: 110px 0; }

.gradient-text {
  background: linear-gradient(120deg, #f97316 0%, #fbbf24 45%, #f97316 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,0.22);
  border-radius: 99px;
  padding: 5px 14px;
  margin-bottom: 20px;
}

.section-header { text-align: center; margin-bottom: 70px; }
.section-header h2 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); margin-bottom: 16px; }
.section-desc { color: var(--muted); max-width: 480px; margin: 0 auto; font-size: 17px; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 99px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 0 32px rgba(249,115,22,0.38);
}
.btn-primary:hover {
  background: var(--orange-lt);
  box-shadow: 0 0 48px rgba(249,115,22,0.6);
  transform: translateY(-2px);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--border2);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.06);
  transform: translateY(-2px);
}
.btn-nav {
  background: var(--orange);
  color: #fff;
  padding: 9px 22px;
  font-size: 14px;
  box-shadow: 0 0 22px rgba(249,115,22,0.3);
}
.btn-nav:hover { background: var(--orange-lt); box-shadow: 0 0 32px rgba(249,115,22,0.5); }
.btn-lg { padding: 16px 36px; font-size: 16px; }

/* ── Nav ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  transition: background 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6,8,24,0.88);
  backdrop-filter: blur(20px) saturate(180%);
  border-color: var(--border);
}
.nav-inner {
  max-width: 1080px; margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; gap: 36px;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Syne', sans-serif; font-size: 21px; font-weight: 800;
}
.nav-logo-img {
  width: 36px; height: 36px;
  border-radius: 10px; object-fit: cover;
  box-shadow: 0 0 12px rgba(249,115,22,0.3);
}
.nav-links {
  display: flex; align-items: center; gap: 30px;
  list-style: none; margin-left: auto;
}
.nav-links a {
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--white); }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 4px; margin-left: auto;
}
.nav-burger span {
  width: 22px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: all 0.25s;
}
.nav-mobile {
  display: none; flex-direction: column; gap: 0;
  background: rgba(6,8,24,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a {
  padding: 14px 28px;
  color: var(--muted); font-weight: 500; font-size: 15px;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s, background 0.2s;
}
.nav-mobile a:hover { color: var(--white); background: rgba(255,255,255,0.03); }
.nav-mobile a:last-child { border: none; margin: 12px 28px; }
.nav-mobile.open { display: flex; }
@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-inner .btn-nav { display: none; }
  .nav-burger { display: flex; }
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  padding-top: 70px;
}
#particles {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(37,99,235,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(37,99,235,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(37,99,235,0.14) 0%, transparent 65%),
    radial-gradient(ellipse 45% 45% at 50% 55%, rgba(249,115,22,0.07) 0%, transparent 55%);
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  text-align: center;
  padding: 40px 28px 80px;
  width: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 99px; padding: 5px 16px;
  margin-bottom: 36px;
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 10px var(--green);
  animation: dotPulse 2s infinite;
}
.hero-center {
  display: flex; align-items: center; gap: 56px;
  flex-wrap: wrap; justify-content: center;
  max-width: 1000px;
}

/* Logo */
.hero-logo-wrap {
  position: relative;
  width: 210px; height: 210px;
  flex-shrink: 0;
}
.logo-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(96,165,250,0.22);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: ringPulse 3s ease-in-out infinite;
}
.ring-1 { width: 250px; height: 250px; animation-delay: 0s; }
.ring-2 { width: 300px; height: 300px; animation-delay: 0.6s; opacity: 0.6; }
.ring-3 { width: 350px; height: 350px; animation-delay: 1.2s; opacity: 0.3; }

.hero-logo {
  width: 100%; height: 100%;
  object-fit: cover; border-radius: 30px;
  position: relative; z-index: 2;
  animation: heroFloat 5s ease-in-out infinite;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.08),
    0 0 80px rgba(37,99,235,0.45),
    0 0 40px rgba(239,68,68,0.28),
    0 30px 80px rgba(0,0,0,0.65);
}

/* Hero text */
.hero-text {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; max-width: 560px;
}
.hero-title {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800; margin-bottom: 20px;
  line-height: 1.08;
}
.hero-sub {
  color: var(--muted); font-size: clamp(15px, 2vw, 17px);
  line-height: 1.72; margin-bottom: 32px;
}
@media (max-width: 640px) { .br-desktop { display: none; } }

/* CA */
.ca-box {
  background: rgba(255,255,255,0.038);
  border: 1px solid var(--border2);
  border-radius: var(--r);
  padding: 14px 18px;
  margin-bottom: 24px;
  width: 100%;
  max-width: 500px;
  transition: border-color 0.2s;
}
.ca-box:hover { border-color: rgba(249,115,22,0.35); }
.ca-label-row {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 8px;
}
.ca-label {
  font-size: 10px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange);
}
.ca-chain {
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 99px; padding: 2px 9px;
}
.ca-inner {
  display: flex; align-items: center; gap: 10px;
}
.ca-text {
  font-family: 'Space Grotesk', monospace;
  font-size: 12.5px; color: rgba(238,242,255,0.75);
  word-break: break-all; text-align: left; flex: 1;
  letter-spacing: 0.01em;
}
.ca-copy {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--orange-dim);
  border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange); border-radius: 8px;
  padding: 7px 14px; font-size: 12.5px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  white-space: nowrap; flex-shrink: 0;
  font-family: 'Space Grotesk', sans-serif;
}
.ca-copy:hover { background: rgba(249,115,22,0.25); box-shadow: 0 0 18px rgba(249,115,22,0.3); }
.ca-copy.copied { color: var(--green); background: var(--green-dim); border-color: rgba(34,197,94,0.3); }

.hero-ctas {
  display: flex; gap: 12px; flex-wrap: wrap;
  justify-content: center; margin-bottom: 28px;
}
.hero-socials { display: flex; gap: 10px; }
.social-link {
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  color: var(--muted);
  transition: all 0.2s;
}
.social-link:hover {
  background: var(--orange-dim);
  border-color: rgba(249,115,22,0.35);
  color: var(--orange);
  transform: translateY(-2px);
}

/* Scroll hint */
.hero-scroll {
  position: absolute; bottom: 28px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--muted2); font-size: 10px; letter-spacing: 0.15em; text-transform: uppercase;
}
.scroll-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--muted2);
  animation: scrollBounce 1.8s ease-in-out infinite;
}

/* ── Ticker ── */
.ticker-wrap {
  background: var(--orange);
  overflow: hidden;
  position: relative;
}
.ticker-inner { overflow: hidden; padding: 11px 0; }
.ticker-track {
  display: flex; gap: 24px; align-items: center;
  white-space: nowrap;
  width: max-content;
  animation: tickerScroll 32s linear infinite;
}
.ticker-track span {
  font-size: 12px; font-weight: 700;
  color: rgba(0,0,0,0.8); letter-spacing: 0.04em;
}
.t-accent { color: rgba(0,0,0,0.95); }
.t-dot { opacity: 0.35; font-size: 8px; }

/* ── About ── */
.about { background: var(--bg2); position: relative; overflow: hidden; }
.about::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center;
}
@media (max-width: 880px) { .about-grid { grid-template-columns: 1fr; gap: 48px; } }

.about-left h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 22px; }
.about-left p { color: var(--muted); margin-bottom: 16px; font-size: 16px; line-height: 1.75; }
.about-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px;
}
.abadge {
  font-size: 13px; font-weight: 600;
  padding: 7px 15px; border-radius: 99px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border2);
  color: var(--white);
}

/* Loop card */
.loop-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 20px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.loop-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
}
.loop-title {
  font-size: 11px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 24px;
}
.loop-items { display: flex; flex-direction: column; }
.loop-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.2s;
}
.loop-item:hover { background: rgba(255,255,255,0.03); }
.loop-item.active { background: rgba(249,115,22,0.06); }
.loop-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 12px;
  background: rgba(37,99,235,0.12);
  border: 1px solid rgba(37,99,235,0.2);
  color: var(--blue-lt);
}
.loop-icon.orange { background: var(--orange-dim); border-color: rgba(249,115,22,0.2); color: var(--orange); }
.loop-icon.green  { background: var(--green-dim);  border-color: rgba(34,197,94,0.2);  color: var(--green); }
.loop-item-text strong { display: block; font-size: 15px; font-weight: 700; margin-bottom: 3px; }
.loop-item-text span { color: var(--muted); font-size: 13.5px; }
.loop-connector {
  text-align: center; padding: 4px;
  color: var(--muted2); font-size: 18px; line-height: 1;
}
.loop-back {
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--orange);
  font-family: 'Space Grotesk', sans-serif;
  padding: 12px 16px;
  background: var(--orange-dim);
  border-radius: 10px; margin-top: 4px;
}

/* ── How It Works ── */
.how { background: var(--bg); }
.how-cards {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 20px; margin-bottom: 40px;
}
@media (max-width: 780px) { .how-cards { grid-template-columns: 1fr; } }

.how-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
  animation-delay: var(--delay, 0s);
}
.how-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  opacity: 0; transition: opacity 0.3s;
}
.how-card:nth-child(1)::after { background: linear-gradient(90deg, var(--blue-lt), transparent); }
.how-card:nth-child(2)::after { background: linear-gradient(90deg, var(--orange), transparent); }
.how-card:nth-child(3)::after { background: linear-gradient(90deg, var(--green), transparent); }
.how-card:hover { transform: translateY(-6px); border-color: var(--border2); background: var(--card-hover); }
.how-card:hover::after { opacity: 1; }

.how-card-top {
  display: flex; align-items: flex-start;
  justify-content: space-between; margin-bottom: 20px;
}
.how-num {
  font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 800;
  letter-spacing: 0.18em; color: var(--muted2); margin-top: 2px;
}
.how-card-icon {
  width: 52px; height: 52px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 14px;
  background: rgba(37,99,235,0.1);
  border: 1px solid rgba(37,99,235,0.18);
  color: var(--blue-lt);
}
.how-card-icon.orange { background: var(--orange-dim); border-color: rgba(249,115,22,0.18); color: var(--orange); }
.how-card-icon.green  { background: var(--green-dim);  border-color: rgba(34,197,94,0.18);  color: var(--green); }
.how-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.how-card p { color: var(--muted); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; }
.how-card-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 99px;
  background: rgba(37,99,235,0.1); color: var(--blue-lt);
  border: 1px solid rgba(37,99,235,0.2);
}
.how-card-tag.orange { background: var(--orange-dim); color: var(--orange); border-color: rgba(249,115,22,0.2); }
.how-card-tag.green  { background: var(--green-dim);  color: var(--green);  border-color: rgba(34,197,94,0.2); }

.how-bottom {
  display: flex; align-items: flex-start; gap: 16px;
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 14px; padding: 20px 24px;
}
.how-bottom-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border-radius: 10px;
  background: rgba(34,197,94,0.15); color: var(--green);
}
.how-bottom p { color: rgba(238,242,255,0.75); font-size: 15px; line-height: 1.65; }

/* ── Tokenomics ── */
.tokenomics { background: var(--bg2); }

.token-stats {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 16px; margin-bottom: 44px;
}
@media (max-width: 680px) { .token-stats { grid-template-columns: repeat(2,1fr); } }

.token-stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 18px; padding: 28px 20px;
  text-align: center;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
  position: relative; overflow: hidden;
}
.token-stat::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
}
.token-stat:hover { border-color: var(--border2); transform: translateY(-4px); }
.token-stat.highlight {
  background: var(--orange-dim);
  border-color: rgba(249,115,22,0.25);
}
.token-stat.highlight:hover { border-color: rgba(249,115,22,0.5); }
.ts-num {
  display: block;
  font-family: 'Syne', sans-serif; font-weight: 800;
  font-size: clamp(2.2rem, 4vw, 3rem);
  background: linear-gradient(135deg, var(--orange), #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 8px;
}
.token-stat.highlight .ts-num {
  background: linear-gradient(135deg, #fff, #fbbf24);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.ts-label { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: 4px; }
.ts-sub { font-size: 12px; color: var(--muted); }

.token-alloc {
  max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
}
.alloc-row { margin-bottom: 20px; }
.alloc-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 600; margin-bottom: 10px;
}
.alloc-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.alloc-bar-wrap { display: flex; align-items: center; gap: 14px; }
.alloc-bar {
  flex: 1; height: 10px;
  background: rgba(255,255,255,0.05); border-radius: 99px; overflow: hidden;
}
.alloc-fill { height: 100%; border-radius: 99px; width: 0; transition: width 1.4s cubic-bezier(0.16,1,0.3,1); }
.alloc-pct { font-size: 14px; font-weight: 700; color: var(--orange); width: 42px; text-align: right; }
.alloc-badges {
  display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px;
}
.alloc-badge {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 12.5px; font-weight: 600;
  color: var(--green);
  background: var(--green-dim);
  border: 1px solid rgba(34,197,94,0.18);
  border-radius: 99px; padding: 6px 14px;
}

/* ── Community ── */
.community {
  background: var(--bg);
  position: relative; overflow: hidden;
}
.community::before {
  content: '';
  position: absolute; bottom: -300px; left: -300px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(ellipse, rgba(249,115,22,0.06) 0%, transparent 65%);
  pointer-events: none;
}
.community-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}
@media (max-width: 860px) { .community-inner { grid-template-columns: 1fr; gap: 48px; } }

.community-text .section-tag { margin-bottom: 20px; }
.community-text h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 18px; }
.community-text p { color: var(--muted); font-size: 16px; line-height: 1.75; margin-bottom: 32px; }

.community-links { display: flex; flex-direction: column; gap: 12px; }
.community-link {
  display: inline-flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: 14px;
  font-size: 15px; font-weight: 600;
  border: 1px solid var(--border);
  transition: all 0.22s cubic-bezier(0.16,1,0.3,1);
  color: var(--white);
}
.community-link:hover { transform: translateX(6px); }
.community-link.x   { background: rgba(255,255,255,0.03); }
.community-link.x:hover   { background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.15); }
.community-link.tg  { background: rgba(0,136,204,0.06); }
.community-link.tg:hover  { background: rgba(0,136,204,0.12); border-color: rgba(0,136,204,0.25); }
.community-link.dex { background: rgba(249,115,22,0.05); }
.community-link.dex:hover { background: var(--orange-dim); border-color: rgba(249,115,22,0.25); color: var(--orange); }

/* CTA Card */
.cta-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--orange), #fbbf24, var(--orange));
}
.cta-card-label {
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--orange); margin-bottom: 14px;
}
.cta-card h3 {
  font-size: clamp(1.5rem, 3vw, 2rem); margin-bottom: 14px;
}
.cta-card p { color: var(--muted); font-size: 15px; margin-bottom: 24px; line-height: 1.7; }
.cta-card .btn-primary { width: 100%; justify-content: center; margin-bottom: 18px; }
.cta-card-ca {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 10px; padding: 10px 14px;
  flex-wrap: wrap;
}
.cta-card-ca .ca-label { font-size: 11px; white-space: nowrap; }
.cta-ca-text {
  flex: 1; font-family: 'Space Grotesk', monospace;
  font-size: 11px; color: var(--muted);
  word-break: break-all; min-width: 0;
}
.cta-copy {
  background: var(--orange-dim); border: 1px solid rgba(249,115,22,0.3);
  color: var(--orange); border-radius: 7px;
  padding: 5px 12px; font-size: 12px; font-weight: 700;
  cursor: pointer; transition: all 0.2s;
  font-family: 'Space Grotesk', sans-serif; white-space: nowrap;
}
.cta-copy:hover { background: rgba(249,115,22,0.25); }
.cta-copy.copied { color: var(--green); background: var(--green-dim); border-color: rgba(34,197,94,0.3); }

/* ── Footer ── */
.footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-top {
  display: flex; justify-content: space-between;
  gap: 48px; flex-wrap: wrap; margin-bottom: 52px;
}
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-logo {
  width: 50px; height: 50px;
  border-radius: 14px; object-fit: cover;
  box-shadow: 0 0 20px rgba(249,115,22,0.2);
}
.footer-name {
  font-family: 'Syne', sans-serif; font-size: 24px; font-weight: 800;
}
.footer-sub { color: var(--muted); font-size: 13px; margin-top: 2px; }
.footer-cols { display: flex; gap: 56px; }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--muted2);
  margin-bottom: 4px;
}
.footer-col a { font-size: 14px; color: var(--muted); transition: color 0.2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding-top: 28px; border-top: 1px solid var(--border);
  color: var(--muted2); font-size: 12.5px;
}
.footer-copy { white-space: nowrap; }

/* ── Animations ── */
@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
@keyframes ringPulse {
  0%, 100% { opacity: 0.3; transform: translate(-50%,-50%) scale(1); }
  50%       { opacity: 0.7; transform: translate(-50%,-50%) scale(1.03); }
}
@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 10px var(--green); opacity: 1; }
  50%       { box-shadow: 0 0 3px var(--green); opacity: 0.5; }
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.5; }
  50%       { transform: translateY(5px); opacity: 1; }
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── Mobile ── */
@media (max-width: 600px) {
  .section { padding: 80px 0; }
  .hero-title { font-size: 2.4rem; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { justify-content: center; }
  .footer-cols { gap: 32px; flex-wrap: wrap; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .cta-card { padding: 24px; }
  .community-link { padding: 12px 16px; }
}
