:root {
  --home-paper: #f6f3ee;
  --home-bg: #efeae2;
  --home-ink: #0a0a0a;
  --home-muted: #666;
  --home-line: #0a0a0a;
  --home-soft: #e2ddd2;
  --home-accent: #f7931a;
  --home-blue: #1b2a4a;
  --home-serif: "Source Serif 4", Georgia, serif;
  --home-mono: "IBM Plex Mono", ui-monospace, SFMono-Regular, Menlo, monospace;
  --home-sans: "IBM Plex Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --btcpp-anchor-offset: 92px;
}

html {
  scroll-padding-top: var(--btcpp-anchor-offset);
}

:where(section[id], article[id], main[id], aside[id], header[id], footer[id], div[id], form[id], details[id], h1[id], h2[id], h3[id], li[id]) {
  scroll-margin-top: var(--btcpp-anchor-offset);
}

body.btcpp-home {
  margin: 0;
  background: var(--home-paper);
  color: var(--home-ink);
  font-family: var(--home-sans);
}

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

.home-page {
  max-width: 100%;
  overflow-x: clip;
}

.home-page a {
  color: inherit;
}

.home-ticker {
  display: flex;
  align-items: center;
  gap: 0;
  overflow: hidden;
  background: var(--home-ink);
  color: var(--home-paper);
  font-family: var(--home-mono);
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  white-space: nowrap;
}

.home-ticker__label,
.home-ticker strong {
  color: var(--home-accent);
}

.home-ticker__label {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  padding: 8px 20px;
  border-right: 1px solid rgba(244, 236, 226, .22);
  background: var(--home-ink);
}

.home-ticker__viewport {
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
}

.home-ticker__track {
  display: inline-flex;
  width: max-content;
  animation: home-marquee 28s linear infinite;
}

.home-ticker__items {
  display: inline-flex;
  gap: 20px;
  align-items: center;
  padding: 8px 20px;
}

.home-ticker b,
.home-ticker em {
  color: #d8d0c6;
  font-style: normal;
  font-weight: 400;
}

.home-ticker a {
  color: var(--home-accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.home-ticker a:hover,
.home-ticker a:focus-visible {
  color: var(--home-paper);
}

@keyframes home-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.home-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--home-line);
  background: rgba(246, 243, 238, .94);
  backdrop-filter: blur(12px);
}

.home-nav__inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 0 56px;
}

.home-nav__brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.home-nav__brand img {
  display: block;
  width: auto;
  height: 32px;
}

.home-nav__tag {
  color: var(--home-muted);
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.3px;
}

.home-nav__links {
  display: flex;
  order: 2;
  align-items: center;
  gap: 22px;
  margin-left: auto;
  min-width: 0;
}

.home-nav__links a {
  font-family: var(--home-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-transform: none;
}

.home-button {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--home-line);
  background: var(--home-ink);
  color: var(--home-paper);
  padding: 0 24px;
  font-family: var(--home-mono);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-decoration: none;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}

.home-button:visited,
.home-button:hover,
.home-button:focus-visible {
  color: var(--home-paper);
}

.home-page .home-button,
.home-page .home-button:visited,
.home-page .home-button:hover,
.home-page .home-button:focus-visible {
  color: var(--home-paper);
}

.home-nav .home-button {
  text-transform: uppercase;
}

