/* ── Reset ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ── Base ── */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(135deg, #232338 0%, #342850 100%);
  background-attachment: fixed;
  color: white;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px 60px;
}

.hero-content {
  max-width: 600px;
}

.logo-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 32px;
}

/* ── App Icon (CSS version) ── */
.app-icon {
  width: 80px;
  height: 80px;
  border-radius: 22%;
  background: linear-gradient(135deg, #232338 0%, #342850 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  flex-shrink: 0;
}

.app-icon.small {
  width: 48px;
  height: 48px;
}

.icon-bars {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 36px;
  gap: 5px;
}

.app-icon.small .icon-bars {
  width: 22px;
  gap: 3px;
}

.icon-bar {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #7B68EE 0%, #4ECDC4 100%);
}

.app-icon.small .icon-bar {
  height: 6px;
}

.icon-bar.glow {
  box-shadow: 0 0 16px rgba(123, 104, 238, 0.5);
}

/* ── Wordmark ── */
.wordmark {
  display: block;
}

/* ── Tagline ── */
.tagline {
  font-size: 20px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}

.hero-description {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 40px;
  color: white;
}

/* ── CTA Button ── */
.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7B68EE 0%, #4ECDC4 100%);
  color: white;
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-size: 17px;
  font-weight: 600;
  border-radius: 14px;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  box-shadow: 0 8px 32px rgba(123, 104, 238, 0.3);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(123, 104, 238, 0.45);
}

.cta-button:active {
  transform: scale(0.98);
}

.apple-logo {
  width: 20px;
  height: 20px;
}

.coming-soon {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.35);
  margin-top: 16px;
}

/* ── Value Prop ── */
.value-prop {
  padding: 80px 24px;
  text-align: center;
}

.value-text {
  font-size: 22px;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  max-width: 640px;
  margin: 0 auto;
}

/* ── Features ── */
.features {
  padding: 40px 24px 80px;
}

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

.feature-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
  margin-bottom: 16px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: white;
}

.feature-card p {
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

/* ── Screenshots ── */
.screenshots {
  padding: 40px 0 80px;
  overflow: hidden;
}

.screenshots .container {
  max-width: 100%;
  padding: 0;
}

.screenshots-scroll {
  display: flex;
  gap: 24px;
  justify-content: center;
  padding: 0 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.screenshots-scroll::-webkit-scrollbar {
  display: none;
}

.screenshot {
  width: 280px;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  scroll-snap-align: center;
  flex-shrink: 0;
}

/* ── Bottom CTA ── */
.bottom-cta {
  padding: 80px 24px;
  text-align: center;
}

.bottom-cta h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 32px;
  background: linear-gradient(135deg, #7B68EE 0%, #4ECDC4 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Footer ── */
.footer {
  padding: 60px 24px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.footer-company {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 8px;
}

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

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    padding: 100px 24px 60px;
  }

  .logo-lockup {
    gap: 16px;
    margin-bottom: 24px;
  }

  .app-icon {
    width: 64px;
    height: 64px;
  }

  .icon-bars {
    width: 28px;
    gap: 4px;
  }

  .icon-bar {
    height: 8px;
  }

  .wordmark {
    width: 140px;
    height: auto;
  }

  .hero-description {
    font-size: 20px;
  }

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

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

  .screenshot {
    width: 240px;
  }

  .bottom-cta h2 {
    font-size: 26px;
  }
}
