.page-home {
  --hm-accent: #00FFB3;
  --hm-accent-alt: #B44DFF;
  --hm-deep: #0A1E3D;
  --hm-panel: #122A54;
  --hm-text: #E6F0FF;
  --hm-text-dim: #A8B8D8;
  --hm-warm: #FFD166;
  --hm-radius: 20px;
  --hm-radius-sm: 10px;
  position: relative;
  overflow-x: clip;
  color: var(--hm-text);
  font-family: var(--font-body);
}

.page-home .btn-primary {
  background: var(--hm-accent);
  color: #07172e;
  border: 1px solid rgba(0, 0, 0, 0.12);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .btn-primary:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
  box-shadow: 0 14px 36px rgba(0, 255, 179, 0.28);
}

.page-home .btn-ghost {
  border-color: rgba(230, 240, 255, 0.32);
  color: var(--hm-text);
  background: rgba(10, 30, 61, 0.42);
}

.page-home .btn-ghost:hover {
  color: var(--hm-accent);
  border-color: rgba(0, 255, 179, 0.56);
}

.page-home .container {
  width: min(var(--container-width), calc(100% - 40px));
  margin-inline: auto;
}

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

.page-home .section-head--row {
  justify-content: space-between;
  gap: 20px;
}

.page-home .section-head__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--hm-accent);
  text-transform: uppercase;
  margin: 0 0 6px;
}

.page-home .section-head__kicker::before {
  content: "";
  width: 18px;
  height: 2px;
  background: var(--hm-accent);
  display: inline-block;
}

.page-home .section-head__title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 40px);
  line-height: 1.12;
  letter-spacing: 0.01em;
  color: var(--hm-text);
  text-transform: uppercase;
  margin: 0;
  position: relative;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
}

.page-home .section-head__note {
  font-size: 14px;
  line-height: 1.7;
  color: var(--hm-text-dim);
  max-width: 520px;
  margin: 0;
}

/* ------------------------------------------ */
/* hero                                         */
/* ------------------------------------------ */
.page-home .home-hero {
  position: relative;
  padding: 70px 0 110px;
  background:
    linear-gradient(112deg, rgba(10, 30, 61, 0.98) 0%, rgba(18, 42, 84, 0.86) 46%, rgba(10, 30, 61, 0.94) 100%);
  overflow: hidden;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(100deg, transparent 0px, transparent 70px, rgba(0, 255, 179, 0.10) 71px, rgba(0, 255, 179, 0.10) 72px),
    repeating-linear-gradient(12deg, transparent 0px, transparent 120px, rgba(180, 77, 255, 0.08) 121px, rgba(180, 77, 255, 0.08) 122px);
  pointer-events: none;
  z-index: 1;
}

.page-home .home-hero::after {
  content: "";
  position: absolute;
  width: 460px;
  height: 460px;
  right: -180px;
  top: -160px;
  background: radial-gradient(circle, rgba(180, 77, 255, 0.22) 0%, transparent 64%);
  z-index: 1;
  pointer-events: none;
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

.page-home .home-hero__copy {
  order: 2;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(0, 255, 179, 0.12);
  border: 1px solid rgba(0, 255, 179, 0.34);
  color: var(--hm-accent);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  margin: 0 0 18px;
}

.page-home .home-hero__title {
  font-family: var(--font-headline);
  font-size: clamp(34px, 6.4vw, 68px);
  line-height: 1.08;
  color: var(--hm-text);
  margin: 0 0 20px;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  max-width: 760px;
  position: relative;
}

.page-home .home-hero__lead {
  font-size: 15px;
  line-height: 1.85;
  color: var(--hm-text-dim);
  max-width: 620px;
  margin: 0 0 28px;
}

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

.page-home .home-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(230, 240, 255, 0.14);
  max-width: 580px;
}

.page-home .home-hero__stat {
  padding-right: 14px;
}

.page-home .home-hero__stat dt {
  font-size: 12px;
  color: var(--hm-text-dim);
  margin-bottom: 4px;
  letter-spacing: 0.04em;
}

.page-home .home-hero__stat dd {
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--hm-text);
  margin: 0;
  letter-spacing: 0.02em;
}

.page-home .home-hero__stat:last-child dd {
  color: var(--hm-accent);
  font-size: 15px;
  line-height: 1.4;
  max-width: 140px;
}

