@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;700;900&display=swap";
/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --bg-color: #030014;
  --surface-color: #0f0a1e66;
  --glass-border: #a855f726;
  --text-primary: #fff;
  --text-secondary: #9da3af;
  --accent-primary: #a855f7;
  --accent-secondary: #c084fc;
  --accent-glow: #a855f780;
  --font-main: "Outfit", sans-serif;
  --glow-shadow: 0 0 30px var(--accent-glow);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none !important;
}

html, body {
  background: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-main);
  scroll-behavior: smooth;
  background-image: radial-gradient(circle at 15%, #a855f714 0%, #0000 50%), radial-gradient(circle at 85% 30%, #581c8726 0%, #0000 50%);
  min-height: 100vh;
  overflow-x: hidden;
  cursor: default !important;
}

input, textarea, [contenteditable="true"] {
  cursor: text !important;
}

a, button, .nav-links a {
  cursor: pointer !important;
}

.z-50 {
  z-index: 50;
}

.vexon-logo {
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  display: flex;
  position: relative;
}

.vexon-v {
  border: 3px solid #0000;
  border-top: 3px solid var(--accent-primary);
  border-left: 3px solid var(--accent-primary);
  width: 24px;
  height: 24px;
  box-shadow: inset 2px 2px 10px var(--accent-glow), -2px -2px 10px var(--accent-glow);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 30% 100%, 0 30%);
  position: absolute;
  transform: rotate(225deg)translateY(-4px);
}

.vexon-glow {
  width: 100%;
  height: 100%;
  box-shadow: 0 0 15px var(--accent-glow);
  border: 2px solid #a855f74d;
  border-radius: 50%;
  animation: 3s cubic-bezier(.4, 0, .6, 1) infinite pulse-ring;
  position: absolute;
}

.logo-text {
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-primary);
  font-size: 1.4rem;
  font-weight: 900;
}

.glass {
  background: var(--surface-color);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  box-shadow: 0 4px 30px #00000080;
}

.text-gradient {
  background: linear-gradient(135deg, #fff 0%, #a855f7 100%);
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
}

.text-accent {
  color: var(--accent-primary);
  text-shadow: 0 0 20px var(--accent-glow);
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fade-in {
  animation: 1s cubic-bezier(.16, 1, .3, 1) forwards fadeIn;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 15px var(--accent-glow);
  }

  50% {
    box-shadow: 0 0 40px #a855f7cc;
  }

  100% {
    box-shadow: 0 0 15px var(--accent-glow);
  }
}

@keyframes pulse-ring {
  0% {
    opacity: .5;
    transform: scale(.8);
  }

  50% {
    opacity: 1;
    transform: scale(1.1);
  }

  100% {
    opacity: .5;
    transform: scale(.8);
  }
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0);
  }
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all .3s;
  animation: 3s infinite pulse-glow;
  display: inline-flex;
}

.btn-primary:hover {
  transform: translateY(-3px)scale(1.02);
  box-shadow: 0 8px 30px #a855f799;
}

.btn-secondary {
  color: #fff;
  border: 1px solid var(--accent-primary);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-main);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  text-transform: uppercase;
  letter-spacing: 1px;
  background: #a855f71a;
  border-radius: 12px;
  padding: 14px 32px;
  text-decoration: none;
  transition: all .3s;
}

.btn-secondary:hover {
  background: #a855f733;
  transform: translateY(-2px);
  box-shadow: 0 5px 20px #a855f74d;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.navbar {
  border-bottom: 1px solid var(--glass-border);
  background: #030014b3;
  align-items: center;
  height: 80px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.navbar-content {
  justify-content: space-between;
  align-items: center;
  width: 100%;
  display: flex;
}

.nav-links {
  align-items: center;
  gap: 32px;
  display: flex;
}

.nav-links a {
  color: var(--text-secondary);
  font-weight: 500;
  text-decoration: none;
  transition: color .3s, text-shadow .3s;
}

.nav-links a:hover {
  color: var(--text-primary);
  text-shadow: 0 0 10px var(--accent-glow);
}

.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  margin-top: 64px;
  display: grid;
}

