/* CHYNJ — shared styles (Linear-inspired: monochrome, restrained, type-driven) */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:           #08080A;
  --surface:      #0F0F11;
  --surface-2:    #16161A;
  --surface-3:    #1C1C21;
  --border:       #1F1F25;
  --border-2:     #2A2A32;
  --border-hover: #3A3A45;

  --text:         #FAFAFA;
  --text-2:       #A1A1AA;
  --text-3:       #5C5C66;
  --text-4:       #3F3F46;

  --accent:       #5B9DAD;
  --accent-h:     #6FB0C0;
  --accent-fade:  rgba(91,157,173,0.08);

  --positive:     #4ADE80;
  --warning:      #F4B952;

  --radius:       8px;
  --radius-lg:    12px;
  --radius-xl:    16px;

  --font-sans:    "Inter", -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", system-ui, sans-serif;
  --font-mono:    "SF Mono", "JetBrains Mono", "Fira Code", ui-monospace, monospace;

  --maxw:         1120px;
}

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  font-feature-settings: "ss01", "cv11";
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; }

::selection { background: var(--accent); color: #fff; }

/* ─── Grid pattern bg accent (subtle) ─────────────────────────────────── */
.grid-bg {
  position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.018) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.018) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 30%, transparent 80%);
}

/* ─── Container ───────────────────────────────────────────────────────── */
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
@media (max-width: 640px) { .container { padding: 0 20px; } }

