/* Evidence Launch — main site design system */
:root {
  --bg: #f7f5f2;
  --surface: #ffffff;
  --ink: #1a1a18;
  --muted: #5c5a56;
  --accent: #2d4a3e;
  --accent-hover: #1f3329;
  --border: #e4e0d8;
  --focus: #2563eb;
  --max: 68rem;
  --font: "Segoe UI", system-ui, -apple-system, sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
}

a { color: var(--accent); }
a:hover { color: var(--accent-hover); }

:focus-visible {
  outline: 2px solid var(--focus);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 1.25rem 1.5rem 3rem;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  align-items: center;
  padding: 0.75rem 0 1.5rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
  font-size: 0.9375rem;
}

.nav a { text-decoration: none; color: var(--muted); }
.nav a:hover, .nav a[aria-current="page"] { color: var(--ink); }
.nav .brand { font-weight: 600; color: var(--ink); margin-right: auto; }
.nav-cta {
  padding: 0.45rem 1rem;
  background: var(--accent);
  color: #fff !important;
  border-radius: 4px;
  font-weight: 500;
}
.nav-cta:hover { background: var(--accent-hover); }

.site-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 1rem;
}

.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 42rem;
  margin: 0 0 1.5rem;
}

h2 {
  font-size: 1.375rem;
  font-weight: 600;
  margin: 2.5rem 0 1rem;
}

h3 { font-size: 1.0625rem; font-weight: 600; margin: 0 0 0.5rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 1rem;
}

.card-muted {
  background: #eeebe6;
  border-color: #ddd8cf;
}

.grid-3 {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0;
}

.cta {
  display: inline-block;
  padding: 0.65rem 1.35rem;
  background: var(--accent);
  color: #fff !important;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.cta:hover { background: var(--accent-hover); }

.cta-secondary {
  background: transparent;
  color: var(--accent) !important;
  border: 1px solid var(--accent);
}

.cta-secondary:hover {
  background: var(--accent);
  color: #fff !important;
}

.price { font-weight: 600; color: var(--ink); }
.price-from { font-size: 0.875rem; color: var(--muted); }

ul.compact { margin: 0.5rem 0; padding-left: 1.25rem; }
ul.compact li { margin-bottom: 0.35rem; }

.disclaimer {
  font-size: 0.875rem;
  color: var(--muted);
  border-left: 3px solid var(--border);
  padding-left: 1rem;
  margin: 1.5rem 0;
}

.foot {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  font-size: 0.875rem;
  color: var(--muted);
}

.concept-banner {
  background: #3d3428;
  color: #f5f0e8;
  padding: 0.65rem 1rem;
  font-size: 0.875rem;
  text-align: center;
  margin: -1.25rem -1.5rem 1.5rem;
  border-radius: 6px 6px 0 0;
}

label { display: block; font-weight: 500; margin: 1rem 0 0.35rem; }
input, select, textarea {
  width: 100%;
  max-width: 32rem;
  padding: 0.5rem 0.65rem;
  font: inherit;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: var(--surface);
}

textarea { min-height: 5rem; resize: vertical; }

table.data {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

table.data th {
  text-align: left;
  padding: 0.5rem 0.75rem 0.5rem 0;
  vertical-align: top;
  color: var(--muted);
  font-weight: 500;
  width: 8rem;
}

table.data td { padding: 0.5rem 0; }
