/* ==========================================================================
   ARGUS EYE ($EYE) - ALL EYES ON ARC
   "THE ORACLE" - On-Chain Divination & Telemetry Terminal
   ========================================================================== */

:root {
  --bg: #07080d;
  --bg-darker: #040508;
  --panel: #0d1017;
  --panel-border: rgba(255, 255, 255, 0.12);
  --card-bg: #121620;
  --ink: #f7f6fc;
  --muted: #9397a8;
  --subtle: #5f6377;
  --line: rgba(255, 255, 255, 0.1);
  --line-strong: rgba(255, 255, 255, 0.22);
  
  /* Arc Brand Colors */
  --purple: #9d4edd;
  --purple-light: #c77dff;
  --purple-glow: rgba(157, 78, 221, 0.45);
  --purple-deep: #5a189a;
  --cyan: #4cc9f0;
  --cyan-glow: rgba(76, 201, 240, 0.4);
  --yellow: #ffd166;
  --green: #4ade80;
  --red: #f87171;
  
  /* Fonts */
  --font-display: 'Barlow Condensed', 'Syne', sans-serif;
  --font-heading: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  background: var(--bg);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  position: relative;
}

::selection {
  background: var(--purple);
  color: #fff;
}

/* Subtle Film Grain Noise Texture */
body:after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 99;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  mix-blend-mode: screen;
}

/* Ambient dynamic background lighting */
.ambient-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.35;
}

.glow-top {
  top: -100px;
  right: 5%;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, var(--purple) 0%, rgba(90, 24, 154, 0.2) 70%, transparent 100%);
  animation: pulseAura 9s ease-in-out infinite alternate;
}

.glow-mid {
  top: 1400px;
  left: -100px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, var(--cyan) 0%, rgba(67, 97, 238, 0.15) 70%, transparent 100%);
  opacity: 0.2;
}

.glow-bottom {
  bottom: 200px;
  right: -50px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, var(--purple-deep) 0%, transparent 70%);
  opacity: 0.25;
}

@keyframes pulseAura {
  0% { transform: scale(1) translate(0, 0); opacity: 0.3; }
  50% { transform: scale(1.1) translate(30px, -20px); opacity: 0.45; }
  100% { transform: scale(0.95) translate(-20px, 20px); opacity: 0.35; }
}

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

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

a:focus-visible, button:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

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

.page-shell {
  max-width: 1540px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* Accessibility Skip Link */
.skip-link {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--purple);
  color: #fff;
  padding: 12px 20px;
  font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus {
  top: 20px;
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */
.header {
  height: 94px;
  margin: 0 4.5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--line);
  position: relative;
  z-index: 20;
}

.wordmark {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 36px;
  letter-spacing: -0.03em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  color: #fff;
  transition: transform 0.3s var(--ease);
}

.wordmark-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  box-shadow: 0 0 15px var(--purple-glow);
}

.nav-token-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}

.brand-spark {
  font-family: sans-serif;
  font-style: normal;
  font-size: 22px;
  color: var(--purple);
  display: inline-block;
  transition: transform 0.6s var(--ease), color 0.3s;
  text-shadow: 0 0 12px var(--purple-glow);
}

.wordmark:hover .brand-spark {
  transform: rotate(180deg) scale(1.2);
  color: var(--cyan);
}

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

.nav-link {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav-link:hover {
  color: #fff;
}

.nav-link:after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-link:hover:after {
  transform: scaleX(1);
}

.nav-link span {
  padding-left: 6px;
  color: var(--purple);
}

/* Button System (Cyber-angle cut aesthetic) */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 26px;
  min-height: 56px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  transition: all 0.3s var(--ease);
  text-transform: uppercase;
}

.button .arrow {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  transition: transform 0.3s var(--ease);
}

.button:hover .arrow {
  transform: translate(3px, -3px);
}

.button:active {
  transform: translateY(2px);
}

.button-primary {
  color: #08090d;
  background: var(--purple);
  background: linear-gradient(135deg, #c77dff 0%, #9d4edd 60%, #7b2cbf 100%);
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
  box-shadow: 0 8px 25px rgba(157, 78, 221, 0.4);
}

.button-primary:before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: var(--cyan);
  transform: translateX(-102%);
  transition: transform 0.4s var(--ease);
}

.button-primary:hover:before {
  transform: translateX(0);
}

.button-primary:hover {
  box-shadow: 0 10px 30px rgba(76, 201, 240, 0.5);
  color: #05070a;
}

.button-quiet {
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 17px 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(8px);
}

.button-quiet:hover {
  border-color: var(--purple);
  background: rgba(157, 78, 221, 0.1);
  box-shadow: 0 0 20px rgba(157, 78, 221, 0.25);
}

.button-small {
  font-size: 12px;
  min-height: 42px;
  padding: 10px 18px;
  gap: 16px;
}

.button-outline {
  border: 1px solid var(--purple);
  color: var(--purple-light);
  clip-path: polygon(0 0, calc(100% - 8px) 0, 100% 8px, 100% 100%, 8px 100%, 0 calc(100% - 8px));
}

.button-outline:hover {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 20px var(--purple-glow);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  min-height: 700px;
  isolation: isolate;
  overflow: hidden;
  padding-bottom: 40px;
}

