.page-home {
  --home-accent-glow: rgba(255, 107, 53, 0.22);
  --home-mist-line: rgba(216, 220, 227, 0.35);
  --home-deep-bg: #0A1F44;
  --home-reduced-bg: #14294D;
  --home-solid-mist: #D8DCE3;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--black-smoke);
  font-family: var(--font-body);
}

.page-home .home-hero {
  background: var(--home-deep-bg);
  padding: 18px 0 72px;
  position: relative;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 107, 53, 0.14) 0%, rgba(255, 107, 53, 0) 34%),
    linear-gradient(135deg, rgba(20, 41, 77, 0.95) 0%, rgba(10, 31, 68, 0.65) 100%);
  pointer-events: none;
}
.page-home .hero-shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}
.page-home .hero-canvas {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px 20px;
  padding: 40px 16px 30px;
  border: 1px solid var(--home-mist-line);
  background: rgba(20, 41, 77, 0.5);
}
.page-home .hero-corner {
  position: absolute;
  width: 20px;
  height: 20px;
  border: 0 solid var(--accent);
  z-index: 3;
}
.page-home .hero-corner-tl {
  top: -1px;
  left: -1px;
  border-top-width: 2px;
  border-left-width: 2px;
}
.page-home .hero-corner-tr {
  top: -1px;
  right: -1px;
  border-top-width: 2px;
  border-right-width: 2px;
}
.page-home .hero-corner-bl {
  bottom: -1px;
  left: -1px;
  border-bottom-width: 2px;
  border-left-width: 2px;
}
.page-home .hero-corner-br {
  bottom: -1px;
  right: -1px;
  border-bottom-width: 2px;
  border-right-width: 2px;
}
.page-home .hero-breadcrumb {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(216, 220, 227, 0.66);
}
.page-home .hero-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.page-home .hero-breadcrumb .breadcrumb-current {
  color: var(--accent-light);
  font-weight: 600;
}
.page-home .hero-main {
  position: relative;
}
.page-home .hero-title {
  margin: 14px 0 14px;
  font-family: var(--font-heading);
  font-size: 40px;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--white);
}
.page-home .hero-lead {
  margin: 0 0 22px;
  max-width: 60ch;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(216, 220, 227, 0.9);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.page-home .hero-login-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  font-size: 13px;
  color: var(--accent-light);
}
.page-home .hint-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--home-accent-glow);
}
.page-home .index-label-light {
  color: var(--accent-light);
}
.page-home .on-dark-title {
  color: var(--white);
}
.page-home .on-dark-body {
  color: rgba(216, 220, 227, 0.9);
}
.page-home .button-outline-on-dark {
  border-color: rgba(216, 220, 227, 0.6);
  color: var(--white);
}
.page-home .hero-login-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--paper);
  color: var(--black-smoke);
  padding: 18px 16px 20px;
  border: 1px solid var(--paper-deep);
  box-shadow: 0 18px 48px rgba(3, 10, 24, 0.45);
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .hero-login-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 52px rgba(3, 10, 24, 0.55);
}
.page-home .login-card-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.page-home .login-card-pill {
  display: inline-flex;
  padding: 5px 10px;
  background: var(--deep-ink);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.page-home .login-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  animation: home-pulse-dot 2s ease-in-out infinite;
}
.page-home .login-card-figure {
  margin: 14px 0;
}
.page-home .login-card-figure img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: bottom;
  border-radius: 2px;
}
.page-home .login-card-note {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-text);
  margin: 0 0 14px;
}
.page-home .login-card-link {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.page-home .hero-image {
  position: relative;
  margin: 0;
}
.page-home .hero-img {
  display: block;
  width: 100%;
  height: auto;
}
.page-home .hero-figcaption {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(216, 220, 227, 0.78);
}
.page-home .fig-caption-mark {
  color: var(--accent-light);
  font-weight: 600;
}
.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--home-mist-line);
  border: 1px solid var(--home-mist-line);
}
.page-home .hero-stat {
  background: var(--home-reduced-bg);
  padding: 14px 16px 16px;
}
.page-home .hero-stat dt {
  margin: 0;
  font-size: 12px;
  color: rgba(216, 220, 227, 0.74);
}
.page-home .hero-stat dd {
  margin: 8px 0 0;
  font-family: var(--font-heading);
  font-size: 28px;
  letter-spacing: 0.02em;
  color: var(--white);
}
.page-home .coordinate {
  position: absolute;
  z-index: 2;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(216, 220, 227, 0.5);
}
.page-home .coordinate-tl {
  top: 8px;
  left: 10px;
}
.page-home .coordinate-tr {
  top: 8px;
  right: 10px;
}
.page-home .coordinate-br {
  bottom: 8px;
  right: 10px;
}
.page-home .vertical-label-hero {
  display: none;
}

