/* AXK INFRA Main Stylesheet - Renovated */

:root {
  /* Main color palette - Dark green with teal/aqua accents */
  --background-dark: #00120f;
  --background-darker: #000d0a;
  --surface-1: #001a14;
  --surface-2: #00271e;
  --primary: #00e0b0;
  --primary-glow: rgba(0, 224, 176, 0.7);
  --primary-soft: rgba(0, 224, 176, 0.2);
  --secondary: #00b6aa;
  --accent: #60ffc8;
  --text-primary: #ffffff;
  --text-secondary: #b8f4e8;
  --text-muted: #64a99c;
  
  /* Animation speeds */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Shadows and effects */
  --glow-sm: 0 0 10px rgba(0, 224, 176, 0.3);
  --glow-md: 0 0 20px rgba(0, 224, 176, 0.5);
  --glow-lg: 0 0 30px rgba(0, 224, 176, 0.7);
  --shadow-normal: 0 8px 16px rgba(0, 18, 15, 0.5);
  --card-border: 1px solid rgba(0, 224, 176, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  width: 100%;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--background-dark);
  color: var(--text-primary);
  line-height: 1.5;
  overflow-x: hidden;
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

p {
  margin-bottom: 1rem;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  z-index: 2;
  position: relative;
}

/* Background Effects */
.noise-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  opacity: 0.04;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.gradient-bg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(135deg, var(--background-darker) 0%, var(--background-dark) 100%);
  background-attachment: fixed;
}

/* Utility Classes */
.glow-button {
  display: inline-block;
  background: linear-gradient(to right, var(--primary), var(--secondary));
  color: var(--background-dark);
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--glow-sm);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
  border: none;
  text-align: center;
}

.glow-button:hover {
  box-shadow: var(--glow-md);
  transform: translateY(-2px);
}

.glow-button:active {
  transform: translateY(1px);
  box-shadow: var(--glow-sm);
}

.glow-button::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(transparent, rgba(255, 255, 255, 0.1), transparent);
  transform: rotate(30deg);
  opacity: 0;
  transition: var(--transition-slow);
}

.glow-button:hover::after {
  opacity: 1;
  transition: 0s;
  transform: rotate(30deg) translate(-30%, -30%);
}

.glow-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--background-dark), 0 0 0 5px var(--primary-soft);
}

.outline-button {
  display: inline-block;
  background: transparent;
  color: var(--primary);
  padding: 0.75rem 1.5rem;
  border-radius: 0.25rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: 1px solid var(--primary);
  transition: var(--transition-normal);
  text-align: center;
}

.outline-button:hover {
  background: rgba(0, 224, 176, 0.1);
  box-shadow: var(--glow-sm);
  transform: translateY(-2px);
}

.outline-button:active {
  transform: translateY(1px);
  box-shadow: none;
}

.outline-button:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--background-dark), 0 0 0 5px var(--primary-soft);
}

.glow-link {
  color: var(--primary);
  position: relative;
  transition: var(--transition-normal);
}

.glow-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-fast);
}

.glow-link:hover {
  color: var(--accent);
  text-shadow: var(--glow-sm);
}

.glow-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.glow-link:focus {
  outline: none;
  text-shadow: var(--glow-sm);
}

.hex-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
  width: 100%;
  max-width: 300px;
}

.hex-divider span {
  flex-grow: 1;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--primary-soft));
}

.hex-divider span:last-child {
  background: linear-gradient(to left, transparent, var(--primary-soft));
}

.hex-icon {
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  flex-shrink: 0;
}

