.page-home {
  --home-navy-depth: #06122A;
  --home-navy: #0A1F44;
  --home-navy-2: #123A5F;
  --home-gold: #C9A227;
  --home-gold-light: #E3C768;
  --home-red: #D64545;
  --home-paper: #F5F7FA;
  --home-card: #FFFFFF;
  --home-ink: #2B2B2B;
  --home-muted: #5A6B7A;
  --home-gray: #8A9BA8;
  --home-line: rgba(201, 162, 39, 0.35);
}

.page-home .home-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 31, 68, 0.97) 0%, rgba(6, 18, 42, 0.98) 55%, rgba(18, 58, 95, 0.95) 100%),
    radial-gradient(circle at 80% 20%, rgba(201, 162, 39, 0.12) 0%, transparent 45%);
  color: #FFFFFF;
  padding: 72px 0 64px;
}

.page-home .home-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(105deg, transparent 0%, transparent 12%, rgba(201, 162, 39, 0.08) 12.5%, rgba(201, 162, 39, 0.05) 40%, transparent 41%);
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: none;
}

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

.page-home .home-hero__intro {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .home-hero__kicker {
  margin: 0 0 20px;
  color: var(--color-gold-light);
  font-size: 14px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .home-hero__title {
  margin: 0 0 24px;
  font-family: var(--font-headline);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.01em;
}

.page-home .home-hero__lead {
  margin: 0 0 36px;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.88);
  max-width: 540px;
}

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

.page-home .home-hero__primary {
  min-width: 180px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(201, 162, 39, 0.28);
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.page-home .home-hero__primary:hover,
.page-home .home-hero__primary:focus {
  background: linear-gradient(135deg, #E3C768 0%, #C9A227 100%);
  box-shadow: 0 6px 28px rgba(201, 162, 39, 0.45);
  transform: translateY(-2px);
}

.page-home .home-hero__secondary {
  min-width: 180px;
  text-align: center;
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}

.page-home .home-hero__secondary:hover,
.page-home .home-hero__secondary:focus {
  border-color: var(--color-gold-light);
  color: var(--color-gold-light);
}

.page-home .home-hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 8px;
}

.page-home .home-hero__trust-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-left: 2px solid var(--color-gold);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.82);
  letter-spacing: 0.02em;
}

.page-home .home-hero__panel {
  position: relative;
  background: linear-gradient(160deg, rgba(18, 58, 95, 0.92) 0%, rgba(10, 31, 68, 0.96) 100%);
  border: 1px solid rgba(201, 162, 39, 0.3);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 28px), calc(100% - 28px) 100%, 0 100%);
}

.page-home .home-hero__panel-tag {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--color-gray);
  text-transform: uppercase;
}

