.page-home {
  --home-line: rgba(30, 90, 168, 0.18);
  overflow-x: hidden;
  background: var(--c-bg);
  color: var(--c-ink);
}

.page-home .home-hero {
  position: relative;
  padding: 28px 16px 48px;
  background: linear-gradient(160deg, #ffffff 0%, var(--c-bg) 58%, rgba(6, 182, 212, 0.07) 100%);
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(30deg, rgba(30, 90, 168, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(30, 90, 168, 0.05) 87.5%),
    linear-gradient(150deg, rgba(30, 90, 168, 0.05) 12%, transparent 12.5%, transparent 87%, rgba(30, 90, 168, 0.05) 87.5%);
  background-size: 48px 84px;
  pointer-events: none;
}

.page-home .hero-window {
  position: relative;
  max-width: 1160px;
  margin: 0 auto;
  padding: 28px 16px 38px;
  border: 2px solid var(--c-primary);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 12px 12px 0 rgba(30, 90, 168, 0.12);
}

.page-home .hero-window-bar {
  position: absolute;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: 10px;
  background: linear-gradient(90deg, var(--c-red) 0 20%, var(--c-accent) 20% 40%, var(--c-green) 40% 60%, var(--c-cyan) 60% 80%, var(--c-purple) 80% 100%);
}

.page-home .hero-window-tick {
  position: absolute;
  top: 20px;
  bottom: 20px;
  width: 10px;
  opacity: 0.5;
  background: repeating-linear-gradient(180deg, var(--c-primary) 0 4px, transparent 4px 9px);
}

.page-home .hero-window-tick--left {
  left: -2px;
}

.page-home .hero-window-tick--right {
  right: -2px;
}

.page-home .hero-window-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 16px;
  margin-bottom: 24px;
  border-bottom: 1px dashed var(--home-line);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--c-primary);
}

.page-home .hero-window-meta span + span::before {
  content: "/";
  margin-right: 10px;
  color: var(--c-accent);
}

.page-home .hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
}

.page-home .hero-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.08);
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--c-green);
}

.page-home h1 {
  margin: 0 0 18px;
  font-family: var(--font-heading);
  font-size: clamp(26px, 5.6vw, 42px);
  line-height: 1.16;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--c-primary);
}

.page-home .hero-lead {
  margin: 0 0 10px;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-ink);
}

.page-home .hero-sub {
  margin: 0 0 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

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

.page-home .hero-visual {
  position: relative;
}

.page-home .hero-visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
  border: 1px solid var(--home-line);
}

.page-home .hero-score-chip {
  position: absolute;
  right: 12px;
  bottom: 12px;
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  background: var(--c-primary);
  border-radius: 4px;
  color: var(--c-white);
  box-shadow: 0 10px 24px rgba(30, 90, 168, 0.3);
}

.page-home .hero-score-chip-label {
  font-size: 11px;
  letter-spacing: 0.06em;
  opacity: 0.85;
}

.page-home .hero-score-chip-value {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
}

.page-home .hero-window-rule {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 16px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.page-home .hero-window-rule span {
  width: 2px;
  height: 8px;
  background: var(--c-primary);
  opacity: 0.3;
}

.page-home .home-stats {
  position: relative;
  padding: 36px 0;
  background: var(--c-bg);
}

.page-home .home-stats::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 0;
  bottom: 12px;
  left: 0;
  background: var(--c-primary);
  clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
  z-index: 0;
}

.page-home .home-stats .container {
  position: relative;
  z-index: 1;
}

.page-home .stat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 16px;
}

.page-home .stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  color: var(--c-white);
}

.page-home .stat-num {
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .stat-unit {
  margin-left: 3px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
}

.page-home .stat-label {
  margin-top: 8px;
  font-size: 13px;
  letter-spacing: 0.04em;
  opacity: 0.82;
}

.page-home .home-schedule {
  position: relative;
  padding: 64px 0 60px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), var(--c-bg) 30%);
}

.page-home .home-schedule::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 6px;
  background: linear-gradient(90deg, var(--c-accent), var(--c-cyan));
}