.hero-art {
  position: absolute;
  right: -2%;
  top: -10px;
  width: 60%;
  height: 750px;
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eye-interactive-wrapper {
  position: relative;
  width: min(90vw, 530px);
  height: min(90vw, 530px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-token {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  clip-path: circle(49.6% at 50% 50%);
  box-shadow: 0 0 60px rgba(157, 78, 221, 0.55), inset 0 0 35px rgba(157, 78, 221, 0.35);
  filter: drop-shadow(0 20px 60px rgba(157, 78, 221, 0.65));
  animation: tokenEnter 1.2s var(--ease) both;
}

.token-glow-halo {
  position: absolute;
  inset: -14px;
  border-radius: 50%;
  border: 1.5px solid rgba(157, 78, 221, 0.45);
  background: radial-gradient(circle, rgba(157, 78, 221, 0.35) 0%, rgba(76, 201, 240, 0.18) 55%, transparent 72%);
  box-shadow: 0 0 45px rgba(157, 78, 221, 0.5), inset 0 0 30px rgba(157, 78, 221, 0.3);
  z-index: -1;
  animation: haloPulse 5s ease-in-out infinite alternate;
}

@keyframes haloPulse {
  0% { opacity: 0.7; }
  100% { opacity: 0.95; }
}

.art-shade {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 65% 50%, transparent 42%, rgba(7, 8, 13, 0.7) 75%, var(--bg) 100%),
              linear-gradient(90deg, var(--bg) 0%, transparent 40%);
  pointer-events: none;
}

.hero-copy {
  position: relative;
  padding: 50px 0 40px 4.5%;
  width: 60%;
  z-index: 5;
}

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.16em;
  font-weight: 800;
  margin: 0 0 18px;
  line-height: 1.6;
  color: var(--muted);
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--yellow);
  display: flex;
  align-items: center;
  gap: 10px;
}

.mini-cross {
  font-size: 16px;
  color: var(--purple);
  text-shadow: 0 0 10px var(--purple);
}

h1 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: clamp(140px, 16vw, 240px);
  line-height: 0.84;
  letter-spacing: -0.04em;
  margin: 0 0 20px -8px;
  width: max-content;
  color: #fff;
  text-shadow: 0 0 40px rgba(157, 78, 221, 0.35);
  animation: enter 0.8s var(--ease) both;
}

.title-period {
  color: var(--purple);
  text-shadow: 0 0 25px var(--purple);
}

.hero-statement {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 4vw, 56px);
  font-weight: 800;
  line-height: 0.96;
  letter-spacing: 0.01em;
  margin: 0 0 22px;
  color: #fff;
}

.hero-statement span {
  color: var(--purple);
  text-shadow: 0 0 20px var(--purple-glow);
}

.hero-description {
  font-size: 17px;
  line-height: 1.7;
  color: #b3b7c7;
  margin: 0 0 30px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.contract {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.contract-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: var(--purple-light);
  background: rgba(157, 78, 221, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid rgba(157, 78, 221, 0.3);
}

.copy-address {
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.03);
  color: #d1d5e4;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  font-family: var(--font-mono);
  font-size: 13px;
  border-radius: 6px;
  transition: all 0.25s;
}

.copy-address:hover {
  color: #fff;
  border-color: var(--purple);
  background: rgba(157, 78, 221, 0.12);
  box-shadow: 0 0 15px rgba(157, 78, 221, 0.2);
}

.copy-address svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  color: var(--purple);
}

.contract-explorer {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  border-left: 1px solid var(--line-strong);
  padding: 6px 0 6px 14px;
  color: var(--muted);
  transition: color 0.2s;
}

.contract-explorer:hover {
  color: var(--cyan);
}

.hero-caption {
  position: absolute;
  right: 4.5%;
  bottom: 45px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  font-style: italic;
  line-height: 0.95;
  transform: rotate(-3deg);
  color: var(--yellow);
  z-index: 5;
  text-shadow: 0 0 15px rgba(255, 209, 102, 0.3);
}

.caption-line {
  width: 48px;
  height: 2px;
  background: var(--purple);
  box-shadow: 0 0 8px var(--purple);
}

