/* Bugninja™ — custom theme (Bootstrap structure, not Bootstrap colors) */

:root {
  --ink: #0d1117;
  --ink-soft: #2a323c;
  --field: #d8dee6;
  --steel: #5a738c;
  --steel-bright: #6e89a3;
  --silver: #b8c2ce;
  --silver-hot: #d4dbe4;
  --slate: #7a8796;
  --paper: #eef1f5;
  --muted: #5c6670;
  --line: rgba(13, 17, 23, 0.12);
  --font-display: "Oxanium", sans-serif;
  --font-body: "Work Sans", sans-serif;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 2px;
  --content-max: min(94vw, 1480px);
  --pad-x: clamp(1.25rem, 3vw, 2.5rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
}

a {
  color: var(--steel);
  text-decoration-thickness: 1.5px;
  text-underline-offset: 0.18em;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--ink);
}

/* Atmosphere — CSS-only, no images */

.atmosphere {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 90% 60% at 10% -10%, rgba(90, 115, 140, 0.2), transparent 55%),
    radial-gradient(ellipse 70% 50% at 95% 15%, rgba(184, 194, 206, 0.35), transparent 50%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(42, 50, 60, 0.08), transparent 55%),
    linear-gradient(165deg, #f5f7fa 0%, #e8ecf1 45%, #dde3ea 100%);
}

.atmosphere__grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 30%, black 20%, transparent 75%);
  animation: grid-drift 28s linear infinite;
  opacity: 0.55;
}

.atmosphere__orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  animation: orb-float 18s var(--ease-out) infinite alternate;
}

.atmosphere__orb--a {
  width: min(42vw, 420px);
  height: min(42vw, 420px);
  top: 8%;
  right: -8%;
  background: rgba(90, 115, 140, 0.32);
}

.atmosphere__orb--b {
  width: min(36vw, 360px);
  height: min(36vw, 360px);
  bottom: 12%;
  left: -10%;
  background: rgba(184, 194, 206, 0.4);
  animation-delay: -6s;
  animation-duration: 22s;
}

@keyframes grid-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(48px, 48px); }
}

@keyframes orb-float {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(-3%, 4%) scale(1.08); }
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(12px);
  background: rgba(238, 241, 245, 0.84);
  border-bottom: 1px solid var(--line);
}

.site-nav {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0.65rem var(--pad-x);
}

.brand-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.15rem;
  letter-spacing: -0.03em;
  color: var(--ink) !important;
  text-decoration: none !important;
}

.brand-mark:hover {
  color: var(--steel) !important;
}

.tm {
  font-size: 0.55em;
  vertical-align: super;
  margin-left: 0.05em;
  font-weight: 700;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--ink-soft) !important;
  padding: 0.5rem 0.85rem !important;
}

.nav-link:hover,
.nav-link:focus {
  color: var(--steel) !important;
}

.navbar-toggler {
  border: 1.5px solid var(--ink);
  border-radius: var(--radius);
  padding: 0.35rem 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
  outline: 2px solid var(--steel);
  outline-offset: 2px;
}

.navbar-toggler-icon {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23102018' stroke-linecap='square' stroke-width='2.5' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Buttons — override Bootstrap */

.btn {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  border-radius: var(--radius);
  border-width: 2px;
  padding: 0.7rem 1.35rem;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s var(--ease-out);
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  --bs-btn-bg: var(--ink);
  --bs-btn-border-color: var(--ink);
  --bs-btn-color: var(--silver-hot);
  --bs-btn-hover-bg: var(--steel);
  --bs-btn-hover-border-color: var(--steel);
  --bs-btn-hover-color: #fff;
  --bs-btn-active-bg: var(--steel-bright);
  --bs-btn-active-border-color: var(--steel-bright);
  --bs-btn-active-color: #fff;
  --bs-btn-focus-shadow-rgb: 90, 115, 140;
  background: var(--ink);
  border-color: var(--ink);
  color: var(--silver-hot);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: var(--silver);
  border-color: var(--ink);
  color: var(--ink);
}

.btn-nav {
  background: var(--silver);
  border: 2px solid var(--ink);
  color: var(--ink);
  padding: 0.4rem 0.95rem;
  font-size: 0.9rem;
  margin-left: 0.35rem;
}

.btn-nav:hover,
.btn-nav:focus {
  background: var(--ink);
  color: var(--silver-hot);
}

.btn-nav--ghost {
  background: transparent;
  margin-left: 0.15rem;
}

.btn-nav--ghost:hover,
.btn-nav--ghost:focus {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}

.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: 1.05rem;
}

