/* =============================================
   BARA RWA — Style Sheet
   ============================================= */

/* ---- LUCIDE ICON BASE ---- */
[data-lucide] {
  width: 1em;
  height: 1em;
  stroke-width: 1.5;
  vertical-align: middle;
  flex-shrink: 0;
}

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

:root {
  --green-primary: #22c55e;
  --green-dark: #16a34a;
  --green-light: #4ade80;
  --green-glow: rgba(34, 197, 94, 0.25);
  --green-glow-strong: rgba(34, 197, 94, 0.45);
  --bg-dark: #030f06;
  --bg-mid: #052e16;
  --bg-card: #071a0d;
  --bg-card-hover: #0a2516;
  --text-white: #f0fdf4;
  --text-muted: rgba(240, 253, 244, 0.55);
  --text-dim: rgba(240, 253, 244, 0.35);
  --border: rgba(34, 197, 94, 0.15);
  --border-hover: rgba(34, 197, 94, 0.4);
  --font-main: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  overflow-x: hidden;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: var(--green-dark); border-radius: 3px; }

/* =============================================
   NAVBAR
   ============================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(3, 15, 6, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(3, 15, 6, 0.92);
  border-bottom-color: rgba(34, 197, 94, 0.25);
  box-shadow: 0 4px 32px rgba(0,0,0,0.4);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  height: 68px;
  display: flex;
  align-items: center;
  gap: 40px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-icon { display: flex; align-items: center; }
.logo-mark-img {
  display: block;
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 8px;
}
.footer-logo .logo-mark-img { width: 28px; height: 28px; border-radius: 7px; }
.logo-text-group {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.logo-name {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: 0.04em;
}
.logo-sub {
  font-size: 7px;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.12em;
  margin-top: 1px;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 4px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  border-radius: 8px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active {
  color: var(--text-white);
  background: rgba(34, 197, 94, 0.08);
}
.dropdown-icon {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 2 !important;
  transition: transform var(--transition);
  margin-left: 2px;
}
.nav-item.has-dropdown:hover .dropdown-icon {
  transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: rgba(7, 26, 13, 0.98);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: var(--transition);
  backdrop-filter: blur(20px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  z-index: 100;
}
.nav-item:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.dropdown-item [data-lucide] {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 1.5;
  opacity: 0.7;
}
.dropdown-item:hover {
  color: var(--green-primary);
  background: rgba(34, 197, 94, 0.08);
}
.dropdown-item:hover [data-lucide] { opacity: 1; }

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-launch {
  background: transparent;
  color: var(--text-white);
  border: 1px solid var(--border-hover);
  padding: 8px 18px;
}
.btn-launch:hover {
  background: rgba(34, 197, 94, 0.1);
  border-color: var(--green-primary);
  color: var(--green-primary);
}
.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.btn-icon [data-lucide] {
  width: 17px !important;
  height: 17px !important;
  stroke-width: 1.5;
}
.btn-icon:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(34, 197, 94, 0.15);
}
.btn-explore {
  background: var(--green-primary);
  color: #052e16;
  font-weight: 700;
  box-shadow: 0 0 24px var(--green-glow);
}
.btn-explore [data-lucide] {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 2;
  transition: transform var(--transition);
}
.btn-explore:hover { background: var(--green-light); box-shadow: 0 0 40px var(--green-glow-strong); transform: translateY(-1px); }
.btn-explore:hover [data-lucide] { transform: translateX(3px); }
.btn-learn {
  background: transparent;
  color: var(--text-white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-learn [data-lucide] {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 1.5;
  transition: transform var(--transition);
}
.btn-learn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(34, 197, 94, 0.08);
}
.btn-learn:hover [data-lucide] { transform: translateX(3px); }
.btn-full { width: 100%; justify-content: center; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.mobile-overlay {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0; bottom: 0;
  background: rgba(3, 15, 6, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 32px;
}
.mobile-overlay.open { display: flex; }
.mobile-links { list-style: none; text-align: center; width: 100%; }
.mobile-link {
  display: block;
  padding: 16px;
  color: var(--text-white);
  text-decoration: none;
  font-size: 20px;
  font-weight: 600;
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.mobile-link:hover { color: var(--green-primary); }

/* =============================================
   HERO
   ============================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #020d04 0%, #04190a 40%, #052e16 100%);
}

.hero-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(34,197,94,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(34,197,94,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-glow-1 {
  position: absolute;
  top: 10%;
  left: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(34,197,94,0.12) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 6s ease-in-out infinite alternate;
}
.hero-glow-2 {
  position: absolute;
  bottom: -20%;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(34,197,94,0.08) 0%, transparent 70%);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite alternate-reverse;
}

@keyframes pulseGlow {
  from { opacity: 0.6; transform: scale(1); }
  to { opacity: 1; transform: scale(1.08); }
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 64px;
}

.hero-content {
  animation: fadeInLeft 0.9s ease forwards;
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-title {
  font-family: var(--font-main);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.title-white { color: var(--text-white); }
.title-green {
  color: var(--green-primary);
  display: inline-block;
  text-shadow: 0 0 40px rgba(34,197,94,0.5);
}

.hero-sub {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-white);
  margin-bottom: 20px;
  line-height: 1.5;
}
.sub-green {
  color: var(--green-primary);
  font-weight: 600;
}

.hero-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 28px 0;
  flex-wrap: wrap;
}

.hero-socials {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(34,197,94,0.08);
  border: 1px solid var(--border);
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.social-icon [data-lucide] {
  width: 16px !important;
  height: 16px !important;
  stroke-width: 1.5;
}
.social-icon:hover {
  background: rgba(34,197,94,0.18);
  border-color: var(--green-primary);
  color: var(--green-primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(34,197,94,0.2);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInRight 0.9s ease 0.2s both;
}
@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

.hero-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.hero-img {
  width: 100%;
  max-width: 520px;
  display: block;
  border-radius: var(--radius-lg);
  animation: floatImg 5s ease-in-out infinite alternate;
}
@keyframes floatImg {
  from { transform: translateY(0); }
  to { transform: translateY(-12px); }
}
.hero-img-glow {
  position: absolute;
  inset: -20px;
  background: radial-gradient(ellipse at center, rgba(34,197,94,0.2) 0%, transparent 70%);
  pointer-events: none;
}

/* Vision Card */
.vision-card {
  position: absolute;
  bottom: -20px;
  left: -32px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: rgba(7, 26, 13, 0.9);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 16px 20px;
  max-width: 320px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(34,197,94,0.1);
  animation: slideUp 1s ease 0.6s both;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.vision-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-primary);
}
.vision-icon [data-lucide] {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 1.4;
}
.vision-title {
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: var(--green-primary);
  margin-bottom: 4px;
}
.vision-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Stat Badges */
.stat-badge {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(7, 26, 13, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-hover);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  animation: floatBadge 4s ease-in-out infinite alternate;
}
.badge-tl { top: 24px; left: -20px; animation-delay: 0.5s; }
.badge-tr { top: 24px; right: -10px; animation-delay: 1s; }
@keyframes floatBadge {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}
.badge-num {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  color: var(--green-primary);
}
.badge-label {
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   MARQUEE
   ============================================= */
.marquee-strip {
  position: relative;
  z-index: 2;
  background: rgba(34, 197, 94, 0.06);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
  padding: 14px 0;
}
.marquee-track {
  display: flex;
  gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  padding: 0 28px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
  border-right: 1px solid var(--border);
}
.green-dot {
  color: var(--green-primary);
  font-size: 8px;
  vertical-align: middle;
}

/* =============================================
   SHARED SECTION STYLES
   ============================================= */
.section-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
}
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-tag {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.25);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  color: var(--green-primary);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-main);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.green-text {
  color: var(--green-primary);
  text-shadow: 0 0 30px rgba(34,197,94,0.4);
}
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