.page-home .home-login-guide {
  background: var(--paper);
  padding: 44px 0 8px;
}
.page-home .login-guide-panel {
  border: 1px solid var(--neutral-mist);
  background: var(--white);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border-radius: 2px;
}
.page-home .login-guide-panel h2 {
  margin: 6px 0 8px;
  font-family: var(--font-heading);
  font-size: 24px;
  line-height: 1.2;
  color: var(--deep-ink);
}
.page-home .login-guide-panel p {
  margin: 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted-text);
  max-width: 72ch;
}
.page-home .login-guide-path {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--deep-ink);
  font-weight: 600;
  flex-wrap: wrap;
  margin-top: 4px;
}
.page-home .login-guide-path i {
  flex: 1;
  min-width: 20px;
  height: 1px;
  background: var(--accent);
}

.page-home .home-webnav {
  background: var(--paper);
  padding: 56px 0 16px;
}
.page-home .section-head {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.page-home .section-head h2 {
  margin: 6px 0 0;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--deep-ink);
}
.page-home .section-desc {
  margin: 0;
  max-width: 66ch;
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted-text);
}
.page-home .webnav-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 12px 0 0;
  font-family: var(--font-label);
  font-size: 12px;
}
.page-home .webnav-legend .legend-item {
  color: var(--muted-text);
}
.page-home .webnav-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 20px;
}
.page-home .webnav-step {
  position: relative;
  padding: 22px 20px 18px;
  border: 1px solid var(--neutral-mist);
  border-radius: 2px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease, border-color 0.25s ease;
}
.page-home .webnav-step:hover {
  transform: translateY(-3px);
  border-color: var(--accent);
}
.page-home .webnav-index {
  display: block;
  font-family: var(--font-heading);
  font-size: 36px;
  line-height: 1;
  color: var(--accent);
  opacity: 0.9;
  margin-bottom: 8px;
}
.page-home .webnav-step h3 {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  color: var(--deep-ink);
}
.page-home .webnav-step p {
  margin: 0 0 14px;
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted-text);
}
.page-home .link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}
.page-home .link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}
.page-home .link-arrow:hover::after {
  transform: translateX(3px);
}
.page-home .link-arrow-light {
  color: var(--accent-light);
}

