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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

p {
  color: #666;
  line-height: 1.7;
}

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

/* Navigation */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: all 0.3s ease;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.nav-toggle span {
  height: 3px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.nav-toggle span:nth-child(1) {
  width: 28px;
}

.nav-toggle span:nth-child(2) {
  width: 14px; /* Half length */
  margin-left: auto;
}

.nav-toggle span:nth-child(3) {
  width: 28px;
}

/* Animated hamburger when active */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
  width: 28px;
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
  width: 28px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

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

.logo-text {
  font-size: 24px;
  font-weight: 700;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: #666;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #1a1a1a;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-primary-large,
.btn-secondary-large,
.btn-primary-hero {
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
}

.btn-primary-hero {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(102, 126, 234, 0.3);
}

.btn-primary-hero:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(102, 126, 234, 0.5);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
  padding-top: 72px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.2;
  animation: float 8s ease-in-out infinite;
}

.orb-1 {
  width: 400px;
  height: 400px;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  top: -200px;
  right: -200px;
  animation-delay: 0s;
}

.orb-2 {
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, #f093fb 0%, #f5576c 100%);
  bottom: -150px;
  left: -150px;
  animation-delay: 3s;
}

.orb-3 {
  width: 250px;
  height: 250px;
  background: linear-gradient(45deg, #4facfe 0%, #00f2fe 100%);
  top: 40%;
  right: 30%;
  animation-delay: 6s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(180deg);
  }
}

.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 540px;
}

.hero-headline {
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.highlight-text {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  font-size: 20px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
}

.hero-visuals {
  position: relative;
  height: 600px;
  z-index: 2;
}

.mockup-main {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.2);
  background: transparent;
  /* border: 1px solid rgba(0, 0, 0, 0.05); */
  z-index: 3;
}

/* Desktop mockup - only show on desktop */
.mockup-desktop {
  width: 500px;
  height: 350px;
  display: none;
}

/* Tablet mockup - only show on tablets */
.mockup-tablet-main {
  width: 350px;
  height: 480px;
  display: none;
}

/* Mobile mockup - show by default */
.mockup-mobile-main {
  width: 280px;
  height: 560px;
  display: block;
}

.mockup-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hide accent mockups - they were just decorative */
.mockup-accent {
  display: none;
}

/* Tablet breakpoint (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
  .mockup-mobile-main {
    display: none;
    background-color: transparent;
    background: none;
  }

  .mockup-tablet-main {
    display: block;
  }

  .hero-visuals {
    height: 550px;
  }
}

/* Desktop breakpoint (1025px+) */
@media (min-width: 1025px) {
  .mockup-mobile-main {
    display: none;
  }

  .mockup-desktop {
    display: block;
  }

  .hero-visuals {
    height: 600px;
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .hero-visuals {
    height: 400px;
  }

  .mockup-mobile-main {
    width: 240px;
    height: 480px;
  }
}

@media (max-width: 480px) {
  .hero-visuals {
    height: 350px;
  }

  .mockup-mobile-main {
    width: 200px;
    height: 400px;
  }
}

/* Trust Bar */
/* Trust Bar */
.trust-bar {
  padding: 10px 0;
  background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}

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

.trust-scroll-track {
  display: flex;
  gap: 80px;
  animation: scroll-left 6s linear infinite;
  padding: 20px 0;
  width: max-content;
}

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

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

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: #1a1a1a;
  white-space: nowrap;
  transition: all 0.3s ease;
  cursor: default;
  padding: 12px 0;
}

.trust-item:hover {
  transform: translateY(-5px);
}

.trust-item:hover .trust-icon {
  animation: bounce 0.6s ease;
}

@keyframes bounce {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.3) rotate(10deg);
  }
}

