.page-home {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  overflow-x: clip;
}

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

.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page-home a {
  color: inherit;
  text-decoration: none;
}

.page-home a:hover {
  color: var(--color-cyan);
}

.page-home .page-container {
  padding-inline: var(--gutter);
}

.page-home .btn {
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .btn--neon:hover,
.page-home .btn--ghost:hover {
  box-shadow: 0 0 18px rgba(255, 0, 255, 0.28), 0 0 52px rgba(255, 0, 255, 0.1);
}

.page-home .mono {
  font-family: var(--font-mono);
}

.page-home .home-hero {
  position: relative;
  min-height: min(92vh, 980px);
  display: flex;
  align-items: center;
  padding: 140px 0 64px;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-home .home-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-home .home-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 10, 15, 0.98) 0%, rgba(10, 10, 15, 0.9) 34%, rgba(19, 19, 32, 0.72) 70%, rgba(19, 19, 32, 0.45) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 32px;
  align-items: end;
}

.page-home .page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--color-cyan);
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-home .hero-eyebrow__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 18px rgba(255, 0, 255, 0.6), 0 0 52px rgba(255, 0, 255, 0.25);
}

.page-home .page-hero__title {
  font-size: clamp(32px, 5.2vw, 72px);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 0 0 22px;
  max-width: 15em;
  text-shadow: 0 0 24px rgba(255, 0, 255, 0.3), 0 0 70px rgba(255, 0, 255, 0.12);
}

.page-home .page-hero__lead {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-muted);
  max-width: 42em;
  margin: 0 0 28px;
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-hero__aside {
  display: grid;
  gap: 14px;
}

.page-home .hero-status {
  display: grid;
  gap: 4px;
  padding: 20px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 0, 255, 0.3);
  background: linear-gradient(150deg, rgba(255, 0, 255, 0.15), rgba(0, 229, 255, 0.05));
  box-shadow: 0 0 22px rgba(255, 0, 255, 0.14), 0 0 64px rgba(255, 0, 255, 0.06);
}

.page-home .hero-status__row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: 14px;
}

.page-home .hero-status__key {
  flex: 0 0 auto;
  color: var(--color-cyan);
  font-size: 12px;
  letter-spacing: 0.08em;
}

.page-home .hero-status__tag {
  margin-left: auto;
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-primary);
  color: var(--color-bg);
  font-weight: 700;
}

.page-home .hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0;
}

.page-home .hero-stats__item {
  margin: 0;
  padding: 14px 16px;
  background: rgba(19, 19, 32, 0.78);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .hero-stats__item dt {
  font-size: 12px;
  color: var(--color-muted);
  margin: 0 0 4px;
}

.page-home .hero-stats__item dd {
  margin: 0;
  font-size: 22px;
  font-weight: 800;
  font-family: var(--font-mono);
  color: var(--color-text);
}

.page-home .home-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  position: relative;
  z-index: 4;
  margin-top: -26px;
  padding-block: 0;
}

.page-home .home-quicknav__item {
  font-size: 14px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  background: var(--color-panel);
  color: var(--color-text);
  border: 1px solid rgba(255, 255, 255, 0.07);
  line-height: 1;
  transition: border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .home-quicknav__item:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  box-shadow: 0 0 18px rgba(255, 0, 255, 0.22);
}

.page-home .home-schedule {
  padding-block: 72px 48px;
}

.page-home .home-schedule__top {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-schedule__figure {
  position: relative;
  margin: 0;
}

.page-home .home-schedule__frame {
  aspect-ratio: 800 / 600;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 0, 255, 0.25);
  box-shadow: 0 0 20px rgba(255, 0, 255, 0.12);
}

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

.page-home .home-schedule__head {
  max-width: 32em;
}

.page-home .image-frame__label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
}

.page-home .home-schedule__figure .image-frame__label {
  display: inline-block;
  margin-top: 12px;
  color: var(--color-cyan);
}

.page-home .section__tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--color-primary);
  margin: 0 0 8px;
}

.page-home .section__title {
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  line-height: 1.15;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.page-home .section__lead {
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
  max-width: 36em;
}

.page-home .section__more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  color: var(--color-cyan);
  font-size: 14px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

.page-home .section__more:hover {
  border-bottom-color: var(--color-cyan);
}

.page-home .schedule-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 36px 0 8px;
}

.page-home .schedule-controls__group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: var(--radius-pill);
  background: var(--color-bg-raised);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.page-home .schedule-controls__label {
  margin-right: 2px;
  font-size: 12px;
  color: var(--color-muted);
}

