/* changelog.css — page-specific styles for changelog/index.html */

/* ── CURSOR ── */




/* ── NAV ── */











/* ── HAMBURGER ── */






/* ── MOBILE MENU ── */









/* ── PAGE LAYOUT ── */
main { padding: 9rem 3rem 6rem; max-width: 1100px; margin: 0 auto; }

.page-eyebrow {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue);
  margin-bottom: 1.25rem;
}
.page-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 400; line-height: 1.05; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
}
.page-title em { font-style: italic; color: var(--blue); }
.page-sub {
  font-size: 1.1rem; color: var(--white-80);
  max-width: 640px; line-height: 1.55;
}
.page-sub a { color: var(--green); text-decoration: none; border-bottom: 1px dotted var(--green-dim); }
.page-sub a:hover { color: var(--green2); }

/* ── SUMMARY (single line) ── */
.summary {
  margin-top: 2.5rem;
  display: flex; align-items: center; flex-wrap: wrap; gap: 0.5rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.08em;
  color: var(--white-60);
  text-transform: uppercase;
}
.summary .accent { color: var(--blue); }
.summary .sep { color: var(--white-20); }
.summary .arrow { color: var(--white-40); margin: 0 0.15rem; }
.summary .muted { color: var(--white-40); margin-left: 0.15rem; }
.summary-meta { flex: 1 1 auto; }
.bulk-toggle {
  margin-left: auto;
  display: flex; gap: 0.5rem;
  font-family: 'DM Mono', monospace;
}
.bulk-toggle button {
  background: transparent;
  border: 0.5px solid var(--border-bright);
  color: var(--white-60);
  font-family: inherit;
  font-size: 0.65rem; letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}
.bulk-toggle button:hover { color: var(--white); border-color: var(--blue); background: var(--blue-dim); }

/* ── REPO LIST ── */
.repo-list { margin-top: 4rem; display: flex; flex-direction: column; gap: 1.5rem; }

.repo {
  background: var(--bg2);
  border: 0.5px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s;
}
.repo:hover { border-color: var(--border-bright); }

.repo-head {
  padding: 1.4rem 1.8rem;
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
  border-bottom: 0.5px solid var(--border);
  background: linear-gradient(180deg, rgba(91,138,255,0.04), transparent);
  cursor: pointer;
  user-select: none;
  transition: background 0.2s;
}
.repo-head:hover { background: linear-gradient(180deg, rgba(91,138,255,0.10), rgba(91,138,255,0.02)); }
.repo-head:focus-visible { outline: 2px solid var(--blue); outline-offset: -2px; }
.repo-toggle {
  width: 11px; height: 11px;
  color: var(--white-40);
  transition: transform 0.25s ease;
  flex-shrink: 0;
}
.repo.collapsed .repo-toggle { transform: rotate(-90deg); }
.repo.collapsed .repo-head { border-bottom-color: transparent; }
.repo-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
}
.repo-kind {
  font-family: 'DM Mono', monospace;
  font-size: 0.6rem; letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.55rem;
  border-radius: 3px;
  background: var(--blue-dim);
  color: var(--blue2);
}
.repo-kind.org { background: rgba(167,139,250,0.10); color: var(--purple); }
.repo-count {
  margin-left: auto;
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: var(--white-60);
  text-transform: uppercase;
}
.repo-last {
  font-family: 'DM Mono', monospace;
  font-size: 0.65rem; letter-spacing: 0.06em;
  color: var(--white-40);
  text-transform: uppercase;
}

.commits {
  list-style: none;
  padding: 0.5rem 0;
  overflow: hidden;
  max-height: 6000px;
  transition: max-height 0.3s ease, padding 0.3s ease, opacity 0.2s ease;
}
.repo.collapsed .commits {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
}
.commit {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.2rem;
  align-items: baseline;
  padding: 0.8rem 1.8rem;
  border-bottom: 0.5px dashed var(--white-06);
  transition: background 0.15s;
}
.commit:last-child { border-bottom: none; }
.commit:hover { background: var(--white-03); }

.commit-msg {
  font-size: 0.95rem; font-weight: 400;
  color: var(--white-80);
  word-wrap: break-word;
  min-width: 0;
}
.commit-time {
  font-family: 'DM Mono', monospace;
  font-size: 0.7rem; letter-spacing: 0.04em;
  color: var(--white-40);
  white-space: nowrap;
  text-transform: uppercase;
}

/* ── STATES ── */
.state {
  margin-top: 4rem;
  padding: 3rem 2rem;
  border: 0.5px dashed var(--border-bright);
  border-radius: 8px;
  text-align: center;
}
.state h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 400;
  margin-bottom: 0.6rem;
}
.state p {
  color: var(--white-60); font-size: 0.95rem;
  max-width: 560px; margin: 0 auto;
}
.state code {
  font-family: 'DM Mono', monospace;
  background: var(--bg3);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  color: var(--green2);
  font-size: 0.8rem;
}
.state.error h3 { color: var(--pink); }

/* ── LOADING ── */
.loading {
  margin-top: 3rem;
  display: flex; align-items: center; gap: 0.6rem;
  font-family: 'DM Mono', monospace;
  font-size: 0.75rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white-60);
}
.loading-dot {
  width: 6px; height: 6px;
  background: var(--blue);
  border-radius: 50%;
  animation: pulse 1.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* ── FOOTER ── */






/* ── FADE-UP ── */






/* ── MOBILE ── */
@media (max-width: 768px) {
  
  
  
  
  
  
  main { padding: 7rem 1.25rem 4rem; }
  .repo-head { padding: 1.1rem 1.2rem; }
  .repo-count { margin-left: 0; width: 100%; }
  .commit { grid-template-columns: 1fr; gap: 0.3rem; padding: 0.7rem 1.2rem; }
  .commit-time { font-size: 0.65rem; }
  
}

/* ── MOBILE CTA (Say hello) ── */



/* ── MAURICE SLIDEOUT ── */
