.page-home {
  --home-hero-bg: #0A3D2E;
  --home-hero-bg-deep: #082F23;
  --home-cream: #F7F6F2;
  --home-ink: #111111;
  --home-orange: #FF5C00;
  --home-gold: #E8A33D;
  --home-surface: #E9E6DF;
  --home-gray: #4A4A4A;
  --home-card-shadow: 6px 6px 0 rgba(17,17,17,0.16);
  --home-card-shadow-hover: 10px 10px 0 rgba(17,17,17,0.22);
  background: var(--home-cream);
  overflow-x: hidden;
}

/* ===== Hero ===== */
.home-hero {
  position: relative;
  min-height: min(92vh, 860px);
  background: var(--home-hero-bg);
  color: #FFFFFF;
  display: flex;
  align-items: stretch;
  padding: calc(var(--header-h) + 32px) var(--gutter) 72px;
  overflow: hidden;
}

.home-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.home-hero__diagonal {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.home-hero__grid {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 520px;
  height: 520px;
  opacity: 0.5;
}

.home-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.home-hero__content {
  max-width: 680px;
}

.home-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,246,242,0.8);
  margin-bottom: 20px;
  border: 1px solid rgba(232,163,61,0.5);
  padding: 6px 14px;
  border-radius: 999px;
}

.home-hero__kicker-dot {
  width: 8px;
  height: 8px;
  background: var(--home-orange);
  border-radius: 50%;
  position: relative;
}

.home-hero__title {
  margin: 0;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #FFFFFF 60%, rgba(247,246,242,0.7));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.home-hero__lead {
  margin: 24px 0 0;
  font-size: clamp(1rem, 1.6vw, 1.2rem);
  line-height: 1.8;
  color: rgba(247,246,242,0.88);
  max-width: 560px;
}

.home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 36px;
}

.home-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 44px;
  padding-top: 20px;
  border-top: 1px solid rgba(247,246,242,0.2);
}

.home-hero__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247,246,242,0.75);
}

.home-hero__meta-icon {
  display: inline-flex;
  color: var(--home-gold);
}

.home-hero__visual {
  position: relative;
  flex: 1;
  min-height: 420px;
}

.home-hero__media {
  position: absolute;
  right: 0;
  top: 8%;
  width: min(82%, 560px);
  border: 3px solid var(--home-cream);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.28);
  overflow: hidden;
}

.home-hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,61,46,0) 55%, rgba(10,61,46,0.55));
}

.home-hero__img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
}

.home-hero__media-label {
  position: absolute;
  right: -8px;
  bottom: 14px;
  background: var(--home-orange);
  color: #FFFFFF;
  padding: 6px 12px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  z-index: 2;
}

.home-hero__card {
  position: absolute;
  background: var(--home-cream);
  color: var(--home-ink);
  border: 3px solid var(--home-ink);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.25);
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 150px;
  z-index: 3;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-hero__card:hover {
  border-color: var(--home-orange);
  box-shadow: 8px 8px 0 rgba(17,17,17,0.35);
  transform: translate(-2px, -2px);
}

.home-hero__card--top {
  top: 2%;
  left: 0;
}

.home-hero__card--bottom {
  bottom: 4%;
  right: 0;
  background: var(--home-ink);
  color: var(--home-cream);
  border-color: var(--home-ink);
}

.home-hero__card--bottom:hover {
  border-color: var(--home-gold);
}

.home-hero__card-no {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-orange);
  letter-spacing: 0.1em;
}

.home-hero__card--bottom .home-hero__card-no {
  color: var(--home-gold);
}

.home-hero__card-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
}

.home-hero__card-value {
  font-family: var(--font-mono);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--home-green, var(--home-hero-bg));
}

.home-hero__card--bottom .home-hero__card-value {
  display: none;
}

.home-hero__card-line {
  display: block;
  width: 100%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--home-gold) 0 6px, transparent 6px 12px);
}

.home-hero__coords {
  position: absolute;
  left: 4%;
  bottom: 0;
  display: flex;
  gap: 18px;
  writing-mode: vertical-rl;
}

.home-hero__coords .coords__num {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: rgba(247,246,242,0.5);
}

.home-hero__scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.home-hero__scroll-line {
  width: 1px;
  height: 44px;
  background: linear-gradient(180deg, transparent, var(--home-gold));
}