.feature-card {
  background: linear-gradient(#140a2899 0%, #0a051466 100%);
  border-top: 1px solid #a855f74d;
  flex-direction: column;
  gap: 16px;
  padding: 40px 32px;
  transition: all .4s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.feature-card:before {
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
  height: 2px;
  transition: transform .6s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  transform: translateX(-100%);
}

.feature-card:hover {
  border-color: #a855f780;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px #a855f726;
}

.feature-card:hover:before {
  transform: translateX(100%);
}

.feature-icon {
  color: var(--accent-primary);
  filter: drop-shadow(0 0 10px var(--accent-glow));
  margin-bottom: 8px;
  font-size: 2.5rem;
}

.feature-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.pricing-grid {
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  align-items: center;
  gap: 40px;
  margin-top: 64px;
  display: grid;
}

.pricing-card {
  text-align: center;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 56px 40px;
  transition: transform .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.popular {
  border-color: var(--accent-primary);
  background: linear-gradient(#1e0f3c80 0%, #0a051466 100%);
  transform: scale(1.05);
  box-shadow: 0 0 40px #a855f726;
}

.pricing-card.popular:hover {
  transform: scale(1.05)translateY(-10px);
}

.pricing-card.popular:after {
  content: "";
  background: linear-gradient(to right, #0000, #ffffff1a, #0000);
  width: 200%;
  height: 200%;
  animation: 4s infinite shine;
  position: absolute;
  top: -50%;
  left: -50%;
  transform: rotate(45deg)translateY(-100%);
}

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

  20% {
    transform: rotate(45deg)translateY(100%);
  }

  100% {
    transform: rotate(45deg)translateY(100%);
  }
}

.price-title {
  color: var(--text-primary);
  font-size: 1.8rem;
  font-weight: 700;
}

.price-amount {
  text-shadow: var(--glow-shadow);
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.price-amount span {
  color: var(--text-secondary);
  vertical-align: middle;
  font-size: 1.2rem;
  font-weight: 500;
}

.price-features {
  text-align: left;
  width: 100%;
  list-style: none;
}

.price-features li {
  color: var(--text-secondary);
  border-bottom: 1px solid #ffffff0d;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  font-size: 1.1rem;
  display: flex;
}

.price-features li i {
  color: var(--accent-primary);
  font-size: 1.2rem;
}

.stats-container {
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin: 100px 0;
  display: flex;
  position: relative;
}

.stats-container:before {
  content: "";
  background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
  z-index: -1;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
}

.stat-item {
  text-align: center;
  background: var(--surface-color);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border-radius: 24px;
  min-width: 250px;
  padding: 40px;
  transition: transform .3s;
  box-shadow: 0 10px 30px #00000080;
}

.stat-item:hover {
  border-color: #a855f766;
  transform: translateY(-5px);
}

.stat-number {
  color: var(--accent-primary);
  text-shadow: var(--glow-shadow);
  margin-bottom: 12px;
  font-size: 4.5rem;
  font-weight: 900;
  line-height: 1;
}

.stat-label {
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 1.1rem;
  font-weight: 500;
}

.hero-section {
  text-align: center;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding-top: 80px;
  display: flex;
  position: relative;
}

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

.hero-content {
  z-index: 10;
  max-width: 900px;
  padding: 40px;
}

.hero-title {
  letter-spacing: -2px;
  margin-bottom: 32px;
  font-size: 6rem;
  font-weight: 900;
  line-height: 1.1;
}

.hero-subtitle {
  color: var(--text-secondary);
  max-width: 800px;
  margin-bottom: 56px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.6;
}

.hero-controls {
  justify-content: center;
  gap: 24px;
  display: flex;
}

.form-input {
  border: 1px solid var(--glass-border);
  color: #fff;
  width: 100%;
  font-family: var(--font-main);
  background: #0a051499;
  border-radius: 12px;
  outline: none;
  margin-bottom: 24px;
  padding: 16px 20px;
  font-size: 1.1rem;
  transition: all .3s;
}

.form-input:focus {
  border-color: var(--accent-primary);
  box-shadow: 0 0 15px #a855f733;
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/