/* autocomp landing — terminal-native, one accent, no slop */
:root {
  --bg: #0c0e12;
  --panel: #12151c;
  --line: #1f2430;
  --ink: #e8eaf0;
  --dim: #9aa3b5;
  --accent: #5ee8a4;      /* phosphor green */
  --accent-ink: #0a2416;
  --mono: "SFMono-Regular", ui-monospace, "JetBrains Mono", Menlo, Consolas, monospace;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); line-height: 1.6; }
.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
code { font-family: var(--mono); font-size: 0.92em; color: var(--accent); }

/* header */
.site-head { border-bottom: 1px solid var(--line); position: sticky; top: 0; background: rgba(12,14,18,0.92); backdrop-filter: blur(8px); z-index: 10; }
.site-head .wrap { display: flex; align-items: center; justify-content: space-between; height: 56px; }
.mark { font-family: var(--mono); font-weight: 600; letter-spacing: 0.02em; }
.cursor { color: var(--accent); animation: blink 1.2s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.head-nav a { font-family: var(--mono); font-size: 13px; color: var(--dim); margin-left: 20px; }
.head-nav a:hover { color: var(--accent); text-decoration: none; }

/* hero */
.hero { padding: 88px 0 72px; }
.eyebrow { font-family: var(--mono); font-size: 13px; color: var(--accent); margin-bottom: 18px; }
h1 { font-size: clamp(34px, 6vw, 56px); line-height: 1.08; letter-spacing: -0.02em; font-weight: 700; }
.lede { max-width: 640px; margin-top: 20px; color: var(--dim); font-size: 18px; }
.hero-cta { margin-top: 32px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn { display: inline-block; background: var(--accent); color: var(--accent-ink); font-weight: 600; font-family: var(--mono); font-size: 14px; padding: 12px 20px; border-radius: 6px; }
.btn:hover { text-decoration: none; filter: brightness(1.08); }
.cta-note { font-size: 13px; color: var(--dim); font-family: var(--mono); }

/* sections */
section { padding: 64px 0; border-top: 1px solid var(--line); }
h2 { font-size: 26px; letter-spacing: -0.01em; margin-bottom: 10px; }
.section-lede { color: var(--dim); max-width: 640px; margin-bottom: 32px; }

/* how — tick list */
.ticks { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 14px; }
.ticks li { display: flex; gap: 14px; background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 18px; }
.ticks code { color: var(--accent); font-size: 13px; padding-top: 3px; }
.ticks h3 { font-size: 15px; margin-bottom: 4px; }
.ticks p { font-size: 14px; color: var(--dim); }

/* vs table */
.vs-table { border: 1px solid var(--line); border-radius: 8px; overflow: hidden; font-size: 14px; }
.vs-row { display: grid; grid-template-columns: 1.1fr 1.2fr 1.4fr; border-top: 1px solid var(--line); }
.vs-row:first-child { border-top: none; }
.vs-row > span { padding: 12px 16px; }
.vs-row > span:first-child { color: var(--dim); font-family: var(--mono); font-size: 13px; }
.vs-head { background: var(--panel); font-weight: 600; }
.vs-row .ours { background: rgba(94, 232, 164, 0.05); border-left: 1px solid var(--line); }
.vs-head .ours { color: var(--accent); }
.vs-note { margin-top: 16px; font-size: 13px; color: var(--dim); font-style: italic; max-width: 640px; }

/* directory */
.dir-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 14px; }
.dir-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 20px; }
.dir-add { border-style: dashed; opacity: 0.75; }
.dir-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.dir-name { font-weight: 600; font-size: 16px; }
.dir-stage { font-family: var(--mono); font-size: 12px; color: var(--accent); background: rgba(94,232,164,0.08); padding: 2px 8px; border-radius: 999px; }
.dir-line { font-size: 14px; color: var(--dim); margin-bottom: 14px; }
.dir-meta { display: flex; justify-content: space-between; font-family: var(--mono); font-size: 12px; color: var(--dim); }

/* footer */
.site-foot { border-top: 1px solid var(--line); padding: 36px 0 48px; }
.site-foot p { font-size: 14px; color: var(--dim); }
.foot-honest { margin-top: 8px; font-family: var(--mono); font-size: 12.5px; color: var(--accent); opacity: 0.8; }

@media (max-width: 640px) {
  .vs-row { grid-template-columns: 1fr; }
  .vs-row > span:first-child { padding-bottom: 0; }
  .vs-head { display: none; }
  .vs-row .ours { border-left: none; }
  .vs-row .ours::before { content: "autocomp: "; color: var(--accent); font-family: var(--mono); font-size: 12px; }
  .vs-row > span:nth-child(2)::before { content: "hosted: "; color: var(--dim); font-family: var(--mono); font-size: 12px; }
}

/* get — self-hosted vs run-by-us */
.get-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 16px; }
.get-card { background: var(--panel); border: 1px solid var(--line); border-radius: 8px; padding: 24px; display: flex; flex-direction: column; }
.get-managed { border-color: rgba(94, 232, 164, 0.35); box-shadow: 0 0 0 1px rgba(94,232,164,0.12); }
.get-top { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.get-top h3 { font-size: 18px; }
.get-price { font-family: var(--mono); font-size: 12px; color: var(--accent); }
.get-list { list-style: none; margin-bottom: 20px; }
.get-list li { font-size: 14px; color: var(--dim); padding: 5px 0 5px 20px; position: relative; }
.get-list li::before { content: "▸"; position: absolute; left: 2px; color: var(--accent); font-size: 12px; }
.capture { display: flex; gap: 8px; margin-top: auto; flex-wrap: wrap; }
.capture input { flex: 1 1 180px; background: var(--bg); border: 1px solid var(--line); border-radius: 6px; color: var(--ink); padding: 11px 12px; font-size: 14px; font-family: var(--mono); }
.capture input:focus { outline: none; border-color: var(--accent); }
.capture .btn { padding: 11px 16px; font-size: 13px; border: none; cursor: pointer; }
.btn-ghost { background: transparent; color: var(--accent); border: 1px solid var(--accent) !important; }
.get-note { margin-top: 12px; font-size: 12.5px; color: var(--dim); font-family: var(--mono); }
.form-done { font-family: var(--mono); font-size: 13.5px; color: var(--accent); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.get-repo { margin-bottom: 12px; text-align: center; }
