:root {
  --bg: #f8f5f0;
  --surface: #ffffff;
  --fg: #1a1a1a;
  --fg-muted: #6b6b6b;
  --accent: #FF5C3A;
  --accent-dark: #e04428;
  --border: #e8e4df;
  --radius: 12px;
  --font-head: 'Syne', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;
}

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

body {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Hero ── */
.hero {
  padding: 100px 48px 80px;
  max-width: 860px;
  margin: 0 auto;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 7px; height: 7px;
  background: var(--accent);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
.hero-headline {
  font-family: var(--font-head);
  font-size: clamp(36px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 24px;
}
.hero-sub {
  font-size: 19px;
  color: var(--fg-muted);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
}
.hero-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.tag {
  display: inline-block;
  padding: 7px 16px;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--fg-muted);
}

/* ── Showcase ── */
.showcase {
  padding: 0 48px 100px;
  max-width: 860px;
  margin: 0 auto;
}
.showcase-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 16px;
}
.mockup-window {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
}
.mockup-bar {
  background: #f2efe9;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid var(--border);
}
.dot { width: 12px; height: 12px; border-radius: 50%; }
.red { background: #ff5f57; }
.yellow { background: #febc2e; }
.green { background: #28c840; }
.mockup-title { font-size: 12px; color: var(--fg-muted); margin-left: 8px; font-weight: 500; }
.mockup-body { display: flex; min-height: 280px; }
.mockup-sidebar { width: 160px; background: #faf9f7; border-right: 1px solid var(--border); padding: 20px 0; }
.sidebar-item { padding: 10px 20px; font-size: 13px; color: var(--fg-muted); cursor: default; }
.sidebar-item.active { color: var(--accent); font-weight: 600; border-left: 3px solid var(--accent); }
.mockup-main { flex: 1; padding: 24px; }
.mockup-header { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 20px; }
.mockup-stats { display: flex; gap: 20px; margin-bottom: 20px; }
.stat-card { background: var(--bg); border: 1px solid var(--border); border-radius: 10px; padding: 16px 20px; flex: 1; }
.stat-num { font-family: var(--font-head); font-size: 28px; font-weight: 800; color: var(--fg); }
.stat-label { font-size: 12px; color: var(--fg-muted); margin-top: 4px; }
.mockup-ai-badge { background: linear-gradient(135deg, #fff8f6, #fff2ee); border: 1px solid #ffd8cc; border-radius: 8px; padding: 12px 16px; font-size: 13px; color: var(--accent); display: flex; align-items: center; gap: 8px; }
.ai-icon { font-size: 16px; }
.showcase-caption { text-align: center; font-size: 14px; color: var(--fg-muted); margin-top: 20px; }

/* ── Products ── */
.products {
  background: var(--surface);
  border-top: 1.5px solid var(--border);
  border-bottom: 1.5px solid var(--border);
  padding: 80px 48px;
}
.section-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}
.section-heading {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 52px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}
.product-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}
.product-icon {
  font-size: 28px;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}
.product-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 10px;
}
.product-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.55;
}

/* ── Manifesto ── */
.manifesto {
  padding: 100px 48px;
  max-width: 860px;
  margin: 0 auto;
}
.manifesto-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.manifesto-text h2 {
  font-family: var(--font-head);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.manifesto-text p {
  font-size: 16px;
  color: var(--fg-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}
.manifesto-stats { display: flex; flex-direction: column; gap: 32px; }
.m-stat { border-left: 3px solid var(--accent); padding-left: 20px; }
.m-num { font-family: var(--font-head); font-size: 40px; font-weight: 800; color: var(--fg); line-height: 1; }
.m-desc { font-size: 14px; color: var(--fg-muted); margin-top: 6px; }

/* ── Pricing ── */
.pricing {
  background: var(--surface);
  border-top: 1.5px solid var(--border);
  padding: 80px 48px;
  text-align: center;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 820px;
  margin: 0 auto;
}
.price-card {
  background: var(--bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: left;
}
.price-card.featured {
  border-color: var(--accent);
  background: #fff8f6;
}
.price-tier { font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.price-range { font-family: var(--font-head); font-size: 32px; font-weight: 800; color: var(--fg); margin-bottom: 12px; }
.price-card p { font-size: 14px; color: var(--fg-muted); line-height: 1.55; }

/* ── Closing ── */
.closing {
  padding: 100px 48px;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.closing p {
  font-size: 18px;
  color: var(--fg-muted);
}

/* ── Footer ── */
footer {
  border-top: 1.5px solid var(--border);
  padding: 40px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 860px;
  margin: 0 auto;
}
.footer-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 800;
  display: block;
}
.footer-tagline {
  font-size: 13px;
  color: var(--fg-muted);
}
.footer-meta {
  font-size: 12px;
  color: var(--fg-muted);
}

/* ── Mobile ── */
@media (max-width: 640px) {
  .hero, .showcase, .manifesto, .closing { padding-left: 24px; padding-right: 24px; }
  .products, .pricing { padding-left: 24px; padding-right: 24px; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .product-grid { grid-template-columns: 1fr 1fr; }
  footer { flex-direction: column; gap: 16px; text-align: center; }
  .hero-headline { font-size: 36px; }
  .mockup-sidebar { display: none; }
}

/* ── Custom scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }