.page-home {
  --home-scan: repeating-linear-gradient(180deg, rgba(0, 255, 163, 0.04) 0px, rgba(0, 255, 163, 0.04) 1px, transparent 1px, transparent 4px);
  --home-grid: linear-gradient(rgba(0, 212, 255, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(0, 212, 255, 0.05) 1px, transparent 1px);
  position: relative;
  overflow-x: clip;
}

.page-home .home-hero {
  padding-top: 8px;
}

.page-home .home-hero-breadcrumb {
  margin-bottom: 14px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
}

.page-home .home-frame-hero {
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
}

.page-home .home-frame-hero__media,
.page-home .home-frame-hero__media .home-frame-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-home .home-frame-hero__media .home-frame-hero__img {
  object-fit: cover;
  object-position: center;
  filter: saturate(0.8) contrast(1.15);
}

.page-home .home-frame-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(100deg, rgba(11, 11, 15, 0.96) 8%, rgba(11, 11, 15, 0.78) 48%, rgba(11, 11, 15, 0.25) 100%),
    radial-gradient(circle at 82% 24%, rgba(74, 0, 224, 0.32), transparent 46%);
}

.page-home .home-frame-hero__cross {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image: var(--home-grid);
  background-size: 48px 48px;
  opacity: 0.5;
  pointer-events: none;
}

.page-home .home-frame-hero__cross::before,
.page-home .home-frame-hero__cross::after {
  content: "";
  position: absolute;
  background: rgba(0, 255, 163, 0.32);
  box-shadow: 0 0 28px rgba(0, 255, 163, 0.28);
}

.page-home .home-frame-hero__cross::before {
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  transform: translateY(-50%);
}

.page-home .home-frame-hero__cross::after {
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
}

.page-home .home-frame-hero__ticks {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(var(--green), var(--green)) left 10px top 10px / 2px 22px no-repeat,
    linear-gradient(var(--green), var(--green)) left 10px top 10px / 22px 2px no-repeat,
    linear-gradient(var(--green), var(--green)) right 10px top 10px / 2px 22px no-repeat,
    linear-gradient(var(--green), var(--green)) right 10px top 10px / 22px 2px no-repeat,
    linear-gradient(var(--green), var(--green)) left 10px bottom 10px / 2px 22px no-repeat,
    linear-gradient(var(--green), var(--green)) left 10px bottom 10px / 22px 2px no-repeat,
    linear-gradient(var(--green), var(--green)) right 10px bottom 10px / 2px 22px no-repeat,
    linear-gradient(var(--green), var(--green)) right 10px bottom 10px / 22px 2px no-repeat;
  opacity: 0.8;
}

.page-home .home-frame-hero__content {
  position: relative;
  z-index: 3;
  display: grid;
  gap: 24px;
  width: 100%;
  padding: 32px 20px;
  align-content: center;
}

.page-home .home-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-hero-copy__badge {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-home .home-hero-copy__title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(34px, 6vw, 58px);
  line-height: 1.14;
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0;
}

.page-home .home-hero-copy__title span {
  color: var(--green);
  text-shadow: 0 0 32px rgba(0, 255, 163, 0.32);
}

.page-home .home-hero-copy__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--text-muted);
  max-width: 46em;
  margin: 0;
}

.page-home .home-hero-copy__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.page-home .home-hero-aside {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.page-home .home-hero-card {
  position: relative;
  background: rgba(20, 20, 28, 0.88);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 132px;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow);
  transition: transform 0.28s ease, border-color 0.28s ease;
}

.page-home .home-hero-card:hover {
  transform: translateY(-4px);
}

.page-home .home-hero-card--primary {
  border-color: rgba(0, 255, 163, 0.65);
}

.page-home .home-hero-card--primary::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 22px;
  height: 22px;
  border-top: 3px solid var(--green);
  border-right: 3px solid var(--green);
}

.page-home .home-hero-card--blue {
  border-color: rgba(0, 212, 255, 0.5);
}

.page-home .home-hero-card__num {
  font-family: var(--font-mono);
  font-size: 40px;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.04em;
}

.page-home .home-hero-card--blue .home-hero-card__num {
  color: var(--blue);
}

.page-home .home-hero-card__label {
  font-size: 13px;
  line-height: 1.6;
  color: var(--text-muted);
}

.page-home .home-hero-card--compact {
  grid-column: 1 / -1;
  flex-direction: column;
  gap: 10px;
  min-height: 0;
  padding: 14px 16px;
}