.page-home .home-broadcast {
  background: var(--home-deep-bg);
  padding: 56px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-home .home-broadcast::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: 0;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.16), transparent 65%);
  pointer-events: none;
}
.page-home .broadcast-layout {
  display: grid;
  gap: 24px;
}
.page-home .broadcast-intro {
  position: relative;
  z-index: 1;
}
.page-home .broadcast-intro .legend {
  margin-top: 18px;
}
.page-home .home-broadcast .legend .legend-item {
  color: rgba(216, 220, 227, 0.85);
}
.page-home .broadcast-stage {
  position: relative;
}
.page-home .broadcast-figure {
  margin: 0;
  position: relative;
}
.page-home .broadcast-figure img {
  width: 100%;
  max-width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 2px;
}
.page-home .broadcast-card {
  border-radius: 2px;
  padding: 20px 18px 22px;
  background: var(--white);
  color: var(--black-smoke);
  box-shadow: 0 16px 36px rgba(3, 10, 24, 0.22);
  position: relative;
}
.page-home .broadcast-card-head {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.page-home .broadcast-card-title {
  margin: 8px 0 0;
  font-size: 18px;
  line-height: 1.3;
  color: var(--deep-ink);
}
.page-home .live-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--accent);
}
.page-home .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  animation: home-pulse-dot 1.6s ease-in-out infinite;
}
.page-home .match-lineup {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 0 12px;
  border-bottom: 1px solid var(--neutral-mist);
  font-weight: 700;
  font-size: 16px;
  color: var(--deep-ink);
}
.page-home .match-vs {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--accent);
}
.page-home .key-data-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 12px 0;
  padding: 8px 12px;
  background: var(--accent-light);
  color: var(--deep-ink);
  border-radius: 2px;
  font-size: 13px;
}
.page-home .key-data-strip strong {
  font-size: 16px;
  letter-spacing: 0.02em;
}
.page-home .half-tab {
  border: 1px solid var(--neutral-mist);
  border-radius: 2px;
  margin: 10px 0 0;
  background: var(--paper);
}
.page-home .half-tab summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 600;
  color: var(--deep-ink);
}
.page-home .half-tab summary::-webkit-details-marker {
  display: none;
}
.page-home .half-tab summary::after {
  content: "+";
  font-size: 16px;
  line-height: 1;
  color: var(--accent);
  transition: transform 0.25s ease;
}
.page-home .half-tab[open] summary::after {
  transform: rotate(45deg);
}
.page-home .match-stat-list {
  margin: 0;
  padding: 6px 12px 12px;
  display: grid;
  gap: 8px;
}
.page-home .match-stat-row {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 10px;
  align-items: center;
  font-size: 13px;
}
.page-home .match-stat-row dt {
  color: var(--muted-text);
}
.page-home .match-stat-row dd {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}
.page-home .match-stat-row .stat-bar {
  flex: 1;
  min-width: 80px;
  display: block;
  height: 6px;
  background: var(--paper-deep);
  border-radius: 9px;
  overflow: hidden;
}
.page-home .match-stat-row .stat-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--deep-ink), var(--accent));
  border-radius: 9px;
}
.page-home .match-stat-row .stat-fig {
  min-width: 74px;
  text-align: right;
  font-weight: 600;
  color: var(--deep-ink);
}
.page-home .broadcast-card-note {
  margin: 14px 0 0;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted-text);
}