.page-home .home-hero__visual {
  order: 1;
  position: relative;
}

.page-home .home-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hm-radius);
  object-fit: cover;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  transform: rotate(1.2deg) scale(0.98);
  border: 2px solid rgba(0, 255, 179, 0.26);
}

.page-home .home-hero__badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(10, 30, 61, 0.88);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  font-size: 12px;
  color: var(--hm-text);
  letter-spacing: 0.06em;
}

.page-home .home-hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-accent);
  animation: homePulse 1.8s ease-in-out infinite;
}

@keyframes homePulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 255, 179, 0.60); }
  50% { box-shadow: 0 0 0 8px rgba(0, 255, 179, 0); }
}

.page-home .home-hero__stripe {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 24px;
  background: linear-gradient(94deg, var(--hm-accent) 0%, var(--hm-accent) 18%, transparent 18%, transparent 100%);
  clip-path: polygon(0 0, 100% 0, calc(100% - 72px) 100%, 0 100%);
  z-index: 2;
}

/* ------------------------------------------ */
/* directory                                   */
/* ------------------------------------------ */
.page-home .home-directory {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding: 20px 0 56px;
  background: transparent;
}

.page-home .home-directory .container {
  background: transparent;
}

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

.page-home .dir-card {
  display: block;
  padding: 20px 22px;
  border-radius: var(--hm-radius);
  background: var(--hm-panel);
  border: 1px solid rgba(230, 240, 255, 0.10);
  text-decoration: none;
  color: var(--hm-text);
  position: relative;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .dir-card::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  right: -40px;
  top: -40px;
  background: rgba(0, 255, 179, 0.10);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  transform: scale(0.6);
}

.page-home .dir-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.42);
}

.page-home .dir-card:hover::after {
  transform: scale(1.15);
}

.page-home .dir-card--primary {
  background: linear-gradient(120deg, rgba(0, 255, 179, 0.16), rgba(18, 42, 84, 0.84) 60%);
  border-color: rgba(0, 255, 179, 0.36);
}

.page-home .dir-card--accent {
  background: linear-gradient(120deg, rgba(180, 77, 255, 0.18), rgba(18, 42, 84, 0.84) 60%);
  border-color: rgba(180, 77, 255, 0.36);
}

.page-home .dir-card--alt {
  border-left: 3px solid var(--hm-warm);
}

.page-home .dir-card__index {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--hm-accent);
  margin-bottom: 12px;
}

.page-home .dir-card--accent .dir-card__index {
  color: var(--hm-accent-alt);
}

.page-home .dir-card__title {
  display: block;
  font-family: var(--font-headline);
  font-size: 19px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.page-home .dir-card__desc {
  display: block;
  font-size: 13px;
  line-height: 1.6;
  color: var(--hm-text-dim);
}

/* ------------------------------------------ */
/* league board                                */
/* ------------------------------------------ */
.page-home .home-league {
  padding: 30px 0 64px;
  position: relative;
}

.page-home .league-board {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  background:
    linear-gradient(130deg, rgba(18, 42, 84, 0.92) 0%, rgba(10, 30, 61, 0.98) 70%);
  border: 1px solid rgba(230, 240, 255, 0.12);
  border-radius: calc(var(--hm-radius) + 8px);
  padding: 34px 22px;
  position: relative;
  overflow: hidden;
}

.page-home .league-board::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  background: linear-gradient(180deg, var(--hm-accent) 0%, var(--hm-accent-alt) 100%);
  border-radius: 0 8px 8px 0;
}

.page-home .league-board__intro {
  position: relative;
  z-index: 1;
}

.page-home .league-board__title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4vw, 38px);
  line-height: 1.2;
  color: var(--hm-text);
  text-transform: uppercase;
  margin: 0 0 16px;
}

.page-home .league-board__lead {
  font-size: 14px;
  line-height: 1.8;
  color: var(--hm-text-dim);
  max-width: 520px;
  margin: 0 0 24px;
}

.page-home .league-board__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  position: relative;
  z-index: 1;
}