/* ─── Nav ─────────────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 50;
  height: 60px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 32px;
  background: rgba(8,8,10,0.72);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-mark {
  flex-shrink: 0;
  display: block;
  width: 28px; height: 28px;
  border-radius: 6px;
}
.nav-logo .mark {
  font-family: var(--font-sans);
  font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--text);
}
.nav-logo .mark .slash { color: var(--text-3); margin: 0 4px; font-weight: 400; }
.nav-logo .mark .product { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 13.5px; font-weight: 500; color: var(--text-2);
  transition: color .15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--text); color: var(--bg);
  padding: 7px 14px; border-radius: 6px;
  font-size: 13px; font-weight: 600; letter-spacing: -0.1px;
  border: 1px solid var(--text);
  transition: opacity .15s ease;
}
.nav-cta:hover { opacity: 0.88; }

@media (max-width: 720px) {
  .nav-links { display: none; }
  nav { padding: 0 20px; }
}

/* ─── Hero ────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 120px 32px 100px;
  text-align: left;
  border-bottom: 1px solid var(--border);
}
.hero .container { max-width: 960px; }
.hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; color: var(--text-2);
  font-family: var(--font-mono);
  letter-spacing: 0;
  margin-bottom: 32px;
}
.hero .eyebrow .dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--positive);
  box-shadow: 0 0 0 4px rgba(74,222,128,0.12);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.4; } }

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 24px;
  max-width: 16ch;
}
.hero h1 .quiet { color: var(--text-3); font-weight: 700; }
.hero p.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-2);
  line-height: 1.55;
  max-width: 56ch;
  margin-bottom: 40px;
}
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-note { margin-top: 24px; font-size: 13px; color: var(--text-3); font-family: var(--font-mono); }

/* ─── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 11px 20px;
  border-radius: 7px;
  font-size: 14px; font-weight: 600; letter-spacing: -0.1px;
  transition: all .15s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--text); color: var(--bg);
  border-color: var(--text);
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }
.btn-ghost {
  background: transparent; color: var(--text-2);
  border-color: var(--border-2);
}
.btn-ghost:hover { color: var(--text); border-color: var(--border-hover); }
.btn-accent {
  background: var(--accent); color: #fff;
  border-color: var(--accent);
}
.btn-accent:hover { background: var(--accent-h); border-color: var(--accent-h); }
.btn-lg { padding: 13px 24px; font-size: 15px; }

/* ─── Sections ────────────────────────────────────────────────────────── */
section { padding: 100px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
.section-head { max-width: 720px; margin-bottom: 56px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow-label {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--accent); font-weight: 500;
  margin-bottom: 16px;
  display: inline-block;
}
.section-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.section-title .quiet { color: var(--text-3); }
.section-lede {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.6;
  max-width: 58ch;
}
.section-head.center .section-lede { margin-left: auto; margin-right: auto; }

/* ─── Product cards (CHYNJ landing) ────────────────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 880px) { .product-grid { grid-template-columns: 1fr; } }
.product-card {
  background: var(--surface);
  padding: 40px 32px 36px;
  display: flex; flex-direction: column;
  position: relative;
  transition: background .18s ease;
  min-height: 340px;
}
.product-card:hover { background: var(--surface-2); }
.product-card .wordmark {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.1px;
  color: var(--text-3);
  margin-bottom: 28px;
  font-family: var(--font-mono);
}
.product-card .wordmark strong { color: var(--text); font-weight: 600; }
.product-card h3 {
  font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em;
  margin-bottom: 10px;
}
.product-card p.desc {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
  margin-bottom: 32px; flex-grow: 1;
}
.product-card .arrow {
  font-size: 13px; font-weight: 600; color: var(--text);
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .18s ease;
}
.product-card:hover .arrow { gap: 10px; }
.product-card .arrow .accent { color: var(--accent); }

/* ─── Feature rows (replaces dense card grid) ─────────────────────────── */
.feature-rows {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
@media (max-width: 720px) { .feature-rows { grid-template-columns: 1fr; } }
.feature-row {
  background: var(--bg);
  padding: 36px 32px;
}
.feature-row .num {
  font-family: var(--font-mono);
  font-size: 12px; color: var(--text-3);
  margin-bottom: 16px;
}
.feature-row h4 {
  font-size: 1rem; font-weight: 600; letter-spacing: -0.01em;
  margin-bottom: 8px; color: var(--text);
}
.feature-row p {
  font-size: 14px; color: var(--text-2); line-height: 1.6;
}

/* ─── Split layout (text + visual) ────────────────────────────────────── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 880px) { .split { grid-template-columns: 1fr; gap: 40px; } }
.split.reverse .split-visual { order: -1; }
@media (max-width: 880px) { .split.reverse .split-visual { order: 0; } }
.split-text h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  font-weight: 700; letter-spacing: -0.025em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.split-text p {
  font-size: 15px; color: var(--text-2); line-height: 1.65;
}
.split-text ul {
  list-style: none; margin-top: 24px; display: flex; flex-direction: column; gap: 10px;
}
.split-text ul li {
  display: flex; gap: 12px; font-size: 14px; color: var(--text-2);
}
.split-text ul li::before {
  content: ""; display: inline-block;
  width: 14px; height: 1px; background: var(--text-3); margin-top: 11px; flex-shrink: 0;
}

/* ─── Mock visuals (refined) ──────────────────────────────────────────── */
.mock {
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02);
}
.mock-header {
  background: var(--surface-2);
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.mock-header .dots { display: flex; gap: 5px; }
.mock-header .dots span {
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--surface-3);
}
.mock-header .title {
  font-size: 12px; color: var(--text-3);
  font-family: var(--font-mono);
  margin-left: auto;
}
.mock-body { padding: 24px; font-family: var(--font-mono); font-size: 12.5px; line-height: 1.8; }

/* Editor mock */
.code-line { color: var(--text-2); }
.code-line .ln { display: inline-block; width: 24px; color: var(--text-4); user-select: none; }
.kw  { color: #C792EA; }
.fn  { color: #82AAFF; }
.str { color: #C3E88D; }
.cmt { color: var(--text-3); font-style: italic; }
.num { color: #F78C6C; }

/* Trace bars */
.trace { display: flex; flex-direction: column; gap: 8px; padding: 24px; }
.trace-row {
  display: grid; grid-template-columns: 100px 1fr 56px;
  gap: 12px; align-items: center; font-family: var(--font-mono); font-size: 11.5px;
}
.trace-row .label { color: var(--text-2); }
.trace-row .bar {
  background: var(--surface-2); border-radius: 2px; height: 14px; position: relative; overflow: hidden;
}
.trace-row .bar > i {
  position: absolute; top: 0; bottom: 0; background: var(--accent);
  display: block;
}
.trace-row .time { color: var(--text-3); text-align: right; }

/* Graph mock */
.graph {
  background: var(--bg);
  aspect-ratio: 4/3;
  padding: 20px;
  position: relative;
}
.graph svg { width: 100%; height: 100%; }

/* ─── Pricing ─────────────────────────────────────────────────────────── */
.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}
@media (max-width: 880px) { .pricing { grid-template-columns: 1fr; } }
.tier {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex; flex-direction: column;
  position: relative;
  transition: border-color .18s ease;
}
.tier:hover { border-color: var(--border-hover); }
.tier.featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, var(--accent-fade) 0%, var(--surface) 100%);
}
.tier .badge {
  position: absolute; top: -10px; left: 28px;
  background: var(--accent); color: #fff;
  font-family: var(--font-mono);
  font-size: 10.5px; letter-spacing: 0.5px; text-transform: uppercase;
  padding: 4px 10px; border-radius: 100px;
  font-weight: 600;
}
.tier .name {
  font-size: 13px; color: var(--text-2); font-weight: 600;
  margin-bottom: 20px;
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.tier .price {
  font-size: 2.5rem; font-weight: 700; letter-spacing: -0.04em; line-height: 1;
  color: var(--text);
  display: flex; align-items: baseline; gap: 4px;
}
.tier .price .currency { font-size: 1rem; color: var(--text-2); font-weight: 600; }
.tier .price .per { font-size: 0.9rem; color: var(--text-2); font-weight: 500; margin-left: 6px; }
.tier .price-note { font-size: 12.5px; color: var(--text-3); margin-top: 6px; margin-bottom: 24px; }
.tier .summary { font-size: 14px; color: var(--text-2); line-height: 1.55; margin-bottom: 28px; }
.tier .features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex-grow: 1; }
.tier .features li {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13.5px; color: var(--text-2);
}
.tier .features li::before {
  content: ""; display: inline-block;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--surface-3); border: 1px solid var(--border-2);
  margin-top: 4px; flex-shrink: 0;
  position: relative;
}
.tier .features li.on::before { background: var(--accent); border-color: var(--accent); }
.tier .features li.bundle::before { background: var(--positive); border-color: var(--positive); }
.tier .features li small { color: var(--text-3); font-size: 12px; margin-top: 2px; display: block; }

/* ─── CTA banner ──────────────────────────────────────────────────────── */
.cta {
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 64px 40px;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 80% at 50% 100%, var(--accent-fade) 0%, transparent 70%),
    var(--surface);
}
.cta h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 700; letter-spacing: -0.025em; margin-bottom: 16px; }
.cta p { color: var(--text-2); margin-bottom: 32px; font-size: 15px; max-width: 48ch; margin-left: auto; margin-right: auto; line-height: 1.6; }