/* Animations */
@keyframes enter {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes tokenEnter {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}

/* ==========================================================================
   REWARD STRIP
   ========================================================================== */
.reward-strip {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr 1fr auto;
  align-items: center;
  gap: 28px;
  background: linear-gradient(90deg, #7b2cbf 0%, #9d4edd 50%, #b5179e 100%);
  color: #fff;
  padding: 26px 4.5%;
  min-height: 110px;
  box-shadow: 0 10px 40px rgba(123, 44, 191, 0.35);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.strip-lead {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--font-display);
  font-size: 23px;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.strip-lead strong {
  font-weight: 900;
  color: #fff;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
}

.strip-star {
  font-size: 32px;
  line-height: 1;
}

.strip-stat {
  border-left: 1px solid rgba(255, 255, 255, 0.25);
  padding-left: 26px;
}

.stat-label {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.75);
}

.strip-stat strong {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.strip-stat strong span {
  opacity: 0.6;
  margin: 0 4px;
}

.strip-link {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(8px);
  color: #fff;
  transition: all 0.25s;
}

.strip-link:hover {
  background: #fff;
  color: #07080d;
}

.strip-link span {
  font-size: 18px;
  transition: transform 0.25s;
}

.strip-link:hover span {
  transform: translate(2px, -2px);
}

/* Floating Eye Background Particles Layer */
.floating-eyes-bg {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.floating-eye-particle {
  position: absolute;
  user-select: none;
  opacity: 0.12;
  filter: drop-shadow(0 0 8px rgba(157, 78, 221, 0.4));
  transition: opacity 0.5s ease;
  animation: floatEye linear infinite;
  pointer-events: none;
}

@keyframes floatEye {
  0% {
    transform: translateY(105vh) rotate(0deg) scale(0.7);
    opacity: 0;
  }
  15% {
    opacity: 0.18;
  }
  85% {
    opacity: 0.18;
  }
  100% {
    transform: translateY(-10vh) rotate(360deg) scale(1.1);
    opacity: 0;
  }
}

/* Meme Marquee Banner */
.meme-marquee-wrap {
  width: 100%;
  background: linear-gradient(90deg, #0d0818 0%, #1e0d38 50%, #0d0818 100%);
  border-top: 1px solid rgba(157, 78, 221, 0.3);
  border-bottom: 1px solid rgba(157, 78, 221, 0.3);
  overflow: hidden;
  padding: 11px 0;
  white-space: nowrap;
  position: relative;
  z-index: 15;
  box-shadow: inset 0 0 20px rgba(157, 78, 221, 0.15);
}

.meme-marquee {
  display: inline-flex;
  gap: 40px;
  animation: marqueeScroll 30s linear infinite;
}

.meme-marquee span {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffda79;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-shadow: 0 0 10px rgba(255, 218, 121, 0.4);
}

.meme-marquee span:nth-child(even) {
  color: #c77dff;
  text-shadow: 0 0 10px rgba(199, 125, 255, 0.4);
}

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

.meme-marquee-wrap:hover .meme-marquee {
  animation-play-state: paused;
}

/* ==========================================================================
   THE SACRED MEME VAULT & STARE CLICKER
   ========================================================================== */
.meme-vault-section {
  padding: 80px 4.5% 60px;
  position: relative;
  z-index: 5;
}

.meme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 36px;
  margin-bottom: 50px;
}

.meme-card {
  background: rgba(14, 15, 26, 0.75);
  border: 1px solid rgba(157, 78, 221, 0.25);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s, box-shadow 0.35s;
  display: flex;
  flex-direction: column;
}

.meme-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(157, 78, 221, 0.7);
  box-shadow: 0 20px 45px rgba(157, 78, 221, 0.25);
}

.meme-img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #090912;
}

.meme-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.meme-card:hover .meme-img-wrap img {
  transform: scale(1.08);
}

.meme-tag {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(7, 8, 13, 0.85);
  border: 1px solid rgba(255, 209, 102, 0.5);
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 999px;
  backdrop-filter: blur(8px);
}

.meme-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  justify-content: space-between;
}

.meme-body h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  margin: 0 0 10px;
  color: #fff;
  letter-spacing: 0.02em;
}

.meme-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #a0a6be;
  margin: 0 0 20px;
  font-style: italic;
}

.meme-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--muted);
}

.meme-chip {
  background: rgba(157, 78, 221, 0.2);
  color: var(--purple-light);
  border: 1px solid rgba(157, 78, 221, 0.4);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 10px;
}

/* Stare Clicker Mini-game Box */
.stare-clicker-box {
  background: linear-gradient(135deg, rgba(26, 16, 48, 0.85) 0%, rgba(14, 15, 26, 0.95) 100%);
  border: 1px solid rgba(157, 78, 221, 0.4);
  border-radius: 20px;
  padding: 36px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(157, 78, 221, 0.15);
  position: relative;
  overflow: hidden;
}

.stare-info {
  max-width: 480px;
}

.stare-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--cyan);
  background: rgba(76, 201, 240, 0.12);
  border: 1px solid rgba(76, 201, 240, 0.3);
  padding: 4px 10px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.stare-info h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  margin: 0 0 8px;
  color: #fff;
  letter-spacing: 0.02em;
}

.stare-info p {
  font-size: 14px;
  color: #b3b7c7;
  line-height: 1.5;
  margin: 0 0 16px;
}

.stare-rank {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 800;
  color: var(--yellow);
  background: rgba(255, 209, 102, 0.1);
  border: 1px dashed rgba(255, 209, 102, 0.4);
  padding: 6px 14px;
  border-radius: 6px;
  display: inline-block;
}

.stare-action-zone {
  display: flex;
  align-items: center;
  gap: 28px;
}

.stare-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  position: relative;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.stare-btn:hover {
  transform: scale(1.08);
}

.stare-btn:active {
  transform: scale(0.92);
}

.stare-btn-inner {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(157, 78, 221, 0.4) 0%, rgba(10, 10, 18, 0.9) 80%);
  border: 2px solid var(--purple);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
  position: relative;
}

.stare-token-img {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  object-fit: cover;
  pointer-events: none;
}

.stare-pulse-ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--purple-light);
  opacity: 0;
  animation: starePulse 2.2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  pointer-events: none;
}

@keyframes starePulse {
  0% { transform: scale(0.85); opacity: 0.8; }
  100% { transform: scale(1.45); opacity: 0; }
}

.stare-count-wrap {
  display: flex;
  flex-direction: column;
}

.stare-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--muted);
  margin-bottom: 4px;
}

.stare-counter {
  font-family: var(--font-display);
  font-size: 38px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  text-shadow: 0 0 20px rgba(157, 78, 221, 0.5);
}

/* Floating click particles spawned by clicker */
.floating-click-emoji {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  font-size: 24px;
  user-select: none;
  animation: popFloat 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes popFloat {
  0% {
    transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
    opacity: 1;
  }
  50% {
    transform: translate(-50%, -100px) scale(1.4) rotate(15deg);
    opacity: 0.9;
  }
  100% {
    transform: translate(-50%, -180px) scale(1) rotate(-10deg);
    opacity: 0;
  }
}

/* ==========================================================================
   THE ORACLE - ON-CHAIN DIVINATION & TELEMETRY TERMINAL
   ========================================================================== */
.oracle-section,
.panopticon-section {
  padding: 55px 4.5% 20px;
  scroll-margin-top: 30px;
}

.oracle-tag,
.panopticon-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--yellow);
  background: rgba(255, 209, 102, 0.1);
  padding: 4px 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 209, 102, 0.25);
  margin-bottom: 10px;
}

