/* ============================================================
   VERDIS DESIGN SYSTEM v1.0
   The world's first fully green, carbon-negative blockchain
   ============================================================ */

:root {
  --bg-primary: #0a0e0a;
  --bg-secondary: #111811;
  --bg-card: #18181a;
  --bg-card-hover: #1e1e22;
  --bg-input: #0d0d0d;
  --accent: #00ff88;
  --accent-dim: #00cc6a;
  --accent-dark: #008844;
  --accent-glow: rgba(0, 255, 136, 0.15);
  --accent-glow-strong: rgba(0, 255, 136, 0.3);
  --gradient-accent: linear-gradient(135deg, #00ff88 0%, #00aa55 100%);
  --gradient-accent-soft: linear-gradient(135deg, rgba(0, 255, 136, 0.1) 0%, rgba(0, 170, 85, 0.05) 100%);
  --success: #00ff88;
  --warning: #ffaa00;
  --error: #ff4444;
  --info: #00aaff;
  --text-primary: #f0f0f0;
  --text-secondary: #a0a0a0;
  --text-muted: #606060;
  --text-accent: #00ff88;
  --border: #1e2e1e;
  --border-light: #2a3a2a;
  --border-accent: rgba(0, 255, 136, 0.3);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 24px rgba(0, 255, 136, 0.15);
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-2xl: 48px;
  --space-3xl: 64px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', monospace;
  --transition: 200ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-sans);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  font-size: 15px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

body::before {
  content: ''; position: fixed; top: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  animation: float-orb 20s ease-in-out infinite;
}

body::after {
  content: ''; position: fixed; bottom: -400px; right: -300px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(0, 170, 85, 0.06) 0%, transparent 70%);
  border-radius: 50%; pointer-events: none; z-index: 0;
  animation: float-orb 25s ease-in-out infinite reverse;
}

@keyframes float-orb { 0%,100%{transform:translate(0,0)} 50%{transform:translate(100px,80px)} }

.verdis-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10, 14, 10, 0.85);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 0 var(--space-xl); height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.verdis-nav-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text-primary); font-weight: 700; font-size: 18px; letter-spacing: -0.02em; }
.verdis-nav-logo { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.verdis-nav-links { display: flex; align-items: center; gap: 4px; list-style: none; }
.verdis-nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; padding: 8px 14px; border-radius: var(--radius-sm); transition: var(--transition); }
.verdis-nav-links a:hover { color: var(--accent); background: var(--accent-glow); }
.verdis-nav-cta { display: flex; align-items: center; gap: 12px; }
.verdis-nav-mobile-toggle { display: none; background: none; border: none; color: var(--text-primary); font-size: 24px; cursor: pointer; padding: 8px; }

/* === Mobile Nav Open State === */
body.nav-open .verdis-nav-links {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: rgba(10, 14, 10, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 136, 0.15);
  padding: 16px;
  gap: 8px;
  z-index: 999;
  max-height: calc(100vh - 64px);
  overflow-y: auto;
}
body.nav-open .verdis-nav-links li {
  width: 100%;
}
body.nav-open .verdis-nav-links a {
  display: block;
  padding: 12px 16px;
  font-size: 15px;
  border-radius: 8px;
}
body.nav-open .verdis-nav-mobile-toggle {
  color: #00ff88;
}


.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 10px 20px; border-radius: var(--radius-md); font-family: var(--font-sans); font-size: 14px; font-weight: 600; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); white-space: nowrap; }
.btn-primary { background: var(--gradient-accent); color: #000; box-shadow: var(--shadow-glow); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 0 32px rgba(0, 255, 136, 0.3); }
.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border-light); }
.btn-secondary:hover { border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; color: var(--text-secondary); border: 1px solid var(--border); }
.btn-ghost:hover { color: var(--accent); border-color: var(--accent); }
.btn-lg { padding: 14px 28px; font-size: 16px; }
.btn-sm { padding: 6px 12px; font-size: 13px; }

.card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); transition: var(--transition); }
.card:hover { border-color: var(--border-light); transform: translateY(-2px); }
.card-glass { background: rgba(24, 24, 26, 0.6); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); }
.card-accent { border-color: var(--border-accent); box-shadow: var(--shadow-glow); }

.stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: var(--space-md); }
.stat-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); position: relative; overflow: hidden; }
.stat-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--gradient-accent); opacity: 0; transition: var(--transition); }
.stat-card:hover::before { opacity: 1; }
.stat-label { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: 8px; }
.stat-value { font-size: 28px; font-weight: 700; color: var(--text-primary); font-variant-numeric: tabular-nums; }
.stat-sub { font-size: 13px; color: var(--text-secondary); margin-top: 4px; }
.stat-accent { color: var(--accent); }

