/* ==========================================================================
   DOTFRUIT V2 — OFFICIAL PRODUCTION DESIGN SYSTEM
   "From Solitary Seed to Luminous Living Orchard"
   ========================================================================== */

:root {
  /* Core Dark Palette */
  --bg-deep: #040705;
  --bg-dark: #090e0a;
  --bg-card: rgba(13, 20, 15, 0.72);
  --bg-card-hover: rgba(20, 32, 24, 0.88);
  --bg-glass: rgba(10, 16, 12, 0.68);
  
  /* Luminous Neon Greens (Genesis / Early Scroll) */
  --neon-green: #00ff66;
  --neon-lime: #39ff14;
  --neon-emerald: #10b981;
  --neon-glow: rgba(0, 255, 102, 0.45);
  --neon-glow-soft: rgba(0, 255, 102, 0.15);
  
  /* Watermelon Accents */
  --watermelon-pink: #ff3366;
  --watermelon-red: #ff2a5f;
  --watermelon-glow: rgba(255, 51, 102, 0.45);
  
  /* Community / Orchard Multicolor */
  --fruit-orange: #ff9900;
  --fruit-yellow: #ffd000;
  --fruit-purple: #a855f7;
  --fruit-cyan: #06b6d4;
  --fruit-blue: #3b82f6;

  /* Typography Colors */
  --text-primary: #f0fdf4;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-green: #4ade80;
  --text-pink: #fb7185;

  /* Borders & Dividers */
  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-green: rgba(0, 255, 102, 0.3);
  --border-pink: rgba(255, 51, 102, 0.3);

  /* Geometry & Transitions */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);

  /* Layout */
  --max-width: 1240px;
  --header-height: 76px;
  --ticker-height: 38px;
  
  /* Dynamic Cursor Spotlight Variables */
  --cursor-x: 50%;
  --cursor-y: 50%;
}

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

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  background-color: var(--bg-deep);
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-deep);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  position: relative;
  width: 100%;
}

/* Accessible Focus States */
:focus-visible {
  outline: 2px solid var(--neon-green);
  outline-offset: 3px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-deep);
}
::-webkit-scrollbar-thumb {
  background: #193322;
  border-radius: 4px;
  border: 1px solid rgba(0, 255, 102, 0.3);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--neon-green);
  box-shadow: 0 0 10px var(--neon-green);
}

::selection {
  background: var(--neon-green);
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', 'Plus Jakarta Sans', sans-serif;
  color: var(--text-primary);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

p {
  color: var(--text-secondary);
}

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

.mono {
  font-family: 'JetBrains Mono', monospace;
}

/* ==========================================================================
   TOP STREAMING TICKER MARQUEE
   ========================================================================== */
.top-ticker-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--ticker-height);
  background: linear-gradient(90deg, #050a06 0%, #0d1a10 50%, #050a06 100%);
  border-bottom: 1px solid rgba(0, 255, 102, 0.2);
  z-index: 150;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-size: 0.78rem;
  font-weight: 700;
  color: #a7f3d0;
  letter-spacing: 0.04em;
}

.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker-slide 28s linear infinite;
  gap: 36px;
}

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

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.ticker-item .dot {
  width: 6px;
  height: 6px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--neon-green);
}

.ticker-item .pink-dot {
  width: 6px;
  height: 6px;
  background: var(--watermelon-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--watermelon-pink);
}

.ticker-highlight {
  color: #fff;
  font-weight: 800;
}

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

/* ==========================================================================
   AMBIENT ATMOSPHERIC CANVAS & SHINE GLOWS
   ========================================================================== */
.ambient-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.ambient-glow-1 {
  position: absolute;
  top: -15%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 255, 102, 0.16) 0%, rgba(0, 255, 102, 0.03) 50%, transparent 75%);
  filter: blur(90px);
  transition: all 1.2s ease;
}

.ambient-glow-2 {
  position: absolute;
  top: 45%;
  right: -10%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(255, 51, 102, 0.1) 0%, transparent 65%);
  filter: blur(110px);
}

.ambient-glow-3 {
  position: absolute;
  bottom: -10%;
  left: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 153, 0, 0.1) 0%, rgba(168, 85, 247, 0.08) 50%, transparent 75%);
  filter: blur(130px);
}

