/* === RESET & BASE === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal: #0D9488;
  --teal-light: #14B8A6;
  --teal-pale: #CCFBF1;
  --coral: #E85D4C;
  --slate-900: #0F172A;
  --slate-700: #334155;
  --slate-500: #64748B;
  --slate-300: #CBD5E1;
  --white: #FFFFFF;
  --off-white: #F9FAFB;
  --font: 'Outfit', system-ui, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font); background: var(--off-white); color: var(--slate-900); line-height: 1.6; -webkit-font-smoothing: antialiased; }

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

/* === HERO === */
.hero {
  background: var(--slate-900);
  color: var(--white);
  padding: 80px 0 0;
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(13,148,136,0.15) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  max-width: 1100px; margin: 0 auto; padding: 0 24px 60px;
  display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 48px;
}
.hero-copy {}
.hero-badge {
  display: inline-block;
  background: rgba(13,148,136,0.2);
  border: 1px solid rgba(13,148,136,0.4);
  color: #5EEAD4;
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  margin-bottom: 24px;
}
.hero-headline {
  font-size: clamp(48px, 7vw, 72px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero-sub {
  font-size: 18px; font-weight: 400; color: #94A3B8; max-width: 400px; line-height: 1.6;
}

.hero-visual {
  display: flex; justify-content: center; align-items: center;
}
.pilldrop-icon { width: 180px; height: auto; }

.hero-stats {
  display: flex; align-items: center; border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 1100px; margin: 0 auto; padding: 0 24px;
}
.stat { padding: 28px 0; text-align: center; flex: 1; }
.stat-num { display: block; font-size: 22px; font-weight: 700; color: var(--white); }
.stat-label { display: block; font-size: 13px; color: #64748B; margin-top: 2px; }
.stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.08); flex-shrink: 0; }

/* === HOW IT WORKS === */
.how-it-works { padding: 100px 0; background: var(--white); }
.section-label {
  display: block;
  font-size: 12px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--teal); margin-bottom: 48px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.step {}
.step-num { font-size: 48px; font-weight: 800; color: var(--teal-pale); line-height: 1; margin-bottom: 16px; }
.step h3 { font-size: 20px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 15px; color: var(--slate-500); line-height: 1.7; }

/* === WHY PILLDROP === */
.why-pilldrop { padding: 80px 0; background: var(--off-white); }
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.why-card { background: var(--white); border-radius: var(--radius-lg); padding: 32px; border: 1px solid #E2E8F0; }
.why-icon { color: var(--teal); margin-bottom: 16px; }
.why-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.why-card p { font-size: 14px; color: var(--slate-500); line-height: 1.65; }

/* === CLOSING === */
.closing { padding: 100px 0; background: var(--teal); color: var(--white); text-align: center; }
.closing h2 { font-size: clamp(36px, 5vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 16px; }
.closing p { font-size: 20px; color: rgba(255,255,255,0.8); }

/* === FOOTER === */
.site-footer { background: var(--slate-900); color: #64748B; padding: 40px 0; }
.footer-brand { margin-bottom: 20px; }
.footer-logo { font-size: 22px; font-weight: 800; color: var(--white); display: block; margin-bottom: 6px; }
.footer-brand p { font-size: 13px; }
.footer-links { display: flex; align-items: center; gap: 8px; font-size: 12px; }

/* === RESPONSIVE === */
@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 40px; }
  .hero-visual { order: -1; }
  .pilldrop-icon { width: 120px; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .stat { padding: 20px 8px; }
}
@media (max-width: 480px) {
  .hero-headline { font-size: 40px; }
  .closing h2 { font-size: 32px; }
}