/* =============================================
   STATS SECTION
   ============================================= */
.stats-section {
  position: relative;
  z-index: 2;
  padding: 80px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-card {
  background: rgba(7, 26, 13, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}
.stat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--green-primary), transparent);
  opacity: 0;
  transition: var(--transition);
}
.stat-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 32px rgba(34,197,94,0.1);
}
.stat-card:hover::before { opacity: 1; }
.stat-icon {
  margin-bottom: 16px;
  display: flex;
  justify-content: center;
  color: var(--green-primary);
}
.stat-icon [data-lucide] {
  width: 28px !important;
  height: 28px !important;
  stroke-width: 1.3;
}
.stat-value {
  font-family: var(--font-main);
  font-size: 36px;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(34,197,94,0.4);
}
.stat-label {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

/* =============================================
   ASSETS SECTION
   ============================================= */
.assets-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent 0%, rgba(5,46,22,0.3) 50%, transparent 100%);
}

.asset-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}
.filter-btn:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(34,197,94,0.08);
}
.filter-btn.active {
  background: var(--green-primary);
  color: #052e16;
  border-color: var(--green-primary);
  font-weight: 700;
}

.assets-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asset-card {
  background: rgba(7, 26, 13, 0.8);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
  backdrop-filter: blur(8px);
}
.asset-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 40px rgba(34,197,94,0.12);
}
.asset-card.hidden {
  display: none;
}

