/* ===== DESIGN TOKENS ===== */
:root {
  --bg-deep: #122e18;
  --bg-primary: #1a4524;
  --bg-elevated: #215530;
  --bg-card: #276338;
  --bg-card-hover: #2f7543;

  --green-primary: #00c805;
  --green-bright: #3dff42;
  --green-forest: #2d6a3e;
  --green-glow: rgba(0, 200, 5, 0.18);

  --gold-primary: #c9a227;
  --gold-light: #f0d56a;
  --gold-deep: #a88620;
  --gold-muted: rgba(201, 162, 39, 0.14);
  --gold-border: rgba(201, 162, 39, 0.35);

  --text-primary: #f3f6f0;
  --text-secondary: #a8b5a8;
  --text-muted: #6a7a6a;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(201, 162, 39, 0.28);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 16px 64px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 48px rgba(0, 200, 5, 0.12);
  --shadow-gold: 0 0 40px rgba(201, 162, 39, 0.2);

  --font-sans: "Outfit", -apple-system, BlinkMacSystemFont, sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-mono: "JetBrains Mono", "SF Mono", monospace;

  --ink-hard: #0a1a0c;
  --comic-shadow: 4px 4px 0 var(--ink-hard);
  --comic-shadow-lg: 6px 6px 0 var(--ink-hard);

  --nav-height: 76px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-sans);
  background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-deep) 55%, #0d2412 100%);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ===== AMBIENT LAYERS ===== */
.ambient-glow {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 90% 55% at 50% -15%, rgba(72, 180, 90, 0.28), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 40%, rgba(201, 162, 39, 0.12), transparent),
    radial-gradient(ellipse 45% 35% at 8% 75%, rgba(0, 200, 5, 0.08), transparent),
    radial-gradient(ellipse 40% 30% at 70% 90%, rgba(201, 162, 39, 0.06), transparent);
  animation: ambientPulse 12s ease-in-out infinite;
}

@keyframes ambientPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.82; }
}

.forest-mist {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse 100% 40% at 50% 100%, rgba(18, 46, 24, 0.7), transparent),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.6;
}

.paper-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.045;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23g)'/%3E%3C/svg%3E");
}

.floating-deco {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.deco {
  position: absolute;
  width: 28px;
  height: 28px;
  color: var(--gold-primary);
  opacity: 0.16;
  animation: decoWobble 10s ease-in-out infinite;
}

.deco-1 { top: 18%; left: 4%; animation-delay: 0s; }
.deco-2 { top: 42%; right: 5%; width: 22px; height: 22px; animation-delay: -2s; color: var(--green-primary); }
.deco-3 { top: 68%; left: 6%; width: 18px; height: 18px; animation-delay: -4s; }
.deco-4 { top: 28%; right: 8%; width: 24px; height: 24px; animation-delay: -6s; opacity: 0.12; }
.deco-5 { bottom: 16%; left: 10%; width: 20px; height: 20px; animation-delay: -3s; color: var(--gold-light); }

@keyframes decoWobble {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(8deg); }
}

.spark-canvas {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.7;
}

.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.1), rgba(201, 162, 39, 0.04) 40%, transparent 70%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  mix-blend-mode: screen;
}

body:hover .cursor-glow {
  opacity: 1;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), border-color var(--transition), box-shadow var(--transition);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(18, 46, 24, 0.82);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom-color: var(--gold-border);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35), 0 1px 0 rgba(201, 162, 39, 0.15);
}

.nav-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  transition: transform var(--transition);
}

.nav-brand:hover {
  transform: scale(1.03);
}

.nav-logo-ring {
  position: relative;
  display: flex;
  border-radius: 50%;
  padding: 2px;
  background: conic-gradient(from 0deg, var(--gold-primary), var(--green-primary), var(--gold-light), var(--gold-primary));
  animation: ringSpin 8s linear infinite;
}

@keyframes ringSpin {
  to { filter: hue-rotate(20deg); }
}

.nav-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--bg-deep);
  display: block;
}

.nav-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition);
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), var(--gold-primary));
  transition: width var(--transition);
  border-radius: 1px;
  box-shadow: 0 0 8px rgba(0, 200, 5, 0.5);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-buy-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #000;
  background: linear-gradient(135deg, var(--green-primary), #00a804);
  border-radius: 10px;
  border: 2px solid var(--ink-hard);
  box-shadow: var(--comic-shadow), 0 0 16px rgba(0, 200, 5, 0.25);
  transition: transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.nav-buy-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.35) 50%, transparent 60%);
  transform: translateX(-120%);
  animation: btnShimmer 3s ease-in-out infinite;
}

