:root {
  --bg-light: #F4F5FA;
  --bg-purple: #170A24;
  --bg-crimson: #2A0D18;
  --card-bg: #FFFFFF;
  --primary: #00DBFF;
  --accent-orange: #FFB300;
  --accent-cyan: #00E5A0;
  --accent-magenta: #FF2E88;
  --live-red: #FF2940;
  --done-gray: #7A8B9A;
  --tag-purple: #9B6BFF;
  --tag-teal: #22D3EE;
  --tag-pink: #FF7AC3;
  --text-dark: #101020;
  --text-light: #F8F6FF;
  --border: #DCDAF0;
  --font-sans: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --radius: 6px;
  --container: 1440px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--bg-light);
}

h1, h2, h3, h4, p, ul, ol, figure {
  margin: 0;
}

ul, ol {
  margin: 0;
}

button {
  font: inherit;
}

a {
  -webkit-tap-highlight-color: transparent;
}

img, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

::selection {
  background: var(--accent-cyan);
  color: var(--text-dark);
}

:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.u-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 3vw, 40px);
}

.section {
  padding: clamp(40px, 6vw, 80px) 0;
}

.section--dark {
  background: var(--bg-purple);
  color: var(--text-light);
}

.section--crimson {
  background: var(--bg-crimson);
  color: var(--text-light);
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.section-kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
}

.section-title {
  font-size: clamp(1.6rem, 3.6vw, 2.5rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin-top: 0.12rem;
}

.section-more {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  border-bottom: 2px solid transparent;
}

.section-more:hover {
  border-bottom-color: var(--primary);
}

.diagonal-band {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(16, 16, 32, 0.05) 0,
    rgba(16, 16, 32, 0.05) 1px,
    transparent 1px,
    transparent 8px
  );
}

.diagonal-band--light {
  background-image: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.04) 0,
    rgba(255, 255, 255, 0.04) 1px,
    transparent 1px,
    transparent 8px
  );
}

.cut {
  clip-path: polygon(
    0 0,
    calc(100% - 14px) 0,
    100% 14px,
    100% 100%,
    14px 100%,
    0 calc(100% - 14px)
  );
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 120px;
  padding: 20px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  overflow: hidden;
}

.card--orange {
  background: var(--accent-orange);
  color: var(--text-dark);
  border-color: transparent;
}

.card--cyan {
  background: var(--accent-cyan);
  color: var(--text-dark);
  border-color: transparent;
}

.card--magenta {
  background: var(--accent-magenta);
  color: var(--text-dark);
  border-color: transparent;
}

.card--purple {
  background: var(--tag-purple);
  color: var(--text-dark);
  border-color: transparent;
}

.card__kicker {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--done-gray);
}

.card--orange .card__kicker,
.card--cyan .card__kicker,
.card--magenta .card__kicker,
.card--purple .card__kicker {
  color: rgba(16, 16, 32, 0.68);
}

.card__title {
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.card__meta {
  font-size: 0.78rem;
  color: var(--done-gray);
}

.card--orange .card__meta,
.card--cyan .card__meta,
.card--magenta .card__meta,
.card--purple .card__meta {
  color: rgba(16, 16, 32, 0.72);
}

.tile-matrix {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 120px;
  gap: 14px;
}

.tile {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 0;
  padding: 18px;
  background: var(--card-bg);
  border: 1px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  overflow: hidden;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16, 16, 32, 0.1);
}

.tile::after {
  content: "";
  position: absolute;
  right: -14px;
  bottom: -14px;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, transparent 49%, rgba(0, 0, 0, 0.08) 50%);
  pointer-events: none;
}

.tile--feature {
  grid-column: span 4;
  grid-row: span 2;
  background: var(--bg-purple);
  color: var(--text-light);
}

.tile--wide {
  grid-column: span 3;
}

.tile--tall {
  grid-row: span 2;
}

.tile--accent-orange {
  background: var(--accent-orange);
  color: var(--text-dark);
  border-color: transparent;
}

.tile--accent-cyan {
  background: var(--accent-cyan);
  color: var(--text-dark);
  border-color: transparent;
}

.tile--accent-magenta {
  background: var(--accent-magenta);
  color: var(--text-dark);
  border-color: transparent;
}

.tile--purple {
  background: var(--tag-purple);
  color: var(--text-dark);
  border-color: transparent;
}

.tile__title {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.2;
}

.tile__meta {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: rgba(16, 16, 32, 0.56);
}

.tile--feature .tile__meta,
.tile--feature .tile__title {
  color: var(--text-light);
}

.entry-list {
  display: flex;
  flex-direction: column;
}

.entry-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  padding: 12px 8px;
  border-bottom: 1px solid var(--border);
  color: var(--text-dark);
  text-decoration: none;
  background: transparent;
  transition: background 0.15s ease, transform 0.15s ease;
}

.entry-row:hover {
  background: rgba(0, 219, 255, 0.06);
  transform: translateX(4px);
}