/* Hero — brand first, one composition */

.hero {
  position: relative;
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 5rem;
}

.hero__inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.hero__since {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 1rem;
}

.hero__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.15rem, 7vw, 4.75rem);
  line-height: 1.05;
  letter-spacing: -0.045em;
  color: var(--ink);
  margin: 0 0 1.25rem;
  max-width: min(22em, 100%);
}

.hero__lead {
  display: block;
  font-weight: 700;
  font-size: 0.52em;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink-soft);
  margin-bottom: 0.2em;
  max-width: 24em;
}

.hero__word {
  white-space: nowrap;
}

.hero__word .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.35em);
  animation: char-in 0.7s var(--ease-out) forwards;
}

.hero__brand .tm {
  font-size: 0.28em;
  color: var(--steel);
}

.hero__tagline {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.25rem, 3.2vw, 1.85rem);
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--steel);
  margin: 0 0 2rem;
  max-width: 28em;
}

.hero__lede {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 36ch;
  margin: 0 0 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero__trail {
  position: absolute;
  right: 8%;
  bottom: 12%;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  opacity: 0.7;
}

.trail-dot {
  width: 10px;
  height: 10px;
  background: var(--steel);
  border-radius: 50%;
  animation: trail-pulse 2.4s ease-in-out infinite;
}

.trail-dot:nth-child(2) {
  background: var(--silver);
  animation-delay: 0.35s;
  margin-left: 14px;
}

.trail-dot:nth-child(3) {
  background: var(--ink-soft);
  animation-delay: 0.7s;
  margin-left: 28px;
}

@keyframes char-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes trail-pulse {
  0%, 100% { transform: scale(1); opacity: 0.55; }
  50% { transform: scale(1.35); opacity: 1; }
}

/* Content bands — one job each */

.band {
  padding: 5.5rem 0;
  border-top: 1px solid var(--line);
}

.band .container {
  max-width: var(--content-max);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.band__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: var(--ink);
}

.band__text {
  font-size: 1.125rem;
  color: var(--ink-soft);
  max-width: 52rem;
  margin: 0 0 1.5rem;
}

.band--channel {
  background: linear-gradient(90deg, rgba(90, 115, 140, 0.1), transparent 70%);
}

.band--gamedev {
  background: linear-gradient(105deg, transparent 30%, rgba(184, 194, 206, 0.28) 100%);
}

.band--ai {
  background: linear-gradient(90deg, rgba(90, 115, 140, 0.08), transparent 60%);
}

.band--jams {
  background: linear-gradient(90deg, rgba(42, 50, 60, 0.06), transparent 65%);
}

.band--about {
  background: linear-gradient(105deg, rgba(90, 115, 140, 0.08), transparent 65%);
}

.about__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  letter-spacing: -0.02em;
  color: var(--steel);
  margin: 0 0 1.5rem;
}

.about__body {
  max-width: 52rem;
}

.about__body p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin: 0 0 1.15rem;
  line-height: 1.7;
}

.about__body p:last-child {
  margin-bottom: 0;
}

.about__reach {
  margin-top: 1.75rem !important;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.check-list {
  list-style: none;
  margin: 0.5rem 0 0;
  padding: 0;
  max-width: 52rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.check-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.05rem, 2.5vw, 1.25rem);
  letter-spacing: -0.02em;
  color: var(--ink);
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
}

.check-list li:last-child {
  border-bottom: none;
}

.jams-main {
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
  min-width: 0;
}

.jam-favs__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.jam-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  max-width: 52rem;
}

.jam-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.75rem 1.25rem;
  align-items: baseline;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.jam-list a,
.jam-list__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  text-decoration: none;
}

.jam-list a {
  border-bottom: 2px solid transparent;
  justify-self: start;
}

.jam-list a:hover {
  color: var(--steel);
  border-bottom-color: var(--silver);
}

