/* seek:null — shared styles. Tokens: branding/theme/tokens.css. Fonts: branding/theme/fonts */
@font-face { font-family: "Zen Dots"; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/ZenDots-400.woff2) format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: normal; font-weight: 100 700; font-display: swap; src: url(/fonts/IBMPlexSans-var.woff2) format("woff2"); }
@font-face { font-family: "IBM Plex Sans"; font-style: italic; font-weight: 400; font-display: swap; src: url(/fonts/IBMPlexSans-400-italic.woff2) format("woff2"); }
@font-face { font-family: "IBM Plex Mono"; font-style: normal; font-weight: 400; font-display: swap; src: url(/fonts/IBMPlexMono-400.woff2) format("woff2"); }

:root {
  color-scheme: light dark;
  --bg: #ffffff; --fg: #111111; --muted: #6b6b6b; --rule: #e6e6e6; --tile: #f2f2f2;
  --linkedin: #0a66c2;
  --font-display: "Zen Dots", "IBM Plex Sans", sans-serif;
  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #0a0a0a; --fg: #f2f2f2; --muted: #9a9a9a; --rule: #262626; --tile: #1a1a1a; }
}

body {
  margin: 0; padding: 3rem 1.25rem;
  font: 16px/1.6 var(--font-body);
  display: flex; justify-content: center;
  background: var(--bg); color: var(--fg);
  -webkit-font-smoothing: antialiased;
}
main { max-width: 36rem; width: 100%; }
a { color: var(--fg); text-decoration: underline; text-decoration-color: var(--muted); text-underline-offset: 2px; }
a:hover { text-decoration-color: var(--fg); }
p { margin: 0 0 1rem; }

/* home hero */
.hero { display: flex; align-items: center; justify-content: center; gap: 1.25rem; padding: 1rem 0 2.25rem; }
.mark { width: 80px; height: 80px; border-radius: 18px; flex: none; box-shadow: 0 0 0 1px var(--rule); }
.hero h1 { font-family: var(--font-display); font-weight: 400; font-size: 2.3rem; line-height: 1.1; margin: 0; letter-spacing: .01em; }
.tagline { font-style: italic; color: var(--muted); margin: .35rem 0 0; font-size: 1.05rem; }
@media (max-width: 460px) {
  .hero { flex-direction: column; text-align: center; gap: .9rem; }
  .hero h1 { font-size: 2rem; }
}

/* handle row */
.social { display: flex; justify-content: center; flex-wrap: wrap; gap: .75rem 1.75rem; padding: 0 0 2.25rem; border-bottom: 1px solid var(--rule); }
.social a { display: inline-flex; align-items: center; gap: .5rem; text-decoration: none; font-size: .95rem; }
.social a:hover { text-decoration: underline; }
.social svg { width: 20px; height: 20px; fill: currentColor; flex: none; }
.social .linkedin svg { fill: var(--linkedin); }

/* project list */
ul { list-style: none; padding: 0; margin: .5rem 0 0; }
li { display: flex; gap: 1rem; padding: 1.15rem 0; border-bottom: 1px solid var(--rule); }
li p { margin: .15rem 0 0; }
.tile { width: 56px; height: 56px; border-radius: 14px; background: var(--tile); flex: none; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.tile img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tile.emoji { font-size: 1.6rem; }
b { font-weight: 600; }
.meta { font-family: var(--font-mono); font-size: .78rem; color: var(--muted); margin-top: .4rem; }

/* inner pages (about) */
.crumb { font-family: var(--font-display); font-size: 1rem; margin: 0 0 2.5rem; }
.crumb a { text-decoration: none; color: var(--muted); }
.crumb a:hover { color: var(--fg); }
.page h1 { font-size: 2rem; line-height: 1.15; margin: 0 0 .25rem; letter-spacing: -.01em; }
.page .tagline { margin: 0 0 1.5rem; }
.page .social { justify-content: flex-start; padding-bottom: 2rem; margin-bottom: 1.75rem; }
h2 { font-family: var(--font-mono); font-size: .78rem; font-weight: 400; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin: 2.25rem 0 .25rem; }
.roles li { display: block; padding: .9rem 0; }
.roles .meta { margin: .1rem 0 .25rem; }
.roles p { margin: 0; }

footer { margin-top: 2.5rem; color: var(--muted); font-size: .85rem; text-align: center; }
footer a { color: var(--muted); }
footer a:hover { color: var(--fg); }