.arrow-link {
  display: inline-flex;
  align-items: center;
  color: var(--primary);
  font-weight: 500;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.arrow-link i {
  transition: var(--transition-normal);
}

.arrow-link:hover {
  color: var(--accent);
}

.arrow-link:hover i {
  transform: translateX(4px);
}

.arrow-link:focus {
  outline: none;
  text-shadow: var(--glow-sm);
}

/* Header & Navigation */
.site-header {
  position: fixed !important; 
  top: 0 !important;
  left: 0;
  width: 100%;
  z-index: 9999; 
  background: rgba(0, 18, 15, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: var(--transition-normal);
  padding: 1.5rem 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  will-change: transform; 
  transform: none !important;
}

.site-header.scrolled {
  padding: 0.75rem 0;
  background: rgba(0, 18, 15, 0.95);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.site-header.hidden {
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-wrapper {
  width: 2.5rem;
  height: 2.5rem;
  position: relative;
}

.logo {
  width: 100%;
  height: 100%;
  transition: var(--transition-normal);
  box-shadow: var(--glow-sm);
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links .nav-item {
  color: var(--text-secondary);
  font-weight: 500;
  position: relative;
  padding: 0.25rem 0;
}

.nav-links .nav-item::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform var(--transition-normal);
}

.nav-links .nav-item:hover {
  color: var(--primary);
}

.nav-links .nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links .nav-item.active {
  color: var(--primary);
}

.nav-links .nav-item.active::after {
  transform: scaleX(1);
}

.nav-links .nav-item:focus {
  outline: none;
  color: var(--primary);
}

.nav-links .nav-item:focus::after {
  transform: scaleX(1);
}

/* Improved Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  cursor: pointer;
  z-index: 110;
  position: relative;
}

.mobile-menu-toggle span {
  width: 100%;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--transition-fast);
  transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
  background-color: var(--primary);
}

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

.mobile-menu-toggle.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
  background-color: var(--primary);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed !important;
  top: 0 !important;
  right: -100% !important;
  width: 100% !important;
  max-width: 380px !important;
  height: 100vh !important;
  z-index: 105 !important;
  transition: var(--transition-normal) !important;
}

.mobile-menu.active {
  right: 0 !important;
}

.mobile-menu-container {
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 224, 176, 0.1);
  margin-bottom: 2rem;
}

.mobile-close-btn {
  width: 28px;
  height: 28px;
  position: relative;
  cursor: pointer;
}

.mobile-close-btn span {
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  top: 50%;
  left: 0;
}

.mobile-close-btn span:nth-child(1) {
  transform: rotate(45deg);
}

.mobile-close-btn span:nth-child(2) {
  transform: rotate(-45deg);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: auto;
}

.mobile-nav-links .mobile-nav-item {
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 1.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 224, 176, 0.1);
  transition: var(--transition-normal);
}

.mobile-nav-links .mobile-nav-item:hover,
.mobile-nav-links .mobile-nav-item.active {
  color: var(--primary);
  padding-left: 0.5rem;
}

.mobile-nav-links .mobile-nav-item:focus {
  outline: none;
  color: var(--primary);
}

.mobile-cta {
  margin-top: 1.5rem;
  margin-bottom: 2rem;
}

.mobile-cta .glow-button {
  width: 100%;
  padding: 1rem;
}

.mobile-social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(0, 224, 176, 0.1);
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 18, 15, 0.8);
  z-index: 104;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 8rem 0 4rem;
  padding-top: 8rem;
}

.hero-content {
  max-width: 750px;
  margin-bottom: 2rem;
}

.main-title {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.main-title span {
  color: var(--primary);
  display: block;
}

.subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

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

.big-logo-container {
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
}

.hex-logo-large {
  width: 100%;
  height: 100%;
  border: 2px solid var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  animation: rotate-slow 20s linear infinite, pulse-opacity 5s ease-in-out infinite alternate;
  opacity: 0.2;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--primary-soft) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(40px);
  animation: pulse-glow 5s ease-in-out infinite alternate;
}

@keyframes rotate-slow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulse-opacity {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes pulse-glow {
  0% {
    width: 280px;
    height: 280px;
    opacity: 0.4;
  }
  100% {
    width: 320px;
    height: 320px;
    opacity: 0.6;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  animation: fade-in 1s ease-in-out 1s forwards, bounce 2s ease-in-out 2s infinite;
  opacity: 0;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

.mouse {
  width: 24px;
  height: 40px;
  border: 2px solid var(--text-muted);
  border-radius: 12px;
  position: relative;
}

.mouse::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background-color: var(--primary);
  border-radius: 2px;
  animation: mouse-scroll 2s infinite;
}

@keyframes mouse-scroll {
  0% {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  50% {
    opacity: 0.5;
    transform: translate(-50%, 10px);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, 20px);
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header.left-align {
  text-align: left;
}

.section-header.left-align .hex-divider {
  margin-left: 0;
}

.section-header h2 {
  font-size: 2.25rem;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.feature-card {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 0.5rem;
  padding: 2rem;
  transition: var(--transition-normal);
  border: var(--card-border);
  position: relative;
  overflow: hidden;
  height: 100%;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
  border-color: var(--primary-soft);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.feature-card:hover .feature-icon {
  box-shadow: var(--glow-sm);
  background: var(--primary);
  color: var(--background-dark);
  transform: rotate(-5deg) scale(1.05);
}

.feature-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.feature-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-text h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  transition: transform var(--transition-normal);
}

.feature-item:hover {
  transform: translateX(5px);
}

.feature-item i {
  color: var(--primary);
  font-size: 1.25rem;
  margin-top: 0.125rem;
}

.feature-item span {
  color: var(--text-secondary);
}

.terminal-window {
  background-color: var(--background-darker);
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--surface-2);
  font-family: monospace;
  min-height: 300px;
  box-shadow: var(--shadow-normal);
}

.terminal-header {
  background-color: var(--surface-2);
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
  margin-right: 1rem;
}

.terminal-buttons span {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--text-muted);
}

.terminal-buttons span:first-child {
  background-color: #ff6057;
}

.terminal-buttons span:nth-child(2) {
  background-color: #ffbd2e;
}

.terminal-buttons span:last-child {
  background-color: #27c93f;
}

.terminal-title {
  flex-grow: 1;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.terminal-body {
  padding: 1rem;
  line-height: 1.6;
  font-size: 0.9rem;
}

.terminal-body .line {
  margin-bottom: 0.5rem;
  white-space: nowrap;
}

.terminal-body .command {
  color: var(--primary);
}

.terminal-body .success {
  color: #27c93f;
}

.terminal-body .blink {
  animation: cursor-blink 1s infinite;
}

@keyframes cursor-blink {
  0%, 50% {
    opacity: 1;
  }
  51%, 100% {
    opacity: 0;
  }
}

/* Modules Section */
.modules-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--surface-1);
}

.modules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.module-card {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 0.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  border: var(--card-border);
  transition: var(--transition-normal);
  z-index: 1;
  height: 100%;
}

.module-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--glow-sm);
}

.module-card:hover .glow-border {
  opacity: 1;
}

.module-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
  position: relative;
  transition: var(--transition-normal);
}

.module-card:hover .module-icon {
  transform: rotate(-5deg) scale(1.1);
}

.insurance-icon {
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.agri-icon {
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.governance-icon {
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.steescnate-icon {
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.module-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.module-details {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.glow-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  border: 1px solid var(--primary);
  box-shadow: var(--glow-sm);
  opacity: 0;
  transition: var(--transition-normal);
  pointer-events: none;
}

.tech-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary-soft), transparent);
  width: 100%;
  opacity: 0.3;
}

.tech-line:nth-child(1) {
  top: 15%;
  animation: tech-line-slide 15s infinite linear;
}

.tech-line:nth-child(2) {
  top: 45%;
  animation: tech-line-slide 20s infinite linear reverse;
}

.tech-line:nth-child(3) {
  top: 75%;
  animation: tech-line-slide 25s infinite linear;
}

@keyframes tech-line-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Developers Section */
.developers-section {
  padding: 6rem 0;
  position: relative;
}

.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.dev-feature-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.dev-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: transform var(--transition-normal);
}

.dev-feature:hover {
  transform: translateX(5px);
}

.dev-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.dev-feature:hover .dev-icon {
  background: rgba(0, 224, 176, 0.2);
  box-shadow: var(--glow-sm);
  transform: rotate(-5deg);
}

.dev-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.dev-info span {
  color: var(--text-secondary);
}

.code-style {
  font-family: monospace;
  background-color: rgba(0, 224, 176, 0.05);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.875rem;
  display: inline-block;
  transition: var(--transition-normal);
}

.dev-feature:hover .code-style {
  background-color: rgba(0, 224, 176, 0.1);
}

.dev-cta {
  margin-top: 2rem;
}

.token-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.token-icon {
  width: 8rem;
  height: 8rem;
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  border-radius: 50%;
  box-shadow: var(--glow-md);
  animation: token-pulse 4s ease-in-out infinite alternate;
}

@keyframes token-pulse {
  0% {
    transform: scale(1);
    box-shadow: var(--glow-sm);
  }
  100% {
    transform: scale(1.05);
    box-shadow: var(--glow-md);
  }
}

.token-stats {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.token-stat {
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: transform var(--transition-normal);
}

.token-stat:hover {
  transform: translateX(5px);
}

.stat-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  color: var(--primary);
  font-size: 1rem;
  flex-shrink: 0;
  transition: var(--transition-normal);
}

.token-stat:hover .stat-icon {
  background: rgba(0, 224, 176, 0.2);
  box-shadow: var(--glow-sm);
  transform: rotate(-5deg);
}

