:root {
  --primary-color: #2d3748;
  --accent-color: #ff6b35;
  --background-color: #f7fafc;
  --text-color: #4a5568;
}

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

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero {
  text-align: center;
  width: 100%;
  margin-bottom: 4rem;
}

.title {
  font-size: 4rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.tagline {
  font-size: 1.5rem;
  color: var(--text-color);
  margin-bottom: 2rem;
  font-weight: 400;
}

.video-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  position: relative;
}

.demo-video {
  width: 100%;
  height: auto;
  display: block;
}

.main-content {
  max-width: 600px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  background-color: var(--accent-color);
  color: white;
  padding: 1.25rem 2.5rem;
  border-radius: 12px;
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.button-icon {
  margin-left: 0.5rem;
  transition: transform 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.cta-button:hover .button-icon {
  transform: translateX(4px);
}

.footer-spacer {
  margin-top: 4rem;
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  margin-top: 2rem;
}

.footer-content {
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  padding: 1.5rem;
}

.footer-nav {
  margin: 1rem 0;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1rem;
}

.footer-links a {
  color: #666;
  text-decoration: none;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .container {
    padding: 1rem;
  }

  .hero {
    margin-bottom: 2rem;
  }

  .title {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.25rem;
  }

  .cta-button {
    padding: 1rem 2rem;
    font-size: 1.125rem;
  }

  .video-container {
    max-width: 100%;
    margin-bottom: 2rem;
  }
}

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

  .title {
    font-size: 2rem;
  }

  .tagline {
    font-size: 1rem;
  }
}

.success-message {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h2 {
  margin-top: 0;
  color: #2c3e50;
}

p {
  margin-bottom: 0;
  line-height: 1.5;
}

.footer-links {
  text-align: center;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-links a {
  color: #666;
  text-decoration: none;
  margin: 0 15px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright-text {
  color: #666;
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}
