/* CSS Reset and Base Styles */
/* line 2, assets/stylesheets/site.css.scss */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* line 8, assets/stylesheets/site.css.scss */
:root {
  --primary-color: #6366f1;
  --primary-dark: #4f46e5;
  --secondary-color: #ec4899;
  --accent-color: #10b981;
  --text-primary: #1f2937;
  --text-secondary: #6b7280;
  --background: #ffffff;
  --surface: #f9fafb;
  --border: #e5e7eb;
}

/* line 20, assets/stylesheets/site.css.scss */
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--background);
}

/* line 27, assets/stylesheets/site.css.scss */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Typography */
/* line 34, assets/stylesheets/site.css.scss */
h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

/* line 40, assets/stylesheets/site.css.scss */
h1 {
  font-size: 3rem;
  font-weight: 700;
}

/* line 45, assets/stylesheets/site.css.scss */
h2 {
  font-size: 2.5rem;
  font-weight: 600;
}

/* line 50, assets/stylesheets/site.css.scss */
h3 {
  font-size: 2rem;
  font-weight: 600;
}

/* line 55, assets/stylesheets/site.css.scss */
h4 {
  font-size: 1.5rem;
  font-weight: 500;
}

/* line 60, assets/stylesheets/site.css.scss */
p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* Navigation */
/* line 66, assets/stylesheets/site.css.scss */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e1e5e9;
  z-index: 1000;
  padding: 1rem 0;
}

/* line 78, assets/stylesheets/site.css.scss */
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 87, assets/stylesheets/site.css.scss */
.nav-brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

/* line 94, assets/stylesheets/site.css.scss */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

/* line 100, assets/stylesheets/site.css.scss */
.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s ease;
}

/* line 107, assets/stylesheets/site.css.scss */
.nav-links a:hover {
  color: var(--primary-color);
}

/* Buttons */
/* line 112, assets/stylesheets/site.css.scss */
.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

/* line 125, assets/stylesheets/site.css.scss */
.btn-primary {
  background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
  color: white;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* line 131, assets/stylesheets/site.css.scss */
.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark), var(--secondary-color));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

/* line 137, assets/stylesheets/site.css.scss */
.btn-secondary {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

/* line 143, assets/stylesheets/site.css.scss */
.btn-secondary:hover {
  background: var(--primary-color);
  color: white;
}

/* line 148, assets/stylesheets/site.css.scss */
.btn-small {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
}

/* Hero Section */
/* line 154, assets/stylesheets/site.css.scss */
.hero {
  padding: 8rem 2rem 4rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  min-height: 100vh;
}

/* line 164, assets/stylesheets/site.css.scss */
.hero-content {
  max-width: 600px;
}

/* line 168, assets/stylesheets/site.css.scss */
.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: white;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 177, assets/stylesheets/site.css.scss */
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
}

/* line 183, assets/stylesheets/site.css.scss */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

/* line 189, assets/stylesheets/site.css.scss */
.hero-social-proof {
  color: rgba(255, 255, 255, 0.8);
  font-style: italic;
}

/* Phone Mockup */
/* line 195, assets/stylesheets/site.css.scss */
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 201, assets/stylesheets/site.css.scss */
.phone-mockup {
  width: 300px;
  height: 600px;
  background: #1a1a1a;
  border-radius: 40px;
  padding: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* line 211, assets/stylesheets/site.css.scss */
.phone-screen {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

/* line 220, assets/stylesheets/site.css.scss */
.app-demo {
  padding: 2rem 1rem;
}

/* line 224, assets/stylesheets/site.css.scss */
.demo-header {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 2rem;
  text-align: center;
}

/* line 232, assets/stylesheets/site.css.scss */
.demo-project {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: center;
}

/* line 241, assets/stylesheets/site.css.scss */
.demo-image {
  width: 60px;
  height: 60px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 8px;
}

/* line 248, assets/stylesheets/site.css.scss */
.demo-details h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: #333;
}

/* line 254, assets/stylesheets/site.css.scss */
.demo-details p {
  color: #666;
  font-size: 0.9rem;
  margin: 0;
}

/* Sections */
/* line 261, assets/stylesheets/site.css.scss */
section {
  padding: 4rem 0;
}

/* line 265, assets/stylesheets/site.css.scss */
.problem-solution {
  background: var(--surface);
}

/* line 269, assets/stylesheets/site.css.scss */
.problems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* line 276, assets/stylesheets/site.css.scss */
.problem-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* line 283, assets/stylesheets/site.css.scss */
.problem-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* line 288, assets/stylesheets/site.css.scss */
.solution {
  text-align: center;
  padding: 2rem;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  border-radius: 12px;
  color: white;
}

/* line 296, assets/stylesheets/site.css.scss */
.solution h2 {
  color: white;
  font-size: 2rem;
}

/* Target Audience */
/* line 302, assets/stylesheets/site.css.scss */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* line 308, assets/stylesheets/site.css.scss */
.audience-item {
  text-align: center;
  padding: 2rem;
  border-radius: 12px;
  border: 2px solid #e1e5e9;
  transition: all 0.3s ease;
}

/* line 316, assets/stylesheets/site.css.scss */
.audience-item:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
}