.entry-row__title {
  font-weight: 800;
  line-height: 1.25;
}

.entry-row__meta {
  margin-top: 0.15rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--done-gray);
}

.entry-row__side {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--done-gray);
  text-align: right;
}

.section--dark .entry-row {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.section--dark .entry-row__meta,
.section--dark .entry-row__side {
  color: rgba(248, 246, 255, 0.62);
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 24px;
  border-radius: 4px;
  background: var(--bg-light);
  color: var(--text-dark);
  border: 1px solid var(--border);
  text-decoration: none;
}

.tag--purple {
  background: var(--tag-purple);
  color: var(--text-dark);
  border-color: transparent;
}

.tag--teal {
  background: var(--tag-teal);
  color: var(--text-dark);
  border-color: transparent;
}

.tag--pink {
  background: var(--tag-pink);
  color: var(--text-dark);
  border-color: transparent;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  padding: 0.1rem 0.5rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.6;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-dark);
  background: var(--done-gray);
}

.status-badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
}

.status-badge--live {
  background: var(--live-red);
  color: var(--text-dark);
}

.status-badge--live::before {
  animation: livePulse 1.6s infinite ease-in-out;
}

.status-badge--new {
  background: var(--accent-cyan);
  color: var(--text-dark);
}

.status-badge--done {
  background: var(--done-gray);
  color: var(--text-dark);
}

.status-badge--hd {
  background: var(--accent-orange);
  color: var(--text-dark);
}

.status-badge--hot {
  background: var(--accent-magenta);
  color: var(--text-dark);
}

.status-badge--exclusive {
  background: var(--primary);
  color: var(--text-dark);
}

@keyframes livePulse {
  0%, 100% {
    transform: scale(0.8);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

.order-mark {
  font-family: var(--font-mono);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  color: var(--tag-purple);
}

.order-mark--top {
  color: var(--accent-orange);
}

.section--dark .order-mark {
  color: var(--accent-cyan);
}

.metric-bar {
  height: 5px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.metric-bar__fill {
  display: block;
  height: 100%;
  width: var(--w, 50%);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--accent-cyan));
}

.index-tabs {
  display: flex;
  gap: 4px;
  overflow-x: auto;
  border-bottom: 2px solid var(--border);
}

.index-tab {
  appearance: none;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  padding: 0.6rem 0.85rem;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--done-gray);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.index-tab:hover {
  color: var(--primary);
}

.index-tab[aria-selected="true"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

.rail-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x proximity;
}

.rail-scroll > * {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.schedule-table th,
.schedule-table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}

.schedule-table th {
  background: var(--bg-light);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--done-gray);
}

.schedule-table td:first-child,
.schedule-table .time {
  font-family: var(--font-mono);
}

.section--dark .schedule-table th {
  background: rgba(255, 255, 255, 0.08);
  color: var(--primary);
}

.section--dark .schedule-table td {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--text-light);
}

.timeline {
  position: relative;
  list-style: none;
  padding: 0 0 0 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 6px;
  bottom: 6px;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--accent-magenta));
}

.timeline__item {
  position: relative;
  padding: 0 0 22px 18px;
}

.timeline__item::before {
  content: "";
  position: absolute;
  left: -24px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-cyan);
  border: 2px solid var(--bg-light);
  box-shadow: 0 0 12px rgba(0, 229, 160, 0.45);
}

.timeline__time {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--done-gray);
}

.timeline__title {
  margin: 0.1rem 0 0;
  font-weight: 800;
}

.section--dark .timeline__item::before {
  border-color: var(--bg-purple);
}

.media-box {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-purple), var(--bg-crimson) 60%, var(--bg-purple));
}

.media-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    120deg,
    transparent 0 14px,
    rgba(255, 255, 255, 0.05) 14px 15px
  );
}

.media-box::after {
  content: "";
  position: absolute;
  right: 8%;
  bottom: 8%;
  width: 30%;
  height: 14%;
  border: 1px solid var(--primary);
  box-shadow: 0 0 12px rgba(0, 219, 255, 0.55);
  transform: skewX(-20deg);
}

.media-box > img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-box--portrait {
  aspect-ratio: 3 / 4;
}

.media-box--wide {
  aspect-ratio: 21 / 9;
}

.media-box--tile {
  aspect-ratio: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--text-dark);
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.button:hover {
  background: var(--accent-cyan);
  box-shadow: 0 0 18px rgba(0, 229, 160, 0.35);
}

.button--ghost {
  background: transparent;
  color: var(--primary);
  border-color: currentColor;
}

.button--ghost:hover {
  background: rgba(0, 219, 255, 0.08);
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: var(--accent-cyan);
  color: var(--text-dark);
  font-weight: 800;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 0.15s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: relative;
  z-index: 100;
  color: var(--text-light);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 120px), var(--bg-purple);
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.02) 0,
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px,
    transparent 7px
  );
  pointer-events: none;
}