.page-home .schedule-chip__radio {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-home .schedule-chip {
  cursor: pointer;
  padding: 8px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: var(--font-mono);
  color: var(--color-text);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.page-home .schedule-chip:hover {
  border-color: var(--color-cyan);
  color: var(--color-cyan);
}

.page-home .schedule-controls__group input:checked + .schedule-chip {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  font-weight: 700;
  box-shadow: 0 0 18px rgba(255, 0, 255, 0.3);
}

.page-home .schedule-controls__group input:focus-visible + .schedule-chip {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.page-home .schedule-controls__hint {
  margin: 8px 0 0;
  font-size: 12px;
  color: var(--color-muted);
  letter-spacing: 0.02em;
}

.page-home .home-channels {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 26px;
}

.page-home .channel-card {
  --cat-accent: var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  background: var(--color-bg-raised);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .channel-card[data-category="chat"] {
  --cat-accent: var(--color-cyan);
}

.page-home .channel-card[data-category="talent"] {
  --cat-accent: #b26ef5;
}

.page-home .channel-card[data-category="life"] {
  --cat-accent: #6ef5c9;
}

.page-home .channel-card:hover {
  border-color: var(--cat-accent);
  box-shadow: 0 12px 32px rgba(255, 0, 255, 0.12), 0 0 0 1px rgba(255, 0, 255, 0.18);
  transform: translateY(-2px);
}

.page-home .channel-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
}

.page-home .channel-card__id {
  color: var(--cat-accent);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.page-home .channel-card__status {
  font-size: 11px;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  background: rgba(0, 229, 255, 0.12);
  color: var(--color-cyan);
  font-family: var(--font-mono);
}

.page-home .channel-card__title {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.page-home .channel-card__desc {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-muted);
  font-weight: 300;
  flex-grow: 1;
}

.page-home .channel-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 12px;
  color: var(--color-muted);
}

.page-home .channel-card__meta span + span::before {
  content: "·";
  margin-right: 8px;
  color: var(--cat-accent);
}

.page-home .channel-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2px;
}

.page-home .channel-card__follow {
  font-size: 13px;
  color: var(--cat-accent);
  font-family: var(--font-mono);
  border-bottom: 1px solid transparent;
}

.page-home .channel-card__follow:hover {
  border-bottom-color: var(--cat-accent);
  color: var(--cat-accent);
}

.page-home .channel-card__tag {
  font-size: 12px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  border: 1px solid;
  border-color: var(--cat-accent);
  color: var(--cat-accent);
}

.page-home .home-schedule:has(#cat-dance:checked) .channel-card:not([data-category="dance"]) {
  display: none;
}

.page-home .home-schedule:has(#cat-chat:checked) .channel-card:not([data-category="chat"]) {
  display: none;
}

.page-home .home-schedule:has(#cat-talent:checked) .channel-card:not([data-category="talent"]) {
  display: none;
}

.page-home .home-schedule:has(#cat-life:checked) .channel-card:not([data-category="life"]) {
  display: none;
}

.page-home .home-schedule:has(#sort-hot:checked) .home-channels {
  display: flex;
  flex-wrap: wrap;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card {
  flex: 0 0 calc(50% - 7px);
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(1) {
  order: 8;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(2) {
  order: 7;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(3) {
  order: 6;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(4) {
  order: 5;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(5) {
  order: 4;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(6) {
  order: 3;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(7) {
  order: 2;
}

.page-home .home-schedule:has(#sort-hot:checked) .channel-card:nth-child(8) {
  order: 1;
}

.page-home .program-stack {
  display: grid;
  gap: 14px;
  margin-top: 34px;
}

.page-home .program-panel {
  border-radius: var(--radius-lg);
  background: var(--color-panel);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.page-home .program-panel__summary {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.page-home .program-panel__summary::-webkit-details-marker,
.page-home .program-panel__summary::marker {
  display: none;
  content: "";
}

.page-home .program-panel__summary:hover {
  background: var(--color-primary-soft);
}

.page-home .program-panel__summary::after {
  content: "＋";
  margin-left: 12px;
  color: var(--color-primary);
  font-family: var(--font-mono);
  font-size: 16px;
}

.page-home .program-panel[open] .program-panel__summary::after {
  content: "－";
}

.page-home .program-panel__index {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-cyan);
  letter-spacing: 0.08em;
}

.page-home .program-panel__day {
  font-size: 16px;
  font-weight: 700;
}

.page-home .program-panel__count {
  margin-left: auto;
  font-size: 12px;
  color: var(--color-muted);
}

.page-home .program-panel__content {
  padding: 6px 22px 24px;
}

.page-home .timeline {
  position: relative;
  padding-left: 24px;
}

.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(rgba(255, 0, 255, 0.65), rgba(0, 229, 255, 0.45), rgba(255, 255, 255, 0));
}

.page-home .timeline__item {
  position: relative;
  padding-bottom: 18px;
  padding-left: 2px;
}

.page-home .timeline__item:last-child {
  padding-bottom: 4px;
}

.page-home .timeline__item::before {
  content: "";
  position: absolute;
  left: -4px;
  top: 5px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--color-primary);
  box-shadow: 0 0 14px rgba(255, 0, 255, 0.65);
}

.page-home .timeline__item:nth-child(even)::before {
  background: var(--color-cyan);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.55);
}

.page-home .timeline__time {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--color-cyan);
  margin-bottom: 4px;
}

.page-home .timeline__title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.page-home .timeline__desc {
  margin: 4px 0 0;
  font-size: 13px;
  line-height: 1.7;
  color: var(--color-muted);
}

.page-home .home-replay {
  padding-block: 64px;
}

.page-home .home-replay__inner {
  display: grid;
  gap: 28px;
  align-items: center;
}

.page-home .home-replay__media {
  position: relative;
  aspect-ratio: 800 / 600;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(0, 229, 255, 0.3);
}

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

.page-home .home-replay__media .image-frame__label {
  position: absolute;
  left: 16px;
  bottom: 16px;
  margin: 0;
  padding: 6px 12px;
  background: rgba(255, 0, 255, 0.72);
  color: var(--color-bg);
  border-radius: var(--radius-pill);
  line-height: 1.4;
}

.page-home .home-replay__desc {
  margin: 0;
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.75;
  max-width: 34em;
}

.page-home .home-replay__list {
  list-style: none;
  margin: 18px 0 22px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.page-home .home-replay__list li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  color: var(--color-muted);
  line-height: 1.6;
}

.page-home .home-replay__list li::before {
  content: "↳";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-family: var(--font-mono);
}

.page-home .home-guide {
  padding-block: 72px;
}

.page-home .home-guide__head {
  max-width: 720px;
  margin-bottom: 30px;
}

.page-home .home-guide__steps {
  display: grid;
  gap: 16px;
}

.page-home .guide-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 28px 24px 24px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-raised);
  border: 1px solid rgba(255, 255, 255, 0.06);
  overflow: hidden;
}

.page-home .guide-step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  right: 24px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), var(--color-cyan));
  opacity: 0.75;
}

.page-home .guide-step:nth-child(2)::before {
  background: linear-gradient(90deg, var(--color-cyan), var(--color-primary));
}

.page-home .guide-step:nth-child(3)::before {
  background: linear-gradient(90deg, var(--color-primary), #6ef5c9);
}

.page-home .guide-step__num {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--color-cyan);
  letter-spacing: 0.08em;
}

.page-home .guide-step__title {
  font-size: 20px;
  line-height: 1.4;
  margin: 0;
  font-weight: 800;
}

.page-home .guide-step__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.75;
  color: var(--color-muted);
}

.page-home .guide-step__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 6px;
}

