/* Brand palette mirrored from flaxitup-company so the temp site and the
   eventual React site feel like the same brand. */
:root {
  --bg: #fbf9f4;
  --fg: #16201a;
  --muted: #5a675f;
  --primary: #2c7a4b;
  --primary-fg: #fbf9f4;
  --border: #e3dfd5;
  --card: #ffffff;
  --accent: #f4ece1;
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--fg);
  font-family: "InterVariable", "Inter", ui-sans-serif, system-ui, -apple-system, "SF Pro Display", "Segoe UI", Roboto, sans-serif;
  font-feature-settings: "cv11", "ss01", "ss03";
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.display { letter-spacing: -0.035em; font-feature-settings: "ss01", "ss03", "cv11"; }
h1, h2, h3, h4 { letter-spacing: -0.022em; }

.btn-primary {
  background: var(--primary);
  color: var(--primary-fg);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: opacity 0.15s;
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.15s;
}
.btn-outline:hover { background: var(--accent); }

.prose {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--fg);
}
.prose h2 { font-size: 1.5rem; margin-top: 2rem; margin-bottom: 0.75rem; font-weight: 600; }
.prose h3 { font-size: 1.125rem; margin-top: 1.75rem; margin-bottom: 0.5rem; font-weight: 600; }
.prose p { margin-bottom: 1rem; color: var(--fg); }
.prose ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose ol { list-style: decimal; padding-left: 1.5rem; margin-bottom: 1rem; }
.prose li { margin-bottom: 0.25rem; }
.prose a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }
.prose strong { font-weight: 600; }

.muted { color: var(--muted); }
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 1.5rem;
  padding: 1.5rem;
}
.hairline {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border) 20%, var(--border) 80%, transparent);
  margin: 2rem 0;
}
