/* ============================================
   ORMUZ PROTOCOL — THE STRAIT OF PUMP
   Premium Memecoin Landing Page
   ============================================ */

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

:root {
  --black: #0a0a0a;
  --black-deep: #050505;
  --oil: #0d1a0f;
  --oil-dark: #091208;
  --gold: #C9A84C;
  --gold-light: #E8D48B;
  --gold-dim: rgba(201, 168, 76, 0.15);
  --danger: #E8542E;
  --danger-dim: rgba(232, 84, 46, 0.15);
  --orange: #D4850A;
  --red-alert: #FF3333;
  --green: #2ECC40;
  --green-dim: rgba(46, 204, 64, 0.1);
  --white: #F0EDE6;
  --gray: #8A8A8A;
  --gray-dark: #2A2A2A;
  --gray-darker: #1A1A1A;
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

html {
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
  padding-bottom: 36px;
}

a { color: inherit; text-decoration: none; cursor: none; }
button { cursor: none; background: none; border: none; color: inherit; font: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gold { color: var(--gold); }
.accent { color: var(--danger); }

::selection {
  background: var(--gold);
  color: var(--black);
}

/* ---------- SCROLLBAR ---------- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--gold-dim); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* ---------- PRELOADER ---------- */
#preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--black-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.preloader-inner {
  text-align: center;
  position: relative;
}

.preloader-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.2);
}

.preloader-ring:nth-child(1) {
  width: 120px; height: 120px;
  margin: -60px 0 0 -60px;
  border-top-color: var(--gold);
  animation: spinCW 1.5s linear infinite;
}

.preloader-ring:nth-child(2) {
  width: 160px; height: 160px;
  margin: -80px 0 0 -80px;
  border-right-color: var(--danger);
  animation: spinCCW 2s linear infinite;
}

.preloader-ring:nth-child(3) {
  width: 200px; height: 200px;
  margin: -100px 0 0 -100px;
  border-bottom-color: var(--gold);
  animation: spinCW 2.5s linear infinite;
}

@keyframes spinCW { to { transform: rotate(360deg); } }
@keyframes spinCCW { to { transform: rotate(-360deg); } }

.preloader-logo {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
}

.preloader-text {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: var(--gray-darker);
  margin: 0 auto;
  border-radius: 1px;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--danger));
  border-radius: 1px;
  transition: width 0.3s ease;
}

/* ---------- CUSTOM CURSOR ---------- */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  mix-blend-mode: difference;
  transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out), border-color 0.3s;
}

body.cursor-hover .cursor-dot {
  width: 16px;
  height: 16px;
  background: var(--danger);
}

body.cursor-hover .cursor-ring {
  width: 60px;
  height: 60px;
  border-color: rgba(232, 84, 46, 0.6);
}

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

/* ---------- NAVBAR ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: background 0.4s, padding 0.4s, backdrop-filter 0.4s;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(201, 168, 76, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
}

.nav-logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  position: relative;
  padding: 0.5rem 0;
  transition: color 0.3s;
}

.nav-link:hover { color: var(--gold); }

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out);
}

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

.nav-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  transition: all 0.3s;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black);
}

.nav-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

.nav-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.nav-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(30px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  gap: 1.5rem;
  transition: right 0.5s var(--ease-out);
  border-left: 1px solid rgba(201, 168, 76, 0.1);
}

.mobile-menu.open { right: 0; }

.mobile-link {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gray);
  transition: color 0.3s;
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.1em;
  padding: 1rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  text-align: center;
  margin-top: 1rem;
  transition: all 0.3s;
}

.mobile-cta:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- TICKER STRIP ---------- */
.ticker-strip {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(201, 168, 76, 0.15);
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
}

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

.ticker-content {
  display: flex;
  gap: 3rem;
  padding: 0 1.5rem;
  flex-shrink: 0;
}

.ticker-item {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  white-space: nowrap;
  text-transform: uppercase;
}