.page-home .guide-step__list li {
  font-size: 13px;
  line-height: 1.6;
  color: var(--color-muted);
  padding-left: 18px;
  position: relative;
}

.page-home .guide-step__list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-family: var(--font-mono);
}

.page-home .guide-step__more {
  margin-top: auto;
  font-size: 14px;
  color: var(--color-cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.4);
  align-self: flex-start;
}

.page-home .guide-step__more:hover {
  border-bottom-color: var(--color-cyan);
  color: var(--color-cyan);
}

.page-home .quality-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.page-home .quality-switch__label {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--color-muted);
  margin-right: 2px;
}

.page-home .quality-switch input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-home .quality-switch label {
  cursor: pointer;
  padding: 7px 12px;
  font-size: 12px;
  font-family: var(--font-mono);
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.page-home .quality-switch input:checked + label {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-bg);
  font-weight: 700;
  box-shadow: 0 0 16px rgba(255, 0, 255, 0.28);
}

.page-home .quality-switch input:focus-visible + label {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.page-home .home-review {
  padding-block: 72px;
}

.page-home .home-review__inner {
  display: grid;
  gap: 30px;
  align-items: center;
}

.page-home .home-review__conclusion {
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  line-height: 1.4;
  max-width: 22em;
  margin: 0 0 12px;
}

.page-home .home-review__neon {
  color: var(--color-primary);
  text-shadow: 0 0 18px rgba(255, 0, 255, 0.5), 0 0 50px rgba(255, 0, 255, 0.2);
}

.page-home .home-review__desc {
  color: var(--color-muted);
  font-weight: 300;
  line-height: 1.75;
  margin: 0;
  max-width: 34em;
}

.page-home .home-review__points {
  list-style: none;
  padding: 0;
  margin: 18px 0 24px;
  display: grid;
  gap: 10px;
}

.page-home .home-review__points li {
  position: relative;
  padding-left: 26px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
}

.page-home .home-review__points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-primary-soft);
  color: var(--color-primary);
  font-size: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
}

