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

/* ─── Animated Background Canvas ─── */
#bgCanvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ─── Aurora Orbs ─── */
.bg-orbs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
  will-change: transform;
}

.orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, #F5A623, #E8951A);
  top: -200px; left: -200px;
  animation: orbDrift1 18s ease-in-out infinite;
}

.orb-2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #ff6b35, #F5A623);
  bottom: -100px; right: -100px;
  animation: orbDrift2 22s ease-in-out infinite;
}

.orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #FFD080, #F5A623);
  top: 40%; left: 50%;
  animation: orbDrift3 26s ease-in-out infinite;
}

.orb-4 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, #ff9500, #FF6B00);
  top: 20%; right: 10%;
  animation: orbDrift4 20s ease-in-out infinite;
  opacity: 0.12;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(120px, 80px) scale(1.15); }
  66%  { transform: translate(60px, 180px) scale(0.9); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-100px, -60px) scale(1.1); }
  66%  { transform: translate(-160px, -130px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}
@keyframes orbDrift3 {
  0%   { transform: translate(-50%, -50%) scale(1); }
  50%  { transform: translate(calc(-50% + 140px), calc(-50% - 100px)) scale(1.2); }
  100% { transform: translate(-50%, -50%) scale(1); }
}
@keyframes orbDrift4 {
  0%   { transform: translate(0, 0) scale(1); }
  40%  { transform: translate(-80px, 120px) scale(1.25); }
  80%  { transform: translate(40px, 60px) scale(0.85); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ─── Emoji Field ─── */
#emojiField {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

:root {
  --orange: #F5A623;
  --orange-dark: #E8951A;
  --orange-light: #FFD080;
  --black: #0A0A0A;
  --dark: #111111;
  --dark2: #1A1A1A;
  --dark3: #242424;
  --white: #FFFFFF;
  --gray: #888888;
  --gray-light: #CCCCCC;
  --radius: 16px;
  --radius-sm: 8px;
  --transition: 0.25s ease;
  --font: 'Bangers', 'Space Grotesk', sans-serif;
  --mono: 'Space Mono', monospace;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background-color: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
  letter-spacing: 0.02em;
}


body > *:not(#bgCanvas):not(.bg-orbs):not(#emojiField) {
  position: relative;
  z-index: 1;
}

.orange { color: var(--orange); }

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

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Nav ─── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 24px;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--transition);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
}

.nav-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-size: 0.88rem;
  letter-spacing: 0.05em;
  color: var(--gray-light);
  padding: 7px 11px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-links a.nav-active {
  color: var(--orange);
  background: rgba(245,166,35,0.1);
}

.nav-links .nav-cta {
  background: var(--orange);
  color: var(--black);
  padding: 8px 18px;
  position: relative;
  overflow: hidden;
  clip-path: polygon(6px 0%, 100% 0%, calc(100% - 6px) 100%, 0% 100%);
  box-shadow: 0 0 14px rgba(245,166,35,0.35);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav-links .nav-cta::before {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-20deg);
  transition: left 0.4s ease;
}

.nav-links .nav-cta:hover::before { left: 150%; }

.nav-links .nav-cta:hover {
  background: var(--orange-dark);
  color: var(--black);
  box-shadow: 0 0 24px rgba(245,166,35,0.6);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ─── Mobile Menu ─── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: var(--dark);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  z-index: 99;
  padding: 16px 24px 24px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu ul { list-style: none; }

.mobile-menu a {
  display: block;
  padding: 14px 0;
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: var(--gray-light);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}

.mobile-menu a:hover { color: var(--orange); }

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 68px 24px 140px;
  max-width: 1160px;
  margin: 0 auto;
  position: relative;
  gap: 40px;
}

.hero-bg-text {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: clamp(80px, 12vw, 180px);
  font-weight: 900;
  color: rgba(245,166,35,0.055);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
  z-index: 0;
  user-select: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  flex: 1;
  max-width: 600px;
}

/* ─── CTO Banner ─── */
.hero-cto-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-light);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 12px;
  white-space: nowrap;
}

.cto-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  flex-shrink: 0;
  animation: ctoPulse 1.8s ease-in-out infinite;
}

