.page-home {
  color: var(--paper);
  background: var(--ink);
}

.page-home .hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
}

.page-home .hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .4;
}

.page-home .hero-block-left,
.page-home .hero-block-right {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.page-home .hero-block-left {
  background: linear-gradient(150deg, rgba(11,27,61,.94) 0%, rgba(15,42,74,.72) 100%);
  clip-path: polygon(0 0, 100% 0, 100% 74%, 0 52%);
}

.page-home .hero-block-right {
  background: linear-gradient(210deg, rgba(26,11,46,.94) 0%, rgba(11,27,61,.75) 100%);
  clip-path: polygon(0 52%, 100% 74%, 100% 100%, 0 100%);
}

.page-home .hero-beam {
  position: absolute;
  top: -8%;
  bottom: -8%;
  left: 20%;
  width: 60%;
  background: linear-gradient(90deg, rgba(57,255,136,0) 0%, rgba(57,255,136,.14) 30%, rgba(123,47,255,.28) 50%, rgba(57,255,136,.08) 80%, rgba(57,255,136,0) 100%);
  transform: skewX(-16deg);
  z-index: 0;
  pointer-events: none;
}

.page-home .hero-particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  opacity: .7;
}

.page-home .hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 36px;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 48px;
}

.page-home .breadcrumbs {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .1em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.page-home .hero-kicker {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .16em;
  color: var(--neon);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.page-home .hero-copy h1 {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(34px, 6vw, 62px);
  line-height: 1.08;
  color: var(--white);
  margin: 0 0 18px;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}

.page-home .hero-copy .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  max-width: 36em;
  margin-bottom: 22px;
}

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

.page-home .hero-entry {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
  opacity: .78;
}

.page-home .hero-stage {
  display: grid;
  gap: 24px;
  max-width: 560px;
}

.page-home .hero-panel {
  padding: 22px;
  background: linear-gradient(150deg, rgba(15,42,74,.94), rgba(11,27,61,.82));
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
  box-shadow: inset 0 0 0 1px rgba(123,47,255,.3), 0 22px 50px rgba(0,0,0,.42);
}

.page-home .hero-panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.page-home .hero-panel-head .mono {
  font-size: 14px;
  color: var(--white);
  letter-spacing: .08em;
}

.page-home .hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.page-home .hero-stat {
  text-align: center;
  padding: 12px 6px;
  background: rgba(11,27,61,.6);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.page-home .hero-stat .data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 32px;
  color: var(--white);
  line-height: 1;
  padding-bottom: 4px;
}

.page-home .hero-stat .data-label {
  font-size: 12px;
  color: var(--paper);
  opacity: .75;
  letter-spacing: .06em;
}

.page-home .hero-time {
  display: block;
  font-family: var(--font-mono);
  font-size: 26px;
  color: var(--gold);
  line-height: 1.2;
  padding-bottom: 4px;
}

.page-home .hero-chart {
  margin-bottom: 12px;
}

.page-home .hero-chart img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-home .hero-panel-foot {
  font-size: 13px;
  color: var(--neon);
  text-align: right;
  letter-spacing: .08em;
}

.page-home .hero-device img {
  width: 100%;
  height: auto;
  object-fit: cover;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}

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

.page-home .section-head {
  margin-bottom: 30px;
}

.page-home .section-note {
  display: block;
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--volt);
  letter-spacing: .12em;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.page-home .section-title {
  font-family: var(--font-head);
  font-style: italic;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.12;
  color: var(--white);
  margin: 0 0 12px;
}

.page-home .section-desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--paper);
  max-width: 46em;
}

.page-home .panel-status {
  background: rgba(15,42,74,.35);
}

.page-home .panel-status .grid {
  gap: 20px;
}

.page-home .status-card {
  background: rgba(11,27,61,.72);
  border: 1px solid rgba(123,47,255,.28);
  padding: 24px;
  transition: transform .25s ease, border-color .25s ease;
}

.page-home .status-card:hover {
  transform: translateY(-5px);
  border-color: var(--neon);
}

.page-home .status-card-title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--white);
  margin: 14px 0 8px;
}

.page-home .status-card-text {
  font-size: 15px;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 16px;
}

.page-home .status-card-metric {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}

.page-home .status-card-metric .data-num {
  font-family: var(--font-mono);
  font-size: 30px;
  color: var(--gold);
  line-height: 1;
}

.page-home .status-card-metric .data-label {
  font-size: 12px;
  color: var(--paper);
  opacity: .7;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.page-home .league-switch {
  background: linear-gradient(180deg, var(--ink) 0%, rgba(15,42,74,.4) 50%, var(--ink) 100%);
}

.page-home .league-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.page-home .league-tab {
  font-family: var(--font-head);
  font-size: 15px;
  padding: 10px 20px;
  background: rgba(11,27,61,.85);
  color: var(--paper);
  border: 1px solid rgba(123,47,255,.4);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}

.page-home .league-tab:hover,
.page-home .league-tab.is-active {
  background: rgba(57,255,136,.16);
  color: var(--neon);
  border-color: var(--neon);
}

.page-home .league-panel {
  display: grid;
  gap: 24px;
  padding: 26px;
  background: linear-gradient(145deg, rgba(15,42,74,.92), rgba(11,27,61,.76));
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .league-panel-info h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  margin: 14px 0 10px;
}

.page-home .league-panel-info p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 18px;
}

.page-home .league-panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.page-home .league-stat {
  text-align: center;
  padding: 16px 8px;
  background: rgba(11,27,61,.55);
}