.page-home .home-review__media {
  aspect-ratio: 800 / 600;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 0, 255, 0.28);
}

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

.page-home .home-reminder {
  padding-block: 72px;
}

.page-home .home-reminder__head {
  max-width: 720px;
  margin-bottom: 30px;
}

.page-home .home-reminder__grid {
  display: grid;
  gap: 18px;
  align-items: start;
}

.page-home .home-reminder__pick,
.page-home .home-reminder__note {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: var(--color-bg-raised);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.page-home .home-reminder__subtitle {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
}

.page-home .reminder-check {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--color-panel);
  margin-bottom: 10px;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

.page-home .reminder-check:last-child {
  margin-bottom: 0;
}

.page-home .reminder-check:hover {
  border-color: var(--color-primary);
}

.page-home .reminder-check input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.page-home .reminder-check__box {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 1px solid var(--color-muted);
  background: transparent;
  position: relative;
  flex: 0 0 auto;
}

.page-home .reminder-check input:checked + .reminder-check__box {
  background: var(--color-primary);
  border-color: var(--color-primary);
}

.page-home .reminder-check input:checked + .reminder-check__box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border-right: 2px solid var(--color-bg);
  border-bottom: 2px solid var(--color-bg);
  transform: rotate(45deg);
}

.page-home .reminder-check input:focus-visible + .reminder-check__box {
  outline: 2px solid var(--color-cyan);
  outline-offset: 2px;
}

.page-home .reminder-check__text {
  font-size: 14px;
  line-height: 1.5;
}

.page-home .home-reminder__note ul {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-reminder__note li {
  position: relative;
  padding-left: 20px;
  font-size: 13px;
  color: var(--color-muted);
  line-height: 1.6;
}

.page-home .home-reminder__note li::before {
  content: "·";
  position: absolute;
  left: 4px;
  color: var(--color-cyan);
  font-size: 18px;
  top: -2px;
}

.page-home .home-trust {
  padding-block: 48px 72px;
}

.page-home .home-trust__inner {
  display: grid;
  gap: 22px;
}

.page-home .home-trust__brand {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(140deg, rgba(255, 0, 255, 0.1), rgba(19, 19, 32, 0.92));
  border: 1px solid rgba(255, 0, 255, 0.2);
}

.page-home .home-trust__name {
  margin: 0 0 8px;
  color: var(--color-primary);
  font-size: 13px;
  letter-spacing: 0.06em;
}

.page-home .home-trust__brand p {
  margin: 0;
  font-size: 13px;
  line-height: 1.9;
  color: var(--color-muted);
}

.page-home .home-trust__links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 14px;
}

.page-home .home-trust__links a {
  font-size: 13px;
  color: var(--color-cyan);
  border-bottom: 1px solid rgba(0, 229, 255, 0.35);
}

.page-home .home-trust__links a:hover {
  border-bottom-color: var(--color-cyan);
  color: var(--color-cyan);
}

.page-home .home-trust__brief {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-home .home-trust__metric {
  display: block;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  background: var(--color-bg-raised);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--color-muted);
  font-size: 13px;
}

@media (min-width: 560px) {
  .page-home .home-channels {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
    align-items: end;
  }

  .page-home .home-schedule__top {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  }

  .page-home .home-replay__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .page-home .home-review__inner {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }

  .page-home .home-trust__inner {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
  }
}

@media (min-width: 900px) {
  .page-home .home-guide__steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .page-home .home-reminder__grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-channels {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .page-home .home-schedule:has(#sort-hot:checked) .channel-card {
    flex-basis: calc(25% - 11px);
  }
}