.home-nav__toggle {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.home-nav__controls {
  display: flex;
  order: 3;
  align-items: center;
  gap: 10px;
}

.home-nav__menu {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 2px solid var(--home-line);
  background: transparent;
  color: var(--home-ink);
  cursor: pointer;
}

.home-nav__menu span {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
}

.home-button.is-accent {
  background: var(--home-accent);
  color: var(--home-ink);
}

.home-button.is-accent:visited,
.home-button.is-accent:hover,
.home-button.is-accent:focus-visible {
  color: var(--home-ink);
}

.home-page .home-button.is-accent,
.home-page .home-button.is-accent:visited,
.home-page .home-button.is-accent:hover,
.home-page .home-button.is-accent:focus-visible {
  color: var(--home-ink);
}

.home-button.is-outline {
  background: transparent;
  color: var(--home-ink);
}

.home-button.is-outline:visited,
.home-button.is-outline:hover,
.home-button.is-outline:focus-visible {
  color: var(--home-ink);
}

.home-page .home-button.is-outline,
.home-page .home-button.is-outline:visited,
.home-page .home-button.is-outline:hover,
.home-page .home-button.is-outline:focus-visible {
  color: var(--home-ink);
}

.home-section-label {
  margin: 0 0 16px;
  color: var(--home-muted);
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-hero {
  border-bottom: 1px solid var(--home-line);
}

.home-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(300px, .75fr);
  gap: 64px;
  align-items: end;
  padding: 80px 56px 64px;
}

.home-hero h1,
.home-section-title,
.timeline-hero h1 {
  margin: 0;
  color: var(--home-ink);
  font-size: clamp(62px, 8vw, 112px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .88;
  overflow-wrap: anywhere;
}

.home-serif {
  font-family: var(--home-serif);
  font-style: italic;
  font-weight: 400;
}

.home-deck {
  margin: 0;
  color: #555;
  font-family: var(--home-serif);
  font-size: 21px;
  font-style: italic;
  line-height: 1.45;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  min-width: 0;
}

.home-stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
}

.home-stat {
  padding: 32px;
  border-right: 1px solid var(--home-line);
}

.home-stat:last-child {
  border-right: 0;
}

.home-stat strong {
  display: block;
  font-size: 56px;
  line-height: 1;
}

.home-stat span {
  display: block;
  margin-top: 8px;
  color: var(--home-muted);
  font-family: var(--home-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-next {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: 64px;
  align-items: center;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-ink);
  color: var(--home-paper);
  padding: 64px 56px;
}

.home-next .home-section-label,
.home-next .home-deck {
  color: #aaa;
}

.home-next h2,
.home-band h2 {
  margin: 0;
  font-size: clamp(44px, 5.6vw, 72px);
  font-weight: 800;
  letter-spacing: 0;
  line-height: .95;
}

.home-next__meta {
  margin-top: 24px;
  color: #999;
  font-family: var(--home-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.home-next__image {
  display: block;
  min-height: 380px;
  border: 1px solid #333;
  overflow: hidden;
}

.home-next__image img,
.home-card img,
.home-split img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-section-head {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: end;
  padding: 72px 56px 40px;
}

.home-section-title {
  font-size: clamp(44px, 5.6vw, 72px);
  line-height: .95;
}

.home-section-copy {
  max-width: 360px;
  color: #666;
  font-family: var(--home-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
  text-align: right;
}

.home-section-actions {
  display: flex;
  max-width: 420px;
  flex-direction: column;
  align-items: flex-end;
  gap: 16px;
}

.home-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
}

.home-card {
  display: flex;
  min-width: 0;
  color: var(--home-ink);
  text-decoration: none;
  flex-direction: column;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: var(--home-paper);
}

.home-card:nth-child(3n) {
  border-right: 0;
}

.home-card__image {
  position: relative;
  height: 220px;
  overflow: hidden;
  border-bottom: 1px solid var(--home-line);
}

.home-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid var(--home-line);
  background: var(--home-paper);
  padding: 5px 8px;
  font-family: var(--home-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.home-card__badge.is-live {
  background: var(--home-accent);
}

.home-card__body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 24px;
}

.home-card__city {
  display: block;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  overflow-wrap: anywhere;
}

.home-card__theme {
  display: block;
  margin-top: 4px;
  color: #666;
  font-family: var(--home-serif);
  font-size: 15px;
  font-style: italic;
}

.home-card__date {
  color: #888;
  font-family: var(--home-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: right;
}

.home-map {
  padding: 72px 56px;
  border-bottom: 1px solid var(--home-line);
}

.home-map__frame {
  position: relative;
  border: 1px solid var(--home-line);
  background: #fff;
  padding: 32px 40px;
}

.home-map__frame img {
  width: 100%;
  height: auto;
  opacity: .88;
}

.home-map__markers {
  position: absolute;
  inset: 32px 40px auto 40px;
  aspect-ratio: 1159.1 / 678;
  pointer-events: none;
}

.home-map-marker {
  position: absolute;
  z-index: 2;
  display: block;
  width: 12px;
  height: 12px;
  color: var(--home-ink);
  font-family: var(--home-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .8px;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transform: translate(-50%, -50%);
  pointer-events: auto;
}

.home-map-marker:hover,
.home-map-marker:focus-visible,
.home-map-marker[open] {
  z-index: 8;
}

.home-map-marker summary {
  display: block;
  width: 12px;
  height: 12px;
  list-style: none;
  cursor: pointer;
}

.home-map-marker summary::-webkit-details-marker {
  display: none;
}

.home-map-marker__dot {
  position: absolute;
  inset: 0;
  width: 12px;
  height: 12px;
  border: 1px solid var(--home-ink);
  background: var(--home-ink);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .85);
  transition: background .16s ease, border-color .16s ease, box-shadow .16s ease, transform .16s ease;
}

.home-map-marker.is-upcoming .home-map-marker__dot {
  background: var(--home-accent);
}

.home-map-marker.is-past .home-map-marker__dot {
  border-color: #767676;
  background: #767676;
}

.home-map-marker:hover .home-map-marker__dot,
.home-map-marker:focus-visible .home-map-marker__dot,
.home-map-marker[open] .home-map-marker__dot {
  border-color: var(--home-accent);
  background: var(--home-accent);
  box-shadow: 0 0 0 4px rgba(255, 168, 0, .24), 0 10px 20px rgba(0, 0, 0, .18);
  transform: scale(1.3);
}

.home-map-marker__label {
  position: absolute;
  top: 50%;
  left: calc(100% + 7px);
  display: block;
  max-width: 150px;
  border: 1px solid var(--home-line);
  background: rgba(255, 255, 255, .9);
  padding: 5px 7px;
  color: var(--home-ink);
  transform: translateY(-50%);
  transition: border-color .16s ease, background .16s ease, color .16s ease, box-shadow .16s ease;
  white-space: nowrap;
}

.home-map-marker__label b {
  color: var(--home-accent);
  font-weight: 900;
}

.home-map-marker.is-past .home-map-marker__label {
  color: #767676;
  font-weight: 700;
}

.home-map-marker.is-past .home-map-marker__label b {
  color: #8a8a8a;
  font-weight: 800;
}

.home-map-marker:hover .home-map-marker__label,
.home-map-marker:focus-visible .home-map-marker__label,
.home-map-marker[open] .home-map-marker__label {
  border-color: var(--home-ink);
  background: var(--home-paper);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
}

.home-map-marker.is-label-left {
  text-align: right;
}

.home-map-marker.is-label-left .home-map-marker__label {
  right: calc(100% + 7px);
  left: auto;
}

.home-map-marker.is-label-top .home-map-marker__label {
  top: auto;
  bottom: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
}

.home-map-marker.is-label-bottom .home-map-marker__label {
  top: calc(100% + 7px);
  left: 50%;
  transform: translateX(-50%);
}

.home-map-marker__menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  width: min(220px, 70vw);
  border: 1px solid var(--home-ink);
  background: var(--home-paper);
  box-shadow: 8px 8px 0 var(--home-ink);
  padding: 6px;
  transform: translateX(-50%);
}

.home-map-marker__menu a {
  display: block;
  padding: 9px 10px;
  color: var(--home-ink);
  text-align: left;
  text-decoration: none;
}

.home-map-marker__menu a.is-past {
  color: #767676;
}

.home-map-marker__menu a.is-past strong {
  font-weight: 700;
}

.home-map-marker__menu a.is-past span {
  color: #8a8a8a;
}

.home-map-marker__menu a.is-upcoming {
  color: var(--home-ink);
}

.home-map-marker__menu a + a {
  border-top: 1px solid var(--home-soft);
}

.home-map-marker__menu a:hover,
.home-map-marker__menu a:focus-visible {
  background: var(--home-accent);
  outline: 0;
}

.home-map-marker__menu strong,
.home-map-marker__menu span {
  display: block;
}

.home-map-marker__menu strong {
  font-size: 10px;
}

.home-map-marker__menu em {
  display: inline-flex;
  margin-left: 6px;
  border: 1px solid var(--home-ink);
  background: var(--home-accent);
  padding: 2px 4px;
  color: var(--home-ink);
  font-style: normal;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: .7px;
  vertical-align: middle;
}

.home-map-marker__menu span {
  margin-top: 4px;
  color: #666;
  font-size: 9px;
}

.home-map__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--home-soft);
  color: #666;
  font-family: var(--home-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-split {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 72px 56px;
  border-bottom: 1px solid var(--home-line);
}

.home-split.is-tinted {
  background: var(--home-bg);
}

.home-split.is-dark {
  background: var(--home-blue);
  color: var(--home-paper);
}

.home-split.is-dark .home-section-label,
.home-split.is-dark .home-deck {
  color: #b8c4da;
}

.home-split__media {
  min-height: 360px;
  border: 1px solid var(--home-line);
  overflow: hidden;
}

.home-speakers {
  padding: 72px 56px;
  border-bottom: 1px solid var(--home-line);
}

.home-speaker-strip {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.home-speaker {
  border: 1px solid var(--home-line);
  background: #fff;
  overflow: hidden;
}

.home-speaker__portrait {
  display: flex;
  aspect-ratio: 1 / 1;
  align-items: center;
  justify-content: center;
  background: var(--home-bg);
  color: var(--home-accent);
  font-family: var(--home-serif);
  font-size: 36px;
  font-style: italic;
}

.home-speaker__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-speaker__portrait span {
  display: block;
}

.home-speaker__name {
  padding: 10px 12px;
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 700;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.home-shop,
.home-sponsors,
.home-journey {
  border-bottom: 1px solid var(--home-line);
}

.home-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
}

.home-shop__item {
  border-right: 1px solid var(--home-line);
}

.home-shop__item:last-child {
  border-right: 0;
}

.home-shop__mock {
  display: flex;
  min-height: 260px;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--home-line);
  background: #fff;
  font-family: var(--home-mono);
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.home-shop__body {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
}

.home-sponsors {
  padding: 56px;
}

.home-sponsor-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-sponsor-row span,
.home-sponsor-row a {
  border: 1px solid var(--home-line);
  background: #fff;
  padding: 14px 24px;
  font-family: var(--home-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-decoration: none;
}

.home-sponsor-row a {
  border-style: dashed;
  color: var(--home-accent);
}

.home-sponsor-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-sponsor-card {
  position: relative;
  display: flex;
  min-height: 164px;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: #fff;
  padding: 32px 28px;
  color: var(--home-ink);
  text-decoration: none;
}

.home-sponsor-card--headline {
  grid-column: span 2;
  min-height: 220px;
}

.home-sponsor-card__tier {
  position: absolute;
  top: 12px;
  left: 12px;
  border: 1px solid var(--home-line);
  background: var(--home-paper);
  padding: 4px 8px;
  font-family: var(--home-mono);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.home-sponsor-card--headline .home-sponsor-card__tier {
  background: var(--home-accent);
}

.home-sponsor-card img {
  display: block;
  max-width: 78%;
  max-height: 78px;
  object-fit: contain;
}

.home-sponsor-card--headline img {
  max-height: 118px;
}

.home-sponsor-card--workshop img {
  width: auto;
  height: 70px;
  max-width: 94%;
  max-height: 70px;
}

.home-sponsor-card__name {
  font-family: var(--home-mono);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

.home-sponsor-card--headline .home-sponsor-card__name {
  font-size: 32px;
}

.home-subscribe {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
  padding: 64px 56px;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-ink);
  color: var(--home-paper);
}

.home-subscribe h2 {
  margin: 0;
  font-size: clamp(38px, 4.4vw, 56px);
  line-height: .95;
}

.home-subscribe p {
  margin: 12px 0 0;
  color: #aaa;
  font-family: var(--home-serif);
  font-size: 18px;
  font-style: italic;
}

.home-subscribe form {
  display: flex;
}

.home-subscribe input {
  width: 300px;
  border: 1px solid var(--home-paper);
  background: transparent;
  color: var(--home-paper);
  padding: 16px 20px;
  font-family: var(--home-mono);
  font-size: 15px;
}

.home-subscribe button {
  border: 1px solid var(--home-accent);
  background: var(--home-accent);
  color: var(--home-ink);
  padding: 16px 28px;
  font-family: var(--home-mono);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
}

.home-journey {
  padding: 72px 56px;
  background: var(--home-bg);
}

.home-year-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.home-year {
  min-height: 170px;
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  padding: 28px 24px;
}

.home-year strong {
  font-family: var(--home-mono);
  font-size: 32px;
}

.home-year p {
  color: #555;
  font-family: var(--home-serif);
  font-size: 15px;
  font-style: italic;
  line-height: 1.45;
}

.timeline-hero {
  padding: 80px 56px 48px;
  border-bottom: 1px solid var(--home-line);
}

.timeline-hero__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 64px;
  align-items: end;
}

.timeline-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 48px;
  border-top: 1px solid var(--home-line);
  border-left: 1px solid var(--home-line);
}

.timeline-jump a {
  border-right: 1px solid var(--home-line);
  border-bottom: 1px solid var(--home-line);
  background: #fff;
  padding: 14px 28px;
  font-family: var(--home-mono);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-decoration: none;
}

.timeline-year__head {
  display: flex;
  gap: 20px;
  align-items: baseline;
  border-bottom: 1px solid var(--home-line);
  background: var(--home-bg);
  padding: 20px 56px;
}

.timeline-year__head strong {
  font-family: var(--home-mono);
  font-size: 40px;
}

.timeline-edition {
  border-bottom: 1px solid var(--home-line);
}

.timeline-edition__grid {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(0, 1.35fr);
  min-height: 340px;
}

.timeline-edition__media {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  border-right: 1px solid var(--home-line);
  background: #111;
}

.timeline-edition__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}

.timeline-edition__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.03) 45%, rgba(0,0,0,.62));
}

.timeline-edition__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px;
  color: #fff;
}