.page-home .home-hero-card__line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--text-muted);
}

.page-home .home-hero-card__line strong {
  font-family: var(--font-mono);
  font-size: 18px;
  color: var(--text);
}

.page-home .home-section {
  padding: 56px 0 0;
}

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

.page-home .home-announce-card {
  position: relative;
  background: var(--bg-panel);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-announce-card:hover {
  border-color: var(--line-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
}

.page-home .home-announce-card--alert {
  border-color: rgba(255, 0, 77, 0.55);
  background: linear-gradient(135deg, rgba(255, 0, 77, 0.08), rgba(20, 20, 28, 0.96) 55%);
}

.page-home .home-announce-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-announce-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--text);
  margin: 0;
}

.page-home .home-announce-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--text-muted);
  margin: 0;
}

.page-home .home-announce-card__link {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 255, 163, 0.4);
  align-self: flex-start;
  padding-bottom: 2px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.page-home .home-announce-card__link:hover {
  color: var(--blue);
  border-color: var(--blue);
}

.page-home .home-core__headnote {
  font-size: 12px;
  white-space: nowrap;
}

.page-home .bento-grid {
  margin-top: 28px;
}

.page-home .home-roster-card {
  position: relative;
  overflow: hidden;
}

.page-home .home-roster-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--home-scan);
  pointer-events: none;
  opacity: 0.4;
}

.page-home .bento-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.page-home .home-roster-card__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin: 12px 0 4px;
}

.page-home .home-roster-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 10px;
  background: rgba(0, 255, 163, 0.05);
  border: 1px solid rgba(0, 255, 163, 0.18);
  border-radius: var(--radius-sm);
}

.page-home .home-roster-stat__num {
  font-family: var(--font-mono);
  font-size: 28px;
  font-weight: 600;
  color: var(--green);
  line-height: 1;
}

.page-home .home-roster-stat__label {
  font-size: 12px;
  color: var(--text-muted);
}

.page-home .home-roster-card__visual {
  position: relative;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 14px 0 4px;
  border: 1px solid var(--line);
  aspect-ratio: 16 / 10;
  background: var(--bg);
}

.page-home .home-roster-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.75) contrast(1.08);
}

.page-home .home-roster-card__scan {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(0, 255, 163, 0.14), transparent);
  box-shadow: 0 0 0 1px rgba(0, 255, 163, 0.12) inset;
  animation: roster-scan 5s ease-in-out infinite;
}

.page-home .home-roster-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.page-home .home-hero-rate-card {
  position: relative;
  overflow: hidden;
}

.page-home .home-hero-rate-card__bg {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.page-home .home-hero-rate-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  filter: saturate(0.9) hue-rotate(-10deg);
}

.page-home .home-hero-rate-card:hover .home-hero-rate-card__bg {
  opacity: 0.3;
  transform: scale(1.03);
}

.page-home .home-hero-rate-card__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(160deg, rgba(11, 11, 15, 0.92), rgba(20, 20, 28, 0.82));
  padding: 22px;
  min-height: 100%;
}

.page-home .home-rate-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin: 8px 0;
}

.page-home .home-rate-ring {
  position: relative;
  width: 132px;
  height: 132px;
  flex-shrink: 0;
}

.page-home .home-rate-ring__svg {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 0 12px rgba(0, 255, 163, 0.35));
}

.page-home .home-rate-ring__track {
  fill: none;
  stroke: rgba(255, 255, 255, 0.08);
  stroke-width: 10;
}

.page-home .home-rate-ring__bar {
  fill: none;
  stroke: var(--green);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 301.6;
  stroke-dashoffset: 88.7;
}

.page-home .home-rate-ring__center {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
}

.page-home .home-rate-ring__center strong {
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--green);
  line-height: 1;
}

.page-home .home-rate-ring__center span {
  font-size: 12px;
  color: var(--text-muted);
}

.page-home .home-rate-list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-rate-list__item {
  display: grid;
  grid-template-columns: 54px 1fr 42px;
  align-items: center;
  gap: 8px;
  font-size: 12px;
}

.page-home .home-rate-list__name {
  color: var(--text);
  white-space: nowrap;
}

.page-home .home-rate-list__bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 99px;
  overflow: hidden;
}

.page-home .home-rate-list__bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
  border-radius: 99px;
}

.page-home .home-rate-list__num {
  font-family: var(--font-mono);
  color: var(--blue);
  text-align: right;
}