.cursor-spotlight {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
  background: radial-gradient(600px circle at var(--cursor-x) var(--cursor-y), rgba(0, 255, 102, 0.05) 0%, transparent 80%);
  transition: background 0.1s ease;
}

.grid-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 255, 102, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 255, 102, 0.03) 1px, transparent 1px);
  background-size: 50px 50px;
  pointer-events: none;
  z-index: 1;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.site-header {
  position: fixed;
  top: var(--ticker-height);
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 140;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(4, 7, 5, 0.84);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--transition-smooth);
}

.site-header.scrolled {
  background: rgba(4, 7, 5, 0.96);
  border-bottom: 1px solid rgba(0, 255, 102, 0.25);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.6);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  transition: var(--transition-fast);
}

.brand-logo:hover {
  transform: translateY(-1px) scale(1.02);
}

.logo-seed-icon {
  width: 34px;
  height: 34px;
  background: linear-gradient(135deg, var(--neon-green), var(--neon-emerald));
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 20px var(--neon-glow);
  position: relative;
  transition: box-shadow 0.3s ease;
  flex-shrink: 0;
}

.brand-logo:hover .logo-seed-icon {
  box-shadow: 0 0 30px var(--neon-lime);
}

.logo-seed-icon::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #040705;
  border-radius: 50%;
  transform: rotate(45deg);
}

.brand-text {
  background: linear-gradient(90deg, #fff 0%, var(--neon-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: var(--transition-fast);
  position: relative;
  padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--neon-green);
  text-shadow: 0 0 12px rgba(0, 255, 102, 0.6);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--neon-green);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px var(--neon-green);
}

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

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

/* Audio FX Toggle Button */
.audio-toggle-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.audio-toggle-btn:hover {
  background: rgba(0, 255, 102, 0.1);
  border-color: var(--neon-green);
  color: var(--neon-green);
}

.audio-toggle-btn.active {
  color: var(--neon-green);
  border-color: var(--neon-green);
  box-shadow: 0 0 12px rgba(0, 255, 102, 0.3);
}

