/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&family=Orbitron:wght@400;500;600;700;800;900&family=Rajdhani:wght@300;400;500;600;700&display=swap');

@font-face {
  font-family: 'Montserrat';
  src: url('/static/media/Montserrat-Bold.woff2') format('woff2'),
       url('/static/media/Montserrat-Bold.woff') format('woff');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

/* Variables */
:root {
  --color-primary: #10B981;
  --color-secondary: #0EA5E9;
  --color-accent: #6366F1;
  --color-accent-glow: rgba(99, 102, 241, 0.5);
  --color-dark: #1E293B;
  --color-darker: #0F172A;
  --color-darkest: #020617;
  --color-light: #F8FAFC;
  --color-gray-300: #CBD5E1;
  --color-gray-400: #94A3B8;
  --color-gray-800: #1E293B;
  --color-neon-green: #4ADE80;
  --color-neon-blue: #38BDF8;
  --shadow-glow: 0 0 15px rgba(16, 185, 129, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
  --clip-slant: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
  --gradient-modern: linear-gradient(135deg, var(--color-accent) 0%, var(--color-primary) 50%, var(--color-neon-blue) 100%);
  --border-radius-sm: 0.375rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --font-heading: 'Orbitron', sans-serif;
  --font-body: 'Rajdhani', sans-serif;
  --font-accent: 'Poppins', sans-serif;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--color-darker);
  color: white;
  overflow-x: hidden;
  line-height: 1.5;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 20%),
    radial-gradient(circle at 90% 80%, rgba(14, 165, 233, 0.05) 0%, transparent 20%);
  background-attachment: fixed;
}

.cyberpunk-theme {
  background-color: var(--color-darkest);
  color: white;
}

img {
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

svg {
  width: 24px;
  height: 24px;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.min-h-screen {
  min-height: 100vh;
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

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

.gap-12 {
  gap: 3rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-2 {
  gap: 0.5rem;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.inset-0 {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

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

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

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

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

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

/* Typography */
.font-heading {
  font-family: var(--font-heading);
  letter-spacing: 1px;
}

.font-accent {
  font-family: var(--font-accent);
}

.font-bebas {
  font-family: 'Bebas Neue', sans-serif;
}

.text-5xl {
  font-size: 3rem;
}

.text-2xl {
  font-size: 1.5rem;
}

.text-xl {
  font-size: 1.25rem;
}

.text-sm {
  font-size: 0.875rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.leading-tight {
  line-height: 1.2;
}

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

.text-primary {
  color: var(--color-primary);
}

.text-gray-300 {
  color: var(--color-gray-300);
}

.text-gray-400 {
  color: var(--color-gray-400);
}

/* Components */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 0;
  position: relative;
  z-index: 50;
  backdrop-filter: blur(8px);
  margin-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.logo-container {
  position: relative;
  display: flex;
  align-items: center;
}

.logo {
  height: 2.75rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.5));
}

.logo-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--color-primary);
  filter: blur(15px);
  opacity: 0.4;
  z-index: 1;
  animation: pulse 3s infinite alternate;
}

.nav-list {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  font-weight: 500;
  transition: all 0.3s;
  position: relative;
  padding: 0.5rem 0;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.nav-link:hover {
  color: var(--color-primary);
  text-shadow: 0 0 5px var(--color-primary);
}

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

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

.menu-button {
  background: transparent;
  color: white;
  display: none;
}

/* Hero section */
.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  padding: 2rem 0 5rem;
  position: relative;
  min-height: 85vh;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  text-align: center;
  z-index: 10;
  max-width: 640px;
  margin: 0 auto;
  padding: 2rem;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 1rem;
  position: relative;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  background-image: var(--gradient-modern);
}

.glitch-container {
  position: relative;
  overflow: hidden;
  display: inline-block;
}

.glitch-effect {
  position: relative;
  display: inline-block;
  color: white;
  font-weight: 800;
  text-shadow: 0 0 10px rgba(16, 185, 129, 0.5);
  animation: noise-anim 2s infinite linear alternate-reverse;
  background: var(--gradient-modern);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.glitch-effect::before,
.glitch-effect::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.glitch-effect::before {
  left: 2px;
  text-shadow: -2px 0 #38BDF8;
  clip-path: polygon(0 0, 100% 0, 100% 45%, 0 45%);
  animation: glitch-anim-1 5s infinite linear alternate-reverse;
}

.glitch-effect::after {
  left: -2px;
  text-shadow: 2px 0 #10B981;
  clip-path: polygon(0 55%, 100% 55%, 100% 100%, 0 100%);
  animation: glitch-anim-2 3s infinite linear alternate-reverse;
}

.hero-description {
  font-family: var(--font-body);
  font-size: 1.35rem;
  font-weight: 500;
  margin-bottom: 2rem;
  color: var(--color-gray-300);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}

.btn {
  font-family: var(--font-heading);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.875rem 1.75rem;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--color-primary);
  color: white;
  border: none;
  box-shadow: var(--shadow-glow);
  transform: perspective(1px) translateZ(0);
  position: relative;
}

.btn-primary::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-modern);
  transform: scaleX(0);
  transform-origin: 0 50%;
  transition: transform 0.3s ease-out;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.25), 0 5px 5px rgba(0, 0, 0, 0.35);
}