.stat-info {
  color: var(--text-secondary);
}

.stat-info strong {
  color: var(--primary);
}

/* Economics Section Styles */
.economics-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--background-dark);
  overflow: hidden;
}

.economics-section .section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.economics-section .section-intro {
  width: 100%;
  margin-top: 0.5rem;
  max-width: 800px;
}

.section-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: var(--text-secondary);
  font-size: 1.125rem;
}

.tokenomics-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 4rem;
}

/* Token Card */
.token-card {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 1rem;
  border: 1px solid var(--primary-soft);
  overflow: hidden;
  box-shadow: var(--shadow-normal);
  transition: all 0.3s ease;
}

.token-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
  border-color: var(--primary);
}

.token-visual {
  padding: 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  border-bottom: 1px solid var(--surface-2);
}

.token-icon-wrapper {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
}

.token-icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}

.token-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(0, 224, 176, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  animation: pulse-glow 3s ease-in-out infinite alternate;
}

.token-info {
  flex-grow: 1;
}

.token-info h3 {
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.token-info h3::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 0;
  width: 2rem;
  height: 2px;
  background: linear-gradient(to right, var(--primary), transparent);
}

.token-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition-normal);
}

.metric:hover {
  transform: translateY(-3px);
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.metric-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.token-details {
  padding: 2rem;
}

.token-detail-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  transition: var(--transition-normal);
}

.token-detail-item:last-child {
  margin-bottom: 0;
}

.token-detail-item:hover {
  transform: translateX(5px);
}

.detail-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  background: rgba(0, 224, 176, 0.1);
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.token-detail-item:hover .detail-icon {
  background: rgba(0, 224, 176, 0.2);
  transform: rotate(-5deg);
  box-shadow: var(--glow-sm);
}

.detail-content h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.detail-content p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Token Distribution */
.token-distribution {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 1rem;
  border: 1px solid var(--primary-soft);
  padding: 2rem;
  box-shadow: var(--shadow-normal);
  transition: all 0.3s ease;
}

.token-distribution:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
  border-color: var(--primary);
}

.token-distribution h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

.token-distribution h3::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.chart-container {
  position: relative;
  height: 300px;
  margin-bottom: 1.5rem;
}

.distribution-legend {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition-normal);
}

.legend-item:hover {
  transform: translateX(5px);
  color: var(--primary);
}

.legend-color {
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.legend-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
}

/* Token Utilities */
.token-utilities {
  margin-bottom: 4rem;
}

.token-utilities h3 {
  font-size: 1.75rem;
  margin-bottom: 2.5rem;
  color: var(--text-primary);
  text-align: center;
  position: relative;
}

.token-utilities h3::after {
  content: '';
  position: absolute;
  bottom: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 3rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
}

.utilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.utility-card {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 1rem;
  border: 1px solid var(--primary-soft);
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.utility-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--primary), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.utility-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--glow-sm);
}

.utility-card:hover::before {
  opacity: 1;
}

.utility-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  margin: 0 auto 1.5rem;
  transition: all 0.3s ease;
}

.utility-card:hover .utility-icon {
  transform: scale(1.1) rotate(-5deg);
  background: rgba(0, 224, 176, 0.2);
  box-shadow: 0 0 15px rgba(0, 224, 176, 0.3);
}

.utility-card h4 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.utility-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* Token Performance */
.token-performance {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 1rem;
  border: 1px solid var(--primary-soft);
  padding: 2rem !important;
  margin-bottom: 4rem !important;
  box-shadow: var(--shadow-normal);
}

.token-performance h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  color: var(--text-primary);
  border-bottom: 1px solid rgba(0, 224, 176, 0.1);
}

.performance-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 1rem;
  flex-wrap: wrap;
}

.tab-button {
  padding: 0.5rem 1rem !important;
  border-radius: 0.5rem !important;
  background: transparent !important;
  color: var(--text-muted) !important;
  font-weight: 500 !important;
  border: 1px solid var(--surface-2) !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
}

.tab-button:hover {
  background: rgba(0, 224, 176, 0.05) !important;
  color: var(--text-secondary) !important;
  border-color: var(--primary-soft) !important;
}

.tab-button.active {
  background: rgba(0, 224, 176, 0.1) !important;
  color: var(--primary) !important;
  border-color: var(--primary-soft) !important;
}

.tab-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.performance-chart {
  height: 250px !important;
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
}

.performance-chart canvas {
  height: 100% !important;
  max-height: 250px;
  width: 100% !important;
  position: relative !important;
}

.chart-container.performance-chart {
  background: rgba(0, 18, 15, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
}

.chart-container.performance-chart canvas {
  transition: opacity 0.3s ease;
}

.chart-tooltip {
  background: rgba(0, 18, 15, 0.9) !important;
  border: 1px solid rgba(0, 224, 176, 0.3) !important;
  border-radius: 0.25rem !important;
  padding: 0.75rem !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow-normal) !important;
}

.performance-metrics {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)) !important;
  gap: 1.5rem !important;
  margin-top: 1.5rem !important;
}

.performance-metric {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  transition: var(--transition-normal);
}

.performance-metric:hover {
  transform: translateY(-3px);
}

.performance-metric .metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.performance-metric .metric-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
}

.performance-metric .metric-value.positive {
  color: #4CAF50;
}

.performance-metric .metric-value.negative {
  color: #F44336;
}

/* CTA */
.tokenomics-cta {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.tokenomics-cta h3 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  color: var(--text-primary);
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Background Elements */
.economics-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.hex-pattern {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%2300e0b0' fill-opacity='0.03' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.glow-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 224, 176, 0.1) 0%, transparent 70%);
  right: -200px;
  top: 20%;
  filter: blur(50px);
  animation: orb-pulse 10s ease-in-out infinite alternate;
}

@keyframes orb-pulse {
  0% {
    transform: scale(0.8);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.6;
  }
}

.tech-lines {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.tech-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 224, 176, 0.2), transparent);
  width: 120%;
  animation: tech-line-slide 15s linear infinite;
}

.tech-line:nth-child(1) {
  top: 25%;
  left: -20%;
}

.tech-line:nth-child(2) {
  top: 50%;
  left: -20%;
  animation-delay: 5s;
}

.tech-line:nth-child(3) {
  top: 75%;
  left: -20%;
  animation-delay: 10s;
}

@keyframes tech-line-slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(100%);
  }
}

/* SVG Animation */
.token-icon .hex-outline {
  animation: pulse-stroke 3s infinite alternate;
}

.token-icon .logo-text {
  animation: pulse-fill 4s infinite alternate;
}