.site-header__bar {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px clamp(16px, 3vw, 40px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  text-decoration: none;
  color: inherit;
}

.brand__neon {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 219, 255, 0.14), 0 0 16px rgba(0, 219, 255, 0.85);
}

.brand__text {
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

.brand__domain {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: rgba(248, 246, 255, 0.55);
  letter-spacing: 0.04em;
}

.site-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 14px;
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  padding: 0;
}

.site-nav__link {
  display: inline-block;
  padding: 0.5rem 0.7rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: rgba(248, 246, 255, 0.84);
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 5px;
  white-space: nowrap;
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
}

.site-nav__link:hover {
  color: var(--primary);
  background: rgba(0, 219, 255, 0.08);
}

.site-nav__link[aria-current="page"] {
  color: var(--accent-orange);
  border-color: rgba(255, 179, 0, 0.5);
  background: rgba(255, 179, 0, 0.1);
}

.site-nav__status {
  margin: 0;
  padding-left: 8px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: rgba(248, 246, 255, 0.55);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  color: var(--text-light);
  cursor: pointer;
}

.nav-toggle__line {
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.index-strip {
  position: relative;
  z-index: 1;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 8px clamp(16px, 3vw, 40px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.78rem;
  color: rgba(248, 246, 255, 0.62);
}

.index-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.index-strip__link {
  color: var(--primary);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.index-strip__link:hover {
  color: var(--accent-orange);
}

.scroll-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  height: 3px;
  background-image: linear-gradient(90deg, var(--primary), var(--accent-cyan), var(--accent-magenta));
  transform: scaleX(0);
  transform-origin: 0 50%;
  pointer-events: none;
  will-change: transform;
}

.site-footer {
  position: relative;
  background: var(--bg-purple);
  color: var(--text-light);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-orange), var(--accent-magenta), var(--primary), var(--accent-cyan));
  opacity: 0.9;
}

.site-footer__grid {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.6fr 0.8fr 1.2fr 1.2fr;
  gap: clamp(20px, 4vw, 56px);
  padding: 56px clamp(16px, 3vw, 40px) 40px;
}

.site-footer__bottom {
  position: relative;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px clamp(16px, 3vw, 40px) 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: rgba(248, 246, 255, 0.62);
}

.brand--footer {
  color: var(--text-light);
}

.footer-brand__domain {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--primary);
}

.footer-brand__desc {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: rgba(248, 246, 255, 0.55);
}

.footer-title {
  margin-bottom: 0.9rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(248, 246, 255, 0.6);
}

.footer-nav ul,
.footer-meta ul {
  display: grid;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
}

.footer-nav a,
.footer-meta a {
  color: rgba(248, 246, 255, 0.72);
  text-decoration: none;
  font-size: 0.86rem;
}

.footer-nav a:hover,
.footer-meta a:hover {
  color: var(--primary);
  text-decoration: underline;
}

.footer-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.footer-chip {
  padding: 0.15rem 0.6rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(248, 246, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 700;
}

.footer-chip:nth-child(4n + 1) {
  border-color: rgba(255, 179, 0, 0.5);
  color: var(--accent-orange);
}

.footer-chip:nth-child(4n + 2) {
  border-color: rgba(0, 229, 160, 0.45);
  color: var(--accent-cyan);
}

.footer-chip:nth-child(4n + 3) {
  border-color: rgba(255, 46, 136, 0.45);
  color: var(--accent-magenta);
}

.meta-list li {
  font-size: 0.82rem;
  line-height: 1.5;
  color: rgba(248, 246, 255, 0.8);
}

.meta-list__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1200px) {
  .site-nav__status {
    display: none;
  }

  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 900px) {
  .site-header__bar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
    order: 2;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    order: 3;
    width: 100%;
    margin-left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 6px;
  }

  .site-nav[data-open] {
    display: flex;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .site-nav__link {
    border-radius: 0;
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .site-nav__status {
    margin: 0.4rem 0 0.6rem;
    padding-left: 0;
    border-left: 0;
  }

  .index-strip {
    flex-direction: column;
    align-items: flex-start;
  }

  .tile-matrix {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .tile--feature {
    grid-column: span 4;
  }
}

@media (max-width: 640px) {
  .brand__domain {
    display: none;
  }

  .site-header__bar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .index-strip {
    font-size: 0.72rem;
  }

  .tile-matrix {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 104px;
  }

  .tile--feature,
  .tile--wide,
  .tile--tall,
  .tile--small {
    grid-column: span 2;
  }

  .tile--tall {
    grid-row: span 1;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .entry-row {
    grid-template-columns: 40px minmax(0, 1fr);
  }

  .entry-row__side {
    grid-column: 2;
    text-align: left;
  }

  .site-footer__grid {
    grid-template-columns: 1fr;
    padding: 40px 16px 24px;
  }

  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}