/* line 321, assets/stylesheets/site.css.scss */
.audience-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Features */
/* line 327, assets/stylesheets/site.css.scss */
.features {
  background: #ffffff;
}

/* line 331, assets/stylesheets/site.css.scss */
.feature-category {
  margin-bottom: 4rem;
}

/* line 335, assets/stylesheets/site.css.scss */
.feature-category h3 {
  text-align: center;
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 2rem;
}

/* line 342, assets/stylesheets/site.css.scss */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

/* line 348, assets/stylesheets/site.css.scss */
.feature-item {
  background: #f8f9fa;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
}

/* line 356, assets/stylesheets/site.css.scss */
.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

/* line 361, assets/stylesheets/site.css.scss */
.feature-item h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* How It Works */
/* line 367, assets/stylesheets/site.css.scss */
.how-it-works {
  background: var(--surface);
  text-align: center;
}

/* line 372, assets/stylesheets/site.css.scss */
.subtitle {
  font-size: 1.25rem;
  color: #777;
  margin-bottom: 3rem;
}

/* line 378, assets/stylesheets/site.css.scss */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

/* line 384, assets/stylesheets/site.css.scss */
.step {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
}

/* line 392, assets/stylesheets/site.css.scss */
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

/* line 407, assets/stylesheets/site.css.scss */
.step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* Download Section */
/* line 413, assets/stylesheets/site.css.scss */
.download {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  color: white;
  text-align: center;
}

/* line 419, assets/stylesheets/site.css.scss */
.download h2 {
  color: white;
  margin-bottom: 1rem;
}

/* line 424, assets/stylesheets/site.css.scss */
.download p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 3rem;
}

/* line 430, assets/stylesheets/site.css.scss */
.waitlist-form {
  max-width: 500px;
  margin: 0 auto 3rem;
}

/* line 435, assets/stylesheets/site.css.scss */
.form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 441, assets/stylesheets/site.css.scss */
.form-group input {
  flex: 1;
  padding: 0.75rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
}

/* line 449, assets/stylesheets/site.css.scss */
.form-group input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

/* line 454, assets/stylesheets/site.css.scss */
.form-note {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  margin: 0;
}

/* line 460, assets/stylesheets/site.css.scss */
.coming-soon {
  margin-top: 3rem;
}

/* line 464, assets/stylesheets/site.css.scss */
.coming-soon h3 {
  color: white;
  margin-bottom: 2rem;
}

/* line 469, assets/stylesheets/site.css.scss */
.roadmap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

/* line 475, assets/stylesheets/site.css.scss */
.roadmap-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem;
  border-radius: 8px;
  color: white;
}

/* Footer */
/* line 483, assets/stylesheets/site.css.scss */
.site-footer {
  background: #2c3e50;
  color: white;
  padding: 3rem 0 1rem;
}

/* line 489, assets/stylesheets/site.css.scss */
.footer-content {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  margin-bottom: 2rem;
}

/* line 496, assets/stylesheets/site.css.scss */
.footer-brand h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

/* line 501, assets/stylesheets/site.css.scss */
.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
}

/* line 505, assets/stylesheets/site.css.scss */
.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
}

/* line 511, assets/stylesheets/site.css.scss */
.footer-column h4 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

/* line 517, assets/stylesheets/site.css.scss */
.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

/* line 525, assets/stylesheets/site.css.scss */
.footer-column a:hover {
  color: var(--accent-color);
}

/* line 529, assets/stylesheets/site.css.scss */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  text-align: center;
}

/* line 535, assets/stylesheets/site.css.scss */
.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  /* line 542, assets/stylesheets/site.css.scss */
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 6rem 2rem 4rem;
  }
  /* line 548, assets/stylesheets/site.css.scss */
  .hero-title {
    font-size: 2.5rem;
  }
  /* line 552, assets/stylesheets/site.css.scss */
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
  /* line 557, assets/stylesheets/site.css.scss */
  .phone-mockup {
    width: 250px;
    height: 500px;
  }
  /* line 562, assets/stylesheets/site.css.scss */
  .nav-links {
    display: none;
  }
  /* line 566, assets/stylesheets/site.css.scss */
  .form-group {
    flex-direction: column;
  }
  /* line 570, assets/stylesheets/site.css.scss */
  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* line 575, assets/stylesheets/site.css.scss */
  .container {
    padding: 0 1rem;
  }
  /* line 579, assets/stylesheets/site.css.scss */
  h1 {
    font-size: 2rem;
  }
  /* line 583, assets/stylesheets/site.css.scss */
  h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  /* line 589, assets/stylesheets/site.css.scss */
  .hero-title {
    font-size: 2rem;
  }
  /* line 593, assets/stylesheets/site.css.scss */
  .phone-mockup {
    width: 200px;
    height: 400px;
  }
  /* line 598, assets/stylesheets/site.css.scss */
  .problems-grid,
.audience-grid,
.features-grid,
.steps-grid {
    grid-template-columns: 1fr;
  }
}
