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

body {
  background-color: #000000;
  color: #c8d4dc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  max-width: 42rem;
  margin: 0 auto;
  padding: 2rem;
}

a { color: #00CED1; text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible { outline: 2px solid #00CED1; outline-offset: 2px; border-radius: 2px; }

::selection { background: #FF1493; color: #000000; }

h1, h2, h3, h4, h5, h6 {
  color: #FF1493;
  font-family: 'JetBrains Mono', monospace;
}

h1 { font-size: 2em; margin-bottom: 0; }
h1 a { color: #FF1493; }
h1 a:hover { text-decoration: none; }

h2 { font-size: 1.4em; margin-top: 1.8rem; margin-bottom: 0.6em; }

header { margin-bottom: 1.2rem; }

.logo {
  float: right;
  width: 128px;
  margin: 0 0 10px 10px;
}

.tagline {
  color: #00CED1;
  font-size: 1.3em;
  font-style: italic;
  margin-bottom: 1.5em;
}


main p { margin-bottom: 1em; }

.cyan { color: #00CED1; }
.pink { color: #FF1493; }
.small { font-size: 0.8em; color: #757f8a; }
.blurb { font-size: 0.88em; color: #8892a0; }

ul { margin-left: 1.5em; margin-bottom: 1em; }
li { margin-bottom: 0.8em; }

.project {
  background: #0a0a14;
  border: 1px solid #1a1a2e;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.project-logo {
  float: right;
  width: 56px;
  height: 56px;
  margin: 0 0 0.5rem 1rem;
  border-radius: 8px;
}

.project h3 { margin-bottom: 0.5rem; }
.project h3 a { color: #E0FFFF; }
.project h3 a:hover { color: #00CED1; }

.project-desc { margin-bottom: 0.8rem; }

.project-status {
  font-size: 0.9em;
  color: #8892a0;
  margin-bottom: 0;
}

.project-status em { color: #00CED1; }


.manifesto-comment {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85em;
  font-style: italic;
  margin-top: -0.8em;
  margin-bottom: 1.5em;
}

.manifesto-comment a {
  color: #7d8793;
  text-decoration: none;
  transition: color 0.2s ease;
}

.manifesto-comment a:hover {
  color: #8B949E;
}

/* Subtle entrance animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

header, main > div > *, footer {
  animation: fadeUp 0.4s ease both;
}

header { animation-delay: 0s; }
main > div > *:nth-child(1) { animation-delay: 0.04s; }
main > div > *:nth-child(2) { animation-delay: 0.08s; }
main > div > *:nth-child(3) { animation-delay: 0.12s; }
main > div > *:nth-child(4) { animation-delay: 0.16s; }
main > div > *:nth-child(5) { animation-delay: 0.2s; }
main > div > *:nth-child(6) { animation-delay: 0.24s; }
main > div > *:nth-child(7) { animation-delay: 0.28s; }
main > div > *:nth-child(8) { animation-delay: 0.32s; }
main > div > *:nth-child(9) { animation-delay: 0.36s; }
main > div > *:nth-child(10) { animation-delay: 0.4s; }
footer { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
  header, main > div > *, footer { animation: none; }
}

footer {
  border-top: 1px solid #1a1a2e;
  margin-top: 3em;
  padding-top: 1em;
  text-align: center;
  font-style: italic;
  color: #00CED1;
  font-size: 0.9em;
}

/* Mobile responsive */
@media (max-width: 600px) {
  body { padding: 1.2rem; }
  h1 { font-size: 1.5em; }
  .logo { width: 80px; }
  .tagline { font-size: 1.1em; }
  .project { padding: 1rem; }
  .project-logo { width: 40px; height: 40px; }
}