@keyframes pulse-stroke {
  0% {
    stroke-width: 2;
    stroke: var(--primary);
  }
  100% {
    stroke-width: 2.5;
    stroke: var(--accent);
  }
}

@keyframes pulse-fill {
  0% {
    fill: var(--primary);
  }
  100% {
    fill: var(--accent);
  }
}

/* Ecosystem Section */
.ecosystem-section {
  padding: 6rem 0;
  position: relative;
  background-color: var(--surface-1);
}

.ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.ecosystem-card {
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 0.5rem;
  padding: 2rem;
  border: var(--card-border);
  transition: var(--transition-normal);
  height: 100%;
}

.ecosystem-card:hover {
  transform: translateY(-5px) scale(1.02);
  box-shadow: var(--glow-sm);
  border-color: var(--primary-soft);
}

.eco-icon {
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: var(--primary);
  transition: var(--transition-normal);
}

.ecosystem-card:hover .eco-icon {
  transform: rotate(-5deg) scale(1.1);
  background: rgba(0, 224, 176, 0.2);
  box-shadow: var(--glow-sm);
}

.ecosystem-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.ecosystem-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

/* CTA Section */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  font-size: 2.25rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.cta-content p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.cta-background .hex-pattern {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 150%;
  height: 150%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='28' height='49' viewBox='0 0 28 49'%3E%3Cg fill-rule='evenodd'%3E%3Cg id='hexagons' fill='%2300e0b0' fill-opacity='0.05' fill-rule='nonzero'%3E%3Cpath d='M13.99 9.25l13 7.5v15l-13 7.5L1 31.75v-15l12.99-7.5zM3 17.9v12.7l10.99 6.34 11-6.35V17.9l-11-6.34L3 17.9zM0 15l12.98-7.5V0h-2v6.35L0 12.69v2.3zm0 18.5L12.98 41v8h-2v-6.85L0 35.81v-2.3zM15 0v7.5L27.99 15H28v-2.31h-.01L17 6.35V0h-2zm0 49v-8l12.99-7.5H28v2.31h-.01L17 42.15V49h-2z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.2;
  animation: rotate-slow 80s linear infinite;
  pointer-events: none;
}

/* Footer */
.site-footer {
  background-color: var(--background-darker);
  padding: 4rem 0 2rem;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: 3rem 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.small-logo {
  width: 2rem;
  height: 2rem;
  background-color: var(--primary);
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 1L3 6.6v10.8L12 23l9-5.6V6.6L12 1zm0 2l7 4.3v8.4l-7 4.3-7-4.3V7.3l7-4.3z'/%3E%3C/svg%3E");
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

.footer-logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  color: var(--text-secondary);
  font-size: 1rem;
  transition: var(--transition-normal);
}

.social-link:hover {
  background: var(--primary);
  color: var(--background-dark);
  transform: translateY(-3px);
}

.social-link:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.footer-nav h4 {
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li {
  margin-bottom: 0.75rem;
}

.footer-nav a {
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-nav a:hover {
  color: var(--primary);
  padding-left: 0.5rem;
}

.footer-nav a:focus {
  outline: none;
  color: var(--primary);
  text-shadow: var(--glow-sm);
}

.footer-subscribe h4 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.footer-subscribe p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.subscribe-form input {
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  border: 1px solid var(--surface-2);
  background: rgba(0, 224, 176, 0.05);
  color: var(--text-primary);
  font-family: inherit;
  transition: var(--transition-fast);
}

.subscribe-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: var(--glow-sm);
}

.subscribe-form button {
  padding: 0.75rem;
  width: 100%;
}

.footer-bottom {
  border-top: 1px solid var(--surface-1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.copyright {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-links a:focus {
  outline: none;
  color: var(--primary);
  text-shadow: var(--glow-sm);
}

/* Scroll to top button */
.scroll-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  background: var(--surface-2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-normal);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  border: 1px solid var(--primary-soft);
}

.scroll-to-top.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-to-top:hover {
  background: var(--surface-1);
  color: var(--accent);
  box-shadow: var(--glow-sm);
  transform: translateY(-5px);
}

.scroll-to-top:focus {
  outline: none;
  box-shadow: 0 0 0 3px var(--primary-soft);
}

/* Modern Cookie Consent Styling */
.cookie-consent {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  max-width: 400px;
  background: rgba(0, 18, 15, 0.95);
  border: 1px solid var(--primary-soft);
  border-radius: 0.75rem;
  padding: 1.5rem;
  z-index: 1000;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.cookie-consent.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.cookie-consent::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.cookie-content {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.cookie-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie-icon svg {
  width: 100%;
  height: 100%;
}

.cookie-text h4 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}

.cookie-text p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.5;
  margin-bottom: 0;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cookie-btn {
  padding: 0.625rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  transition: all 0.3s ease;
  flex: 1;
  min-width: 100px;
  text-align: center;
  cursor: pointer;
  border: none;
  outline: none;
}

.cookie-btn.accept-all {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background-dark);
  box-shadow: 0 0 15px rgba(0, 224, 176, 0.3);
}

.cookie-btn.accept-all:hover {
  box-shadow: 0 0 20px rgba(0, 224, 176, 0.5);
  transform: translateY(-2px);
}

.cookie-btn.accept-all:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft), 0 0 15px rgba(0, 224, 176, 0.3);
}

.cookie-btn.customize {
  background: rgba(0, 224, 176, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary-soft);
}

.cookie-btn.customize:hover {
  background: rgba(0, 224, 176, 0.2);
  transform: translateY(-2px);
}

.cookie-btn.customize:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.cookie-btn.essential-only {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--surface-2);
}

.cookie-btn.essential-only:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-primary);
  transform: translateY(-2px);
}

.cookie-btn.essential-only:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--surface-2);
}

/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 10, 8, 0.8);
  z-index: 1001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.cookie-modal.show {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  width: 95%;
  max-width: 600px;
  max-height: 90vh;
  background: var(--background-dark);
  border-radius: 0.75rem;
  border: 1px solid var(--primary-soft);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--surface-2);
  position: relative;
}

.cookie-modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.cookie-modal-header h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--text-primary);
}

.close-modal {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close-modal:hover {
  background: rgba(0, 224, 176, 0.2);
  transform: rotate(90deg);
}

.close-modal:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.cookie-modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 1rem 1.5rem;
}

.cookie-category {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--surface-2);
}

.cookie-category:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.cookie-category-header h4 {
  font-size: 1rem;
  margin: 0 0 0.25rem;
  color: var(--text-primary);
}

.cookie-category-header p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  margin: 0;
}

