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

:root {
  --primary: #C9A96E;
  --primary-dark: #8B6914;
  --primary-light: #F5ECD8;
  --bg: #FDFAF5;
  --surface: #FFFFFF;
  --text: #1A1A2E;
  --text-secondary: #6B7280;
  --border: #EDE0CC;
  --radius: 16px;
  --shadow: 0 4px 24px rgba(0,0,0,.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── Nav ──────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253,250,245,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav.scrolled { border-color: var(--border); box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.nav-inner {
  max-width: 1100px; margin: 0 auto; padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-size: 17px; font-weight: 700; color: var(--primary-dark); }
.nav-logo-icon { font-size: 22px; }
.nav-cta {
  background: var(--primary); color: #fff; text-decoration: none;
  padding: 10px 22px; border-radius: 100px; font-size: 13px; font-weight: 700;
  letter-spacing: .5px; transition: background .15s, transform .1s;
}
.nav-cta:hover { background: var(--primary-dark); transform: translateY(-1px); }

/* ─── Hero ─────────────────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 140px 0 100px; text-align: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 0%, #F5ECD8 0%, transparent 70%);
  pointer-events: none;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--primary-light); color: var(--primary-dark);
  border: 1px solid var(--border); border-radius: 100px;
  padding: 6px 14px; font-size: 12px; font-weight: 700; letter-spacing: .5px;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(40px, 6vw, 68px); font-weight: 800; line-height: 1.1;
  letter-spacing: -2px; color: var(--text); margin-bottom: 20px;
}
.gradient-text {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-subtitle {
  font-size: 18px; color: var(--text-secondary); max-width: 520px;
  margin: 0 auto 36px; line-height: 1.7;
}
.hero-buttons {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 16px;
}
.btn-store {
  display: flex; align-items: center; gap: 10px; text-decoration: none;
  padding: 12px 20px; border-radius: 12px; min-width: 180px;
  transition: transform .15s, box-shadow .15s;
}
.btn-store:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-store div { display: flex; flex-direction: column; text-align: left; }
.btn-store small { font-size: 10px; opacity: .8; font-weight: 500; line-height: 1; }
.btn-store strong { font-size: 14px; font-weight: 700; line-height: 1.3; }
.btn-apple { background: #000; color: #fff; }
.btn-google { background: #fff; color: #000; border: 1.5px solid #E0E0E0; }
.hero-note { font-size: 12px; color: var(--text-secondary); }

/* ─── Sections ─────────────────────────────────────────────────────────── */
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}
.section-title {
  font-size: clamp(28px, 4vw, 40px); font-weight: 800; letter-spacing: -1px;
  line-height: 1.15; margin-bottom: 48px; color: var(--text);
}

/* ─── Features ─────────────────────────────────────────────────────────── */
.features { padding: 100px 0; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px;
}
.feature-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 24px;
  transition: box-shadow .2s, transform .2s;
}
.feature-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.feature-icon { font-size: 28px; width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p { font-size: 13px; color: var(--text-secondary); line-height: 1.6; }

/* ─── How it works ──────────────────────────────────────────────────────── */
.how { padding: 80px 0; background: var(--surface); }
.steps {
  display: flex; align-items: flex-start; gap: 24px; flex-wrap: wrap; justify-content: center;
}
.step { flex: 1; min-width: 200px; max-width: 280px; text-align: center; }
.step-number {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff; font-size: 20px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-content h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step-content p { font-size: 13px; color: var(--text-secondary); }
.step-divider { font-size: 24px; color: var(--border); padding-top: 12px; }

/* ─── Testimonials ──────────────────────────────────────────────────────── */
.testimonials { padding: 100px 0; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px;
}
.testimonial-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 28px;
}
.stars { font-size: 16px; margin-bottom: 12px; }
.testimonial-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.testimonial-author { font-size: 12px; font-weight: 700; color: var(--primary-dark); }

/* ─── Download CTA ─────────────────────────────────────────────────────── */
.download { padding: 80px 0; }
.download-card {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  border-radius: 24px; padding: 60px; display: flex;
  align-items: center; gap: 60px; flex-wrap: wrap;
  overflow: hidden; position: relative;
}
.download-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(255,255,255,.15), transparent 60%);
}
.download-text { flex: 1; min-width: 280px; position: relative; z-index: 1; }
.download-text h2 { font-size: clamp(26px, 4vw, 36px); font-weight: 800; color: #fff; letter-spacing: -1px; line-height: 1.2; margin-bottom: 12px; }
.download-text p { font-size: 15px; color: rgba(255,255,255,.8); margin-bottom: 28px; line-height: 1.6; }
.download-mockup { flex: 0 0 auto; position: relative; z-index: 1; }

/* ─── Phone Mockup ─────────────────────────────────────────────────────── */
.phone-mockup {
  width: 200px; height: 360px;
  background: #1A1A2E; border-radius: 32px;
  padding: 12px; box-shadow: 0 32px 80px rgba(0,0,0,.4);
  border: 2px solid rgba(255,255,255,.15);
}
.phone-screen {
  background: #FDFAF5; border-radius: 22px; height: 100%;
  padding: 16px; overflow: hidden;
}
.phone-screen-inner { display: flex; flex-direction: column; gap: 16px; }
.mock-header { display: flex; justify-content: space-between; align-items: center; }
.mock-title { font-size: 11px; font-weight: 700; color: #8B6914; }
.mock-date { font-size: 9px; color: #9CA3AF; }
.mock-countdown { text-align: center; padding: 16px 0; }
.mock-count-num { font-size: 48px; font-weight: 800; color: #1A1A2E; line-height: 1; }
.mock-count-label { font-size: 11px; color: #9CA3AF; margin-top: 4px; }
.mock-stats { display: flex; gap: 8px; }
.mock-stat {
  flex: 1; background: white; border-radius: 10px; padding: 10px 4px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  border: 1px solid #EDE0CC;
}
.mock-stat span { font-size: 14px; }
.mock-stat strong { font-size: 13px; font-weight: 800; color: #1A1A2E; }
.mock-stat small { font-size: 8px; color: #9CA3AF; }

/* ─── Footer ────────────────────────────────────────────────────────────── */
.footer { background: var(--text); color: rgba(255,255,255,.7); padding: 60px 0 32px; }
.footer-top { display: flex; gap: 60px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { flex: 1; min-width: 200px; }
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { font-size: 13px; line-height: 1.6; }
.footer-links { display: flex; gap: 48px; flex-wrap: wrap; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 4px; }
.footer-col a { font-size: 14px; color: rgba(255,255,255,.7); text-decoration: none; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; }
.footer-social { display: flex; gap: 12px; font-size: 18px; }
.footer-social a { text-decoration: none; transition: transform .15s; }
.footer-social a:hover { transform: scale(1.2); }

/* ─── Responsive ────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 120px 0 64px; }
  .hero-title { letter-spacing: -1px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .btn-store { width: 100%; max-width: 280px; justify-content: center; }
  .step-divider { display: none; }
  .steps { flex-direction: column; align-items: center; }
  .download-card { padding: 36px 24px; justify-content: center; text-align: center; }
  .download-mockup { display: none; }
  .hero-buttons .btn-store { justify-content: flex-start; }
  .footer-top { flex-direction: column; gap: 32px; }
  .footer-links { gap: 24px; }
}