/* ─── Footer ──────────────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--border);
  padding: 56px 32px 40px;
  background: var(--bg);
}
.footer-grid {
  max-width: var(--maxw); margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
.footer-brand .mark {
  font-size: 16px; font-weight: 700; letter-spacing: -0.3px;
  color: var(--text); display: block; margin-bottom: 8px;
}
.footer-brand p { font-size: 13px; color: var(--text-3); line-height: 1.6; max-width: 32ch; }
.footer-col h5 {
  font-family: var(--font-mono); font-size: 11px; font-weight: 600;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 0.6px;
  margin-bottom: 16px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13.5px; color: var(--text-2); transition: color .15s ease; }
.footer-col a:hover { color: var(--text); }

.footer-bottom {
  max-width: var(--maxw); margin: 0 auto;
  padding-top: 32px; border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 16px;
}
.footer-bottom p { font-size: 12.5px; color: var(--text-3); }
.footer-bottom .legal-links { display: flex; gap: 20px; }
.footer-bottom .legal-links a { font-size: 12.5px; color: var(--text-3); transition: color .15s ease; }
.footer-bottom .legal-links a:hover { color: var(--text-2); }

/* ─── Tiny chips / tags ────────────────────────────────────────────────── */
.tag {
  display: inline-flex; align-items: center;
  font-family: var(--font-mono); font-size: 11px;
  padding: 3px 8px; border-radius: 4px;
  background: var(--surface-2); color: var(--text-2);
  border: 1px solid var(--border);
}
.tag.accent { background: var(--accent-fade); color: var(--accent); border-color: rgba(91,157,173,0.18); }
.tag.positive { background: rgba(74,222,128,0.08); color: var(--positive); border-color: rgba(74,222,128,0.18); }

/* ─── Misc ────────────────────────────────────────────────────────────── */
.compat-strip {
  padding: 24px 32px;
  display: flex; align-items: center; gap: 16px;
  flex-wrap: wrap; justify-content: center;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.compat-strip .label {
  font-family: var(--font-mono); font-size: 11px;
  color: var(--text-3); text-transform: uppercase; letter-spacing: 0.5px;
}

/* ─── Beta version tag ────────────────────────────────────────────────── */
.beta-tag {
  display: inline-flex; align-items: center; gap: 5px;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(244,185,82,0.10);
  color: #F4B952;
  border: 1px solid rgba(244,185,82,0.25);
  text-transform: uppercase;
  vertical-align: middle;
}
.beta-tag::before {
  content: ''; width: 5px; height: 5px; border-radius: 50%; background: #F4B952;
}

/* ─── Store / coming-soon badges (Konnect, Konvertex) ─────────────────── */
.store-row {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--surface); color: var(--text);
  border: 1px solid var(--border-2);
  padding: 12px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: border-color .15s ease, background .15s ease;
  min-width: 200px;
}
.store-badge:hover { border-color: var(--border-hover); background: var(--surface-2); }
.store-badge .icon {
  width: 28px; height: 28px; flex-shrink: 0;
  color: var(--text);
}
.store-badge .text { display: flex; flex-direction: column; line-height: 1.25; }
.store-badge .text .small {
  font-size: 10.5px; color: var(--text-3);
  font-family: var(--font-mono);
  text-transform: uppercase; letter-spacing: 0.5px;
}
.store-badge .text .big {
  font-size: 15px; font-weight: 700; letter-spacing: -0.2px;
  color: var(--text);
}
.store-badge.disabled { opacity: 0.85; cursor: pointer; }
.store-badge .status {
  margin-left: auto;
  font-family: var(--font-mono); font-size: 10px; font-weight: 600;
  color: var(--warning); letter-spacing: 0.4px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 4px;
  background: rgba(244,185,82,0.10);
  border: 1px solid rgba(244,185,82,0.22);
  white-space: nowrap;
}