.page-home .home-hero__login-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 20px 28px;
  background: linear-gradient(135deg, #C9A227 0%, #D8B33A 55%, #E3C768 100%);
  color: var(--color-navy-depth);
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.page-home .home-hero__login-btn::after {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 180%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transform: rotate(18deg) translateX(-120%);
  transition: transform 0.55s ease;
}

.page-home .home-hero__login-btn:hover::after,
.page-home .home-hero__login-btn:focus::after {
  transform: rotate(18deg) translateX(230%);
}

.page-home .home-hero__login-btn:hover,
.page-home .home-hero__login-btn:focus {
  box-shadow: 0 8px 32px rgba(201, 162, 39, 0.5);
  transform: translateY(-2px);
}

.page-home .home-hero__login-btn-text {
  font-family: var(--font-headline);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.2;
}

.page-home .home-hero__login-btn-hint {
  font-size: 13px;
  line-height: 1.3;
  opacity: 0.72;
}

.page-home .home-hero__quick-stats {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
}

.page-home .home-hero__quick-stat {
  text-align: center;
}

.page-home .home-hero__quick-stat dt {
  font-size: 12px;
  color: var(--color-gray);
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.page-home .home-hero__quick-stat dd {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-gold-light);
  line-height: 1.2;
}

.page-home .home-hero__quick-unit {
  font-size: 0.8rem;
  margin-left: 2px;
  color: rgba(255, 255, 255, 0.6);
}

.page-home .home-hero__pitch {
  width: 100%;
  height: auto;
  background: linear-gradient(180deg, rgba(6, 18, 42, 0.6) 0%, rgba(18, 58, 95, 0.5) 100%);
  border-radius: 2px;
  display: block;
}

.page-home .home-hero__corner {
  position: absolute;
  width: 48px;
  height: 48px;
  pointer-events: none;
}

.page-home .home-hero__corner--tl {
  top: -1px;
  left: -1px;
  border-top: 2px solid var(--home-red);
  border-left: 2px solid var(--home-red);
}

.page-home .home-hero__corner--br {
  bottom: 26px;
  right: 0;
  border-bottom: 2px solid var(--home-gold);
  border-right: 2px solid var(--home-gold);
}

.page-home .home-hero__axis {
  position: absolute;
  bottom: 32px;
  left: 48px;
  font-size: 12px;
  letter-spacing: 0.18em;
  writing-mode: vertical-rl;
  color: rgba(255, 255, 255, 0.35);
}

.page-home .section--dark {
  background:
    radial-gradient(ellipse at 15% 30%, rgba(201, 162, 39, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #0A1F44 0%, #06122A 100%);
  color: #FFFFFF;
}

.page-home .page-home__stats {
  padding: 80px 0 72px;
  position: relative;
}

.page-home .page-home__stats::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--color-gold) 0%, transparent 42%);
}

.page-home .page-home__section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 44px;
}

.page-home .page-home__section-kicker {
  margin: 0 0 8px;
  color: var(--color-gold);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-home .page-home__section-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.25;
}

.page-home .page-home__section-lead {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
}

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

.page-home .page-home__chart-card {
  margin: 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 24px 20px 20px;
}

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

.page-home .page-home__chart-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
}

.page-home .page-home__chart-tag {
  background: transparent;
  border: 1px solid rgba(201, 162, 39, 0.5);
  color: var(--color-gold-light);
  font-size: 12px;
}

.page-home .page-home__bar-chart {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.page-home .page-home__bar-row {
  display: grid;
  grid-template-columns: 34px 1fr;
  align-items: center;
  gap: 10px;
}

.page-home .page-home__bar-round {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.page-home .page-home__bar-track {
  height: 18px;
  background: rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.page-home .page-home__bar-fill {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, rgba(201, 162, 39, 0.75) 0%, rgba(227, 199, 104, 0.95) 100%);
  position: relative;
  min-width: 32px;
}

.page-home .page-home__bar-fill--peak {
  background: linear-gradient(90deg, #D64545 0%, rgba(227, 199, 104, 0.9) 100%);
}

.page-home .page-home__bar-value {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 11px;
  font-weight: 700;
  color: #0A1F44;
  line-height: 1;
}

.page-home .page-home__chart-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 14px;
}

.page-home .page-home__stat-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.page-home .page-home__stat-card {
  background: rgba(18, 58, 95, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 20px;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.page-home .page-home__stat-card:hover {
  border-color: rgba(201, 162, 39, 0.45);
  background: rgba(18, 58, 95, 0.92);
}

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

.page-home .page-home__stat-label {
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.72);
}

.page-home .page-home__stat-icon {
  display: inline-flex;
  color: var(--home-gold);
  opacity: 0.5;
}

.page-home .page-home__stat-number {
  margin: 0 0 6px;
  font-family: var(--font-headline);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
}

.page-home .page-home__stat-unit {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-left: 4px;
}

.page-home .page-home__stat-desc {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.58);
}

.page-home .page-home__stat-red {
  color: var(--home-red);
  font-weight: 700;
}

.page-home .page-home__data-refresh {
  margin: 28px 0 0;
  padding: 14px 18px;
  background: rgba(201, 162, 39, 0.08);
  border-left: 2px solid var(--home-gold);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
}

.page-home .page-home__schedule {
  background: var(--home-paper);
  padding: 80px 0 72px;
  position: relative;
}

.page-home .page-home__schedule::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 240px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--home-gold) 100%);
}

