/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  /* Colors */
  --color-bg: #0a0a0f;
  --color-bg-secondary: #13131a;
  --color-bg-tertiary: #1a1a24;
  --color-text: #ffffff;
  --color-text-secondary: #a0a0b0;
  --color-text-muted: #6b6b7f;
  --color-primary: #00f2ff;
  --color-secondary: #8b5cf6;
  --color-accent: #ec4899;
  --color-success: #22c55e;
  --color-warning: #fbbf24;
  --color-border: rgba(255, 255, 255, 0.1);

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #00f2ff 0%, #8b5cf6 100%);
  --gradient-secondary: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  --gradient-accent: linear-gradient(135deg, #ec4899 0%, #fbbf24 100%);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.5);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(0, 242, 255, 0.3);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Typography */
  --font-primary: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-mono: "Space Mono", monospace;
}

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* Animated Background */
.cyber-grid {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(0, 242, 255, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(0, 242, 255, 0.05) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  pointer-events: none;
  z-index: 0;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

.floating-particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.floating-particles::before,
.floating-particles::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 20s ease-in-out infinite;
}

.floating-particles::before {
  background: var(--color-primary);
  top: -200px;
  left: -200px;
  animation-delay: 0s;
}

.floating-particles::after {
  background: var(--color-secondary);
  bottom: -200px;
  right: -200px;
  animation-delay: -10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(100px, -50px) scale(1.1);
  }
  66% {
    transform: translate(-50px, 100px) scale(0.9);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 15, 0.8);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 1rem 0;
  z-index: 1000;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.brand-name {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(270deg, #00f2ff, #8b5cf6, #ec4899, #00f2ff);
  background-size: 400% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientFlow 4s ease-in-out infinite;
}

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

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

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

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

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

.mobile-menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease;
}

/* Buttons */
.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-bg);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 30px rgba(0, 242, 255, 0.5);
}

.btn-hero-primary {
  background: var(--gradient-primary);
  color: var(--color-bg);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  box-shadow: var(--shadow-glow);
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
}

.btn-hero-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: 1px solid var(--color-border);
}

.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-cta-primary {
  background: var(--gradient-primary);
  color: var(--color-bg);
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  box-shadow: var(--shadow-glow);
}

.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 242, 255, 0.7);
}

.btn-cta-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 1.25rem 2.5rem;
  font-size: 1.15rem;
  border: 1px solid var(--color-border);
}

.btn-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
}

/* Hero Section */
.hero {
  position: relative;
  padding: 10rem 0 6rem;
  overflow: hidden;
}

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

.hero-content {
  animation: fadeInUp 0.8s ease-out;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.badge-pulse {
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.8s ease-out 0.3s both;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  align-items: center;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-mono);
}

.stat-label {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 0.25rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: var(--color-border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.flow-diagram {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 3rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-lg);
  perspective: 1200px;
  transform-style: preserve-3d;
  position: relative;
}

@keyframes rotateLight {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

.flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  opacity: 1;
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
}

/* 3D float animations for each step */
@keyframes float3D-1 {
  0%,
  100% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateZ(30px) translateY(-10px) rotateY(-5deg);
  }
  50% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg);
  }
  75% {
    transform: translateZ(-20px) translateY(-5px) rotateY(5deg);
  }
}

@keyframes float3D-2 {
  0%,
  100% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg) scale(1);
  }
  25% {
    transform: translateZ(-20px) translateY(-8px) rotateY(5deg) scale(1.05);
  }
  50% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg) scale(1);
  }
  75% {
    transform: translateZ(30px) translateY(-12px) rotateY(-5deg) scale(1.05);
  }
}

@keyframes float3D-3 {
  0%,
  100% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg);
  }
  25% {
    transform: translateZ(20px) translateY(-15px) rotateY(5deg);
  }
  50% {
    transform: translateZ(0px) translateY(0px) rotateY(0deg);
  }
  75% {
    transform: translateZ(-30px) translateY(-8px) rotateY(-5deg);
  }
}

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

@keyframes fadeInScale3D {
  from {
    opacity: 0;
    transform: scale(0.8) translateZ(-100px) rotateY(20deg);
  }
  to {
    opacity: 1;
    transform: scale(1) translateZ(0px) rotateY(0deg);
  }
}

.flow-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    145deg,
    var(--color-bg-tertiary),
    rgba(10, 10, 15, 0.8)
  );
  border: 2px solid var(--color-border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: all 0.3s ease;
  transform-style: preserve-3d;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5),
    0 1px 0 rgba(255, 255, 255, 0.05) inset, 0 -1px 0 rgba(0, 0, 0, 0.3) inset;
  position: relative;
}