.section { padding: var(--space-3xl) var(--space-xl); max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.section-full { padding: var(--space-3xl) 0; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: var(--space-2xl); }
.section-title { font-size: 36px; font-weight: 700; letter-spacing: -0.02em; margin-bottom: var(--space-sm); }
.section-subtitle { font-size: 18px; color: var(--text-secondary); max-width: 640px; margin: 0 auto; }
.section-eyebrow { display: inline-block; font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); margin-bottom: var(--space-sm); padding: 4px 12px; background: var(--accent-glow); border-radius: var(--radius-full); }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 80px var(--space-xl) var(--space-3xl); position: relative; z-index: 1; }
.hero-title { font-size: clamp(40px, 7vw, 72px); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; margin-bottom: var(--space-md); }
.hero-title-accent { background: var(--gradient-accent); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.hero-subtitle { font-size: clamp(16px, 2vw, 22px); color: var(--text-secondary); max-width: 640px; margin: 0 auto var(--space-xl); line-height: 1.6; }
.hero-actions { display: flex; gap: var(--space-md); justify-content: center; flex-wrap: wrap; }

.table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border); }
table.verdis-table { width: 100%; border-collapse: collapse; font-size: 14px; }
table.verdis-table th { text-align: left; padding: 12px 16px; font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); background: var(--bg-secondary); border-bottom: 1px solid var(--border); white-space: nowrap; }
table.verdis-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); color: var(--text-primary); }
table.verdis-table tr:last-child td { border-bottom: none; }
table.verdis-table tr:hover td { background: var(--bg-card-hover); }

.badge { display: inline-flex; align-items: center; gap: 6px; padding: 4px 10px; border-radius: var(--radius-full); font-size: 12px; font-weight: 600; }
.badge-success { background: rgba(0, 255, 136, 0.1); color: var(--success); }
.badge-warning { background: rgba(255, 170, 0, 0.1); color: var(--warning); }
.badge-error { background: rgba(255, 68, 68, 0.1); color: var(--error); }
.badge-info { background: rgba(0, 170, 255, 0.1); color: var(--info); }
.badge-neutral { background: var(--bg-secondary); color: var(--text-secondary); }

.code-block { background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--radius-md); padding: var(--space-md); overflow-x: auto; font-family: var(--font-mono); font-size: 13px; line-height: 1.6; color: var(--text-secondary); }

.verdis-footer { background: var(--bg-secondary); border-top: 1px solid var(--border); padding: var(--space-2xl) var(--space-xl) var(--space-xl); margin-top: var(--space-3xl); }
.verdis-footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 2fr repeat(4, 1fr); gap: var(--space-xl); }
.verdis-footer-brand h3 { font-size: 20px; font-weight: 700; margin-bottom: var(--space-sm); }
.verdis-footer-brand p { color: var(--text-secondary); font-size: 14px; max-width: 280px; }
.verdis-footer-col h4 { font-size: 13px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-muted); margin-bottom: var(--space-md); }
.verdis-footer-col a { display: block; color: var(--text-secondary); text-decoration: none; font-size: 14px; padding: 4px 0; transition: var(--transition); }
.verdis-footer-col a:hover { color: var(--accent); }
.verdis-footer-bottom { max-width: 1200px; margin: var(--space-xl) auto 0; padding-top: var(--space-lg); border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: var(--text-muted); }

input.verdis-input { background: var(--bg-input); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 12px 16px; color: var(--text-primary); font-family: var(--font-sans); font-size: 14px; width: 100%; transition: var(--transition); }
input.verdis-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-glow); }

.chart-container { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: var(--space-lg); position: relative; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: var(--space-lg); }

.progress-bar { width: 100%; height: 8px; background: var(--bg-input); border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; background: var(--gradient-accent); border-radius: var(--radius-full); transition: width 1s ease; }

@keyframes fadeInUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.fade-in-up { animation: fadeInUp 0.6s ease forwards; }
@keyframes pulse-glow { 0%,100%{box-shadow:0 0 20px var(--accent-glow)} 50%{box-shadow:0 0 40px var(--accent-glow-strong)} }
.pulse-glow { animation: pulse-glow 2s ease-in-out infinite; }
@keyframes spin { to{transform:rotate(360deg)} }
.spin { animation: spin 1s linear infinite; }