.page-home .page-home__section-head--light {
  margin-bottom: 36px;
}

.page-home .page-home__section-head--light .page-home__section-title {
  color: var(--home-ink);
}

.page-home .page-home__section-head--light .page-home__section-lead {
  color: var(--home-muted);
}

.page-home .page-home__match-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.page-home .page-home__match-media {
  position: relative;
}

.page-home .page-home__match-media-inner {
  border: 1px solid rgba(10, 31, 68, 0.1);
  background: var(--home-navy);
  position: relative;
  overflow: hidden;
}

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

.page-home .page-home__media-caption {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 14px 18px;
  background: linear-gradient(90deg, rgba(10, 31, 68, 0.95) 0%, rgba(10, 31, 68, 0.72) 100%);
  color: #FFFFFF;
  font-size: 14px;
  letter-spacing: 0.04em;
  backdrop-filter: blur(2px);
}

.page-home .page-home__rounds {
  background: var(--home-card);
  border: 1px solid rgba(10, 31, 68, 0.1);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px 20px;
}

.page-home .page-home__rounds-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  border-bottom: 1px solid rgba(10, 31, 68, 0.08);
  padding-bottom: 14px;
}

.page-home .page-home__rounds-title {
  margin: 0;
  font-family: var(--font-headline);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--home-ink);
}

.page-home .page-home__rounds-tag {
  background: rgba(201, 162, 39, 0.12);
  border: 1px solid rgba(201, 162, 39, 0.35);
  color: #8A6D14;
  font-size: 12px;
  padding: 4px 10px;
}

.page-home .page-home__round-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 31, 68, 0.06);
}

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

.page-home .page-home__round-item-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.page-home .page-home__round-item-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 24px;
  background: var(--home-navy);
  color: var(--home-gold-light);
  font-size: 12px;
  font-weight: 700;
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}

.page-home .page-home__round-item-name {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--home-ink);
  flex: 1;
}

.page-home .page-home__round-link {
  font-size: 13px;
  color: var(--home-gold);
  text-decoration: none;
  border-bottom: 1px solid rgba(201, 162, 39, 0.4);
}

.page-home .page-home__round-link:hover,
.page-home .page-home__round-link:focus {
  color: #8A6D14;
  border-bottom-color: transparent;
}

.page-home .page-home__round-item-desc {
  margin: 10px 0 0;
  padding-left: 44px;
  font-size: 13px;
  color: var(--home-muted);
  line-height: 1.55;
}

.page-home .page-home__round-more {
  border-top: 1px solid rgba(10, 31, 68, 0.1);
  margin-top: 6px;
}

.page-home .page-home__round-more-summary {
  cursor: pointer;
  list-style: none;
  font-family: var(--font-headline);
  font-size: 14px;
  font-weight: 600;
  color: var(--home-navy);
  padding: 14px 0 6px;
  transition: color 0.2s ease;
}

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

.page-home .page-home__round-more-summary::before {
  content: "+";
  display: inline-block;
  width: 20px;
  color: var(--home-gold);
  font-weight: 700;
  font-size: 18px;
}

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

.page-home .page-home__round-more-summary:hover,
.page-home .page-home__round-more-summary:focus {
  color: #8A6D14;
}

.page-home .page-home__round-more-list {
  list-style: none;
  margin: 0;
  padding: 0 0 8px;
}

.page-home .page-home__round-more-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed rgba(10, 31, 68, 0.08);
  font-size: 14px;
  color: var(--home-ink);
  line-height: 1.4;
}

