@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  /* Color Palette */
  --bg-light: #f7f8f8;
  --bg-dark: #050505;
  --primary: #b8ff00;
  --primary-rgb: 184, 255, 0;
  --accent: #5aff00;
  --accent-rgb: 90, 255, 0;
  --text-dark: #101010;
  --text-muted: #626464;
  --text-light: #f7f8f8;
  --text-muted-dark: #888888;
  --card-bg: rgba(255, 255, 255, 0.75);
  --card-border: rgba(0, 0, 0, 0.06);
  --card-bg-dark: rgba(255, 255, 255, 0.03);
  --card-border-dark: rgba(255, 255, 255, 0.08);
  --blur-value: blur(25px);

  /* Fonts */
  --font-sans: "Inter", sans-serif;
  --font-display: "Space Grotesk", sans-serif;

  /* Radius & Shadows */
  --radius-xl: 38px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-soft: 0 10px 40px -10px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 30px rgba(90, 255, 0, 0.15);
  --shadow-glow-strong: 0 0 50px rgba(90, 255, 0, 0.3);

  /* Transitions */
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  cursor: none; /* Hide default cursor for custom cursor */
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg-light);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

/* Selection */
::selection {
  background-color: var(--primary);
  color: var(--text-dark);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  border: 2px solid var(--bg-light);
}
::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.2);
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

p {
  font-family: var(--font-sans);
  line-height: 1.6;
  color: var(--text-muted);
}

/* Custom Cursor & Glow */
.custom-cursor {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition:
    width 0.2s,
    height 0.2s,
    background-color 0.2s;
  mix-blend-mode: difference;
}

.custom-cursor-glow {
  width: 40px;
  height: 40px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition:
    transform 0.15s cubic-bezier(0.25, 1, 0.5, 1),
    width 0.3s,
    height 0.3s,
    background-color 0.3s,
    border-color 0.3s;
  background: rgba(184, 255, 0, 0.03);
}

/* Active Hover Cursor States */
.cursor-hovering .custom-cursor {
  width: 16px;
  height: 16px;
  background: var(--accent);
  mix-blend-mode: normal;
}
.cursor-hovering .custom-cursor-glow {
  width: 60px;
  height: 60px;
  background: rgba(90, 255, 0, 0.15);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

/* Ambient Mouse Glow in Background */
.bg-glow-follower {
  position: fixed;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(184, 255, 0, 0.12) 0%,
    rgba(90, 255, 0, 0) 70%
  );
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  transform: translate(-50%, -50%);
  will-change: transform;
}

/* Scroll Progress Bar */
.scroll-progress-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 10000;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px var(--accent);
}

/* Reusable Components & Glassmorphism */
.glass-card {
  background: var(--card-bg);
  backdrop-filter: var(--blur-value);
  -webkit-backdrop-filter: var(--blur-value);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -50%;
  width: 200%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.25) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-25deg);
  transition: 0.75s;
  opacity: 0;
  pointer-events: none;
}

.glass-card:hover::before {
  left: 120%;
  opacity: 1;
}

/* Dark Card System */
.dark-glass-card {
  background: var(--card-bg-dark);
  backdrop-filter: var(--blur-value);
  -webkit-backdrop-filter: var(--blur-value);
  border: 1px solid var(--card-border-dark);
  border-radius: var(--radius-lg);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

/* Button UI */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--text-dark);
  box-shadow: 0 4px 20px rgba(184, 255, 0, 0.25);
}

.btn-primary:hover {
  background: var(--accent);
  box-shadow: var(--shadow-glow-strong);
  transform: translateY(-2px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--text-dark);
  border: 1px solid rgba(0, 0, 0, 0.08);
  backdrop-filter: var(--blur-value);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 1);
  border-color: rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.btn-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: currentColor;
  position: relative;
  transition: var(--transition-fast);
}

.btn-arrow svg {
  width: 10px;
  height: 10px;
  fill: none;
  stroke: var(--bg-light);
  stroke-width: 2.5;
  transition: var(--transition-fast);
}

.btn-primary .btn-arrow svg {
  stroke: var(--primary);
}

.btn-primary:hover .btn-arrow svg {
  stroke: var(--accent);
}

.btn:hover .btn-arrow {
  transform: translate(2px, -2px);
}