.page-home .home-hero-rate-card__link {
  align-self: flex-start;
  margin-top: 4px;
}

.page-home .home-stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
  min-height: 150px;
  position: relative;
  overflow: hidden;
}

.page-home .home-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-green-blue);
  opacity: 0.7;
}

.page-home .home-stat-card--blue {
  border-color: rgba(0, 212, 255, 0.45);
}

.page-home .home-stat-card--blue::before {
  background: var(--grad-blue-purple);
}

.page-home .home-stat-card__value {
  font-family: var(--font-mono);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
  color: var(--green);
  letter-spacing: -0.03em;
}

.page-home .home-stat-card--blue .home-stat-card__value {
  color: var(--blue);
}

.page-home .home-stat-card__label {
  font-size: 13px;
  color: var(--text-muted);
  padding: 0 10px;
}

.page-home .home-legacy-panel {
  position: relative;
  display: grid;
  gap: 0;
  background:
    radial-gradient(circle at 88% 24%, rgba(74, 0, 224, 0.4), transparent 46%),
    linear-gradient(135deg, rgba(0, 212, 255, 0.08), transparent 50%),
    var(--bg-panel);
  border: 2px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 0 100%);
}

.page-home .home-legacy-panel__shape {
  position: absolute;
  inset: 0;
  background-image: var(--home-grid);
  background-size: 42px 42px;
  opacity: 0.45;
  pointer-events: none;
}

.page-home .home-legacy-panel__shape::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(210deg, rgba(255, 0, 77, 0.14), transparent 46%);
}

.page-home .home-legacy-panel__content {
  position: relative;
  z-index: 1;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.page-home .home-legacy-panel__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.page-home .home-legacy-panel__head h2 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 700;
  line-height: 1.3;
  color: var(--text);
  margin: 0;
}

.page-home .home-legacy-panel__content > p {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
  max-width: 52em;
}

.page-home .home-legacy-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .home-legacy-panel__count {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: rgba(255, 0, 77, 0.07);
  border: 1px solid rgba(255, 0, 77, 0.35);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
}

.page-home .home-legacy-panel__countlabel {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
}

.page-home .home-legacy-panel__countnum {
  font-family: var(--font-mono);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--red);
}

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

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

.page-home .home-legacy-panel__aside {
  position: relative;
  z-index: 1;
  padding: 24px 22px 32px;
  border-top: 1px solid var(--line);
  background: rgba(11, 11, 15, 0.5);
}

.page-home .home-legacy-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.page-home .home-legacy-list__item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-home .home-legacy-list__item strong {
  font-family: var(--font-heading);
  font-size: 16px;
  color: var(--text);
}

.page-home .home-export-grid {
  display: grid;
  gap: 24px;
  align-items: center;
}

.page-home .home-export-copy {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.page-home .home-export-copy h2 {
  font-family: var(--font-heading);
  font-size: clamp(26px, 4vw, 34px);
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.page-home .home-export-copy__lead {
  font-size: 14px;
  line-height: 1.85;
  color: var(--text-muted);
  margin: 0;
}

.page-home .home-export-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-home .home-export-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.page-home .home-export-list li:hover {
  border-color: var(--green);
  transform: translateX(4px);
}

.page-home .home-export-list__mark {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--green);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(0, 255, 163, 0.35);
  border-radius: 6px;
  flex-shrink: 0;
}

.page-home .home-export-copy__cta {
  align-self: flex-start;
}

.page-home .home-export-console {
  background: #0A0A0E;
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}

.page-home .home-export-console__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-bottom: 1px solid var(--line);
}

.page-home .home-export-console__bar .mono-tag {
  margin-left: auto;
  font-size: 12px;
}

.page-home .home-export-console__body {
  padding: 22px 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.page-home .home-export-console__body .mono-tag {
  font-size: 13px;
  color: var(--text-muted);
}

.page-home .home-export-console__ok {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--green);
  margin: 0;
}

.page-home .home-export-console__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.page-home .home-export-console__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 14px 16px;
  border-top: 1px solid var(--line);
}

.page-home .home-replay-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 28px;
}

.page-home .home-replay-card {
  position: relative;
  background: var(--bg-panel);
  border: 2px solid var(--line);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-replay-card:hover {
  transform: translateY(-5px);
  border-color: var(--line-light);
  box-shadow: var(--shadow-strong);
}

.page-home .home-replay-card--feature {
  border-color: rgba(0, 255, 163, 0.4);
}

.page-home .home-replay-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--bg);
  overflow: hidden;
}