.page-home .league-chip {
  background: rgba(10, 30, 61, 0.7);
  border: 1px solid rgba(230, 240, 255, 0.08);
  border-radius: var(--hm-radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 56px 1fr;
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-items: center;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .league-chip:hover {
  border-color: rgba(0, 255, 179, 0.36);
}

.page-home .league-chip__icon {
  grid-row: 1 / 3;
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(0, 255, 179, 0.18);
}

.page-home .league-chip__name {
  font-family: var(--font-headline);
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0;
  color: var(--hm-text);
  align-self: end;
}

.page-home .league-chip__meta {
  font-size: 12px;
  color: var(--hm-text-dim);
  margin: 0;
  align-self: start;
}

/* ------------------------------------------ */
/* search                                      */
/* ------------------------------------------ */
.page-home .home-search {
  padding: 56px 0;
  background:
    linear-gradient(92deg, rgba(10, 30, 61, 0.98) 0%, rgba(18, 42, 84, 0.94) 100%);
  position: relative;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 32px), calc(100% - 12%) 100%, 0 100%);
}

.page-home .home-search__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  padding-bottom: 20px;
}

.page-home .home-search__panel {
  position: relative;
}

.page-home .home-search__title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.18;
  text-transform: uppercase;
  color: var(--hm-text);
  margin: 0 0 14px;
}

.page-home .home-search__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--hm-text-dim);
  margin: 0 0 26px;
  max-width: 560px;
}

.page-home .home-search__box {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px;
  background: rgba(10, 30, 61, 0.8);
  border: 1px solid rgba(0, 255, 179, 0.24);
  border-radius: var(--hm-radius);
  margin-bottom: 18px;
  background-image: linear-gradient(100deg, transparent 0%, rgba(0, 255, 179, 0.06) 50%, transparent 100%);
  background-size: 220% 100%;
  animation: homeFlowBg 6s linear infinite;
}

@keyframes homeFlowBg {
  0% { background-position: 220% 0; }
  100% { background-position: -220% 0; }
}

.page-home .home-search__input {
  flex: 1;
  min-width: 0;
  background: #0a1e3d;
  border: 1px solid rgba(230, 240, 255, 0.16);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--hm-text);
  outline: none;
  transition: border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .home-search__input::placeholder {
  color: rgba(168, 184, 216, 0.56);
}

.page-home .home-search__input:focus {
  border-color: var(--hm-accent);
  box-shadow: 0 0 0 3px rgba(0, 255, 179, 0.20);
}

.page-home .home-search__btn {
  white-space: nowrap;
}

.page-home .home-search__hints {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-home .home-search__hints li {
  font-size: 12px;
  color: var(--hm-text-dim);
  letter-spacing: 0.02em;
}

.page-home .home-search__hints li::before {
  content: "// ";
  color: var(--hm-accent);
  font-family: var(--font-mono);
}

.page-home .home-search__side {
  position: relative;
}

.page-home .home-search__route {
  background: rgba(10, 30, 61, 0.66);
  border-radius: var(--hm-radius);
  border: 1px solid rgba(180, 77, 255, 0.28);
  padding: 22px 20px;
  margin-bottom: 16px;
}

.page-home .home-search__route-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--hm-accent-alt);
  margin-bottom: 14px;
}

.page-home .home-search__route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.page-home .home-search__route-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--hm-text);
  font-weight: 500;
}

.page-home .home-search__route-list li span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hm-deep);
  background: var(--hm-accent);
  flex: none;
}

.page-home .home-search__route-list li:nth-child(2) span,
.page-home .home-search__route-list li:nth-child(3) span {
  background: rgba(0, 255, 179, 0.22);
  color: var(--hm-accent);
  border: 1px solid rgba(0, 255, 179, 0.24);
}

.page-home .home-search__route-list li:nth-child(4) span {
  background: var(--hm-accent-alt);
  color: #ffffff;
}

.page-home .home-search__help-link {
  display: inline-block;
  font-size: 13px;
  color: var(--hm-text-dim);
  text-decoration: none;
  border-bottom: 1px dashed rgba(230, 240, 255, 0.30);
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .home-search__help-link:hover {
  color: var(--hm-accent);
  border-color: var(--hm-accent);
}

/* ------------------------------------------ */
/* focus cards                                 */
/* ------------------------------------------ */
.page-home .home-focus {
  padding: 64px 0 50px;
  position: relative;
}

.page-home .focus-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.page-home .focus-card {
  background: var(--hm-panel);
  border-radius: var(--hm-radius);
  overflow: hidden;
  border: 1px solid rgba(230, 240, 255, 0.10);
  display: grid;
  grid-template-columns: 1fr;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .focus-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.50);
  border-color: rgba(0, 255, 179, 0.28);
}