.jam-list__meta {
  font-size: 0.88rem;
  color: var(--muted);
  text-align: right;
}

.jam-list__item--legacy {
  grid-template-columns: minmax(8rem, 12rem) 1fr;
}

.jam-list__item--legacy .jam-list__meta {
  text-align: left;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--silver);
  padding-bottom: 0.1rem;
}

.text-link:hover {
  color: var(--steel);
  border-color: var(--steel);
}

.text-link__arrow {
  transition: transform 0.25s var(--ease-out);
}

.text-link:hover .text-link__arrow {
  transform: translateX(4px);
}

/* Focus list — channel pillars */

.focus-list {
  list-style: none;
  margin: 2.25rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  max-width: 52rem;
}

.focus-list li {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  padding-left: 1rem;
  position: relative;
}

.focus-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 0.4rem;
  height: 0.4rem;
  background: var(--steel);
}

/* Link blocks — Game Dev hub */

.gamedev-aside {
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  min-width: 0;
}

.link-block {
  margin-top: 0;
  max-width: none;
}

.gamedev-aside > .link-block:first-child {
  margin-top: 2.5rem;
}

.link-block__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.75rem;
}

.link-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.link-list li {
  border-bottom: 1px solid var(--line);
}

.link-list a {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8.5rem) 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  text-decoration: none;
  color: inherit;
  align-items: baseline;
  transition: color 0.2s ease;
}

.link-list a:hover .link-list__label {
  color: var(--steel);
}

.link-list a:hover .link-list__desc {
  color: var(--ink);
}

.link-list__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.link-list__label--muted {
  color: var(--muted);
}

.link-list__desc {
  color: var(--muted);
  font-size: 0.98rem;
}

.link-list li:not(:has(a)) {
  display: grid;
  grid-template-columns: minmax(6.5rem, 8.5rem) 1fr;
  gap: 1rem;
  padding: 1.05rem 0;
  align-items: baseline;
}

/* Channel grid — liked YouTube creators */

.channel-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(15.5rem, 1fr));
  gap: 0.65rem 1rem;
  max-width: none;
}

.channel-grid a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.55rem 0.35rem;
  text-decoration: none;
  color: inherit;
  border-radius: var(--radius);
  transition: background 0.2s ease;
}

.channel-grid a:hover {
  background: rgba(90, 115, 140, 0.1);
}

.channel-grid img {
  width: 3.25rem;
  height: 3.25rem;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--silver);
}

