:root {
  --bg: #f5f4ef;
  --card: #ffffff;
  --border: #e7e5dd;
  --text: #171614;
  --text-muted: #6b6862;
  --accent: #b8862f;
  --accent-soft: #f2e6cf;
  --black: #16150f;
  --radius-lg: 20px;
  --radius-md: 14px;
  --shadow: 0 1px 2px rgba(20, 18, 10, 0.04), 0 8px 24px rgba(20, 18, 10, 0.04);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.landing { max-width: 1080px; margin: 0 auto; padding: 0 32px; }

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 0;
}
.brand { font-size: 19px; font-weight: 700; letter-spacing: -0.02em; }
.brand-accent { color: var(--accent); }

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--black);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 11px 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s ease;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary.lg { padding: 14px 26px; font-size: 15px; }

.hero {
  padding: 64px 0 56px;
  max-width: 720px;
}
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 14px;
}
.hero h1 {
  font-size: 46px;
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 18px;
}
.hero-sub {
  font-size: 17px;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 30px;
}
.hero-actions { display: flex; gap: 12px; }

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-bottom: 60px;
}
.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 26px 22px;
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.feature-icon svg { color: var(--accent); width: 19px; height: 19px; }
.feature-card h3 { font-size: 15.5px; margin: 0 0 8px; }
.feature-card p { font-size: 13.5px; line-height: 1.55; color: var(--text-muted); margin: 0; }

.landing-footer {
  padding: 20px 0 40px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--text-muted);
}

@media (max-width: 760px) {
  .features { grid-template-columns: 1fr; }
  .hero h1 { font-size: 34px; }
}
