.page-home {
  --home-hero-veil: rgba(6, 30, 23, 0.78);
  --home-blue-line: rgba(183, 227, 124, 0.28);
  --home-red-glow: rgba(230, 57, 70, 0.28);
  --home-grid-line: rgba(183, 227, 124, 0.08);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background: var(--sw-green);
  color: var(--sw-cream);
  padding-block: 64px 56px;
}

.page-home .home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-home .home-hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(6, 30, 23, 0.94) 0%, rgba(11, 59, 46, 0.82) 58%, rgba(20, 33, 61, 0.6) 100%);
}

.page-home .home-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px 40px;
}

.page-home .home-hero__copy {
  max-width: 640px;
}

.page-home .home-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sw-lime);
  border: 1px solid rgba(183, 227, 124, 0.4);
  padding: 7px 14px;
}

.page-home .home-hero__eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--sw-red);
  display: inline-block;
}

.page-home .home-hero__title {
  margin: 22px 0 24px;
  font-family: var(--sw-font-head);
  font-size: clamp(52px, 9vw, 108px);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: -0.03em;
  color: var(--sw-cream);
}

.page-home .home-hero__desc {
  margin: 0 0 32px;
  max-width: 540px;
  font-size: 16px;
  line-height: 1.75;
  color: rgba(244, 241, 232, 0.88);
}

.page-home .home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 26px;
}

.page-home .home-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sw-cream);
  text-decoration: none;
  border-bottom: 2px solid var(--sw-red);
  padding-bottom: 4px;
  transition: border-color var(--sw-dur) var(--sw-ease);
}

.page-home .home-hero__link:hover {
  border-color: var(--sw-lime);
}

.page-home .home-hero__link-arrow {
  font-size: 18px;
  color: var(--sw-red);
}

.page-home .home-hero__board {
  position: relative;
  background: var(--sw-blue);
  border: 1px solid var(--home-blue-line);
  padding: 24px 22px;
  box-shadow: -8px 8px 0 var(--home-red-glow);
}

.page-home .home-hero__board-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.page-home .home-hero__board-meta {
  font-size: 12px;
  color: rgba(244, 241, 232, 0.7);
  letter-spacing: 0.02em;
}

.page-home .home-hero__board-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 18px;
}

.page-home .home-hero__board-cell {
  border: 1px solid rgba(244, 241, 232, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 16px 10px;
}

.page-home .home-hero__board-num {
  font-family: var(--sw-font-data);
  font-size: 13px;
  color: var(--sw-red);
  font-weight: 700;
}

.page-home .home-hero__board-cell p {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sw-cream);
  line-height: 1.3;
}

.page-home .home-hero__board-cell small {
  font-size: 12px;
  color: rgba(244, 241, 232, 0.6);
}

.page-home .home-hero__board-pipeline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 18px;
  padding: 12px;
  background: rgba(244, 241, 232, 0.06);
  border-left: 3px solid var(--sw-lime);
  font-family: var(--sw-font-data);
  font-size: 12px;
  color: var(--sw-lime);
}

.page-home .home-hero__board-pipeline i {
  font-style: normal;
  color: rgba(244, 241, 232, 0.4);
}

.page-home .home-hero__board-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--sw-cream);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 2px solid var(--sw-red);
  padding-bottom: 4px;
  transition: border-color var(--sw-dur) var(--sw-ease);
}

.page-home .home-hero__board-link:hover {
  border-color: var(--sw-lime);
}

.page-home .home-hero__arrow {
  position: absolute;
  z-index: 2;
  width: 140px;
  height: 80px;
  top: 24%;
  left: 46%;
  fill: none;
  stroke: var(--sw-red);
  stroke-width: 3;
  transform: rotate(2deg);
  pointer-events: none;
}

.page-home .home-hero__arrow-line {
  stroke-dasharray: 5 4;
  animation: home-arrow-dash 1.1s linear infinite;
}