.ticker-item.alert {
  color: var(--danger);
  text-shadow: 0 0 8px rgba(232, 84, 46, 0.4);
}

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

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  overflow: hidden;
}

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

#heroCanvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201, 168, 76, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-radial {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 40%, rgba(201, 168, 76, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 50% 100%, rgba(10, 10, 10, 1) 0%, transparent 40%);
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0, 0, 0, 0.03) 2px,
    rgba(0, 0, 0, 0.03) 4px
  );
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(46, 204, 64, 0.3);
  background: rgba(46, 204, 64, 0.05);
  border-radius: 2px;
  margin-bottom: 2rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--green);
}

.badge-pulse {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(46, 204, 64, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 8px rgba(46, 204, 64, 0); }
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(4rem, 12vw, 10rem);
  line-height: 0.9;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  overflow: hidden;
}

.title-word {
  display: inline-block;
}

.title-word.gold {
  color: var(--gold);
  text-shadow: 0 0 60px rgba(201, 168, 76, 0.3);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-sub strong {
  color: var(--gold);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3rem;
}

/* BUTTONS */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  overflow: hidden;
  transition: all 0.4s var(--ease-out);
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
  border: 1px solid var(--gold);
}

.btn-primary .btn-bg {
  position: absolute;
  inset: 0;
  background: var(--danger);
  transform: translateY(101%);
  transition: transform 0.4s var(--ease-out);
}

.btn-primary:hover .btn-bg { transform: translateY(0); }
.btn-primary:hover { color: var(--white); border-color: var(--danger); }

.btn-text { position: relative; z-index: 1; }

.btn-secondary {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-secondary:hover {
  background: rgba(201, 168, 76, 0.1);
}

.btn-ghost {
  border: 1px solid var(--gray-dark);
  color: var(--gray);
  background: transparent;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-xl {
  padding: 1.2rem 3rem;
  font-size: 1rem;
}

/* HERO TOKEN BADGE */
.hero-token-badge {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 280px;
  height: 280px;
  z-index: 1;
}

.token-glow {
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}

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

.token-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(201, 168, 76, 0.15);
}

.token-ring-1 { animation: spinCW 20s linear infinite; border-style: dashed; }
.token-ring-2 { inset: 15px; animation: spinCCW 15s linear infinite; border-color: rgba(232, 84, 46, 0.1); }
.token-ring-3 { inset: 30px; animation: spinCW 25s linear infinite; border-style: dotted; }

.token-inner {
  position: absolute;
  inset: 45px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.08) 0%, rgba(10, 10, 10, 0.9) 70%);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.token-symbol {
  font-size: 3rem;
  color: var(--gold);
  line-height: 1;
}

.token-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-top: 0.3rem;
}

/* HERO STATS */
.hero-stats {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 3rem;
  justify-content: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  margin-top: 2rem;
}

.stat-item { text-align: center; }

.stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 0.3rem;
}

.stat-value {
  display: block;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--white);
}

.stat-value.gold-glow {
  color: var(--gold);
  text-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.stat-value.threat {
  color: var(--danger);
  text-shadow: 0 0 10px rgba(232, 84, 46, 0.5);
  animation: threatBlink 2s ease-in-out infinite;
}

@keyframes threatBlink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* HERO SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  text-align: center;
}

.hero-scroll-indicator span {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 0.8rem;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 1px solid var(--gold);
  border-bottom: 1px solid var(--gold);
  transform: rotate(45deg);
  margin: 0 auto;
  animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: rotate(45deg) translate(0, 0); opacity: 1; }
  50% { transform: rotate(45deg) translate(5px, 5px); opacity: 0.5; }
}

/* ---------- SECTIONS COMMON ---------- */
.section {
  position: relative;
  padding: 8rem 0;
  overflow: hidden;
}

.section-bg-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201, 168, 76, 0.02) 1px, transparent 1px);
  background-size: 100% 80px;
  pointer-events: none;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  color: var(--danger);
  margin-bottom: 1rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(232, 84, 46, 0.2);
  background: rgba(232, 84, 46, 0.03);
}

