:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #0c0d0f;
  color: #fff;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  --page: #0c0d0f;
  --panel: rgba(24, 24, 27, 0.72);
  --border: rgba(255, 255, 255, 0.1);
  --muted: #a1a1aa;
  --faint: #71717a;
  --blue: #2563eb;
  --amber: #fbbf24;
  --twitch: #9146ff;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  scroll-behavior: smooth;
  background: var(--page);
  scroll-padding-top: 98px;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 50% -8rem, rgba(37, 99, 235, 0.18), transparent 42rem),
    #0c0d0f;
  color: #fff;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
  font: inherit;
}

::selection {
  color: white;
  background: rgba(245, 158, 11, 0.38);
}

:focus-visible {
  outline: 2px solid #60a5fa;
  outline-offset: 3px;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.ambient__grid {
  position: absolute;
  inset: 0 0 auto;
  height: 46rem;
  opacity: 0.7;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: linear-gradient(to bottom, black, transparent 84%);
  mask-image: linear-gradient(to bottom, black, transparent 84%);
}

.ambient__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(100px);
  opacity: 0.18;
}

.ambient__glow--one {
  top: 2rem;
  left: 50%;
  width: min(80vw, 55rem);
  height: 27rem;
  background: #2563eb;
  transform: translateX(-50%);
}

.ambient__glow--two {
  top: 46rem;
  right: -12rem;
  width: 28rem;
  height: 28rem;
  background: #9146ff;
  opacity: 0.07;
}

.topbar-wrap {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: max(0.75rem, env(safe-area-inset-top)) 0.75rem 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(calc(100% - 0px), 70rem);
  min-height: 64px;
  margin: 0 auto;
  padding: 0.7rem 0.75rem 0.7rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: rgba(9, 9, 11, 0.76);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px);
}

.brand,
.topbar__actions,
.icon-button,
.website-button {
  display: flex;
  align-items: center;
}

.brand {
  min-width: 0;
  gap: 0.65rem;
  border-radius: 0.75rem;
}

.brand__mark {
  display: grid;
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(96, 165, 250, 0.24);
  border-radius: 0.8rem;
  background: linear-gradient(145deg, #2563eb, #172554);
  box-shadow: inset 0 1px rgba(255, 255, 255, 0.18), 0 10px 25px rgba(30, 64, 175, 0.3);
  font-size: 1.05rem;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.brand__mark img {
  width: 100%;
  height: 100%;
  padding: 0.18rem;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(0, 0, 0, 0.32));
}

.brand__copy {
  display: grid;
  min-width: 0;
  line-height: 1;
}

.brand__copy strong {
  font-size: 0.93rem;
  letter-spacing: -0.025em;
}

.brand__copy small {
  margin-top: 0.32rem;
  color: var(--amber);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.topbar__actions {
  gap: 0.45rem;
}

.icon-button,
.website-button {
  min-height: 44px;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 0.75rem;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 800;
  transition: border-color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.icon-button {
  min-width: 44px;
  padding: 0 0.72rem;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.045);
}

.icon-button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.website-button {
  padding: 0 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.07);
}

.icon-button:hover,
.website-button:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}

.desktop-label {
  display: none;
}

main,
.footer {
  width: min(calc(100% - 2rem), 68rem);
  margin: 0 auto;
}

.hero {
  display: grid;
  align-items: center;
  gap: 1.9rem;
  min-height: min(46rem, 92svh);
  padding: 7.2rem 0 3.3rem;
  text-align: center;
}

.profile {
  position: relative;
  width: min(44vw, 11.5rem);
  margin: 0 auto;
}

.profile__halo {
  position: absolute;
  inset: 8%;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.38);
  filter: blur(32px);
}

.profile__frame {
  position: relative;
  display: grid;
  aspect-ratio: 1;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 2rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.42), inset 0 1px rgba(255, 255, 255, 0.08);
}

@keyframes profile-breathe {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.025);
  }
}

.profile__fallback {
  position: absolute;
  color: rgba(255, 255, 255, 0.14);
  font-size: 4.2rem;
  font-weight: 950;
}

.profile img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0.7rem;
  filter: drop-shadow(0 16px 20px rgba(0, 0, 0, 0.4));
  animation: profile-breathe 4.4s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(59, 130, 246, 0.22);
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.11);
  color: #fcd34d;
  font-size: 0.64rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease;
}

.eyebrow__dot,
.status-dot {
  display: inline-block;
  width: 0.45rem;
  height: 0.45rem;
  flex: 0 0 auto;
  border-radius: 50%;
}