/* Badge/Tag */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  background: rgba(184, 255, 0, 0.08);
  border: 1px solid rgba(184, 255, 0, 0.2);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
  animation: pulse-glow 2s infinite;
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  z-index: 999;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(247, 248, 248, 0.7);
  backdrop-filter: var(--blur-value);
  -webkit-backdrop-filter: var(--blur-value);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-dark);
  text-decoration: none;
}

.logo-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--primary);
  filter: drop-shadow(0 0 8px rgba(184, 255, 0, 0.5));
}

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

.nav-link {
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  opacity: 0.75;
  transition: var(--transition-fast);
  position: relative;
  padding: 6px 0;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--primary);
  transition: var(--transition-fast);
  box-shadow: 0 0 8px var(--primary);
}

.nav-link:hover {
  opacity: 1;
}

.nav-link:hover::after {
  width: 100%;
}

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

.nav-launch-btn {
  padding: 10px 22px;
  font-size: 0.9rem;
  background: var(--primary);
  color: var(--text-dark);
  border-radius: 100px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(184, 255, 0, 0.2);
}

.nav-launch-btn:hover {
  background: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: var(--transition-fast);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  padding: 120px 5% 80px 5%;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 60px;
  position: relative;
  overflow: hidden;
}

/* Background grid details */
.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px),
    radial-gradient(rgba(0, 0, 0, 0.02) 1px, transparent 1px);
  background-size: 40px 40px;
  background-position:
    0 0,
    20px 20px;
  mask-image: radial-gradient(ellipse at center, black, transparent 80%);
  -webkit-mask-image: radial-gradient(
    ellipse at center,
    black,
    transparent 80%
  );
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 10;
}

.hero-title {
  font-size: clamp(3.2rem, 5vw, 4.8rem);
  margin-bottom: 24px;
  color: var(--text-dark);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
}

.hero-title span.glow-text {
  color: #101010;
  background: linear-gradient(90deg, #101010, #303030);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-title span.green-text {
  color: var(--accent);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(90, 255, 0, 0.15));
}

.hero-subtitle {
  font-size: 1.15rem;
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--text-muted);
}

.hero-cta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

/* Hero Right Side - 3D Container */
.hero-visual-wrapper {
  position: relative;
  height: 500px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
}

