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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Exo 2', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto,
    sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #0a0a0a;
  overflow-x: hidden;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  transition: all 0.3s ease;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(135deg, #00ff88 0%, #33ffaa 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.nav-link {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  background: transparent;
  outline: none;
}

.nav-link:hover {
  color: #00ff88;
}

.nav-link:active,
.nav-link:focus {
  background: transparent !important;
  outline: none !important;
  color: #fff !important;
}

.nav-link:active:hover,
.nav-link:focus:hover {
  color: #00ff88 !important;
}

.nav-link.active {
  color: #00ff88 !important;
  border-bottom: 2px solid #00ff88;
  background: transparent !important;
}

.nav-link.active:hover {
  color: #00ff88 !important;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  background: #0a0a0a; /* Fallback if video fails */
}

/* Background Video */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

/* Video Overlay for darkening */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 10, 0.4) 0%,
    rgba(10, 10, 10, 0.6) 50%,
    rgba(10, 10, 10, 0.8) 100%
  );
  z-index: 2;
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px 60px;
  width: 100%;
  position: relative;
  z-index: 3;
}

.hero-content {
  text-align: center;
  animation: fadeInUp 1s ease-out;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  line-height: 1.1;
}

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

.hero-description {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.btn-primary {
  background: linear-gradient(135deg, #00ff88 0%, #33ffaa 100%);
  color: #000;
  box-shadow: 0 8px 32px rgba(0, 255, 136, 0.3);
  font-weight: 700;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 255, 136, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #000 !important;
  border: 2px solid #000 !important;
  backdrop-filter: blur(10px);
  font-weight: 600;
}

.btn-secondary span,
.btn-secondary {
  color: #000 !important;
}

.btn-secondary svg {
  stroke: #000 !important;
  color: #000 !important;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: #000 !important;
  color: #000 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover span,
.btn-secondary:hover svg {
  stroke: #000 !important;
  color: #000 !important;
}

/* Features Section */
.features {
  padding: 120px 0;
  background: #0a0a0a;
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
}

.section-description {
  font-size: 1.25rem;
  color: #ccc;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.feature-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 40px 32px;
  text-align: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(0, 255, 136, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #00ff88 0%, #33ffaa 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  color: #000;
}

.feature-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.feature-description {
  color: #ccc;
  line-height: 1.6;
}

/* Download Section */
.download {
  padding: 120px 0;
  background: #0a0a0a;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.download-content {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}

.download-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
}

.download-description {
  font-size: 1.25rem;
  color: #ccc;
  margin-bottom: 40px;
  line-height: 1.6;
}

.download-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ccc;
}

.download-feature svg {
  color: #00ff88;
  flex-shrink: 0;
}

.download-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-btn {
  display: block;
  transition: transform 0.3s ease;
}

.download-btn:hover {
  transform: scale(1.05);
}

.download-btn img {
  height: 60px;
  width: auto;
}

/* Footer */
.footer {
  background: #0a0a0a;
  padding: 40px 0 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-description {
  color: #ccc;
  line-height: 1.6;
}

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

.footer-column h4 {
  color: #fff;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-column a {
  display: block;
  color: #ccc;
  text-decoration: none;
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #00ff88 !important;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #888;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-container {
    padding: 0 16px 40px;
  }

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

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

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

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

  .download-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

  .footer {
    padding: 30px 0 15px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 20px;
  }

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

  .footer-links {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 15px;
  }

  .footer-column {
    display: block !important;
  }

  .footer-column h4 {
    font-size: 13px;
    display: block !important;
    margin-bottom: 10px;
  }

  .footer-column a {
    font-size: 12px;
    display: block !important;
    margin-bottom: 6px;
  }

  .footer-bottom {
    padding-top: 15px;
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.9rem;
  }

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

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

/* Download button hover effects */
.download-btn:hover {
  background: rgba(0, 255, 136, 0.1) !important;
  border-color: #00ff88 !important;
  color: #00ff88 !important;
  transform: translateY(-2px);
}

/* Remove blue color from all links */
a {
  color: inherit;
  text-decoration: none;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
    gap: 15px;
  }

  .logo {
    justify-content: center;
    width: 100%;
  }

  .nav-links {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    width: 100%;
  }

  .nav-link {
    font-size: 14px;
  }
}

/* ===================================
   Lock in Price Section
   =================================== */

.lock-in-price {
  background: linear-gradient(135deg, #1a1a2e 0%, #0a0a0a 50%, #1a1a1a 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.lock-in-price::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 255, 136, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.8;
  }
}

.lock-in-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.lock-in-header {
  margin-bottom: 30px;
}

.lock-in-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 15px;
  line-height: 1.2;
}

.lock-in-subtitle {
  font-size: 1.5rem;
  color: #00ff88;
  font-weight: 600;
  margin: 0;
}

.lock-in-subtitle strong {
  color: #fff;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.8rem;
}

.lock-in-description {
  margin-bottom: 40px;
}

.lock-in-description p {
  font-size: 1.125rem;
  color: #ccc;
  line-height: 1.6;
}

.email-form-container {
  position: relative;
  margin-bottom: 50px;
}

.email-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 20px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.form-group {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.email-input {
  flex: 1;
  padding: 18px 24px;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-family: 'Exo 2', sans-serif;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: #00ff88;
  background: rgba(0, 0, 0, 0.6);
  box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.submit-btn {
  padding: 18px 36px;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  color: #0a0a0a;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 255, 136, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

.form-note svg {
  flex-shrink: 0;
}

.subscribers-count {
  background: rgba(0, 0, 0, 0.4);
  padding: 30px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.count-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.count-number {
  font-size: 4rem;
  font-weight: 900;
  background: linear-gradient(135deg, #00ff88 0%, #00cc6a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 8px;
  transition: transform 0.3s ease;
}

.count-number.animate-count {
  animation: countPop 0.5s ease;
}

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

.count-label {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, #00ff88 0%, #00cc6a 100%);
  border-radius: 10px;
  transition: width 0.5s ease;
}

.spots-remaining {
  font-size: 1rem;
  color: #00ff88;
  font-weight: 600;
  margin: 0;
}

.spots-remaining span {
  font-size: 1.25rem;
  font-weight: 800;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .lock-in-price {
    padding: 60px 0;
  }

  .lock-in-title {
    font-size: 2rem;
  }

  .lock-in-subtitle {
    font-size: 1.2rem;
  }

  .lock-in-subtitle strong {
    font-size: 1.4rem;
  }

  .lock-in-description p {
    font-size: 1rem;
  }

  .email-form {
    padding: 30px 20px;
  }

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

  .submit-btn {
    width: 100%;
    justify-content: center;
  }

  .count-number {
    font-size: 3rem;
  }

  .subscribers-count {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .lock-in-title {
    font-size: 1.75rem;
  }

  .lock-in-subtitle {
    font-size: 1rem;
  }

  .lock-in-subtitle strong {
    font-size: 1.2rem;
  }

  .email-form {
    padding: 24px 16px;
  }

  .count-number {
    font-size: 2.5rem;
  }
}

/* ===================================
   Transformation Carousel
   =================================== */

.transformation-carousel {
  background: #0a0a0a;
  padding: 60px 0;
  overflow: hidden;
  position: relative;
}

.transformation-carousel::before,
.transformation-carousel::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
  z-index: 2;
  pointer-events: none;
}

.transformation-carousel::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a 0%, transparent 100%);
}

.transformation-carousel::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a 0%, transparent 100%);
}

.carousel-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  gap: 20px;
  animation: scroll 40s linear infinite;
  width: fit-content;
}

.carousel-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.carousel-slide {
  flex-shrink: 0;
  width: 300px;
}

.transformation-card {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: #1a1a1a;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.transformation-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 8px 30px rgba(0, 255, 136, 0.2);
}

.transformation-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.transformation-card:hover img {
  transform: scale(1.05);
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .transformation-carousel {
    padding: 40px 0;
  }

  .carousel-slide {
    width: 250px;
  }

  .transformation-card {
    height: 350px;
  }

  .carousel-track {
    gap: 15px;
    animation: scroll 30s linear infinite;
  }
}

@media (max-width: 480px) {
  .transformation-carousel {
    padding: 30px 0;
  }

  .carousel-slide {
    width: 200px;
  }

  .transformation-card {
    height: 300px;
  }

  .carousel-track {
    gap: 12px;
    animation: scroll 25s linear infinite;
  }
}