:root {
  --bg: #f3ebe2;
  --surface: #fffdfb;
  --text: #3b2417;
  --muted: #6f4e37;
  --primary: #4b3424;
  --accent: #7a5640;
  --border: #e6d8c8;
  --radius: 12px;
  --max-width: 1080px;
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

img, svg {
  max-width: 100%;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* Header */
.site-header {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

/* Hero */
.hero {
  padding: 64px 0 48px;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0 0 12px;
  color: var(--primary);
}

.hero p.lede {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 620px;
}

.hero-app {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-app img.app-icon {
  width: 128px;
  height: 128px;
  border-radius: 26px;
  box-shadow: 0 12px 30px rgba(59, 36, 23, 0.25);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  background: var(--accent);
  color: #fff;
  border: none;
}

.btn:hover {
  opacity: 0.9;
  text-decoration: none;
}

/* Badge */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--muted);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.badge .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e0a94a;
}

/* Sections */
section {
  padding: 40px 0;
}

section.alt {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.feature-list li {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 18px;
}

.feature-list li::before {
  content: "\2615";
  margin-right: 8px;
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
  color: var(--muted);
  font-size: 0.9rem;
}
