:root {
  --bg: #FEF7F0;
  --bg-2: #FDF3E8;
  --fg: #1C1C1E;
  --fg-2: #4A4A4A;
  --fg-3: #7A7A7A;
  --accent: #FF4B2B;
  --accent-light: #FFF0ED;
  --accent-2: #FFB4A2;
  --surface: #FFFFFF;
  --border: #F0E6DA;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'Figtree', sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 48px 80px;
}

.hero-bg-orb {
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,75,43,0.12) 0%, transparent 70%);
  top: -100px;
  right: -100px;
  pointer-events: none;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-label {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.hero-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 800;
  line-height: 1.08;
  color: var(--fg);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: 18px;
  line-height: 1.65;
  color: var(--fg-2);
  max-width: 440px;
  font-weight: 400;
}

/* ── DASHBOARD PREVIEW ── */
.dashboard-preview {
  background: var(--surface);
  border-radius: 20px;
  box-shadow: 0 32px 80px rgba(28,28,30,0.10), 0 0 0 1px var(--border);
  overflow: hidden;
  width: 100%;
}

.dashboard-topbar {
  background: var(--fg);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.db-dots {
  display: flex;
  gap: 6px;
}

.db-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
  display: block;
}

.db-dots span:first-child { background: #FF5F57; }
.db-dots span:nth-child(2) { background: #FFBD2E; }
.db-dots span:nth-child(3) { background: #28C840; }

.db-title {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: white;
  flex: 1;
  text-align: center;
  letter-spacing: 0.05em;
}

.db-actions { display: flex; gap: 8px; }

.db-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: rgba(255,255,255,0.1);
}

.db-btn-primary { background: var(--accent); }

.dashboard-body {
  display: grid;
  grid-template-columns: 140px 1fr;
}

.db-sidebar {
  border-right: 1px solid var(--border);
  padding: 20px 0;
}

.db-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--fg-3);
  cursor: pointer;
}

.db-nav-item.db-nav-active {
  color: var(--accent);
  font-weight: 600;
  background: var(--accent-light);
}

.db-nav-icon {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  background: var(--border);
}

.db-nav-active .db-nav-icon {
  background: var(--accent-2);
}

.db-main { padding: 20px; display: flex; flex-direction: column; gap: 16px; }

.db-calendar { background: var(--bg-2); border-radius: 14px; padding: 16px; }

.db-cal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
}

.db-cal-month {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--fg);
}

.db-cal-nav { display: flex; gap: 4px; }

.db-cal-arrow {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
}

.db-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.db-day {
  aspect-ratio: 1;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 4px;
  font-size: 10px;
  color: var(--fg-3);
}

.db-day-header {
  font-size: 9px;
  font-weight: 600;
  color: var(--fg-3);
  justify-content: center;
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.05em;
}

.db-post {
  width: 100%;
  height: 100%;
  border-radius: 6px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.db-post-thumb {
  flex: 1;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
  border-radius: 5px;
}

.db-post-1 .db-post-thumb { background: linear-gradient(135deg, #FF4B2B, #FF8C6B); }
.db-post-2 .db-post-thumb { background: linear-gradient(135deg, #FF8C6B, #FFB4A2); }
.db-post-3 .db-post-thumb { background: linear-gradient(135deg, #F97316, #FDBA74); }

.db-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.db-stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.db-stat-value {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1.2;
}

.db-stat-label {
  font-size: 10px;
  color: var(--fg-3);
  margin-top: 2px;
}

/* ── PROOF STRIP ── */
.proof-strip {
  background: var(--fg);
  padding: 40px 48px;
}

.proof-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.proof-label {
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

.proof-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
}

.proof-stat { text-align: center; }

.proof-number {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.proof-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

.proof-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.15);
}

/* ── FEATURES ── */
.features {
  padding: 100px 48px;
  background: var(--bg-2);
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  border-radius: 1px;
}

.section-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--fg);
  letter-spacing: -0.02em;
  margin-bottom: 56px;
  max-width: 480px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 2px;
}

.feature-card {
  background: var(--surface);
  padding: 36px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--border);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(28,28,30,0.08);
}

.feature-primary {
  grid-row: span 2;
  background: var(--fg);
  border-color: var(--fg);
}

.feature-primary .feature-title { color: white; }
.feature-primary .feature-desc { color: rgba(255,255,255,0.65); }
.feature-primary .feature-icon { color: var(--accent); background: var(--accent-light); }

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

.feature-title {
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--fg);
  letter-spacing: -0.01em;
}

.feature-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
}

/* ── SCHEDULE SECTION ── */
.schedule-section {
  padding: 100px 48px;
  background: var(--bg);
}

.schedule-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.schedule-text { display: flex; flex-direction: column; gap: 24px; }

.schedule-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--fg-2);
}

.schedule-steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.step-num {
  font-family: 'Syne', sans-serif;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0;
}