/* 3D depth effect */
.flow-icon::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: linear-gradient(
    145deg,
    rgba(0, 242, 255, 0.1),
    rgba(139, 92, 246, 0.1)
  );
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.flow-icon:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 60px rgba(0, 242, 255, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.1) inset;
  transform: translateZ(20px) translateY(-4px);
}

.flow-icon:hover::before {
  opacity: 1;
}

.flow-icon svg {
  filter: drop-shadow(0 0 8px rgba(0, 242, 255, 0.3));
  transform: translateZ(10px);
}

.flow-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-secondary);
  text-align: center;
  white-space: nowrap;
  transform: translateZ(5px);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.flow-arrow {
  opacity: 1;
  transform-style: preserve-3d;
  position: relative;
  z-index: 0;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.flow-arrow svg {
  filter: drop-shadow(0 5px 15px rgba(0, 242, 255, 0.2));
}

@keyframes pulse-arrow3D {
  0%,
  100% {
    opacity: 0.7;
    transform: translateZ(0px) scale(1);
  }
  50% {
    opacity: 1;
    transform: translateZ(15px) scale(1.05);
  }
}

.api-preview {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.api-endpoint-preview {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: all 0.3s ease;
  opacity: 0;
  animation: slideInRight 0.6s ease-out forwards;
}

.api-endpoint-preview:nth-child(1) {
  animation-delay: 1.3s;
}

.api-endpoint-preview:nth-child(2) {
  animation-delay: 1.5s;
}

.api-endpoint-preview:nth-child(3) {
  animation-delay: 1.7s;
}

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

.api-endpoint-preview:hover {
  border-color: var(--color-primary);
  transform: translateX(5px);
}

.endpoint-method {
  padding: 0.5rem 1rem;
  background: rgba(0, 242, 255, 0.1);
  border: 1px solid rgba(0, 242, 255, 0.3);
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--color-primary);
  font-family: var(--font-mono);
  min-width: 60px;
  text-align: center;
}

.endpoint-method.post {
  background: rgba(139, 92, 246, 0.1);
  border-color: rgba(139, 92, 246, 0.3);
  color: var(--color-secondary);
}

.endpoint-method.put {
  background: rgba(251, 191, 36, 0.1);
  border-color: rgba(251, 191, 36, 0.3);
  color: var(--color-warning);
}

.endpoint-url {
  flex: 1;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

.endpoint-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-success);
}

.status-indicator {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.floating-card {
  position: absolute;
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow-md);
  animation: float 3s ease-in-out infinite;
}

.floating-card.card-1 {
  top: 10%;
  right: -10%;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 20%;
  right: -5%;
  animation-delay: 1s;
}

.floating-card.card-3 {
  top: 50%;
  right: -15%;
  animation-delay: 2s;
}

.card-icon {
  font-size: 1.5rem;
}

.card-text {
  font-weight: 600;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Features Section */
.features {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-secondary);
}

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

.section-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

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

.feature-card {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 16px;
  padding: 2rem;
  transition: all 0.4s ease;
  cursor: pointer;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.2);
}

.feature-icon {
  margin-bottom: 1.5rem;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* How It Works Section */
.how-it-works {
  position: relative;
  padding: 6rem 0;
}

.steps {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  margin-top: 4rem;
}

.step {
  flex: 1;
  position: relative;
}

.step-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: var(--font-mono);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.step-title {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.step-description {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.step-visual {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.upload-box {
  text-align: center;
  color: var(--color-text-secondary);
}

.upload-box svg {
  margin-bottom: 1rem;
  color: var(--color-primary);
}

.processing-animation {
  width: 100%;
  text-align: center;
}

.process-bar {
  height: 8px;
  background: var(--color-bg-tertiary);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 1rem;
}

.process-bar::after {
  content: "";
  display: block;
  height: 100%;
  width: 70%;
  background: var(--gradient-primary);
  border-radius: 4px;
  animation: progress 2s ease-in-out infinite;
}

@keyframes progress {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(150%);
  }
}

.process-text {
  color: var(--color-primary);
  font-weight: 600;
}

.api-endpoint {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.api-endpoint code {
  font-family: var(--font-mono);
  color: var(--color-primary);
  font-size: 0.85rem;
}

.status-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(34, 197, 94, 0.1);
  border-radius: 50px;
  color: var(--color-success);
  font-weight: 600;
  font-size: 0.85rem;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: var(--color-success);
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

.step-connector {
  width: 80px;
  height: 2px;
  background: var(--color-border);
  margin-top: 8rem;
  position: relative;
}

.step-connector::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  color: var(--color-primary);
  font-size: 1.5rem;
}

/* Pricing Section */
.pricing {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg);
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 3rem 0;
}

.billing-label {
  font-weight: 600;
  color: var(--color-text-secondary);
  transition: color 0.3s ease;
}

.billing-label.active {
  color: var(--color-text);
}

.discount-badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: 50px;
  color: var(--color-success);
  font-size: 0.75rem;
  font-weight: 700;
  margin-left: 0.5rem;
}

.toggle-switch {
  position: relative;
  width: 56px;
  height: 28px;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.toggle-slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 20px;
  height: 20px;
  background: var(--gradient-primary);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.annual .toggle-slider {
  transform: translateX(28px);
}

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

.pricing-card {
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.pricing-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.2);
}

.pricing-card.featured {
  background: var(--color-bg-tertiary);
  border-color: var(--color-primary);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0, 242, 255, 0.3);
}

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

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.5rem 1.5rem;
  background: var(--gradient-primary);
  color: var(--color-bg);
  font-weight: 700;
  font-size: 0.75rem;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-glow);
}