.oracle-orb-dot,
.radar-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 10px var(--yellow);
  animation: pulseDot 1.5s infinite;
}

.oracle-heading h2,
.panopticon-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 48px);
  line-height: 0.98;
  margin: 0;
  letter-spacing: 0.01em;
}

.oracle-heading h2 span,
.panopticon-heading h2 span {
  color: var(--purple);
  text-shadow: 0 0 20px var(--purple-glow);
}

/* Oracle Status / Prophecy Bar */
.oracle-status-bar,
.panopticon-radar-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 20px 0 15px;
}

.oracle-chip,
.radar-chip {
  background: rgba(13, 16, 23, 0.9);
  border: 1px solid var(--line);
  padding: 10px 16px;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.chip-label {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--subtle);
  font-family: var(--font-mono);
}

.chip-value {
  font-size: 13px;
  font-family: var(--font-mono);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pulse-ring {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.text-green { color: var(--green); }
.text-purple { color: var(--purple-light); }
.text-yellow { color: var(--yellow); }

/* Oracle Chart Panel & Aura */
.oracle-chart-panel,
.panopticon-chart-panel {
  position: relative;
  padding: 28px 30px 0;
  min-width: 0;
  overflow: hidden;
}

.oracle-aura-overlay,
.radar-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.oracle-gaze-ray,
.radar-scanline {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--yellow) 20%, var(--purple-light) 50%, var(--cyan) 80%, transparent 100%);
  box-shadow: 0 0 15px var(--purple-light), 0 0 8px var(--yellow);
  opacity: 0.5;
  animation: scanLine 6s linear infinite;
}

@keyframes scanLine {
  0% { transform: translateY(0); }
  100% { transform: translateY(400px); }
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 15px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.price-row .stat-label {
  color: var(--muted);
  font-size: 11px;
}

.big-price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(32px, 3.8vw, 48px);
  line-height: 1.1;
  letter-spacing: 0.01em;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.price-change {
  font-size: 13px;
  font-weight: 700;
  margin-left: 12px;
  padding: 3px 8px;
  border-radius: 4px;
  font-variant-numeric: tabular-nums;
}

.price-change.positive {
  color: var(--green);
  background: rgba(74, 222, 128, 0.12);
}

.price-change.negative {
  color: var(--red);
  background: rgba(248, 113, 113, 0.12);
}

.timeframes {
  display: flex;
  gap: 4px;
  margin-top: 6px;
  background: rgba(255, 255, 255, 0.04);
  padding: 3px;
  border-radius: 6px;
  border: 1px solid var(--line);
}

.timeframes button {
  padding: 6px 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  border-radius: 4px;
  transition: all 0.2s;
}

.timeframes button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.timeframes button[aria-pressed="true"] {
  background: var(--purple);
  color: #fff;
  box-shadow: 0 0 12px var(--purple-glow);
}

.chart-wrap {
  position: relative;
  width: 100%;
  height: 230px;
  margin-top: 18px;
  touch-action: pan-y;
  cursor: crosshair;
  z-index: 2;
}

.chart-wrap svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}

.chart-message {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 14px;
  pointer-events: none;
}

.chart-tooltip {
  position: absolute;
  top: 8px;
  left: 14px;
  pointer-events: none;
  background: #191d29;
  border: 1px solid var(--purple);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 12px;
  font-family: var(--font-mono);
  opacity: 0;
  z-index: 10;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.8), 0 0 15px var(--purple-glow);
  border-radius: 4px;
  transition: opacity 0.15s;
}

.chart-tooltip.visible {
  opacity: 1;
}

.chart-tooltip strong {
  color: var(--cyan);
  margin-left: 12px;
}

.chart-meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 11px;
  color: var(--subtle);
  padding: 8px 0 18px;
  font-family: var(--font-mono);
  position: relative;
  z-index: 2;
}

.market-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  margin: 0 -30px;
  padding: 22px 30px;
  gap: 16px;
  background: rgba(255, 255, 255, 0.015);
  position: relative;
  z-index: 2;
}

.market-stats .stat-label {
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.1em;
}

.market-stats strong {
  font-family: var(--font-display);
  font-size: 26px;
  line-height: 1;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  color: #fff;
  margin-top: 4px;
  display: block;
}

.market-stats > div:last-child strong {
  color: var(--yellow);
}

.market-provenance {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 0 18px;
  border-top: 1px solid var(--line);
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  position: relative;
  z-index: 2;
}

.prov-links {
  display: flex;
  gap: 20px;
}

.prov-link {
  color: var(--purple-light);
  font-weight: 600;
}

.prov-link:hover {
  color: #fff;
  text-decoration: underline;
}

/* Right Payout / Tribute Panel */
.payout-panel {
  border-left: 1px solid var(--line-strong);
  padding: 28px 28px;
  background: linear-gradient(145deg, rgba(157, 78, 221, 0.08) 0%, rgba(13, 16, 23, 0.95) 60%);
  position: relative;
}

.payout-heading {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-bottom: 20px;
}

.payout-heading .eyebrow {
  margin: 0;
  font-size: 11px;
}