.page-home .home-replay-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.4s ease;
}

.page-home .home-replay-card:hover .home-replay-card__img {
  transform: scale(1.05);
}

.page-home .home-replay-card__duration {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--text);
  background: rgba(11, 11, 15, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  padding: 4px 8px;
}

.page-home .home-replay-card__play {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: rgba(0, 255, 163, 0.22);
  transform: translate(-50%, -50%);
  transition: background 0.25s ease, transform 0.25s ease;
}

.page-home .home-replay-card__play::after {
  content: "";
  position: absolute;
  left: 20px;
  top: 15px;
  border-left: 16px solid var(--text);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

.page-home .home-replay-card:hover .home-replay-card__play {
  background: rgba(0, 255, 163, 0.55);
  transform: translate(-50%, -50%) scale(1.08);
}

.page-home .home-replay-card__media--plain {
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 70% 30%, rgba(0, 212, 255, 0.16), transparent 55%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.04), transparent 45%),
    #101018;
  border-bottom: 1px solid var(--line);
}

.page-home .home-replay-card__media--plain .mono-tag {
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--blue);
}

.page-home .home-replay-card__media--plain::after {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px dashed rgba(0, 212, 255, 0.3);
  border-radius: 6px;
  pointer-events: none;
}

.page-home .home-replay-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.page-home .home-replay-card__body h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.4;
  margin: 0;
}

.page-home .home-replay-card__body p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0;
}

.page-home .home-replay-card__body .btn {
  margin-top: auto;
  align-self: flex-start;
}

@media (prefers-reduced-motion: no-preference) {
  .page-home .home-roster-card__scan {
    animation: roster-scan 5s ease-in-out infinite;
  }

  .page-home .home-rate-ring__bar {
    animation: ring-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.4s both;
  }

  .page-home .home-hero-card {
    animation: hero-card-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .page-home .home-hero-card--blue {
    animation-delay: 0.15s;
  }

  .page-home .home-hero-card--compact {
    animation-delay: 0.3s;
  }
}

@keyframes roster-scan {
  0%, 100% {
    transform: translateY(-60%);
    opacity: 0.3;
  }
  50% {
    transform: translateY(60%);
    opacity: 0.7;
  }
}

@keyframes ring-in {
  0% {
    stroke-dashoffset: 301.6;
  }
  100% {
    stroke-dashoffset: 88.7;
  }
}

@keyframes hero-card-in {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 640px) {
  .page-home .home-hero-card__num {
    font-size: 48px;
  }

  .page-home .home-hero-card--compact {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .page-home .home-hero-card__line {
    flex: 1;
  }

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

  .page-home .home-legacy-panel__content {
    padding: 40px 32px;
  }

  .page-home .home-legacy-panel__aside {
    padding: 28px 32px 36px;
  }

  .page-home .home-legacy-list {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-home .home-rate-visual {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }

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

@media (min-width: 920px) {
  .page-home .home-frame-hero {
    min-height: 680px;
  }

  .page-home .home-frame-hero__content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    padding: 48px 44px;
  }

  .page-home .home-hero-copy {
    gap: 20px;
  }

  .page-home .home-hero-aside {
    grid-template-columns: 1fr;
    align-content: center;
  }

  .page-home .home-hero-aside .home-hero-card--compact {
    grid-column: auto;
  }

  .page-home .home-hero-card {
    min-height: 150px;
  }

  .page-home .home-section {
    padding: 72px 0 0;
  }

  .page-home .home-announce__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .page-home .home-legacy-panel {
    grid-template-columns: 1.25fr 0.75fr;
  }

  .page-home .home-legacy-panel__aside {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 40px 32px;
    display: flex;
    align-items: center;
  }

  .page-home .home-legacy-list {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .page-home .home-export-grid {
    grid-template-columns: 1fr 1fr;
    gap: 48px;
  }

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

  .page-home .home-replay-card--feature {
    grid-column: span 1;
  }
}

@media (min-width: 1200px) {
  .page-home .home-frame-hero__content {
    padding: 56px 56px;
  }

  .page-home .home-frame-hero {
    min-height: 720px;
  }

  .page-home .home-hero-copy__lead {
    font-size: 16px;
  }

  .page-home .home-announce__grid {
    gap: 20px;
  }
}