.page-home .home-hero__arrow-head {
  fill: var(--sw-red);
  stroke: none;
}

@keyframes home-arrow-dash {
  to {
    stroke-dashoffset: -18;
  }
}

.page-home .home-gates {
  background: var(--sw-cream);
  padding-block: 48px;
}

.page-home .home-gates__grid {
  display: grid;
  gap: 18px;
}

.page-home .home-gate {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(139, 154, 147, 0.4);
  border-left: 4px solid var(--sw-green-strong);
  padding: 28px 24px;
  text-decoration: none;
  color: var(--sw-ink);
  transition: border-color var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease), box-shadow var(--sw-dur) var(--sw-ease);
}

.page-home .home-gate:hover {
  border-color: var(--sw-red);
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(34, 36, 40, 0.08);
}

.page-home .home-gate__num {
  font-family: var(--sw-font-data);
  font-size: 28px;
  font-weight: 500;
  color: var(--sw-red);
  line-height: 1;
}

.page-home .home-gate__title {
  margin: 14px 0 10px;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--sw-green);
}

.page-home .home-gate__desc {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.7;
  color: #444;
  flex: 1;
}

.page-home .home-gate__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-home .home-gate__label {
  font-size: 14px;
  font-weight: 700;
  color: var(--sw-green-strong);
}

.page-home .home-gate__arrow {
  font-size: 22px;
  color: var(--sw-red);
}

.page-home .home-section-head {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 36px;
}

.page-home .home-section-head h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.16;
  color: var(--sw-ink);
}

.page-home .home-section-head__desc {
  margin: 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(34, 36, 40, 0.78);
}

.page-home .home-section-head--light h2 {
  color: var(--sw-cream);
}

.page-home .home-section-head--light .home-section-head__desc {
  color: rgba(244, 241, 232, 0.78);
}

.page-home .home-focus {
  background: var(--sw-cream);
  padding-block: 24px 72px;
}

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

.page-home .home-focus__media {
  margin: 0;
  border: 1px solid rgba(139, 154, 147, 0.5);
  background: var(--sw-blue);
}

.page-home .home-focus__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-focus__media figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: var(--sw-cream);
  background: var(--sw-green);
}

.page-home .home-focus__matches {
  display: grid;
  gap: 24px;
}

.page-home .home-focus__match {
  padding: 24px;
}

.page-home .home-focus__match-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.page-home .home-focus__match-day {
  font-family: var(--sw-font-data);
  font-size: 16px;
  font-weight: 700;
  color: var(--sw-red);
}

.page-home .home-focus__match-name {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--sw-green);
}

.page-home .home-focus__match-list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: grid;
  gap: 8px;
}

.page-home .home-focus__match-list li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.6;
  color: #444;
}

.page-home .home-focus__match-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 7px;
  height: 7px;
  background: var(--sw-green-strong);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.page-home .home-focus__detail {
  margin: -6px 0 16px;
  border-top: 1px dashed var(--sw-silver);
  padding-top: 10px;
}

.page-home .home-focus__detail summary {
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--sw-green-strong);
  list-style: none;
}

.page-home .home-focus__detail summary::-webkit-details-marker {
  display: none;
}

.page-home .home-focus__detail summary::before {
  content: "+";
  font-family: var(--sw-font-data);
  font-size: 15px;
  font-weight: 700;
  color: var(--sw-red);
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--sw-red);
}

.page-home .home-focus__detail[open] summary::before {
  content: "−";
}

.page-home .home-focus__detail-body {
  margin-top: 10px;
  padding: 12px 14px;
  background: rgba(244, 241, 232, 0.65);
  border-left: 3px solid var(--sw-lime);
  font-size: 13px;
  line-height: 1.65;
  color: #555;
}

.page-home .home-focus__match .sw-btn {
  width: 100%;
  justify-content: center;
}