.text-center{text-align:center} .text-left{text-align:left} .text-right{text-align:right}
.text-accent{color:var(--accent)} .text-muted{color:var(--text-muted)} .text-secondary{color:var(--text-secondary)}
.font-mono{font-family:var(--font-mono)} .font-bold{font-weight:700} .font-semibold{font-weight:600}
.mt-sm{margin-top:var(--space-sm)} .mt-md{margin-top:var(--space-md)} .mt-lg{margin-top:var(--space-lg)} .mt-xl{margin-top:var(--space-xl)}
.mb-sm{margin-bottom:var(--space-sm)} .mb-md{margin-bottom:var(--space-md)} .mb-lg{margin-bottom:var(--space-lg)} .mb-xl{margin-bottom:var(--space-xl)}
.flex{display:flex} .flex-col{flex-direction:column} .items-center{align-items:center}
.gap-sm{gap:var(--space-sm)} .gap-md{gap:var(--space-md)} .gap-lg{gap:var(--space-lg)}
.w-full{width:100%} .hidden{display:none} .relative{position:relative} .absolute{position:absolute}

#particle-canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; pointer-events: none; z-index: 0; }

@media (max-width: 1024px) {
  .verdis-nav-links { display: none; }
  .verdis-nav-mobile-toggle { display: block; }
  .verdis-footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  body { font-size: 13px; }
  .section { padding: var(--space-2xl) var(--space-md); }
  .section-title { font-size: 28px; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .verdis-footer-grid { grid-template-columns: 1fr; }
  .verdis-footer-bottom { flex-direction: column; gap: var(--space-sm); }
  .hero { padding: 100px var(--space-md) var(--space-2xl); }
  .verdis-nav { padding: 0 var(--space-md); }
}
@media (max-width: 480px) {
  .stat-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: var(--bg-secondary); }
::-webkit-scrollbar-thumb { background: var(--border-light); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-dark); }
::selection { background: var(--accent-glow-strong); color: var(--text-primary); }

/* ============================================================
   VERDIS ANIMATED LOGO & LOADING SPLASH
   ============================================================ */

/* Animated SVG Logo Base */
.verdis-animated-logo {
  overflow: visible;
  display: inline-block;
  vertical-align: middle;
}

.verdis-animated-logo .logo-hex {
  stroke-dasharray: 85;
  stroke-dashoffset: 85;
  animation: verdisDrawHex 0.9s cubic-bezier(0.4, 0, 0.2, 1) forwards,
             verdisPulseHex 3.5s ease-in-out 1.5s infinite alternate;
}

.verdis-animated-logo .logo-v {
  stroke-dasharray: 32;
  stroke-dashoffset: 32;
  animation: verdisDrawV 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards,
             verdisPulseV 3.5s ease-in-out 1.5s infinite alternate;
}

.verdis-animated-logo .logo-leaf {
  stroke-dasharray: 35;
  stroke-dashoffset: 35;
  opacity: 0;
  animation: verdisDrawLeaf 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards,
             verdisPulseLeaf 3.5s ease-in-out 1.5s infinite alternate;
}

.verdis-animated-logo .logo-vein {
  stroke-dasharray: 16;
  stroke-dashoffset: 16;
  opacity: 0;
  animation: verdisDrawVein 0.6s ease-out 0.8s forwards;
}

/* Keyframe Animations for Logo */
@keyframes verdisDrawHex {
  0% {
    stroke-dashoffset: 85;
    fill-opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    fill-opacity: 1;
  }
}

@keyframes verdisDrawV {
  0% {
    stroke-dashoffset: 32;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes verdisDrawLeaf {
  0% {
    stroke-dashoffset: 35;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.85;
  }
}

@keyframes verdisDrawVein {
  0% {
    stroke-dashoffset: 16;
    opacity: 0;
  }
  100% {
    stroke-dashoffset: 0;
    opacity: 0.9;
  }
}

@keyframes verdisPulseHex {
  0% {
    stroke: #00ff88;
    filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.3));
  }
  50% {
    stroke: #00e676;
    filter: drop-shadow(0 0 7px rgba(0, 255, 136, 0.7));
  }
  100% {
    stroke: #00C853;
    filter: drop-shadow(0 0 3px rgba(0, 200, 83, 0.4));
  }
}

@keyframes verdisPulseV {
  0% {
    stroke: #00ff88;
    filter: drop-shadow(0 0 2px rgba(0, 255, 136, 0.4));
  }
  50% {
    stroke: #33ff99;
    filter: drop-shadow(0 0 8px rgba(0, 255, 136, 0.8));
  }
  100% {
    stroke: #00ff88;
    filter: drop-shadow(0 0 3px rgba(0, 255, 136, 0.4));
  }
}