.page-home .league-stat .data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 28px;
  color: var(--white);
  line-height: 1.2;
}

.page-home .league-stat .data-num.gold {
  color: var(--gold);
}

.page-home .league-stat .data-label {
  font-size: 12px;
  color: var(--paper);
  opacity: .75;
}

.page-home .sync-device {
  background: radial-gradient(ellipse at 85% 20%, rgba(123,47,255,.18), transparent 60%);
}

.page-home .sync-grid {
  display: grid;
  gap: 32px;
}

.page-home .sync-copy .lead {
  font-size: 17px;
  line-height: 1.7;
  color: var(--paper);
  margin-bottom: 18px;
}

.page-home .sync-copy .link-list {
  margin-bottom: 22px;
}

.page-home .sync-copy .link-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-home .sync-copy .link-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  background: var(--neon);
  transform: rotate(45deg);
}

.page-home .sync-panel {
  padding: 26px;
  background: rgba(11,27,61,.78);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  border-left: 3px solid var(--volt);
}

.page-home .sync-panel h3 {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--white);
  margin: 14px 0 16px;
}

.page-home .sync-steps {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  counter-reset: sync-step;
}

.page-home .sync-steps li {
  counter-increment: sync-step;
  position: relative;
  padding: 10px 12px 10px 46px;
  background: rgba(15,42,74,.6);
  margin-bottom: 10px;
  font-size: 15px;
  line-height: 1.5;
}

.page-home .sync-steps li::before {
  content: counter(sync-step, decimal-leading-zero);
  position: absolute;
  left: 12px;
  top: 10px;
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--neon);
}

.page-home .sync-panel .mono {
  font-size: 13px;
  color: var(--neon);
  letter-spacing: .1em;
}

.page-home .client-download {
  background: rgba(15,42,74,.35);
}

.page-home .client-grid {
  display: grid;
  gap: 20px;
}

.page-home .client-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: linear-gradient(150deg, rgba(15,42,74,.94), rgba(11,27,61,.8));
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
}

.page-home .client-icon {
  width: 96px;
  height: 96px;
  object-fit: cover;
  flex-shrink: 0;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
}

.page-home .client-info h3 {
  font-family: var(--font-head);
  font-size: 21px;
  color: var(--white);
  margin: 0 0 8px;
}

.page-home .client-info p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--paper);
  margin-bottom: 12px;
}

.page-home .client-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .client-note {
  padding: 24px;
  background: rgba(11,27,61,.72);
  border: 1px solid rgba(255,215,0,.3);
  transition: border-color .25s ease;
}

.page-home .client-note:hover {
  border-color: var(--gold);
}

.page-home .client-note h3 {
  font-family: var(--font-head);
  font-size: 19px;
  color: var(--white);
  margin: 0 0 10px;
}

.page-home .client-note p {
  font-size: 15px;
  line-height: 1.65;
  color: var(--paper);
  margin-bottom: 18px;
}

.page-home .trust-data .grid {
  gap: 16px;
  margin-bottom: 20px;
}

.page-home .trust-item {
  text-align: center;
  padding: 24px 12px;
  background: rgba(11,27,61,.65);
  border: 1px solid rgba(57,255,136,.18);
}

.page-home .trust-item .data-num {
  display: block;
  font-family: var(--font-mono);
  font-size: 34px;
  color: var(--gold);
  line-height: 1.1;
}

.page-home .trust-item .data-label {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--paper);
  opacity: .8;
  letter-spacing: .08em;
}

.page-home .trust-extra {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 24px;
}

.page-home .trust-statement {
  max-width: 48em;
  margin: 0 auto;
  text-align: center;
  font-size: 16px;
  line-height: 1.7;
  color: var(--paper);
  padding-top: 20px;
  border-top: 1px solid rgba(255,215,0,.2);
}

.page-home .discover {
  padding-top: 32px;
}

.page-home .discover-grid {
  display: grid;
  gap: 20px;
}

.page-home .discover-card {
  display: block;
  padding: 26px;
  background: linear-gradient(140deg, rgba(15,42,74,.88), rgba(11,27,61,.7));
  border: 1px solid rgba(123,47,255,.3);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
  text-decoration: none;
  transition: border-color .25s ease, transform .25s ease;
}

.page-home .discover-card:hover {
  border-color: var(--neon);
  transform: translateY(-4px);
}

.page-home .discover-title {
  display: block;
  font-family: var(--font-head);
  font-style: italic;
  font-size: 26px;
  color: var(--white);
  margin: 8px 0 6px;
}

.page-home .discover-desc {
  font-size: 15px;
  color: var(--paper);
  opacity: .8;
}

@media (min-width: 768px) {
  .page-home .hero-block-left {
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
  }

  .page-home .hero-block-right {
    clip-path: polygon(42% 0, 100% 0, 100% 100%, 58% 100%);
  }

  .page-home .hero-inner {
    grid-template-columns: 1fr minmax(0, 1fr);
    gap: 56px;
  }

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

  .page-home .league-panel {
    grid-template-columns: 3fr 2fr;
    align-items: center;
  }

  .page-home .sync-grid {
    grid-template-columns: 1.2fr .8fr;
    gap: 56px;
    align-items: center;
  }

  .page-home .client-grid {
    grid-template-columns: 1.2fr 1fr;
  }

  .page-home .discover-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1100px) {
  .page-home .hero-copy {
    padding-right: 20px;
  }
}
