/* Modern Premium Reset and Variables */
:root {
  --bg-color-main: #000000;
  --bg-color-secondary: #0a0a0c;
  --text-primary: #f0f0f5;
  --text-muted: #9aa2b1;
  --accent-primary: #8FFD16;
  --accent-secondary: #3582FF;
  --accent-gradient: linear-gradient(135deg, #8FFD16 0%, #3582FF 100%);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

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

/* Background Aesthetics & Fixed Orbs (No Scroll Impact) */
.bg-visuals-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow-orb {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(143,253,22,0.1) 0%, rgba(10,10,12,0) 70%);
  filter: blur(60px);
  animation: floatOrb 10s infinite ease-in-out alternate;
}

.glow-orb.top-left { top: -200px; left: -200px; }
.glow-orb.bottom-right { bottom: -200px; right: -200px; animation-delay: -5s; background: radial-gradient(circle, rgba(53,130,255,0.1) 0%, rgba(10,10,12,0) 70%); }

@keyframes floatOrb {
  0% { transform: translateY(0) scale(1); }
  100% { transform: translateY(50px) scale(1.1); }
}

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

/* Layout */
.page-wrapper {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 5%;
  position: relative;
  z-index: 10;
}

/* Navbar */
.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem 0;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.5rem;
  letter-spacing: -0.5px;
}

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

.text-gradient {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lang-switch {
  display: flex;
  gap: 1rem;
}

.lang-btn {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  opacity: 0.6;
}

.lang-btn img {
  width: 20px;
  border-radius: 2px;
}

.lang-btn:hover, .lang-btn.active {
  color: var(--text-primary);
  opacity: 1;
}

/* Hero Section */
.hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4rem 0;
  gap: 4rem;
}

.hero-text {
  flex: 1.2;
}

.hero-form {
  flex: 1;
  position: relative;
}

/* Form Panel with Glassmorphism */
.hero-form::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  background: linear-gradient(135deg, rgba(143,253,22,0.15) 0%, rgba(53,130,255,0.15) 100%);
  border-radius: 26px;
  z-index: -1;
  filter: blur(10px);
  opacity: 0.5;
}

.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 3rem;
  box-shadow: var(--glass-shadow);
}

/* Typography elements */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(143, 253, 22, 0.1);
  border: 1px solid rgba(143, 253, 22, 0.2);
  color: var(--accent-primary);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--accent-primary);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--accent-primary);
}

.headline {
  font-family: var(--font-heading);
  font-size: clamp(3rem, 5vw, 4.5rem);
  line-height: 1.05;
  font-weight: 900;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.subtitle {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 90%;
  margin-bottom: 3rem;
  font-weight: 300;
}

/* Author Snippet */
.author-snippet {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  border-left: 3px solid var(--accent-primary);
  padding-left: 1.5rem;
}

.avatar-placeholder {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--accent-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: #000;
  box-shadow: 0 4px 15px rgba(143, 253, 22, 0.3);
}

.author-info strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-primary);
}

.author-info span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Form Styles */
.form-header {
  margin-bottom: 2.5rem;
}

.form-header h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.form-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.input-group {
  position: relative;
}

.input-group input {
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
  border: 1px solid var(--glass-border);
  padding: 1.2rem 1.2rem;
  border-radius: 12px;
  color: var(--text-primary);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: var(--transition-smooth);
}

.input-group input:focus {
  outline: none;
  border-color: var(--accent-primary);
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 15px rgba(143, 253, 22, 0.1);
}

.input-group label {
  position: absolute;
  top: 50%;
  left: 1.2rem;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.input-group input:focus + label,
.input-group input:valid + label {
  top: -8px;
  left: 10px;
  font-size: 0.75rem;
  background: var(--bg-color-main);
  padding: 0 0.5rem;
  color: var(--accent-primary);
  border-radius: 4px;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.checkbox-group input {
  margin-top: 0.3rem;
  accent-color: var(--accent-primary);
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-muted);
  cursor: pointer;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #000;
  border: none;
  padding: 1.2rem;
  border-radius: 12px;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 8px 25px rgba(143, 253, 22, 0.25);
  margin-top: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
  transform: skewX(-20deg);
  transition: 0.5s;
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(143, 253, 22, 0.4);
}

.btn-primary:hover::after {
  left: 150%;
}

.loader {
  border: 2px solid rgba(0,0,0,0.3);
  border-top: 2px solid #000;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 1s linear infinite;
}

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

/* Cards Section */
.features-section {
  padding: 4rem 0 2rem;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 4rem;
}

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

.feature-card {
  padding: 2.5rem;
  transition: var(--transition-smooth);
}

.interactive:hover {
  transform: translateY(-10px);
  border-color: rgba(143, 253, 22, 0.3);
  box-shadow: 0 15px 40px rgba(143, 253, 22, 0.1);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  background: rgba(255, 255, 255, 0.05);
  width: 60px; height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 1rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Footer & Socials */
.site-footer {
  text-align: center;
  padding: 3rem 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  border-top: 1px solid var(--glass-border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.social-links {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
}

.legal-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.8rem;
  transition: var(--transition-smooth);
}

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

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  border: 1px solid var(--glass-border);
  font-family: var(--font-heading);
  font-weight: 500;
  transition: var(--transition-smooth);
}

.social-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  border-color: var(--accent-primary);
  color: var(--accent-primary);
  box-shadow: 0 5px 15px rgba(143, 253, 22, 0.15);
}

/* Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

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

/* Form Messages */
.form-message {
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}
.form-message.error {
  background: rgba(143, 253, 22, 0.1);
  color: var(--accent-primary);
  border: 1px solid rgba(143, 253, 22, 0.2);
}

/* Responsive */
@media (max-width: 968px) {
  .hero-section {
    flex-direction: column;
    text-align: center;
    padding-top: 2rem;
  }
  
  .author-snippet {
    border-left: none;
    border-top: 3px solid var(--accent-primary);
    padding-left: 0;
    padding-top: 1.5rem;
    justify-content: center;
    margin: 0 auto;
  }
  
  .subtitle {
    margin: 0 auto 3rem;
  }
}

@media (max-width: 768px) {
  .headline {
    font-size: clamp(2.2rem, 8vw, 3rem);
  }

  .glass-panel {
    padding: 2rem 1.5rem;
  }

  .form-header h2 {
    font-size: 1.6rem;
  }

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

  .logo {
    font-size: 1.2rem;
  }

  .feature-card {
    padding: 1.8rem;
  }
  
  .top-nav {
    flex-direction: column;
    gap: 1.5rem;
  }
}

@media (max-width: 480px) {
  .glass-panel {
    border-radius: 16px;
    padding: 1.5rem 1rem;
  }
  
  .input-group input {
    padding: 1rem;
  }
  
  .btn-primary {
    font-size: 1rem;
    padding: 1rem;
  }
}