/* ─── Coming-soon download tiles (Konvertex desktop) ──────────────────── */
.dl-coming {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color .15s ease, background .15s ease;
}
.dl-coming:hover { border-color: var(--border-hover); background: var(--surface-2); }
.dl-coming .os-label {
  font-size: 14px; font-weight: 700; letter-spacing: -0.2px;
  color: var(--text); margin-bottom: 4px;
}
.dl-coming .os-sub {
  font-family: var(--font-mono); font-size: 11.5px;
  color: var(--text-3); margin-bottom: 16px;
}
.dl-coming .coming-pill {
  display: inline-block;
  font-family: var(--font-mono); font-size: 10.5px; font-weight: 600;
  color: var(--warning);
  background: rgba(244,185,82,0.10);
  border: 1px solid rgba(244,185,82,0.22);
  padding: 4px 10px; border-radius: 4px;
  letter-spacing: 0.4px; text-transform: uppercase;
}

/* ─── Privacy notice banner (injected by /assets/site.js) ─────────────── */
.privacy-notice {
  position: fixed;
  left: 20px; right: 20px; bottom: 20px;
  z-index: 90;
  background: var(--surface);
  border: 1px solid var(--border-2);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.02);
  max-width: 640px;
  margin: 0 auto;
  transform: translateY(140%);
  opacity: 0;
  transition: transform .28s cubic-bezier(.2,.8,.2,1), opacity .28s ease;
}
.privacy-notice.pn-visible { transform: translateY(0); opacity: 1; }
.privacy-notice.pn-dismissed { transform: translateY(140%); opacity: 0; }
.privacy-notice .pn-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 16px 14px 20px;
}
.privacy-notice p {
  flex: 1;
  font-size: 13px; line-height: 1.55;
  color: var(--text-2);
  margin: 0;
}
.privacy-notice p strong { color: var(--text); font-weight: 600; }
.privacy-notice p a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
  transition: border-color .15s ease;
}
.privacy-notice p a:hover { border-bottom-color: var(--accent); }
.privacy-notice .pn-dismiss {
  flex-shrink: 0;
  background: var(--text); color: var(--bg);
  border: 1px solid var(--text);
  padding: 8px 16px;
  border-radius: 6px;
  font-size: 12.5px; font-weight: 600;
  font-family: var(--font-sans);
  cursor: pointer;
  transition: opacity .15s ease;
}
.privacy-notice .pn-dismiss:hover { opacity: 0.88; }
@media (max-width: 560px) {
  .privacy-notice { left: 12px; right: 12px; bottom: 12px; }
  .privacy-notice .pn-inner { flex-direction: column; align-items: stretch; gap: 12px; padding: 16px; }
  .privacy-notice .pn-dismiss { width: 100%; padding: 10px; }
}

/* ─── Prose (Privacy / Terms) ─────────────────────────────────────────── */
.prose {
  max-width: 720px; margin: 0 auto;
  padding: 80px 32px 120px;
  color: var(--text-2);
  font-size: 15px; line-height: 1.7;
}
.prose h1 {
  font-size: 2.5rem; color: var(--text); font-weight: 700; letter-spacing: -0.03em;
  margin-bottom: 8px;
}
.prose .updated { font-family: var(--font-mono); font-size: 12px; color: var(--text-3); margin-bottom: 48px; }
.prose h2 {
  font-size: 1.25rem; color: var(--text); font-weight: 600; letter-spacing: -0.01em;
  margin: 48px 0 16px;
  padding-top: 24px; border-top: 1px solid var(--border);
}
.prose h2:first-of-type { padding-top: 0; border-top: none; margin-top: 0; }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 0 0 20px 24px; }
.prose ul li { margin-bottom: 8px; }
.prose a { color: var(--accent); text-decoration: none; border-bottom: 1px solid transparent; transition: border-color .15s ease; }
.prose a:hover { border-bottom-color: var(--accent); }
.prose strong { color: var(--text); font-weight: 600; }
.prose code { font-family: var(--font-mono); font-size: 0.9em; background: var(--surface-2); padding: 2px 6px; border-radius: 4px; color: var(--text); }