@keyframes ctoPulse {
  0%, 100% { box-shadow: 0 0 6px #4ade80; opacity: 1; }
  50%       { box-shadow: 0 0 14px #4ade80; opacity: 0.7; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(245,166,35,0.12);
  border: 1px solid rgba(245,166,35,0.3);
  color: var(--orange-light);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(64px, 10vw, 120px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  position: relative;
  overflow: visible;
}

/* "BUTT" — slow glow pulse */
.hero-title .title-line:first-child {
  display: inline;
  animation: titleGlowWhite 3s ease-in-out infinite;
}

@keyframes titleGlowWhite {
  0%, 100% { text-shadow: none; }
  50%       { text-shadow: 0 0 40px rgba(255,255,255,0.35), 0 0 80px rgba(255,255,255,0.15); }
}

/* "COIN" — orange shimmer sweep */
.hero-title .orange {
  position: relative;
  display: inline;
  padding-right: 0.06em;
  background: linear-gradient(
    90deg,
    var(--orange) 0%,
    var(--orange-light) 40%,
    #fff8e0 50%,
    var(--orange-light) 60%,
    var(--orange) 100%
  );
  background-size: 250% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: coinShimmer 3s ease-in-out infinite;
}

@keyframes coinShimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.title-line { display: inline; }

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--gray-light);
  margin-bottom: 40px;
  max-width: 440px;
  line-height: 1.6;
  font-family: 'Space Grotesk', sans-serif;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  padding: 13px 32px;
  border-radius: 0;
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
  transition: transform var(--transition), box-shadow var(--transition);
  text-transform: uppercase;
  z-index: 0;
}

/* sweep shine on hover */
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transform: skewX(-20deg);
  transition: left 0.45s ease;
  pointer-events: none;
  z-index: 1;
}

.btn:hover::before { left: 160%; }

.btn:hover { transform: translateY(-2px); }


.btn-primary {
  background: var(--orange);
  color: var(--black);
  box-shadow: 0 0 20px rgba(245,166,35,0.4), 0 4px 16px rgba(0,0,0,0.3);
  animation: btnGlow 2.5s ease-in-out infinite;
}

@keyframes btnGlow {
  0%, 100% { box-shadow: 0 0 18px rgba(245,166,35,0.4), 0 4px 16px rgba(0,0,0,0.3); }
  50%       { box-shadow: 0 0 32px rgba(245,166,35,0.65), 0 4px 20px rgba(0,0,0,0.3); }
}

.btn-primary:hover {
  background: var(--orange-dark);
  box-shadow: 0 0 40px rgba(245,166,35,0.7), 0 6px 24px rgba(0,0,0,0.4);
  animation: none;
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(245,166,35,0.45);
  box-shadow: 0 0 12px rgba(245,166,35,0.1), inset 0 0 12px rgba(245,166,35,0.04);
}

.btn-secondary:hover {
  border-color: rgba(245,166,35,0.9);
  background: rgba(245,166,35,0.08);
  box-shadow: 0 0 24px rgba(245,166,35,0.3), inset 0 0 20px rgba(245,166,35,0.06);
  color: var(--orange-light);
}

.hero-ticker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gray);
}

.ticker-label {
  background: rgba(245,166,35,0.15);
  color: var(--orange);
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: 700;
}

.ticker-dot { color: var(--orange); font-size: 0.5rem; }

.hero-logo-wrap {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  will-change: transform;
}
.hero-content {
  will-change: transform;
}
.hero-bg-text {
  will-change: transform;
}

.hero-logo-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  background: radial-gradient(circle, rgba(245,166,35,0.3) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero-logo {
  width: clamp(240px, 30vw, 360px);
  height: clamp(240px, 30vw, 360px);
  border-radius: 28px;
  object-fit: cover;
  position: relative;
  z-index: 1;
  animation: float 4s ease-in-out infinite;
  box-shadow: 0 20px 60px rgba(245,166,35,0.25), 0 0 0 1px rgba(245,166,35,0.1);
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.1); opacity: 1; }
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeInUp 1s ease 1s both;
  font-family: 'Space Grotesk', sans-serif;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gray), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* ─── Marquee ─── */
.marquee-wrap {
  background: var(--orange);
  overflow: hidden;
  padding: 14px 0;
  position: relative;
}

.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 22s linear infinite;
  width: max-content;
}

.marquee-track span {
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--black);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ─── Section Shared ─── */
section {
  padding: 100px 0;
  position: relative;
}

