:root {
  --rich-purple: #7c5cff;
  --deep-bg: #03000a;
  --purple-light: #b6a4ff;
  --purple-cyan: #3bd6c9;
}

/* Enhanced Animations */
@keyframes float {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes floatReverse {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(20px) rotate(-5deg);
  }
}

@keyframes glow {
  0%, 100% {
    opacity: 0.5;
    filter: drop-shadow(0 0 10px rgba(124, 92, 255, 0.5));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 30px rgba(124, 92, 255, 0.9));
  }
}

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

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes rotateGlow {
  0% {
    transform: rotate(0deg);
    filter: drop-shadow(0 0 20px rgba(124, 92, 255, 0.5));
  }
  100% {
    transform: rotate(360deg);
    filter: drop-shadow(0 0 40px rgba(124, 92, 255, 0.9));
  }
}

@keyframes gradientShift {
  0%, 100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

@keyframes featureContentSlideIn {
  0% {
    opacity: 0;
    transform: translateY(30px) scale(0.96);
  }
  60% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes cardFadeIn {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes wrapperSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes iconPulse {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-180deg);
  }
  60% {
    transform: scale(1.1) rotate(10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes iconFloat {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(2deg);
  }
}

@keyframes titleSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes descriptionFadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes particleFloat {
  0% {
    transform: translateY(0) translateX(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100vh) translateX(100px) rotate(360deg);
    opacity: 0;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep-bg);
  color: #f8f7ff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.02;
  z-index: 9999;
  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='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
}

/* Floating Particles Background */
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(circle at 20% 50%, rgba(124, 92, 255, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(59, 214, 201, 0.03) 0%, transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(182, 164, 255, 0.02) 0%, transparent 50%);
  animation: gradientShift 15s ease infinite;
}

.font-heading {
  font-family: 'Orbitron', sans-serif;
}

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 92, 255, 0.15);
}

.text-glow-rich {
  text-shadow: 0 0 15px rgba(124, 92, 255, 0.8);
}

.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.05), transparent);
  transform: rotate(45deg);
  animation: shimmer 4s infinite;
}

@keyframes shimmer {
  0% {
    transform: translateX(-100%) rotate(45deg);
  }
  100% {
    transform: translateX(100%) rotate(45deg);
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #03000a;
}

::-webkit-scrollbar-thumb {
  background: #7c5cff;
  border-radius: 10px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(3, 0, 10, 0.9);
  backdrop-filter: blur(24px);
  animation: slideInLeft 0.6s ease-out;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.logo-glow {
  position: absolute;
  inset: 0;
  background: var(--rich-purple);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.2;
  transition: opacity 0.3s;
}

.nav-logo:hover .logo-glow {
  opacity: 0.4;
}

.logo-img {
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 8px rgba(124, 92, 255, 0.6));
  object-fit: contain;
  animation: float 6s ease-in-out infinite;
  transition: all 0.3s ease;
  background: transparent;
  mix-blend-mode: normal;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.logo-img:hover {
  animation: glow 2s ease-in-out infinite, float 6s ease-in-out infinite;
  transform: scale(1.1);
}

.logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  color: white;
}

.logo-text-purple {
  color: var(--rich-purple);
  margin-left: 0.5rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(156, 163, 175, 1);
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--rich-purple);
  transition: width 0.3s;
}

.nav-link:hover {
  color: var(--rich-purple);
}

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

/* Language Selector */
.language-selector {
  position: relative;
  margin-right: 1rem;
}

.language-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.language-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--rich-purple);
}

.language-btn svg {
  width: 18px;
  height: 18px;
}