.page-home .home-rankings {
  background: var(--paper);
  padding: 56px 0 72px;
}
.page-home .refresh-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--neutral-mist);
  border-radius: 2px;
  align-self: flex-start;
}
.page-home .refresh-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.2);
  animation: home-pulse-dot 2s infinite;
}
.page-home .refresh-copy {
  display: grid;
  gap: 2px;
}
.page-home .refresh-copy strong {
  font-size: 14px;
  color: var(--deep-ink);
}
.page-home .refresh-copy span {
  font-size: 12px;
  color: var(--muted-text);
}
.page-home .rankings-layout {
  display: grid;
  gap: 20px;
  align-items: stretch;
}
.page-home .rankings-figure {
  margin: 0;
  position: relative;
}
.page-home .rankings-figure img {
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .rankings-figcaption {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--muted-text);
}
.page-home .rankings-figcaption span {
  color: var(--accent);
  font-weight: 600;
}
.page-home .rankings-table-wrap {
  padding: 0;
  border-radius: 2px;
  overflow-x: auto;
}
.page-home .rankings-table {
  width: 100%;
  min-width: 580px;
  border-collapse: collapse;
  font-size: 14px;
}
.page-home .rankings-table thead {
  background: var(--deep-ink);
  color: var(--white);
}
.page-home .rankings-table thead th {
  padding: 12px;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.page-home .rankings-table tbody td {
  padding: 12px;
  border-bottom: 1px solid var(--neutral-mist);
}
.page-home .rankings-table tbody tr {
  background: var(--white);
  transition: background 0.2s ease;
}
.page-home .rankings-table tbody tr:hover {
  background: rgba(255, 178, 138, 0.4);
}
.page-home .rankings-table tbody tr:last-child td {
  border-bottom: 0;
}
.page-home .rankings-table tbody td:first-child {
  font-family: var(--font-heading);
  color: var(--accent);
  font-size: 16px;
}
.page-home .rankings-note {
  margin: 0;
  padding: 12px 14px;
  font-size: 12px;
  color: var(--muted-text);
}

.page-home .home-member {
  background: var(--home-deep-bg);
  padding: 56px 0 64px;
}
.page-home .member-head {
  border-bottom: 1px solid var(--home-mist-line);
  padding-bottom: 24px;
}
.page-home .member-head .section-desc {
  color: rgba(216, 220, 227, 0.86);
}
.page-home .member-find-path {
  margin-top: 26px;
}
.page-home .member-path-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--accent-light);
  margin-bottom: 18px;
}
.page-home .member-path-line i {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.page-home .member-steps {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.page-home .member-step {
  background: var(--home-reduced-bg);
  border: 1px solid var(--home-mist-line);
  border-radius: 2px;
  padding: 18px 18px 16px;
  color: var(--white);
  transition: border-color 0.25s ease;
}
.page-home .member-step:hover {
  border-color: var(--accent);
}
.page-home .member-step-no {
  display: block;
  font-family: var(--font-heading);
  font-size: 30px;
  line-height: 1;
  color: var(--accent);
  margin-bottom: 10px;
}
.page-home .member-step h3 {
  margin: 0 0 8px;
  font-size: 16px;
  color: var(--white);
}
.page-home .member-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(216, 220, 227, 0.84);
}
.page-home .member-safe-note {
  margin-top: 18px;
  font-size: 12px;
  color: rgba(216, 220, 227, 0.68);
}
.page-home .member-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.page-home .home-brand {
  background: var(--paper);
  padding: 56px 0 72px;
}
.page-home .brand-archive {
  display: grid;
  gap: 20px;
}
.page-home .brand-timeline-card {
  padding: 20px 18px;
  border-radius: 2px;
  position: relative;
}
.page-home .brand-timeline-card h3 {
  margin: 0 0 16px;
  font-size: 18px;
  color: var(--deep-ink);
}
.page-home .brand-timeline-label {
  position: absolute;
  top: 20px;
  right: 14px;
  writing-mode: vertical-rl;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--muted-text);
}
.page-home .brand-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 6px;
}
.page-home .brand-timeline li {
  display: grid;
  grid-template-columns: 52px 20px 1fr;
  gap: 8px;
  align-items: center;
  padding: 6px 0;
}
.page-home .brand-year {
  font-family: var(--font-heading);
  font-size: 18px;
  line-height: 1;
  color: var(--accent);
}
.page-home .brand-timeline li i {
  display: block;
  width: 12px;
  height: 1px;
  background: var(--neutral-mist);
}
.page-home .brand-timeline p {
  margin: 0;
  font-size: 14px;
  color: var(--black-smoke);
}
.page-home .brand-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.page-home .brand-stat {
  padding: 20px 14px;
  text-align: center;
  border-radius: 2px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.page-home .brand-stat:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(10, 31, 68, 0.12);
}
.page-home .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 34px;
  line-height: 1.05;
  color: var(--deep-ink);
  letter-spacing: 0.02em;
}
.page-home .stat-label {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: var(--muted-text);
}
.page-home .brand-cert {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  border-radius: 2px;
  background: var(--home-deep-bg);
}
.page-home .brand-cert h3 {
  margin: 0 0 6px;
  font-size: 18px;
  color: var(--white);
}
.page-home .brand-cert p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(216, 220, 227, 0.86);
}
.page-home .cert-mark {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--white);
  background: var(--accent);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.5);
  border-radius: 2px;
  flex: 0 0 auto;
}