.page-home .home-reports {
  background: var(--sw-blue);
  padding-block: 64px;
}

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

.page-home .home-reports__panel {
  border: 1px solid rgba(183, 227, 124, 0.22);
  background: rgba(244, 241, 232, 0.04);
}

.page-home .home-reports__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(244, 241, 232, 0.08);
  font-size: 14px;
  color: rgba(244, 241, 232, 0.88);
}

.page-home .home-reports__row:last-of-type {
  border-bottom: none;
}

.page-home .home-reports__row--head {
  background: var(--sw-green-strong);
  color: var(--sw-cream);
  font-weight: 700;
}

.page-home .home-reports__row span:last-child {
  text-align: right;
  color: var(--sw-lime);
}

.page-home .home-reports__row--head span:last-child {
  color: var(--sw-cream);
}

.page-home .home-reports__note {
  margin: 0;
  padding: 10px 16px;
  font-size: 12px;
  color: rgba(244, 241, 232, 0.55);
  background: rgba(6, 30, 23, 0.3);
}

.page-home .home-reports__media {
  margin: 0;
  border: 1px solid rgba(244, 241, 232, 0.18);
}

.page-home .home-reports__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-home .home-reports__media figcaption {
  padding: 10px 14px;
  font-size: 13px;
  color: rgba(244, 241, 232, 0.72);
  background: rgba(6, 30, 23, 0.45);
}

.page-home .home-db {
  position: relative;
  overflow: hidden;
  background: var(--sw-green);
  padding-block: 64px;
}

.page-home .home-db::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(var(--home-grid-line) 1px, transparent 1px), linear-gradient(90deg, var(--home-grid-line) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.page-home .home-db .sw-container {
  position: relative;
  z-index: 1;
}

.page-home .home-db__grid {
  display: grid;
  gap: 16px;
}

.page-home .home-db__card {
  background: rgba(244, 241, 232, 0.06);
  border: 1px solid rgba(183, 227, 124, 0.24);
  padding: 28px 24px;
  transition: border-color var(--sw-dur) var(--sw-ease), background var(--sw-dur) var(--sw-ease), transform var(--sw-dur) var(--sw-ease);
}

.page-home .home-db__card:hover {
  border-color: var(--sw-red);
  background: rgba(244, 241, 232, 0.1);
  transform: translateY(-3px);
}

.page-home .home-db__card h3 {
  margin: 0 0 10px;
  font-size: 19px;
  font-weight: 800;
  color: var(--sw-cream);
}

.page-home .home-db__card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(244, 241, 232, 0.76);
}

.page-home .home-db__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}

.page-home .home-db__cta p {
  margin: 0;
  font-size: 14px;
  color: rgba(244, 241, 232, 0.72);
}

.page-home .home-topic {
  position: relative;
  overflow: hidden;
  padding-block: 64px;
}

.page-home .home-topic__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.32;
}

.page-home .home-topic__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(244, 241, 232, 0.92) 0%, rgba(244, 241, 232, 0.76) 100%);
}

.page-home .home-topic .sw-container {
  position: relative;
  z-index: 2;
}

.page-home .home-topic__content {
  max-width: 720px;
}

.page-home .home-topic h2 {
  margin: 16px 0 14px;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.18;
  color: var(--sw-green);
}

.page-home .home-topic p {
  margin: 0 0 28px;
  font-size: 16px;
  line-height: 1.75;
  color: #333;
}

.page-home .home-topic .sw-btn--light {
  box-shadow: 4px 4px 0 var(--sw-green-strong);
}

.page-home .home-dashboard {
  background: var(--sw-blue);
  padding-block: 64px;
}

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

.page-home .home-dashboard__stat {
  background: rgba(244, 241, 232, 0.05);
  border: 1px solid rgba(183, 227, 124, 0.18);
  padding: 26px 16px;
  text-align: center;
}

.page-home .home-dashboard__stat p {
  margin: 10px 0 4px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sw-cream);
}