.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* 3D Glass Cube Container */
.cube-container {
  width: 240px;
  height: 240px;
  perspective: 1000px;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.glass-cube {
  width: 100%;
  height: 100%;
  position: absolute;
  transform-style: preserve-3d;
  animation: rotate-cube 20s linear infinite;
}

.cube-face {
  position: absolute;
  width: 240px;
  height: 240px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 0 30px rgba(255, 255, 255, 0.15),
    0 0 10px rgba(0, 0, 0, 0.02);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Cube Facings positioning */
.cube-front {
  transform: rotateY(0deg) translateZ(120px);
}
.cube-back {
  transform: rotateY(180deg) translateZ(120px);
}
.cube-right {
  transform: rotateY(90deg) translateZ(120px);
}
.cube-left {
  transform: rotateY(-90deg) translateZ(120px);
}
.cube-top {
  transform: rotateX(90deg) translateZ(120px);
}
.cube-bottom {
  transform: rotateX(-90deg) translateZ(120px);
}

/* Cube Inner Glowing Core */
.cube-core {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100px;
  height: 100px;
  background: radial-gradient(
    circle,
    var(--accent) 0%,
    rgba(184, 255, 0, 0.8) 40%,
    rgba(90, 255, 0, 0) 70%
  );
  border-radius: 28px;
  box-shadow: var(--shadow-glow-strong);
  filter: blur(2px);
  animation: pulse-core 3s ease-in-out infinite alternate;
  z-index: 1;
}

.cube-core-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  color: var(--text-dark);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cube-core-logo svg {
  width: 32px;
  height: 32px;
  fill: var(--text-dark);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.cube-core-logo span {
  font-family: var(--font-display);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Floating orbiting cards around cube */
.orbit-node {
  position: absolute;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  backdrop-filter: var(--blur-value);
  -webkit-backdrop-filter: var(--blur-value);
  box-shadow:
    var(--shadow-soft),
    0 0 15px rgba(0, 0, 0, 0.02);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition:
    transform 0.2s ease-out,
    border-color 0.2s;
}

.orbit-node:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.orbit-node svg {
  width: 22px;
  height: 22px;
  fill: var(--text-dark);
}

/* Positioning Orbiting items */
.node-realestate {
  top: 12%;
  left: 8%;
  animation: float-slow 6s ease-in-out infinite;
}
.node-gold {
  top: 5%;
  right: 15%;
  animation: float-slow 7s ease-in-out infinite 1s;
}
.node-painting {
  top: 40%;
  right: -5%;
  animation: float-slow 5s ease-in-out infinite 0.5s;
}
.node-solar {
  bottom: 8%;
  right: 10%;
  animation: float-slow 6.5s ease-in-out infinite 1.5s;
}
.node-pipeline {
  bottom: 5%;
  left: 15%;
  animation: float-slow 5.5s ease-in-out infinite 2s;
}
.node-bonds {
  top: 52%;
  left: -8%;
  animation: float-slow 6s ease-in-out infinite 2.5s;
}

/* Connected SVG Lines */
.connector-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.connector-line {
  stroke: rgba(184, 255, 0, 0.3);
  stroke-width: 1.5;
  stroke-dasharray: 6 6;
  animation: stroke-dash 30s linear infinite;
  fill: none;
}

/* Stats Section */
.stats-section {
  padding: 0 5% 100px 5%;
  position: relative;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 40px;
}

.stat-card {
  text-align: center;
  padding: 24px 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-card:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 4vw, 3.8rem);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  background: linear-gradient(
    135deg,
    var(--text-dark) 40%,
    rgba(90, 255, 0, 0.9)
  );
  background-clip: text;
  -webkit-background-clip: text;
  letter-spacing: -0.03em;
}

.stat-card:hover .stat-num {
  animation: text-glow-pulse 1.5s infinite alternate;
}

.stat-label {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
}

/* Section Header Styles */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 70px auto;
}

.section-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: inline-block;
}

.section-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: var(--text-dark);
  margin-bottom: 20px;
}

.section-title span.highlight-green {
  color: var(--accent);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* How It Works Section */
.how-it-works {
  padding: 100px 5%;
  position: relative;
}

.timeline-container {
  position: relative;
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 30px;
}

.timeline-progress-line {
  position: absolute;
  top: 50px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: rgba(0, 0, 0, 0.05);
  z-index: 1;
}

.timeline-active-line {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  box-shadow: 0 0 10px var(--accent);
  transition: width 1.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-icon-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-soft);
  backdrop-filter: var(--blur-value);
  -webkit-backdrop-filter: var(--blur-value);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  transition: var(--transition-smooth);
}

.step-icon-wrapper::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  z-index: -1;
  opacity: 0;
  transition: var(--transition-smooth);
}

.step-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--text-dark);
  color: var(--primary);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--bg-light);
  box-shadow: var(--shadow-soft);
}

.step-icon-wrapper svg {
  width: 40px;
  height: 40px;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.timeline-step:hover .step-icon-wrapper {
  transform: translateY(-10px) scale(1.05);
  border-color: transparent;
  box-shadow: var(--shadow-glow);
}

.timeline-step:hover .step-icon-wrapper::before {
  opacity: 1;
}

.timeline-step:hover .step-icon-wrapper svg {
  stroke: var(--text-dark);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.step-desc {
  font-size: 0.9rem;
  max-width: 220px;
  color: var(--text-muted);
}

/* Asset Classes */
.asset-classes {
  padding: 100px 5%;
}

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

.asset-card {
  padding: 0;
  display: flex;
  flex-direction: column;
  cursor: none;
}

.asset-img-wrapper {
  width: 100%;
  height: 260px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  position: relative;
}

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

.asset-card:hover .asset-img {
  transform: scale(1.1);
}

.asset-card-content {
  padding: 30px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  position: relative;
}

.asset-title {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.asset-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  flex-grow: 1;
}

.asset-btn-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  transition: var(--transition-fast);
  box-shadow: 0 4px 10px rgba(184, 255, 0, 0.15);
}

.asset-btn-circle svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.5;
  transition: var(--transition-fast);
}

.asset-card:hover .asset-btn-circle {
  background: var(--accent);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1) translate(2px, -2px);
}