.page-home .home-trust {
  background: var(--home-deep-bg);
  padding: 40px 0 56px;
}
.page-home .trust-panel {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--home-mist-line);
  padding: 22px 18px;
}
.page-home .trust-seal {
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: var(--white);
  font-size: 20px;
  font-family: var(--font-heading);
  border-radius: 2px;
}
.page-home .trust-panel p {
  margin: 0;
  font-size: 13px;
  line-height: 1.85;
  color: rgba(216, 220, 227, 0.88);
}
.page-home .home-service-note {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 14px;
  font-size: 12px;
  color: rgba(216, 220, 227, 0.6);
}

@keyframes home-pulse-dot {
  0%, 100% {
    box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.24);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(255, 107, 53, 0.1);
  }
}

@media (min-width: 768px) {
  .page-home .hero-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .page-home .webnav-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .broadcast-figure img {
    height: 320px;
  }
  .page-home .rankings-layout {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  .page-home .member-steps {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .brand-archive {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .brand-timeline-card {
    grid-column: 1 / -1;
  }
  .page-home .brand-cert {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
  }
  .page-home .member-cta {
    justify-content: flex-end;
  }
  .page-home .login-guide-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .page-home .login-guide-path {
    min-width: 300px;
    max-width: 420px;
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 24px 0 96px;
  }
  .page-home .hero-canvas {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: auto;
    gap: 26px 20px;
    padding: 52px 44px 40px;
  }
  .page-home .hero-breadcrumb {
    grid-column: 1 / -1;
    grid-row: 1;
  }
  .page-home .hero-main {
    grid-column: 1 / 8;
    grid-row: 2;
  }
  .page-home .hero-login-card {
    grid-column: 9 / 13;
    grid-row: 2 / 4;
    margin: 0;
  }
  .page-home .hero-image {
    grid-column: 1 / 9;
    grid-row: 3;
    margin: 0;
  }
  .page-home .hero-stats {
    grid-column: 1 / -1;
    grid-row: 4;
  }
  .page-home .hero-title {
    font-size: 58px;
  }
  .page-home .hero-login-card figure img {
    height: 260px;
  }
  .page-home .coordinate-tr {
    display: block;
  }
  .page-home .vertical-label-hero {
    display: block;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    font-size: 12px;
    letter-spacing: 0.24em;
    color: rgba(216, 220, 227, 0.52);
  }
  .page-home .section-head {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
  }
  .page-home .section-head h2 {
    font-size: 36px;
  }
  .page-home .section-desc {
    text-align: right;
  }
  .page-home .home-webnav,
  .page-home .home-rankings,
  .page-home .home-brand {
    padding: 72px 0 88px;
  }
  .page-home .webnav-steps {
    margin-top: 32px;
  }
  .page-home .broadcast-layout {
    grid-template-columns: 5fr 7fr;
    gap: 32px;
    align-items: start;
  }
  .page-home .broadcast-stage {
    position: relative;
    min-height: 620px;
  }
  .page-home .broadcast-figure {
    width: 72%;
    margin: 0;
  }
  .page-home .broadcast-figure img {
    width: 100%;
    height: 560px;
    object-fit: cover;
    clip-path: polygon(0 0, 92% 0, 100% 8%, 100% 100%, 0 100%);
  }
  .page-home .broadcast-card {
    position: absolute;
    right: 0;
    top: 64px;
    width: 54%;
    max-width: 560px;
  }
  .page-home .home-member {
    padding: 72px 0 80px;
  }
  .page-home .brand-archive {
    grid-template-columns: 5fr 7fr;
    gap: 24px;
  }
  .page-home .brand-timeline-card {
    grid-column: auto;
  }
  .page-home .brand-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-content: start;
  }
  .page-home .brand-cert {
    grid-column: 1 / -1;
    padding: 28px 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    animation-duration: 0.001s !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001s !important;
  }
}
