/* ═══════════════════════════════════════════
   BLOCKCHAIN EVENT — DESIGN SYSTEM
   Theme: Green & Black / Cyberpunk / ALIVE
   ═══════════════════════════════════════════ */

:root {
  /* ─ Greens ─ */
  --green-50:  #e8fde8;
  --green-100: #b5f5b5;
  --green-200: #72ec72;
  --green-300: #39e639;
  --green-400: #00e676;
  --green-500: #00c853;
  --green-600: #00a844;
  --green-neon: #00ff88;
  --green-glow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 60px rgba(0, 255, 136, 0.1);
  --green-glow-strong: 0 0 20px rgba(0, 255, 136, 0.5), 0 0 80px rgba(0, 255, 136, 0.25);

  /* ─ Blacks / Darks ─ */
  --black-900: #050a05;
  --black-800: #0a120a;
  --black-700: #0e1a0e;
  --black-600: #142014;
  --black-500: #1a2a1a;

  /* ─ Text ─ */
  --text-primary:   #e8fde8;
  --text-secondary: #88c088;
  --text-muted:     #5a8a5a;

  /* ─ Typography ─ */
  --font-display: 'Orbitron', sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  /* ─ Spacing ─ */
  --section-py: clamp(4rem, 10vw, 8rem);
  --container-max: 1200px;

  /* ─ Transitions ─ */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  cursor: none;
}

/* ═══ CUSTOM BLOCKCHAIN CURSOR ═══ */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform 0.08s ease-out, opacity 0.3s ease;
  will-change: transform;
  opacity: 0;
}
.custom-cursor svg {
  animation: cursorSpin 8s linear infinite;
  filter: drop-shadow(0 0 6px rgba(0, 255, 136, 0.4));
}
.custom-cursor.active svg {
  animation-duration: 2s;
  filter: drop-shadow(0 0 12px rgba(0, 255, 136, 0.7));
}
.custom-cursor.active {
  transform: translate(-50%, -50%) scale(1.4);
}

@keyframes cursorSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 5px;
  height: 5px;
  background: var(--green-neon);
  border-radius: 50%;
  pointer-events: none;
  z-index: 100000;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.8), 0 0 20px rgba(0, 255, 136, 0.3);
  transition: width 0.2s ease, height 0.2s ease, opacity 0.3s ease;
  will-change: transform;
  opacity: 0;
}
.cursor-dot.active {
  width: 8px;
  height: 8px;
}

/* ═══ CURSOR GLOW TRAIL ═══ */
.cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 255, 136, 0.06) 0%, rgba(0, 255, 136, 0.02) 40%, transparent 70%);
  transition: opacity 0.4s ease;
  will-change: transform;
  opacity: 0;
}

/* Restore cursor on interactive elements for accessibility */
a, button, input, textarea, select, [role="button"] {
  cursor: none;
}

body {
  font-family: var(--font-body);
  background: var(--black-900);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.intro-active {
  overflow: hidden;
}

/* ═══ BLOCKCHAIN NETWORK BACKGROUND ═══ */
#blockchain-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

/* ═══ VIDEO INTRO OVERLAY ═══ */
#intro-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}
#intro-overlay.fade-out {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
#intro-overlay.hidden {
  display: none;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #000;
}

.skip-btn {
  position: absolute;
  bottom: 2.5rem;
  right: 2.5rem;
  background: rgba(0, 255, 136, 0.08);
  border: 1px solid rgba(0, 255, 136, 0.3);
  color: var(--green-neon);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.6rem 1.4rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  z-index: 10000;
  animation: skipFadeIn 1s 0.5s both;
}
.skip-btn:hover {
  background: var(--green-neon);
  color: var(--black-900);
  box-shadow: var(--green-glow);
}
.skip-btn span {
  transition: transform 0.3s ease;
}
.skip-btn:hover span {
  transform: translateX(3px);
}
@keyframes skipFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

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

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
}

/* ═══ ACCENT ═══ */
.accent { color: var(--green-neon); }
.glow-text {
  color: var(--green-neon);
  text-shadow: var(--green-glow);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 20px rgba(0, 255, 136, 0.3), 0 0 60px rgba(0, 255, 136, 0.1); }
  50% { text-shadow: 0 0 30px rgba(0, 255, 136, 0.5), 0 0 80px rgba(0, 255, 136, 0.2), 0 0 120px rgba(0, 255, 136, 0.08); }
}

