:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --accent-color: #61dafb;
  --highlight-color: #21a1f1;
  --section-bg: #f8f9fa;
  --nav-bg: var(--section-bg);
  --nav-shadow: rgba(0, 0, 0, 0.1);
  --overlay-bg: rgba(0, 0, 0, 0.85);
  --icon-color: #222222;
  --scroll-thumb: linear-gradient(135deg, #61dafb, #21a1f1, #00bfff);
  --scroll-track: #e0e0e0;
  --scroll-border: #e0e0e0;
  --search: #000;
  --verdant-green: #61dafb;
  --forest-green: #282c34;
  --warm-brown: #444444;
  --sage: #89c9f8;
  --charcoal: #121212;
  --summary-card-bg: #f0f4f8;
  --summary-card-border: #d6e4f0;
  --summary-card-text: #1c1f26;
  --summary-card-hover-bg: #d9e8fb;
  --summary-card-hover-text: #121212;
  --button-shadow: rgba(34, 34, 34, 0.15);
  --button-hover-shadow: #89c9f8
}
[data-theme=dark] {
  --bg-color: #121212;
  --text-color: #eaeaea;
  --accent-color: #61dafb;
  --highlight-color: #21a1f1;
  --section-bg: #1e1e1e;
  --nav-bg: var(--section-bg);
  --nav-shadow: rgba(255, 255, 255, 0.1);
  --overlay-bg: rgba(18, 24, 27, 0.9);
  --icon-color: #eaeaea;
  --scroll-thumb: linear-gradient(135deg, #21a1f1, #61dafb, #00bfff);
  --scroll-track: #1e1e1e;
  --scroll-border: #1e1e1e;
  --search: #21a1f1;
  --verdant-green: #61dafb;
  --forest-green: #282c34;
  --warm-brown: #888888;
  --sage: #89c9f8;
  --charcoal: #cccccc;
  --summary-card-bg: #1f2630;
  --summary-card-border: #2e3a51;
  --summary-card-text: #cfd8f9;
  --summary-card-hover-bg: #2c3b57;
  --summary-card-hover-text: #eaeaea;
  --button-shadow: rgba(255, 255, 255, 0.15);
  --button-hover-shadow: #89c9f8
}
[hidden] {
  display: none!important
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  font-family: 'Segoe UI',Tahoma,Geneva,Verdana,sans-serif;
  background-color: var(--bg-color);
  color: var(--text-color);
  transition: background-color .3s ease,color .3s ease;
  overflow-y: scroll
}
body {
  padding-top: 64px;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}
.container {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  padding: 0 1rem
}
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 64px;
  background-color: var(--section-bg);
  box-shadow: 0 2px 4px var(--nav-shadow);
  display: flex;
  align-items: center;
  z-index: 1002;
  transition: background-color .3s ease
}
.site-header .nav-container.container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1rem;
  flex-wrap: wrap;
  gap: .5rem
}
.logo {
  max-width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center
}
.logo a {
  display: inline-block
}
.logo img {
  max-width: 200px;
  display: block;
  width: 80%;
  margin-top: -.02em
}
.site-header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right,#1976d2,#007acc,#7b61ff,#d473d4,#9c27b0,#e26d5c,#ff9800,#ffa600,#ffae42,#92b25a,#2e7d32,#3aa76d,#1976d2);
  background-size: 200% auto;
  animation: borderScrollHorizontal 20s linear infinite;
  border-radius: 4px 4px 0 0;
  z-index: 1003;
  pointer-events: none
}
@keyframes borderScrollHorizontal {
  0% {
    background-position: 200% center
  }
  100% {
    background-position: 0 center
  }
}
.summary-card li {
  list-style-type: none;
  padding: .2em 0
}
#logEntries ul {
  list-style-type: disc;
  margin-left: 2rem;
  color: var(--text-color);
  line-height: 1.5
}
#logEntries ul ul {
  list-style-type: square;
  margin-left: 1.5rem
}
#logEntries li {
  padding: .3em 0
}
#theme-toggle {
  background: 0 0;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--icon-color);
  transition: color .3s ease,transform .2s ease;
  padding: .25rem;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100px;
  transform-origin: right center
}
#theme-toggle:focus,
#theme-toggle:hover {
  color: var(--highlight-color);
  outline: 0;
  transform: scale(1.15)
}
main#main-content {
  max-width: 960px;
  margin: 2rem auto 4rem auto;
  padding: 0 1rem
}
h1,
h2 {
  font-weight: 700;
  color: var(--verdant-green);
  margin-bottom: 1rem;
  text-align: center;
  line-height: 1.2
}
h1 {
  font-size: 2rem;   /* or whatever fits your design */
}

