/* markku.me — personal intro page.
   Shares the dark-theme aesthetic of the /sites family (vakiluku, wattic, …). */

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

body {
  font-family: system-ui, sans-serif;
  background: #0f1117;
  color: #dde;
  min-height: 100vh;
  line-height: 1.55;
}

main {
  max-width: 760px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem 4rem;
}

header.intro { margin-bottom: 2.5rem; }

h1 { font-size: 2rem; margin-bottom: 0.6rem; color: #fff; }

.lead { color: #c8d0e0; font-size: 1.05rem; }
.lead p + p { margin-top: 0.9rem; }

h2 {
  font-size: 0.8rem;
  margin: 2.75rem 0 1rem;
  color: #8a98b0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

/* Site list */
.sites { display: grid; gap: 0.9rem; }

.site {
  display: block;
  background: #1a1d26;
  border: 1px solid #2a2d3a;
  border-radius: 10px;
  padding: 1.05rem 1.25rem;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, background 0.15s;
}
a.site:hover { border-color: #3a4a6a; background: #1f2330; }

.site-head {
  display: flex;
  align-items: baseline;
  gap: 0.65rem;
  flex-wrap: wrap;
}
.site-name { font-weight: 700; font-size: 1.05rem; color: #eef; }
a.site:hover .site-name { color: #fff; }
.site-domain { font-size: 0.85rem; color: #5fa0e8; }
.site-desc { color: #9aa6ba; font-size: 0.92rem; margin-top: 0.3rem; }

.tag {
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.12rem 0.5rem;
  border-radius: 999px;
  border: 1px solid #3a4255;
  color: #8a98b0;
}
.tag-soon { color: #d6a85a; border-color: #5a4a2a; }
.tag-dev  { color: #7aa6c8; border-color: #2a4250; }

footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid #232633;
  color: #667;
  font-size: 0.88rem;
}
footer a { color: #5fa0e8; text-decoration: none; }
footer a:hover { text-decoration: underline; }