.language-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  background: rgba(3, 0, 10, 0.98);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  min-width: 150px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s;
  z-index: 1000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.language-dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.language-option {
  display: block;
  width: 100%;
  padding: 0.75rem 1rem;
  background: transparent;
  border: none;
  color: white;
  text-align: left;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.language-option:last-child {
  border-bottom: none;
}

.language-option:hover {
  background: rgba(124, 92, 255, 0.1);
  color: var(--rich-purple);
}

.language-option.active {
  background: rgba(124, 92, 255, 0.2);
  color: var(--rich-purple);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

@media (max-width: 767px) {
  .language-selector {
    margin-right: 0.5rem;
  }
  
  .language-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.7rem;
  }
  
  .language-btn svg {
    width: 16px;
    height: 16px;
  }
  
  .language-dropdown {
    right: 0;
    min-width: 130px;
  }
  
  .btn-get-access {
    padding: 0.6rem 1.25rem;
    font-size: 0.7rem;
  }
}

.btn-get-access {
  padding: 0.75rem 2rem;
  background: linear-gradient(to bottom right, var(--rich-purple), #5a3bff);
  color: white;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(124, 92, 255, 0.3);
}

.btn-get-access:hover {
  box-shadow: 0 6px 40px rgba(124, 92, 255, 0.6);
}

/* Hero Section */
.hero {
  position: relative;
  padding-top: 100px;
  padding-bottom: 40px;
  overflow: hidden;
  z-index: 1;
}

.hero-bg-1 {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 800px;
  height: 800px;
  background: rgba(147, 51, 234, 0.1);
  border-radius: 50%;
  filter: blur(160px);
  animation: pulse 3s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
}

.hero-bg-2 {
  position: absolute;
  bottom: -80px;
  left: -80px;
  width: 600px;
  height: 600px;
  background: rgba(99, 102, 241, 0.1);
  border-radius: 50%;
  filter: blur(160px);
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
  isolation: isolate;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    flex-direction: row;
    align-items: center;
  }
}

.hero-text {
  max-width: 48rem;
  text-align: center;
  width: 100%;
  flex: 1;
}

@media (min-width: 1024px) {
  .hero-text {
    text-align: left;
    flex: 0 1 auto;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(196, 181, 253, 1);
  margin-bottom: 1rem;
  backdrop-filter: blur(12px);
  animation: slideInLeft 0.8s ease-out, fadeInUp 0.8s ease-out;
}

.sparkles-icon {
  animation: bounce 1s infinite;
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  line-height: 1;
  letter-spacing: -0.02em;
  animation: fadeInUp 1s ease-out;
}

@media (min-width: 768px) {
  .hero-title {
    font-size: 4.5rem;
  }
}

.hero-title-gradient {
  background: linear-gradient(90deg, var(--rich-purple), var(--purple-light), var(--purple-cyan), var(--rich-purple));
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 15px rgba(124, 92, 255, 0.8);
  animation: gradientShift 3s ease infinite, fadeInUp 1s ease-out 0.2s both;
}

.hero-description {
  color: rgba(156, 163, 175, 1);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  max-width: 36rem;
  animation: fadeInUp 1s ease-out 0.4s both;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  animation: fadeInUp 1s ease-out 0.6s both;
}

@media (min-width: 640px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2.5rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-hero {
    width: auto;
  }
}

.btn-hero-primary {
  background: white;
  color: black;
  box-shadow: 0 10px 40px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--rich-purple);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.btn-hero-primary:hover::before {
  width: 300px;
  height: 300px;
}

.btn-hero-primary {
  position: relative;
  z-index: 1;
}

.btn-hero-primary:hover {
  background: var(--rich-purple);
  color: white;
  box-shadow: 0 15px 50px rgba(124, 92, 255, 0.5);
  transform: translateY(-5px) scale(1.02);
}

.btn-hero-secondary {
  background: #0a0a0a;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-hero-secondary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(124, 92, 255, 0.1), transparent);
  transition: left 0.5s;
}

.btn-hero-secondary:hover::before {
  left: 100%;
}

.btn-hero-secondary:hover {
  border-color: rgba(124, 92, 255, 0.8);
  background: rgba(124, 92, 255, 0.05);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.2);
}

.hero-image {
  position: relative;
  display: block;
  animation: fadeInUp 1s ease-out 0.8s both;
  text-align: center;
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .hero-image {
    margin-top: 0;
    text-align: right;
  }
}

.hero-image-glow {
  position: absolute;
  inset: 0;
  background: rgba(124, 92, 255, 0.2);
  filter: blur(100px);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
}

.hero-logo {
  width: 100%;
  max-width: 250px;
  height: auto;
  position: relative;
  z-index: 10;
  filter: drop-shadow(0 0 50px rgba(124, 92, 255, 0.5));
  opacity: 0.9;
  transition: all 0.7s;
  animation: float 8s ease-in-out infinite, glow 3s ease-in-out infinite;
  display: block;
  margin: 0 auto;
  background: transparent;
  mix-blend-mode: normal;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

@media (min-width: 768px) {
  .hero-logo {
    max-width: 320px;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    width: 350px;
    height: 350px;
    max-width: none;
    margin: 0;
    object-fit: contain;
  }
}

.hero-logo:hover {
  opacity: 1;
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 80px rgba(124, 92, 255, 0.9));
  animation: float 8s ease-in-out infinite, glow 1.5s ease-in-out infinite;
}

/* Social Proof Section */
.social-proof {
  position: relative;
  padding: 2rem 0;
  overflow: hidden;
}

.social-proof-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(124, 92, 255, 0.05), transparent);
}