h2 {
  text-align: left;
  margin-top: 0;
    font-size: 1.5rem;
}
time {
  font-weight: 600
}
a.back-link {
  display: inline-block;
  padding: .5em 1.2em;
  background-color: var(--warm-brown);
  color: var(--section-bg);
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: background-color .3s ease,color .3s ease,box-shadow .3s ease
}
a.back-link:focus,
a.back-link:hover {
  background-color: var(--sage);
  color: var(--charcoal);
  outline: 0;
  box-shadow: 0 0 8px var(--button-hover-shadow)
}
#actionButtons {
  margin: 2rem 0 3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem
}
button {
  background-color: var(--warm-brown);
  color: var(--section-bg);
  border: none;
  padding: .6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  min-width: 140px;
  max-width: 200px;
  font-weight: 600;
  transition: background-color .3s ease,color .3s ease,box-shadow .3s ease
}
button:focus,
button:hover {
  background-color: var(--sage);
  color: var(--bg-color);
  outline: 0
}
#summaryHighlights,
#toc {
  background: var(--summary-card-bg);
  border: 1px solid var(--summary-card-border);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
  border-radius: 6px
}
#toc h2 {
  margin-top: 0
}
#toc ul {
  list-style: none;
  padding-left: 0
}
#toc li {
  margin: .25rem 0
}
#toc a {
  color: var(--forest-green);
  text-decoration: none
}
#toc a:focus,
#toc a:hover {
  text-decoration: underline
}
section {
  padding: 1rem 0
}
#searchContainer,
#searchInput {
  width: 100%
}
.search-title {
  margin: 0;
  font-weight: 700;
  color: var(--verdant-green);
  flex: 1 1 auto;
  min-width: 0;
  text-align: left
}
.search {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2em
}
#searchInput {
  font-size: 1rem;
  padding: .5rem .75rem;
  border-radius: 6px;
  border: 1px solid var(--summary-card-border);
  box-sizing: border-box;
  transition: border-color .3s ease,box-shadow .3s ease;
  color: var(--search);
  background-color: var(--section-bg)
}
#searchInput::placeholder {
  color: var(--forest-green)
}
#searchInput:focus {
  outline: 0;
  border-color: var(--sage);
  box-shadow: 0 0 5px var(--sage)
}
.autocomplete-wrapper {
  position: relative;
  width: fit-content;
  max-width: 100%
}
#autocompleteList {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: var(--bg-color,#fff);
  border: 1px solid var(--summary-card-border);
  max-height: 300px;
  overflow-y: auto;
  box-shadow: 0 4px 8px rgba(0,0,0,.15);
  border-top: none;
  z-index: 1000;
  font-size: .9rem;
  border-radius: 0 0 6px 6px;
  display: none
}
.autocomplete-item {
  padding: .5rem .75rem;
  cursor: pointer;
  background-color: var(--section-bg);
  transition: background-color .3s ease,color .3s ease
}
.autocomplete-item:focus,
.autocomplete-item:hover {
  background-color: var(--summary-card-hover-bg);
  color: var(--summary-card-hover-text);
  outline: 0
}
#summaryCards {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
  gap: 1rem
}
.summary-card {
  background: var(--summary-card-bg);
  border: 1px solid var(--summary-card-border);
  padding: 1rem 1.25rem;
  border-radius: 8px;
  color: var(--summary-card-text);
  text-decoration: none;
  font-weight: 600;
  box-shadow: 1px 1px 5px rgba(0,0,0,.05);
  display: flex;
  flex-direction: column;
  transition: background-color .3s ease,box-shadow .3s ease,color .3s ease
}
.summary-card:focus,
.summary-card:hover {
  background-color: var(--summary-card-hover-bg);
  box-shadow: 2px 3px 8px rgba(0,0,0,.1);
  outline: 0;
  color: var(--summary-card-hover-text)
}
.summary-card span {
  font-size: .85rem;
  color: var(--warm-brown);
  margin-bottom: .3rem
}
section h2 {
  color: var(--verdant-green);
  font-weight: 700;
  margin-bottom: 1rem
}
#closeLogBtn {
  background-color: var(--warm-brown);
  color: var(--section-bg);
  border: none;
  padding: .6rem 1.2rem;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1rem;
  max-width: 200px;
  display: block;
  font-weight: 600;
  box-shadow: 0 2px 6px var(--button-shadow);
  transition: background-color .3s ease,color .3s ease,box-shadow .3s ease
}
#closeLogBtn:focus,
#closeLogBtn:hover {
  background-color: var(--sage);
  color: var(--bg-color);
  outline: 0;
  box-shadow: 0 0 8px var(--button-hover-shadow)
}
#closeLogBtn {
  display: none
}
code {
  background-color: var(--section-bg);
  color: var(--text-color);
  padding: .1em .3em;
  font-family: monospace,monospace;
  border-radius: 3px;
  border: 1px solid var(--summary-card-border);
  transition: background-color .3s ease,color .3s ease
}
.hidden {
  display: none!important
}
.fade-container {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .4s ease,transform .4s ease;
  display: none
}
.fade-container.hidden {
  display: block;
  opacity: 0
}
.fade-container.show {
  display: block;
  opacity: 1
}
.instant-hide {
  opacity: 0!important;
  pointer-events: none!important;
  transition: none!important
}
html::-webkit-scrollbar {
  width: 8px;
  height: 8px
}
html::-webkit-scrollbar-track {
  background: var(--scroll-track)
}
html::-webkit-scrollbar-thumb {
  background: var(--scroll-thumb);
  background-size: 300% 300%;
  animation: funky-scroll 6s ease infinite;
  border-radius: 10px;
  border: 2px solid var(--scroll-border)
}
@keyframes funky-scroll {
  0% {
    background-position: 0 50%
  }
  50% {
    background-position: 100% 50%
  }
  100% {
    background-position: 0 50%
  }
}
@media (max-width:768px) {
  main#main-content {
    margin: 1.5rem auto 3rem auto;
    padding: 0 1rem;
    max-width: 100%
  }
  .summary-card {
    font-size: .95rem
  }
}
#logEntries {
  padding: 1rem 0;
  min-height: 50px
}
#logEntries section {
  margin-bottom: 2rem
}
div[style*="margin-bottom: 1rem;"] {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 1rem 0;
  flex-wrap: wrap;
  justify-content: center
}
label[for=projectSelect] {
  font-weight: 600;
  color: var(--verdant-green,#5d7747);
  user-select: none;
  min-width: 120px;
  text-align: right
}
#projectSelect {
  padding: .5rem .75rem;
  font-size: 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  min-width: 200px;
  max-width: 100%;
  box-sizing: border-box;
  background-color: #fff;
  color: #333;
  transition: border-color .3s ease,box-shadow .3s ease;
  cursor: pointer
}
#projectSelect:focus {
  outline: 0;
  border-color: var(--verdant-green,#5d7747);
  box-shadow: 0 0 5px var(--verdant-green,#5d7747)
}
@media (max-width:480px) {
  div[style*="margin-bottom: 1rem;"] {
    justify-content: center
  }
  label[for=projectSelect] {
    min-width: auto;
    flex-basis: 100%;
    text-align: center;
    margin-bottom: .5rem
  }
  #projectSelect {
    min-width: auto;
    width: 100%
  }
}
@media (max-width:576px) {
  html {
    font-size: 15px
  }
  h1 {
    font-size: 1.5rem
  }
  h2 {
    font-size: 1.25rem
  }
  #summaryCards {
    grid-template-columns: 1fr
  }
  .summary-card {
    font-size: 1rem;
    padding: .9rem 1rem
  }
  #autocompleteList {
    max-width: 100%;
    left: 0!important;
    right: 0;
    width: 100%!important;
    font-size: 1rem
  }
  #searchInput {
    font-size: 1.1rem;
    padding: .75rem 1rem
  }
  button {
    font-size: 1.1rem;
    padding: .75rem 1.2rem;
    width: 100%;
    max-width: none
  }
  .back-link {
    display: block;
    width: 100%;
    text-align: center
  }
  .search-title {
    color: var(--verdant-green);
    text-align: center;
    margin-bottom: 1.5em
  }
  .search {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 90%;
    margin: -2em auto 2em auto
  }
  .site-header {
    height: 80px
  }
  .logo img {
    height: 100px;
    width: auto;
    display: block;
    margin: -.3em auto 0 auto;
    object-fit: contain
  }
  .site-header .nav-container.container {
    flex-wrap: wrap
  }
  section.intro-message {
    margin: 0 1em
  }
  .project-card.active {
    margin: 0 1em
  }
  button#changeProjectBtn {
    width: 90%;
    margin-top: 1em
  }
  #theme-toggle {
    font-size: 1.8rem;
    width: 80px
  }
  main#main-content {
    margin: 1.5rem auto 3rem auto;
    padding: 0 1rem;
    max-width: 100%
  }
  #summaryCards {
    grid-template-columns: 1fr!important
  }
  .summary-card {
    font-size: 1rem;
    padding: 1rem
  }
  #autocompleteList {
    width: 100%!important;
    max-width: 100%!important;
    left: 0!important;
    right: 0!important;
    font-size: 1rem
  }
  div[style*="margin-bottom: 1rem;"] {
    justify-content: center;
    flex-direction: column;
    gap: .5rem;
    max-width: 90%;
    margin: 0 auto
  }
  label[for=projectSelect] {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: .25rem
  }
  #projectSelect {
    width: 100%;
    min-width: auto
  }
  .search-input {
    width: 100%;
    font-size: 1.1rem;
    padding: .75rem 1rem
  }
}
@media (min-width:577px) and (max-width:992px) {
  h1 {
    font-size: 1.75rem
  }
  h2 {
    font-size: 1.4rem
  }
  .summary-card {
    font-size: 1rem
  }
  #autocompleteList,
  #searchInput {
    font-size: 1rem
  }
}
.project-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap: 1.5rem;
  margin: 2rem auto;
  padding: 0 1rem;
  max-width: 960px
}
.project-card {
  background-color: var(--summary-card-bg);
  border: 1px solid var(--summary-card-border);
  padding: 1.5rem;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color .3s ease,transform .2s ease,box-shadow .3s ease;
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 1px 1px 4px rgba(0,0,0,.05);
  height: 220px;
  align-items: stretch;
  padding: 0;
  overflow: hidden
}
.project-card:focus,
.project-card:hover {
  background-color: var(--summary-card-hover-bg);
  color: var(--summary-card-hover-text);
  transform: scale(1.03);
  outline: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,.1)
}
.project-icon {
  font-size: 2.2rem;
  flex-shrink: 0
}
.project-info {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1
}
.project-card.active {
  border: 2px solid transparent;
  background-image: linear-gradient(var(--summary-card-bg),var(--summary-card-bg)),linear-gradient(to right,#1976d2,#007acc,#7b61ff,#d473d4,#9c27b0,#e26d5c,#ff9800,#ffa600,#ffae42,#92b25a,#2e7d32,#3aa76d,#1976d2);
  background-origin: border-box;
  background-clip: padding-box,border-box;
  animation: borderScrollHorizontal 20s linear infinite;
  box-shadow: 0 0 12px rgba(0,0,0,.2);
  transform: scale(1.03);
  transition: transform .3s ease,box-shadow .3s ease
}
.project-label-rotated {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  background-color: var(--summary-card-bg);
  border-right: 1px solid var(--summary-card-border);
  padding: .5rem;
  font-weight: 700;
  color: inherit;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  flex-shrink: 0;
  margin-right: -1em
}
.project-info h3 {
  font-size: 1.1rem;
  margin: 0 0 .4rem;
  color: var(--text-color)
}
.project-info p {
  font-size: .9rem;
  color: var(--text-color);
  margin: 0
}
.live-project-link {
  display: block;
  text-align: center;
  margin: .5rem auto 1.5rem auto;
  font-weight: 600;
  color: var(--highlight-color);
  font-size: 1.05rem;
  text-decoration: none;
  transition: color .3s ease
}
.live-project-link:focus,
.live-project-link:hover {
  color: var(--accent-color);
  text-decoration: underline;
  outline: 0
}
section.intro-message {
  text-align: center
}
.main-title {
  text-align: center
}
.intro-message {
  max-width: 1200px;
  width: 90%;
  margin: 2.5rem auto 1.5rem auto;
  padding: 0;
  text-align: center;
  color: var(--summary-card-text,#222);
  font-size: 1.13em;
  line-height: 1.65
}
.intro-blurb-group {
  margin-top: 2em
}
.intro-message .main-title {
  color: var(--verdant-green,#1976d2);
  font-size: 2.1em;
  font-weight: 800;
  letter-spacing: .015em;
  margin-bottom: .15em;
  position: relative;
  display: inline-block
}
.intro-message .main-title::after {
  content: "";
  display: block;
  width: 374px;
  height: 4px;
  background: linear-gradient(to right,#1976d2,#007acc,#7b61ff,#d473d4,#9c27b0,#e26d5c,#ff9800,#ffa600);
  margin: .4em auto 0 auto;
  border-radius: 2px
}
.intro-message p {
  margin: 0 0 1.12em 0;
  color: inherit;
  font-size: 1.04em
}
.intro-message .main-title::after {
  margin-top: 1em
}
@media (max-width:600px) {
  .main-title {
    margin-top: 3em
  }
  .intro-message {
    font-size: 1em;
    margin: 1.25rem auto .8rem auto
  }
  .intro-message .main-title {
    font-size: 1.25em
  }
  .intro-message .main-title::after {
    width: 83.74px;
    height: 3px;
    margin-top: 2em
  }
}
a.btn {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--hair,rgba(0,0,0,.1));
  background: 0 0;
  color: var(--text-color);
  font-size: 14px;
  text-decoration: none
}
a.btn:hover {
  background: 0 0;
  color: var(--accent-color)
}
.status-key {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 2rem 0 1.5rem 0;
  font-size: 1rem
}
.status-key-title {
  margin-top: -2em;
  margin-bottom: 1.5em;
  font-weight: 700;
  color: var(--verdant-green,#228c38);
  text-align: center;
  letter-spacing: .04em;
  font-size: 1.1em
}
.status-key-list {
  display: flex;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center
}
.status-key .project-label-rotated {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6em;
  min-height: 2em;
  font-size: 1em;
  font-weight: 600;
  border-radius: 6px;
  padding: .3em 1em;
  writing-mode: initial;
  transform: none;
  margin: 0;
  box-shadow: 0 1px 4px rgba(20,24,28,.08);
  border: 1px solid rgba(0,0,0,.04);
  color: inherit
}
[data-theme=dark] .status-key .project-label-rotated {
  border: 1.5px solid #252e3d!important;
  box-shadow: 0 2px 8px rgba(12,16,20,.1)
}
.status-key-list button.project-label-rotated {
  border: none;
  outline: 0;
  cursor: pointer;
  background: inherit;
  transition: box-shadow .16s,border .16s;
  box-shadow: 0 1px 4px rgba(20,24,28,.08);
  padding: .3em 1em;
  font-size: 1em;
  border-radius: 6px;
  font-weight: 600;
  margin: 0;
  opacity: .93
}
.status-key-list button.project-label-rotated.active,
.status-key-list button.project-label-rotated:focus {
  box-shadow: 0 2px 8px rgba(12,16,20,.18);
  border: 2px solid var(--verdant-green,#1976d2);
  opacity: 1;
  z-index: 1
}
.project-label-rotated.status-concept {
  background: #f8dddd!important
}
.project-label-rotated.status-prototype {
  background: #f6eed9!important
}
.project-label-rotated.status-dev {
  background: #ede2fb!important
}
.project-label-rotated.status-completed {
  background: #e4f7ec!important
}
.project-label-rotated.status-launched {
  background: #e3e9ff!important
}
[data-theme=dark] .project-label-rotated.status-concept {
  background: #250101!important
}
[data-theme=dark] .project-label-rotated.status-prototype {
  background: #3d2503!important
}
[data-theme=dark] .project-label-rotated.status-dev {
  background: #1d0119!important
}
[data-theme=dark] .project-label-rotated.status-completed {
  background: #042311!important
}
[data-theme=dark] .project-label-rotated.status-launched {
  background: #0f1221!important
}
.status-key-list button {
  position: relative;
  --btn-bg: #2d3748;
  --btn-fg: #ffffff;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 0;
  border-radius: 8px;
  padding: 8px 12px
}
.status-all {
  --btn-bg: #475569;
  --btn-fg: #fff
}
.status-concept {
  --btn-bg: #6b7280;
  --btn-fg: #fff
}
.status-prototype {
  --btn-bg: #f59e0b;
  --btn-fg: #0b1020
}
.status-dev {
  --btn-bg: #3b82f6;
  --btn-fg: #fff
}
.status-launched {
  --btn-bg: #10b981;
  --btn-fg: #0b1020
}
.status-counter {
  position: absolute;
  top: 4px;
  right: 4px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: .7rem;
  font-weight: 700;
  line-height: 18px;
  border-radius: 999px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--bg-color);
  background-color: currentColor;
  pointer-events: none
}
.status-key-list .badge {
  position: absolute;
  top: -13px;
  right: -13px;
  font-size: .72rem;
  font-weight: 700;
  line-height: 1;
  padding: .5em;
  border-radius: 999px;
  min-width: 1.45em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
  pointer-events: none
}
html[data-theme=light] .status-key-list .status-all .badge {
  background: #fff!important;
  color: var(--text-color)!important;
  border: 1px solid var(--summary-card-border)
}
:root {
  --badge-d: 1.6rem;
  --badge-fs-1: 0.82rem;
  --badge-fs-2: 0.74rem
}
.status-key-list .badge {
  width: var(--badge-d);
  height: var(--badge-d);
  border-radius: 50%;
  line-height: 1;
  font-weight: 700;
  font-size: var(--badge-fs-1);
  letter-spacing: 0;
  padding: 0;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1,"lnum" 1
}
.status-key-list .badge.badge--2 {
  font-size: var(--badge-fs-2);
  letter-spacing: .02em
}
#printCoverPage {
  display: none
}
@page {
  size: A4;
  margin: 16mm 14mm 16mm 14mm
}
@media print {
  body,
  html {
    background: #fff!important;
    color: #000!important;
    -webkit-print-color-adjust: exact!important;
    print-color-adjust: exact!important
  }
  html {
    scroll-padding-top: 0!important
  }
  body {
    padding-top: 0!important
  }
  :root {
    --bg-color: #ffffff!important;
    --text-color: #000000!important;
    --section-bg: #ffffff!important;
    --summary-card-text: #000000!important;
    --warm-brown: #000000!important;
    --charcoal: #000000!important;
    --forest-green: #000000!important;
    --sage: #000000!important
  }
  *,
  ::after,
  ::before {
    color: #000!important;
    text-shadow: none!important;
    box-shadow: none!important;
    -webkit-print-color-adjust: exact!important;
    print-color-adjust: exact!important
  }
  #actionButtons,
  #changeProjectContainer,
  #legalPrintFooter,
  #logo-img,
  #printFooterSpacer,
  #projectCards,
  #summaryCards,
  #theme-toggle,
  .intro-message,
  .live-project-link,
  .search,
  a.back-link,
  header.site-header {
    display: none!important
  }
  .summary-card,
  section {
    background: #fff!important;
    border-color: #0000001a!important
  }
  #printCoverPage {
    display: flex!important;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    page-break-after: always;
    text-align: center;
    padding: 4cm 2cm
  }
  #printCoverPage h1 {
    margin: 0 0 1.2cm 0;
    font-size: 28pt;
    font-weight: 800
  }
  #printCoverPage .cover-meta {
    font-size: 12pt;
    margin-bottom: 2cm
  }
  #printCoverPage .cover-legal {
    max-width: 650px;
    margin: 0 auto 0 auto;
    line-height: 1.6;
    font-size: 11pt;
    text-align: center
  }
  #logEntries section {
    break-inside: avoid;
    page-break-inside: avoid;
    margin-bottom: 12mm
  }
  #logEntries h2 {
    break-after: avoid;
    page-break-after: avoid
  }
}