.asset-card-img {
  position: relative;
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(5,46,22,0.9), rgba(3,15,6,0.95));
  overflow: hidden;
}
/* Futuristic art container */
.asset-art {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.art-svg {
  width: 120px;
  height: 100px;
  transition: transform var(--transition-slow);
  filter: drop-shadow(0 0 8px rgba(34,197,94,0.2));
}
.asset-card:hover .art-svg {
  transform: scale(1.06) translateY(-2px);
  filter: drop-shadow(0 0 16px rgba(34,197,94,0.4));
}
.asset-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.35);
  color: var(--green-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(8px);
}
.asset-badge [data-lucide] {
  width: 11px !important;
  height: 11px !important;
  stroke-width: 2;
}
.asset-yield {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(34,197,94,0.9);
  color: #052e16;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.asset-card-body { padding: 20px; }
.asset-tag {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  letter-spacing: 0.07em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.asset-tag [data-lucide] {
  width: 12px !important;
  height: 12px !important;
  stroke-width: 1.8;
}
.asset-name {
  font-family: var(--font-main);
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 12px;
  line-height: 1.3;
}
.asset-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}
.asset-price {
  font-family: var(--font-main);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-white);
}
.asset-change {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.asset-change [data-lucide] {
  width: 12px !important;
  height: 12px !important;
  stroke-width: 2;
}
.asset-change.positive {
  color: #22c55e;
  background: rgba(34,197,94,0.1);
}
.asset-change.negative {
  color: #f87171;
  background: rgba(248,113,113,0.1);
}
.asset-progress-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.asset-progress-bar {
  flex: 1;
  height: 6px;
  background: rgba(34,197,94,0.1);
  border-radius: 3px;
  overflow: hidden;
}
.asset-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--green-dark), var(--green-primary));
  border-radius: 3px;
  transition: width 1s ease;
  box-shadow: 0 0 8px rgba(34,197,94,0.4);
}
.asset-progress-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}

/* =============================================
   HOW IT WORKS
   ============================================= */
.how-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
}
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  align-items: start;
}
.how-card {
  background: rgba(7, 26, 13, 0.7);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}
.how-card:hover, .how-card.featured {
  border-color: var(--border-hover);
  box-shadow: 0 16px 48px rgba(0,0,0,0.3), 0 0 32px rgba(34,197,94,0.1);
}
.how-card.featured {
  background: rgba(5, 46, 22, 0.8);
  transform: translateY(-8px);
}
.how-number {
  font-family: var(--font-main);
  font-size: 56px;
  font-weight: 900;
  color: rgba(34,197,94,0.12);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.how-card.featured .how-number {
  color: rgba(34,197,94,0.2);
}
.how-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius);
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--green-primary);
  transition: var(--transition);
}
.how-icon [data-lucide] {
  width: 26px !important;
  height: 26px !important;
  stroke-width: 1.3;
  transition: transform var(--transition);
}
.how-card:hover .how-icon {
  background: rgba(34,197,94,0.16);
  border-color: rgba(34,197,94,0.4);
  box-shadow: 0 0 28px rgba(34,197,94,0.25);
}
.how-card:hover .how-icon [data-lucide] { transform: scale(1.1); }
.how-title {
  font-family: var(--font-main);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 14px;
}
.how-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.how-connector {
  position: absolute;
  top: 50%;
  right: -16px;
  transform: translateY(-50%);
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-primary), transparent);
  display: none;
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  position: relative;
  z-index: 2;
  padding: 100px 0;
  background: linear-gradient(180deg, transparent, rgba(5,46,22,0.2), transparent);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-content .section-tag { margin-bottom: 16px; }
.about-content .section-title { text-align: left; margin-bottom: 24px; }
.about-desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.about-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
}
.about-feature:hover {
  background: rgba(34,197,94,0.05);
  border-color: var(--border);
}
.feat-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--green-primary);
  transition: var(--transition);
}
.about-feature:hover .feat-icon {
  background: rgba(34,197,94,0.15);
  border-color: rgba(34,197,94,0.35);
  box-shadow: 0 0 16px rgba(34,197,94,0.2);
}
.feat-icon [data-lucide] {
  width: 15px !important;
  height: 15px !important;
  stroke-width: 1.6;
}
.feat-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
  margin-bottom: 4px;
}
.feat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* About Card Stack */
.about-visual { position: relative; }
.about-card-stack { position: relative; height: 340px; }
.about-card {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}
.card-back {
  inset: 32px 0 0 32px;
  background: rgba(5,46,22,0.3);
  transform: rotate(4deg);
}
.card-mid {
  inset: 16px 8px 0 16px;
  background: rgba(5,46,22,0.5);
  transform: rotate(2deg);
}
.card-front {
  inset: 0 16px 32px 0;
  background: rgba(7, 26, 13, 0.9);
  backdrop-filter: blur(20px);
  border-color: var(--border-hover);
  padding: 28px;
  box-shadow: 0 24px 64px rgba(0,0,0,0.5), 0 0 40px rgba(34,197,94,0.1);
  animation: floatCard 6s ease-in-out infinite alternate;
}
@keyframes floatCard {
  from { transform: translateY(0) rotate(0deg); }
  to { transform: translateY(-6px) rotate(-0.5deg); }
}