.pricing-header {
  margin-bottom: 2rem;
}

.plan-name {
  font-size: 1.75rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.plan-description {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

.pricing-price {
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.currency {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-secondary);
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  font-family: var(--font-mono);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  transition: all 0.3s ease;
}

.amount-custom {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.period {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  font-weight: 600;
}

.pricing-features {
  list-style: none;
  margin-bottom: 2rem;
  flex: 1;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  color: var(--color-text-secondary);
}

.check-icon {
  width: 20px;
  height: 20px;
  color: var(--color-success);
  flex-shrink: 0;
  margin-top: 2px;
}

.btn-pricing {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text);
  padding: 1rem 2rem;
  font-size: 1rem;
  border: 1px solid var(--color-border);
  justify-content: center;
}

.btn-pricing:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn-pricing-featured {
  width: 100%;
  background: var(--gradient-primary);
  color: var(--color-bg);
  padding: 1rem 2rem;
  font-size: 1rem;
  box-shadow: var(--shadow-glow);
  justify-content: center;
}

.btn-pricing-featured:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(0, 242, 255, 0.6);
}

.pricing-faq {
  margin-top: 6rem;
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.faq-item {
  background: var(--color-bg-secondary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.faq-question {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--color-text);
}

.faq-answer {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* Tech Stack Section */
.tech-stack {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-secondary);
}

.tech-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 2rem;
  margin-top: 4rem;
}

.tech-item {
  background: var(--color-bg-tertiary);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-item:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
}

.tech-logo {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.tech-name {
  font-weight: 600;
  color: var(--color-text-secondary);
}

/* Waitlist Section */
.waitlist {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-tertiary);
  overflow: hidden;
}

.waitlist::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -25%;
  width: 150%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(0, 242, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

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

.waitlist-content {
  position: relative;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.waitlist-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 1.5rem;
}

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

.waitlist-form {
  margin-bottom: 3rem;
}

.form-group {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.email-input {
  flex: 1;
  padding: 1.25rem 1.75rem;
  background: var(--color-bg-secondary);
  border: 2px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text);
  font-size: 1rem;
  font-family: var(--font-primary);
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(0, 242, 255, 0.1);
}

.email-input::placeholder {
  color: var(--color-text-muted);
}

.btn-waitlist {
  background: var(--gradient-primary);
  color: var(--color-bg);
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  box-shadow: var(--shadow-glow);
  white-space: nowrap;
}

.btn-waitlist:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 50px rgba(0, 242, 255, 0.7);
}

.btn-waitlist:active {
  transform: translateY(-1px);
}

.form-success,
.form-error {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  font-weight: 600;
}

.form-success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--color-success);
}

.form-error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #ef4444;
}

.form-success.show,
.form-error.show {
  display: flex;
  animation: slideInUp 0.5s ease-out;
}

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

.waitlist-benefits {
  display: flex;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-secondary);
  font-weight: 600;
}

.benefit-item svg {
  color: var(--color-primary);
}

/* Footer */
.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-border);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

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

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

.footer-tagline {
  color: var(--color-text-secondary);
  line-height: 1.6;
}

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

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

.footer-heading {
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-link {
  color: var(--color-text-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

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

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

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  color: var(--color-text-secondary);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: rgba(0, 242, 255, 0.1);
  border-color: var(--color-primary);
  color: var(--color-primary);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-visual {
    order: -1;
  }

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

  .tech-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .steps {
    flex-direction: column;
  }

  .step-connector {
    width: 2px;
    height: 80px;
    margin: 2rem auto;
  }

  .step-connector::after {
    content: "↓";
    top: auto;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

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

  .faq-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }

  .stat-divider {
    display: none;
  }

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

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

  .section-title {
    font-size: 2rem;
  }

  .waitlist-title {
    font-size: 2.25rem;
  }

  .form-group {
    flex-direction: column;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Selection Color */
::selection {
  background: var(--color-primary);
  color: var(--color-bg);
}