.social-proof-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  position: relative;
  z-index: 10;
}

.social-proof-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  opacity: 0.3;
  transition: opacity 1s;
}

@media (min-width: 768px) {
  .social-proof-brands {
    gap: 2.5rem;
  }
}

.social-proof-brands:hover {
  opacity: 1;
}

.brand-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: white;
  user-select: none;
  transition: color 0.3s;
  cursor: default;
}

@media (min-width: 768px) {
  .brand-text {
    font-size: 1.875rem;
  }
}

.brand-text:hover {
  color: var(--rich-purple);
}

/* Features Section */
.features {
  padding: 2.5rem 0 6rem 0;
  position: relative;
}

.features-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.feature-strips {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .feature-strips {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-strip {
  padding: 1.25rem;
  border-radius: 1.5rem;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(30px);
}

.feature-strip.animate {
  opacity: 1;
  transform: translateY(0);
}

.feature-strip:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(124, 92, 255, 0.1);
}

.feature-strip-icon {
  margin-bottom: 1rem;
  transition: transform 0.3s;
  color: rgba(234, 179, 8, 1);
}

.feature-strip:nth-child(2) .feature-strip-icon {
  color: rgba(52, 211, 153, 1);
}

.feature-strip:nth-child(3) .feature-strip-icon {
  color: rgba(96, 165, 250, 1);
}

.feature-strip:hover .feature-strip-icon {
  transform: scale(1.1);
}

.feature-strip-title {
  color: white;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
}

.feature-strip-description {
  color: rgba(156, 163, 175, 1);
  font-size: 0.875rem;
  line-height: 1.75;
}

.features-main {
  margin-top: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 1;
}

.features-header {
  text-align: center;
  margin-bottom: 2rem;
}

.features-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .features-title {
    font-size: 2.75rem;
  }
}

.features-title-purple {
  color: var(--rich-purple);
}

.features-divider {
  height: 6px;
  width: 96px;
  background: linear-gradient(to right, var(--rich-purple), var(--purple-cyan));
  margin: 0 auto;
  border-radius: 9999px;
}

.features-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .features-tabs {
    gap: 1rem;
  }
}

.feature-tab {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(156, 163, 175, 1);
  font-family: 'Orbitron', sans-serif;
  font-size: 0.875rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.feature-tab::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.feature-tab:hover::before {
  width: 300px;
  height: 300px;
}

.feature-tab:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transform: translateY(-2px);
}

.feature-tab.active {
  background: var(--rich-purple);
  border-color: var(--rich-purple);
  color: white;
  box-shadow: 0 0 30px rgba(124, 92, 255, 0.4);
  transform: scale(1.05);
  animation: glow 2s ease-in-out infinite;
}

.feature-tab svg {
  width: 24px;
  height: 24px;
}

.features-content {
  position: relative;
  min-height: auto;
  margin-bottom: 4rem;
  padding-bottom: 3rem;
}

.feature-tab-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1), transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1;
  visibility: hidden;
}

.feature-tab-content.active {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
  z-index: 2;
  visibility: visible;
  transition: opacity 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s, visibility 0s 0s;
  animation: featureContentSlideIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s;
}

.feature-content-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 2rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.05), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  height: auto;
  animation: cardFadeIn 0.6s ease-out 0.3s both;
}

@media (min-width: 768px) {
  .feature-content-card {
    padding: 2rem;
  }
}

.feature-content-bg {
  position: absolute;
  right: -80px;
  top: -80px;
  width: 320px;
  height: 320px;
  background: rgba(124, 92, 255, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  animation: bgGlowPulse 4s ease-in-out infinite, bgGlowMove 6s ease-in-out infinite;
}

@keyframes bgGlowPulse {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}

@keyframes bgGlowMove {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-20px, 20px) scale(1.05);
  }
  66% {
    transform: translate(20px, -20px) scale(1.05);
  }
}

