/* ===========================
   BASE & TOKENS
   =========================== */
:root {
  --bg: #FAFAF8;
  --fg: #1A1A2E;
  --accent: #FF6B35;
  --accent-light: #F7C59F;
  --accent-bg: rgba(255, 107, 53, 0.08);
  --fg-muted: #5C5C6D;
  --border: rgba(26, 26, 46, 0.08);
  --radius: 14px;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ===========================
   NAVIGATION
   =========================== */
.nav {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding: 28px 60px;
}

.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.nav-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===========================
   HERO
   =========================== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 40px 60px 80px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--fg);
  margin-bottom: 24px;
}

.hero-headline em {
  font-style: normal;
  color: var(--accent);
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--fg-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.65;
}

.hero-proof {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--fg);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
}

.phone-mockup {
  width: 180px;
  background: var(--fg);
  border-radius: 28px;
  padding: 16px 14px 20px;
  box-shadow: 0 30px 60px rgba(26,26,46,0.15), 0 8px 20px rgba(26,26,46,0.1);
  transform: rotate(3deg);
}

.phone-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.phone-notch {
  width: 60px;
  height: 8px;
  background: #333;
  border-radius: 4px;
}

.phone-content {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  padding: 14px;
}

.post-card { display: flex; flex-direction: column; gap: 10px; }

.post-header { display: flex; align-items: center; gap: 8px; }

.avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent) 0%, #FF9066 100%);
  flex-shrink: 0;
}

.post-meta { display: flex; flex-direction: column; gap: 1px; }
.post-name { font-size: 0.7rem; font-weight: 600; color: var(--fg); }
.post-time { font-size: 0.6rem; color: var(--fg-muted); }

.post-image {
  height: 90px;
  border-radius: 10px;
  background: linear-gradient(135deg, #FFE8D6 0%, var(--accent-light) 50%, rgba(255,107,53,0.2) 100%);
}

.post-caption {
  font-size: 0.62rem;
  color: var(--fg-muted);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-likes {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.62rem;
  color: var(--fg-muted);
}

.like-icon {
  width: 12px;
  height: 12px;
  background: var(--accent);
  border-radius: 50%;
}

/* Calendar mockup */
.calendar-mockup {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  width: 170px;
  box-shadow: 0 10px 30px rgba(26,26,46,0.07);
  transform: rotate(-2deg);
}

.calendar-header {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--fg);
  margin-bottom: 10px;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}

.day {
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.55rem;
  color: var(--fg-muted);
  border-radius: 4px;
}

.day.has-post { background: var(--accent-bg); }
.day.has-post span { color: var(--accent); font-weight: 600; }

.legend {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.6rem;
  color: var(--fg-muted);
  margin-top: 10px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===========================
   PAIN
   =========================== */
.pain {
  background: var(--fg);
  color: #fff;
  padding: 80px 60px;
}

.pain-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.pain-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 24px;
}

.pain-statement {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.25;
  color: #fff;
  margin-bottom: 32px;
  font-style: italic;
}

.pain-divider {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 0 auto 32px;
}

.pain-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 16px;
}

/* ===========================
   HOW IT WORKS
   =========================== */
.howitworks {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.hiw-header { margin-bottom: 56px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
}

.steps {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 0;
}

.step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent-bg);
  line-height: 1;
  margin-bottom: 14px;
  -webkit-text-stroke: 1px var(--accent);
}

.step-content h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 8px;
}

.step-content p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.step-connector {
  width: 40px;
  display: flex;
  justify-content: center;
}

.step-connector::after {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--accent);
  opacity: 0.4;
}

/* ===========================
   FEATURES
   =========================== */
.features {
  padding: 80px 60px;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.features-header { margin-bottom: 48px; }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--accent-bg);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature h4 {
  font-family: 'Syne', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fg);
}

.feature p {
  font-size: 0.875rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ===========================
   PRICING
   =========================== */
.pricing {
  padding: 80px 60px;
  max-width: 1100px;
  margin: 0 auto;
}

.pricing-header { text-align: center; margin-bottom: 48px; }

.pricing-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 500px;
  margin: 16px auto 0;
  line-height: 1.65;
}

.tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.tier {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  background: #fff;
}

.tier-featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-bg);
}

.tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  padding: 4px 14px;
  border-radius: 20px;
  white-space: nowrap;
}

.tier-name {
  font-family: 'Syne', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.tier-price {
  font-family: 'Syne', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--fg);
  margin-bottom: 4px;
}

.dollar {
  font-size: 1.2rem;
  font-weight: 700;
  vertical-align: top;
  margin-top: 8px;
  display: inline-block;
}

.per {
  font-size: 1rem;
  font-weight: 600;
  color: var(--fg-muted);
}

.tier-tag {
  font-size: 0.8rem;
  color: var(--fg-muted);
  margin-bottom: 20px;
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tier-features li {
  font-size: 0.85rem;
  color: var(--fg-muted);
  padding-left: 20px;
  position: relative;
}

.tier-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
}

/* ===========================
   CLOSING
   =========================== */
.closing {
  background: var(--accent);
  padding: 80px 60px;
}

.closing-inner {
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}

.closing-quote {
  font-family: 'Syne', sans-serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
  margin-bottom: 28px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.7;
  margin-bottom: 24px;
}

.closing-vision {
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 24px;
}

.closing-vision p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
}

/* ===========================
   FOOTER
   =========================== */
.footer {
  background: var(--fg);
  color: rgba(255,255,255,0.4);
  padding: 40px 60px;
  text-align: center;
}

.footer-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 6px;
}

.footer-tag {
  font-size: 0.8rem;
  margin-bottom: 20px;
}

.footer-copy {
  font-size: 0.75rem;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 768px) {
  .nav { padding: 20px 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 20px 24px 60px;
    gap: 40px;
  }

  .hero-visual { display: none; }

  .hero-headline { font-size: 2.5rem; }
  .hero-sub { max-width: 100%; }

  .pain { padding: 60px 24px; }
  .howitworks { padding: 60px 24px; }
  .features { padding: 60px 24px; }
  .pricing { padding: 60px 24px; }

  .steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .step-connector { display: none; }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .tiers {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .closing { padding: 60px 24px; }
  .footer { padding: 32px 24px; }

  .hero-proof { gap: 12px; }
}

@media (max-width: 480px) {
  .hero-headline { font-size: 2rem; }
  .section-headline { font-size: 1.6rem; }
  .tier-price { font-size: 2rem; }
}