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

:root {
  --primary: #d97090;
  --primary-light: #f8e8ec;
  --accent: #a8d4e6;
  --background: #fefbfb;
  --foreground: #3d3452;
  --muted: #7a7189;
  --card: #ffffff;
  --border: #f0e4e8;
  --radius: 1rem;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3 {
  line-height: 1.2;
  font-weight: 600;
}

.text-balance {
  text-wrap: balance;
}

.text-pretty {
  text-wrap: pretty;
}

/* Navigation */
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.25rem;
  color: var(--foreground);
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 0.625rem 1.25rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.875rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 112, 144, 0.3);
}

/* Hero Section */
.hero {
  padding: 2rem 1.5rem 4rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.hero-content {
  max-width: 600px;
  margin: 0 auto 3rem;
}

.badge {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 8vw, 4rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--foreground) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted);
  margin-bottom: 2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--primary);
  color: white;
  padding: 1rem 2rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.125rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(217, 112, 144, 0.4);
}

/* Phone Mockup */
.hero-mockup {
  display: flex;
  justify-content: center;
}

.phone-frame {
  width: 280px;
  height: 560px;
  background: var(--card);
  border-radius: 2.5rem;
  padding: 0.75rem;
  box-shadow: 
    0 4px 6px rgba(0, 0, 0, 0.05),
    0 20px 40px rgba(0, 0, 0, 0.1),
    inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-light) 0%, var(--background) 100%);
  border-radius: 2rem;
  padding: 2rem 1rem;
  display: flex;
  align-items: flex-end;
}

.profile-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 1rem;
  width: 100%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.profile-image {
  width: 100%;
  height: 200px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  border-radius: 1rem;
  margin-bottom: 1rem;
}

.profile-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.profile-info p {
  color: var(--muted);
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.profile-tag {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

/* Trust Strip */
.trust-strip {
  background: var(--card);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}

.trust-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: 800px;
  margin: 0 auto;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.trust-item svg {
  color: var(--primary);
}

/* How It Works */
.how-it-works {
  padding: 5rem 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.section-title {
  text-align: center;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  margin-bottom: 3rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.step {
  text-align: center;
  padding: 2rem;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--primary) 0%, #e8a4b8 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 auto 1.25rem;
}

.step h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Values Section */
.values {
  padding: 5rem 1.5rem;
  background: linear-gradient(180deg, var(--background) 0%, var(--primary-light) 100%);
}

.section-subtitle {
  text-align: center;
  color: var(--muted);
  max-width: 500px;
  margin: -1.5rem auto 3rem;
  font-size: 1.0625rem;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.value-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s, box-shadow 0.2s;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.value-icon {
  width: 3rem;
  height: 3rem;
  background: var(--primary-light);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--primary);
}

.value-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.value-card p {
  color: var(--muted);
  font-size: 0.9375rem;
}

/* Waitlist Section */
.waitlist {
  padding: 5rem 1.5rem;
  max-width: 600px;
  margin: 0 auto;
}

.waitlist-card {
  background: var(--card);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  text-align: center;
}

.waitlist-title {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

.waitlist-subtitle {
  color: var(--muted);
  margin-bottom: 2rem;
}

.waitlist-form {
  max-width: 400px;
  margin: 0 auto;
}

.form-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.form-group input {
  flex: 1;
  padding: 1rem 1.25rem;
  border: 2px solid var(--border);
  border-radius: 2rem;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(217, 112, 144, 0.1);
}

.form-group button {
  background: var(--primary);
  color: white;
  border: none;
  padding: 1rem 1.5rem;
  border-radius: 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.form-group button:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(217, 112, 144, 0.3);
}

.form-group button:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.spinner {
  animation: spin 1s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.consent-text {
  font-size: 0.8125rem;
  color: var(--muted);
}

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

.success-message svg {
  color: #22c55e;
  margin-bottom: 1rem;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.success-message p {
  color: var(--muted);
}

/* Footer */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 1.5rem;
}

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

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: var(--primary);
}

.footer-disclaimer {
  font-size: 0.8125rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 1rem;
}

.footer-copyright {
  font-size: 0.75rem;
  color: var(--muted);
  opacity: 0.7;
}

/* Responsive */
@media (max-width: 640px) {
  .form-group {
    flex-direction: column;
  }
  
  .form-group button {
    width: 100%;
  }
  
  .trust-items {
    flex-direction: column;
    gap: 1rem;
  }
  
  .phone-frame {
    width: 240px;
    height: 480px;
  }
  
  .profile-image {
    height: 160px;
  }
  
  .waitlist-card {
    padding: 2rem 1.5rem;
  }
}