.feature-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  z-index: 1;
  animation: wrapperSlideIn 0.5s ease-out 0.4s both;
}

@media (min-width: 1024px) {
  .feature-content-wrapper {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }
}

.feature-content-left {
  flex: 1;
  min-width: 0;
}

@media (min-width: 1024px) {
  .feature-content-left {
    width: 33.333333%;
    flex-shrink: 0;
  }
}

.feature-content-icon {
  width: 60px;
  height: 60px;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 0 40px rgba(124, 92, 255, 0.1);
  animation: iconPulse 0.6s ease-out 0.5s both, iconFloat 3s ease-in-out 1.1s infinite;
  transition: transform 0.3s ease;
}

.feature-content-icon:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 0 60px rgba(124, 92, 255, 0.3);
}

.feature-content-icon svg {
  color: var(--rich-purple);
  transform: scale(1.5);
}

.feature-content-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.75rem;
  font-weight: 900;
  color: white;
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  animation: titleSlideIn 0.5s ease-out 0.6s both;
}

.feature-content-description {
  color: rgba(156, 163, 175, 1);
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 500;
  word-wrap: break-word;
  overflow-wrap: break-word;
  animation: descriptionFadeIn 0.6s ease-out 0.7s both;
}

.feature-content-right {
  flex: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  width: 100%;
  min-width: 0;
}

