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

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #e5e7eb;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem;
}

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

.brand-icon {
  width: 2rem;
  height: 2rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
}

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

.nav-link:hover {
  color: #2563eb;
}

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

.mobile-menu-btn span {
  width: 20px;
  height: 2px;
  background: #374151;
  transition: all 0.3s;
}

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

.btn-primary {
  background: #2563eb;
  color: white;
}

.btn-primary:hover {
  background: #1d4ed8;
}

.btn-gradient {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-gradient:hover {
  background: linear-gradient(135deg, #1d4ed8, #6d28d9);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #374151;
  border: 1px solid #d1d5db;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline:hover {
  background: #f9fafb;
}

.btn-white {
  background: white;
  color: #2563eb;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-white:hover {
  background: #f9fafb;
}

.btn-outline-white {
  background: transparent;
  color: white;
  border: 1px solid white;
  padding: 1rem 2rem;
  font-size: 1rem;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
}

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

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(124, 58, 237, 0.1), rgba(236, 72, 153, 0.1));
  filter: blur(60px);
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}

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

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-screenshot {
  width: 80%;
  max-width: 320px;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #dbeafe;
  color: #1d4ed8;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 2rem;
}

.title-line1 {
  background: linear-gradient(135deg, #111827, #1e40af, #7c2d12);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.title-line2 {
  background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.hero-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* Screenshot Showcase Section */
.screenshot-showcase {
  padding: 4rem 0;
  background: white;
}

.screenshot-content {
  text-align: center;
  margin: 0 auto;
}

.screenshot-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.screenshot-description {
  font-size: 1.25rem;
  color: #6b7280;
  margin-bottom: 3rem;
  line-height: 1.6;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

.screenshot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.showcase-screenshot {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.showcase-screenshot:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px -16px rgba(0, 0, 0, 0.3);
}

.screenshot-caption {
  font-size: 1rem;
  font-weight: 500;
  color: #6b7280;
  text-align: center;
  margin: 0;
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-title {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 1.25rem;
  color: #6b7280;
  max-width: 48rem;
  margin: 0 auto;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
  background: white;
}

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

.feature-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.feature-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.feature-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.feature-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.feature-icon.pink {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

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

/* Key Features */
.key-features {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.key-features-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.features-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-item-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-item-icon.blue {
  background: #dbeafe;
  color: #2563eb;
}

.feature-item-icon.purple {
  background: #ede9fe;
  color: #7c3aed;
}

.feature-item-icon.green {
  background: #d1fae5;
  color: #059669;
}

.feature-item-icon.pink {
  background: #fce7f3;
  color: #ec4899;
}

.feature-item-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 0.5rem;
}

.feature-item-content p {
  color: #6b7280;
}

.code-demo {
  position: relative;
}

.terminal {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border: 1px solid #e5e7eb;
}

.terminal-header {
  background: #f9fafb;
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.terminal-buttons {
  display: flex;
  gap: 0.5rem;
}

.terminal-button {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
}

.terminal-button.red {
  background: #ef4444;
}

.terminal-button.yellow {
  background: #f59e0b;
}

.terminal-button.green {
  background: #10b981;
}

.terminal-content {
  background: #111827;
  color: #10b981;
  font-family: "Monaco", "Menlo", monospace;
  font-size: 0.875rem;
  padding: 1.5rem;
}

.terminal-line {
  margin-bottom: 1rem;
}

.prompt {
  color: #10b981;
}

.command {
  color: #3b82f6;
}

.string {
  color: #f59e0b;
}

.terminal-output {
  margin-top: 1rem;
}

.output-line {
  color: #9ca3af;
  margin-bottom: 0.5rem;
}

.output-success {
  color: #10b981;
  margin-top: 1rem;
}

/* Audience Section */
.audience-section {
  padding: 5rem 0;
  background: white;
}

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

.audience-card {
  text-align: center;
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.audience-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.audience-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.audience-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.audience-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.audience-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.audience-icon.pink {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.audience-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.audience-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* Comparison Section */
.comparison-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f9fafb, #eff6ff);
}

.comparison-table-wrapper {
  background: white;
  border-radius: 1rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
}

.comparison-table th {
  background: #f9fafb;
  padding: 1.5rem;
  text-align: left;
  font-weight: 600;
  color: #111827;
  font-size: 0.875rem;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table td {
  padding: 1.5rem;
  border-bottom: 1px solid #f3f4f6;
  color: #6b7280;
}

.tool-name {
  font-weight: 500;
  color: #111827 !important;
}

.athena-row {
  background: #eff6ff;
}

.athena-row td {
  color: #1e40af !important;
  font-weight: 500;
}

/* Use Cases */
.use-cases {
  padding: 5rem 0;
  background: white;
}

.use-cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.use-case-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: all 0.3s;
}

.use-case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.use-case-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: white;
}

.use-case-icon.blue {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.use-case-icon.purple {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.use-case-icon.green {
  background: linear-gradient(135deg, #10b981, #059669);
}

.use-case-icon.pink {
  background: linear-gradient(135deg, #f59e0b, #ec4899);
}

.use-case-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 1rem;
}

.use-case-card p {
  color: #6b7280;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #2563eb, #7c3aed, #ec4899);
}

.cta-content {
  text-align: center;
  max-width: 64rem;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  color: rgba(219, 234, 254, 0.9);
  max-width: 32rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* Footer */
.footer {
  background: #111827;
  color: white;
  padding: 3rem 0;
}

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

.footer-brand {
  max-width: 20rem;
}

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

.footer-brand p {
  color: #9ca3af;
}

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

.footer-column h3 {
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 2rem;
  text-align: center;
  color: #9ca3af;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .hero-layout {
    gap: 2rem;
  }

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

  .screenshots-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    max-width: 1300px;
  }

  .showcase-screenshot {
    max-width: 700px;
  }
}

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

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

  .hero {
    padding: 6rem 0 4rem;
  }

  .hero-layout {
    gap: 2rem;
    text-align: center;
  }

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

  .screenshot-description {
    font-size: 1.125rem;
  }

  .screenshots-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 700px;
  }

  .showcase-screenshot {
    max-width: 650px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

  .features-list {
    order: 2;
  }

  .code-demo {
    order: 1;
  }

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

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

  .comparison-table-wrapper {
    overflow-x: auto;
  }

  .comparison-table {
    min-width: 600px;
  }
}

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

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

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

  .screenshot-title {
    font-size: 1.5rem;
  }

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

  .screenshots-grid {
    gap: 1.5rem;
    max-width: 600px;
  }

  .showcase-screenshot {
    max-width: 550px;
  }

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

  .section-description {
    font-size: 1.125rem;
  }

  .feature-card,
  .audience-card,
  .use-case-card {
    padding: 1.5rem;
  }
}

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

/* Animation classes for JavaScript */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.slide-in-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: all 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.slide-in-right {
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Waitlist Page Styles */
.waitlist-section {
  padding: 6rem 0 4rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #fafbfc 0%, #ffffff 100%);
}

.waitlist-content {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  padding: 0 1rem;
}

.waitlist-header {
  margin-bottom: 3rem;
  text-align: center;
}

.waitlist-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
  transition: transform 0.2s ease;
  margin-left: auto;
  margin-right: auto;
}

.waitlist-badge:hover {
  transform: translateY(-1px);
}

.waitlist-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: -0.025em;
  text-align: center;
}

.waitlist-description {
  font-size: 1.125rem;
  color: #6b7280;
  line-height: 1.6;
  max-width: 400px;
  margin: 0 auto;
  font-weight: 400;
  text-align: center;
}

.waitlist-form-container {
  background: white;
  padding: 3rem 3.5rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  margin-bottom: 2.5rem;
  border: 1px solid #f3f4f6;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.waitlist-form-container:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.messages {
  margin-bottom: 1.5rem;
}

.message {
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
  font-weight: 500;
  font-size: 0.875rem;
}

.message.success {
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.message.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

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

.form-group {
  text-align: left;
}

.form-label {
  display: block;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
}

/* Required field indicator */
.form-label .required {
  color: #dc2626;
  font-weight: 700;
}

/* Optional field indicator */
.form-label .optional {
  color: #6b7280;
  font-weight: 400;
  font-size: 0.75rem;
}

/* Form note styling */
.form-note {
  background: #f3f4f6;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.form-note p {
  margin: 0;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.form-note .required {
  color: #dc2626;
  font-weight: 700;
}

.form-note .optional {
  color: #6b7280;
  font-weight: 400;
}

.form-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.75rem;
  font-size: 1rem;
  transition: all 0.2s ease;
  background: #fafbfc;
  font-family: inherit;
  resize: vertical;
}

.form-input:focus {
  outline: none;
  border-color: #2563eb;
  background: white;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

/* Specific styling for textarea elements */
.form-input[type="textarea"],
.form-input[rows] {
  min-height: 100px;
  line-height: 1.5;
}

/* Styling for select elements */
.form-input[type="select"],
select.form-input {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.waitlist-form .btn-gradient {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.waitlist-form .btn-gradient:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px -3px rgba(37, 99, 235, 0.3);
}

.waitlist-benefits {
  text-align: left;
  max-width: 400px;
  margin: 0 auto;
}

.waitlist-benefits h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1.25rem;
  text-align: center;
}

.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.benefits-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background: white;
  border-radius: 0.75rem;
  color: #6b7280;
  font-size: 0.875rem;
  border: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}

.benefits-list li:hover {
  border-color: #e5e7eb;
  background: #fafbfc;
  transform: translateX(4px);
}

.benefits-list li svg {
  color: #10b981;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* Waitlist Side-by-Side Layout */
.waitlist-flex {
  display: flex;
  gap: 4rem;
  justify-content: center;
  align-items: flex-start;
  margin: 0 auto;
  max-width: 1400px;
  width: 100%;
}

.waitlist-form-col, .waitlist-benefits-col {
  flex: 1 1 0;
  min-width: 0;
}

.waitlist-form-col {
  max-width: 700px;
  flex: 1.2;
}

.waitlist-benefits-col {
  max-width: 600px;
  flex: 0.8;
  display: flex;
  align-items: flex-start;
}

.waitlist-benefits {
  width: 100%;
  margin: 0;
}

.waitlist-benefits .waitlist-header {
  margin-bottom: 2rem;
}

.waitlist-benefits .waitlist-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.waitlist-benefits .waitlist-description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: #6b7280;
}

@media (max-width: 900px) {
  .waitlist-flex {
    flex-direction: column;
    gap: 2rem;
    max-width: 100%;
  }
  .waitlist-form-col, .waitlist-benefits-col {
    max-width: 100%;
  }
  .waitlist-benefits {
    margin-top: 0;
  }
  .waitlist-benefits .waitlist-header {
    text-align: center;
    margin-bottom: 1.5rem;
  }
  .waitlist-benefits .waitlist-title {
    font-size: 2rem;
  }
}

/* Responsive Design for Waitlist */
@media (max-width: 768px) {
  .waitlist-section {
    padding: 4rem 0 2rem;
  }
  
  .waitlist-title {
    font-size: 2rem;
  }
  
  .waitlist-form-container {
    padding: 2rem;
    margin: 0 1rem 2rem;
  }
  
  .waitlist-content {
    padding: 0 1rem;
  }
}

@media (max-width: 480px) {
  .waitlist-title {
    font-size: 1.75rem;
  }
  
  .waitlist-description {
    font-size: 1rem;
  }
  
  .waitlist-form-container {
    padding: 1.5rem;
  }
  
  .benefits-list li {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }
}

/* Checkmark Animation */
.checkmark-success {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.5rem;
}

.checkmark {
  width: 48px;
  height: 48px;
  display: block;
}

.checkmark__circle {
  stroke: #10b981;
  stroke-width: 4;
  fill: none;
  stroke-dasharray: 150;
  stroke-dashoffset: 150;
  animation: checkmark-circle 0.5s ease forwards;
}

.checkmark__check {
  stroke: #10b981;
  stroke-width: 4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: checkmark-check 0.3s 0.5s ease forwards;
}

@keyframes checkmark-circle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes checkmark-check {
  to {
    stroke-dashoffset: 0;
  }
}

.animated-title {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s cubic-bezier(0.4,0,0.2,1), transform 0.8s cubic-bezier(0.4,0,0.2,1);
}
.animated-title.show {
  opacity: 1;
  transform: translateY(0);
}
.animated-title.delay {
  transition-delay: 0.4s;
}

.animated-title.delay-2 {
  transition-delay: 0.8s;
}

/* Import Section */
.import-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 50%, #eff6ff 100%);
  position: relative;
}

.import-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.03) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(124, 58, 237, 0.03) 0%, transparent 50%);
  pointer-events: none;
}

.import-platforms {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}

.import-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  border: 1px solid #e5e7eb;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.import-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #d1d5db;
}

.import-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: #6b7280;
  transition: all 0.3s ease;
  background: #f9fafb;
  position: relative;
  z-index: 1;
}

