:root {
  color-scheme: dark;
  --ink: #fff4fc;
  --muted: #f0a8d7;
  --cyan: #62f4ff;
  --pink: #ff56cf;
  --violet: #8b57ff;
  --panel: rgba(8, 11, 27, 0.72);
  --border: rgba(255, 255, 255, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 15% 20%, rgba(98, 244, 255, 0.22), transparent 20%),
    radial-gradient(circle at 82% 12%, rgba(255, 86, 207, 0.26), transparent 26%),
    linear-gradient(180deg, #0a0920 0%, #160721 48%, #080914 100%);
  font-family: "Trebuchet MS", "Gill Sans", sans-serif;
}

a {
  color: var(--cyan);
  text-decoration: none;
}

.shell {
  width: min(920px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 2.8rem 0 4rem;
}

.hero {
  position: relative;
  padding: 2rem 0 1rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  color: var(--pink);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.home-link {
  display: inline-flex;
  margin-bottom: 0.8rem;
  color: var(--muted);
}

h1,
h2 {
  margin: 0;
  text-transform: uppercase;
}

h1 {
  font-size: clamp(3rem, 9vw, 5.8rem);
  line-height: 0.9;
  text-shadow:
    0 0 15px rgba(255, 86, 207, 0.38),
    0 0 34px rgba(98, 244, 255, 0.2);
}

.tagline {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

.panel {
  margin-top: 1.3rem;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: 1.4rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.02)),
    var(--panel);
  backdrop-filter: blur(14px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 0 34px rgba(255, 86, 207, 0.11);
}

.intro .copy p,
.prose p {
  line-height: 1.8;
  color: #ffe8fb;
}

.section-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: baseline;
}

.post-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0;
}

.post-list li {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
}

.post-list li:first-child {
  border-top: 0;
  padding-top: 0;
}

.post-list a {
  font-size: 1.2rem;
  color: var(--ink);
}

.meta,
.post-list span {
  color: var(--muted);
  font-size: 0.92rem;
}

@media (max-width: 680px) {
  .shell {
    width: min(100vw - 1rem, 920px);
    padding-top: 1.4rem;
  }

  .panel {
    padding: 1rem;
  }

  .section-head,
  .post-list li {
    flex-direction: column;
    align-items: flex-start;
  }
}