.acard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.acard-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-main);
  font-weight: 700;
  font-size: 15px;
  color: var(--text-white);
}
.acard-status {
  font-size: 11px;
  font-weight: 700;
  color: var(--green-primary);
  background: rgba(34,197,94,0.12);
  border: 1px solid rgba(34,197,94,0.3);
  padding: 3px 10px;
  border-radius: 50px;
}
.acard-metric {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}
.acard-metric-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.acard-metric-row:last-child { border-bottom: none; }
.acard-label { font-size: 13px; color: var(--text-muted); }
.acard-value {
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 700;
  color: var(--text-white);
}
.positive-val { color: var(--green-primary) !important; }

.acard-chart { margin-bottom: 16px; }
.chart-svg { width: 100%; height: auto; }

.acard-chain {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-dim);
}
.acard-network-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green-primary);
  box-shadow: 0 0 8px var(--green-primary);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* =============================================
   CTA SECTION
   ============================================= */
.cta-section {
  position: relative;
  z-index: 2;
  padding: 120px 0;
  overflow: hidden;
}
.cta-glow-1 {
  position: absolute;
  top: -30%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34,197,94,0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-glow-2 {
  position: absolute;
  bottom: -20%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34,197,94,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-main);
  font-size: clamp(32px, 5vw, 52px);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.cta-desc {
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.cta-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-stat { text-align: center; }
.cta-stat-num {
  display: block;
  font-family: var(--font-main);
  font-size: 24px;
  font-weight: 800;
  color: var(--green-primary);
  margin-bottom: 4px;
}
.cta-stat-label {
  font-size: 13px;
  color: var(--text-muted);
}
.cta-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  background: rgba(3, 15, 6, 0.6);
  backdrop-filter: blur(10px);
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 64px 32px 48px;
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 40px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.footer-brand-name {
  font-family: var(--font-main);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
}
.footer-tagline {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.f-social {
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(34,197,94,0.06);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
}
.f-social [data-lucide] {
  width: 14px !important;
  height: 14px !important;
  stroke-width: 1.5;
}
.f-social:hover {
  border-color: var(--green-primary);
  color: var(--green-primary);
  background: rgba(34,197,94,0.12);
  transform: translateY(-2px);
}
.footer-cols { display: contents; }
.footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.f-col-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text-white);
  margin-bottom: 6px;
  letter-spacing: 0.03em;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: none;
  transition: var(--transition);
  padding: 2px 0;
}
.footer-col a [data-lucide] {
  width: 13px !important;
  height: 13px !important;
  stroke-width: 1.5;
  opacity: 0.5;
  transition: var(--transition);
}
.footer-col a:hover { color: var(--green-primary); }
.footer-col a:hover [data-lucide] { opacity: 1; transform: translateX(2px); }

.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 32px;
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--text-dim);
  flex-wrap: wrap;
  gap: 12px;
}

/* =============================================
   SCROLL ANIMATIONS
   ============================================= */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1100px) {
  .hero-container { gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-cols { display: flex; flex-wrap: wrap; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .hamburger { display: flex; }
  .hero-container { grid-template-columns: 1fr; gap: 40px; text-align: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions, .hero-socials { justify-content: center; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .vision-card { left: -10px; bottom: -10px; }
  .badge-tl { left: 0; }
  .badge-tr { right: 0; }
  .assets-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .how-card.featured { transform: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-content .section-title { text-align: center; }
  .about-content .section-tag { display: block; text-align: center; }
}

@media (max-width: 640px) {
  .nav-container { padding: 0 16px; }
  .section-container { padding: 0 16px; }
  .hero { padding: 100px 0 60px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .assets-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 36px; }
  .about-card-stack { height: 280px; }
  .footer-inner { padding: 40px 16px 32px; grid-template-columns: 1fr; }
  .footer-bottom { padding: 16px; flex-direction: column; text-align: center; }
  .cta-stats { gap: 20px; }
  .cta-divider { display: none; }
}