.eyebrow__dot {
  background: var(--amber);
  box-shadow: 0 0 18px rgba(251, 191, 36, 0.65);
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.eyebrow [data-live-copy] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.eyebrow.is-live {
  border-color: rgba(52, 211, 153, 0.3);
  background: rgba(16, 185, 129, 0.11);
  color: #a7f3d0;
}

.eyebrow.is-live .eyebrow__dot {
  background: #34d399;
  box-shadow: 0 0 18px rgba(52, 211, 153, 0.72);
  animation: live-pulse 1.8s ease-out infinite;
}

.eyebrow.is-offline {
  border-color: rgba(248, 113, 113, 0.22);
  background: rgba(239, 68, 68, 0.08);
  color: #fca5a5;
}

.eyebrow.is-offline .eyebrow__dot {
  background: #f87171;
  box-shadow: 0 0 14px rgba(248, 113, 113, 0.5);
}

@keyframes live-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.5), 0 0 18px rgba(52, 211, 153, 0.72);
  }
  70%,
  100% {
    box-shadow: 0 0 0 7px rgba(52, 211, 153, 0), 0 0 18px rgba(52, 211, 153, 0.72);
  }
}

.hero h1 {
  margin: 1rem 0 0;
  font-size: clamp(3.45rem, 18vw, 6.7rem);
  font-weight: 950;
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.tagline {
  margin: 0.8rem 0 0;
  color: #d4d4d8;
  font-size: 1rem;
  font-weight: 750;
}

.intro {
  max-width: 39rem;
  margin: 0.85rem auto 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.7;
}

.hero__actions {
  display: grid;
  gap: 0.65rem;
  max-width: 25rem;
  margin: 1.6rem auto 0;
}

.primary-button,
.secondary-button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  border-radius: 1rem;
  font-size: 0.9rem;
  font-weight: 900;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.primary-button {
  background: var(--twitch);
  box-shadow: 0 16px 35px rgba(81, 28, 136, 0.35), inset 0 1px rgba(255, 255, 255, 0.2);
}

.primary-button:hover {
  background: #a05eff;
  box-shadow: 0 18px 42px rgba(81, 28, 136, 0.48);
  transform: translateY(-2px);
}

.status-dot {
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.13);
}

.secondary-button {
  border: 1px solid var(--border);
  background: rgba(24, 24, 27, 0.78);
  color: #e4e4e7;
}

.secondary-button:hover {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(39, 39, 42, 0.88);
  transform: translateY(-2px);
}

.quick-launch {
  display: grid;
  grid-column: 1 / -1;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.2rem 0;
}

.quick-launch__label {
  justify-self: center;
  color: #52525b;
  font-size: 0.54rem;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.quick-launch__links {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  gap: 0.48rem;
  min-width: 0;
  padding: 0.12rem 0 0.28rem;
  overflow-x: hidden;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.quick-launch__links::before,
.quick-launch__links::after {
  width: auto;
  min-width: 1rem;
  height: 3px;
  flex: 1 1 0;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.035), rgba(24, 24, 27, 0.78) 48%, rgba(255, 255, 255, 0.065));
  content: "";
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.48), 0 1px 0 rgba(255, 255, 255, 0.045);
}

.quick-launch__links::before {
  -webkit-mask-image: linear-gradient(90deg, transparent, black 58%);
  mask-image: linear-gradient(90deg, transparent, black 58%);
}

.quick-launch__links::after {
  -webkit-mask-image: linear-gradient(90deg, black 42%, transparent);
  mask-image: linear-gradient(90deg, black 42%, transparent);
}

.quick-launch__links::-webkit-scrollbar {
  display: none;
}