@keyframes btnShimmer {
  0%, 60% { transform: translateX(-120%); }
  100% { transform: translateX(120%); }
}

.nav-buy-btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--comic-shadow-lg), 0 0 20px rgba(0, 200, 5, 0.35);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 1px;
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle.active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding-bottom: 100px;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.05);
  animation: bannerDrift 20s ease-in-out infinite alternate;
}

@keyframes bannerDrift {
  from { transform: scale(1.05) translate(0, 0); }
  to { transform: scale(1.1) translate(-1.5%, -1%); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(18, 46, 24, 0.45) 0%, rgba(18, 46, 24, 0.12) 35%, rgba(18, 46, 24, 0.75) 70%, var(--bg-deep) 100%),
    linear-gradient(to right, rgba(18, 46, 24, 0.65) 0%, transparent 45%, transparent 55%, rgba(18, 46, 24, 0.65) 100%);
}

.hero-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(240, 213, 106, 0.08) 48%, transparent 62%);
  animation: heroShine 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroShine {
  0%, 100% { opacity: 0.3; transform: translateX(-10%); }
  50% { opacity: 0.7; transform: translateX(10%); }
}

.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.leaf {
  position: absolute;
  width: 18px;
  height: 28px;
  background: linear-gradient(145deg, #4caf50, #1b5e20);
  border-radius: 0 80% 0 80%;
  opacity: 0.55;
  filter: blur(0.3px);
  animation: leafFall linear infinite;
  box-shadow: 0 0 8px rgba(76, 175, 80, 0.3);
}

.leaf-1 { left: 12%; top: -40px; animation-duration: 14s; animation-delay: 0s; }
.leaf-2 { left: 68%; top: -40px; width: 14px; height: 22px; animation-duration: 18s; animation-delay: 4s; opacity: 0.4; }
.leaf-3 { left: 42%; top: -40px; width: 12px; height: 20px; animation-duration: 16s; animation-delay: 8s; opacity: 0.5; }

@keyframes leafFall {
  0% { transform: translateY(0) rotate(0deg) translateX(0); opacity: 0; }
  10% { opacity: 0.55; }
  100% { transform: translateY(110vh) rotate(360deg) translateX(60px); opacity: 0; }
}

.ember {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-light);
  box-shadow: 0 0 12px 3px rgba(240, 213, 106, 0.6);
  animation: emberFloat ease-in-out infinite;
}

.ember-1 { left: 18%; bottom: 25%; animation-duration: 5s; }
.ember-2 { left: 78%; bottom: 35%; animation-duration: 7s; animation-delay: 1.5s; width: 4px; height: 4px; }
.ember-3 { left: 55%; bottom: 18%; animation-duration: 6s; animation-delay: 3s; width: 6px; height: 6px; }

@keyframes emberFloat {
  0%, 100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50% { transform: translateY(-40px) scale(1.3); opacity: 1; }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  max-width: 720px;
  padding: 0 24px;
  margin-top: calc(var(--nav-height) + 30vh);
  animation: heroFadeIn 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(36px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rail-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 12px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  margin-bottom: 16px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(18, 46, 24, 0.55);
  border: 2px solid var(--gold-border);
  border-radius: 10px;
  backdrop-filter: blur(12px);
  box-shadow: 3px 3px 0 rgba(10, 26, 12, 0.55);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 10px var(--green-primary);
  animation: livePulse 1.6s ease-in-out infinite;
}

@keyframes livePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 9vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 24px rgba(0, 0, 0, 0.5));
}

.hero-title-shine {
  display: inline-block;
  background: linear-gradient(
    110deg,
    var(--gold-deep) 0%,
    var(--gold-light) 25%,
    #fff8d0 45%,
    var(--gold-light) 55%,
    var(--gold-primary) 75%,
    var(--gold-deep) 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: goldShimmer 4s linear infinite;
}

@keyframes goldShimmer {
  to { background-position: 200% center; }
}

.ornament-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin: 8px auto 16px;
  color: var(--gold-primary);
}

.ornament-line span {
  display: block;
  width: 64px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-primary), transparent);
}

