/* Evergreen /answers — matches /decision-validation/ chrome, type, spacing */
* { margin: 0; padding: 0; box-sizing: border-box }
body {
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 920px; margin: 0 auto; padding: 0 1.25rem }
a { color: var(--accent) }
a:hover { color: var(--accent-hover) }
code, .mono {
  font-family: var(--font-mono);
  font-size: .85em;
}

.crumbs {
  font-size: .82rem;
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}
.crumbs a { color: var(--text-muted); text-decoration: none }
.crumbs a:hover { color: var(--text) }
.crumbs span[aria-current="page"] { color: var(--text) }

.hero {
  padding: 4.5rem 0 2.75rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-top: 0;
}
.hero::before {
  content: "";
  position: absolute;
  inset: -30% -15% auto -15%;
  height: 140%;
  background:
    radial-gradient(ellipse 55% 50% at 78% 28%, rgba(99,102,241,.26), transparent 58%),
    radial-gradient(ellipse 40% 45% at 18% 70%, rgba(0,191,165,.12), transparent 55%),
    radial-gradient(ellipse 70% 40% at 50% 0%, rgba(139,92,246,.10), transparent 60%);
  pointer-events: none;
  z-index: -2;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, #000 20%, transparent 75%);
  pointer-events: none;
  z-index: -1;
  opacity: .7;
}
.kicker {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
h1 {
  font-size: clamp(1.9rem, 4.4vw, 2.55rem);
  line-height: 1.16;
  letter-spacing: -.02em;
  margin-bottom: 1rem;
  max-width: 22ch;
}
.hero > p:first-of-type,
.answer {
  font-size: 1.1rem;
  color: var(--text);
  max-width: 68ch;
  margin-bottom: 0;
}
.hero > p:first-of-type { color: var(--text) }

section { padding: 2.75rem 0; border-top: 1px solid var(--border); position: relative }
h2 {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1.75rem;
}
p { color: var(--text-muted); margin-bottom: 1rem; max-width: 68ch }
p:last-child { margin-bottom: 0 }
p b, li b, td b { color: var(--text); font-weight: 500 }
ul.prose {
  color: var(--text-muted);
  padding-left: 1.15rem;
  display: grid;
  gap: .5rem;
  max-width: 68ch;
}

.eg {
  background: rgba(10,10,15,.55);
  border: 1px solid var(--border);
  border-left: 2px solid rgba(99,102,241,.75);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.15rem;
  color: var(--text-muted);
  font-size: .95rem;
  margin: 1.15rem 0 0;
  max-width: 68ch;
}
.eg b { color: var(--text) }

.nots { display: grid; gap: .75rem; list-style: none }
.nots li {
  padding: .95rem 1.15rem;
  background: linear-gradient(180deg, rgba(26,26,37,.9), rgba(16,16,24,.95));
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: .95rem;
}
.nots b { color: var(--text); display: block; margin-bottom: .2rem }

.card {
  background: linear-gradient(180deg, rgba(26,26,37,.88), rgba(16,16,24,.94));
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.25rem 1.25rem 1.15rem;
  position: relative;
  overflow: hidden;
  margin-bottom: 1.15rem;
}
.card::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(99,102,241,.85), rgba(0,191,165,.45));
}
.card p { margin-bottom: .75rem }
.card p:last-child { margin-bottom: 0 }

.mcp-box {
  background: linear-gradient(165deg, rgba(26,26,37,.95), rgba(16,16,24,.98));
  border: 1px solid rgba(99,102,241,.28);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1rem;
  box-shadow:
    0 0 0 1px rgba(255,255,255,.04) inset,
    0 20px 40px rgba(0,0,0,.35),
    0 0 60px rgba(99,102,241,.1);
  margin-top: .25rem;
}
.mcp-box .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .85rem;
}
.mcp-box pre {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--text-muted);
  background: rgba(10,10,15,.65);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .85rem 1rem;
  overflow-x: auto;
  line-height: 1.55;
  margin: 0;
}
.mcp-box code { font-family: inherit; font-size: inherit; color: inherit }

table.vs {
  width: 100%;
  border-collapse: collapse;
  font-size: .93rem;
  margin-top: .25rem;
}
table.vs th, table.vs td {
  text-align: left;
  vertical-align: top;
  padding: .85rem .75rem;
  border-bottom: 1px solid var(--border);
}
table.vs th {
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
}
table.vs td { color: var(--text-muted) }
table.vs td:first-child { color: var(--text); font-weight: 500; width: 22% }
table.vs tbody tr:last-child td { border-bottom: 0 }

.qlist { list-style: none; display: grid; gap: .75rem }
.qlist a, .qlist .held {
  display: block;
  padding: 1.15rem 1.25rem;
  background: linear-gradient(180deg, rgba(26,26,37,.88), rgba(16,16,24,.94));
  border: 1px solid var(--border);
  border-radius: 14px;
  text-decoration: none;
  color: var(--text);
  position: relative;
  overflow: hidden;
}
.qlist a::before, .qlist .held::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(99,102,241,.85), rgba(0,191,165,.45));
}
.qlist a:hover {
  border-color: rgba(99,102,241,.45);
  color: var(--text);
}
.qlist .held {
  color: var(--text-muted);
  border-style: dashed;
}
.qlist .held::before {
  background: var(--border);
}
.qlist .meta {
  display: block;
  margin-top: .35rem;
  font-size: .82rem;
  color: var(--text-muted);
  font-weight: 400;
}

.related { display: grid; gap: .65rem; list-style: none }
.related li {
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(26,26,37,.55);
  font-size: .93rem;
}

.follow { display: grid; gap: 1.15rem }
.follow article {
  padding: 1.05rem 1.15rem;
  background: linear-gradient(180deg, rgba(26,26,37,.88), rgba(16,16,24,.94));
  border: 1px solid var(--border);
  border-radius: 14px;
}
.follow h3 {
  font-size: 1.02rem;
  line-height: 1.35;
  letter-spacing: -.01em;
  margin-bottom: .45rem;
}
.follow p { margin: 0; font-size: .95rem }

@media (max-width: 560px) {
  .hero { padding: 3.25rem 0 2rem }
  h1 { max-width: none }
  table.vs { display: block; overflow-x: auto }
}