@media (min-width: 768px) {
  .feature-content-right {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (min-width: 1024px) {
  .feature-content-right {
    width: 66.666667%;
    flex-shrink: 0;
  }
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: opacity 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), border-color 0.3s, background 0.3s;
  opacity: 0;
  transform: translateX(-20px) scale(0.95);
  will-change: opacity, transform;
}

.feature-item.animate {
  opacity: 1;
  transform: translateX(0) scale(1);
  animation: itemBounceIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.feature-item:hover {
  border-color: rgba(124, 92, 255, 0.5);
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(8px) scale(1.03);
  box-shadow: 0 10px 30px rgba(124, 92, 255, 0.15);
}

@keyframes itemBounceIn {
  0% {
    opacity: 0;
    transform: translateX(-20px) scale(0.95);
  }
  60% {
    transform: translateX(5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.feature-item-dot {
  flex-shrink: 0;
  margin-top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--rich-purple);
  box-shadow: 0 0 10px var(--rich-purple);
  transition: transform 0.3s;
}

.feature-item:hover .feature-item-dot {
  transform: scale(1.25);
}

.feature-item span {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(209, 213, 219, 1);
  line-height: 1.6;
  transition: color 0.3s;
  word-wrap: break-word;
  overflow-wrap: break-word;
  flex: 1;
  min-width: 0;
}

.feature-item:hover span {
  color: white;
}

/* Pricing Section */
.pricing {
  padding: 5rem 0 2.5rem 0;
  position: relative;
  margin-top: 3rem;
}

.pricing-container {
  max-width: 64rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.pricing-icon-wrapper {
  display: inline-block;
  padding: 0.875rem;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 9999px;
  margin-bottom: 1rem;
}

.pricing-icon-wrapper svg {
  color: var(--rich-purple);
}

.pricing-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 2.25rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .pricing-title {
    font-size: 3rem;
  }
}

.pricing-title-purple {
  color: var(--rich-purple);
}

.pricing-subtitle {
  color: rgba(156, 163, 175, 1);
  font-size: 1.125rem;
}

.pricing-tabs-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.pricing-tabs {
  background: rgba(255, 255, 255, 0.05);
  padding: 0.5rem;
  border-radius: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(12px);
}

.pricing-tab {
  padding: 0.875rem 2rem;
  border-radius: 0.75rem;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s;
  border: none;
  background: transparent;
  color: rgba(156, 163, 175, 1);
  cursor: pointer;
}

.pricing-tab:hover {
  color: white;
}

.pricing-tab.active {
  background: white;
  color: black;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: scale(1.05);
}

.pricing-card {
  position: relative;
  padding: 1.75rem;
  border-radius: 2.5rem;
  background: linear-gradient(to bottom right, rgba(255, 255, 255, 0.08), transparent);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(48px);
  overflow: hidden;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.pricing-card.animate {
  opacity: 1;
  transform: translateY(0) scale(1);
  animation: scaleIn 0.8s ease-out;
}

@media (min-width: 768px) {
  .pricing-card {
    padding: 2.5rem;
  }
}

.pricing-card:hover {
  transform: scale(1.02);
  box-shadow: 0 60px 120px rgba(124, 92, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card-bg {
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 320px;
  height: 320px;
  background: rgba(124, 92, 255, 0.1);
  filter: blur(100px);
  border-radius: 50%;
  transition: all 0.7s;
}

.pricing-card:hover .pricing-card-bg {
  background: rgba(124, 92, 255, 0.2);
}

.pricing-plan {
  display: none;
}

.pricing-plan.active {
  display: block;
}

.pricing-plan-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-plan-header {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.pricing-plan-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-plan-price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 1rem;
}

.pricing-plan-price {
  font-size: 3.75rem;
  font-weight: 900;
  color: var(--rich-purple);
  text-shadow: 0 0 15px rgba(124, 92, 255, 0.8);
}

.pricing-plan-period {
  color: rgba(107, 114, 128, 1);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.75rem;
}

.pricing-plan-badge {
  padding: 0.75rem 1.5rem;
  background: rgba(124, 92, 255, 0.1);
  border-radius: 9999px;
  border: 1px solid rgba(124, 92, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-plan-badge svg {
  color: var(--rich-purple);
}

.pricing-plan-badge span {
  color: white;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pricing-plan-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.875rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .pricing-plan-features {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2rem;
  }
}

.pricing-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: rgba(209, 213, 219, 1);
}

.pricing-feature-check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(124, 92, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.pricing-card:hover .pricing-feature-check {
  background: rgba(124, 92, 255, 0.4);
}

.pricing-feature-check svg {
  color: var(--rich-purple);
}

.pricing-feature span {
  font-size: 0.875rem;
  font-weight: 500;
}

.pricing-actions {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.btn-view-modules {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  width: 100%;
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-view-modules:hover {
  background: rgba(124, 92, 255, 0.1);
  border-color: var(--rich-purple);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(124, 92, 255, 0.2);
}

.btn-view-modules svg {
  width: 18px;
  height: 18px;
}

.pricing-cta {
  display: block;
  width: 100%;
  text-align: center;
  padding: 1.5rem;
  background: linear-gradient(to right, var(--rich-purple), #5a3bff);
  color: white;
  font-weight: 900;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 20px 60px rgba(124, 92, 255, 0.4);
  transition: all 0.3s;
}

.pricing-cta:hover {
  box-shadow: 0 20px 60px rgba(124, 92, 255, 0.4);
  transform: translateY(-4px);
}

.pricing-cta:active {
  transform: scale(0.98);
}

/* Modules Modal */
.modules-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.modules-modal.active {
  display: flex;
}

.modules-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
}

.modules-modal-content {
  position: relative;
  z-index: 10;
  background: linear-gradient(to bottom right, rgba(3, 0, 10, 0.98), rgba(18, 0, 43, 0.98));
  border: 1px solid rgba(124, 92, 255, 0.3);
  border-radius: 2rem;
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 40px 100px rgba(124, 92, 255, 0.3);
  animation: scaleIn 0.3s ease-out;
}

.modules-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  border-bottom: 1px solid rgba(124, 92, 255, 0.2);
}

.modules-modal-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.875rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.modules-modal-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.5rem;
  color: white;
  cursor: pointer;
  transition: all 0.3s;
}

.modules-modal-close:hover {
  background: rgba(124, 92, 255, 0.2);
  border-color: var(--rich-purple);
  transform: rotate(90deg);
}

.modules-modal-body {
  padding: 2rem;
  overflow-y: auto;
  flex: 1;
}

.modules-category {
  margin-bottom: 2.5rem;
}

.modules-category:last-child {
  margin-bottom: 0;
}

.modules-category-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--rich-purple);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(124, 92, 255, 0.2);
}

.modules-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.module-item {
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.02);
  border-left: 2px solid rgba(124, 92, 255, 0.3);
  border-radius: 0.5rem;
  transition: all 0.3s;
}

.module-item:hover {
  background: rgba(124, 92, 255, 0.05);
  border-left-color: var(--rich-purple);
  transform: translateX(4px);
}

.module-name {
  font-family: 'Orbitron', sans-serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.375rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.module-desc {
  font-size: 0.8125rem;
  color: rgba(196, 181, 253, 0.8);
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .modules-modal {
    padding: 1rem;
  }
  
  .modules-modal-content {
    max-height: 95vh;
  }
  
  .modules-modal-header {
    padding: 1.5rem;
  }
  
  .modules-modal-body {
    padding: 1.5rem;
  }
  
  .modules-category-title {
    font-size: 1.125rem;
  }
  
  .module-item {
    padding: 0.875rem 1rem;
  }
  
  .module-name {
    font-size: 0.875rem;
  }
  
  .module-desc {
    font-size: 0.75rem;
  }
}

/* Final CTA Section */
.final-cta {
  padding: 5rem 0;
}

.final-cta-container {
  max-width: 96rem;
  margin: 0 auto;
  padding: 0 1rem;
}

.final-cta-card {
  position: relative;
  padding: 2rem;
  border-radius: 3rem;
  background: linear-gradient(to bottom right, #12002b, #03000a);
  border: 1px solid rgba(255, 255, 255, 0.05);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transition: all 0.7s;
}

@media (min-width: 768px) {
  .final-cta-card {
    padding: 2.5rem;
  }
}

.final-cta-pattern {
  position: absolute;
  inset: 0;
  background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
  opacity: 0.1;
}

.final-cta-glow {
  position: absolute;
  top: -160px;
  left: -160px;
  width: 600px;
  height: 600px;
  background: rgba(124, 92, 255, 0.1);
  filter: blur(150px);
  border-radius: 50%;
  transition: all 0.7s;
}

.final-cta-card:hover .final-cta-glow {
  background: rgba(124, 92, 255, 0.2);
}

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

.final-cta-logo {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  filter: drop-shadow(0 0 20px rgba(124, 92, 255, 0.6));
  animation: float 6s ease-in-out infinite, glow 3s ease-in-out infinite;
  transition: all 0.5s;
  background: transparent;
  mix-blend-mode: normal;
  object-fit: contain;
}

.final-cta-logo:hover {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 0 40px rgba(124, 92, 255, 1));
  animation: float 6s ease-in-out infinite, rotateGlow 2s linear infinite;
}

.final-cta-title {
  font-family: 'Orbitron', sans-serif;
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

@media (min-width: 768px) {
  .final-cta-title {
    font-size: 4.5rem;
  }
}

.final-cta-title-purple {
  color: var(--rich-purple);
  text-shadow: 0 0 15px rgba(124, 92, 255, 0.8);
}

.final-cta-description {
  color: rgba(156, 163, 175, 1);
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  font-weight: 500;
}

.final-cta-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

@media (min-width: 640px) {
  .final-cta-buttons {
    flex-direction: row;
  }
}

.btn-final {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 3rem;
  border-radius: 1.5rem;
  font-size: 0.875rem;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  width: 100%;
}

@media (min-width: 640px) {
  .btn-final {
    width: auto;
  }
}

.btn-final-primary {
  background: white;
  color: black;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.btn-final-primary:hover {
  background: var(--rich-purple);
  color: white;
  transform: translateY(-8px);
}

.btn-final-primary:active {
  transform: scale(0.95);
}

.btn-final-secondary {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
}

.btn-final-secondary:hover {
  border-color: var(--rich-purple);
  transform: translateY(-8px);
}

/* Footer */
.footer {
  padding: 2rem 0 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  background: var(--deep-bg);
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  width: 64px;
  height: 64px;
  filter: drop-shadow(0 0 15px rgba(124, 92, 255, 0.5));
  animation: float 8s ease-in-out infinite;
  transition: all 0.5s;
  background: transparent;
  mix-blend-mode: normal;
  object-fit: contain;
}

.footer-logo:hover {
  transform: scale(1.15);
  filter: drop-shadow(0 0 30px rgba(124, 92, 255, 0.9));
  animation: float 8s ease-in-out infinite, glow 2s ease-in-out infinite;
}

.footer-logo-text {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0.4em;
  color: white;
}

.footer-logo-text-purple {
  color: var(--rich-purple);
}

.footer-disclaimer {
  color: rgba(107, 114, 128, 1);
  font-size: 0.875rem;
  margin-bottom: 2rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
  font-weight: 500;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 3rem;
  color: rgba(156, 163, 175, 1);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 900;
  margin-bottom: 2rem;
}

.footer-link {
  color: rgba(156, 163, 175, 1);
  text-decoration: none;
  transition: all 0.3s;
}

.footer-link:hover {
  color: var(--rich-purple);
  transform: scale(1.1);
}

.footer-copyright {
  color: var(--rich-purple);
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5em;
}
