:root {
  --bg: #F2EDE6;
  --surface: #FFFFFF;
  --primary: #1B4D3E;
  --primary-light: #2A6B54;
  --accent: #D4952A;
  --text: #1C1C1A;
  --text-muted: #6A6560;
  --border: #D8D0C8;
  --green-tint: #E8F0EC;
}

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

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

/* Nav */
nav {
  background: var(--primary);
  color: #fff;
  padding: 0 40px;
  height: 56px;
  display: flex;
  align-items: center;
}
.nav-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.wordmark {
  font-family: 'Instrument Serif', serif;
  font-size: 22px;
  color: #fff;
  letter-spacing: -0.02em;
  text-decoration: none;
}
.nav-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
}

/* Hero */
.hero {
  background: var(--primary);
  color: #fff;
  padding: 80px 40px 100px;
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(212,149,42,0.15);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.hero-copy h1 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(40px, 5vw, 60px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 24px;
}
.lede {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,0.75);
  max-width: 480px;
  margin-bottom: 32px;
}
.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}
.dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
}

/* Phone mockup */
.hero-visual {
  display: flex;
  justify-content: center;
}
.phone-frame {
  background: #111;
  border-radius: 28px;
  padding: 16px;
  width: 240px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.5);
  border: 1px solid rgba(255,255,255,0.08);
}
.phone-header {
  margin-bottom: 14px;
}
.phone-dots {
  display: flex;
  gap: 5px;
  padding: 0 4px;
}
.phone-dots span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
}
.bot-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary-light);
  color: #fff;
  font-family: 'Instrument Serif', serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 6px;
  border: 2px solid rgba(255,255,255,0.15);
}
.bot-name {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.bot-desc {
  text-align: center;
  font-size: 10px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 14px;
}
.chat-bubble {
  font-size: 10px;
  line-height: 1.4;
  padding: 6px 9px;
  border-radius: 10px;
  margin-bottom: 6px;
  max-width: 200px;
}
.bot-msg {
  background: #2A2A2A;
  color: rgba(255,255,255,0.85);
  align-self: flex-start;
}
.user-msg {
  background: var(--primary);
  color: #fff;
  align-self: flex-end;
  margin-left: auto;
}
.listing-card {
  background: #1E1E1E;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 5px;
}
.listing-name {
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 2px;
}
.listing-loc {
  font-size: 9px;
  color: rgba(255,255,255,0.45);
  margin-bottom: 4px;
}
.listing-tags {
  display: flex;
  gap: 4px;
}
.listing-tags span {
  font-size: 8px;
  background: rgba(212,149,42,0.2);
  color: var(--accent);
  padding: 1px 5px;
  border-radius: 2px;
}

/* Trustbar */
.trustbar {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 28px 40px;
}
.trustbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0 48px;
}
.trust-num {
  font-family: 'Instrument Serif', serif;
  font-size: 32px;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.trust-label {
  font-size: 12px;
  color: var(--text-muted);
  text-align: center;
}
.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--border);
}

/* Sections shared */
.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.section-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}
h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 3.5vw, 44px);
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--text);
  margin-bottom: 48px;
}

/* Categories */
.categories {
  padding: 80px 0;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.cat-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.cat-icon {
  font-size: 24px;
  margin-bottom: 12px;
}
.cat-name {
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 8px;
  color: var(--text);
}
.cat-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* How it works */
.how {
  padding: 80px 0;
  background: var(--green-tint);
}
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step-num {
  font-family: 'Instrument Serif', serif;
  font-size: 48px;
  color: var(--primary);
  opacity: 0.2;
  margin-bottom: 16px;
  line-height: 1;
}
.step-title {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--text);
}
.step-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Closing */
.closing {
  padding: 100px 40px;
  background: var(--primary);
  color: #fff;
}
.closing-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.closing h2 {
  font-family: 'Instrument Serif', serif;
  font-size: clamp(28px, 4vw, 48px);
  color: #fff;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 24px;
}
.closing p {
  font-size: 17px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  margin-bottom: 32px;
}
.closing-tag {
  font-family: 'Instrument Serif', serif;
  font-size: 28px;
  font-style: italic;
  color: var(--accent);
}

/* Footer */
footer {
  background: #111;
  color: rgba(255,255,255,0.5);
  padding: 32px 40px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-brand .wordmark {
  display: block;
  font-size: 18px;
  margin-bottom: 6px;
}
.footer-brand p {
  font-size: 13px;
  max-width: 300px;
}
.footer-meta {
  font-size: 13px;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .trustbar-inner { flex-wrap: wrap; gap: 20px; }
  .trust-divider { display: none; }
}

@media (max-width: 600px) {
  .hero { padding: 60px 24px 80px; }
  .cat-grid { grid-template-columns: 1fr; }
  h2 { font-size: 28px; }
  nav, .footer-inner { padding-left: 24px; padding-right: 24px; }
}