.cookie-category-details {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.toggle-switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  margin-left: 1rem;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-switch label {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--surface-2);
  transition: .4s;
  border-radius: 2rem;
}

.toggle-switch label:before {
  position: absolute;
  content: "";
  height: 1.125rem;
  width: 1.125rem;
  left: 0.1875rem;
  bottom: 0.1875rem;
  background-color: var(--text-muted);
  transition: .4s;
  border-radius: 50%;
}

.toggle-switch input:checked + label {
  background-color: rgba(0, 224, 176, 0.3);
}

.toggle-switch input:checked + label:before {
  transform: translateX(1.5rem);
  background-color: var(--primary);
}

.toggle-switch input:focus + label {
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.toggle-switch.disabled {
  opacity: 0.6;
}

.toggle-switch.disabled label {
  cursor: not-allowed;
}

.cookie-modal-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--surface-2);
  display: flex;
  justify-content: flex-end;
}

.cookie-btn.save-preferences {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--background-dark);
  padding: 0.75rem 1.25rem;
  min-width: 150px;
  box-shadow: 0 0 15px rgba(0, 224, 176, 0.2);
}

.cookie-btn.save-preferences:hover {
  box-shadow: 0 0 20px rgba(0, 224, 176, 0.4);
  transform: translateY(-2px);
}

.cookie-btn.save-preferences:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft), 0 0 15px rgba(0, 224, 176, 0.2);
}

/* Animation-related styles */
[data-animate] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate="fade-up"].animated {
  opacity: 1;
  transform: translateY(0);
}

[data-animate="fade-right"] {
  transform: translateX(-20px);
}

[data-animate="fade-right"].animated {
  opacity: 1;
  transform: translateX(0);
}

[data-animate="fade-left"] {
  transform: translateX(20px);
}

[data-animate="fade-left"].animated {
  opacity: 1;
  transform: translateX(0);
}

/* New responsive improvements */

/* Large screens */
@media (min-width: 1921px) {
  .hero-content {
    max-width: 850px;
  }
  
  .main-title {
    font-size: 3.5rem;
  }
  
  .container {
    max-width: 1400px;
  }
  
  .big-logo-container {
    width: 500px;
    height: 500px;
  }
}

/* Smaller desktop */
@media (max-width: 1200px) {
  .main-title {
    font-size: 2.5rem;
  }

  .big-logo-container {
    width: 350px;
    height: 350px;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-brand {
    grid-column: span 2;
  }
  
  .tokenomics-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .token-visual {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .token-info h3::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Tablet */
@media (max-width: 992px) {
  .site-header {
    padding: 1rem 0;
  }
  
  .site-header.scrolled {
    padding: 0.5rem 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .hero {
    padding-top: 6rem;
    flex-direction: column;
  }
  
  .hero-content {
    max-width: 100%;
    text-align: center;
  }
  
  .hero-cta {
    justify-content: center;
  }
  
  .hero-visual {
    position: relative;
    width: 100%;
    height: 300px;
    margin-top: 2rem;
    left: 0;
  }
  
  .big-logo-container {
    right: 50%;
    transform: translateX(50%) translateY(-50%);
    width: 300px;
    height: 300px;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .about-text {
    text-align: center;
  }
  
  .about-text h3 {
    text-align: center;
  }
  
  .feature-item {
    justify-content: center;
  }
  
  .section-header.left-align {
    text-align: center;
  }
  
  .section-header.left-align .hex-divider {
    margin: 1.5rem auto;
  }
  
  .split-section {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .dev-cta {
    text-align: center;
  }
  
  .token-detail-item {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
  }
  
  .cookie-consent {
    right: 1rem;
    left: 1rem;
    max-width: calc(100% - 2rem);
  }
}

/* Mobile */
@media (max-width: 767px) {
  html {
    font-size: 14px;
  }
  
  .main-title {
    font-size: 2rem;
  }
  
  .subtitle {
    font-size: 1rem;
  }
  
  .hero-cta {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta a {
    width: 100%;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .feature-grid,
  .modules-grid,
  .utilities-grid,
  .ecosystem-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-brand {
    grid-column: span 1;
  }
  
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .token-metrics {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .distribution-legend {
    grid-template-columns: 1fr;
  }
  
  .cookie-modal-content {
    width: 95%;
    max-height: 80vh;
  }
  
  .cookie-category-header {
    flex-direction: column;
  }
  
  .toggle-switch {
    margin-left: 0;
    margin-top: 0.75rem;
  }
  
  .cookie-actions {
    flex-direction: column;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .scroll-to-top {
    bottom: 1rem;
    right: 1rem;
  }
  
  .cookie-consent {
    bottom: 1rem;
    right: 1rem;
    left: 1rem;
  }
}

@media (max-width: 600px) {
  .tab-content-grid {
    display: flex;
    flex-direction: column;
  }
  
  .tab-icon {
    margin: 0 auto 1rem;
  }
  
  .tab-details {
    text-align: center;
  }
  
  .tab-details ul li {
    text-align: left;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .main-title {
    font-size: 1.75rem;
  }
  
  .big-logo-container {
    width: 250px;
    height: 250px;
  }
  
  .token-visual {
    padding: 1.5rem 1rem;
  }
  
  .token-details {
    padding: 1.5rem 1rem;
  }
  
  .cookie-consent {
    padding: 1.25rem;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
  
  .performance-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .network-chart,
  .performance-chart,
  .chart-container {
    height: 200px !important;
  }
}

/* Header SVG logo animations */
#animated-logo .hex-outline {
  animation: pulse-stroke 3s infinite alternate;
}

#animated-logo .logo-text {
  animation: pulse-fill 4s infinite alternate;
}

#animated-logo .glow-circle {
  animation: pulse-opacity 5s infinite alternate;
}

.logo-wrapper:hover #animated-logo {
  transform: scale(1.1) rotate(-5deg);
}

.logo-wrapper:hover #animated-logo .hex-outline {
  animation: glow-intense 1s infinite alternate;
  stroke: #60ffc8;
}

@keyframes glow-intense {
  0% {
    filter: drop-shadow(0 0 3px #00e0b0);
  }
  100% {
    filter: drop-shadow(0 0 8px #60ffc8);
  }
}




/* Modal Container and Backdrop */
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  display: none;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 10, 8, 0.8);
  backdrop-filter: blur(8px);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Main Modal Styles */
.axk-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  max-width: 800px;
  width: 95%;
  max-height: 90vh;
  background: linear-gradient(135deg, var(--surface-1) 0%, var(--surface-2) 100%);
  border-radius: 1rem;
  border: 1px solid var(--primary-soft);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3), var(--glow-sm);
  overflow: hidden;
  display: none;
  z-index: 1002;
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}

.axk-modal.active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.modal-container.active {
  display: block;
}

.modal-container.active .modal-backdrop {
  opacity: 1;
}

.axk-modal.wide-modal {
  max-width: 1000px;
}

.axk-modal.small-modal {
  max-width: 500px;
}

/* Modal Header */
.modal-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(0, 224, 176, 0.1);
  position: relative;
}

.modal-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), transparent);
}

.modal-header h3 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin: 0;
}

.modal-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 224, 176, 0.1);
  color: var(--text-secondary);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 224, 176, 0.2);
  color: var(--primary);
  transform: rotate(90deg);
}