.section-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2.5rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.section-sub {
  font-size: 1rem;
  color: var(--gray);
  margin-top: 1rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- ABOUT / DOSSIER ---------- */
.about {
  background: linear-gradient(180deg, var(--black) 0%, var(--oil-dark) 50%, var(--black) 100%);
}

.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.dossier-card {
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.1);
  padding: 2rem;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s;
}

.dossier-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  transform: translateY(-2px);
}

.dossier-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--danger), transparent);
}

.dossier-card.wide { grid-column: 1 / -1; }

.dossier-stamp {
  position: absolute;
  top: 1rem;
  right: 1rem;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--danger);
  border: 2px solid var(--danger);
  padding: 0.2rem 0.6rem;
  transform: rotate(3deg);
  opacity: 0.6;
}

.dossier-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.dossier-id {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
}

.dossier-class {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray);
}

.dossier-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.dossier-text {
  font-size: 0.95rem;
  color: var(--gray);
  line-height: 1.7;
}

.dossier-text em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.dossier-redacted {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--danger);
  letter-spacing: 0.1em;
  opacity: 0.5;
}

.dossier-footer {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--green);
  letter-spacing: 0.15em;
}

/* MASCOT */
.mascot-section {
  display: flex;
  gap: 3rem;
  align-items: center;
  margin-top: 1rem;
}

.mascot-visual {
  flex-shrink: 0;
  width: 200px;
  display: flex;
  justify-content: center;
}

.mascot-container {
  position: relative;
  width: 160px;
  height: 220px;
}

.barrel-body {
  position: relative;
  width: 120px;
  height: 140px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
  border-radius: 10px;
  border: 2px solid var(--gold);
  margin: 50px auto 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), inset 0 0 30px rgba(201, 168, 76, 0.05);
}

.barrel-band {
  position: absolute;
  left: -2px;
  right: -2px;
  height: 8px;
  background: var(--gold);
  border-radius: 2px;
}

.barrel-band.top { top: 15px; }
.barrel-band.bottom { bottom: 15px; }

.barrel-face {
  position: absolute;
  top: 35px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
}

.barrel-glasses {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.glass {
  width: 35px;
  height: 22px;
  background: linear-gradient(135deg, #111 0%, #333 100%);
  border: 2px solid var(--gold);
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.glass-shine {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 12px;
  height: 8px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 2px;
  transform: rotate(-15deg);
}

.barrel-smirk {
  width: 30px;
  height: 15px;
  border: 2px solid var(--gold);
  border-top: none;
  border-radius: 0 0 15px 15px;
  margin: 8px auto 0;
}

.barrel-badge {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  color: var(--gold);
}

.barrel-hat {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
}

.hat-brim {
  width: 130px;
  height: 12px;
  background: #1a1a1a;
  border: 2px solid var(--gold);
  border-radius: 6px;
  position: absolute;
  bottom: 0;
}

.hat-top {
  width: 90px;
  height: 35px;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border: 2px solid var(--gold);
  border-bottom: none;
  border-radius: 8px 8px 0 0;
  margin: 0 auto;
  position: relative;
}

.hat-emblem {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--gold);
  font-size: 1rem;
}

.mascot-info { flex: 1; }

.mascot-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.15em;
  padding: 0.3rem 0.8rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
  color: var(--gold);
  background: rgba(201, 168, 76, 0.05);
}

/* ---------- FEATURES ---------- */
.features {
  background: var(--black);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: rgba(18, 18, 14, 0.85);
  border: 1px solid rgba(201, 168, 76, 0.12);
  padding: 2rem;
  position: relative;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--danger));
  transition: width 0.5s var(--ease-out);
}

.feature-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateY(-4px);
  background: rgba(20, 20, 15, 0.8);
}

.feature-card:hover::after { width: 100%; }

