:root {
  --bg: #F7F4EE;
  --bg-alt: #EDEAE2;
  --fg: #1B3A1C;
  --fg-muted: #4A6B3A;
  --accent: #E8613E;
  --accent-warm: #D4873B;
  --surface: #FFFFFF;
  --border: rgba(27,58,28,0.12);
}

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

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

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247,244,238,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  color: var(--fg);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo-mark {
  color: var(--accent);
  font-size: 14px;
}
.nav-tagline {
  font-size: 13px;
  color: var(--fg-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* SECTION LABELS */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  display: inline-block;
}

/* HERO */
.hero {
  padding: 80px 0 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-bottom: 20px;
}
.hero-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(48px, 6vw, 72px);
  line-height: 1.05;
  color: var(--fg);
  margin-bottom: 28px;
  letter-spacing: -0.02em;
}
.hero-headline em {
  color: var(--accent);
  font-style: italic;
}
.hero-sub {
  font-size: 18px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 420px;
  margin-bottom: 40px;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
}
.stat-number {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--fg);
  display: block;
  line-height: 1;
}
.stat-label {
  font-size: 12px;
  color: var(--fg-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* PHONE MOCKUP */
.hero-right {
  display: flex;
  justify-content: center;
}
.phone-mockup {
  position: relative;
}
.phone-frame {
  background: var(--fg);
  border-radius: 36px;
  padding: 12px;
  width: 260px;
  box-shadow: 0 24px 80px rgba(27,58,28,0.25), 0 0 0 1px rgba(27,58,28,0.06);
}
.phone-header {
  display: flex;
  justify-content: center;
  padding: 8px 0 12px;
}
.phone-dots {
  display: flex;
  gap: 6px;
}
.phone-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}
.phone-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.post-card {
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.06);
}
.post-img {
  height: 56px;
  background: linear-gradient(135deg, var(--accent-warm), var(--accent));
}
.food-photo { background: linear-gradient(135deg, #C25B2E, #E8613E); }
.event-photo { background: linear-gradient(135deg, #2A5C1A, #3D7A25); }
.testimonial-photo { background: linear-gradient(135deg, #8A6430, #D4873B); }
.post-text {
  padding: 10px 12px;
}
.post-line {
  height: 7px;
  background: rgba(255,255,255,0.15);
  border-radius: 4px;
  margin-bottom: 5px;
}
.post-line.short { width: 45%; }
.post-line.medium { width: 70%; }
.post-line.long { width: 85%; }
.post-tag {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-top: 2px;
}
.phone-label {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.35);
  margin-top: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* PROBLEM */
.problem {
  background: var(--bg-alt);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.problem-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.problem-header {
  max-width: 560px;
  margin-bottom: 64px;
}
.problem-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}
.problem-card {
  background: var(--bg);
  padding: 40px 36px;
}
.problem-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-alt);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}
.problem-card h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  margin-bottom: 12px;
}
.problem-card p {
  font-size: 15px;
  color: var(--fg-muted);
  line-height: 1.65;
}

/* PLATFORM */
.platform {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.platform-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.platform-header {
  max-width: 600px;
  margin-bottom: 64px;
}
.platform-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.platform-desc {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.65;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(27,58,28,0.1);
}
.feature-num {
  font-family: 'Instrument Serif', serif;
  font-size: 42px;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 16px;
}
.feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.feature-card p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* VERTICALS */
.verticals {
  background: var(--fg);
  color: #fff;
  padding: 100px 0;
}
.verticals-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.verticals-header {
  margin-bottom: 64px;
}
.verticals-header .section-label {
  color: var(--accent);
}
.verticals-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #fff;
}
.verticals-list {
  display: flex;
  flex-direction: column;
}
.vertical-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 32px;
  align-items: start;
  padding: 40px 0;
}
.vertical-icon {
  width: 56px;
  height: 56px;
  background: rgba(255,255,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-warm);
  flex-shrink: 0;
}
.vertical-content h3 {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: #fff;
  margin-bottom: 10px;
}
.vertical-content p {
  font-size: 15px;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 580px;
}
.vertical-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
}

/* HOW IT WORKS */
.how {
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.how-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.how-header {
  margin-bottom: 64px;
}
.how-header h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}
.step {
  position: relative;
}
.step-marker {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.step-num {
  width: 36px;
  height: 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
}
.step-line {
  flex: 1;
  height: 1px;
  background: var(--border);
  margin-left: 0;
}
.step:last-child .step-line { display: none; }
.step-content h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.step-content p {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* MANIFESTO */
.manifesto {
  background: var(--bg-alt);
  padding: 100px 0;
  border-top: 1px solid var(--border);
}
.manifesto-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 32px;
  text-align: center;
}
.manifesto-quote {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(26px, 4vw, 38px);
  line-height: 1.25;
  color: var(--fg);
  letter-spacing: -0.01em;
  font-style: italic;
  margin-bottom: 32px;
}
.manifesto-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.manifesto-body em {
  color: var(--fg);
  font-style: normal;
  font-weight: 600;
}

/* CLOSING */
.closing {
  padding: 100px 0;
  border-top: 1px solid var(--border);
  text-align: center;
}
.closing-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 0 32px;
}
.closing-headline {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--fg);
  margin-bottom: 28px;
}
.closing-body {
  font-size: 17px;
  color: var(--fg-muted);
  line-height: 1.7;
  margin-bottom: 16px;
}
.closing-body-strong {
  font-size: 20px;
  color: var(--fg);
  font-weight: 600;
}

/* CLOSING CTA */
.closing-cta {
  margin-top: 48px;
  padding: 36px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
}
.cta-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--fg);
  margin-bottom: 20px;
  text-align: center;
}
.cta-form {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.cta-form input,
.cta-form select {
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  font-family: 'Manrope', sans-serif;
  background: var(--bg);
  color: var(--fg);
  min-width: 180px;
  flex: 1;
}
.cta-form input:focus,
.cta-form select:focus {
  outline: none;
  border-color: var(--accent);
}
.cta-form button {
  padding: 12px 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Manrope', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s;
}
.cta-form button:hover { opacity: 0.85; }
.cta-success {
  font-size: 15px;
  color: #059669;
  font-weight: 600;
  text-align: center;
  padding: 16px;
  background: #D1FAE5;
  border-radius: 8px;
  margin-top: 12px;
}

/* FOOTER */
.footer {
  background: var(--fg);
  color: #fff;
  padding: 80px 0 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 60px;
}
.footer-logo {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  max-width: 280px;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.footer-col h4 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.15s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.35);
}
.footer-note {
  font-style: italic;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-right { display: none; }
  .hero-sub { max-width: 100%; }
  .problem-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 600px) {
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .vertical-item { grid-template-columns: 1fr; gap: 16px; }
  .hero-stats { flex-wrap: wrap; }
  .nav-inner { padding: 14px 20px; }
  .hero-inner, .problem-inner, .platform-inner, .verticals-inner, .how-inner, .manifesto-inner, .closing-inner, .footer-inner { padding: 0 20px; }
}