.ornament-line svg {
  width: 16px;
  height: 16px;
  filter: drop-shadow(0 0 6px rgba(201, 162, 39, 0.6));
  animation: starTwinkle 2.5s ease-in-out infinite;
}

@keyframes starTwinkle {
  0%, 100% { opacity: 0.7; transform: scale(1) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.15) rotate(15deg); }
}

.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 3vw, 1.55rem);
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 12px;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: rgba(240, 242, 238, 0.82);
  line-height: 1.75;
  margin-bottom: 28px;
  font-weight: 400;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-stat {
  min-width: 120px;
  padding: 10px 14px;
  background: rgba(18, 46, 24, 0.55);
  border: 1px solid var(--gold-border);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  text-align: left;
}

.hero-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold-primary);
  margin-bottom: 4px;
}

.hero-stat-value {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.hero-stat-value.live {
  color: var(--green-primary);
  animation: liveBlink 1.4s steps(2, end) infinite;
}

@keyframes liveBlink {
  50% { opacity: 0.35; }
}

.scroll-hint {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.7;
  transition: opacity var(--transition);
}

.scroll-hint:hover {
  opacity: 1;
}

.scroll-hint-mouse {
  width: 22px;
  height: 34px;
  border: 2px solid var(--gold-border);
  border-radius: 12px;
  position: relative;
}

.scroll-hint-mouse::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  margin-left: -1.5px;
  background: var(--gold-light);
  border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(12px); }
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 12px;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  min-width: 148px;
  position: relative;
  overflow: hidden;
}

.btn-stamp {
  border: 2px solid var(--ink-hard);
  box-shadow: var(--comic-shadow);
}

.btn-stamp:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--comic-shadow-lg);
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-bright), var(--green-primary) 40%, #00a004);
  color: #000;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.35) 50%, transparent 65%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-secondary {
  background: rgba(18, 46, 24, 0.55);
  color: var(--text-primary);
  border-color: var(--gold-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--gold-muted);
  border-color: var(--gold-light);
}

.btn-ghost {
  background: transparent;
  color: var(--gold-light);
  border: 2px solid var(--gold-border);
  box-shadow: none;
  min-width: 140px;
}

.btn-ghost:hover {
  background: var(--gold-muted);
  transform: translateY(-2px);
}

/* ===== TICKER ===== */
.ticker-bar {
  position: relative;
  z-index: 4;
  overflow: hidden;
  background: linear-gradient(90deg, #0f2a16, #1a4524 40%, #0f2a16);
  border-block: 2px solid var(--gold-primary);
  padding: 12px 0;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35), inset 0 0 40px rgba(201, 162, 39, 0.08);
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: tickerScroll 28s linear infinite;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}

.ticker-group span {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  padding: 0 22px;
  position: relative;
}

.ticker-group span::after {
  content: "·";
  position: absolute;
  right: 0;
  color: var(--green-primary);
}

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

.ticker-bar:hover .ticker-track {
  animation-play-state: paused;
}

/* ===== SECTION DIVIDERS ===== */
.section-divider {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  max-width: 480px;
  margin: 56px auto 0;
  padding: 0 24px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-border), transparent);
}

.divider-diamond {
  width: 10px;
  height: 10px;
  background: var(--gold-primary);
  transform: rotate(45deg);
  box-shadow: 0 0 16px rgba(201, 162, 39, 0.7);
  animation: diamondPulse 3s ease-in-out infinite;
}

@keyframes diamondPulse {
  0%, 100% { box-shadow: 0 0 10px rgba(201, 162, 39, 0.5); }
  50% { box-shadow: 0 0 22px rgba(240, 213, 106, 0.9); }
}

/* ===== SECTIONS ===== */
.section {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px 0;
}

.section.section-bleed {
  max-width: none;
  width: 100%;
  margin: 56px 0 0;
  padding: 88px 0 72px;
  overflow: hidden;
  isolation: isolate;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.section-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  filter: saturate(1.05);
}

.section-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(13, 36, 18, 0.82) 0%, rgba(18, 46, 24, 0.72) 40%, rgba(13, 36, 18, 0.88) 100%),
    linear-gradient(90deg, rgba(13, 36, 18, 0.55) 0%, transparent 30%, transparent 70%, rgba(13, 36, 18, 0.55) 100%);
}

.section-bg-veil.veil-strong {
  background:
    linear-gradient(180deg, rgba(10, 28, 14, 0.88) 0%, rgba(14, 40, 20, 0.8) 50%, rgba(10, 28, 14, 0.92) 100%);
}

.section-inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.memes-section > .section-inner {
  max-width: 1180px;
}

.heist-section > .section-inner {
  max-width: 980px;
}

.faq-section > .section-inner {
  max-width: 760px;
}

.section-bleed::before,
.section-bleed::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1;
  pointer-events: none;
}

.section-bleed::before {
  top: 0;
  background: linear-gradient(180deg, var(--bg-deep), transparent);
}

.section-bleed .token-metric,
.section-bleed .heist-step,
.section-bleed .social-card,
.section-bleed .ca-card,
.section-bleed .bandit-code,
.section-bleed .faq-item,
.section-bleed .chart-card {
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.section-bleed .section-title {
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.45);
}

.section-bleed .section-lead {
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

.section-bleed::after {
  bottom: 0;
  background: linear-gradient(0deg, var(--bg-deep), transparent);
}

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

.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  background: var(--gold-muted);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.1);
}

.section-header .rail-label {
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  background: linear-gradient(180deg, #fff 0%, var(--text-secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-lead {
  max-width: 440px;
  margin: 16px auto 0;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-secondary);
}

/* ===== MEME GALLERY ===== */
.meme-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.meme-card {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  aspect-ratio: 1;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--ink-hard);
  background: var(--bg-elevated);
  box-shadow: var(--comic-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}

.meme-scene {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: var(--gold-light);
  background: rgba(10, 26, 12, 0.72);
  border: 1px solid var(--gold-border);
  border-radius: 6px;
  padding: 3px 7px;
  backdrop-filter: blur(6px);
}

.meme-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(240, 213, 106, 0.45), transparent 45%, transparent 55%, rgba(0, 200, 5, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
  pointer-events: none;
}

.meme-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.meme-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(to top, rgba(12, 32, 16, 0.88) 0%, transparent 55%);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
}

.meme-card-overlay span {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-light);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.meme-card:hover,
.meme-card:focus-visible {
  transform: translate(-3px, -5px) rotate(-0.5deg);
  box-shadow: var(--comic-shadow-lg), var(--shadow-gold);
  outline: none;
  z-index: 3;
}

.meme-card:hover::before,
.meme-card:focus-visible::before {
  opacity: 1;
}

.meme-card:hover img,
.meme-card:focus-visible img {
  transform: scale(1.08);
}

.meme-card:hover .meme-card-overlay,
.meme-card:focus-visible .meme-card-overlay {
  opacity: 1;
}

/* ===== LIGHTBOX ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 24px;
  background: rgba(8, 22, 12, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.lightbox-figure {
  position: relative;
  max-width: min(860px, 92vw);
  max-height: 86vh;
  margin: 0;
  text-align: center;
  animation: lightboxIn 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes lightboxIn {
  from {
    opacity: 0;
    transform: scale(0.94) translateY(12px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.lightbox-figure img {
  max-width: 100%;
  max-height: calc(86vh - 48px);
  width: auto;
  height: auto;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.55), 0 0 40px rgba(201, 162, 39, 0.15);
  object-fit: contain;
  margin: 0 auto;
}

.lightbox-figure figcaption {
  margin-top: 14px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--gold-light);
  letter-spacing: 0.02em;
}

.lightbox-close,
.lightbox-nav {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  background: rgba(39, 99, 56, 0.75);
  border: 1px solid var(--gold-border);
  border-radius: 50%;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  z-index: 2;
}

.lightbox-close {
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
}

.lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
}

.lightbox-prev {
  left: 18px;
}

.lightbox-next {
  right: 18px;
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 22px;
  height: 22px;
}

.lightbox-close:hover,
.lightbox-nav:hover {
  background: var(--green-primary);
  color: #000;
  box-shadow: 0 0 20px rgba(0, 200, 5, 0.35);
}

.lightbox-nav:hover {
  transform: translateY(-50%) scale(1.06);
}

/* ===== ABOUT ===== */
.about-body {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.about-portrait-wrap {
  position: relative;
  width: 148px;
  height: 148px;
  margin: 0 auto 36px;
}

.wanted-stamp {
  position: absolute;
  right: -28px;
  bottom: 8px;
  z-index: 3;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: #ff4d4d;
  border: 2px solid #ff4d4d;
  border-radius: 4px;
  padding: 4px 8px;
  transform: rotate(-18deg);
  background: rgba(18, 46, 24, 0.75);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.4);
  animation: stampPop 3.5s ease-in-out infinite;
}