.home-hero__scroll-text {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(247,246,242,0.5);
  writing-mode: vertical-rl;
}

/* ===== Scores section ===== */
.home-scores {
  padding: 80px var(--gutter);
  position: relative;
}

.home-scores::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 100% 0%, var(--home-gold) 0%, var(--home-gold) 0%, transparent 0%);
  background-size: 18px 18px;
  opacity: 0.25;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.home-scores__head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px 32px;
  margin-bottom: 44px;
  align-items: end;
}

.home-scores__heading-wrap {
  display: flex;
  align-items: baseline;
  gap: 16px;
}

.home-scores__no {
  font-family: var(--font-mono);
  font-size: 48px;
  font-weight: 700;
  color: var(--home-green, #0A3D2E);
  line-height: 0.9;
  opacity: 0.25;
}

.home-scores__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--home-ink);
}

.home-scores__desc {
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-gray);
  max-width: 660px;
}

.home-scores__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 14px 18px;
  border: 2px solid var(--home-green, #0A3D2E);
  background: transparent;
  width: fit-content;
}

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

.home-score-card {
  background: #FFFFFF;
  border: 3px solid var(--home-green, #0A3D2E);
  box-shadow: var(--home-card-shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.home-score-card:hover {
  border-color: var(--home-orange);
  box-shadow: var(--home-card-shadow-hover);
  transform: translate(-2px, -2px);
}

.home-score-card--large {
  grid-column: 1 / -1;
  background: var(--home-green, #0A3D2E);
  border-color: var(--home-green, #0A3D2E);
  color: #FFFFFF;
  padding: 28px 22px;
}

.home-score-card--large:hover {
  border-color: var(--home-gold);
}

.home-score-card__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.home-score-card__league {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--home-gray);
}

.home-score-card--large .home-score-card__league {
  color: rgba(247,246,242,0.7);
}

.home-score-card__status {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--home-green, #0A3D2E);
  border: 1px solid var(--home-green, #0A3D2E);
  padding: 3px 10px;
}

.home-score-card--large .home-score-card__status {
  color: var(--home-gold);
  border-color: var(--home-gold);
}

.home-score-card__mid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.home-score-card__mid--row {
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.home-score-card__team {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.home-score-card--large .home-score-card__team {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

.home-score-card__team-dot {
  width: 10px;
  height: 10px;
  background: var(--team-dot);
  border-radius: 50%;
  flex-shrink: 0;
}

.home-score-card__team-name {
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.home-score-card--large .home-score-card__team-name {
  font-size: 18px;
}

.home-score-card__team-tag {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--home-orange);
  border: 1px solid currentColor;
  padding: 1px 6px;
  letter-spacing: 0.08em;
}

.home-score-card__score {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.home-score-card__score-num {
  font-family: var(--font-mono);
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}

.home-score-card--large .home-score-card__score-num {
  font-size: 44px;
}

.home-score-card__score-sep {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--home-gray);
}

.home-score-card--large .home-score-card__score-sep {
  color: var(--home-gold);
}

.home-score-card__foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 12px;
  border-top: 1px solid rgba(17,17,17,0.08);
}

.home-score-card--large .home-score-card__foot {
  border-color: rgba(247,246,242,0.2);
}

.home-score-card__round {
  font-size: 13px;
  font-weight: 500;
  color: var(--home-gray);
}

.home-score-card--large .home-score-card__round {
  color: rgba(247,246,242,0.75);
}

.home-score-card__venue {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--home-gray);
}

.home-score-card--large .home-score-card__venue {
  color: var(--home-gold);
}

.home-score-card--streak {
  background: var(--home-surface);
  border-color: var(--home-ink);
}

.home-score-card--streak:hover {
  border-color: var(--home-orange);
}

.home-score-card__streak-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.home-score-card__streak-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--home-ink);
}

.home-score-card__streak-note {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--home-gray);
}

.home-score-card__streak-chart {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  height: 120px;
  padding: 8px 4px 0;
  border-bottom: 2px solid var(--home-ink);
  position: relative;
}

.home-score-card__streak-chart::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed rgba(17,17,17,0.25);
}

.home-score-card__bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  flex: 1;
  gap: 6px;
  position: relative;
  z-index: 1;
}

.home-score-card__bar::before {
  content: "";
  width: 100%;
  height: var(--bar-h);
  background: var(--home-green, #0A3D2E);
  border: 2px solid var(--home-ink);
  min-height: 20px;
}

.home-score-card__bar--away::before {
  background: var(--home-gold);
}

.home-score-card__bar--draw::before {
  background: var(--home-orange);
}

.home-score-card__bar-val {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-ink);
}

.home-score-card__bar-label {
  font-size: 11px;
  color: var(--home-gray);
  white-space: nowrap;
}

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

/* ===== Features section ===== */
.home-features {
  background: var(--home-green, #0A3D2E);
  color: #FFFFFF;
  padding: 80px var(--gutter);
  position: relative;
  overflow: hidden;
}

.home-features::before {
  content: "";
  position: absolute;
  right: -40px;
  top: -40px;
  width: 220px;
  height: 220px;
  border: 3px solid rgba(232,163,61,0.25);
  transform: rotate(12deg);
}

.home-features__head {
  margin-bottom: 44px;
  position: relative;
  z-index: 1;
}

.home-features__no {
  font-family: var(--font-mono);
  font-size: 44px;
  font-weight: 700;
  color: var(--home-gold);
  opacity: 0.5;
  display: block;
  margin-bottom: 8px;
}

.home-features__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: #FFFFFF;
}

.home-features__desc {
  margin: 16px 0 0;
  max-width: 620px;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(247,246,242,0.75);
}

.home-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.home-feature-card {
  display: block;
  text-decoration: none;
  color: inherit;
  background: rgba(247,246,242,0.08);
  border: 3px solid rgba(247,246,242,0.8);
  transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.home-feature-card:hover {
  border-color: var(--home-orange);
  background: rgba(247,246,242,0.14);
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 rgba(0,0,0,0.3);
}

.home-feature-card--orange {
  border-color: var(--home-orange);
  background: rgba(255,92,0,0.22);
}

.home-feature-card--orange:hover {
  border-color: var(--home-gold);
  background: rgba(255,92,0,0.32);
}

.home-feature-card__inner {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 100%;
}

.home-feature-card__icon {
  color: var(--home-gold);
  display: inline-flex;
  margin-bottom: 4px;
}

.home-feature-card--orange .home-feature-card__icon {
  color: var(--home-orange);
}

.home-feature-card__no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: rgba(247,246,242,0.5);
}

.home-feature-card__title {
  margin: 0;
  font-size: 20px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.3;
}

.home-feature-card__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,246,242,0.7);
}