.quick-link {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  place-items: center;
  border: 1px solid rgba(var(--quick-rgb), 0.14);
  border-radius: 0.72rem;
  background: rgba(var(--quick-rgb), 0.045);
  scroll-snap-align: start;
  transition: border-color 160ms ease, background-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.quick-link img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.quick-icon {
  width: 1rem;
  height: 1rem;
  color: var(--quick);
  fill: currentColor;
}

.quick-icon--instagram {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

.quick-icon--instagram .quick-icon__dot {
  fill: currentColor;
  stroke: none;
}

.quick-link--light img {
  filter: invert(1);
}

.quick-link--avatar img {
  width: 1.65rem;
  height: 1.65rem;
}

.quick-link:hover,
.quick-link:focus-visible {
  border-color: rgba(var(--quick-rgb), 0.42);
  background: rgba(var(--quick-rgb), 0.1);
  box-shadow: 0 8px 20px rgba(var(--quick-rgb), 0.1);
  transform: translateY(-2px);
}

.channels {
  padding: 3.5rem 0 2.5rem;
}

.section-heading {
  display: grid;
  gap: 0.6rem;
}

.section-kicker {
  margin: 0 0 0.5rem;
  color: var(--amber);
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(1.9rem, 8vw, 3rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.section-heading > p {
  margin: 0;
  color: var(--faint);
  font-size: 0.9rem;
}

.filters {
  display: flex;
  gap: 0.45rem;
  margin: 1.5rem -1rem 1.1rem;
  padding: 0 1rem 0.3rem;
  overflow-x: auto;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
}

.filters::-webkit-scrollbar {
  display: none;
}

.filter {
  min-height: 42px;
  flex: 0 0 auto;
  padding: 0 0.95rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: #a1a1aa;
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 800;
  scroll-snap-align: start;
  transition: border-color 160ms ease, background 160ms ease, color 160ms ease;
}

.filter:hover {
  border-color: rgba(255, 255, 255, 0.22);
  color: white;
}

.filter.is-active {
  border-color: rgba(96, 165, 250, 0.4);
  background: rgba(37, 99, 235, 0.16);
  color: #dbeafe;
}

.channel-grid {
  display: grid;
  gap: 0.7rem;
}

.channel-card {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  min-height: 110px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 0 0, rgba(var(--brand-rgb), 0.085), transparent 14rem),
    rgba(255, 255, 255, 0.032);
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12);
  transition: opacity 180ms ease, transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.channel-card::before {
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--brand);
  content: "";
  opacity: 0.68;
}

.channel-card::after {
  position: absolute;
  right: 2.85rem;
  bottom: 0.7rem;
  max-width: calc(100% - 7rem);
  padding: 0.38rem 0.58rem;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-rgb), 0.24);
  border-radius: 0.65rem;
  background: rgba(12, 13, 15, 0.92);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
  color: var(--brand);
  content: attr(data-preview);
  font-size: 0.58rem;
  font-weight: 850;
  letter-spacing: 0.045em;
  opacity: 0;
  pointer-events: none;
  text-overflow: ellipsis;
  text-transform: uppercase;
  transform: translateY(7px) scale(0.97);
  transition: opacity 180ms ease, transform 180ms ease;
  white-space: nowrap;
}

.channel-card:hover,
.channel-card:focus-visible {
  border-color: rgba(var(--brand-rgb), 0.42);
  background:
    radial-gradient(circle at 0 0, rgba(var(--brand-rgb), 0.16), transparent 15rem),
    rgba(255, 255, 255, 0.05);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 0 1px rgba(var(--brand-rgb), 0.05);
  transform: translateY(-3px);
}

.channel-card[hidden] {
  display: none;
}

.channel-card.is-opened {
  border-color: rgba(var(--brand-rgb), 0.28);
}

.channel-card--x {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), transparent 48%),
    rgba(255, 255, 255, 0.028);
}

.channel-card--x:hover,
.channel-card--x:focus-visible {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent 52%),
    rgba(255, 255, 255, 0.045);
}

.channel-card--github {
  background:
    radial-gradient(circle at 0 0, rgba(139, 148, 158, 0.2), transparent 15rem),
    linear-gradient(135deg, rgba(45, 51, 59, 0.42), rgba(255, 255, 255, 0.025));
}

.channel-card--github:hover,
.channel-card--github:focus-visible {
  background:
    radial-gradient(circle at 0 0, rgba(139, 148, 158, 0.3), transparent 16rem),
    linear-gradient(135deg, rgba(45, 51, 59, 0.58), rgba(255, 255, 255, 0.04));
}

.channel-card__icon {
  position: relative;
  display: grid;
  width: 3rem;
  height: 3rem;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 0.9rem;
  background: rgba(var(--brand-rgb), 0.09);
  color: var(--brand);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: -0.03em;
}

.channel-card__icon img {
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  object-fit: contain;
}

.channel-card__icon--light img {
  filter: invert(1);
}

.channel-card__icon--avatar img {
  width: 100%;
  height: 100%;
  padding: 0.28rem;
  object-fit: contain;
}

.channel-card__body {
  display: grid;
  min-width: 0;
}

.channel-card__topline {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 0.5rem;
}