@keyframes stampPop {
  0%, 100% { transform: rotate(-18deg) scale(1); }
  50% { transform: rotate(-14deg) scale(1.05); }
}

.about-portrait-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, var(--gold-primary), var(--green-primary), var(--gold-light), transparent 60%, var(--gold-primary));
  animation: portraitSpin 6s linear infinite;
}

@keyframes portraitSpin {
  to { transform: rotate(360deg); }
}

.about-portrait-glow {
  position: absolute;
  inset: -20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 162, 39, 0.35), transparent 70%);
  animation: logoGlow 3.5s ease-in-out infinite;
  z-index: 0;
}

@keyframes logoGlow {
  0%, 100% { opacity: 0.45; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.08); }
}

.about-portrait {
  position: relative;
  z-index: 1;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--bg-deep);
  box-shadow: var(--shadow-md);
}

.about-lead {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--text-primary);
  margin-bottom: 40px;
}

.about-lead strong {
  color: var(--gold-light);
  font-weight: 700;
  text-shadow: 0 0 24px rgba(240, 213, 106, 0.3);
}

.about-traits {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 12px;
  list-style: none;
  flex-wrap: wrap;
}

.about-traits li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 16px 22px;
  min-width: 110px;
  background: linear-gradient(160deg, rgba(39, 99, 56, 0.7), rgba(33, 85, 48, 0.4));
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-lg);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.about-traits li:hover {
  transform: translateY(-4px);
  border-color: var(--gold-light);
  box-shadow: var(--shadow-gold);
  color: var(--text-primary);
}

.trait-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--gold-light);
  filter: drop-shadow(0 0 8px rgba(240, 213, 106, 0.35));
}

.trait-icon svg {
  width: 22px;
  height: 22px;
}

/* ===== TOKENOMICS ===== */
.tokenomics-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 880px;
  margin: 0 auto;
}

.token-metric {
  position: relative;
  overflow: hidden;
  background: linear-gradient(165deg, rgba(39, 99, 56, 0.9) 0%, rgba(26, 69, 36, 0.85) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  padding: 32px 20px;
  text-align: center;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.token-metric::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  opacity: 0.6;
}

.metric-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  top: -40px;
  right: -30px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 200, 5, 0.2), transparent 70%);
  pointer-events: none;
  transition: opacity var(--transition);
  opacity: 0.5;
}

.token-metric:hover {
  border-color: var(--gold-border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md), var(--shadow-glow);
}

.token-metric:hover .metric-glow {
  opacity: 1;
}

.token-metric-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 12px;
}

.token-metric-value {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.8vw, 1.85rem);
  font-weight: 700;
  background: linear-gradient(135deg, #fff, var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
  line-height: 1.2;
}

.token-metric-note {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
}

.bandit-code {
  max-width: 720px;
  margin: 36px auto 0;
  padding: 28px 30px;
  background: linear-gradient(160deg, rgba(39, 99, 56, 0.7), rgba(18, 46, 24, 0.8));
  border: 2px solid var(--ink-hard);
  border-radius: 18px;
  box-shadow: var(--comic-shadow);
}

.bandit-code .rail-label {
  margin-bottom: 16px;
}

.bandit-code ul {
  list-style: none;
  display: grid;
  gap: 12px;
}

.bandit-code li {
  display: flex;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.bandit-code li span {
  color: var(--green-primary);
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== HEIST / HOW TO BUY ===== */
.heist-section {
  position: relative;
}

.hazard-tape {
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(92%, 880px);
  height: 14px;
  border-radius: 4px;
  z-index: 2;
  background: repeating-linear-gradient(
    -45deg,
    var(--gold-primary) 0 10px,
    var(--ink-hard) 10px 20px
  );
  box-shadow: 0 4px 0 rgba(0, 0, 0, 0.25);
  opacity: 0.9;
}

.heist-section .section-header {
  padding-top: 20px;
}

.heist-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.heist-step {
  position: relative;
  padding: 28px 22px 24px;
  background: linear-gradient(165deg, rgba(39, 99, 56, 0.95), rgba(26, 69, 36, 0.85));
  border: 2px solid var(--ink-hard);
  border-radius: 18px;
  box-shadow: var(--comic-shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  overflow: hidden;
}

.heist-step:hover {
  transform: translate(-2px, -4px);
  box-shadow: var(--comic-shadow-lg);
}

.heist-num {
  display: block;
  font-family: var(--font-serif);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
  opacity: 0.9;
}

.heist-step h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-primary);
}

.heist-step p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.55;
}