.nav-toggle-btn {
  display: none;
  background: transparent;
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

/* ==========================================================================
   BUTTONS, SHINE & FOIL EFFECTS
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: var(--transition-fast);
  border: none;
  outline: none;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

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

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

.btn-primary {
  background: linear-gradient(135deg, var(--neon-green) 0%, var(--neon-emerald) 100%);
  color: #031206;
  box-shadow: 0 0 25px rgba(0, 255, 102, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(0, 255, 102, 0.7);
  background: linear-gradient(135deg, #33ff85 0%, #00e65c 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: var(--neon-green);
  color: var(--neon-green);
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

.btn-pink {
  background: linear-gradient(135deg, var(--watermelon-pink) 0%, var(--watermelon-red) 100%);
  color: #fff;
  box-shadow: 0 0 25px rgba(255, 51, 102, 0.4);
}

.btn-pink:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 35px rgba(255, 51, 102, 0.7);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.badge-green {
  background: rgba(0, 255, 102, 0.1);
  border: 1px solid rgba(0, 255, 102, 0.35);
  color: var(--neon-green);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--neon-green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-green);
  animation: pulse-dot 2s infinite;
  display: inline-block;
  flex-shrink: 0;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.4; }
}

/* ==========================================================================
   3D PARALLAX TILT CARDS & SPOTLIGHT
   ========================================================================== */
.tilt-card {
  transition: transform 0.2s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.glass-spotlight {
  position: relative;
}

.glass-spotlight::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(350px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255, 255, 255, 0.08), transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.glass-spotlight:hover::after {
  opacity: 1;
}

/* ==========================================================================
   SECTION COMMON STYLING
   ========================================================================== */
section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px auto;
}

.section-subtitle {
  font-size: 0.85rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--neon-green);
  margin-bottom: 12px;
  display: inline-block;
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.section-title {
  font-size: clamp(2.3rem, 4.5vw, 3.4rem);
  margin-bottom: 18px;
  color: #fff;
}

.section-title .highlight {
  background: linear-gradient(135deg, var(--neon-green) 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(0, 255, 102, 0.3));
}

.section-title .highlight-pink {
  background: linear-gradient(135deg, var(--watermelon-pink) 0%, #fda4af 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 51, 102, 0.3));
}

.section-desc {
  font-size: 1.1rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Luminous Vine Dividers with Animated Light Pulses */
.vine-divider {
  position: relative;
  width: 100%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -30px 0;
  z-index: 3;
  pointer-events: none;
}

.vine-divider svg {
  width: 100%;
  max-width: 650px;
  height: 100%;
  fill: none;
}

.vine-pulse-dot {
  animation: vine-pulse 3.5s ease-in-out infinite;
}

@keyframes vine-pulse {
  0%, 100% { transform: scale(1); filter: drop-shadow(0 0 4px var(--neon-green)); }
  50% { transform: scale(1.6); filter: drop-shadow(0 0 12px var(--neon-lime)); }
}

/* ==========================================================================
   1. HERO SECTION — STARTING FROM ZERO
   ========================================================================== */
.hero-section {
  padding-top: calc(var(--header-height) + var(--ticker-height) + 50px);
  padding-bottom: 100px;
  min-height: 95vh;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 50px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.hero-badge-wrap {
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.2rem, 6.5vw, 5.2rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.04em;
  margin-bottom: 16px;
}

.hero-title .foil-text {
  background: linear-gradient(120deg, #ffffff 0%, var(--neon-green) 25%, #ffffff 50%, var(--neon-lime) 75%, #ffffff 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine-sweep 4s linear infinite;
  text-shadow: 0 0 35px rgba(0, 255, 102, 0.4);
}

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

.hero-subhead {
  font-size: clamp(1.4rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--neon-green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.35);
}

.hero-question {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 32px;
  max-width: 520px;
}

/* Contract Address Box */
.ca-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(9, 15, 11, 0.85);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 540px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 15px rgba(0, 255, 102, 0.1);
  transition: var(--transition-fast);
}

.ca-box:hover {
  border-color: var(--neon-green);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(0, 255, 102, 0.25);
}

.ca-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--neon-green);
  background: rgba(0, 255, 102, 0.15);
  padding: 4px 8px;
  border-radius: 4px;
  flex-shrink: 0;
}

.ca-address {
  font-size: 0.82rem;
  color: #e2e8f0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ca-copy-btn {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.ca-copy-btn:hover {
  background: var(--neon-green);
  color: #000;
  border-color: var(--neon-green);
  box-shadow: 0 0 15px var(--neon-green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-socials {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  background: rgba(255, 255, 255, 0.03);
  transition: var(--transition-fast);
}

.social-link:hover {
  color: #fff;
  border-color: var(--neon-green);
  background: rgba(0, 255, 102, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 0 15px rgba(0, 255, 102, 0.2);
}

/* Hero Visual Frame */
.hero-visual-frame {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-main-img {
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 255, 102, 0.35);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.8), 0 0 50px rgba(0, 255, 102, 0.25);
  position: relative;
  z-index: 2;
}

.hero-glow-ring {
  position: absolute;
  width: 108%;
  height: 108%;
  border-radius: 32px;
  background: linear-gradient(135deg, rgba(0, 255, 102, 0.35), rgba(255, 51, 102, 0.25));
  filter: blur(28px);
  z-index: 1;
  animation: pulse-ring 6s ease-in-out infinite alternate;
}

@keyframes pulse-ring {
  0% { transform: scale(0.98); opacity: 0.7; }
  100% { transform: scale(1.03); opacity: 1; }
}

.floating-badge {
  position: absolute;
  background: rgba(8, 14, 10, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border-green);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 102, 0.2);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 3;
  animation: float 4s ease-in-out infinite alternate;
}

.floating-badge.badge-1 {
  top: 8%;
  left: -24px;
  animation-delay: 0s;
}

.floating-badge.badge-2 {
  bottom: 6%;
  right: -24px;
  animation-delay: 2s;
  border-color: var(--border-pink);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 51, 102, 0.2);
}

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

/* ==========================================================================
   2. THE ZERO EXPERIMENT SECTION
   ========================================================================== */
.experiment-section {
  background: radial-gradient(circle at 50% 30%, rgba(0, 255, 102, 0.06) 0%, transparent 70%);
}

.experiment-card-main {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 30px rgba(0, 255, 102, 0.1);
  backdrop-filter: blur(20px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.experiment-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.7);
}

.experiment-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.experiment-quote {
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  border-left: 4px solid var(--neon-green);
  padding-left: 18px;
  text-shadow: 0 0 20px rgba(0, 255, 102, 0.2);
}

.experiment-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 10px;
}

.pillar-item {
  background: rgba(0, 0, 0, 0.45);
  border: 1px solid var(--border-subtle);
  padding: 18px;
  border-radius: var(--radius-md);
  transition: var(--transition-fast);
}

.pillar-item:hover {
  border-color: rgba(0, 255, 102, 0.4);
  transform: translateY(-2px);
  background: rgba(0, 255, 102, 0.04);
}

.pillar-item h4 {
  font-size: 1rem;
  color: var(--neon-green);
  margin-bottom: 6px;
}

.pillar-item p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   3. THE GROWTH EXPERIENCE (SIGNATURE SECTION + INTERACTION)
   ========================================================================== */
.growth-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 102, 0.04) 50%, transparent 100%);
  padding: 140px 0;
}