.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}

.page-home .section-kicker {
  margin: 0 0 6px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--c-primary);
}

.page-home .section-head h2,
.page-home .paths-title,
.page-home .mobile-copy h2 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .section-head-note {
  margin: 4px 0 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .schedule-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.page-home .schedule-board {
  padding: 20px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 10px;
  box-shadow: 0 2px 0 rgba(30, 90, 168, 0.05);
}

.page-home .schedule-board-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 12px;
  margin-bottom: 6px;
  border-bottom: 2px solid var(--c-bg);
}

.page-home .schedule-board-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .schedule-board-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 800;
  color: var(--c-green);
}

.page-home .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--c-green);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.15);
}

.page-home .match-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .match-item {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 12px;
  padding: 13px 0;
  border-bottom: 1px dashed var(--c-line);
}

.page-home .match-item:last-child {
  border-bottom: 0;
}

.page-home .match-item:hover {
  background: rgba(245, 158, 11, 0.04);
}

.page-home .match-sport {
  grid-row: 1 / 3;
  justify-self: start;
  padding: 6px 9px;
  background: var(--c-primary);
  border-radius: 4px;
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .match-state {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  font-size: 12px;
  color: var(--c-muted);
  white-space: nowrap;
}

.page-home .match-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 12px;
  grid-column: 2 / 4;
  grid-row: 2;
}

.page-home .match-team {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--c-ink);
  white-space: nowrap;
}

.page-home .match-team--right {
  color: var(--c-muted);
}

.page-home .match-score {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-accent);
  padding: 2px 10px;
  background: rgba(245, 158, 11, 0.12);
  border-radius: 6px;
}

.page-home .schedule-sports {
  position: relative;
  overflow: hidden;
  padding: 24px 20px;
  background: linear-gradient(160deg, var(--c-primary) 0%, var(--c-primary-deep) 100%);
  border-radius: 10px;
  color: var(--c-white);
}

.page-home .schedule-sports::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 140px;
  height: 140px;
  background: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.06) 0 6px, transparent 6px 12px);
  transform: rotate(10deg);
}

.page-home .schedule-sports-title {
  margin: 0 0 16px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .sport-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 18px;
}

.page-home .sport-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.page-home .sport-name {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.page-home .sport-count {
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: var(--c-accent);
}

.page-home .schedule-footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed var(--c-line);
}

.page-home .schedule-footer p {
  margin: 0;
  font-size: 14px;
  color: var(--c-muted);
}

.page-home .home-mobile-nav {
  position: relative;
  padding: 64px 0;
  background:
    linear-gradient(210deg, rgba(6, 182, 212, 0.08), transparent 42%),
    var(--c-white);
}

.page-home .mobile-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  align-items: center;
}

.page-home .mobile-copy .section-kicker {
  color: var(--c-cyan);
}

.page-home .mobile-lead {
  margin: 8px 0 24px;
  font-size: 15px;
  line-height: 1.7;
  color: var(--c-muted);
}

.page-home .mobile-keys {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 12px;
}

.page-home .mobile-key {
  display: flex;
  gap: 14px;
  padding: 14px 16px;
  background: var(--c-bg);
  border-left: 4px solid var(--c-cyan);
  border-radius: 0 10px 10px 0;
}