/* top & bottom fades — skip hero (it has max-width on the element itself) */
section:not(.hero)::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to bottom, rgba(10,10,10,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

section:not(.hero)::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 100px;
  background: linear-gradient(to top, rgba(10,10,10,0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 520px;
  font-family: 'Space Grotesk', sans-serif;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc { margin: 0 auto; }

/* ─── About ─── */
.about { background: rgba(17,17,17,0.82); backdrop-filter: blur(2px); }
.about .container { position: relative; z-index: 3; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-frame {
  position: relative;
  display: inline-block;
}

.about-img {
  width: 100%;
  max-width: 420px;
  border-radius: 24px;
  display: block;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.about-img-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--orange);
  color: var(--black);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.about-body {
  font-size: 1rem;
  color: var(--gray-light);
  margin-bottom: 20px;
  line-height: 1.75;
  font-family: 'Space Grotesk', sans-serif;
}

.cto-callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-left: 3px solid var(--orange);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  margin-bottom: 8px;
}

.cto-callout-label {
  flex-shrink: 0;
  background: var(--orange);
  color: var(--black);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  padding: 3px 9px;
  border-radius: 4px;
  margin-top: 2px;
}

.cto-callout p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.6;
  font-family: 'Space Grotesk', sans-serif;
}

.about-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.stat { text-align: center; }

.stat-num {
  display: block;
  font-size: 2.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--orange);
  line-height: 1;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  margin-top: 4px;
  display: block;
  white-space: nowrap;
  font-family: 'Space Grotesk', sans-serif;
}

.stat-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.1);
}

/* ─── Quote ─── */
.quote-section {
  padding: 60px 0;
}
.quote-section .container { position: relative; z-index: 3; }

.quote-card {
  background: linear-gradient(135deg, #f5a623 0%, #e8820c 50%, #c96a00 100%);
  border: none;
  border-radius: 24px;
  padding: 56px 64px;
  position: relative;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: 0 0 60px rgba(245,166,35,0.35), 0 20px 60px rgba(0,0,0,0.4);
  isolation: isolate;
}

/* animated rotating glow border */
.quote-border-glow {
  position: absolute;
  inset: -3px;
  border-radius: 26px;
  background: conic-gradient(
    from var(--qangle, 0deg),
    transparent 0deg,
    rgba(255,220,80,0.9) 40deg,
    rgba(255,255,180,1) 70deg,
    rgba(255,220,80,0.9) 100deg,
    transparent 160deg,
    rgba(255,160,20,0.5) 220deg,
    rgba(255,220,80,0.8) 270deg,
    transparent 320deg
  );
  z-index: -1;
  animation: quoteRotate 3s linear infinite;
  filter: blur(2px);
}

@property --qangle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@keyframes quoteRotate {
  to { --qangle: 360deg; }
}

.quote-mark {
  font-size: 100px;
  line-height: 0.5;
  color: rgba(0,0,0,0.2);
  font-family: Georgia, serif;
  position: absolute;
  top: 40px;
  left: 48px;
}

.quote-text {
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  letter-spacing: 0.04em;
  line-height: 1.5;
  color: #1a0a00;
  position: relative;
  z-index: 1;
  font-weight: 600;
}

.quote-source {
  margin-top: 24px;
  font-size: 0.9rem;
  color: rgba(0,0,0,0.55);
  font-style: italic;
  font-family: 'Space Grotesk', sans-serif;
}


/* ─── Live Data ─── */
.live-data {
  background: rgba(5,5,5,0.92);
  position: relative;
  overflow: hidden;
  padding: 100px 0;
}
.live-data .container { position: relative; z-index: 3; }
.live-data::before,
.live-data::after { z-index: 2; }

.live-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245,166,35,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245,166,35,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
}

.live-scanline {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.6), transparent);
  animation: scanDown 5s linear infinite;
  pointer-events: none;
  z-index: 2;
}

@keyframes scanDown {
  0%   { top: 0; opacity: 1; }
  90%  { opacity: 0.4; }
  100% { top: 100%; opacity: 0; }
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.35);
  color: var(--orange);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  padding: 5px 14px;
  border-radius: 4px;
  margin-top: 12px;
  font-family: var(--mono);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80, 0 0 16px #4ade80;
  animation: livePulse 1.2s ease-in-out infinite;
  flex-shrink: 0;
}

.live-dot.small {
  width: 5px;
  height: 5px;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 6px #4ade80; }
  50% { opacity: 0.5; box-shadow: 0 0 14px #4ade80, 0 0 24px #4ade80; }
}

/* ─── Stat Cards ─── */
.live-stats {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.live-card {
  position: relative;
  background: rgba(245,166,35,0.03);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 4px;
  padding: 28px 20px 24px;
  text-align: center;
  transition: background var(--transition), border-color var(--transition);
  overflow: hidden;
}

.live-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(245,166,35,0.04) 0%, transparent 60%);
  pointer-events: none;
}