.modal-close:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--primary-soft);
}

/* Modal Body */
.modal-body {
  padding: 1.5rem;
  overflow-y: auto;
  max-height: calc(90vh - 130px);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-soft) var(--surface-2);
}

.modal-body::-webkit-scrollbar {
  width: 8px;
}

.modal-body::-webkit-scrollbar-track {
  background: var(--surface-2);
  border-radius: 4px;
}

.modal-body::-webkit-scrollbar-thumb {
  background-color: var(--primary-soft);
  border-radius: 4px;
}

/* Modal Actions */
.modal-actions {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: flex-end;
  gap: 1rem;
  border-top: 1px solid rgba(0, 224, 176, 0.1);
}

.modal-actions.centered-actions {
  justify-content: center;
}

.modal-footer {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgba(0, 224, 176, 0.1);
}

/* Form Styles */
.form-group {
  margin-bottom: 1.25rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.form-row .form-group {
  flex: 1;
  margin-bottom: 0;
}

.form-group label {
  display: block;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(0, 18, 15, 0.2);
  border: 1px solid var(--surface-2);
  border-radius: 0.375rem;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px var(--primary-soft);
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2300e0b0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
  padding-right: 2.5rem;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 1rem 0;
}

.form-check input[type="checkbox"] {
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 0.25rem;
  border: 1px solid var(--primary-soft);
  background-color: rgba(0, 18, 15, 0.2);
  appearance: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-check input[type="checkbox"]:checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.form-check input[type="checkbox"]:checked::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-dark);
  font-size: 0.8rem;
  font-weight: bold;
}

.form-check label {
  color: var(--text-secondary);
  font-size: 0.9rem;
  cursor: pointer;
}

.password-input {
  position: relative;
}

.password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  transition: color 0.3s ease;
}

.password-toggle:hover {
  color: var(--primary);
}

/* Tab System Styles */
.tabs-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tabs-header {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs-header::-webkit-scrollbar {
  display: none;
}

.tab-btn {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--text-secondary);
  background: rgba(0, 224, 176, 0.05);
}

.tab-btn.active {
  color: var(--primary);
  background: rgba(0, 224, 176, 0.1);
  border-color: var(--primary-soft);
}

.tabs-content {
  position: relative;
}

.tab-panel {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.tab-panel.active {
  display: block;
}

.tab-content-grid {
  display: grid;
  grid-template-columns: 80px 1fr 1fr;
  gap: 1.5rem;
}

.tab-icon {
  width: 80px;
  height: 80px;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
}

.tab-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.tab-details h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0;
}

.tab-details p {
  color: var(--text-secondary);
  margin: 0;
}

.tab-details ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.tab-details ul li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

.tab-details ul li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
  font-size: 1.25rem;
}

.tab-visual {
  border-radius: 0.5rem;
  overflow: hidden;
}

.code-preview {
  background-color: rgba(0, 10, 8, 0.5);
  border-radius: 0.5rem;
  padding: 1rem;
  height: 100%;
  overflow: auto;
  font-family: 'JetBrains Mono', 'Fira Code', monospace;
  font-size: 0.85rem;
  line-height: 1.5;
}

.code-preview pre {
  margin: 0;
}

.code-preview code {
  color: var(--text-secondary);
}

/* Developer Onboarding Styles */
.developer-onboarding {
  position: relative;
}

.onboarding-step {
  display: none;
}

.onboarding-step.active {
  display: block;
  animation: fadeIn 0.4s ease forwards;
}

.steps-indicator {
  display: flex;
  gap: 0.5rem;
}

.step {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: var(--surface-2);
  transition: all 0.3s ease;
}

.step.active {
  background-color: var(--primary);
  box-shadow: 0 0 10px var(--primary-soft);
}

.step-back {
  opacity: 0.5;
  cursor: not-allowed;
}

.step-back:not([disabled]) {
  opacity: 1;
  cursor: pointer;
}

.path-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.path-card {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.path-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
}

.path-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.path-card h5 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

.path-card p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin: 0;
  flex-grow: 1;
}

/* Module Selection Styles */
.module-selection {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.module-option {
  position: relative;
}

.module-checkbox {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.module-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.module-checkbox:checked + .module-label {
  border-color: var(--primary);
  background: rgba(0, 224, 176, 0.05);
}

.module-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 0.25rem;
  border: 1px solid var(--text-muted);
  position: relative;
  transition: all 0.3s ease;
}

.module-checkbox:checked + .module-label .module-check {
  background-color: var(--primary);
  border-color: var(--primary);
}

.module-checkbox:checked + .module-label .module-check::after {
  content: '✓';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--background-dark);
  font-size: 0.875rem;
  font-weight: bold;
}

.module-info {
  display: flex;
  flex-direction: column;
}

.module-name {
  color: var(--text-primary);
  font-weight: 500;
}