.page-home .focus-card__visual {
  position: relative;
  overflow: hidden;
  min-height: 160px;
}

.page-home .focus-card__img {
  width: 100%;
  max-width: 100%;
  height: 100%;
  min-height: 160px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .focus-card:hover .focus-card__img {
  transform: scale(1.06);
}

.page-home .focus-card__tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.10em;
  color: #0a1e3d;
  background: var(--hm-accent);
  border-radius: var(--radius-pill);
  font-weight: 700;
}

.page-home .focus-card__body {
  padding: 20px 20px 22px;
}

.page-home .focus-card__league {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--hm-accent-alt);
  text-transform: uppercase;
  margin: 0 0 8px;
}

.page-home .focus-card__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 10px;
  font-family: var(--font-headline);
  font-size: 20px;
  line-height: 1.3;
  text-transform: uppercase;
  color: var(--hm-text);
  margin: 0 0 10px;
}

.page-home .focus-card__vs {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--hm-accent);
  background: rgba(0, 255, 179, 0.10);
  border: 1px solid rgba(0, 255, 179, 0.18);
  border-radius: var(--radius-pill);
  padding: 4px 10px;
}

.page-home .focus-card__time {
  font-size: 13px;
  color: var(--hm-text-dim);
  margin: 0 0 14px;
  line-height: 1.6;
}

.page-home .focus-card__link {
  font-size: 13px;
  color: var(--hm-text);
  text-decoration: none;
  border-bottom: 1px solid var(--hm-accent);
  padding-bottom: 2px;
  transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1), border-color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home .focus-card__link:hover {
  color: var(--hm-accent);
}

/* ------------------------------------------ */
/* watch list                                  */
/* ------------------------------------------ */
.page-home .home-watch {
  padding: 56px 0 60px;
  background:
    linear-gradient(98deg, rgba(18, 42, 84, 0.90) 0%, rgba(10, 30, 61, 0.98) 70%);
  position: relative;
}

.page-home .home-watch::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 38%;
  height: 100%;
  background: repeating-linear-gradient(-30deg, transparent 0, transparent 14px, rgba(180, 77, 255, 0.12) 14px, rgba(180, 77, 255, 0.12) 15px);
  clip-path: polygon(14% 0, 100% 0, 100% 100%, 0 100%);
}

.page-home .home-watch__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  position: relative;
  z-index: 2;
}

.page-home .home-watch__copy {
  position: relative;
  z-index: 2;
}

.page-home .home-watch__title {
  font-family: var(--font-headline);
  font-size: clamp(26px, 4vw, 42px);
  line-height: 1.16;
  text-transform: uppercase;
  color: var(--hm-text);
  margin: 0 0 14px;
}

.page-home .home-watch__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--hm-text-dim);
  margin: 0 0 26px;
  max-width: 560px;
}

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

.page-home .watch-feature {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 14px 16px;
  background: rgba(10, 30, 61, 0.64);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(230, 240, 255, 0.08);
}

.page-home .watch-feature__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: none;
  border-radius: 50%;
  font-family: var(--font-mono);
  font-size: 12px;
  color: #0a1e3d;
  background: var(--hm-accent);
}

.page-home .watch-feature h3 {
  font-size: 15px;
  color: var(--hm-text);
  margin: 0 0 4px;
  letter-spacing: 0.02em;
}

.page-home .watch-feature p {
  font-size: 13px;
  line-height: 1.6;
  color: var(--hm-text-dim);
  margin: 0;
}

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

.page-home .home-watch__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--hm-radius);
  object-fit: cover;
  border: 1px solid rgba(180, 77, 255, 0.28);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.50);
}

.page-home .home-watch__mini-card {
  position: absolute;
  left: 14px;
  bottom: 14px;
  background: rgba(10, 30, 61, 0.92);
  border: 1px solid rgba(0, 255, 179, 0.22);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--hm-text);
  letter-spacing: 0.04em;
}

