:root {
  --bg: #faf8f5;
  --bg-alt: #f2ede6;
  --fg: #1c1c2e;
  --fg-muted: #6b6b80;
  --accent: #e07a5f;
  --accent-soft: #f4d8ce;
  --teal: #81b29a;
  --blue: #3d5a80;
  --border: #e0dbd4;
  --shadow: 0 4px 24px rgba(28,28,46,0.08);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', system-ui, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* NAV */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250,248,245,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.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;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: var(--fg);
}
.nav-links {
  display: flex;
  gap: 32px;
}
.nav-links a {
  text-decoration: none;
  color: var(--fg-muted);
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--fg); }

/* HERO */
.hero {
  position: relative;
  padding: 80px 24px 100px;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
}
.hero-blob-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, #f4d8ce 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, #d4e8de 0%, transparent 70%);
  bottom: -50px; left: -80px;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.35;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 0%, black 20%, transparent 80%);
}
.hero-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(38px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.65;
  max-width: 440px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: white;
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  transition: transform 0.15s, box-shadow 0.15s;
  box-shadow: 0 4px 16px rgba(224,122,95,0.35);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 6px 20px rgba(224,122,95,0.45); }
.btn-primary:active { transform: translateY(0); }
.btn-full { width: 100%; justify-content: center; }
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: transparent;
  color: var(--fg-muted);
  border: 1.5px solid var(--border);
  padding: 13px 24px;
  border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--fg-muted); color: var(--fg); }
.hero-trial-note {
  font-size: 13px;
  color: var(--fg-muted);
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--fg-muted);
}
.proof-avatars { display: flex; }
.proof-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 2px solid var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; color: white;
  margin-left: -6px;
}
.proof-avatar:first-child { margin-left: 0; }

/* CALENDAR WIDGET */
.hero-right { display: flex; flex-direction: column; gap: 12px; }
.calendar-widget {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}
.calendar-month {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: var(--fg);
}
.calendar-nav {
  display: flex;
  gap: 4px;
  color: var(--fg-muted);
}
.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 6px;
}
.cal-day-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--fg-muted);
  text-align: center;
  padding: 4px 0;
}
.cal-cell { min-height: 52px; }
.cal-cell.empty { background: var(--bg-alt); border-radius: 6px; }
.cal-post {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px;
  height: 100%;
  display: flex;
  gap: 6px;
  align-items: flex-start;
}
.cal-post-ig { border-left: 3px solid #e1306c; }
.cal-post-fb { border-left: 3px solid #1877f2; }
.cal-post-tt { border-left: 3px solid #69c9d0; }
.cal-post-icon {
  font-size: 8px;
  font-weight: 700;
  color: var(--fg-muted);
  background: var(--bg-alt);
  border-radius: 4px;
  padding: 2px 4px;
  flex-shrink: 0;
  margin-top: 1px;
}
.cal-post-text {
  font-size: 9px;
  color: var(--fg-muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.calendar-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cal-stat { font-size: 12px; color: var(--fg-muted); }
.cal-stat-num { font-weight: 700; color: var(--accent); }
.cal-tone {
  font-size: 11px;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 3px 8px;
  border-radius: 20px;
  font-weight: 600;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--teal);
  font-weight: 600;
  background: rgba(129,178,154,0.1);
  padding: 6px 12px;
  border-radius: 20px;
  width: fit-content;
}

/* SECTIONS */
.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.section-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 20px;
}

/* HOW IT WORKS */
.howitworks { padding: 100px 0; }
.howitworks .section-headline { text-align: center; }
.howitworks .section-label { text-align: center; }
.steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 56px;
}
.step {
  flex: 1;
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px 28px;
  position: relative;
}
.step-connector {
  display: flex;
  align-items: center;
  padding: 0 8px;
  padding-top: 48px;
  flex-shrink: 0;
}
.step-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.step-icon { margin-bottom: 20px; }
.step h3 {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 10px;
}
.step p { font-size: 14px; color: var(--fg-muted); line-height: 1.6; }

/* WHO IT'S FOR */
.whositsfor { padding: 80px 0; background: var(--bg-alt); }
.whositsfor .section-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.who-desc {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.who-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.biz-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.biz-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.biz-card-icon { flex-shrink: 0; margin-top: 2px; }
.biz-card-text h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 6px;
}
.biz-card-text p { font-size: 13px; color: var(--fg-muted); line-height: 1.55; }

/* TESTIMONIALS */
.testimonials { padding: 80px 0; }
.testimonials .section-headline { text-align: center; margin-bottom: 56px; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.testimonial-stars {
  display: flex;
  gap: 3px;
}
.testimonial-quote {
  font-size: 14px;
  line-height: 1.65;
  color: var(--fg);
  font-style: italic;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 4px;
}
.testimonial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 14px;
  color: white;
  flex-shrink: 0;
}
.testimonial-info { display: flex; flex-direction: column; gap: 2px; }
.testimonial-name { font-size: 13px; font-weight: 600; color: var(--fg); }
.testimonial-role { font-size: 11px; color: var(--fg-muted); }

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* PRICING */
.pricing { padding: 100px 0; }
.pricing-inner { text-align: center; }
.pricing-sub {
  font-size: 18px;
  color: var(--fg-muted);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.6;
}
.pricing-card {
  max-width: 480px;
  margin: 0 auto;
  background: white;
  border: 1.5px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  text-align: left;
}
.pricing-card-top { padding: 36px 36px 24px; }
.pricing-badge {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 16px;
}
.pricing-price { display: flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.price-amount {
  font-family: 'Syne', sans-serif;
  font-size: 56px;
  font-weight: 800;
  color: var(--fg);
  line-height: 1;
}
.price-period { font-size: 16px; color: var(--fg-muted); font-weight: 500; }
.pricing-trial {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--teal);
  font-weight: 500;
}
.pricing-divider { height: 1px; background: var(--border); }
.pricing-features { padding: 24px 36px; display: flex; flex-direction: column; gap: 14px; }
.pricing-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--fg);
  font-weight: 500;
}
.pricing-cta { padding: 0 36px 36px; }
.pricing-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: var(--fg-muted);
  margin-top: 24px;
}

