* {
  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: #1a1a1a;
  background: #fafafa;
}

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

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

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

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-image {
  height: 120px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

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

.nav-cta {
  background: #6B46C1;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.nav-cta:hover {
  background: #553399;
}

/* Hero Section */
.hero {
  padding: 120px 0 80px;
  background: #fafafa;
  text-align: center;
}

.hero-container-centered {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-content-centered {
  max-width: 800px;
  margin: 0 auto 60px auto;
}

.hero-headline {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #1a1a1a;
}

.hero-subheadline-accent {
  font-size: 32px;
  font-weight: 600;
  color: #6B46C1;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-body-text {
  font-size: 20px;
  color: #4a4a4a;
  margin-bottom: 40px;
  line-height: 1.6;
}

.highlight-phrase {
  font-weight: 600;
  color: #6B46C1;
  background: linear-gradient(120deg, rgba(107, 70, 193, 0.1) 0%, rgba(107, 70, 193, 0.2) 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-button {
  background: #6B46C1;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 12px rgba(107, 70, 193, 0.3);
}

.cta-button:hover {
  background: #553399;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(107, 70, 193, 0.4);
}

.cta-subtext {
  color: #888;
  font-size: 14px;
}

/* Phone Screenshots Grid */
.phones-showcase {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

.phone-screenshot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1000px;
}

.phone-screenshot {
  width: 200px;
  height: auto;
  max-width: 100%;
  transition: transform 0.3s ease;
}

.phone-screenshot:hover {
  transform: translateY(-5px);
}

/* Features Section */
.features {
  padding: 80px 0;
  background: white;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 20px;
  color: #666;
  text-align: center;
  margin-bottom: 60px;
}

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

.feature-card {
  text-align: center;
  padding: 40px 20px;
  border-radius: 16px;
  background: #f8fafc;
  transition: transform 0.2s;
}

.feature-card:hover {
  transform: translateY(-4px);
}

.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Is This You Section */
.is-this-you {
  padding: 80px 0;
  background: #f3f4f6;
  text-align: center;
}

.is-this-you-content {
  max-width: 800px;
  margin: 0 auto;
}

.is-this-you h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #1a1a1a;
}

.quote-list {
  margin-bottom: 40px;
}

.quote-item {
  font-size: 20px;
  color: #4a4a4a;
  font-style: italic;
  margin-bottom: 20px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: relative;
}

.quote-item:before {
  content: '"';
  font-size: 36px;
  color: #6B46C1;
  position: absolute;
  left: 15px;
  top: 5px;
  font-family: Georgia, serif;
}

.quote-item:after {
  content: '"';
  font-size: 36px;
  color: #6B46C1;
  position: absolute;
  right: 15px;
  bottom: -5px;
  font-family: Georgia, serif;
}

.closing-text {
  font-size: 22px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.4;
}

/* Waitlist Section */
.waitlist {
  padding: 80px 0;
  background: linear-gradient(135deg, #00C6B0 0%, #6B46C1 100%);
  color: white;
}

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

.waitlist h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
}

.waitlist p {
  font-size: 18px;
  margin-bottom: 40px;
  opacity: 0.9;
}

.waitlist-form {
  display: flex;
  gap: 16px;
  margin-bottom: 16px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.email-input {
  flex: 1;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  outline: none;
}

.submit-btn {
  background: white;
  color: #00C6B0;
  border: none;
  padding: 16px 24px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-note {
  font-size: 14px;
  opacity: 0.8;
}

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

  .hero-headline {
    font-size: 40px;
  }

  .phone-screenshot-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .phone-screenshot {
    width: 160px;
  }

  .waitlist-form {
    flex-direction: column;
  }

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

  .is-this-you h2 {
    font-size: 28px;
  }

  .quote-item {
    font-size: 18px;
    padding: 16px;
    margin-bottom: 16px;
  }

  .closing-text {
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 32px;
  }

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

  .section-title {
    font-size: 32px;
  }

  .phone-screenshot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }

  .phone-screenshot {
    width: 140px;
  }

  .is-this-you h2 {
    font-size: 24px;
  }

  .quote-item {
    font-size: 16px;
    padding: 14px;
  }

  .closing-text {
    font-size: 18px;
  }
}