.page-home .mobile-key-num {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .mobile-key-body {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.page-home .mobile-key-body strong {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .mobile-key-body span {
  font-size: 13px;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .mobile-note {
  margin: 0;
  font-size: 13px;
  color: var(--c-muted);
}

.page-home .mobile-phone {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-home .phone-frame {
  position: relative;
  width: 236px;
  height: 480px;
  padding: 12px;
  background: #111827;
  border-radius: 34px;
  box-shadow: 0 24px 48px rgba(17, 24, 39, 0.22), inset 0 0 0 2px rgba(255, 255, 255, 0.06);
}

.page-home .phone-speaker {
  position: absolute;
  z-index: 2;
  top: 9px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 4px;
  border-radius: 999px;
  background: #374151;
}

.page-home .phone-frame img,
.page-home .phone-screen-img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

.page-home .phone-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.page-home .phone-action {
  display: inline-block;
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--c-primary);
  color: var(--c-white);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: background var(--dur) ease-out, transform var(--dur) ease-out;
}

.page-home .phone-action:hover,
.page-home .phone-action:focus-visible {
  background: var(--c-accent);
  color: var(--c-primary-deep);
  transform: translateY(-2px);
}

.page-home .phone-caption {
  margin-top: 12px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  color: var(--c-muted);
}

.page-home .home-audience {
  position: relative;
  padding: 64px 0;
  background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), transparent 40%), var(--c-bg);
}

.page-home .section-head--center {
  align-items: center;
  text-align: center;
}

.page-home .section-head--center .section-head-note {
  margin-left: auto;
  margin-right: auto;
}

.page-home .audience-tabs {
  max-width: 980px;
  margin: 0 auto;
}

.page-home .audience-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 26px;
}

.page-home .audience-tab-label {
  display: inline-block;
  padding: 10px 22px;
  border: 2px solid var(--c-line);
  border-radius: 999px;
  background: var(--c-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 14px;
  color: var(--c-muted);
  cursor: pointer;
  transition: all var(--dur) ease-out;
}

.page-home .audience-tab-label:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.page-home #tab-general:checked ~ .audience-nav label[for="tab-general"],
.page-home #tab-analyst:checked ~ .audience-nav label[for="tab-analyst"],
.page-home #tab-media:checked ~ .audience-nav label[for="tab-media"] {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.page-home #tab-general:focus-visible ~ .audience-nav label[for="tab-general"],
.page-home #tab-analyst:focus-visible ~ .audience-nav label[for="tab-analyst"],
.page-home #tab-media:focus-visible ~ .audience-nav label[for="tab-media"] {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.page-home .audience-view {
  padding: 26px;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(30, 90, 168, 0.08);
}

.page-home .audience-feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-items: center;
}

.page-home .audience-panel {
  display: none;
}

.page-home #tab-general:checked ~ .audience-view .audience-panel--general,
.page-home #tab-analyst:checked ~ .audience-view .audience-panel--analyst,
.page-home #tab-media:checked ~ .audience-view .audience-panel--media {
  display: block;
}

.page-home .audience-panel-title {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .audience-panel p {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-muted);
}

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

.page-home .audience-list li {
  position: relative;
  padding-left: 22px;
  font-size: 14px;
  color: var(--c-ink);
}

.page-home .audience-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  background: var(--c-green);
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}

.page-home .audience-visual img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  object-fit: cover;
}

.page-home .home-board {
  position: relative;
  padding: 68px 0 60px;
  background: var(--c-primary-deep);
  overflow: hidden;
}

.page-home .board-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
  z-index: 0;
}

.page-home .home-board .container {
  position: relative;
  z-index: 1;
}

.page-home .board-head {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.page-home .board-title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.6vw, 34px);
  line-height: 1.2;
  font-weight: 800;
  color: var(--c-white);
}

.page-home .board-kicker {
  color: var(--c-accent);
}

.page-home .board-note {
  margin: 0;
  max-width: 560px;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .board-filter-group {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
}

.page-home .board-filter-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .board-filter-nav label {
  display: inline-block;
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background var(--dur), border-color var(--dur);
}

.page-home .board-filter-nav label:hover {
  background: rgba(255, 255, 255, 0.15);
}

.page-home #board-filter-all:checked ~ .board-filter-nav label[for="board-filter-all"],
.page-home #board-filter-fb:checked ~ .board-filter-nav label[for="board-filter-fb"],
.page-home #board-filter-bb:checked ~ .board-filter-nav label[for="board-filter-bb"],
.page-home #board-filter-tn:checked ~ .board-filter-nav label[for="board-filter-tn"],
.page-home #board-filter-ice:checked ~ .board-filter-nav label[for="board-filter-ice"] {
  background: var(--c-accent);
  border-color: var(--c-accent);
  color: var(--c-primary-deep);
}

