:root {
  --bg: #EDE6DC;
  --bg-soft: #E5DCC9;
  --card: #FBF7EE;
  --line: #D4CAC0;
  --ink: #1C1917;
  --ink-soft: #57534E;
  --primary: #1E4D32;
  --primary-deep: #0F2E1F;
  --primary-bright: #2D6B4A;
  --accent: #E8A84A;
  --accent-deep: #D66A42;
  --gold: #F4D03F;
  --cream: #F5E6B8;
  --radius: 22px;
  --radius-lg: 28px;
  --shadow-card: 0 4px 18px -4px rgba(15, 46, 31, 0.12);
  --shadow-hero: 0 18px 40px -16px rgba(15, 46, 31, 0.35);
  --shadow-accent: 0 12px 26px -10px rgba(214, 106, 66, 0.45);
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: ui-rounded, "SF Pro Rounded", "Nunito", "Avenir Next Rounded", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(30, 77, 50, 0.3);
  transition: border-color 0.15s ease;
}

a:hover {
  border-bottom-color: var(--primary);
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

/* ---------------- Top bar ---------------- */
.topbar {
  max-width: 720px;
  margin: 0 auto;
  padding: 20px 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar .brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  font-size: 18px;
  border-bottom: none;
}

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

.topbar nav {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.topbar nav a {
  color: var(--ink-soft);
  font-weight: 600;
  border-bottom: none;
}

.topbar nav a:hover {
  color: var(--primary);
}

/* ---------------- Hero ---------------- */
.hero {
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  color: white;
  background: linear-gradient(135deg, #0C1F15 0%, #1E4D32 60%, #2D6B4A 100%);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  margin-top: 16px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -56px;
  top: -56px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(244, 208, 95, 0.14);
  pointer-events: none;
}

.hero .eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--cream);
  margin: 0 0 8px;
}

.hero h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.15;
}

.hero p {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.55;
  max-width: 540px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  position: relative;
  z-index: 1;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.1s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--accent), var(--accent-deep));
  color: #3d2314;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  transform: translateY(-1px);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.2);
}

/* ---------------- Meta ---------------- */
.meta {
  margin: 14px 4px 0;
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------------- Section ---------------- */
.section {
  margin-top: 26px;
}

.section .label {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--primary);
  margin: 0 0 8px 6px;
}

.section .card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: var(--shadow-card);
}

.section p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
}

.section p + p,
.section p + ul,
.section ul + p {
  margin-top: 12px;
}

.section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.section li {
  display: flex;
  gap: 8px;
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--ink);
}

.section li + li {
  margin-top: 8px;
}

.section li::before {
  content: "•";
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.section strong {
  font-weight: 700;
  color: var(--ink);
}

.mono {
  font-weight: 700;
  color: var(--primary);
}

/* ---------------- Feature grid (landing) ---------------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.feature {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow-card);
}

.feature .icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  font-size: 22px;
  background: linear-gradient(135deg, var(--primary-bright), var(--primary));
  color: white;
}

.feature.coral .icon {
  background: linear-gradient(135deg, var(--accent), var(--accent-deep));
}

.feature.blue .icon {
  background: linear-gradient(135deg, #5BBED1, #3A87A0);
}

.feature.purple .icon {
  background: linear-gradient(135deg, #8C82C9, #5F5497);
}

.feature h3 {
  margin: 0 0 4px;
  font-size: 15.5px;
  font-weight: 700;
}

.feature p {
  margin: 0;
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.5;
}

/* ---------------- Footer ---------------- */
.footer {
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 20px 40px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--ink-soft);
}

.footer nav {
  display: flex;
  gap: 18px;
}

.footer nav a {
  color: var(--ink-soft);
  border-bottom: none;
  font-weight: 600;
}

.footer nav a:hover {
  color: var(--primary);
}

/* ---------------- Small ---------------- */
@media (max-width: 480px) {
  main {
    padding: 24px 16px 64px;
  }
  .topbar {
    padding: 16px 16px 0;
  }
  .hero {
    padding: 22px 20px;
  }
  .hero h1 {
    font-size: 24px;
  }
}