/* WAITLIST */
.waitlist { padding: 80px 0; background: var(--bg-alt); }
.waitlist-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  gap: 64px;
}
.waitlist-text { flex: 1; }
.waitlist-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 12px;
}
.waitlist-sub { font-size: 16px; color: var(--fg-muted); line-height: 1.65; }
.waitlist-form { flex: 1; max-width: 480px; }
.waitlist-fields {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.waitlist-fields input {
  flex: 1;
  min-width: 160px;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--fg);
  background: white;
  transition: border-color 0.2s;
  outline: none;
}
.waitlist-fields input::placeholder { color: var(--fg-muted); }
.waitlist-fields input:focus { border-color: var(--accent); }
.waitlist-btn { flex-shrink: 0; white-space: nowrap; }
.waitlist-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.waitlist-error { font-size: 13px; color: #e07a5f; margin-top: 10px; min-height: 20px; }
.waitlist-success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 500;
  color: var(--teal);
  flex: 1;
}
@media (max-width: 768px) {
  .waitlist-inner { flex-direction: column; gap: 32px; }
  .waitlist-form { width: 100%; max-width: 100%; }
  .waitlist-fields { flex-direction: column; }
  .waitlist-fields input { min-width: unset; width: 100%; }
}

/* CLOSING */
.closing { padding: 120px 24px; background: var(--fg); color: white; text-align: center; }
.closing-inner { max-width: 640px; margin: 0 auto; }
.closing-decoration { margin-bottom: 40px; display: flex; justify-content: center; }
.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing-sub {
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.65;
  margin-bottom: 40px;
}
.closing .btn-primary {
  background: white;
  color: var(--fg);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.closing .btn-primary:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.3); }

/* FOOTER */
.site-footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 48px 0 0; }
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px 40px;
  display: flex;
  justify-content: space-between;
  gap: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--fg);
  margin-bottom: 10px;
}
.footer-tagline { font-size: 13px; color: var(--fg-muted); }
.footer-links { display: flex; gap: 48px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 4px;
}
.footer-col a {
  font-size: 13px;
  color: var(--fg-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--fg); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
}
.footer-bottom p { font-size: 12px; color: var(--fg-muted); }

/* BILLING PAGES */
.billing-page {
  min-height: calc(100vh - 200px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 24px;
  background: var(--bg);
}
.billing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px 48px;
  max-width: 480px;
  width: 100%;
  box-shadow: var(--shadow);
  text-align: center;
}
.billing-icon { margin-bottom: 24px; display: flex; justify-content: center; }
.billing-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
}
.billing-sub { font-size: 15px; color: var(--fg-muted); line-height: 1.6; margin-bottom: 32px; }
.billing-details {
  background: var(--bg);
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 32px;
  text-align: left;
}
.billing-detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}
.billing-detail:last-child { border-bottom: none; }
.billing-detail-label { font-size: 13px; color: var(--fg-muted); }
.billing-detail-value { font-size: 13px; font-weight: 600; color: var(--fg); }
.billing-ref { font-size: 11px; word-break: break-all; color: var(--fg-muted); }
.billing-status--active { color: var(--teal); }
.billing-actions { display: flex; flex-direction: column; gap: 0; }

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { order: -1; }
  .hero-headline { font-size: 36px; }
  .whositsfor .section-inner { grid-template-columns: 1fr; }
  .steps { flex-direction: column; }
  .step-connector { transform: rotate(90deg); padding: 8px 0; }
  .who-right { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .nav-links { display: none; }
  .hero { padding: 60px 20px 80px; }
  .steps { gap: 16px; }
  .step-connector { display: none; }
  .calendar-post-text { display: none; }
  .pricing-card-top, .pricing-features, .pricing-cta { padding-left: 24px; padding-right: 24px; }
  .footer-inner { flex-direction: column; gap: 32px; }
  .footer-links { gap: 32px; }
}

/* SCROLLBAR */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--fg-muted); }

/* SELECTION */
::selection { background: var(--accent-soft); color: var(--fg); }