.btn-primary:hover::before {
  transform: scaleX(1);
}

.btn-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-text {
  z-index: 2;
  position: relative;
  text-transform: uppercase;
}

.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  transition: all 0.3s;
  border-radius: var(--border-radius-md);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.copy-icon {
  height: 20px;
  width: 20px;
  transition: all 0.3s;
}

.btn-outline:hover .copy-icon {
  transform: scale(1.2);
}

.promo-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}

.promo-button::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    to bottom right, 
    rgba(255, 255, 255, 0) 0%, 
    rgba(255, 255, 255, 0.1) 100%
  );
  transform: rotate(45deg);
  transition: all 0.6s;
  z-index: 0;
}

.promo-button:hover::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.promo-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  position: relative;
  z-index: 1;
}

.promo-code {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-shadow: 0 0 5px var(--color-primary);
}

.case-showcase {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 3rem 2rem;
  margin-top: 3rem;
  background: rgba(15, 23, 42, 0.2);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-lg);
}

.hexagon-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 20px, 
      rgba(99, 102, 241, 0.03) 20px, rgba(99, 102, 241, 0.03) 21px),
    repeating-linear-gradient(90deg, transparent, transparent 20px, 
      rgba(99, 102, 241, 0.03) 20px, rgba(99, 102, 241, 0.03) 21px);
  opacity: 0.5;
  z-index: -1;
}

.glow-bg {
  position: absolute;
  width: 100%;
  height: 50%;
  filter: blur(40px);
  z-index: -1;
  opacity: 0.4;
}

.glow-bg-top {
  top: 0;
  background: linear-gradient(to bottom, rgba(99, 102, 241, 0.3), transparent);
}

.glow-bg-bottom {
  bottom: 0;
  background: linear-gradient(to top, rgba(99, 102, 241, 0.3), transparent);
}

.case-card {
  position: relative;
  width: 320px;
  background: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all 0.4s;
  transform-style: preserve-3d;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 2;
}

.primary-case {
  transform: perspective(1000px) rotateY(0deg);
  transition: transform 0.6s ease;
}

.primary-case:hover {
  transform: perspective(1000px) rotateY(10deg) translateY(-10px);
  box-shadow: 0 20px 30px rgba(0, 0, 0, 0.3);
  border-color: rgba(16, 185, 129, 0.3);
}

.card-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.1),
    transparent
  );
  transition: 0.5s;
  z-index: 1;
}

.case-card:hover .card-shine {
  left: 100%;
}

