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

:root {
  --background: #0a0a0a;
  --foreground: #fafafa;
  --card: #171717;
  --card-foreground: #fafafa;
  --muted: #262626;
  --muted-foreground: #a3a3a3;
  --border: #2a1a1d;
  --primary: #b523fa;
  --primary-hover: #a020d0;
  --secondary: #a723fa;
  --accent-pink: #fa233b;
  --accent-pink-light: #fb5c74;
  --accent-gold: #f5a623;
  --icon-bg-pink: #2a1a1d;
  --icon-bg-gold: #2a1f1a;
  --purple-icon: #6723fa;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.5;
  min-height: 100vh;
}

/* Container */
.container {
  min-height: 100vh;
  background-color: var(--background);
}

.content {
  max-width: 28rem;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}

/* Hero Section */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.app-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background-color: var(--purple-icon);
  color: white;
  margin-bottom: 1rem;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background-color: var(--icon-bg-pink);
  color: var(--accent-pink);
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.headline {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  color: white;
  margin-bottom: 0.75rem;
  text-wrap: balance;
}

.subheadline {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

/* CTA Buttons */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 1.5rem 1rem;
  border: none;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.cta-button:hover {
  opacity: 0.9;
}

.cta-button.primary {
  background-color: var(--primary);
}

.cta-button.secondary {
  background-color: var(--secondary);
}

/* Section Styles */
.section {
  margin-top: 4rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

.section-description {
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}

.text-center {
  text-align: center;
}

/* Card Styles */
.card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: var(--card);
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  flex-shrink: 0;
}

.card-icon.pink {
  background-color: var(--icon-bg-pink);
  color: var(--accent-pink);
}

.card-icon.gold {
  background-color: var(--icon-bg-gold);
  color: var(--accent-gold);
}

.card-content {
  flex: 1;
}

.card-title {
  font-size: 1rem;
  font-weight: 600;
  color: white;
}

.card-description {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Task List */
.task-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.task-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-icon {
  flex-shrink: 0;
  color: var(--accent-pink);
}

.task-item span {
  color: var(--muted-foreground);
}

/* Final CTA */
.final-cta {
  margin-top: 3rem;
}

/* Footer */
.footer {
  margin-top: 3rem;
  text-align: center;
}

.footer p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* Responsive adjustments */
@media (max-width: 480px) {
  .content {
    padding: 2rem 1rem;
  }

  .headline {
    font-size: 1.5rem;
  }

  .section-title {
    font-size: 1.25rem;
  }
}