.growth-tracker-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 40px;
}

.stage-tab-btn {
  background: rgba(14, 22, 17, 0.65);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  text-align: left;
  cursor: pointer;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.stage-tab-btn:hover {
  background: rgba(22, 35, 27, 0.85);
  border-color: rgba(0, 255, 102, 0.35);
  transform: translateY(-2px);
}

.stage-tab-btn.active {
  background: rgba(22, 35, 27, 0.95);
  border-color: var(--neon-green);
  box-shadow: 0 0 30px rgba(0, 255, 102, 0.25);
}

.stage-tab-btn.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--neon-green);
  box-shadow: 0 0 12px var(--neon-green);
}

.stage-tab-step {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--neon-green);
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}

.stage-tab-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.stage-showcase-card {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 40px;
  align-items: center;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 40px rgba(0, 255, 102, 0.15);
  min-height: 490px;
  position: relative;
  overflow: hidden;
}

.stage-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stage-phase-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--neon-green);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-shadow: 0 0 10px rgba(0, 255, 102, 0.4);
}

.stage-headline {
  font-size: 2.3rem;
  color: #fff;
  line-height: 1.2;
}

.stage-desc-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.stage-key-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.stage-key-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.stage-key-points li svg {
  color: var(--neon-green);
  flex-shrink: 0;
  filter: drop-shadow(0 0 6px var(--neon-green));
}

.growth-action-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  flex-wrap: wrap;
}

.growth-action-btn {
  background: rgba(0, 255, 102, 0.08);
  border: 1px solid var(--border-green);
  color: var(--text-primary);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition-fast);
}

.growth-action-btn:hover {
  background: var(--neon-green);
  color: #000;
  box-shadow: 0 0 20px var(--neon-green);
  transform: scale(1.05);
}

.growth-action-btn.sun-btn {
  background: rgba(255, 208, 0, 0.1);
  border-color: rgba(255, 208, 0, 0.4);
}

.growth-action-btn.sun-btn:hover {
  background: #ffd000;
  color: #000;
  box-shadow: 0 0 20px #ffd000;
}

.growth-meter-counter {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--neon-green);
}

.stage-media-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.stage-main-img {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(0, 255, 102, 0.3);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7);
  transition: opacity 0.3s ease, transform 0.4s ease;
}

.splash-particle {
  position: absolute;
  pointer-events: none;
  font-size: 1.5rem;
  animation: splash-float 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  z-index: 10;
}

@keyframes splash-float {
  0% { transform: translate(0, 0) scale(0.5); opacity: 1; }
  100% { transform: translate(var(--tx, 0px), var(--ty, -80px)) scale(1.4); opacity: 0; }
}

/* ==========================================================================
   4. CONNECT THE FRUITS / COMMUNITY
   ========================================================================== */
.community-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 51, 102, 0.08) 0%, rgba(168, 85, 247, 0.05) 50%, transparent 80%);
}

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

.community-art-wrap {
  position: relative;
}

.community-img {
  width: 100%;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-pink);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(255, 51, 102, 0.25);
}

.community-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.community-quote {
  font-size: 1.55rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.community-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.community-hub-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 20px;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.community-hub-card:hover {
  border-color: var(--watermelon-pink);
  transform: translateY(-3px);
  background: var(--bg-card-hover);
  box-shadow: 0 10px 30px rgba(255, 51, 102, 0.2);
}

.hub-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  background: rgba(255, 255, 255, 0.05);
}