@keyframes verdisPulseLeaf {
  0% {
    fill: #00C853;
    opacity: 0.85;
  }
  50% {
    fill: #00ff88;
    opacity: 1;
    filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.6));
  }
  100% {
    fill: #00C853;
    opacity: 0.85;
  }
}

/* Splash Screen Styling */
.verdis-splash {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #0A0E0A;
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
  pointer-events: none;
  animation: verdisSplashFade 0.5s cubic-bezier(0.4, 0, 0.2, 1) 2.0s forwards;
}

@keyframes verdisSplashFade {
  0% {
    opacity: 1;
    visibility: visible;
  }
  99% {
    opacity: 0;
    visibility: visible;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

.verdis-splash-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.verdis-splash-logo {
  width: 100px;
  height: 100px;
}

.verdis-splash-text {
  color: #00ff88;
  font-family: var(--font-sans, Inter, -apple-system, sans-serif);
  font-weight: 800;
  font-size: 24px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  opacity: 0;
  animation: verdisSplashTextFade 0.8s ease-out 0.7s forwards;
}

.verdis-splash-tagline {
  color: #a0a0a0;
  font-family: var(--font-sans, Inter, -apple-system, sans-serif);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.15em;
  opacity: 0;
  animation: verdisSplashTextFade 0.8s ease-out 1.0s forwards;
}

@keyframes verdisSplashTextFade {
  0% {
    opacity: 0;
    transform: translateY(8px);
  }
  100% {
    opacity: 0.9;
    transform: translateY(0);
  }
}

/* Footer Brand Header Styling */
.verdis-footer-brand-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.verdis-footer-brand-header h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary, #f0f0f0);
}

.verdis-footer-logo {
  width: 32px;
  height: 32px;
}

/* === Animated V Logo === */
@keyframes verdis-hex-draw {
  0% { stroke-dashoffset: 200; opacity: 0; }
  30% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes verdis-v-draw {
  0%, 35% { stroke-dashoffset: 100; opacity: 0; }
  40% { opacity: 1; }
  75% { stroke-dashoffset: 0; opacity: 1; }
}

@keyframes verdis-leaf-fade {
  0%, 75% { opacity: 0; transform: scale(0.5); }
  100% { opacity: 0.4; transform: scale(1); }
}

@keyframes verdis-pulse-glow {
  0%, 100% { filter: drop-shadow(0 0 2px rgba(0,255,136,0.3)); }
  50% { filter: drop-shadow(0 0 8px rgba(0,255,136,0.6)); }
}

@keyframes verdis-splash-fade {
  0% { opacity: 1; }
  80% { opacity: 1; }
  100% { opacity: 0; visibility: hidden; }
}

@keyframes verdis-spin {
  to { transform: rotate(360deg); }
}

.verdis-anim-logo {
  animation: verdis-pulse-glow 3s ease-in-out infinite;
}

.verdis-anim-logo .hex-path {
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: verdis-hex-draw 1.5s ease-out forwards;
}

.verdis-anim-logo .v-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: verdis-v-draw 1.5s ease-out forwards;
}

.verdis-anim-logo .leaf-accent {
  opacity: 0;
  animation: verdis-leaf-fade 1.5s ease-out forwards;
  transform-origin: center;
}

/* Splash overlay */
.verdis-splash-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #0A0E0A;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  animation: verdis-splash-fade 2.5s ease-out forwards;
}

.verdis-splash-overlay .verdis-splash-logo {
  width: 120px;
  height: 120px;
}

.verdis-splash-overlay .verdis-splash-text {
  position: absolute;
  bottom: 35%;
  color: #00ff88;
  font-size: 14px;
  letter-spacing: 3px;
  text-transform: uppercase;
  opacity: 0;
  animation: verdis-leaf-fade 1.5s ease-out 0.8s forwards;
}

.verdis-splash-overlay .verdis-splash-spinner {
  position: absolute;
  bottom: 25%;
  width: 24px;
  height: 24px;
  border: 2px solid rgba(0,255,136,0.2);
  border-top-color: #00ff88;
  border-radius: 50%;
  opacity: 0;
  animation: verdis-spin 0.8s linear infinite, verdis-leaf-fade 1.5s ease-out 1s forwards;
}

/* Ensure splash overlay is fully removed after animation */
.verdis-splash-overlay {
  animation-fill-mode: forwards;
}
.verdis-splash-overlay animationend,
.verdis-splash-overlay[style*="visibility: hidden"] {
  pointer-events: none;
}