.heist-step strong {
  color: var(--gold-light);
}

.heist-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* ===== COMMUNITY / SOCIAL ===== */
.community-section .section-header {
  margin-bottom: 36px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 680px;
  margin: 0 auto;
}

.social-card {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 20px;
  background: linear-gradient(145deg, rgba(39, 99, 56, 0.95) 0%, rgba(33, 85, 48, 0.8) 100%);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-xl);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  min-width: 0;
  overflow: hidden;
}

.social-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.7s ease;
  pointer-events: none;
}

.social-card:hover {
  border-color: var(--gold-border);
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-md), var(--shadow-gold);
}

.social-card:hover .social-shine {
  transform: translateX(100%);
}

.social-card:hover .social-cta {
  background: var(--green-primary);
  color: #000;
  box-shadow: 0 0 16px rgba(0, 200, 5, 0.4);
}

.social-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(18, 46, 24, 0.7);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  flex-shrink: 0;
  transition: transform var(--transition), box-shadow var(--transition);
}

.social-card:hover .social-icon {
  transform: scale(1.08);
  box-shadow: 0 0 20px rgba(0, 200, 5, 0.2);
}

.social-icon svg {
  width: 22px;
  height: 22px;
  color: var(--text-primary);
}

.brand-icon-wrap {
  background: #111;
  border-color: var(--gold-border);
  padding: 0;
  overflow: hidden;
}

.brand-icon-wrap.x-icon-wrap {
  color: #fff;
}

.brand-icon-wrap.x-icon-wrap svg {
  width: 26px;
  height: 26px;
  color: #fff;
}

.brand-icon-img,
.dex-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.social-card:hover .brand-icon-wrap {
  border-color: var(--gold-light);
  box-shadow: 0 0 18px rgba(201, 162, 39, 0.25);
}

.social-info {
  flex: 1;
  min-width: 0;
}

.social-name {
  display: block;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.social-desc {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.social-cta {
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: var(--gold-muted);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-full);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
}

/* ===== CONTRACT ADDRESS ===== */
.ca-card {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  background: linear-gradient(160deg, rgba(39, 99, 56, 0.95), rgba(26, 69, 36, 0.9));
  border: 1px solid transparent;
  border-radius: var(--radius-xl);
  padding: 36px;
  overflow: hidden;
}

.ca-card-border {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--gold-light), transparent 40%, transparent 60%, var(--green-primary));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.ca-input-wrap {
  position: relative;
  display: flex;
  gap: 12px;
  background: rgba(18, 46, 24, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 8px 8px 8px 20px;
  transition: border-color var(--transition), box-shadow var(--transition);
  z-index: 1;
}

.ca-input-wrap:focus-within {
  border-color: var(--green-primary);
  box-shadow: 0 0 0 3px var(--green-glow), 0 0 28px rgba(0, 200, 5, 0.15);
}

.ca-input {
  flex: 1;
  min-width: 0;
  background: transparent;
  border: none;
  outline: none;
  font-family: "SF Mono", "Fira Code", monospace;
  font-size: clamp(0.7rem, 2vw, 0.9rem);
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

.copy-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--green-primary), #00a804);
  color: #000;
  font-size: 0.875rem;
  font-weight: 700;
  border-radius: 12px;
  border: 2px solid var(--ink-hard);
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--comic-shadow);
}

.copy-btn svg {
  width: 18px;
  height: 18px;
}

.copy-btn:hover {
  background: linear-gradient(135deg, var(--green-bright), var(--green-primary));
  transform: translate(-2px, -2px);
  box-shadow: var(--comic-shadow-lg);
}

.copy-btn.copied {
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  color: #000;
}

.ca-hint {
  text-align: center;
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 16px;
  position: relative;
  z-index: 1;
}

.copy-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  z-index: 250;
  padding: 12px 20px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #000;
  background: var(--gold-light);
  border: 2px solid var(--ink-hard);
  border-radius: 12px;
  box-shadow: var(--comic-shadow);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.copy-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== CHART ===== */
.chart-card {
  background: var(--bg-card);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  padding-bottom: 56.25%;
  box-shadow: var(--shadow-md), 0 0 60px rgba(0, 200, 5, 0.06);
}

