@font-face {
  font-family: "Saturite";
  src: url("../../fonts/Saturite_regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Saturite";
  src: url("../../fonts/Saturite_bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #0f172a;
  --bg-darker: #020617;
  --text-main: #f8fafc;
  --text-muted: #94a3b8;
  --brand-blue: #2563eb;
  --brand-blue-hover: #1d4ed8;
  --radius: 4px;
  --max-w: 1350px;
  --spacing: 1.5rem;
  --header-h: 70px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family:
    "Saturite",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
}
a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
}
.site-header {
  background-color: var(--bg-darker);
  height: var(--header-h);
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.header-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--spacing);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-main);
}
.logo-mark svg {
  width: 32px;
  height: 32px;
  color: var(--brand-blue);
}
.main-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
}
.main-nav a:hover {
  color: var(--brand-blue);
}
.main-nav a.active {
  color: var(--brand-blue);
  font-weight: 700;
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  padding: 4px;
}
.nav-toggle svg {
  width: 28px;
  height: 28px;
}
.site-footer {
  background-color: var(--bg-darker);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: auto;
}
.footer-container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--spacing);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-col h4 {
  color: var(--brand-blue);
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-brand {
  font-size: 1.5rem;
  font-weight: 800;
  display: block;
  margin-bottom: 1rem;
}
.tagline {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: var(--text-main);
}
.footer-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-col ul li {
  margin-bottom: 0.75rem;
}
.links-col a {
  color: var(--text-main);
}
.footer-col a:hover {
  color: var(--brand-blue);
}
.legal-col a {
  color: var(--text-main);
}
.contact-link {
  display: block;
  font-style: normal;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.contact-link:hover {
  color: var(--brand-blue);
}
.email-link {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* custom width helpers for stats bars */
.w-1\/3 {
  width: 33.333333%;
}
.w-1\/2 {
  width: 50%;
}
.w-2\/3 {
  width: 66.666667%;
}
.w-5\/6 {
  width: 83.333333%;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background-color: var(--bg-darker);
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
  }
  .main-nav.active {
    display: block;
  }
  .main-nav ul {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
}
/* footer extras */
.footer__extras {
  margin-top: 16px;
}
.footer__extrasInner {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer__social {
  display: flex;
  gap: 10px;
  align-items: center;
}
.footer-social {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}
.footer-social__icon {
  display: block;
}
.footer__poemWrap {
  max-width: 520px;
}
.footer-poem {
  opacity: 0.9;
  font-size: 0.95em;
  line-height: 1.35;
}
/* --- injected by logo step --- */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand-logo {
  width: 28px;
  height: 28px;
  display: inline-block;
  flex: 0 0 auto;
}
.brand-logo * {
  vector-effect: non-scaling-stroke;
}
/* --- /injected by logo step --- */
.mb-5 {
  margin-bottom: 2rem;
}