.channel-card__topline strong {
  overflow: hidden;
  font-size: 0.95rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-card__topline em {
  flex: 0 0 auto;
  padding: 0.23rem 0.43rem;
  border: 1px solid rgba(var(--brand-rgb), 0.18);
  border-radius: 999px;
  background: rgba(var(--brand-rgb), 0.08);
  color: var(--brand);
  font-size: 0.53rem;
  font-style: normal;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.channel-card__handle {
  overflow: hidden;
  margin-top: 0.18rem;
  color: var(--faint);
  font-size: 0.72rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.channel-card__description {
  display: none;
  margin-top: 0.45rem;
  color: #a1a1aa;
  font-size: 0.78rem;
  line-height: 1.45;
}

.channel-card__arrow {
  align-self: start;
  color: var(--faint);
  font-size: 1rem;
  transition: color 160ms ease, transform 160ms ease;
}

.channel-card:hover .channel-card__arrow {
  color: var(--brand);
  transform: translate(2px, -2px);
}

.channel-card__state {
  position: absolute;
  right: 1rem;
  bottom: 0.8rem;
  color: #52525b;
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: opacity 150ms ease;
}

.channel-card.is-opened .channel-card__state {
  color: var(--brand);
}

.filter-status {
  margin: 0.9rem 0 0;
  color: #52525b;
  font-size: 0.68rem;
  text-align: right;
}

.footer {
  display: grid;
  gap: 0.8rem;
  padding: 2rem 0 calc(2rem + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: #52525b;
  font-size: 0.72rem;
  text-align: center;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: #71717a;
}

.footer p span {
  margin: 0 0.3rem;
}

.footer nav {
  display: flex;
  justify-content: center;
  gap: 1.1rem;
}

.footer a {
  min-height: 28px;
  color: #71717a;
}

.footer a:hover {
  color: #d4d4d8;
}

.toast {
  position: fixed;
  right: 50%;
  bottom: calc(1rem + env(safe-area-inset-bottom));
  z-index: 80;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 0.8rem;
  background: rgba(24, 24, 27, 0.96);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.38);
  color: white;
  font-size: 0.78rem;
  font-weight: 800;
  opacity: 0;
  pointer-events: none;
  transform: translate(50%, 0.75rem);
  transition: opacity 180ms ease, transform 180ms ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translate(50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .quick-link::after {
    position: absolute;
    bottom: calc(100% + 0.5rem);
    left: 50%;
    z-index: 4;
    padding: 0.35rem 0.5rem;
    border: 1px solid rgba(var(--quick-rgb), 0.24);
    border-radius: 0.55rem;
    background: rgba(12, 13, 15, 0.96);
    color: #e4e4e7;
    content: attr(aria-label);
    font-size: 0.6rem;
    font-weight: 800;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 5px);
    transition: opacity 150ms ease, transform 150ms ease;
    white-space: nowrap;
  }

  .quick-link:hover::after,
  .quick-link:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
  }

  .channel-card:hover::after,
  .channel-card:focus-visible::after {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .channel-card:hover .channel-card__state,
  .channel-card:focus-visible .channel-card__state {
    opacity: 0;
  }
}

@media (min-width: 520px) {
  .desktop-label {
    display: inline;
  }

  .hero__actions {
    grid-template-columns: 1.25fr 1fr;
  }

  .channel-card__description {
    display: block;
  }

  .channel-card {
    min-height: 126px;
  }
}

@media (min-width: 720px) {
  .topbar-wrap {
    padding: 1rem 1.5rem 0;
  }

  .topbar {
    padding-inline: 1rem;
  }

  .hero {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 4rem;
    min-height: 43rem;
    padding: 9rem 2rem 4.5rem;
    text-align: left;
  }

  .profile {
    width: min(100%, 17rem);
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(5.3rem, 11vw, 7.8rem);
  }

  .intro {
    margin-left: 0;
  }

  .hero__actions {
    margin-left: 0;
  }

  .quick-launch {
    grid-template-columns: minmax(0, 1fr);
    gap: 0.45rem;
    width: 100%;
    margin: 0;
  }

  .quick-launch__links {
    justify-content: center;
    padding: 0;
    overflow: visible;
  }

  .channels {
    padding-top: 4.5rem;
  }

  .section-heading {
    grid-template-columns: 1fr auto;
    align-items: end;
  }

  .filters {
    margin-right: 0;
    margin-left: 0;
    padding-right: 0;
    padding-left: 0;
  }

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

  .channel-card--featured {
    grid-column: span 2;
  }

  .footer {
    grid-template-columns: 1fr auto;
    align-items: center;
    text-align: left;
  }
}

@media (min-width: 980px) {
  .hero {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 5rem;
  }

  .channel-card--featured {
    min-height: 136px;
    padding-inline: 1.2rem;
  }

  .channel-card--featured .channel-card__icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

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

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