.chart-frame {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(240, 213, 106, 0.15);
  pointer-events: none;
  z-index: 2;
}

.dex-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FAQ ===== */
.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  background: linear-gradient(160deg, rgba(39, 99, 56, 0.85), rgba(26, 69, 36, 0.75));
  border: 2px solid var(--ink-hard);
  border-radius: 14px;
  box-shadow: 3px 3px 0 var(--ink-hard);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq-item[open] {
  border-color: var(--gold-primary);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 52px 18px 20px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-mono);
  font-size: 1.25rem;
  color: var(--gold-light);
  transition: transform var(--transition);
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item p {
  padding: 0 20px 18px;
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* ===== CREW CTA ===== */
.crew-cta {
  position: relative;
  z-index: 1;
  max-width: none;
  width: 100%;
  margin: 56px 0 0;
  padding: 72px 0;
  overflow: hidden;
}

.crew-cta .section-inner {
  max-width: 900px;
}

.crew-cta-inner {
  text-align: center;
  padding: 48px 28px;
  background:
    radial-gradient(ellipse 70% 80% at 50% 0%, rgba(201, 162, 39, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(39, 99, 56, 0.88), rgba(18, 46, 24, 0.9));
  border: 2px solid var(--ink-hard);
  border-radius: 24px;
  box-shadow: var(--comic-shadow-lg), 0 0 50px rgba(0, 200, 5, 0.08);
  backdrop-filter: blur(6px);
}

.crew-cta h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin: 12px 0 28px;
  color: var(--text-primary);
}

.crew-cta-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
  position: relative;
  z-index: 1;
  border-top: 1px solid var(--gold-border);
  padding: 56px 24px;
  margin-top: 80px;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 160px;
  background: radial-gradient(ellipse, rgba(201, 162, 39, 0.15), transparent 70%);
  pointer-events: none;
}

.footer-inner {
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--gold-border);
  box-shadow: 0 0 20px rgba(201, 162, 39, 0.3);
}

.footer-brand span {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold-primary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-tagline {
  font-size: 0.8125rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-primary);
  margin-bottom: 14px;
  opacity: 0.85;
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px) rotate(-0.4deg);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--delay, 0s);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .meme-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }

  .heist-steps {
    grid-template-columns: 1fr;
  }

  .social-grid {
    max-width: 100%;
  }

  .tokenomics-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .nav-links {
    gap: 18px;
  }
}

@media (max-width: 768px) {
  .cursor-glow {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(18, 46, 24, 0.96);
    backdrop-filter: blur(24px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--gold-border);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-buy-btn {
    padding: 8px 14px;
    font-size: 0.75rem;
  }

  .hero-content {
    margin-top: calc(var(--nav-height) + 28vh);
  }

  .meme-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .meme-card {
    border-radius: 14px;
  }

  .meme-card-overlay {
    opacity: 1;
    padding: 10px;
    background: linear-gradient(to top, rgba(12, 32, 16, 0.75) 0%, transparent 50%);
  }

  .meme-card-overlay span {
    font-size: 0.65rem;
  }

  .lightbox-nav {
    width: 40px;
    height: 40px;
  }

  .lightbox-prev {
    left: 8px;
  }

  .lightbox-next {
    right: 8px;
  }

  .social-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }

  .tokenomics-metrics {
    grid-template-columns: 1fr;
  }

  .ca-input-wrap {
    flex-direction: column;
    padding: 16px;
    border-radius: var(--radius-lg);
  }

  .ca-input {
    text-align: center;
    padding: 8px 0;
  }

  .copy-btn {
    width: 100%;
    justify-content: center;
  }

  .chart-card {
    padding-bottom: 120%;
  }

  .section {
    padding-top: 56px;
  }

  .section.section-bleed {
    padding: 64px 0 56px;
    margin-top: 40px;
  }

  .section-divider {
    margin-top: 40px;
  }
}

@media (max-width: 480px) {
  .about-portrait-wrap,
  .about-portrait {
    width: 120px;
    height: 120px;
  }

  .about-traits li {
    min-width: 96px;
    padding: 14px 16px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .social-cta {
    display: none;
  }

  .ornament-line span {
    width: 40px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .spark-canvas,
  .cursor-glow,
  .hero-ornaments,
  .floating-deco,
  .ticker-track {
    display: none;
  }

  .ticker-bar {
    display: none;
  }
}