.import-card:hover .import-icon {
  color: white;
  transform: scale(1.1) rotate(5deg);
}

.import-card[data-platform="v0"] .import-icon {
  background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.import-card[data-platform="lovable"] .import-icon {
  background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.import-card[data-platform="replit"] .import-icon {
  background: linear-gradient(135deg, #10b981, #059669);
}

.import-card[data-platform="bolt"] .import-icon {
  background: linear-gradient(135deg, #f59e0b, #d97706);
}

.import-card[data-platform="more"] .import-icon {
  background: linear-gradient(135deg, #ec4899, #db2777);
}

.import-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.import-card:hover::before {
  transform: scaleX(1);
}

.import-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  display: block;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.import-card:hover .import-name {
  background: linear-gradient(135deg, #2563eb, #7c3aed);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.05);
}

.import-card::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 0;
}

.import-card:hover::after {
  width: 200px;
  height: 200px;
}

/* Platform-specific styling */
.import-card[data-platform="v0"] {
  border-left: 4px solid #3b82f6;
}

.import-card[data-platform="v0"]:hover {
  border-left-color: #2563eb;
}

.import-card[data-platform="lovable"] {
  border-left: 4px solid #8b5cf6;
}

.import-card[data-platform="lovable"]:hover {
  border-left-color: #7c3aed;
}

.import-card[data-platform="replit"] {
  border-left: 4px solid #10b981;
}

.import-card[data-platform="replit"]:hover {
  border-left-color: #059669;
}

.import-card[data-platform="bolt"] {
  border-left: 4px solid #f59e0b;
}

.import-card[data-platform="bolt"]:hover {
  border-left-color: #d97706;
}

.import-card[data-platform="more"] {
  border-left: 4px solid #ec4899;
}

.import-card[data-platform="more"]:hover {
  border-left-color: #db2777;
}

/* Responsive design for import section */
@media (max-width: 768px) {
  .import-platforms {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
  }
  
  .import-card {
    padding: 1.5rem 1rem;
  }
  
  .import-name {
    font-size: 1.125rem;
  }
}

@media (max-width: 480px) {
  .import-platforms {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .import-card {
    padding: 1.25rem 1rem;
  }
}