.page-home #board-filter-all:focus-visible ~ .board-filter-nav label[for="board-filter-all"],
.page-home #board-filter-fb:focus-visible ~ .board-filter-nav label[for="board-filter-fb"],
.page-home #board-filter-bb:focus-visible ~ .board-filter-nav label[for="board-filter-bb"],
.page-home #board-filter-tn:focus-visible ~ .board-filter-nav label[for="board-filter-tn"],
.page-home #board-filter-ice:focus-visible ~ .board-filter-nav label[for="board-filter-ice"] {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
}

.page-home .board-results {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.page-home .board-item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.92);
  border-left: 6px solid var(--c-primary);
  border-radius: 10px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.page-home .board-item h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 800;
  color: var(--c-ink);
}

.page-home .board-item p {
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-muted);
}

.page-home .board-item-time {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 700;
  color: var(--c-primary);
}

.page-home .board-item-tag {
  justify-self: start;
}

.page-home #board-filter-fb:checked ~ .board-results .board-item:not([data-cat="fb"]),
.page-home #board-filter-bb:checked ~ .board-results .board-item:not([data-cat="bb"]),
.page-home #board-filter-tn:checked ~ .board-results .board-item:not([data-cat="tn"]),
.page-home #board-filter-ice:checked ~ .board-results .board-item:not([data-cat="ice"]) {
  display: none;
}

.page-home .board-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.page-home .board-outline {
  border-color: rgba(255, 255, 255, 0.55);
  color: var(--c-white);
}

.page-home .board-outline:hover {
  background: var(--c-white);
  color: var(--c-primary-deep);
}

.page-home .home-paths {
  padding: 64px 0 72px;
  background: var(--c-white);
}

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

.page-home .path-card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  column-gap: 16px;
  row-gap: 4px;
  padding: 20px 22px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
  background: var(--c-white);
  text-decoration: none;
  color: var(--c-ink);
  transition: transform var(--dur), border-color var(--dur), box-shadow var(--dur);
}

.page-home .path-card:hover,
.page-home .path-card:focus-visible {
  transform: translateY(-3px);
  border-color: var(--c-primary);
  box-shadow: 0 12px 28px rgba(30, 90, 168, 0.12);
}

.page-home .path-card-index {
  grid-row: 1 / 3;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--c-cyan);
}

.page-home .path-card strong {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 800;
  color: var(--c-primary);
}

.page-home .path-card-desc {
  font-size: 13px;
  line-height: 1.5;
  color: var(--c-muted);
}

@media (min-width: 720px) {
  .page-home .stat-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .stat-num {
    font-size: 42px;
  }
}

@media (min-width: 700px) {
  .page-home .board-results {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-home .board-item {
    padding: 20px 22px;
  }
}

@media (min-width: 860px) {
  .page-home .section-head--split {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
  }

  .page-home .section-head--split .section-head-note {
    margin: 0 0 4px;
    text-align: right;
  }

  .page-home .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 40px;
  }

  .page-home .schedule-layout {
    grid-template-columns: 1.12fr 0.88fr;
    align-items: stretch;
  }

  .page-home .schedule-footer {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .schedule-footer p {
    max-width: 640px;
  }

  .page-home .mobile-layout {
    grid-template-columns: 1fr 0.82fr;
    gap: 60px;
  }

  .page-home .mobile-phone {
    transform: translateX(-8px);
  }

  .page-home .audience-feature {
    grid-template-columns: 1.08fr 0.92fr;
    gap: 40px;
  }

  .page-home .board-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }

  .page-home .board-note {
    text-align: right;
    margin: 0 0 2px;
  }

  .page-home .path-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .path-card:nth-child(4) {
    grid-column: 2;
  }

  .page-home .path-card:nth-child(5) {
    grid-column: 3;
  }
}

@media (max-width: 640px) {
  .page-home .hero-window-meta span:nth-child(n+3) {
    display: none;
  }

  .page-home .hero-window {
    padding: 22px 12px 32px;
  }

  .page-home .phone-frame {
    width: 210px;
    height: 430px;
  }
}