.hub-card-icon.tg {
  background: rgba(36, 161, 222, 0.15);
  color: #24a1de;
}

.hub-card-icon.x {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.community-hub-card h4 {
  font-size: 1.05rem;
  color: #fff;
}

.community-hub-card p {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   5. LIVE $DOTFRUIT HUD / TOKEN STATS
   ========================================================================== */
.token-section {
  background: linear-gradient(180deg, transparent 0%, rgba(0, 255, 102, 0.04) 50%, transparent 100%);
}

.stats-hud-container {
  background: var(--bg-card);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(0, 255, 102, 0.15);
  backdrop-filter: blur(20px);
}

.hud-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-subtle);
  margin-bottom: 28px;
  flex-wrap: wrap;
  gap: 16px;
}

.hud-token-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-token-title h3 {
  font-size: 1.55rem;
}

.hud-refresh-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--neon-green);
  font-weight: 700;
}

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

.stat-box {
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: var(--transition-fast);
}

.stat-box:hover {
  border-color: rgba(0, 255, 102, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 255, 102, 0.15);
}

.stat-box-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.06em;
}

.stat-box-value {
  font-size: 1.7rem;
  font-weight: 800;
  color: #fff;
  font-family: 'Space Grotesk', monospace;
  text-shadow: 0 0 15px rgba(255, 255, 255, 0.2);
}

.stat-box-change {
  font-size: 0.8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}

.stat-box-change.up { color: var(--neon-green); }
.stat-box-change.down { color: var(--watermelon-pink); }

.hud-actions-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.45);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-subtle);
  flex-wrap: wrap;
  gap: 16px;
}

.hud-ca-inline {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hud-action-links {
  display: flex;
  gap: 12px;
}

/* ==========================================================================
   6. BUILT IN PUBLIC (HISTORICAL MILESTONE RAIL)
   ========================================================================== */
.milestones-section {
  background: radial-gradient(circle at 50% 50%, rgba(255, 153, 0, 0.06) 0%, transparent 70%);
}

.milestones-rail {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.milestone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.milestone-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 153, 0, 0.5);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 153, 0, 0.2);
}

.milestone-img-wrap {
  width: 100%;
  height: 220px;
  overflow: hidden;
  position: relative;
  background: #000;
}

.milestone-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.milestone-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--neon-green);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.milestone-content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.milestone-date {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
}

.milestone-title {
  font-size: 1.2rem;
  color: #fff;
}

.milestone-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ==========================================================================
   7. THE ORCHARD — FINAL CTA
   ========================================================================== */
.orchard-section {
  padding: 140px 0 80px 0;
  background: radial-gradient(circle at 50% 40%, rgba(0, 255, 102, 0.12) 0%, rgba(255, 51, 102, 0.1) 40%, rgba(255, 153, 0, 0.08) 70%, transparent 100%);
  text-align: center;
}

.orchard-box {
  background: linear-gradient(135deg, rgba(16, 25, 20, 0.85) 0%, rgba(28, 16, 22, 0.85) 100%);
  border: 1px solid rgba(0, 255, 102, 0.35);
  border-radius: 36px;
  padding: 64px 40px;
  box-shadow: 0 35px 90px rgba(0, 0, 0, 0.8), 0 0 60px rgba(0, 255, 102, 0.2);
  position: relative;
  overflow: hidden;
  max-width: 1040px;
  margin: 0 auto;
}

.orchard-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--neon-green), var(--watermelon-pink), var(--fruit-orange), var(--fruit-cyan), var(--neon-green));
  background-size: 200% auto;
  animation: shine-sweep 6s linear infinite;
}

