.page-home {
  --home-gap: 1.5rem;
  --home-band: clamp(4rem, 8vw, 7rem);
  background: var(--rice);
}
.page-home .home-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--deep-blue);
  color: var(--rice);
  overflow: hidden;
}
.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 10%;
  right: -8%;
  width: clamp(220px, 28vw, 460px);
  height: clamp(220px, 28vw, 460px);
  border-radius: 50%;
  border: 1px solid rgba(0, 255, 136, .16);
  box-shadow: 0 0 0 28px rgba(0, 255, 136, .04), 0 0 0 56px rgba(0, 255, 136, .02);
  z-index: 2;
  pointer-events: none;
}
.page-home .home-hero__bg,
.page-home .home-hero__shade {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.page-home .home-hero__bg {
  z-index: 0;
  object-fit: cover;
  opacity: .45;
}
.page-home .home-hero__shade {
  z-index: 1;
  background:
    radial-gradient(ellipse at 72% 18%, rgba(0, 255, 136, .09), transparent 54%),
    linear-gradient(180deg, rgba(11, 27, 43, .84) 0%, rgba(11, 27, 43, .5) 46%, rgba(11, 27, 43, .9) 100%);
}
.page-home .home-hero__ruler-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 34px;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 12px;
  background-color: rgba(11, 27, 43, .68);
  background-image: repeating-linear-gradient(90deg, rgba(255, 255, 255, .28) 0 1px, transparent 1px 12px);
  border-bottom: 1px solid rgba(255, 255, 255, .16);
}
.page-home .home-hero__coord {
  font-family: var(--font-data);
  font-size: 12px;
  letter-spacing: .1em;
  color: var(--neon);
  background: rgba(11, 27, 43, .55);
  padding: .15em .6em;
  border-radius: var(--radius-pill);
}
.page-home .home-hero__coord--hidden {
  display: none;
}
.page-home .home-hero__ruler-side {
  position: absolute;
  top: 34px;
  bottom: 0;
  width: 26px;
  z-index: 4;
  display: none;
  opacity: .55;
}
.page-home .home-hero__ruler-side--left {
  left: 0;
  border-right: 1px solid rgba(255, 255, 255, .14);
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, .3) 0 1px, transparent 1px 14px);
}
.page-home .home-hero__ruler-side--right {
  right: 0;
  border-left: 1px solid rgba(255, 255, 255, .14);
  background-image: repeating-linear-gradient(180deg, rgba(255, 255, 255, .3) 0 1px, transparent 1px 14px);
}
.page-home .home-hero__inner {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-top: 54px;
  padding-bottom: 44px;
}
.page-home .home-hero__layout {
  display: grid;
  gap: 2rem;
}
.page-home .home-hero__crumb {
  margin-bottom: 1.5rem;
}
.page-home .home-hero__crumb ol {
  list-style: none;
  display: flex;
  gap: .5rem;
  padding: 0;
  margin: 0;
  font-size: .8125rem;
  font-weight: 300;
  color: rgba(248, 245, 239, .7);
}
.page-home .home-hero__crumb li + li::before {
  content: "/";
  margin-right: .5rem;
  opacity: .5;
}
.page-home .home-hero__eyebrow {
  color: var(--neon);
  margin-bottom: .75rem;
}
.page-home .home-hero__title {
  font-family: var(--font-head);
  font-size: clamp(2.5rem, 7vw, 4.75rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.2rem;
  color: var(--rice);
}
.page-home .home-hero__lead {
  font-size: 1.05rem;
  line-height: 1.8;
  font-weight: 300;
  color: rgba(248, 245, 239, .88);
  max-width: 34ch;
  margin: 0 0 1.2rem;
}
.page-home .home-hero__meta {
  font-family: var(--font-data);
  font-size: .875rem;
  color: var(--neon);
  opacity: .75;
  margin-bottom: 2rem;
}
.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.page-home .home-hero__entries {
  display: flex;
  flex-direction: column;
  gap: var(--home-gap);
}
.page-home .home-entry {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem 1.25rem;
  background: rgba(248, 245, 239, .06);
  border: 1px solid rgba(248, 245, 239, .16);
  border-radius: var(--radius-lg);
  color: var(--rice);
  text-decoration: none;
  overflow: hidden;
  transition: background .4s var(--ease-out), border-color .4s var(--ease-out), transform .4s var(--ease-out);
}
.page-home .home-entry::after {
  content: "";
  position: absolute;
  right: -60%;
  top: 0;
  width: 46%;
  height: 100%;
  background: linear-gradient(105deg, transparent, rgba(0, 255, 136, .14), transparent);
  transform: skewX(-14deg);
  transition: right .55s var(--ease-out);
  pointer-events: none;
}
.page-home .home-entry:hover {
  border-color: rgba(46, 107, 62, .9);
  background: rgba(46, 107, 62, .3);
  transform: translateY(-4px);
}
.page-home .home-entry:hover::after {
  right: -10%;
}
.page-home .home-entry__index {
  position: absolute;
  top: .7rem;
  right: .9rem;
  font-family: var(--font-data);
  font-size: .75rem;
  color: rgba(248, 245, 239, .35);
  letter-spacing: .08em;
}
.page-home .home-entry__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(0, 255, 136, .12);
  border: 1px solid rgba(0, 255, 136, .28);
  color: var(--neon);
}
.page-home .home-entry__content {
  display: flex;
  flex-direction: column;
  gap: .25rem;
  min-width: 0;
}
.page-home .home-entry__content strong {
  font-size: 1.02rem;
  font-weight: 700;
  letter-spacing: .01em;
}
.page-home .home-entry__content span {
  font-size: .8438rem;
  color: rgba(248, 245, 239, .72);
  line-height: 1.55;
}
.page-home .home-entry__arrow {
  margin-left: auto;
  color: var(--neon);
  font-size: 1.2rem;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity .3s var(--ease-out), transform .3s var(--ease-out);
}
.page-home .home-entry:hover .home-entry__arrow {
  opacity: 1;
  transform: translateX(0);
}
.page-home .home-hero__scroll {
  position: relative;
  margin-top: 2.25rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(248, 245, 239, .55);
}
.page-home .home-hero__scroll::before {
  content: "";
  width: 44px;
  height: 1px;
  background: linear-gradient(90deg, var(--neon), transparent);
}
.page-home .home-dashboard,
.page-home .home-features,
.page-home .home-news {
  padding: var(--home-band) 0;
}
.page-home .home-stats {
  padding: var(--home-band) 0;
  background: var(--rock);
  color: var(--rice);
}
.page-home .home-dashboard__head-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.page-home .home-dashboard__head-row .section-head {
  margin: 0;
  width: 100%;
}
.page-home .home-dashboard__faq {
  flex-shrink: 0;
  font-family: var(--font-data);
  font-size: .8125rem;
  color: var(--moss);
  text-decoration: none;
  padding: .4em 0;
  border-bottom: 2px solid transparent;
  transition: border-color .3s var(--ease-out), color .3s var(--ease-out);
}
.page-home .home-dashboard__faq:hover {
  border-color: var(--moss);
  color: var(--terra);
}
.page-home .home-dashboard__grid {
  display: grid;
  gap: 1.75rem;
}
.page-home .home-dashboard__frame {
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
}
.page-home .home-dashboard__frame-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 1rem;
  border-bottom: 1px solid rgba(11, 27, 43, .08);
}
.page-home .home-dashboard__coords {
  font-family: var(--font-data);
  font-size: .75rem;
  color: rgba(26, 26, 26, .5);
}
.page-home .home-dashboard__chart-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  padding: 1rem;
  box-sizing: border-box;
}
.page-home .home-dashboard__chart-note {
  margin-top: auto;
  padding: .75rem 1rem 1rem;
  font-size: .8125rem;
  color: rgba(26, 26, 26, .6);
  border-top: 1px solid rgba(11, 27, 43, .06);
}
.page-home .home-dashboard__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.page-home .home-dashboard__item {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11, 27, 43, .08);
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem 1.2rem;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out);
}
.page-home .home-dashboard__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--moss), var(--neon));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s var(--ease-out);
}
.page-home .home-dashboard__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-float);
}
.page-home .home-dashboard__item:hover::before {
  transform: scaleX(1);
}
.page-home .home-dashboard__label {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: rgba(26, 26, 26, .6);
}
.page-home .home-dashboard__value {
  display: block;
  font-family: var(--font-data);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--deep-blue);
  margin-top: .35rem;
}
.page-home .home-dashboard__unit {
  font-size: 1rem;
  font-weight: 400;
  margin-left: .1rem;
}
.page-home .home-dashboard__hint {
  display: block;
  font-size: .75rem;
  color: rgba(26, 26, 26, .5);
  margin-top: .35rem;
}
.page-home .home-dashboard__item--live .home-dashboard__value::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--neon);
  vertical-align: middle;
  margin-right: .4rem;
  box-shadow: 0 0 0 0 rgba(0, 255, 136, .5);
  animation: homeOpenmatchPulse 2.2s var(--ease-out) infinite;
}
.page-home .home-dashboard__item--live:hover .home-dashboard__value::before {
  animation-duration: .9s;
}
.page-home .home-stats__head {
  margin-bottom: 2.5rem;
}
.page-home .home-stats__head .eyebrow {
  color: var(--neon);
}
.page-home .home-stats__head .section-title {
  color: var(--rice);
}
.page-home .home-stats__head .section-desc {
  color: rgba(248, 245, 239, .72);
}
.page-home .home-stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(248, 245, 239, .16);
  border: 1px solid rgba(248, 245, 239, .16);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.page-home .home-stats__cell {
  min-height: 140px;
  background: var(--rock);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .5rem;
  padding: 1.75rem 1.25rem;
  transition: background .3s var(--ease-out);
}
.page-home .home-stats__cell:hover {
  background: rgba(11, 27, 43, .5);
}
.page-home .home-stats__num {
  font-family: var(--font-data);
  font-size: clamp(1.65rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--neon);
  letter-spacing: -.01em;
}
.page-home .home-stats__label {
  font-size: .875rem;
  color: rgba(248, 245, 239, .78);
  letter-spacing: .04em;
}
.page-home .home-features__layout {
  display: grid;
  gap: 2.5rem;
}
.page-home .home-features__side {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-home .home-features__head {
  margin-bottom: 0;
}
.page-home .home-features__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(11, 27, 43, .1);
}
.page-home .home-features__media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.page-home .home-features__media:hover img {
  transform: scale(1.04);
}
.page-home .home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.page-home .home-feature-card {
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11, 27, 43, .08);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.35rem 1.4rem;
  overflow: hidden;
  transition: box-shadow .35s var(--ease-out), transform .35s var(--ease-out), border-color .35s var(--ease-out);
}
.page-home .home-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 68px;
  height: 68px;
  border-radius: 0 0 0 26px;
  background: linear-gradient(135deg, transparent 62%, rgba(184, 93, 62, .09));
  pointer-events: none;
}
.page-home .home-feature-card:hover {
  border-color: var(--moss);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}