.home-feature-card__link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  color: var(--home-gold);
  margin-top: 16px;
}

.home-feature-card--orange .home-feature-card__link {
  color: var(--home-orange);
}

.home-features__visual {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
  z-index: 1;
}

.home-features__visual-frame {
  border: 3px solid var(--home-gold);
  background: #000;
  box-shadow: 8px 8px 0 rgba(0,0,0,0.4);
  overflow: hidden;
  position: relative;
}

.home-features__visual-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,61,46,0.4) 0%, transparent 40%);
}

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

.home-features__visual-caption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  background: var(--home-ink);
  color: var(--home-cream);
  font-size: 12px;
  padding: 4px 10px;
  font-family: var(--font-mono);
  letter-spacing: 0.06em;
  z-index: 2;
}

.home-features__visual-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  border-left: 3px solid var(--home-orange);
  padding-left: 16px;
}

.home-features__visual-no {
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--home-orange);
  font-weight: 700;
}

.home-features__visual-text {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(247,246,242,0.75);
}

/* ===== Update section ===== */
.home-update {
  padding: 80px var(--gutter);
}

.home-update__layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.home-update__head {
  margin-bottom: 32px;
}

.home-update__no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--home-orange);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.home-update__title {
  margin: 0;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 900;
  color: var(--home-ink);
}

.home-update__lead {
  margin: 12px 0 0;
  font-size: 15px;
  line-height: 1.8;
  color: var(--home-gray);
  max-width: 560px;
}