.payout-currency {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  border: 1px solid rgba(157, 78, 221, 0.5);
  background: rgba(157, 78, 221, 0.15);
  color: var(--purple-light);
  padding: 4px 8px;
  border-radius: 4px;
}

.payout-subtitle {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 700;
}

.countdown {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 58px;
  line-height: 0.96;
  color: var(--yellow);
  font-variant-numeric: tabular-nums;
  margin-top: 6px;
  letter-spacing: 0.02em;
  text-shadow: 0 0 20px rgba(255, 209, 102, 0.4);
}

.countdown-state {
  font-size: 11px;
  color: var(--muted);
  line-height: 1.5;
  margin: 8px 0 20px;
}

.payout-facts {
  margin: 0;
}

.payout-facts > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 11px 0;
  border-top: 1px solid var(--line);
}

.payout-facts dt {
  font-size: 10px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.08em;
}

.payout-facts dt span {
  display: block;
  font-size: 9px;
  color: var(--subtle);
  margin-top: 2px;
}

.payout-facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 23px;
  text-align: right;
  font-variant-numeric: tabular-nums;
  color: #fff;
}

.payout-facts dd small {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  color: var(--purple-light);
  margin-top: 2px;
}

.fee-box {
  border-top: 1px solid rgba(157, 78, 221, 0.35);
  margin-top: 12px;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.fee-box > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fee-box span {
  font-size: 10px;
  line-height: 1.3;
  color: var(--muted);
  font-weight: 600;
}

.fee-box strong {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  color: var(--purple-light);
}

.module-note {
  font-size: 11px;
  line-height: 1.6;
  color: var(--muted);
  margin: 14px 0 0;
}

.reward-sync {
  font-size: 10px;
  color: var(--subtle);
  line-height: 1.6;
  margin: 10px 0 0;
}

/* The Oracle Sight Stream Bottom Table */
.payout-history {
  display: grid;
  grid-template-columns: 1fr 1.85fr;
  border: 1px solid var(--line-strong);
  border-top: 0;
  background: #090c12;
}

.history-intro {
  padding: 26px 30px;
}

.hud-indicator {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.hud-indicator .eyebrow {
  margin: 0;
  font-size: 10px;
}

.history-intro h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 30px;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.live-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--purple);
  box-shadow: 0 0 0 6px rgba(157, 78, 221, 0.2);
  animation: pulseDot 2s infinite;
}

.history-intro p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin: 12px 0 6px;
}

.history-intro p strong {
  color: var(--yellow);
  font-size: 16px;
}

.history-intro > span {
  font-size: 11px;
  color: var(--subtle);
}

.history-list {
  border-left: 1px solid var(--line);
  padding: 10px 25px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.history-row {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.2fr 20px;
  align-items: center;
  gap: 14px;
  padding: 11px 10px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  border-radius: 4px;
  transition: background 0.2s;
}

.history-row:last-child {
  border-bottom: 0;
}

.history-row:hover {
  background: rgba(255, 255, 255, 0.03);
}

.history-row .recipients {
  color: #c7cbd8;
  font-weight: 600;
  font-family: var(--font-mono);
}

.history-row time {
  color: var(--subtle);
  font-size: 11px;
  font-family: var(--font-mono);
}

.history-row strong {
  color: var(--yellow);
  font-size: 14px;
  font-weight: 700;
  text-align: right;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
}

.history-row .tx-arrow {
  text-align: right;
  color: var(--muted);
  font-size: 14px;
  transition: transform 0.2s, color 0.2s;
}

.history-row:hover .tx-arrow {
  color: var(--purple-light);
  transform: translate(2px, -2px);
}

.data-source {
  font-size: 11px;
  color: var(--subtle);
  margin: 16px 0 0;
}

/* ==========================================================================
   LORE & VISION SECTION
   ========================================================================== */
.lore-section {
  padding: 70px 4.5% 50px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 50px;
  align-items: start;
}

.lore-story .eyebrow {
  margin-bottom: 16px;
}

.lore-story h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 4.2vw, 56px);
  line-height: 0.98;
  letter-spacing: 0.005em;
  margin: 0 0 24px;
  color: #fff;
}

.lore-story h2 span {
  color: var(--purple);
  text-shadow: 0 0 25px var(--purple-glow);
}

.lore-story > p:not(.eyebrow) {
  font-size: 16px;
  line-height: 1.8;
  color: #b7b9c9;
  margin: 0;
}

.lore-story .lore-note {
  margin-top: 16px !important;
  color: var(--yellow) !important;
  font-size: 15px !important;
  font-style: italic;
}

.lore-visual {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.6);
}

.lore-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.8s var(--ease);
}

.lore-visual:hover img {
  transform: scale(1.04);
}

.visual-label {
  position: absolute;
  bottom: 18px;
  left: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  font-weight: 800;
  background: rgba(7, 8, 13, 0.9);
  backdrop-filter: blur(6px);
  padding: 8px 14px;
  color: var(--yellow);
  border: 1px solid var(--line);
  border-radius: 4px;
}

.reward-note {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.75fr 1.15fr 1.25fr;
  align-items: center;
  gap: 30px;
  border-top: 1px solid var(--line-strong);
  padding-top: 36px;
  margin-top: 10px;
}

.reward-note h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  line-height: 1.08;
  margin: 0;
  color: #fff;
}

.reward-note h3 span {
  color: var(--purple-light);
}

.reward-note p {
  font-size: 15px;
  color: #acb0c4;
  line-height: 1.75;
  margin: 0;
}

