/* pollockweb terminal-minimal — v1, July 2026 */
:root {
  --bg: #0b1220;
  --bg-raise: #101a2c;
  --bg-inset: #070d17;
  --line: #1e2c44;
  --line-soft: #162033;
  --text: #e4ecf7;
  --text-dim: #9fb3cc;
  --text-faint: #5a6b84;
  --accent: #4aa8ff;
  --amber: #e5b567;
  --blue: #7cc4ff;
  --mono: ui-monospace, "Cascadia Code", "JetBrains Mono", "SF Mono", Menlo, Consolas, monospace;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, Inter, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.wrap { max-width: 860px; margin: 0 auto; padding: 0 24px; }

/* ---------- top bar ---------- */
.topbar {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11, 18, 32, 0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line-soft);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 52px; gap: 16px;
}
.prompt { font-family: var(--mono); font-size: 13px; color: var(--text-faint); white-space: nowrap; }
.prompt b { color: var(--accent); font-weight: 500; }
.topnav { display: flex; gap: 4px; flex-wrap: wrap; }
.topnav a {
  font-family: var(--mono); font-size: 13px; color: var(--text-dim);
  text-decoration: none; padding: 4px 8px; border-radius: 5px;
}
.topnav a:hover { color: var(--text); background: var(--bg-raise); }
.topnav a::before { content: "["; color: var(--text-faint); }
.topnav a::after { content: "]"; color: var(--text-faint); }

/* ---------- hero ---------- */
.hero { padding: 88px 0 64px; border-bottom: 1px solid var(--line-soft); }
.hero .cmd { font-family: var(--mono); font-size: 14px; color: var(--text-faint); margin-bottom: 22px; }
.hero .cmd b { color: var(--accent); font-weight: 500; }
.hero h1 { font-size: 40px; font-weight: 650; letter-spacing: -0.02em; line-height: 1.1; }
.hero .role { font-size: 19px; color: var(--text-dim); margin-top: 10px; }
.hero .tagline {
  font-family: var(--mono); font-size: 15px; color: var(--accent);
  margin-top: 22px;
}
.cursor { display: inline-block; width: 9px; height: 18px; background: var(--accent);
  vertical-align: -3px; margin-left: 4px; animation: blink 1.1s steps(1) infinite; }
@keyframes blink { 50% { opacity: 0; } }
.hero .links { margin-top: 30px; display: flex; gap: 10px; flex-wrap: wrap; }
.hero .links a {
  font-family: var(--mono); font-size: 13px; color: var(--text-dim); text-decoration: none;
  border: 1px solid var(--line); border-radius: 7px; padding: 7px 14px;
}
.hero .links a:hover { color: var(--text); border-color: var(--text-faint); }

/* ---------- sections ---------- */
section { padding: 56px 0; border-bottom: 1px solid var(--line-soft); }
section:last-of-type { border-bottom: none; }
.sec-cmd { font-family: var(--mono); font-size: 13px; color: var(--text-faint); margin-bottom: 8px; }
.sec-cmd b { color: var(--accent); font-weight: 500; }
h2 { font-size: 24px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 22px; }
h3 { font-size: 17px; font-weight: 600; margin: 26px 0 6px; }
p { color: var(--text-dim); margin-bottom: 14px; max-width: 68ch; }
p strong, li strong, li b { color: var(--text); font-weight: 600; }
a { color: var(--blue); }

ul.plain { list-style: none; }
ul.plain > li {
  color: var(--text-dim); padding-left: 22px; position: relative; margin-bottom: 10px;
  max-width: 72ch;
}
ul.plain > li::before {
  content: ">"; position: absolute; left: 0; top: 0;
  font-family: var(--mono); color: var(--accent);
}

.meta { font-family: var(--mono); font-size: 13px; color: var(--text-faint); }

/* ---------- about ---------- */
.about-grid { display: flex; gap: 28px; align-items: flex-start; }
.about-grid img {
  width: 108px; height: 108px; border-radius: 10px; object-fit: cover;
  border: 1px solid var(--line); flex-shrink: 0;
}
@media (max-width: 620px) { .about-grid { flex-direction: column; } }

/* ---------- career ---------- */
.role-block { margin-bottom: 34px; }
.role-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.role-head h3 { margin: 0; }
.role-co { color: var(--text-dim); font-weight: 400; }

/* ---------- skill meters ---------- */
.meters { list-style: none; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px 34px; }
.meters li { font-family: var(--mono); font-size: 13px; color: var(--text-dim); }
.meters .bar { color: var(--accent); letter-spacing: 1px; }
.meters .bar span { color: var(--line); }

/* ---------- cards ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 14px; }
.card {
  background: var(--bg-raise); border: 1px solid var(--line-soft);
  border-radius: 9px; padding: 16px 18px;
}
.card h4 { font-family: var(--mono); font-size: 13px; font-weight: 500; color: var(--accent); margin-bottom: 6px; }
.card p { font-size: 14px; margin: 0; color: var(--text-dim); }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--mono); font-size: 14px; text-decoration: none;
  color: var(--bg); background: var(--accent); border-radius: 7px; padding: 9px 18px;
  font-weight: 600;
}
.btn:hover { filter: brightness(1.1); }
.btn.ghost { color: var(--text-dim); background: none; border: 1px solid var(--line); font-weight: 400; }
.btn.ghost:hover { color: var(--text); border-color: var(--text-faint); }

/* ---------- updates log ---------- */
.log { list-style: none; font-family: var(--mono); font-size: 13.5px; }
.log li { padding: 7px 0; border-bottom: 1px dashed var(--line-soft); color: var(--text-dim); }
.log li:last-child { border-bottom: none; }
.log .d { color: var(--amber); margin-right: 10px; }
.log .ok { color: var(--accent); margin-right: 8px; }

/* ---------- footer ---------- */
footer { padding: 40px 0 56px; }
footer .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
footer, footer p, footer a { font-family: var(--mono); font-size: 12.5px; color: var(--text-faint); }
footer a { text-decoration: none; }
footer a:hover { color: var(--text-dim); }
.ss-visitor-count p { margin: 0; }

::selection { background: #1c3a5e; color: var(--text); }