.case-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.5s;
  border-top-left-radius: var(--border-radius-lg);
  border-top-right-radius: var(--border-radius-lg);
}

.case-info {
  padding: 1.75rem;
  text-align: center;
  position: relative;
  z-index: 2;
  background: linear-gradient(to bottom, transparent, rgba(15, 23, 42, 0.8));
}

.case-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
  color: var(--color-primary);
  text-shadow: 0 0 5px var(--color-primary);
}

.case-price {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.25rem;
  color: white;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.case-button {
  width: 100%;
  padding: 0.875rem 0;
  background: var(--color-primary);
  color: white;
  border-radius: var(--border-radius-md);
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border: none;
}

.button-effect {
  position: absolute;
  width: 30px;
  height: 100%;
  top: 0;
  left: -60px;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.5) 50%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: skewX(-20deg);
  animation: shine 6s infinite;
}

.case-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 15px var(--color-primary);
}

.floating-card {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  overflow: hidden;
  transition: all 0.5s;
  z-index: 1;
}

.card-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at center,
    rgba(67, 56, 202, 0.3) 0%,
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 1;
}

.floating-card:hover .card-glow {
  opacity: 1;
}

.floating-card-1 {
  top: 20%;
  left: -30%;
  transform: rotate(-15deg);
  z-index: 1;
}

.floating-card-1:hover {
  transform: rotate(-10deg) translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.floating-card-2 {
  top: 20%;
  right: -30%;
  transform: rotate(15deg);
  z-index: 1;
}

.floating-card-2:hover {
  transform: rotate(10deg) translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.floating-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.animate-float {
  animation: float 6s ease-in-out infinite;
}

.animate-float-reverse {
  animation: float 6s ease-in-out infinite reverse;
}

/* Features Section */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 5rem 0;
}

.feature-card {
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(5px);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(16, 185, 129, 0.3);
  background: rgba(15, 23, 42, 0.6);
}

.feature-icon {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.75rem;
  background: rgba(16, 185, 129, 0.1);
  border-radius: 50%;
  padding: 1.25rem;
  color: var(--color-primary);
  transition: all 0.3s;
}

.feature-card:hover .feature-icon {
  background: var(--color-primary);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px var(--color-primary);
}

.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  letter-spacing: 1px;
}

.feature-description {
  color: var(--color-gray-400);
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 500;
}

.footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background-color: rgba(15, 23, 42, 0.6);
  backdrop-filter: blur(8px);
  margin-top: 4rem;
}

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

.copyright {
  color: var(--color-gray-400);
  font-size: 0.9rem;
}

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

.social-link {
  color: var(--color-gray-400);
  transition: all 0.3s;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover {
  color: var(--color-primary);
  transform: translateY(-3px);
  background: rgba(16, 185, 129, 0.1);
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.video-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.6;
  filter: brightness(0.7) contrast(1.2) saturate(1.2);
}

.dynamic-gradient-overlay {
  background: radial-gradient(
    circle at center,
    transparent 0%,
    var(--color-darkest) 90%
  );
  mix-blend-mode: overlay;
  opacity: 0.8;
}

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 250 250' 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");
  opacity: 0.05;
  z-index: 5;
  pointer-events: none;
}

.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(99, 102, 241, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(99, 102, 241, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.2;
  z-index: -1;
}

.particle {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-primary);
  filter: blur(3px);
  box-shadow: 0 0 10px var(--color-primary), 0 0 20px var(--color-primary);
  opacity: 0.7;
  z-index: 1;
}

.particle-1 {
  top: 10%;
  left: 20%;
  width: 8px;
  height: 8px;
  opacity: 0.4;
  animation: float 15s infinite ease-in-out alternate;
}

.particle-2 {
  top: 50%;
  right: 15%;
  width: 6px;
  height: 6px;
  opacity: 0.5;
  animation: float 12s infinite ease-in-out alternate-reverse;
}