.page-home .home-feature-card__num {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--terra);
  letter-spacing: .06em;
  margin-bottom: .85rem;
}
.page-home .home-feature-card h3 {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0 0 .5rem;
  color: var(--ink);
}
.page-home .home-feature-card p {
  font-size: .875rem;
  line-height: 1.7;
  margin: 0;
  color: rgba(26, 26, 26, .62);
}
.page-home .home-news {
  background: #F1EDE3;
}
.page-home .home-news__layout {
  display: grid;
  gap: 2.5rem;
}
.page-home .home-news__head {
  margin-bottom: 0;
}
.page-home .home-news__list {
  display: flex;
  flex-direction: column;
  gap: .875rem;
  margin-top: 2rem;
}
.page-home .home-news__item {
  position: relative;
  display: block;
  background: rgba(248, 245, 239, .85);
  border: 1px solid rgba(11, 27, 43, .08);
  border-radius: var(--radius-md);
  padding: 1.35rem 1.4rem;
  text-decoration: none;
  color: var(--ink);
  transition: background .3s var(--ease-out), border-color .3s var(--ease-out), transform .3s var(--ease-out);
}
.page-home .home-news__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 14%;
  bottom: 14%;
  width: 3px;
  background: var(--terra);
  border-radius: 0 3px 3px 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .35s var(--ease-out);
}
.page-home .home-news__item:hover {
  background: #FFFFFF;
  border-color: var(--terra);
  transform: translateY(-3px);
}
.page-home .home-news__item:hover::before {
  transform: scaleY(1);
}
.page-home .home-news__tag {
  display: inline-block;
  font-family: var(--font-data);
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--terra);
  background: rgba(184, 93, 62, .1);
  border-radius: var(--radius-pill);
  padding: .22em .75em;
  margin-bottom: .7rem;
}
.page-home .home-news__item h3 {
  font-size: 1.0625rem;
  line-height: 1.5;
  margin: 0 0 .5rem;
}
.page-home .home-news__item p {
  font-size: .875rem;
  line-height: 1.7;
  margin: 0 0 .75rem;
  color: rgba(26, 26, 26, .6);
}
.page-home .home-news__more {
  font-family: var(--font-data);
  font-size: .8125rem;
  color: var(--moss);
}
.page-home .home-news__all {
  display: inline-block;
  margin-top: 1.5rem;
  font-family: var(--font-data);
  font-size: .875rem;
  color: var(--moss);
  text-decoration: none;
  border-bottom: 2px solid var(--moss);
  padding-bottom: .2em;
  transition: color .3s var(--ease-out), border-color .3s var(--ease-out);
}
.page-home .home-news__all:hover {
  color: var(--terra);
  border-color: var(--terra);
}
.page-home .home-news__visual {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-home .home-news__frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.page-home .home-news__frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.page-home .home-news__note {
  font-size: .8125rem;
  color: rgba(26, 26, 26, .55);
  margin: 0;
  padding-left: 1rem;
  border-left: 2px solid var(--terra);
}
@keyframes homeOpenmatchPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, .45);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(0, 255, 136, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
  }
}
@media (min-width: 640px) {
  .page-home .home-hero__coord--hidden {
    display: inline-block;
  }
  .page-home .home-hero__entry-icon {
    width: 52px;
    height: 52px;
  }
  .page-home .home-stats__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .home-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .page-home .home-dashboard__grid {
    grid-template-columns: 1.1fr .9fr;
    gap: 2rem;
    align-items: stretch;
  }
  .page-home .home-dashboard__head-row {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .page-home .home-dashboard__head-row .section-head {
    width: auto;
  }
}
@media (min-width: 1024px) {
  .page-home .home-hero__layout {
    grid-template-columns: 1.05fr .95fr;
    gap: 4rem;
    align-items: center;
  }
  .page-home .home-hero__ruler-side {
    display: block;
  }
  .page-home .home-stats__grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .page-home .home-features__layout {
    grid-template-columns: .85fr 1.15fr;
    gap: 4rem;
    align-items: start;
  }
  .page-home .home-news__layout {
    grid-template-columns: 1.15fr .85fr;
    gap: 4rem;
    align-items: center;
  }
}