.feature-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  color: var(--gold);
}

.feature-svg { width: 100%; height: 100%; }

.feature-number {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 3rem;
  color: rgba(201, 168, 76, 0.06);
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  line-height: 1;
}

.feature-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.feature-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.feature-text em {
  color: var(--gold);
  font-style: normal;
}

.feature-stat {
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  padding-top: 1rem;
}

.feature-stat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  color: var(--gold);
}

.feature-stat-unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--gold);
}

.feature-stat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 0.2rem;
}

/* ---------- TOKENOMICS ---------- */
.tokenomics {
  background: linear-gradient(180deg, var(--black) 0%, var(--oil-dark) 50%, var(--black) 100%);
}

.tokenomics-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.tokenomics-visual {
  display: flex;
  justify-content: center;
}

.token-wheel {
  position: relative;
  width: 300px;
  height: 300px;
}

.wheel-svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.wheel-center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.wheel-amount {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
}

.wheel-label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 0.3rem;
}

.tokenomics-cards {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.token-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.08);
  transition: all 0.3s;
}

.token-card:hover {
  border-color: rgba(201, 168, 76, 0.25);
  transform: translateX(4px);
}

.token-card-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.token-card-content { flex: 1; }

.token-card-content h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.token-card-content p {
  font-size: 0.8rem;
  color: var(--gray);
  line-height: 1.5;
}

.token-card-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  flex-shrink: 0;
}

.token-card-check {
  font-size: 1.5rem;
  color: var(--green);
  flex-shrink: 0;
}

/* ---------- ROADMAP ---------- */
.roadmap {
  background: var(--black);
}

.roadmap-track {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}

.roadmap-line {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(201, 168, 76, 0.1);
}

.roadmap-line-fill {
  width: 100%;
  height: 0%;
  background: linear-gradient(180deg, var(--gold), var(--danger));
  transition: height 0.1s;
}

.roadmap-phase {
  position: relative;
  padding: 0 0 3rem;
}

.phase-marker {
  position: absolute;
  left: -3rem;
  top: 0.5rem;
  width: 14px;
  height: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  left: -3.06rem;
}

.phase-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--black);
  transition: all 0.3s;
}

.roadmap-phase:hover .phase-dot {
  background: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.5);
}

.phase-content {
  background: rgba(15, 15, 15, 0.6);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 2rem;
  transition: all 0.3s;
}

.phase-content:hover {
  border-color: rgba(201, 168, 76, 0.2);
}

.phase-tag {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.phase-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.8rem;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.phase-list {
  margin-bottom: 1rem;
}

.phase-list li {
  font-size: 0.9rem;
  color: var(--gray);
  padding: 0.3rem 0;
  padding-left: 1.2rem;
  position: relative;
}

.phase-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.phase-status {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gray);
  padding: 0.3rem 0.6rem;
  border: 1px solid var(--gray-dark);
  display: inline-block;
}

.phase-status.complete {
  color: var(--green);
  border-color: rgba(46, 204, 64, 0.3);
  background: rgba(46, 204, 64, 0.05);
}

.phase-status.active {
  color: var(--gold);
  border-color: rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(201, 168, 76, 0.2); }
  50% { box-shadow: 0 0 0 6px rgba(201, 168, 76, 0); }
}

/* ---------- COMMUNITY ---------- */
.community {
  background: linear-gradient(180deg, var(--black) 0%, var(--oil-dark) 50%, var(--black) 100%);
}

.comms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.comm-card {
  background: rgba(15, 15, 15, 0.7);
  border: 1px solid rgba(201, 168, 76, 0.08);
  padding: 1.5rem;
  transition: all 0.3s;
}

.comm-card:hover {
  border-color: rgba(201, 168, 76, 0.2);
  transform: translateY(-3px);
}

.comm-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.comm-avatar {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.comm-user { flex: 1; }

.comm-name {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
}

.comm-handle {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
}

.comm-time {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  color: var(--gray);
}

.comm-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(240, 237, 230, 0.85);
  margin-bottom: 1rem;
}