.live-card:hover {
  background: rgba(245,166,35,0.07);
  border-color: rgba(245,166,35,0.4);
}

.live-card-accent {
  border-color: rgba(74,222,128,0.3);
  background: rgba(74,222,128,0.03);
}

.live-card-accent:hover {
  background: rgba(74,222,128,0.07);
  border-color: rgba(74,222,128,0.5);
}

/* HUD corner brackets */
.live-card-corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0.5;
}
.live-card-corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; }
.live-card-corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; }
.live-card-corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; }
.live-card-corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; }

.live-card-label {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  opacity: 0.7;
  margin-bottom: 10px;
}

.live-card-value {
  font-family: var(--mono);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  margin-bottom: 6px;
  min-height: 1.6rem;
}

.live-card-value.green { color: #4ade80; }
.live-card-value.red   { color: #f87171; }
.live-card-value.up    { color: #4ade80; }
.live-card-value.down  { color: #f87171; }

.live-card-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

.up-text   { color: #4ade80 !important; }
.down-text { color: #f87171 !important; }

/* ─── Chart ─── */
.chart-wrap {
  position: relative;
  z-index: 1;
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 8px;
  overflow: hidden;
  background: #0a0a0a;
}

.chart-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(245,166,35,0.15);
  background: rgba(245,166,35,0.04);
}

.chart-title {
  font-family: var(--mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--orange);
}

.chart-source {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  color: var(--gray);
  text-transform: uppercase;
}

.chart-frame {
  width: 100%;
  height: 520px;
  position: relative;
}

.chart-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.live-updated {
  text-align: center;
  margin-top: 20px;
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gray);
  opacity: 0.5;
  position: relative;
  z-index: 1;
}

/* ─── Responsive live ─── */
@media (max-width: 1024px) {
  .live-stats { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .live-stats { grid-template-columns: repeat(2, 1fr); }
  .chart-frame { height: 380px; }
}

/* ─── Tokenomics ─── */
.tokenomics {
  background: rgba(17,17,17,0.82);
  position: relative;
}
.tokenomics .container { position: relative; z-index: 3; }

.token-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.token-card {
  background: rgba(20,20,20,0.9);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: default;
}

/* animated rotating border glow on hover */
.token-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: calc(var(--radius) + 2px);
  background: conic-gradient(
    from var(--angle, 0deg),
    transparent 0deg,
    rgba(245,166,35,0.6) 60deg,
    rgba(255,200,80,0.8) 90deg,
    rgba(245,166,35,0.6) 120deg,
    transparent 180deg
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: 0;
  animation: rotateBorder 3s linear infinite paused;
}

.token-card:hover::before {
  opacity: 1;
  animation-play-state: running;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* inner mask to keep card bg clean */
.token-card .card-inner {
  position: relative;
  z-index: 1;
  background: rgba(20,20,20,0.97);
  border-radius: calc(var(--radius) - 2px);
  padding: 36px 24px;
  margin: -36px -24px;
  transition: background 0.4s ease;
}

/* vertical light sweep on hover */
.token-card::after {
  content: '';
  position: absolute;
  top: -100%; left: 0; right: 0;
  height: 60%;
  background: linear-gradient(180deg, rgba(245,166,35,0.06) 0%, transparent 100%);
  opacity: 0;
  transition: top 0.5s ease, opacity 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

.token-card:hover::after {
  top: 0%;
  opacity: 1;
}

.token-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px rgba(245,166,35,0.12);
}

.token-card-featured {
  background: rgba(20,20,20,0.9);
  border-color: rgba(255,255,255,0.06);
}

.token-card-featured:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: transparent;
  box-shadow: 0 16px 48px rgba(0,0,0,0.6), 0 0 30px rgba(245,166,35,0.12);
}

.token-card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.08);
  border: 1px solid rgba(245,166,35,0.15);
  border-radius: 14px;
  margin: 0 auto 18px;
  color: var(--orange);
  position: relative;
  z-index: 3;
  transition: background 0.4s ease, transform 0.4s cubic-bezier(0.23,1,0.32,1),
              box-shadow 0.4s ease, border-color 0.4s ease;
}

.token-card:hover .token-card-icon {
  background: rgba(245,166,35,0.15);
  border-color: rgba(245,166,35,0.4);
  transform: scale(1.15) rotate(-4deg);
  box-shadow: 0 0 20px rgba(245,166,35,0.25);
}

.token-card h3 {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--orange);
  margin-bottom: 6px;
  font-family: var(--mono);
  position: relative;
  z-index: 3;
  transition: text-shadow 0.4s ease, color 0.4s ease;
}

.token-card:hover h3 {
  color: var(--orange-light);
  text-shadow: 0 0 24px rgba(245,166,35,0.6), 0 0 48px rgba(245,166,35,0.3);
}

.token-card p {
  font-size: 0.88rem;
  color: var(--gray);
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 3;
  transition: color 0.4s ease;
}

.token-card:hover p { color: var(--gray-light); }

.token-address-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.token-address-label {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
}

.token-address-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  padding: 12px 20px;
}

.token-address-box code {
  font-family: var(--mono);
  font-size: 0.9rem;
  color: var(--orange-light);
  letter-spacing: 0.04em;
}

.copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  display: flex;
  align-items: center;
  padding: 4px;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}