.timeline-edition__badge {
  align-self: flex-start;
  background: var(--home-paper);
  color: var(--home-ink);
  padding: 4px 8px;
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.2px;
}

.timeline-edition__badge.is-upcoming {
  background: var(--home-accent);
}

.timeline-edition__city {
  font-size: 48px;
  font-weight: 800;
  line-height: .95;
  overflow-wrap: anywhere;
}

.timeline-edition__theme {
  margin-top: 6px;
  font-family: var(--home-serif);
  font-size: 20px;
  font-style: italic;
}

.timeline-edition__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 40px;
}

.timeline-edition__copy {
  max-width: 560px;
  color: #555;
  font-family: var(--home-serif);
  font-size: 18px;
  font-style: italic;
  line-height: 1.45;
}

.timeline-meta {
  color: #888;
  font-family: var(--home-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.timeline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
}

@media (max-width: 980px) {
  .home-nav__inner,
  .home-hero__grid,
  .home-next,
  .home-section-head,
  .home-map,
  .home-split,
  .home-speakers,
  .home-sponsors,
  .home-subscribe,
  .home-journey,
  .timeline-hero,
  .timeline-year__head {
    padding-left: 24px;
    padding-right: 24px;
  }

  .home-nav__tag {
    display: none;
  }

  .home-nav__links {
    gap: 14px;
  }

  .home-section-actions {
    align-items: flex-start;
  }

  .home-section-actions .home-section-copy {
    text-align: left;
  }

  .home-hero__grid,
  .home-next,
  .home-split,
  .home-subscribe,
  .timeline-hero__grid,
  .timeline-edition__grid {
    grid-template-columns: 1fr;
  }

  .home-section-head {
    display: block;
  }

  .home-section-copy {
    margin-top: 16px;
    text-align: left;
  }

  .home-card-grid,
  .home-shop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-card:nth-child(3n) {
    border-right: 1px solid var(--home-line);
  }

  .home-card:nth-child(2n),
  .home-shop__item:nth-child(2n) {
    border-right: 0;
  }

  .home-speaker-strip {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-year-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-sponsor-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-sponsor-card--headline {
    grid-column: span 1;
  }

  .timeline-edition__media {
    border-right: 0;
    border-bottom: 1px solid var(--home-line);
  }
}

@media (max-width: 640px) {
  :root {
    --btcpp-anchor-offset: 28px;
  }

  .home-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .home-nav__controls {
    grid-column: 2;
    grid-row: 1;
  }

  .home-nav__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 11px;
    white-space: nowrap;
  }

  .home-nav__menu {
    display: inline-flex;
  }

  .home-nav__links {
    display: none;
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 14px;
    border-top: 1px solid var(--home-line);
  }

  .home-nav__toggle:checked ~ .home-nav__links {
    display: grid;
  }

  .home-nav__links a {
    padding: 14px 0;
    border-bottom: 1px solid rgba(10, 10, 10, 0.12);
  }

  .home-nav__links a,
  .home-actions .home-button,
  .home-sponsor-cta .home-button {
    width: 100%;
  }

  .home-hero h1,
  .timeline-hero h1 {
    font-size: 58px;
  }

  .home-stats,
  .home-card-grid,
  .home-shop__grid,
  .home-speaker-strip,
  .home-year-grid {
    grid-template-columns: 1fr;
  }

  .home-sponsor-grid {
    grid-template-columns: 1fr;
  }

  .home-stat,
  .home-card,
  .home-shop__item {
    border-right: 0;
  }

  .home-hero__grid,
  .home-next,
  .home-split,
  .home-subscribe,
  .timeline-hero__grid,
  .timeline-edition__grid {
    gap: 28px;
  }

  .home-map__frame {
    padding: 18px 14px;
  }

  .home-map__markers {
    inset: 18px 14px auto 14px;
  }

  .home-card__body,
  .home-shop__body {
    display: block;
  }

  .home-card__date {
    display: block;
    margin-top: 12px;
    text-align: left;
  }

  .home-sponsor-card,
  .home-sponsor-card--headline {
    min-height: 150px;
    padding: 48px 18px 24px;
  }

  .home-sponsor-card--headline img,
  .home-sponsor-card img {
    max-width: 86%;
    max-height: 86px;
  }

  .home-sponsor-card--workshop img {
    height: 70px;
    max-height: 70px;
  }

  .home-sponsor-card--headline .home-sponsor-card__name,
  .home-sponsor-card__name {
    font-size: 22px;
  }

  .timeline-jump a {
    flex: 1 1 50%;
    padding: 12px 10px;
    text-align: center;
  }

  .timeline-edition__body {
    padding: 24px 18px;
  }

  .timeline-edition__overlay {
    padding: 20px;
  }

  .home-subscribe form {
    display: block;
  }

  .home-subscribe input {
    width: 100%;
  }

  .home-subscribe button {
    width: 100%;
    margin-top: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-ticker__track {
    animation: none;
  }
}