.particle-3 {
  bottom: 30%;
  left: 30%;
  width: 7px;
  height: 7px;
  opacity: 0.6;
  animation: float 18s infinite ease-in-out;
}

.particle-4 {
  bottom: 20%;
  right: 25%;
  width: 9px;
  height: 9px;
  opacity: 0.4;
  animation: float 14s infinite ease-in-out alternate;
}

.particle-5 {
  top: 35%;
  left: 50%;
  width: 5px;
  height: 5px;
  opacity: 0.5;
  animation: float 20s infinite ease-in-out alternate-reverse;
}

.particle-6 {
  top: 70%;
  left: 70%;
  width: 6px;
  height: 6px;
  opacity: 0.6;
  animation: float 16s infinite ease-in-out;
}

.toast-container {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  z-index: 1000;
}

.toast {
  background: var(--color-dark);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.success {
  border-left: 4px solid #10B981;
}

.toast.error {
  border-left: 4px solid #EF4444;
}

.toast-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  background: var(--color-primary);
  width: 100%;
  transform-origin: left;
  animation: progress 5s linear forwards;
}

.clip-slant {
  clip-path: var(--clip-slant);
}

/* Animations */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-15px); }
}

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

@keyframes shine {
  0% { left: -60px; }
  20%, 100% { left: 130%; }
}

@keyframes progress {
  0% { transform: scaleX(1); }
  100% { transform: scaleX(0); }
}

@keyframes glitch {
  0% {
    transform: translate(0);
  }
  25% {
    transform: translate(-5px, 5px);
    filter: hue-rotate(90deg);
  }
  50% {
    transform: translate(5px, -5px) scale(1.01);
  }
  75% {
    transform: translate(-5px, -5px);
    filter: hue-rotate(-90deg);
  }
  100% {
    transform: translate(0);
  }
}

@keyframes glitch-anim-1 {
  0%, 5%, 10% {
    transform: none;
    opacity: 1;
  }
  1%, 9% {
    transform: skew(-0.5deg, -0.9deg);
    opacity: 0.75;
  }
  6% {
    transform: skew(0.8deg, -0.1deg);
    opacity: 0.75;
  }
  11%, 100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes glitch-anim-2 {
  0%, 15%, 20% {
    transform: none;
    opacity: 1;
  }
  11%, 14% {
    transform: skew(0.5deg, 0.9deg);
    opacity: 0.75;
  }
  16% {
    transform: skew(-0.8deg, 0.1deg);
    opacity: 0.75;
  }
  21%, 100% {
    transform: none;
    opacity: 1;
  }
}

@keyframes noise-anim {
  0% {
    clip-path: inset(40% 0 61% 0);
  }
  20% {
    clip-path: inset(92% 0 1% 0);
  }
  40% {
    clip-path: inset(43% 0 1% 0);
  }
  60% {
    clip-path: inset(25% 0 58% 0);
  }
  80% {
    clip-path: inset(54% 0 7% 0);
  }
  100% {
    clip-path: inset(58% 0 43% 0);
  }
}

@media (min-width: 768px) {
  .hero {
    grid-template-columns: 1fr 1fr;
    padding: 0 2rem 5rem;
  }
  
  .hero-content, .case-showcase {
    margin: 0;
  }
  
  .hero-title {
    font-size: 4rem;
  }
  
  .hero-description {
    font-size: 1.35rem;
  }
  
  .features {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .footer-content {
    flex-direction: row;
  }
  
  .social-links {
    margin-top: 0;
  }
  
  .hero-content {
    text-align: left;
  }
  
  .hero-description {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .menu-button {
    display: block;
  }
  
  .nav-desktop {
    display: none;
  }
  
  .floating-card {
    display: none;
  }
  
  .case-card {
    width: 100%;
    max-width: 300px;
  }
  
  .hero-title {
    font-size: 3rem;
  }
} 