.trust-icon {
  width: 28px;
  height: 28px;
  stroke: url(#icon-gradient);
  stroke-width: 2;
  transition: all 0.3s ease;
}

/* Gradient overlay for smooth edges */
.trust-scroll-container::before,
.trust-scroll-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trust-scroll-container::before {
  left: 0;
  background: linear-gradient(90deg, #fafafa 0%, transparent 100%);
}

.trust-scroll-container::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, #fafafa 100%);
}

/* Gradient for icons */
svg {
  overflow: visible;
}

/* Problem Solution */
.problem-solution {
  padding: 120px 0;
  background: #ffffff;
}

.problem-solution .section-headline {
  text-align: center;
  margin-bottom: 60px;
  font-size: clamp(32px, 4vw, 48px);
}

.comparison {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 900px;
  margin: 0 auto;
}

.before,
.after {
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.before {
  background: linear-gradient(135deg, #fee2e2 0%, #fecaca 100%);
  border: 1px solid #fca5a5;
}

.after {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 1px solid #86efac;
}

.before h3,
.after h3 {
  font-size: 24px;
  margin-bottom: 24px;
}

.before ul,
.after ul {
  list-style: none;
  text-align: left;
}

.before li,
.after li {
  padding: 8px 0;
  font-size: 16px;
  color: #374151;
}

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

.section-headline {
  font-size: clamp(36px, 4vw, 48px);
  text-align: center;
  margin-bottom: 80px;
  color: #1a1a1a;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.95);
}

.feature-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.available-badge {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  color: #166534;
  border: 1px solid #86efac;
}

.coming-badge {
  background: linear-gradient(135deg, #ddd6fe 0%, #c4b5fd 100%);
  color: #5b21b6;
  border: 1px solid #a78bfa;
}

.feature-card.coming-soon {
  opacity: 0.8;
}

.feature-title {
  font-size: 24px;
  margin: 24px 0 16px;
  color: #1a1a1a;
}

.feature-description {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
  line-height: 1.6;
}

.feature-image {
  border-radius: 12px;
  overflow: hidden;
  background: #f0f0f0;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  font-size: 48px;
  opacity: 0.6;
}

/* Waitlist Section */
.waitlist {
  padding: 120px 20px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  background-size: 200% 200%;
  animation: gradient-shift 15s ease infinite;
  position: relative;
  overflow: hidden;
}

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

.waitlist::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 50%
  );
  pointer-events: none;
}

.waitlist-content {
  max-width: 580px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.waitlist-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 64px 48px;
  text-align: center;
}

.waitlist-headline {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  text-align: center;
}

.waitlist-subheadline {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
  line-height: 1.6;
}

.form-group {
  margin-bottom: 24px;
  text-align: left;
}

.form-input {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: #667eea;
  box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
  background: rgba(255, 255, 255, 1);
}

.form-input::placeholder {
  color: #999;
}

.select {
  margin-top: 20px;
}

.btn-submit {
  width: 100%;
  padding: 18px 24px;
  background: #1a1a1a;
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 32px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.waitlist-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: #4a5568;
}

.benefit-icon {
  font-size: 16px;
}

.waitlist-success {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(30px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 32px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2), 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 64px 48px;
  text-align: center;
}

.success-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 36px;
  margin: 0 auto 24px;
}

.waitlist-success h3 {
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.waitlist-success p {
  font-size: 16px;
  color: #4a5568;
  max-width: 420px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-brand .logo-text {
  color: white;
  font-size: 28px;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}

.footer-social {
  display: flex;
  gap: 24px;
}

.social-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.social-link:hover {
  color: white;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

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

  .nav-menu {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    transition: left 0.3s ease;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-actions {
    flex-direction: column;
    width: 100%;
  }

  .nav-link {
    width: 100%;
    text-align: center;
    padding: 12px;
  }

  .btn-primary {
    width: 100%;
  }

  /* Hero Section - CRITICAL FIXES */
  .hero {
    min-height: auto;
    padding: 120px 0 60px;
  }

  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-cta {
    justify-content: center;
    flex-direction: column;
  }
  .waitlist {
    padding: 80px 16px;
  }

  .waitlist-form {
    padding: 40px 24px;
    border-radius: 24px;
  }

  .waitlist-headline {
    font-size: 28px;
  }

  .waitlist-subheadline {
    font-size: 16px;
  }

  .waitlist-benefits {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    padding: 24px;
  }

  /* Comparison Section */
  .comparison {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .before,
  .after {
    padding: 32px 24px;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
    text-align: center;
  }

  .footer-social {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 28px;
    line-height: 1.2;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .btn-primary-hero {
    padding: 14px 24px;
    font-size: 16px;
    width: 100%;
  }

  .section-headline {
    font-size: 24px;
  }

  .waitlist-headline {
    font-size: 24px;
  }

  .waitlist-form {
    padding: 32px 20px;
  }

  .trust-items {
    gap: 32px;
  }

  .trust-item {
    font-size: 14px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus States */
button:focus,
input:focus,
select:focus {
  outline: 2px solid #667eea;
  outline-offset: 2px;
}