.home-update__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.home-update__stat {
  border: 3px solid var(--home-green, #0A3D2E);
  background: #FFFFFF;
  padding: 20px 12px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 6px;
  box-shadow: 4px 4px 0 rgba(17,17,17,0.12);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.home-update__stat:hover {
  border-color: var(--home-orange);
  box-shadow: 6px 6px 0 rgba(17,17,17,0.18);
  transform: translate(-2px, -2px);
}

.home-update__stat-num {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1;
}

.home-update__stat-label {
  font-size: 12px;
  color: var(--home-gray);
  line-height: 1.4;
}

.home-update__routes {
  border-top: 3px solid var(--home-ink);
  padding-top: 24px;
}

.home-update__routes-title {
  margin: 0 0 20px;
  font-size: 16px;
  font-weight: 900;
  color: var(--home-ink);
}

.home-update__route-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.home-update__route-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(17,17,17,0.1);
  align-items: flex-start;
  transition: padding-left 0.3s ease;
}

.home-update__route-item:hover {
  padding-left: 8px;
}

.home-update__route-item:last-child {
  border-bottom: none;
}

.home-update__route-no {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  color: var(--home-gold);
  min-width: 34px;
  border: 1px solid var(--home-green, #0A3D2E);
  text-align: center;
  padding: 4px 0;
}

.home-update__route-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.home-update__route-tag {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--home-orange);
  text-transform: uppercase;
}

.home-update__route-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-gray);
}

.home-update__side {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home-update__side-frame {
  border: 3px solid var(--home-ink);
  box-shadow: 8px 8px 0 rgba(17,17,17,0.16);
  overflow: hidden;
}

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

.home-update__side-card {
  background: var(--home-surface);
  border: 3px solid var(--home-green, #0A3D2E);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.home-update__side-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  color: var(--home-gold);
  font-weight: 700;
}

.home-update__side-text {
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-ink);
}

.home-update__side-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== Route section ===== */
.home-route {
  background: var(--home-surface);
  padding: 80px var(--gutter);
}

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

.home-route__intro {
  margin-bottom: 20px;
}

.home-route__no {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--home-orange);
  font-weight: 700;
  display: block;
  margin-bottom: 8px;
}

.home-route__title {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--home-ink);
}

.home-route__desc {
  margin: 12px 0 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-gray);
  max-width: 460px;
}

.home-route__link {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #FFFFFF;
  border: 3px solid var(--home-green, #0A3D2E);
  padding: 18px 20px;
  text-decoration: none;
  color: var(--home-ink);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}

.home-route__link:hover {
  border-color: var(--home-orange);
  box-shadow: 6px 6px 0 rgba(17,17,17,0.16);
  transform: translate(-2px, -2px);
}

.home-route__link-no {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  color: var(--home-gold);
  min-width: 28px;
}

.home-route__link-title {
  font-size: 17px;
  font-weight: 900;
  flex: 1;
}

.home-route__link-arrow {
  font-size: 20px;
  color: var(--home-orange);
  transition: transform 0.3s ease;
}

.home-route__link:hover .home-route__link-arrow {
  transform: translate(4px, -4px);
}

/* ===== Trust section ===== */
.home-trust {
  background: var(--home-ink);
  color: #FFFFFF;
  padding: 44px var(--gutter);
}

.home-trust__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
}

.home-trust__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--home-green, #0A3D2E);
  border: 2px solid var(--home-gold);
  color: var(--home-gold);
  border-radius: 50%;
  flex-shrink: 0;
}

.home-trust__badge svg {
  display: block;
}

.home-trust__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  text-align: center;
}

.home-trust__coord {
  font-size: 12px;
  color: var(--home-gold);
  letter-spacing: 0.06em;
  font-family: var(--font-mono);
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
  .home-hero__inner {
    flex-direction: row;
    align-items: center;
  }

  .home-hero__content {
    flex: 0 0 46%;
  }

  .home-hero__visual {
    flex: 1;
  }

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

  .home-score-card--large {
    grid-column: 1 / -1;
  }

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

  .home-features__visual {
    grid-template-columns: 1.4fr 1fr;
    align-items: center;
  }

  .home-update__layout {
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
  }

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

  .home-route__intro {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1024px) {
  .home-scores__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .home-score-card--large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .home-score-card--streak {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: center;
  }

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

  .home-scores__heading-wrap {
    grid-column: 1;
  }

  .home-scores__desc {
    grid-column: 1;
  }

  .home-scores__legend {
    grid-column: 2;
    grid-row: 1 / span 2;
    justify-self: end;
    align-self: start;
  }

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

@media (prefers-reduced-motion: reduce) {
  .page-home *,
  .page-home *::before,
  .page-home *::after {
    transition: none !important;
    animation: none !important;
  }
}

.page-home {
  --bar-h: 1rem;
  --home-green: transparent;
  --team-dot: transparent;
}