.comm-stats {
  display: flex;
  gap: 1.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--gray);
}

.community-stats-bar {
  display: flex;
  justify-content: center;
  gap: 4rem;
  padding: 2rem 0;
  border-top: 1px solid rgba(201, 168, 76, 0.1);
  border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.cstat { text-align: center; }

.cstat-value {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2.5rem;
  color: var(--gold);
}

.cstat-unit {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--gold);
}

.cstat-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-top: 0.3rem;
}

/* ---------- FINAL CTA ---------- */
.final-cta {
  padding: 10rem 0;
  text-align: center;
  position: relative;
}

.final-cta-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.cta-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
}

.cta-glow-1 {
  width: 500px;
  height: 500px;
  background: rgba(201, 168, 76, 0.08);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.cta-glow-2 {
  width: 300px;
  height: 300px;
  background: rgba(232, 84, 46, 0.06);
  top: 30%;
  right: 20%;
}

.cta-glow-3 {
  width: 400px;
  height: 400px;
  background: rgba(201, 168, 76, 0.04);
  bottom: 10%;
  left: 15%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: clamp(2rem, 5vw, 4.5rem);
  line-height: 1;
  text-transform: uppercase;
  margin: 1.5rem 0 2rem;
}

.cta-line { display: block; }
.cta-line.accent { margin-top: 0.3rem; }

.cta-sub {
  font-size: 1.1rem;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.8;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.cta-contract {
  max-width: 600px;
  margin: 0 auto;
}

.contract-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.contract-box {
  display: flex;
  align-items: center;
  background: rgba(15, 15, 15, 0.8);
  border: 1px solid rgba(201, 168, 76, 0.15);
  padding: 0.8rem 1.2rem;
  gap: 1rem;
}

.contract-addr {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--gray);
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contract-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: var(--gold);
  padding: 0.4rem 1rem;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  flex-shrink: 0;
}

.contract-copy:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- FOOTER ---------- */
.footer {
  background: var(--black-deep);
  padding: 4rem 0 6rem;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 168, 76, 0.06);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  color: var(--gray);
  padding: 0.3rem 0;
  transition: color 0.3s;
}

.footer-col a:hover { color: var(--white); }

.footer-disclaimer {
  font-size: 0.75rem;
  color: var(--gray);
  line-height: 1.7;
  max-width: 800px;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.footer-copy {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--gray);
  letter-spacing: 0.1em;
  opacity: 0.4;
}

/* ---------- COMING SOON POPUP ---------- */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10001;
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s, visibility 0.4s;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-box {
  background: rgba(15, 15, 15, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 3rem 3.5rem;
  text-align: center;
  max-width: 420px;
  width: 90%;
  position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s var(--ease-out);
}

.popup-overlay.active .popup-box {
  transform: scale(1) translateY(0);
}

.popup-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--danger), var(--gold));
}

.popup-icon {
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 1rem;
  text-shadow: 0 0 30px rgba(201, 168, 76, 0.4);
}