.module-desc {
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Success Message Styles */
.success-message {
  text-align: center;
  padding: 2rem 1rem;
  animation: fadeIn 0.5s ease forwards;
}

.success-icon {
  font-size: 4rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.success-message h4 {
  font-size: 1.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.success-message p {
  color: var(--text-secondary);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}

.loading-indicator {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.loading-bar {
  width: 100%;
  max-width: 300px;
  height: 6px;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.loading-bar::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 30%;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  border-radius: 3px;
  animation: loading 2s infinite;
}

@keyframes loading {
  0% {
    left: -30%;
  }
  100% {
    left: 100%;
  }
}

/* Token Acquisition Styles */
.token-acquisition {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.tab-navigation {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 0.5rem;
}

.tab-nav-item {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tab-nav-item:hover {
  color: var(--text-secondary);
  background: rgba(0, 224, 176, 0.05);
}

.tab-nav-item.active {
  color: var(--primary);
  background: rgba(0, 224, 176, 0.1);
  border-color: var(--primary-soft);
}

.tab-content-wrapper {
  position: relative;
}

.tab-content {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.tab-content.active {
  display: block;
}

.tab-intro {
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

.exchange-list,
.earn-options {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.exchange-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.5rem;
  padding: 1rem;
  transition: all 0.3s ease;
}

.exchange-item:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
}

.exchange-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.exchange-info {
  flex-grow: 1;
}

.exchange-info h5 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.exchange-info p {
  color: var(--text-secondary);
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
}

.exchange-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.exchange-meta span {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.staking-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.staking-card {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.staking-card.featured {
  border-color: var(--primary-soft);
  background: rgba(0, 224, 176, 0.05);
  position: relative;
  overflow: hidden;
}

.staking-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: 1rem;
  right: -2rem;
  background: var(--primary);
  color: var(--background-dark);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 2rem;
  transform: rotate(45deg);
}

.staking-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
}

.staking-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.staking-header h5 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

.staking-apy {
  color: var(--primary);
  font-weight: 600;
  font-size: 1.1rem;
}

.staking-features {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.5rem;
  flex-grow: 1;
}

.staking-features li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.staking-features li::before {
  content: '✓';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

.staking-actions {
  margin-top: auto;
}

.earn-method {
  display: flex;
  gap: 1.5rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.earn-method:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
}

.earn-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.earn-details {
  flex-grow: 1;
}

.earn-details h5 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.earn-details p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.earn-requirements {
  list-style-type: none;
  padding: 0;
  margin: 0 0 1.25rem;
}

.earn-requirements li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.earn-requirements li::before {
  content: '•';
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 0;
}

/* Contact Form Styles */
.contact-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-tabs {
  display: flex;
  gap: 0.5rem;
  border-bottom: 1px solid var(--surface-2);
  padding-bottom: 0.5rem;
}

.contact-tab {
  padding: 0.625rem 1.25rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid transparent;
  border-radius: 0.375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-tab:hover {
  color: var(--text-secondary);
  background: rgba(0, 224, 176, 0.05);
}

.contact-tab.active {
  color: var(--primary);
  background: rgba(0, 224, 176, 0.1);
  border-color: var(--primary-soft);
}

.contact-content {
  position: relative;
}

.contact-tab-content {
  display: none;
  animation: fadeIn 0.3s ease forwards;
}

.contact-tab-content.active {
  display: block;
}

/* Whitepaper Preview Styles */
.whitepaper-preview {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  overflow: hidden;
}

.preview-header {
  background: rgba(0, 18, 15, 0.5);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-bottom: 1px solid var(--surface-2);
}

.preview-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--primary);
}

.preview-meta h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.preview-meta p {
  color: var(--text-muted);
  margin: 0;
  font-size: 0.875rem;
}

.preview-content {
  padding: 1.5rem;
}

.preview-content h5 {
  font-size: 1rem;
  color: var(--primary);
  margin: 0 0 1rem;
}

.preview-content p {
  color: var(--text-secondary);
  margin: 0 0 1.5rem;
  line-height: 1.6;
}

.toc-list {
  color: var(--text-secondary);
  padding-left: 1.25rem;
  margin: 0;
}

.toc-list ol {
  color: var(--text-muted);
  padding-left: 1.5rem;
  margin: 0.5rem 0;
}

.toc-list li {
  margin-bottom: 0.5rem;
}

/* Community Modal Styles */
.community-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.connect-option {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  transition: all 0.3s ease;
}

.connect-option:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.connect-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.connect-icon.discord {
  background: rgba(114, 137, 218, 0.2);
  color: #7289da;
}

.connect-icon.telegram {
  background: rgba(0, 136, 204, 0.2);
  color: #0088cc;
}

.connect-icon.twitter {
  background: rgba(29, 161, 242, 0.2);
  color: #1da1f2;
}

.connect-icon.forum {
  background: rgba(0, 224, 176, 0.1);
  color: var(--primary);
}

.connect-details {
  flex-grow: 1;
}

.connect-details h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.connect-details p {
  color: var(--text-secondary);
  margin: 0 0 0.5rem;
}

.connect-meta {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.outline-button.discord-button:hover {
  background: rgba(114, 137, 218, 0.1);
  border-color: #7289da;
  color: #7289da;
}

.outline-button.telegram-button:hover {
  background: rgba(0, 136, 204, 0.1);
  border-color: #0088cc;
  color: #0088cc;
}

.outline-button.twitter-button:hover {
  background: rgba(29, 161, 242, 0.1);
  border-color: #1da1f2;
  color: #1da1f2;
}

.outline-button.forum-button:hover {
  background: rgba(0, 224, 176, 0.1);
  border-color: var(--primary);
  color: var(--primary);
}

.community-newsletter {
  background: linear-gradient(135deg, rgba(0, 18, 15, 0.5) 0%, rgba(0, 39, 30, 0.5) 100%);
  border: 1px solid var(--primary-soft);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.newsletter-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(0, 224, 176, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
  flex-shrink: 0;
}

.newsletter-content {
  flex-grow: 1;
}

.newsletter-content h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.newsletter-content p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 0.75rem 1rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.375rem;
  color: var(--text-primary);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--primary);
}

/* Projects Modal Styles */
.projects-filter {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--surface-2);
}

.filter-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.filter-group label {
  color: var(--text-secondary);
  font-weight: 500;
}

.filter-buttons {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1rem;
  background: transparent;
  color: var(--text-muted);
  border: 1px solid var(--surface-2);
  border-radius: 0.25rem;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(0, 224, 176, 0.05);
  color: var(--text-secondary);
}

.filter-btn.active {
  background: rgba(0, 224, 176, 0.1);
  color: var(--primary);
  border-color: var(--primary-soft);
}

.search-projects {
  position: relative;
}

.project-search {
  padding: 0.625rem 1rem 0.625rem 2.5rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.375rem;
  color: var(--text-primary);
  width: 250px;
}

.project-search:focus {
  outline: none;
  border-color: var(--primary);
}

.search-btn {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.project-card {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.project-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.project-logo {
  width: 3rem;
  height: 3rem;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, rgba(0, 224, 176, 0.2) 0%, rgba(0, 182, 170, 0.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  color: var(--primary);
  flex-shrink: 0;
}

.project-info {
  flex-grow: 1;
}

.project-info h4 {
  font-size: 1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.project-info p {
  color: var(--text-secondary);
  margin: 0 0 0.75rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

.project-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.project-category {
  font-size: 0.75rem;
  color: var(--text-muted);
  padding: 0.25rem 0.5rem;
  background: rgba(0, 18, 15, 0.3);
  border-radius: 0.25rem;
}

.project-status {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
}

.project-status.live {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}

.project-status.beta {
  background: rgba(255, 180, 0, 0.1);
  color: #ffb400;
}

.project-link {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: all 0.3s ease;
}

.project-link:hover {
  background: var(--primary);
  color: var(--background-dark);
}

/* Network Modal Styles */
.network-status {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.status-overview {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.status-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.25rem;
}

.status-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.status-icon.healthy {
  background: rgba(46, 213, 115, 0.1);
  color: #2ed573;
}

.status-info h4 {
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--text-primary);
}

.status-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2ed573;
}

.status-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
}

.metric-card {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
}

.metric-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.metric-label {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.network-chart-container {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.chart-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

.chart-legend {
  display: flex;
  gap: 1rem;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-secondary);
  font-size: 0.875rem;
}

.legend-color {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.legend-color.tps {
  background-color: var(--primary);
}

.legend-color.block-time {
  background-color: #ffb400;
}

.network-chart {
  height: 250px;
}

.validator-section {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.section-header h4 {
  font-size: 1.1rem;
  margin: 0;
  color: var(--text-primary);
}

.view-all {
  color: var(--primary);
  font-size: 0.875rem;
}

.validator-table {
  width: 100%;
}

.table-header {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr 1fr;
  padding: 0.75rem 0.5rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--surface-2);
}

.table-body {
  display: flex;
  flex-direction: column;
}

.table-row {
  display: grid;
  grid-template-columns: 0.5fr 2fr 1fr 1fr 1fr 1fr;
  padding: 0.75rem 0.5rem;
  color: var(--text-secondary);
  border-bottom: 1px solid rgba(0, 224, 176, 0.05);
  transition: all 0.3s ease;
}

.table-row:last-child {
  border-bottom: none;
}

.table-row:hover {
  background: rgba(0, 224, 176, 0.05);
}

.col-rank {
  font-weight: 600;
  color: var(--primary);
}

/* Partners Modal Styles */
.partners-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.partners-category h4 {
  font-size: 1.25rem;
  color: var(--text-primary);
  margin: 0 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(0, 224, 176, 0.1);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem;
}

.partner-card {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  transition: all 0.3s ease;
}

.partner-card:hover {
  border-color: var(--primary-soft);
  transform: translateY(-5px);
  box-shadow: var(--glow-sm);
}

.partner-logo {
  width: 4rem;
  height: 4rem;
  border-radius: 0.75rem;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  flex-shrink: 0;
}

.partner-info h5 {
  font-size: 1.1rem;
  margin: 0 0 0.75rem;
  color: var(--text-primary);
}

.partner-info p {
  color: var(--text-secondary);
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Wallet Modal Styles */
.wallet-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}

.wallet-option {
  background: rgba(0, 18, 15, 0.3);
  border: 1px solid var(--surface-2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  transition: all 0.3s ease;
}

.wallet-option:hover {
  border-color: var(--primary-soft);
  transform: translateY(-3px);
  box-shadow: var(--glow-sm);
}

.wallet-icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  background: rgba(0, 224, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary);
}

.wallet-name {
  color: var(--text-primary);
  font-weight: 500;
}

.wallet-connect-btn {
  background: rgba(0, 224, 176, 0.1);
  color: var(--primary);
  border: 1px solid var(--primary-soft);
  border-radius: 0.375rem;
  padding: 0.5rem 1rem;
  width: 100%;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-weight: 500;
}

.wallet-connect-btn:hover {
  background: rgba(0, 224, 176, 0.2);
  color: var(--text-primary);
}

.wallet-note {
  background: rgba(0, 18, 15, 0.3);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-top: 1rem;
}

.wallet-note p {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin: 0;
  text-align: center;
}

/* Success Container Styles */
.success-container {
  text-align: center;
  padding: 1.5rem;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .axk-modal {
    width: 90%;
    max-height: 80vh;
  }
  
  .tab-content-grid {
    grid-template-columns: 60px 1fr;
  }
  
  .tab-visual {
    grid-column: span 2;
    margin-top: 1rem;
  }
  
  .form-row {
    flex-direction: column;
    gap: 1.25rem;
  }
  
  .filter-group {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .projects-filter {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  
  .search-projects {
    width: 100%;
  }
  
  .project-search {
    width: 100%;
  }
  
  .table-header, .table-row {
    grid-template-columns: 0.5fr 1.5fr 1fr 1fr;
  }
  
  .col-uptime, .col-commission {
    display: none;
  }
  
  .community-newsletter {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .newsletter-form {
    flex-direction: column;
    width: 100%;
  }
  
  .partner-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .modal-header,
    .modal-body,
    .modal-actions,
    .modal-footer {
      padding: 1rem;
    }
    
    .modal-actions button,
    .modal-actions a {
      padding: 0.75rem 1rem;
      font-size: 0.9rem;
    }
    
    .form-group {
      margin-bottom: 1rem;
    }
    
    .form-row {
      gap: 0.75rem;
    }
    
    .project-card {
      flex-direction: row;
      flex-wrap: wrap;
    }
    
    .project-info {
      min-width: 0;
    }
    
    .token-acquisition .tab-navigation {
      overflow-x: auto;
      padding-bottom: 0.75rem;
      justify-content: flex-start;
    }
    
    .staking-options {
      gap: 1rem;
    }

    .tabs-header, 
    .tab-navigation, 
    .contact-tabs {
      flex-wrap: wrap;
      justify-content: center;
    }
    
    .tab-btn, 
    .tab-nav-item, 
    .contact-tab {
      flex-grow: 1;
      text-align: center;
      min-width: 100px;
    }
    
    .filter-buttons {
      justify-content: center;
      margin-top: 0.5rem;
    }

    .economics-section .section-header {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    
    .economics-section .section-intro {
      margin-top: 1.5rem;
      text-align: center;
      width: 100%;
      padding: 0 1rem;
    }
}

@media (max-width: 480px) {
  .modal-header h3 {
    font-size: 1.25rem;
  }
  
  .tabs-header {
    overflow-x: auto;
  }
  
  .tab-content-grid {
    grid-template-columns: 1fr;
  }
  
  .tab-icon {
    margin: 0 auto 1rem;
  }
  
  .tab-details {
    text-align: center;
  }
  
  .earn-method {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .table-header, .table-row {
    grid-template-columns: 0.5fr 1.5fr 1fr;
  }
  
  .col-blocks {
    display: none;
  }
  
  .modal-actions {
    justify-content: center;
    flex-direction: row !important;
    gap: 1rem;
  }
  
  .modal-actions button, .modal-actions a {
    width: 100%;
  }
}