.orchard-headline {
  font-size: clamp(2.6rem, 5.5vw, 4.2rem);
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.orchard-sub {
  font-size: 1.3rem;
  color: var(--text-secondary);
  max-width: 620px;
  margin: 0 auto 36px auto;
  line-height: 1.6;
}

.orchard-cta-group {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.orchard-artwork-banner {
  width: 100%;
  max-width: 700px;
  height: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.15);
  margin: 0 auto 24px auto;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  padding: 60px 0 30px 0;
  background: #020403;
  position: relative;
  z-index: 2;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-brand p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.footer-nav-col h5 {
  font-size: 0.95rem;
  color: #fff;
  margin-bottom: 14px;
}

.footer-nav-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav-col a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: var(--transition-fast);
}

.footer-nav-col a:hover {
  color: var(--neon-green);
  text-shadow: 0 0 8px rgba(0, 255, 102, 0.4);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  flex-wrap: wrap;
  gap: 12px;
}

/* ==========================================================================
   TOAST NOTIFICATION & MODALS
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: rgba(10, 20, 14, 0.95);
  border: 1px solid var(--neon-green);
  color: #fff;
  padding: 12px 22px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 10px 35px rgba(0, 255, 102, 0.4);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.toast-notice.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 20px;
}

.modal-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  max-width: 900px;
  width: 100%;
  background: var(--bg-dark);
  border: 1px solid var(--border-green);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.9), 0 0 40px rgba(0, 255, 102, 0.2);
}

.modal-card.chart-modal-card {
  max-width: 1100px;
  height: 82vh;
  display: flex;
  flex-direction: column;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.7);
  border: 1px solid var(--border-subtle);
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-fast);
}

.modal-close-btn:hover {
  background: var(--watermelon-pink);
  border-color: var(--watermelon-pink);
  transform: scale(1.1);
}

.modal-img {
  width: 100%;
  max-height: 70vh;
  object-fit: contain;
  background: #000;
  display: block;
}

.modal-caption {
  padding: 20px 24px;
  background: var(--bg-card);
}

.modal-caption h4 {
  font-size: 1.25rem;
  margin-bottom: 6px;
}

.modal-caption p {
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.chart-iframe-wrap {
  width: 100%;
  flex: 1;
  background: #000;
  position: relative;
}

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

/* ==========================================================================
   REDUCED MOTION SUPPORT
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  .ticker-track {
    animation: none !important;
  }
  
  .floating-badge, .hero-glow-ring, .vine-pulse-dot {
    animation: none !important;
  }
}

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS
   ========================================================================== */
@media (max-width: 1080px) {
  .nav-links {
    display: none;
  }

  .nav-toggle-btn {
    display: block;
  }

  .nav-links.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: var(--header-height);
    left: 0;
    width: 100%;
    background: rgba(5, 10, 7, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-green);
    padding: 24px 30px;
    gap: 18px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85);
    z-index: 100;
  }

  .nav-links.mobile-open a {
    font-size: 1.05rem;
    padding: 6px 0;
  }
}

@media (max-width: 992px) {
  .hero-grid,
  .experiment-card-main,
  .stage-showcase-card,
  .community-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-visual-frame {
    order: -1;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .growth-tracker-nav {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding-top: calc(var(--header-height) + var(--ticker-height) + 20px);
    text-align: center;
  }

  .hero-content {
    align-items: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .ca-box {
    max-width: 100%;
  }

  .ca-address {
    font-size: 0.8rem;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .growth-tracker-nav {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .experiment-pillars,
  .community-cards-grid {
    grid-template-columns: 1fr;
  }

  .floating-badge {
    display: none;
  }

  .hud-actions-row {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hud-action-links {
    flex-direction: column;
    width: 100%;
  }

  .hud-action-links .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 640px) {
  /* Simplified Mobile Header: Logo | Audio | Menu */
  .site-header .copy-ca-action,
  .site-header .nav-actions .btn-primary {
    display: none !important;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .growth-tracker-nav {
    grid-template-columns: 1fr;
  }

  .ca-box {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    padding: 12px 14px;
  }

  .ca-address {
    font-size: clamp(0.72rem, 3.2vw, 0.82rem);
    white-space: normal;
    word-break: break-all;
  }

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

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

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

  .hero-socials {
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
  }

  .stage-showcase-card {
    padding: 24px 18px;
  }

  .stage-headline {
    font-size: 1.8rem;
  }

  .growth-action-bar {
    justify-content: center;
  }

  .orchard-box {
    padding: 36px 18px;
  }

  .orchard-cta-group {
    flex-direction: column;
    width: 100%;
  }

  .orchard-cta-group .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-top {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 380px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .stage-headline {
    font-size: 1.5rem;
  }

  .btn-lg {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
}