.page-home .home-watch__mini-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--hm-accent-alt);
}

/* ------------------------------------------ */
/* bottom cta                                  */
/* ------------------------------------------ */
.page-home .home-cta {
  padding: 60px 0 70px;
  position: relative;
  background:
    radial-gradient(circle at 80% 90%, rgba(180, 77, 255, 0.25) 0%, transparent 32%),
    radial-gradient(circle at 8% 10%, rgba(0, 255, 179, 0.18) 0%, transparent 28%);
  border-top: 1px solid rgba(230, 240, 255, 0.08);
}

.page-home .home-cta__inner {
  text-align: center;
}

.page-home .home-cta__title {
  font-family: var(--font-headline);
  font-size: clamp(24px, 4.4vw, 40px);
  line-height: 1.22;
  color: var(--hm-text);
  text-transform: uppercase;
  margin: 0 auto 14px;
  max-width: 740px;
}

.page-home .home-cta__desc {
  font-size: 14px;
  line-height: 1.8;
  color: var(--hm-text-dim);
  margin: 0 auto 28px;
  max-width: 620px;
}

.page-home .home-cta__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* ------------------------------------------ */
/* reveal animation                            */
/* ------------------------------------------ */
.page-home [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.page-home [data-reveal].is-revealed,
.page-home [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .page-home [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .page-home .home-search__box {
    animation: none;
    background: rgba(10, 30, 61, 0.8);
  }
  .page-home .home-hero__badge-dot {
    animation: none;
  }
}

/* ------------------------------------------ */
/* desktop >= 900px                            */
/* ------------------------------------------ */
@media (min-width: 900px) {
  .page-home .home-hero {
    padding: 100px 0 160px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    gap: 56px;
  }

  .page-home .home-hero__copy {
    order: 1;
  }

  .page-home .home-hero__visual {
    order: 2;
    margin-right: 24px;
  }

  .page-home .home-hero__img {
    transform: perspective(900px) rotateY(-5deg) rotateZ(0.6deg) scale(1);
    border-radius: 8px 36px 8px 36px;
  }

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

  .page-home .home-directory {
    margin-top: -56px;
    padding: 24px 0 64px;
  }

  .page-home .home-directory__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .page-home .dir-card {
    padding: 26px 24px;
    min-height: 190px;
  }

  .page-home .dir-card:nth-child(even) {
    transform: translateY(14px);
  }

  .page-home .dir-card:nth-child(even):hover {
    transform: translateY(8px);
  }

  .page-home .section-head--row {
    flex-direction: row;
    align-items: flex-end;
  }

  .page-home .section-head__note {
    text-align: right;
  }

  .page-home .league-board {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
    padding: 44px 36px;
  }

  .page-home .league-board__grid {
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    gap: 14px;
    padding-top: 26px;
  }

  .page-home .league-chip {
    grid-template-columns: 64px 1fr;
  }

  .page-home .league-chip__icon {
    width: 64px;
    height: 64px;
  }

  .page-home .home-search {
    padding: 76px 0;
  }

  .page-home .home-search__inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 64px;
    align-items: center;
  }

  .page-home .home-search__box {
    flex-direction: row;
    align-items: center;
    padding: 10px;
  }

  .page-home .home-search__input {
    padding: 15px 16px;
  }

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

  .page-home .focus-card {
    grid-template-columns: 130px minmax(0, 1fr);
    min-height: 150px;
  }

  .page-home .focus-card--wide {
    grid-column: 1 / -1;
    grid-template-columns: 180px minmax(0, 1fr);
  }

  .page-home .focus-card__visual,
  .page-home .focus-card__img {
    min-height: 100%;
  }

  .page-home .focus-card__body {
    padding: 18px 22px 18px;
  }

  .page-home .focus-card__title {
    font-size: 21px;
  }

  .page-home .home-watch__inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: 60px;
    align-items: center;
  }

  .page-home .home-watch__feature-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .page-home .watch-feature {
    flex-direction: column;
    padding: 18px;
    gap: 12px;
  }

  .page-home .home-watch__mini-card {
    left: -14px;
  }
}

@media (min-width: 1200px) {
  .page-home .focus-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .page-home .focus-card--wide {
    grid-column: auto;
    grid-template-columns: 150px minmax(0, 1fr);
  }

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