.copy-btn:hover {
  color: var(--orange);
  background: rgba(245,166,35,0.1);
}

/* ─── How to Buy ─── */
.how-to-buy { background: rgba(10,10,10,0.75); }
.how-to-buy .container { position: relative; z-index: 3; }

.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
}

.step {
  flex: 1;
  padding: 36px 32px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  transition: transform var(--transition), border-color var(--transition);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(245,166,35,0.25);
}

.step-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.6rem;
  padding: 0 12px;
  flex-shrink: 0;
  margin-top: 60px;
  opacity: 0.6;
}

.step-num {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.3rem;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
  color: var(--white);
}

.step p {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.65;
  font-family: 'Space Grotesk', sans-serif;
}

/* ─── Community ─── */
.community { background: rgba(17,17,17,0.82); backdrop-filter: blur(2px); }
.community .container { position: relative; z-index: 3; }

.community-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.community-card {
  display: flex;
  flex-direction: column;
  background: var(--dark2);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 32px 24px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

/* sweep shine */
.community-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.07), transparent);
  transform: skewX(-20deg);
  transition: left 0.5s ease;
  pointer-events: none;
  z-index: 0;
}

.community-card:hover::before { left: 160%; }

/* bottom glow line */
.community-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 20%; right: 20%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,166,35,0.6), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.community-card:hover::after { opacity: 1; }

.community-card:hover {
  transform: translateY(-5px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(245,166,35,0.08);
}

/* featured card — same base as others, no pre-lit border */
.community-card-featured {
  background: var(--dark2);
  border-color: rgba(255,255,255,0.07);
}

.community-card-featured:hover {
  transform: translateY(-5px);
  border-color: rgba(245,166,35,0.35);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4), 0 0 20px rgba(245,166,35,0.08);
}

.community-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,166,35,0.1);
  border-radius: 12px;
  margin-bottom: 16px;
  color: var(--orange);
  position: relative;
  z-index: 1;
  transition: background 0.3s ease, transform 0.3s ease;
}

.community-card:hover .community-icon {
  background: rgba(245,166,35,0.18);
  transform: scale(1.1);
}

.community-card h3 {
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  margin-bottom: 8px;
  color: var(--white);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.community-card:hover h3 { color: var(--orange-light); }

.community-card p {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.6;
  flex: 1;
  font-family: 'Space Grotesk', sans-serif;
  position: relative;
  z-index: 1;
}

.community-arrow {
  margin-top: 20px;
  font-size: 1.2rem;
  color: var(--orange);
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  display: block;
  position: relative;
  z-index: 1;
}

.community-card:hover .community-arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ─── Footer ─── */
.footer {
  background: rgba(17,17,17,0.9);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 60px 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}

.footer-logo-img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: cover;
}

.footer-disclaimer {
  font-size: 0.8rem;
  color: var(--gray);
  max-width: 600px;
  line-height: 1.65;
  font-family: 'Space Grotesk', sans-serif;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.2);
  font-family: 'Space Grotesk', sans-serif;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .token-cards { grid-template-columns: repeat(2, 1fr); }
  .community-links { grid-template-columns: repeat(2, 1fr); }
  .steps { flex-direction: column; }
  .step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 8px 0; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }

  .hero {
    flex-direction: column;
    padding: 88px 24px 60px;
    text-align: center;
    justify-content: center;
  }

  .hero-content { max-width: 100%; }
  .hero-subtitle { margin: 0 auto 40px; }
  .hero-actions { justify-content: center; }
  .hero-ticker { justify-content: center; }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-img { max-width: 280px; margin: 0 auto; display: block; }
  .about-img-frame { display: flex; justify-content: center; }

  .quote-card { padding: 40px 28px; }
  .quote-mark { font-size: 60px; top: 24px; left: 24px; }

  .token-cards { grid-template-columns: repeat(2, 1fr); }
  .community-links { grid-template-columns: 1fr 1fr; }

  .token-address-box { flex-direction: column; gap: 8px; text-align: center; }
  .token-address-box code { font-size: 0.75rem; }
}