.text-link {
  font-size: 13px;
  font-weight: 700;
  color: #d8dbe9;
  border-bottom: 1px solid var(--purple);
  padding-bottom: 5px;
  display: inline-block;
  margin-top: 12px;
  transition: color 0.2s;
}

.text-link span {
  color: var(--purple);
  padding-left: 6px;
}

.text-link:hover {
  color: var(--purple-light);
}

/* ==========================================================================
   TOKENOMICS SECTION
   ========================================================================== */
.tokenomics-section {
  padding: 60px 4.5% 40px;
}

.section-heading {
  margin-bottom: 36px;
}

.section-heading h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 3.8vw, 48px);
  color: #fff;
}

.section-heading h2 span {
  color: var(--purple);
}

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

.t-card {
  background: var(--card-bg);
  border: 1px solid var(--line-strong);
  padding: 30px 25px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
}

.t-card:hover {
  transform: translateY(-5px);
  border-color: var(--purple);
  box-shadow: 0 15px 40px rgba(157, 78, 221, 0.2);
}

.t-card-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 34px;
  line-height: 1;
  color: #fff;
  margin-bottom: 10px;
}

.t-card-title {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--purple-light);
  margin-bottom: 12px;
}

.t-card-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.t-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.06);
  color: #d1d5e4;
  border: 1px solid var(--line);
}

.badge-accent {
  background: rgba(157, 78, 221, 0.2);
  color: var(--purple-light);
  border-color: rgba(157, 78, 221, 0.4);
}

/* ==========================================================================
   HOW TO BUY / JOIN THE GAZE
   ========================================================================== */
.how-to-buy-section {
  padding: 40px 4.5% 70px;
}

.htb-container {
  background: linear-gradient(135deg, #10141e 0%, #151026 100%);
  border: 1px solid var(--line-strong);
  border-radius: 12px;
  padding: clamp(24px, 4vw, 45px) clamp(20px, 4.5vw, 50px);
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(24px, 3.5vw, 40px);
  align-items: center;
}

.htb-copy h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1.05;
  color: #fff;
  margin: 10px 0 16px;
}

.htb-copy p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.htb-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.htb-step {
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid var(--line);
  padding: 22px 18px;
  border-radius: 6px;
  transition: transform 0.25s, border-color 0.25s;
}

.htb-step:hover {
  border-color: var(--purple);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--purple-light);
  display: block;
  margin-bottom: 8px;
}

.htb-step h4 {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.htb-step p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  margin: 0 4.5%;
  border-top: 1px solid var(--line-strong);
  padding: 40px 0 35px;
}

.footer-top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 30px;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}

.footer-token-img {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
}

.footer-mark {
  font-size: 30px;
}

.footer-tagline {
  color: var(--muted);
  font-size: 13px;
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.footer-links a:hover {
  color: var(--purple-light);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  font-size: 12px;
  color: var(--subtle);
  flex-wrap: wrap;
  gap: 15px;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translate(-50%, 20px);
  background: #fff;
  color: #07080d;
  padding: 14px 26px;
  font-size: 14px;
  font-weight: 700;
  border-radius: 6px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8), 0 0 20px rgba(157, 78, 221, 0.4);
  opacity: 0;
  pointer-events: none;
  z-index: 1000;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
  max-width: 90%;
  text-align: center;
  border: 1px solid var(--purple);
}

.toast.visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

