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

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background: #f9fafb;
}

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

/* Navigation */
.navbar {
  background: white;
  border-bottom: 1px solid #e5e7eb;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-color, #2563eb);
}

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

.nav-links a {
  color: #666;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--brand-color, #2563eb);
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, var(--brand-color, #2563eb) 0%, #1e40af 100%);
  color: white;
  padding: 80px 0;
  text-align: center;
}

.hero h1 {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 16px;
}

.hero .tagline {
  font-size: 24px;
  margin-bottom: 12px;
  opacity: 0.95;
}

.hero .subtitle {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  background: white;
  color: var(--brand-color, #2563eb);
  padding: 16px 40px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Value Proposition */
.value-proposition {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.value-proposition h2 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1f2937;
}

.value-proposition .lead {
  font-size: 18px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Benefits Section */
.benefits {
  padding: 60px 0;
  background: #f9fafb;
}

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

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

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

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #1f2937;
}

.benefit-card p {
  color: #666;
  font-size: 15px;
}

/* Pricing Section */
.pricing {
  padding: 60px 0;
  background: white;
  text-align: center;
}

.pricing h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

.pricing-card {
  max-width: 400px;
  margin: 0 auto;
  background: #f9fafb;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 64px;
  font-weight: 800;
  color: var(--brand-color, #2563eb);
  margin-bottom: 8px;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin: 24px 0;
  padding: 0;
}

.pricing-features li {
  padding: 12px 0;
  font-size: 16px;
  color: #333;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 32px 0;
  text-align: center;
}

.footer-links {
  margin-top: 16px;
  display: flex;
  gap: 24px;
  justify-content: center;
}

.footer-links a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 14px;
}

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

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1f2937;
  color: white;
  padding: 20px;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.cookie-content p {
  margin: 0;
  font-size: 14px;
}

.cookie-content a {
  color: #60a5fa;
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
}

.btn-accept, .btn-decline {
  padding: 10px 24px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 14px;
  transition: opacity 0.2s;
}

.btn-accept {
  background: #10b981;
  color: white;
}

.btn-decline {
  background: #6b7280;
  color: white;
}

.btn-accept:hover, .btn-decline:hover {
  opacity: 0.9;
}

/* Signup Form */
.signup-section {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.signup-form-container {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.signup-form-container h1 {
  font-size: 32px;
  margin-bottom: 8px;
  color: #1f2937;
}

.signup-subtitle {
  color: #666;
  margin-bottom: 32px;
  font-size: 16px;
}

.signup-form {
  margin-top: 24px;
}

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

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #374151;
  font-size: 14px;
}

.form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 16px;
  transition: border-color 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: var(--brand-color, #2563eb);
}

.stripe-card-element {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background: white;
}

.card-errors {
  color: #dc2626;
  font-size: 14px;
  margin-top: 8px;
}

.pricing-info {
  background: #f3f4f6;
  padding: 16px;
  border-radius: 6px;
  margin: 24px 0;
  text-align: center;
  font-size: 18px;
}

.form-note {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin-top: 16px;
}

/* Thank You Page */
.thank-you-section {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
  text-align: center;
}

.thank-you-content {
  max-width: 600px;
  margin: 0 auto;
  background: white;
  padding: 60px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #10b981;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

.thank-you-content h1 {
  font-size: 36px;
  margin-bottom: 16px;
  color: #1f2937;
}

.thank-you-message {
  font-size: 18px;
  color: #666;
  margin-bottom: 40px;
}

.beta-invite {
  margin-top: 40px;
  padding-top: 40px;
  border-top: 1px solid #e5e7eb;
}

.beta-invite h2 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #1f2937;
}

.beta-invite p {
  font-size: 16px;
  color: #666;
  margin-bottom: 24px;
}

.beta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.btn-yes, .btn-no {
  padding: 14px 32px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-yes {
  background: var(--brand-color, #2563eb);
  color: white;
}

.btn-no {
  background: #e5e7eb;
  color: #374151;
}

.btn-yes:hover, .btn-no:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.beta-response {
  margin-top: 20px;
  padding: 16px;
  background: #dbeafe;
  border-radius: 6px;
  color: #1e40af;
  font-weight: 500;
  display: none;
}

/* Legal Pages */
.legal-section {
  padding: 60px 0;
  min-height: calc(100vh - 200px);
}

.legal-section .container {
  max-width: 800px;
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.legal-section h1 {
  font-size: 36px;
  margin-bottom: 8px;
  color: #1f2937;
}

.last-updated {
  color: #666;
  font-size: 14px;
  margin-bottom: 32px;
}

.legal-section h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 16px;
  color: #1f2937;
}

.legal-section p {
  margin-bottom: 16px;
  color: #4b5563;
  line-height: 1.7;
}

.legal-section ul {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #4b5563;
}

.legal-section li {
  margin-bottom: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }

  .hero .tagline {
    font-size: 18px;
  }

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

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

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .signup-form-container {
    padding: 24px;
  }

  .beta-buttons {
    flex-direction: column;
  }

  .btn-yes, .btn-no {
    width: 100%;
  }
}