.asset-card:hover {
  transform: translateY(-8px);
  border-color: rgba(90, 255, 0, 0.15);
  box-shadow:
    var(--shadow-glow),
    0 20px 50px -10px rgba(0, 0, 0, 0.06);
}

/* Security Section */
.security-section {
  padding: 100px 5%;
  background: var(--bg-dark);
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.security-container {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
  position: relative;
  z-index: 3;
}

/* Background gradient nodes in Security section */
.security-section::before {
  content: "";
  position: absolute;
  top: -20%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(90, 255, 0, 0.06) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

.security-section::after {
  content: "";
  position: absolute;
  bottom: -20%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(184, 255, 0, 0.05) 0%,
    rgba(0, 0, 0, 0) 70%
  );
  z-index: 1;
  pointer-events: none;
}

.security-content {
  position: relative;
}

.security-label {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: inline-block;
}

.security-title {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 50px;
  line-height: 1.1;
}

.security-title span.highlight-white {
  color: #ffffff;
}

.security-title span.highlight-green {
  color: var(--accent);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 15px rgba(90, 255, 0, 0.2));
}

.security-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px 30px;
}

.sec-feat-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sec-feat-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.sec-feat-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 255, 0, 0.08);
  border: 1px solid rgba(184, 255, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(184, 255, 0, 0.05);
  transition: var(--transition-fast);
}

.sec-feat-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
}

.sec-feat-title {
  font-size: 1.25rem;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-light);
}

.sec-feat-desc {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
}

.sec-feat-item:hover .sec-feat-icon {
  background: var(--primary);
  box-shadow: var(--shadow-glow);
  transform: scale(1.1);
}

.sec-feat-item:hover .sec-feat-icon svg {
  stroke: var(--text-dark);
}

/* Security Right Side - 3D Shield */
.security-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 450px;
}

.shield-wrapper {
  position: relative;
  width: 280px;
  height: 280px;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.shield-pedestal {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 255, 0, 0.3) 0%,
    rgba(184, 255, 0, 0.05) 50%,
    transparent 70%
  );
  border: 2px solid rgba(184, 255, 0, 0.15);
  box-shadow: 0 0 40px rgba(184, 255, 0, 0.2);
  animation: pedestal-pulse 4s ease-in-out infinite alternate;
}

.shield-pedestal::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 1px dashed var(--primary);
  animation: spin-slow 20s linear infinite;
}

.glowing-shield {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-shield 4s ease-in-out infinite alternate;
  transform-style: preserve-3d;
  filter: drop-shadow(0 0 35px rgba(90, 255, 0, 0.45));
}

.glowing-shield svg {
  width: 160px;
  height: 200px;
  fill: url(#shieldGrad);
  stroke: var(--accent);
  stroke-width: 3;
  filter: drop-shadow(0 0 15px rgba(90, 255, 0, 0.3));
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 100px 5%;
}

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

.eco-card {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.eco-icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: rgba(184, 255, 0, 0.06);
  border: 1px solid rgba(184, 255, 0, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  transition: var(--transition-smooth);
}

.eco-icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 1.5;
  transition: var(--transition-smooth);
}

.eco-card-title {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.eco-card-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 30px;
  flex-grow: 1;
}

.eco-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-light);
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  align-self: flex-end;
}

.eco-arrow svg {
  width: 12px;
  height: 12px;
  fill: none;
  stroke: var(--text-dark);
  stroke-width: 2.5;
  transition: var(--transition-fast);
}

/* Ecosystem Hover effect */
.eco-card:hover {
  transform: translateY(-12px);
  border-color: rgba(184, 255, 0, 0.25);
  box-shadow:
    var(--shadow-glow),
    0 20px 40px rgba(0, 0, 0, 0.04);
}

.eco-card:hover .eco-icon-wrapper {
  background: var(--primary);
  border-color: var(--accent);
  box-shadow: var(--shadow-glow);
}

.eco-card:hover .eco-icon-wrapper svg {
  stroke: var(--text-dark);
}

.eco-card:hover .eco-arrow {
  background: var(--primary);
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(184, 255, 0, 0.2);
}

.eco-card:hover .eco-arrow svg {
  stroke: var(--text-dark);
  transform: translate(1px, -1px);
}

/* Vision Section */
.vision-section {
  padding: 100px 5%;
}