/* ═══ BUTTONS ═══ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.9rem 2rem;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: all 0.35s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--green-400), var(--green-500));
  color: var(--black-900);
  box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--green-glow-strong), 0 8px 30px rgba(0, 230, 118, 0.4);
}
.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.15) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}
.btn-primary:hover::after {
  transform: translateX(100%);
}

.btn-outline {
  background: transparent;
  color: var(--green-neon);
  border: 1.5px solid var(--green-neon);
}
.btn-outline:hover {
  background: rgba(0, 255, 136, 0.08);
  transform: translateY(-3px) scale(1.03);
  box-shadow: var(--green-glow);
}

.btn-large {
  font-size: 1rem;
  padding: 1.1rem 2.8rem;
}

.pulse-glow {
  animation: pulseGlow 2.5s infinite;
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 4px 20px rgba(0, 230, 118, 0.3); }
  50% { box-shadow: 0 4px 40px rgba(0, 255, 136, 0.5), 0 0 80px rgba(0, 255, 136, 0.15); }
}

.btn-icon {
  font-size: 1.1em;
  transition: transform 0.3s ease;
}
.btn:hover .btn-icon {
  transform: rotate(60deg) scale(1.2);
}

/* ═══ NAVBAR ═══ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s var(--ease-out-expo);
  background: transparent;
}
#navbar.scrolled {
  background: rgba(5, 10, 5, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(0, 255, 136, 0.08);
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 clamp(1rem, 4vw, 2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}
.nav-logo:hover {
  transform: scale(1.05);
}
.logo-icon {
  color: var(--green-neon);
  font-size: 1.3em;
  text-shadow: var(--green-glow);
  animation: logoFloat 4s ease-in-out infinite;
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-3px) rotate(10deg); }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  color: var(--text-secondary);
  transition: color 0.3s, transform 0.3s ease;
  position: relative;
}
.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--green-neon);
  box-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
  transition: width 0.3s var(--ease-out-expo);
}
.nav-links a:not(.nav-cta):hover {
  color: var(--green-neon);
  transform: translateY(-1px);
}
.nav-links a:not(.nav-cta):hover::after {
  width: 100%;
}

.nav-cta {
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid var(--green-neon);
  color: var(--green-neon) !important;
  padding: 0.5rem 1.2rem;
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.75rem !important;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s var(--ease-out-expo);
}
.nav-cta:hover {
  background: var(--green-neon);
  color: var(--black-900) !important;
  box-shadow: var(--green-glow);
  transform: translateY(-2px) scale(1.05) !important;
}

/* Mobile menu button */
.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-neon);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ═══ HERO ═══ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#matrix-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0, 255, 136, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(0, 200, 83, 0.05) 0%, transparent 50%),
    linear-gradient(180deg, rgba(5,10,5,0.3) 0%, rgba(5,10,5,0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 7rem 1.5rem 8rem;
  max-width: 900px;
}

.hero-tag {
  font-family: var(--font-display);
  font-size: clamp(0.65rem, 1.5vw, 0.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-neon);
  margin-bottom: 1.5rem;
  opacity: 0.8;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.hero-content h2 {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.4rem);
  font-weight: 300;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.hero-sub {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 550px;
  margin: 0 auto 2rem;
}
.hero-sub strong {
  color: var(--green-neon);
}

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

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: clamp(1.5rem, 5vw, 3rem);
  flex-wrap: wrap;
  padding-top: 2rem;
  border-top: 1px solid rgba(0, 255, 136, 0.1);
}
.stat {
  text-align: center;
  transition: transform 0.3s ease;
}
.stat:hover {
  transform: scale(1.1);
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: var(--green-glow);
}
.stat-plus, .stat-unit {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 900;
  color: var(--green-neon);
  text-shadow: var(--green-glow);
}
.stat-label {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  margin-top: 0.25rem;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0.5;
  animation: scrollFloat 2s infinite ease-in-out;
}
@media (max-height: 750px) {
  .scroll-indicator {
    display: none;
  }
}
.scroll-indicator span {
  font-family: var(--font-display);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-neon);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--green-neon), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollFloat {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* ═══ SECTIONS ═══ */
.section {
  padding: var(--section-py) 0;
  position: relative;
}
.section-dark {
  background: var(--black-800);
}

/* ─ Animated section dividers ─ */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,255,136,0.15), var(--green-neon), rgba(0,255,136,0.15), transparent);
  opacity: 0;
  transition: opacity 0.8s ease;
}
.section.in-view::before {
  opacity: 1;
  animation: scanLine 3s ease-in-out infinite;
}

@keyframes scanLine {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-neon);
  display: block;
  margin-bottom: 0.75rem;
  opacity: 0.7;
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ═══ ABOUT GRID ═══ */
.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  perspective: 800px;
}

.about-card {
  background: linear-gradient(145deg, rgba(0,255,136,0.03), rgba(0,0,0,0.3));
  border: 1px solid rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}
.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-neon), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
/* Cursor-following glow spot inside card */
.about-card::after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.08) 0%, transparent 70%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s ease;
  transform: translate(-50%, -50%);
  z-index: 0;
}
.about-card:hover::after {
  opacity: 1;
}
.about-card:hover {
  border-color: rgba(0, 255, 136, 0.25);
  box-shadow: 0 10px 40px rgba(0, 255, 136, 0.08), 0 0 0 1px rgba(0, 255, 136, 0.1);
}
.about-card:hover::before {
  opacity: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  transition: transform 0.4s ease;
  position: relative;
  z-index: 1;
}
.about-card:hover .card-icon {
  transform: scale(1.2) translateY(-3px);
}