.page-home .page-home__round-more-item:last-child {
  border-bottom: none;
}

.page-home .page-home__round-more-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 22px;
  background: rgba(10, 31, 68, 0.08);
  font-size: 12px;
  font-weight: 700;
  color: var(--home-navy);
  border-radius: 2px;
  font-variant-numeric: tabular-nums;
}

.page-home .page-home__round-more-item .tag {
  margin-left: auto;
  font-size: 12px;
  padding: 3px 8px;
  background: rgba(201, 162, 39, 0.1);
  color: #8A6D14;
  border: 1px solid rgba(201, 162, 39, 0.25);
}

.page-home .page-home__favorites {
  padding: 80px 0 72px;
}

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

.page-home .page-home__favorites-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .page-home__favorites-lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
  max-width: 560px;
}

.page-home .page-home__tool-switch {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 28px;
}

.page-home .page-home__tool-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 16px;
  font-size: 14px;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.75);
  background: transparent;
  transition: all 0.2s ease;
  cursor: default;
}

.page-home .page-home__tool-btn--active {
  background: var(--home-gold);
  border-color: var(--home-gold);
  color: var(--home-navy-depth);
  box-shadow: 0 2px 12px rgba(201, 162, 39, 0.3);
}

.page-home .page-home__tool-arrow {
  color: rgba(255, 255, 255, 0.4);
  display: inline-flex;
}

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

.page-home .page-home__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.05);
  border-left: 2px solid rgba(201, 162, 39, 0.6);
}

.page-home .page-home__feature-check {
  color: var(--home-gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.page-home .page-home__feature-text {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.85);
}

.page-home .page-home__feature-text strong {
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 2px;
}

.page-home .page-home__feature-text span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

.page-home .page-home__favorites-card-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.page-home .page-home__favorites-media {
  width: 100%;
  max-width: 280px;
  margin: 0 auto;
  border: 1px solid rgba(201, 162, 39, 0.25);
  background: rgba(255, 255, 255, 0.04);
}

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

.page-home .page-home__favorites-card {
  background: linear-gradient(145deg, rgba(18, 58, 95, 0.9) 0%, rgba(10, 31, 68, 0.95) 100%);
  border: 1px solid rgba(201, 162, 39, 0.28);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.page-home .page-home__favorites-card::before {
  content: "";
  position: absolute;
  top: -1px;
  right: -1px;
  width: 42px;
  height: 42px;
  border-top: 2px solid var(--home-gold);
  border-right: 2px solid var(--home-gold);
}

.page-home .page-home__favorites-card-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  color: #FFFFFF;
}

.page-home .page-home__favorites-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.page-home .page-home__fav-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: var(--font-body);
}

.page-home .page-home__fav-btn--gold {
  background: var(--home-gold);
  border: 1px solid var(--home-gold);
  color: var(--home-navy-depth);
}

.page-home .page-home__fav-btn--gold:hover {
  background: var(--home-gold-light);
  border-color: var(--home-gold-light);
  box-shadow: 0 4px 14px rgba(201, 162, 39, 0.35);
}

.page-home .page-home__fav-btn--gold[aria-pressed="false"] {
  background: transparent;
  border-color: rgba(201, 162, 39, 0.5);
  color: var(--home-gold-light);
}

.page-home .page-home__fav-btn--outline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: rgba(255, 255, 255, 0.8);
}

.page-home .page-home__fav-btn--outline:hover {
  border-color: var(--home-gold-light);
  color: var(--home-gold-light);
}

.page-home .page-home__assurance {
  background: var(--home-paper);
  padding: 80px 0 72px;
  position: relative;
}

.page-home .page-home__assurance-head {
  margin-bottom: 44px;
}

.page-home .page-home__assurance-head .page-home__section-title {
  color: var(--home-ink);
}

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