.popup-title {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.popup-text {
  font-size: 0.9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 2rem;
}

.popup-close {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  padding: 0.8rem 2rem;
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
  transition: all 0.3s;
  cursor: pointer;
}

.popup-close:hover {
  background: var(--gold);
  color: var(--black);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hero-token-badge { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .comms-grid { grid-template-columns: repeat(2, 1fr); }
  .tokenomics-layout { grid-template-columns: 1fr; gap: 2rem; }
  .token-wheel { width: 240px; height: 240px; }
  .community-stats-bar { gap: 2rem; }
}

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

  .hero {
    padding: 7rem 1.5rem 5rem;
    min-height: calc(100vh - 36px);
    min-height: calc(100dvh - 36px);
  }
  .hero-title { font-size: clamp(3rem, 13vw, 6rem); }

  .hero-sub {
    font-size: 0.95rem;
    padding: 0 0.5rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat-item {
    flex: 1 0 45%;
    text-align: center;
  }

  .stat-value {
    font-size: 1.2rem;
    word-break: break-word;
  }

  .hero-scroll-indicator { display: none; }

  .section { padding: 4rem 0; }
  .section-title { font-size: clamp(2rem, 8vw, 3.5rem); }
  .section-header { margin-bottom: 2.5rem; }

  .dossier-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .comms-grid { grid-template-columns: 1fr; }

  .dossier-card { padding: 1.5rem; }
  .feature-card { padding: 1.5rem; }
  .comm-card { padding: 1.2rem; }

  .mascot-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .mascot-visual { width: 160px; }
  .mascot-tags { justify-content: center; }

  .tokenomics-layout { grid-template-columns: 1fr; gap: 2rem; }
  .token-wheel { width: 200px; height: 200px; }
  .wheel-amount { font-size: 1.1rem; }
  .token-card { padding: 1rem; }
  .token-card-content h4 { font-size: 0.85rem; }
  .token-card-content p { font-size: 0.75rem; }

  .roadmap-track { padding-left: 2rem; }
  .phase-marker { left: -2.06rem; }
  .phase-content { padding: 1.5rem; }
  .phase-title { font-size: 1.3rem; }

  .footer-top { flex-direction: column; gap: 2rem; }
  .footer-links { gap: 2rem; flex-wrap: wrap; }
  .footer { padding-bottom: 4rem; }

  .community-stats-bar {
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.5rem 0;
  }

  .cstat { flex: 1 0 45%; text-align: center; }
  .cstat-value { font-size: 1.8rem; }

  .cta-title { font-size: clamp(1.6rem, 7vw, 3rem); }
  .cta-actions { flex-direction: column; align-items: stretch; }
  .cta-sub { font-size: 0.95rem; padding: 0 1rem; }
  .final-cta { padding: 6rem 0; }

  .contract-box { flex-direction: column; gap: 0.5rem; text-align: center; }
  .contract-addr { font-size: 0.6rem; }
  .contract-copy { width: 100%; text-align: center; padding: 0.6rem; }

  /* Buttons: bigger touch targets */
  .btn { padding: 1rem 2rem; font-size: 0.85rem; min-height: 48px; }
  .btn-xl { padding: 1.1rem 2rem; }

  /* Ticker strip */
  .ticker-strip { height: 32px; }

  /* Cursor */
  .cursor-dot, .cursor-ring { display: none !important; }
  body { cursor: auto !important; }
  a, button { cursor: pointer !important; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }

  .hero { padding: 6rem 1rem 4rem; }
  .hero-title { font-size: clamp(2.5rem, 15vw, 4.5rem); }
  .hero-badge { font-size: 0.55rem; }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.7rem;
  }
  .btn { width: 100%; text-align: center; }

  .hero-stats { gap: 0.8rem; }
  .stat-label { font-size: 0.5rem; }
  .stat-value { font-size: 1rem; }

  .section-tag { font-size: 0.55rem; letter-spacing: 0.15em; }

  .feature-number { font-size: 2rem; }
  .feature-title { font-size: 1.1rem; }
  .feature-stat-value { font-size: 1.5rem; }

  .dossier-stamp { font-size: 0.6rem; }
  .dossier-title { font-size: 1.2rem; }
  .dossier-text { font-size: 0.85rem; }

  .phase-list li { font-size: 0.8rem; }

  .comm-text { font-size: 0.85rem; }
  .comm-name { font-size: 0.8rem; }

  .footer-links { flex-direction: column; gap: 1.5rem; }
  .footer-disclaimer { font-size: 0.65rem; }

  .ticker-strip { height: 28px; }
  .ticker-item { font-size: 0.55rem; gap: 2rem; }

  .token-wheel { width: 180px; height: 180px; }
  .wheel-amount { font-size: 1rem; }
  .wheel-label { font-size: 0.5rem; }
}