@media (max-width: 480px) {
  .community-links { grid-template-columns: 1fr; }
  .token-cards { grid-template-columns: 1fr 1fr; }
  .hero-logo { width: 200px; height: 200px; }
  .hero-logo-glow { width: 240px; height: 240px; }
  .about-stats { flex-wrap: wrap; justify-content: center; }
  .stat-divider { display: none; }
}

/* ─── Receipts Section ─── */
.receipts {
  padding: 120px 0 110px;
  position: relative;
}

.receipts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 64px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.receipts-grid:has(.receipt-card:hover) .receipt-card:not(:hover) {
  z-index: 0;
}

.receipt-card {
  position: relative;
  border-radius: 14px;
  overflow: visible;
  background: rgba(15,15,20,0.7);
  border: 1px solid rgba(245,166,35,0.18);
  padding: 18px;
  z-index: 1;
  animation: rcFloat 4s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  transition: transform 0.4s cubic-bezier(0.23,1,0.32,1),
              border-color 0.4s ease,
              box-shadow 0.4s ease;
  cursor: default;
  backdrop-filter: blur(6px);
}

.receipt-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(245,166,35,0.55);
  box-shadow: 0 0 32px rgba(245,166,35,0.25),
              0 0 80px rgba(245,166,35,0.1),
              inset 0 0 20px rgba(245,166,35,0.04);
  z-index: 10;
}

@keyframes rcFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
}
.receipt-card:hover { animation-play-state: paused; }

/* HUD corner brackets */
.rc-corners {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  z-index: 10;
}
.rc-corners span {
  position: absolute;
  width: 18px;
  height: 18px;
  border-color: var(--orange);
  border-style: solid;
  opacity: 0.7;
  transition: width 0.4s ease, height 0.4s ease, opacity 0.4s ease;
}
.receipt-card:hover .rc-corners span {
  width: 26px;
  height: 26px;
  opacity: 1;
}
.rc-corners span:nth-child(1) { top: 0; left: 0; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.rc-corners span:nth-child(2) { top: 0; right: 0; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.rc-corners span:nth-child(3) { bottom: 0; left: 0; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.rc-corners span:nth-child(4) { bottom: 0; right: 0; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

/* scan line overlay */
.rc-scanline {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  overflow: hidden;
  pointer-events: none;
  z-index: 5;
}
.rc-scanline::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, rgba(245,166,35,0.55), transparent);
  animation: rcScan 3s linear infinite;
  animation-delay: var(--delay, 0s);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.receipt-card:hover .rc-scanline::after {
  opacity: 1;
}
@keyframes rcScan {
  0% { top: -4px; }
  100% { top: calc(100% + 4px); }
}

/* label */
.rc-label {
  font-family: 'Space Mono', monospace;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--orange);
  opacity: 0.75;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.rc-img-wrap {
  border-radius: 8px;
  position: relative;
  z-index: 1;
}

.receipt-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  position: relative;
  filter: saturate(0.9) brightness(0.95);
  transform: scale(1);
  transform-origin: center top;
  transition: transform 0.45s cubic-bezier(0.23,1,0.32,1),
              filter 0.4s ease,
              box-shadow 0.45s ease;
  cursor: zoom-in;
}
.receipt-card:hover img {
  transform: scale(1.45);
  filter: saturate(1.15) brightness(1.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.7), 0 0 40px rgba(245,166,35,0.2);
  z-index: 100;
  position: relative;
}

@media (max-width: 960px) {
  .receipts-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .receipts-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ─── Scroll Progress Bar ─── */
#scrollProgress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(to right, #f5a623, #ffe066, #f5a623);
  background-size: 200% 100%;
  animation: progressShimmer 2s linear infinite;
  z-index: 9999;
  transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(245,166,35,0.7);
}
@keyframes progressShimmer {
  0%   { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ─── Reveal Animations ─── */
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  transition: opacity 0.7s cubic-bezier(0.23,1,0.32,1),
              transform 0.7s cubic-bezier(0.23,1,0.32,1);
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-60px);
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.88);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible,
.reveal-scale.visible {
  opacity: 1;
  transform: none;
}