/* ==========================================================================
   SCROLL ANIMATIONS & PROGRESS
   ========================================================================== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--cyan) 0%, var(--purple-light) 50%, var(--yellow) 100%);
  box-shadow: 0 0 12px var(--purple-glow), 0 0 6px var(--cyan);
  z-index: 1000;
  transition: width 0.1s ease-out;
}

.header.scrolled {
  background: rgba(7, 8, 13, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(157, 78, 221, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.nav-link.active {
  color: #fff;
}

.nav-link.active:after {
  transform: scaleX(1);
}

/* Scroll reveal animations */
.js .reveal,
.js .reveal-up {
  opacity: 0;
  transform: translateY(36px);
  filter: blur(4px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
}

.js .reveal-left {
  opacity: 0;
  transform: translateX(-45px);
  filter: blur(4px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
}

.js .reveal-right {
  opacity: 0;
  transform: translateX(45px);
  filter: blur(4px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
}

.js .reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  filter: blur(4px);
  transition: opacity 0.85s var(--ease), transform 0.85s var(--ease), filter 0.85s var(--ease);
  will-change: opacity, transform, filter;
}

/* Stagger Delays */
.js .stagger-1 { transition-delay: 0.1s; }
.js .stagger-2 { transition-delay: 0.2s; }
.js .stagger-3 { transition-delay: 0.3s; }
.js .stagger-4 { transition-delay: 0.4s; }

/* In-View Active State */
.js .reveal.in-view,
.js .reveal-up.in-view,
.js .reveal-left.in-view,
.js .reveal-right.in-view,
.js .reveal-scale.in-view {
  opacity: 1;
  transform: none;
  filter: none;
}

.parallax-banner-wrap {
  perspective: 1000px;
}

.parallax-banner {
  transition: transform 0.7s var(--ease);
}

/* Value flash animation */
.market-value-update {
  animation: valueFlash 0.8s ease;
}

@keyframes valueFlash {
  0% { color: var(--purple-light); }
  100% { color: inherit; }
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (ALL SCREEN SIZES)
   ========================================================================== */

/* 1. Large Laptops & Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
  .hero-art {
    width: 55%;
    right: -4%;
  }
  .eye-interactive-wrapper {
    width: 460px;
    height: 460px;
  }
  .reward-strip {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
  }
  .strip-stat-extra {
    display: none;
  }
  .meme-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .market-grid {
    grid-template-columns: 1fr;
  }
  .payout-panel {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }
  .payout-history {
    grid-template-columns: 1fr;
  }
  .history-list {
    border-left: 0;
    border-top: 1px solid var(--line);
  }
  .tokenomics-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .htb-container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* 2. Tablets & Medium Screens (max-width: 992px) */
@media (max-width: 992px) {
  .header {
    height: 80px;
    margin: 0 4%;
  }
  nav {
    gap: 18px;
  }
  .nav-link {
    font-size: 12px;
  }
  .hero {
    min-height: auto;
    padding-bottom: 50px;
  }
  .hero-art {
    width: 50%;
    right: -5%;
    height: 580px;
  }
  .eye-interactive-wrapper {
    width: 380px;
    height: 380px;
  }
  .hero-copy {
    width: 65%;
  }
  h1 {
    font-size: clamp(100px, 14vw, 160px);
  }
  .hero-statement {
    font-size: clamp(28px, 4vw, 42px);
  }
  .meme-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .stare-clicker-box {
    padding: 30px 28px;
    gap: 24px;
  }
  .lore-section {
    grid-template-columns: 1fr;
    padding: 50px 4.5%;
    gap: 30px;
  }
  .reward-note {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .htb-steps {
    grid-template-columns: 1fr;
  }
}

/* 3. Small Tablets & Large Phones (max-width: 768px) */
@media (max-width: 768px) {
  /* Disable background noise & floating emojis on mobile */
  .floating-eyes-bg {
    display: none !important;
  }
  .ambient-glow {
    opacity: 0.2;
  }

  .header {
    height: 68px;
    margin: 0 4%;
  }
  .wordmark {
    font-size: 24px;
    gap: 8px;
  }
  .wordmark-icon {
    width: 28px;
    height: 28px;
  }
  nav {
    gap: 12px;
  }
  .nav-link {
    font-size: 11px;
  }
  .x-nav,
  .nav-link[data-nav="lore"],
  .nav-link[data-nav="tokenomics"],
  .nav-link[data-nav="sentinel"] {
    display: none;
  }
  .button-small {
    padding: 6px 12px;
    font-size: 11px;
  }

  /* Sleek, calm marquee on mobile */
  .meme-marquee-wrap {
    padding: 8px 0;
    background: #090612;
    border-top: 1px solid rgba(157, 78, 221, 0.2);
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
  }
  .meme-marquee span {
    font-size: 11px;
    gap: 10px;
  }
  
  /* Clean, decluttered Hero on mobile */
  .hero {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    padding: 16px 4% 36px;
    min-height: auto;
    position: relative;
    overflow: hidden;
  }
  .hero-art {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    height: auto;
    max-width: 260px;
    margin: 6px auto 16px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .eye-interactive-wrapper {
    width: min(58vw, 210px);
    height: min(58vw, 210px);
  }
  .token-glow-halo {
    inset: -8px;
    box-shadow: 0 0 25px rgba(157, 78, 221, 0.35);
  }
  .hero-copy {
    width: 100%;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero .eyebrow {
    justify-content: center;
    font-size: 10px;
    letter-spacing: 0.12em;
    margin-bottom: 6px;
  }
  h1 {
    font-size: clamp(64px, 17vw, 92px);
    margin: 0 0 4px;
    line-height: 0.88;
  }
  .hero-statement {
    font-size: clamp(20px, 5.2vw, 26px);
    line-height: 1.05;
    margin-bottom: 12px;
  }
  .hero-description {
    padding-top: 0;
    max-width: 320px;
    margin: 0 auto 20px;
    font-size: 14px;
    line-height: 1.5;
    color: #a0a6be;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    gap: 10px;
    margin: 0 auto;
  }
  .hero-actions .button-primary {
    width: 100%;
    justify-content: center;
    padding: 13px 20px;
    font-size: 13px;
  }
  .hero-actions .button-quiet {
    display: none;
  }
  .contract {
    justify-content: center;
    margin-top: 18px;
    width: 100%;
    max-width: 320px;
    gap: 8px;
  }
  .contract-label {
    font-size: 10px;
    padding: 3px 6px;
  }
  .copy-address {
    padding: 7px 12px;
    font-size: 12px;
  }
  .contract-explorer {
    font-size: 10px;
    padding-left: 8px;
  }
  .hero-caption {
    display: none;
  }
  
  /* Sentinel Strip (Streamlined pill) */
  .reward-strip {
    grid-template-columns: 1fr 1fr;
    padding: 16px 4%;
    gap: 12px;
    margin: 0 3%;
    border-radius: 12px;
    min-height: auto;
  }
  .strip-lead {
    grid-column: 1 / -1;
    font-size: 16px;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }
  .strip-star {
    font-size: 22px;
  }
  .strip-stat {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 8px 0 0;
    text-align: center;
  }
  .strip-stat strong {
    font-size: 18px;
  }
  .strip-link {
    display: none;
  }
  
  /* Meme Vault (Interactive Swipeable Horizontal Carousel) */
  .meme-vault-section {
    padding: 40px 4% 30px;
  }
  .meme-vault-section .section-heading {
    text-align: center;
  }
  .meme-vault-section .section-heading h2 {
    font-size: 26px;
  }
  .meme-vault-section .section-sub {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .meme-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    padding: 8px 4% 18px;
    margin: 10px -4% 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .meme-grid::-webkit-scrollbar {
    display: none;
  }
  .meme-card {
    flex: 0 0 78%;
    max-width: 290px;
    scroll-snap-align: center;
    border-radius: 14px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4);
  }
  .meme-body {
    padding: 18px;
  }
  .meme-body h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .meme-body p {
    font-size: 13px;
    line-height: 1.45;
    margin-bottom: 12px;
  }
  .meme-meta {
    padding-top: 10px;
    font-size: 10px;
  }

  /* Stare Clicker (Compact & Centered) */
  .stare-clicker-box {
    flex-direction: column;
    text-align: center;
    padding: 22px 18px;
    gap: 16px;
    border-radius: 16px;
  }
  .stare-info h3 {
    font-size: 22px;
    margin-bottom: 4px;
  }
  .stare-info p {
    font-size: 12px;
    margin-bottom: 10px;
  }
  .stare-rank {
    font-size: 11px;
    padding: 4px 10px;
  }
  .stare-action-zone {
    flex-direction: column;
    gap: 12px;
  }
  .stare-btn-inner {
    width: 76px;
    height: 76px;
  }
  .stare-token-img {
    width: 58px;
    height: 58px;
  }
  .stare-counter {
    font-size: 30px;
  }
  
  /* The Oracle Section (Decluttered & Clean) */
  .oracle-section,
  .market-section {
    padding: 36px 4% 20px;
  }
  .oracle-heading,
  .market-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .oracle-heading h2 {
    font-size: 26px;
  }
  .oracle-sync {
    font-size: 11px;
    padding: 6px 12px;
  }
  
  /* Streamline Oracle status chips on mobile */
  .oracle-status-bar {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 20px;
  }
  .oracle-chip {
    padding: 10px 12px;
  }
  .oracle-chip:nth-child(n+3) {
    display: none; /* Hide duplicate extra chips on mobile for cleanliness */
  }
  .chip-label {
    font-size: 9px;
  }
  .chip-value {
    font-size: 13px;
  }

  /* Market stats under chart */
  .market-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .market-stats > div {
    padding: 10px 12px;
  }
  .market-stats .stat-label {
    font-size: 9px;
  }
  .market-stats strong {
    font-size: 16px;
  }
  .market-provenance {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    font-size: 11px;
    padding: 12px 0 0;
  }

  /* Telemetry aside panel on mobile */
  .payout-panel {
    padding: 22px 18px;
    border-radius: 12px;
  }
  .payout-heading {
    margin-bottom: 12px;
  }
  .countdown {
    font-size: 32px;
  }
  .payout-facts {
    margin: 16px 0;
    gap: 10px;
  }
  .payout-facts > div {
    padding: 8px 0;
  }
  .payout-facts dt,
  .payout-facts dd {
    font-size: 12px;
  }
  .fee-box {
    margin: 14px 0 10px;
  }
  .module-note {
    font-size: 12px;
    margin-top: 12px;
  }
  
  /* Swap Telemetry Logs */
  .payout-history {
    padding: 20px 16px;
    border-radius: 12px;
  }
  .history-intro h3 {
    font-size: 18px;
  }
  .history-intro p {
    font-size: 13px;
  }
  .history-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding: 10px 12px;
    font-size: 12px;
  }

  /* Lore Section */
  .lore-section {
    padding: 36px 4%;
    gap: 24px;
  }
  .lore-story h2 {
    font-size: 26px;
  }
  .lore-story p {
    font-size: 14px;
    line-height: 1.6;
  }
  .reward-note {
    padding: 18px;
    gap: 14px;
    border-radius: 12px;
  }
  .reward-note-col h3 {
    font-size: 18px;
  }
  .reward-note-col p {
    font-size: 13px;
  }
  
  /* Tokenomics Grid (Clean 2x2 on mobile) */
  .tokenomics-section {
    padding: 36px 4%;
  }
  .tokenomics-section .section-heading h2 {
    font-size: 26px;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .t-card {
    padding: 18px 14px;
    border-radius: 12px;
  }
  .t-card-num {
    font-size: clamp(20px, 5.5vw, 28px);
    margin-bottom: 4px;
  }
  .t-card-title {
    font-size: 11px;
    margin-bottom: 6px;
  }
  .t-card-desc {
    font-size: 11px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .t-badge {
    font-size: 9px;
    padding: 3px 6px;
  }

  /* How to buy */
  .how-to-buy-section {
    padding: 24px 4% 40px;
  }
  .htb-container {
    padding: 24px 18px;
    gap: 20px;
  }
  .htb-copy h2 {
    font-size: 24px;
    margin: 6px 0 10px;
  }
  .htb-copy p {
    font-size: 13px;
  }
  .htb-step {
    padding: 16px 14px;
  }
  
  /* Footer */
  footer {
    padding: 36px 4% 30px;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-brand p {
    font-size: 13px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 12px;
  }
  .footer-links a {
    font-size: 12px;
  }
  .footer-bottom {
    margin-top: 24px;
    padding-top: 18px;
    font-size: 11px;
  }
}

/* 4. Extra Small Phones (max-width: 400px) */
@media (max-width: 400px) {
  .wordmark {
    font-size: 20px;
  }
  h1 {
    font-size: 56px;
  }
  .hero-statement {
    font-size: 18px;
  }
  .tokenomics-grid {
    grid-template-columns: 1fr;
  }
  .oracle-status-bar {
    grid-template-columns: 1fr;
  }
  .stare-counter {
    font-size: 26px;
  }
  .stare-btn-inner {
    width: 68px;
    height: 68px;
  }
  .stare-token-img {
    width: 50px;
    height: 50px;
  }
}