.channel-grid__meta {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.channel-grid__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: -0.02em;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.channel-grid a:hover .channel-grid__name {
  color: var(--steel);
}

.channel-grid__handle {
  font-size: 0.82rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Prototype list — not cards */

.proto-list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
  max-width: 40rem;
  border-top: 1px solid var(--line);
}

.proto-list li {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 1rem;
  padding: 1.15rem 0;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.proto-list__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  color: var(--steel);
}

.proto-list__desc {
  color: var(--muted);
}

/* CTA strip */

.cta-strip {
  padding: 5.5rem 0 6rem;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(135deg, var(--ink) 0%, #161c24 55%, #1e2833 100%);
  color: var(--field);
}

.cta-strip__inner {
  max-width: var(--content-max);
  text-align: left;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.cta-strip__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: #fff;
  max-width: 22ch;
}

.cta-strip__text {
  color: rgba(212, 219, 228, 0.78);
  max-width: 48rem;
  margin: 0 0 1.75rem;
  font-size: 1.1rem;
}

.cta-strip__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cta-strip .btn-primary {
  --bs-btn-bg: var(--silver);
  --bs-btn-border-color: var(--silver);
  --bs-btn-color: var(--ink);
  --bs-btn-hover-bg: #fff;
  --bs-btn-hover-border-color: #fff;
  --bs-btn-hover-color: var(--ink);
  background: var(--silver);
  border-color: var(--silver);
  color: var(--ink);
}

.cta-strip .btn-primary:hover,
.cta-strip .btn-primary:focus {
  background: #fff;
  border-color: #fff;
  color: var(--ink);
}

.btn-ghost--on-dark {
  border-color: var(--silver);
  color: var(--silver-hot);
}

.btn-ghost--on-dark:hover,
.btn-ghost--on-dark:focus {
  background: var(--steel);
  border-color: var(--steel);
  color: #fff;
}

/* Footer */

.site-footer {
  padding: 2.5rem 0;
  background: var(--ink);
  color: rgba(184, 194, 206, 0.7);
  font-size: 0.9rem;
}

.site-footer__inner {
  max-width: var(--content-max);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

.site-footer__brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.03em;
}

.site-footer__meta,
.site-footer__legal {
  margin: 0.25rem 0 0;
}

.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 0.85rem 0 0;
}

.site-footer__links a {
  color: var(--silver-hot);
  text-decoration: none;
  font-weight: 600;
  font-family: var(--font-display);
  border-bottom: 1px solid transparent;
}

.site-footer__links a:hover {
  color: #fff;
  border-bottom-color: var(--silver);
}

/* Reveal on scroll */

.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hero__brand.reveal {
  opacity: 1;
  transform: none;
}

/* Reduced motion */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .atmosphere__grid,
  .atmosphere__orb,
  .trail-dot,
  .hero__word .char {
    animation: none !important;
  }

  .hero__word .char {
    opacity: 1;
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Wide desktop — use the screen */

@media (min-width: 992px) {
  .band--channel .container,
  .band--gamedev .container {
    display: grid;
    grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 2.35fr);
    column-gap: clamp(2rem, 4vw, 4.5rem);
    row-gap: 1.25rem;
    align-items: start;
  }

  .band--channel .band__copy {
    grid-column: 1;
    grid-row: 1 / -1;
    position: sticky;
    top: 5.5rem;
  }

  .band--gamedev .band__copy {
    grid-column: 1;
    grid-row: 1;
    position: sticky;
    top: 5.5rem;
  }

  .band--channel .focus-list,
  .band--gamedev .gamedev-aside {
    grid-column: 2;
  }

  .band--gamedev .gamedev-aside > .link-block:first-child {
    margin-top: 0;
  }

  .band--jams .container {
    display: block;
  }

  .band--jams .band__copy {
    display: grid;
    grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 2.35fr);
    column-gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
  }

  .band--jams .band__title {
    grid-column: 1;
    position: sticky;
    top: 5.5rem;
    margin: 0;
  }

  .band--jams .jams-main {
    grid-column: 2;
  }

  .band--jams .check-list {
    margin-top: 0;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
  }

  .band--about .container {
    display: block;
  }

  .band--about .band__copy {
    display: grid;
    grid-template-columns: minmax(15rem, 0.85fr) minmax(0, 2.35fr);
    column-gap: clamp(2rem, 4vw, 4.5rem);
    align-items: start;
  }

  .band--about .band__title {
    grid-column: 1;
    grid-row: 1 / span 3;
    position: sticky;
    top: 5.5rem;
    margin: 0;
  }

  .band--about .about__name,
  .band--about .about__body {
    grid-column: 2;
  }

  .band--about .about__name {
    margin-top: 0;
  }

  .channel-grid {
    grid-template-columns: repeat(auto-fill, minmax(16.5rem, 1fr));
  }

  .link-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: none;
    gap: 0 2rem;
  }

  .link-list li {
    border-top: 1px solid var(--line);
  }

  .cta-strip__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    column-gap: 3rem;
    align-items: center;
  }

  .cta-strip__title,
  .cta-strip__text {
    grid-column: 1;
  }

  .cta-strip__actions {
    grid-column: 2;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
  }
}

/* Responsive */

@media (max-width: 767.98px) {
  .hero {
    min-height: auto;
    padding: 3.25rem 0 4rem;
  }

  .hero__trail {
    display: none;
  }

  .proto-list li,
  .link-list a,
  .link-list li:not(:has(a)),
  .jam-list li {
    grid-template-columns: 1fr;
    gap: 0.25rem;
  }

  .jam-list__meta,
  .jam-list__item--legacy .jam-list__meta {
    text-align: left;
  }

  .navbar-collapse {
    padding: 0.75rem 0 1rem;
  }

  .btn-nav {
    margin: 0.5rem 0 0;
    display: inline-block;
  }

  .band {
    padding: 4rem 0;
  }
}