.step-text {
  font-size: 15px;
  color: var(--fg-2);
  line-height: 1.5;
  padding-top: 4px;
}

/* Batch Calendar */
.batch-calendar {
  background: var(--surface);
  border-radius: 20px;
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(28,28,30,0.08);
}

.batch-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-2);
}

.batch-week {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--fg);
}

.batch-badge {
  background: #DCFCE7;
  color: #166534;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  font-family: 'Syne', sans-serif;
}

.batch-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  padding: 20px;
  gap: 8px;
}

.batch-day { display: flex; flex-direction: column; gap: 8px; }

.batch-day-label {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: var(--fg-3);
  letter-spacing: 0.05em;
  text-align: center;
}

.batch-post {
  background: var(--bg-2);
  border-radius: 10px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
}

.batch-post-thumb {
  height: 48px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
}

.batch-post-thumb-alt {
  background: linear-gradient(135deg, #F97316, #FDBA74);
}

.batch-post-meta { display: flex; flex-direction: column; gap: 3px; }

.batch-post-line {
  height: 5px;
  border-radius: 3px;
  background: var(--border);
  width: 100%;
}

.batch-post-line-short { width: 60%; }

.batch-auto-badge {
  font-size: 8px;
  font-weight: 700;
  color: var(--accent);
  font-family: 'Syne', sans-serif;
  letter-spacing: 0.05em;
  text-align: right;
}

.batch-day-weekend .batch-empty {
  font-size: 10px;
  color: var(--fg-3);
  text-align: center;
  padding: 32px 0;
  background: var(--bg-2);
  border-radius: 10px;
  border: 1px dashed var(--border);
}

.batch-footer {
  padding: 16px 20px;
  border-top: 1px solid var(--border);
  background: var(--fg);
}

.batch-ai-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
}

.batch-ai-indicator span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-family: 'Syne', sans-serif;
}

.ai-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #28C840;
  box-shadow: 0 0 8px rgba(40,200,64,0.6);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* ── CLOSING ── */
.closing {
  padding: 100px 48px;
  background: var(--fg);
}

.closing-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 48px;
}

.closing-content { max-width: 640px; }

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: white;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
}

.closing-cta { margin-top: 8px; }

.vibe-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
}

.vibe-tag-item {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 40px;
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
}

.vibe-tag-item:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── FOOTER ── */
.footer {
  padding: 48px;
  background: #111;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
}

.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
  margin-top: 4px;
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-link {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover { color: white; }

.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.25);
  width: 100%;
  text-align: center;
  margin-top: 16px;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 12px;
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.15s, box-shadow 0.15s, background 0.15s;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 20px rgba(255,75,43,0.3);
}

.btn-primary:hover {
  background: #E63E1C;
  box-shadow: 0 6px 28px rgba(255,75,43,0.4);
}

.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.btn-full { width: 100%; }

/* ── PRICING ── */
.pricing {
  padding: 100px 48px;
  background: var(--surface);
}

.pricing-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(28,28,30,0.1);
}

.pricing-card-featured {
  background: var(--fg);
  border-color: var(--fg);
  box-shadow: 0 20px 60px rgba(28,28,30,0.2);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  font-family: 'Syne', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 40px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-tier {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-3);
}

.pricing-card-featured .pricing-tier { color: rgba(255,255,255,0.5); }

.pricing-price {
  font-family: 'Syne', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pricing-price span {
  font-size: 18px;
  font-weight: 500;
  color: var(--fg-3);
}

.pricing-card-featured .pricing-price { color: white; }
.pricing-card-featured .pricing-price span { color: rgba(255,255,255,0.5); }

.pricing-desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--fg-2);
}

.pricing-card-featured .pricing-desc { color: rgba(255,255,255,0.6); }

.pricing-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pricing-features li {
  font-size: 14px;
  color: var(--fg-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent-light);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath fill='%23FF4B2B' d='M10 3L5 8l-3-3'/%3E%3C/svg%3E");
  background-size: 10px;
  background-repeat: no-repeat;
  background-position: center;
  flex-shrink: 0;
}

.pricing-card-featured .pricing-features li { color: rgba(255,255,255,0.75); }
.pricing-card-featured .pricing-features li::before { background-color: rgba(255,75,43,0.25); }

.pricing-cta { margin-top: 8px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { padding: 60px 24px; }
  .hero-content { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .hero-cta { margin-top: 8px; }
  .features { padding: 60px 24px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-primary { grid-column: span 2; grid-row: span 1; }
  .pricing { padding: 60px 24px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }
  .pricing-card-featured { order: -1; }
  .schedule-inner { grid-template-columns: 1fr; }
  .proof-stats { gap: 24px; flex-wrap: wrap; }
  .proof-divider { display: none; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .feature-primary { grid-column: span 1; }
  .proof-stats { flex-direction: column; gap: 16px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-links { flex-wrap: wrap; gap: 16px; }
  .batch-days { padding: 12px; }
  .pricing-grid { max-width: 100%; }
}