:root {
  --bg: #FAF7F0;
  --bg-alt: #F3EEE6;
  --fg: #1A1A18;
  --fg-muted: #6B6B5F;
  --accent: #D4920A;
  --accent-dim: rgba(212, 146, 10, 0.12);
  --green: #2A4D1E;
  --green-light: rgba(42, 77, 30, 0.08);
  --green-mid: rgba(42, 77, 30, 0.15);
  --border: rgba(26, 26, 24, 0.1);
  --radius: 14px;
  --radius-lg: 24px;
  --phone-bg: #111110;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--fg);
  font-family: 'DM Sans', sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ─── HEADER ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--green);
  letter-spacing: -0.01em;
}

.tagline {
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-weight: 400;
}

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

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

.hero-value {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.4rem;
  color: var(--green);
  letter-spacing: -0.03em;
}

.price-label {
  font-size: 0.9rem;
  color: var(--fg-muted);
}

/* ─── PHONE MOCKUP ────────────────────────────────────── */
.hero-visual {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  width: 240px;
  background: var(--phone-bg);
  border-radius: 38px;
  padding: 18px 14px 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.18), 0 0 0 1px rgba(255,255,255,0.08);
  position: relative;
}

.phone-notch {
  width: 72px;
  height: 22px;
  background: var(--phone-bg);
  border-radius: 0 0 16px 16px;
  margin: 0 auto 14px;
  box-shadow: inset 0 -2px 4px rgba(0,0,0,0.3);
}

.phone-screen {
  background: #181816;
  border-radius: 20px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.app-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 4px;
}

.app-logo {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 0.6rem;
  font-weight: 800;
  color: white;
}

.app-name {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.7);
}

.post-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 10px;
}

.post-card--active {
  background: rgba(42, 77, 30, 0.25);
  border-color: rgba(42, 77, 30, 0.5);
}

.post-icon {
  width: 28px;
  height: 28px;
  background: rgba(212, 146, 10, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 8px;
}

.post-icon--reel { background: rgba(200, 50, 200, 0.15); color: #C832C8; }
.post-icon--fb { background: rgba(80, 130, 255, 0.15); color: #5082FF; }

.post-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.post-platform {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.post-status {
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--accent);
}

.post-status--done { color: rgba(255,255,255,0.35); }

.post-title {
  font-size: 0.68rem;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  margin-bottom: 8px;
}

.post-bar {
  height: 3px;
  background: rgba(255,255,255,0.08);
  border-radius: 2px;
}

.post-bar-fill {
  height: 100%;
  background: var(--green);
  border-radius: 2px;
}

.weekly-label {
  text-align: center;
  font-size: 0.62rem;
  color: rgba(255,255,255,0.25);
  margin-top: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ─── STATS ROW ───────────────────────────────────────── */
.stats-row {
  background: var(--green);
  max-width: 1100px;
  margin: 0 auto 80px;
  border-radius: var(--radius-lg);
  padding: 48px 56px;
  display: flex;
  align-items: center;
  gap: 0;
}

.stat {
  flex: 1;
  padding: 0 40px;
}

.stat:first-child { padding-left: 0; }
.stat:last-child { padding-right: 0; }

.stat-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 3rem;
  color: white;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  margin-bottom: 4px;
}

.stat-sub {
  display: block;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.4;
}

.stat-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ─── MANIFESTO ───────────────────────────────────────── */
.manifesto {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 72px 80px;
}

.manifesto-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--fg);
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
  max-width: 720px;
}

.manifesto-body {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 680px;
  margin-bottom: 16px;
}

.manifesto-body:last-child { margin-bottom: 0; }

/* ─── FEATURES ────────────────────────────────────────── */
.features {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.features-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}

.feature-card {
  background: var(--green-light);
  border: 1px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: background 0.2s;
}

.feature-card:hover {
  background: var(--green-mid);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--green);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin-bottom: 20px;
}

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

.feature-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* ─── PROCESS ─────────────────────────────────────────── */
.process {
  max-width: 1100px;
  margin: 0 auto 80px;
  padding: 0 32px;
}

.process-label {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  padding: 44px 40px;
  border-right: 1px solid var(--border);
  background: var(--bg);
}

.process-step:last-child { border-right: none; }

.step-number {
  display: block;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  color: rgba(42, 77, 30, 0.2);
  letter-spacing: -0.04em;
  margin-bottom: 20px;
}

.step-title {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--fg);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.step-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.7;
}

/* ─── CLOSING ──────────────────────────────────────────── */
.closing {
  background: var(--green);
  max-width: 1100px;
  margin: 0 auto 80px;
  border-radius: var(--radius-lg);
  padding: 80px;
  text-align: center;
}

.closing-headline {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 2.2rem);
  color: white;
  line-height: 1.25;
  letter-spacing: -0.025em;
  margin-bottom: 20px;
}

.closing-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 40px;
}

.closing-detail {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  background: rgba(255,255,255,0.1);
  border-radius: 100px;
  padding: 14px 28px;
}

.detail-price {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
}

.detail-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}

/* ─── FOOTER ───────────────────────────────────────────── */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 40px 32px;
}

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

.footer-logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--green);
  display: block;
  margin-bottom: 6px;
}

.footer-desc {
  font-size: 0.82rem;
  color: var(--fg-muted);
}

.footer-meta {
  font-size: 0.78rem;
  color: rgba(107,107,95,0.6);
}

/* ─── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 60px 24px 48px;
  }
  .hero-sub { max-width: 100%; }
  .hero-visual { order: -1; }
  .stats-row { flex-direction: column; gap: 32px; padding: 40px 32px; }
  .stat { padding: 0; border-right: none; }
  .stat-divider { width: 40px; height: 1px; }
  .manifesto { padding: 48px 28px; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-bottom: 1px solid var(--border); }
  .process-step:last-child { border-bottom: none; }
  .closing { padding: 60px 28px; }
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .hero-headline { font-size: 2rem; }
  .stat-number { font-size: 2.4rem; }
}