.page-home .page-home__assurance-card {
  padding: 26px 22px;
  border: 1px solid rgba(10, 31, 68, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-home .page-home__assurance-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(201, 162, 39, 0.35);
}

.page-home .page-home__assurance-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  color: #FFFFFF;
  background: var(--home-navy);
  margin-bottom: 18px;
  position: relative;
}

.page-home .page-home__assurance-icon::after {
  content: "";
  position: absolute;
  right: -5px;
  bottom: -5px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--home-gold);
  border-bottom: 2px solid var(--home-gold);
}

.page-home .page-home__assurance-title {
  margin: 0 0 10px;
  font-family: var(--font-headline);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--home-ink);
}

.page-home .page-home__assurance-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: var(--home-muted);
}

.page-home .page-home__assurance-bottom {
  margin-top: 36px;
}

.page-home .page-home__assurance-note {
  margin: 0;
  padding: 16px 20px;
  background: rgba(10, 31, 68, 0.05);
  border-left: 3px solid var(--home-gold);
  font-size: 14px;
  line-height: 1.7;
  color: var(--home-ink);
}

.page-home .page-home__banner {
  padding: 72px 0;
  background:
    linear-gradient(120deg, rgba(10, 31, 68, 0.98) 0%, rgba(18, 58, 95, 0.94) 58%, rgba(10, 31, 68, 0.98) 100%),
    radial-gradient(circle at 85% 40%, rgba(201, 162, 39, 0.14) 0%, transparent 55%);
}

.page-home .page-home__banner-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: center;
}

.page-home .page-home__banner-media {
  width: 100%;
  border: 1px solid rgba(201, 162, 39, 0.3);
  overflow: hidden;
  background: var(--home-navy-depth);
  position: relative;
}

.page-home .page-home__banner-media::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  pointer-events: none;
}

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

.page-home .page-home__banner-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.page-home .page-home__banner-title {
  color: #FFFFFF;
  margin: 0 0 16px;
}

.page-home .page-home__banner-lead {
  margin: 0 0 28px;
  font-size: 15px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.82);
  max-width: 560px;
}

.page-home .page-home__banner-btn {
  min-width: 180px;
  text-align: center;
}

@media (min-width: 768px) {
  .page-home .page-home__section-head {
    grid-template-columns: 1fr 1fr;
    align-items: end;
    gap: 40px;
  }

  .page-home .page-home__section-lead {
    justify-self: end;
    text-align: right;
  }

  .page-home .page-home__stats-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    align-items: start;
  }

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

  .page-home .page-home__match-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: start;
  }

  .page-home .page-home__favorites-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    align-items: center;
  }

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

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

  .page-home .page-home__banner-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  }
}

@media (min-width: 1024px) {
  .page-home .home-hero {
    padding: 96px 0 88px;
  }

  .page-home .home-hero__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 64px;
    align-items: center;
  }

  .page-home .home-hero__title {
    font-size: 2.5rem;
  }

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

  .page-home .page-home__section-title {
    font-size: 1.8rem;
  }

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

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

  .page-home .page-home__favorites-card-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .page-home .page-home__favorites-media {
    max-width: 100%;
  }

  .page-home .page-home__assurance-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

@media (max-width: 420px) {
  .page-home .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  .page-home .home-hero__actions .btn {
    min-width: 100%;
  }

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

  .page-home .home-hero__quick-stat:first-child {
    grid-column: 1 / -1;
  }

  .page-home .page-home__tool-switch {
    align-items: stretch;
    flex-direction: column;
  }

  .page-home .page-home__tool-arrow {
    align-self: center;
    transform: rotate(90deg);
  }
}

.page-home .home-hero__speed-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.5), transparent);
  left: 0;
  width: 100%;
}

.page-home .home-hero__speed-line--top {
  top: 12px;
}

.page-home .section__rule {
  width: 56px;
  height: 3px;
  background: var(--home-gold);
  border: none;
  margin: 20px 0 0;
}