.about-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--green-100);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}
.about-card:hover h3 {
  color: var(--green-neon);
}

.about-card p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ═══ DETAILS ═══ */
.details-wrapper {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.details-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.detail-item {
  background: rgba(0, 255, 136, 0.03);
  border: 1px solid rgba(0, 255, 136, 0.06);
  border-radius: 8px;
  padding: 1.2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: all 0.4s var(--ease-out-expo);
  position: relative;
  overflow: hidden;
}
/* Animated left accent bar */
.detail-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--green-neon);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.4s var(--ease-out-expo);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}
.detail-item:hover {
  border-color: rgba(0, 255, 136, 0.2);
  background: rgba(0, 255, 136, 0.05);
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(0, 255, 136, 0.05);
}
.detail-item:hover::before {
  transform: scaleY(1);
}

.detail-label {
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-neon);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
.detail-item:hover .detail-label {
  opacity: 1;
}

.detail-value {
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 500;
}

.details-provides {
  background: linear-gradient(145deg, rgba(0,255,136,0.04), rgba(0,0,0,0.2));
  border: 1px solid rgba(0, 255, 136, 0.08);
  border-radius: 12px;
  padding: 2rem;
}
.details-provides h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-100);
  margin-bottom: 1.2rem;
}

.provide-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.provide-list li {
  font-size: 0.9rem;
  color: var(--text-secondary);
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.5;
}
.check {
  color: var(--green-neon);
  font-size: 0.8rem;
  margin-top: 3px;
  flex-shrink: 0;
}

/* ═══ PARTNERS ═══ */
.partners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  perspective: 800px;
}

.partner-card {
  background: linear-gradient(145deg, rgba(0,255,136,0.04), rgba(0,0,0,0.3));
  border: 1px solid rgba(0, 255, 136, 0.08);
  border-radius: 16px;
  padding: 2.5rem;
  text-align: center;
  transition: all 0.4s var(--ease-out-expo);
  transform-style: preserve-3d;
  will-change: transform;
  position: relative;
  overflow: hidden;
}
/* Animated border gradient */
.partner-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 16px;
  padding: 1px;
  background: linear-gradient(135deg, transparent 30%, rgba(0, 255, 136, 0.2) 50%, transparent 70%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.partner-card:hover::before {
  opacity: 1;
}
.partner-card:hover {
  border-color: rgba(0, 255, 136, 0.25);
  box-shadow: 0 20px 60px rgba(0, 255, 136, 0.08), inset 0 1px 0 rgba(0, 255, 136, 0.1);
}

.partner-logo {
  height: 80px;
  max-width: 100%;
  object-fit: contain;
  margin: 0 auto 1.5rem;
  display: block;
  filter: drop-shadow(0 0 10px rgba(0, 255, 136, 0.4));
  transition: all 0.4s ease;
}
.partner-card:hover .partner-logo {
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.6));
  transform: scale(1.08) translateY(-3px);
}

.partner-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--green-100);
  transition: color 0.3s ease;
}
.partner-card:hover h3 {
  color: var(--green-neon);
}

.partner-card p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ═══ REGISTER SECTION ═══ */
.section-register {
  position: relative;
  overflow: hidden;
  padding: 6rem 0;
  background: var(--black-900);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.register-container {
  position: relative;
  z-index: 1;
}

.register-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}
.register-content h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1rem;
}
.register-content > p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.register-note {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

/* ═══ FOOTER ═══ */
#footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(0, 255, 136, 0.06);
  background: var(--black-900);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-copy {
  font-size: 0.78rem;
  color: var(--text-muted);
}
.footer-links {
  display: flex;
  gap: 1.5rem;
}
.footer-links a {
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: color 0.3s, transform 0.3s ease;
  position: relative;
}
.footer-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--green-neon);
  transition: width 0.3s ease;
}
.footer-links a:hover {
  color: var(--green-neon);
  transform: translateY(-1px);
}
.footer-links a:hover::after {
  width: 100%;
}

/* ═══ SCROLL ANIMATIONS ═══ */
[data-animate] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}
[data-animate].visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══ PARALLAX LAYER STYLES ═══ */
.parallax-section {
  transform: translateY(0);
  transition: transform 0.1s linear;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 900px) {
  .details-wrapper,
  .partners-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 280px;
    flex-direction: column;
    background: rgba(5, 10, 5, 0.98);
    backdrop-filter: blur(20px);
    padding: 5rem 2rem 2rem;
    gap: 1.5rem;
    transition: right 0.4s var(--ease-out-expo);
    border-left: 1px solid rgba(0, 255, 136, 0.08);
  }
  .nav-links.open {
    right: 0;
  }
  .mobile-menu-btn {
    display: flex;
  }
  .hero-stats {
    gap: 1.5rem;
  }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

/* ═══ CUSTOM SCROLLBAR ═══ */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: var(--black-900);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 255, 136, 0.2);
  border-radius: 3px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 255, 136, 0.5);
  box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
}

/* Selection */
::selection {
  background: rgba(0, 255, 136, 0.25);
  color: var(--text-primary);
}