.vision-card {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  padding: 80px;
  gap: 60px;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.vision-left {
  max-width: 500px;
}

.vision-title {
  font-size: clamp(2.2rem, 3.5vw, 3rem);
  margin-bottom: 24px;
  color: var(--text-dark);
}

.vision-title span.glow-green {
  color: var(--accent);
  background: linear-gradient(90deg, var(--primary), var(--accent));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.vision-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 40px;
}

/* Vision Right Side - Holographic Earth */
.vision-right {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 400px;
  position: relative;
}

.earth-pedestal {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%) rotateX(75deg);
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(184, 255, 0, 0.2) 0%,
    rgba(90, 255, 0, 0.02) 60%,
    transparent 80%
  );
  border: 1px solid rgba(184, 255, 0, 0.1);
  box-shadow: 0 0 50px rgba(90, 255, 0, 0.1);
  animation: pedestal-pulse 4s ease-in-out infinite alternate;
}

.hologram-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px dashed rgba(184, 255, 0, 0.3);
  box-shadow: 0 0 20px rgba(184, 255, 0, 0.05);
  animation: spin-slow 25s linear infinite;
  transform-style: preserve-3d;
}

.ring-1 {
  width: 320px;
  height: 320px;
  transform: rotateX(70deg) rotateY(15deg);
  animation: spin-slow 30s linear infinite;
}

.ring-2 {
  width: 280px;
  height: 280px;
  transform: rotateX(-65deg) rotateY(20deg);
  animation: spin-slow 20s linear infinite reverse;
}

.ring-3 {
  width: 360px;
  height: 360px;
  border: 1px solid rgba(184, 255, 0, 0.08);
  transform: rotateX(80deg) rotateY(-10deg);
}

.holographic-earth-container {
  width: 220px;
  height: 220px;
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: float-slow 8s ease-in-out infinite alternate;
  filter: drop-shadow(0 0 30px rgba(90, 255, 0, 0.4));
}

/* Hologram Globe Inner styling */
.globe-sphere {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(255, 255, 255, 0.02) 0%,
    rgba(90, 255, 0, 0.05) 50%,
    rgba(90, 255, 0, 0.15) 80%
  );
  border: 1px solid rgba(184, 255, 0, 0.3);
  position: relative;
  overflow: hidden;
  box-shadow:
    inset -10px -10px 40px rgba(90, 255, 0, 0.2),
    inset 10px 10px 30px rgba(255, 255, 255, 0.03);
}

.globe-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='440' height='220' viewBox='0 0 440 220'%3E%3Cpath fill='%235AFF00' opacity='0.3' d='M10 20h4v2h-4zm20 30h6v3h-6zm50-10h12v4H80zm50 40h8v2h-8zm60-60h14v5h-14zm40 80h8v3h-8zm40-50h12v4h-12zm40 20h6v3h-6zm40-30h10v4H390zM20 120h8v3h-8zm40 30h12v4H60zm60-40h6v3h-6zm40 60h14v5h-14zm50-30h8v2h-8zm40 40h10v4h-10zm40-50h12v4h-12zm40 20h6v3h-6zm30 10h6v3h-6zM30 160h12v4H30zm80 30h8v2h-8zm60-10h14v5h-14zm50-30h6v3h-6zm40 40h10v4h-10z'/%3E%3C/svg%3E");
  background-size: 50% 100%;
  background-repeat: repeat-x;
  animation: move-map 20s linear infinite;
  opacity: 0.85;
}

.globe-grid {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    linear-gradient(rgba(184, 255, 0, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 255, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

/* Hologram Scanning Line */
.hologram-scanner {
  position: absolute;
  top: -10%;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 15px var(--accent);
  opacity: 0.7;
  animation: scan-line 4s ease-in-out infinite;
  z-index: 6;
}

/* Footer Section */
.footer {
  background: var(--bg-light);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  padding: 80px 5% 40px 5%;
}

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

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.footer-partners {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.partner-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 500;
}

.partner-logo-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-dark);
}

.partner-logo-item svg {
  width: 20px;
  height: 20px;
  fill: var(--text-dark);
}

.footer-socials {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  font-weight: 600;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-icon-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition-fast);
  text-decoration: none;
}