.page-home .home-dashboard__stat small {
  font-size: 12px;
  line-height: 1.5;
  color: rgba(244, 241, 232, 0.6);
}

.page-home .home-dashboard .sw-stat {
  display: block;
  font-family: var(--sw-font-data);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 700;
  line-height: 1;
  color: var(--sw-cream);
  letter-spacing: -0.02em;
}

.page-home .home-dashboard .sw-stat--red {
  color: var(--sw-red);
}

.page-home .home-dashboard .sw-stat--blue {
  color: #6eabff;
}

.page-home .home-dashboard__leagues {
  margin-top: 36px;
  text-align: center;
}

.page-home .home-dashboard__leagues h3 {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(244, 241, 232, 0.7);
}

.page-home .home-dashboard__league-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.page-home .home-dashboard__league-tags span {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 12px;
  border: 1px solid rgba(183, 227, 124, 0.3);
  color: var(--sw-lime);
  background: rgba(183, 227, 124, 0.08);
}

.page-home .home-trust {
  background: var(--sw-cream);
  padding-block: 64px;
}

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

.page-home .home-trust__card {
  background: #fff;
  border-top: 4px solid var(--sw-green-strong);
  border-right: 1px solid rgba(139, 154, 147, 0.35);
  border-bottom: 1px solid rgba(139, 154, 147, 0.35);
  border-left: 1px solid rgba(139, 154, 147, 0.35);
  padding: 24px;
}

.page-home .home-trust__card h3 {
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 800;
  color: var(--sw-green);
}

.page-home .home-trust__card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 6px;
}

.page-home .home-trust__card li {
  position: relative;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

.page-home .home-trust__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  background: var(--sw-red);
  transform: rotate(45deg);
}

.page-home .home-trust__card p {
  margin: 0 0 8px;
  font-size: 14px;
  line-height: 1.65;
  color: #333;
}

.page-home .home-trust__contact-line {
  font-family: var(--sw-font-data);
  font-size: 15px;
  font-weight: 600;
  color: var(--sw-ink);
}

.page-home .home-trust__contact-note {
  font-size: 13px;
  color: #777;
}

.page-home .home-trust__statement {
  margin: 36px 0 0;
  padding: 20px 24px;
  border-left: 4px solid var(--sw-gold);
  background: rgba(212, 175, 55, 0.12);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  color: var(--sw-wine);
  text-align: center;
}

.page-home .home-trust__icp {
  margin: 16px 0 0;
  font-size: 13px;
  color: #777;
  text-align: center;
}

.page-home .home-reports .sw-sec-num,
.page-home .home-db .sw-sec-num,
.page-home .home-dashboard .sw-sec-num {
  color: var(--sw-lime);
}

@media (min-width: 768px) {
  .page-home .home-hero {
    padding-block: 96px 80px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
  }

  .page-home .home-hero__board {
    transform: rotate(2deg);
  }

  .page-home .home-gates {
    padding-block: 56px;
  }

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

  .page-home .home-focus {
    padding-block: 48px 96px;
  }

  .page-home .home-focus__grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 40px;
    align-items: center;
  }

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

  .page-home .home-reports {
    padding-block: 80px;
  }

  .page-home .home-reports__grid {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 40px;
  }

  .page-home .home-db {
    padding-block: 80px;
  }

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

  .page-home .home-topic {
    padding-block: 88px;
  }

  .page-home .home-topic__content {
    padding-left: 40px;
  }

  .page-home .home-dashboard {
    padding-block: 88px;
  }

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

  .page-home .home-trust {
    padding-block: 80px;
  }

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

@media (min-width: 1024px) {
  .page-home .home-hero__inner {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-hero__arrow-line {
    animation: none;
  }

  .page-home .home-gate:hover,
  .page-home .home-db__card:hover {
    transform: none;
    box-shadow: none;
  }
}