.social-icon-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.social-icon-btn:hover {
  background: var(--primary);
  border-color: var(--accent);
  color: var(--text-dark);
  box-shadow: var(--shadow-glow);
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.85rem;
  flex-wrap: wrap;
  gap: 20px;
}

/* Animations Definitions */

/* Fade-Up Scroll Reveal class base */
.reveal {
  opacity: 0;
  filter: blur(5px);
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    filter 0.8s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, filter, transform;
}

.reveal.reveal-active {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

/* Stagger transition delay logic handles via JS or custom style helper tags */

@keyframes pulse-glow {
  0% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 255, 0, 0.7);
  }
  70% {
    transform: scale(1.1);
    box-shadow: 0 0 0 10px rgba(90, 255, 0, 0);
  }
  100% {
    transform: scale(0.9);
    box-shadow: 0 0 0 0 rgba(90, 255, 0, 0);
  }
}

@keyframes rotate-cube {
  0% {
    transform: rotateX(-15deg) rotateY(0deg);
  }
  100% {
    transform: rotateX(-15deg) rotateY(360deg);
  }
}

@keyframes pulse-core {
  0% {
    transform: translate(-50%, -50%) scale(0.85);
    box-shadow: 0 0 25px rgba(90, 255, 0, 0.4);
  }
  100% {
    transform: translate(-50%, -50%) scale(1.05);
    box-shadow: 0 0 50px rgba(90, 255, 0, 0.7);
  }
}

@keyframes float-slow {
  0% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

@keyframes stroke-dash {
  to {
    stroke-dashoffset: -1000;
  }
}

@keyframes text-glow-pulse {
  from {
    text-shadow: 0 0 10px rgba(90, 255, 0, 0);
  }
  to {
    text-shadow: 0 0 15px rgba(90, 255, 0, 0.3);
  }
}

@keyframes float-shield {
  0% {
    transform: translateY(-5px) rotateY(-5deg) rotateX(5deg);
  }
  100% {
    transform: translateY(5px) rotateY(5deg) rotateX(-5deg);
  }
}

@keyframes pedestal-pulse {
  0% {
    box-shadow: 0 0 30px rgba(184, 255, 0, 0.1);
    border-color: rgba(184, 255, 0, 0.05);
  }
  100% {
    box-shadow: 0 0 60px rgba(184, 255, 0, 0.35);
    border-color: rgba(184, 255, 0, 0.25);
  }
}

@keyframes spin-slow {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes move-map {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -440px 0;
  }
}

@keyframes scan-line {
  0% {
    top: 0%;
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.8;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}

/* Mobile Responsive Adjustments */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 140px;
    gap: 40px;
  }

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

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .stat-card:nth-child(2n) {
    border-right: none;
  }

  .stat-card:nth-last-child(-n + 2) {
    border-bottom: none;
  }

  .asset-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .security-container {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .security-visual {
    height: 350px;
  }

  .ecosystem-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .vision-card {
    grid-template-columns: 1fr;
    padding: 50px;
    gap: 40px;
    text-align: center;
  }

  .vision-left {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .vision-right {
    height: 300px;
  }
}

@media (max-width: 768px) {
  /* Navigation Mobile */
  .menu-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: rgba(247, 248, 248, 0.98);
    backdrop-filter: var(--blur-value);
    flex-direction: column;
    justify-content: center;
    gap: 40px;
    padding: 80px 40px;
    transition: var(--transition-smooth);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
  }

  .nav-menu.active {
    right: 0;
  }

  .navbar-mobile-open .menu-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar-mobile-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar-mobile-open .menu-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -7px);
  }

  .timeline-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
    margin-top: 40px;
  }

  .timeline-progress-line {
    top: 50px;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: calc(100% - 100px);
  }

  .timeline-step {
    flex-direction: row;
    text-align: left;
    gap: 24px;
    width: 100%;
    max-width: 400px;
  }

  .step-icon-wrapper {
    margin-bottom: 0;
    flex-shrink: 0;
  }

  .step-desc {
    max-width: 100%;
  }

  .asset-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

  .ecosystem-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }

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

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.5rem;
  }

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

  .stat-card {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 0;
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .timeline-step {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .security-features {
    grid-template-columns: 1fr;
  }

  .vision-card {
    padding: 30px 20px;
  }
}
