.page-home {
  --home-hero-min: calc(100vh - 56px);
  background: var(--color-ink);
  color: var(--color-cream);
}
.page-home .hero {
  position: relative;
  min-height: var(--home-hero-min);
  min-height: calc(100svh - 56px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0 5rem;
  isolation: isolate;
}
.page-home .hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.page-home .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.72) contrast(1.08) brightness(0.9);
}
.page-home .hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(11, 12, 16, 0.96) 0%, rgba(11, 12, 16, 0.84) 36%, rgba(11, 12, 16, 0.36) 72%, rgba(11, 12, 16, 0.58) 100%),
    radial-gradient(ellipse at 78% 18%, rgba(201, 162, 39, 0.18) 0%, transparent 56%),
    linear-gradient(0deg, rgba(11, 12, 16, 0.72) 0%, transparent 32%);
}
.page-home .hero-inner {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.page-home .hero-rule {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  width: fit-content;
  margin: 0;
  padding: 0.5rem 1rem;
  border: 1px solid rgba(143, 184, 216, 0.36);
  background: rgba(11, 12, 16, 0.58);
  color: var(--color-ice);
  font-size: 0.8125rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.page-home .hero-rule .rule-diamond {
  flex: none;
}
.page-home .hero h1 {
  margin: 1.5rem 0 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.875rem, 6vw, 3.75rem);
  line-height: 1.16;
  letter-spacing: 0.02em;
  color: #ffffff;
  max-width: 52rem;
}
.page-home .hero-lead {
  margin: 1.25rem 0 0;
  max-width: 42rem;
  padding-left: 1.25rem;
  border-left: 3px solid var(--color-gold);
  font-size: 0.9375rem;
  line-height: 1.85;
  color: rgba(245, 240, 233, 0.84);
}
.page-home .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}
.page-home .hero-panel {
  position: relative;
  padding: 1.5rem;
  background: rgba(11, 12, 16, 0.72);
  border: 1px solid rgba(201, 162, 39, 0.56);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 0 100%);
}
.page-home .hero-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-home .hero-panel-year {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--color-yellow);
}
.page-home .hero-panel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.625rem;
  margin-top: 1.25rem;
}
.page-home .hero-panel-stat {
  padding: 0.75rem 0.375rem;
  text-align: center;
  background: rgba(245, 240, 233, 0.05);
  border-top: 2px solid var(--color-gold);
}
.page-home .hero-panel-stat strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  line-height: 1.1;
  color: var(--color-gold);
}
.page-home .hero-panel-stat strong span {
  font-size: 0.72em;
  color: var(--color-yellow);
}
.page-home .hero-panel-stat em {
  display: block;
  margin-top: 0.35rem;
  font-style: normal;
  font-size: 0.6875rem;
  line-height: 1.45;
  color: var(--color-stone);
}
.page-home .hero-panel-note {
  margin: 1.25rem 0 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: var(--color-ice);
}
.page-home .hero-panel-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, color 0.25s ease;
}
.page-home .hero-panel-link:hover,
.page-home .hero-panel-link:focus-visible {
  border-bottom-color: var(--color-gold);
  color: var(--color-yellow);
}
.page-home .hero-scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 38px;
  border: 1px solid rgba(201, 162, 39, 0.5);
  border-radius: 14px;
  box-shadow: inset 0 0 8px rgba(201, 162, 39, 0.12);
}
.page-home .hero-scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  border-radius: 2px;
  background: var(--color-gold);
  animation: home-hero-scroll 1.8s ease-in-out infinite;
}
@keyframes home-hero-scroll {
  0%, 100% { transform: translateY(0); opacity: 0.95; }
  50% { transform: translateY(9px); opacity: 0.32; }
}
.page-home .section-head {
  margin-bottom: 2.5rem;
}
.page-home .section-title {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold);
}
.page-home .section-title::before {
  content: "";
  flex: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  background: var(--color-gold);
}
.page-home .section-head h2 {
  margin: 0.75rem 0 0;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.625rem, 4vw, 2.5rem);
  line-height: 1.22;
  color: #ffffff;
}
.page-home .section-head p {
  margin: 0.75rem 0 0;
  max-width: 46rem;
  font-size: 0.9375rem;
  line-height: 1.75;
  color: rgba(245, 240, 233, 0.7);
}
.page-home .timeline-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: linear-gradient(180deg, var(--color-ink) 0%, #0f1117 46%, var(--color-ink) 100%);
  border-top: 1px solid rgba(201, 162, 39, 0.22);
  border-bottom: 1px solid rgba(201, 162, 39, 0.22);
}
.page-home .timeline-wrap {
  display: grid;
  gap: 2rem;
}
.page-home .timeline-media {
  align-self: start;
  padding: 0.5rem;
  background: rgba(245, 240, 233, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.3);
  order: 2;
}
.page-home .timeline-media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-home .timeline {
  position: relative;
  display: grid;
  gap: 1.75rem;
  padding-left: 1.75rem;
}
.page-home .timeline::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  bottom: 6px;
  width: 1px;
  background: linear-gradient(180deg, var(--color-gold) 0%, rgba(201, 162, 39, 0.45) 62%, rgba(201, 162, 39, 0.08) 100%);
}
.page-home .timeline-item {
  position: relative;
}
.page-home .timeline-node {
  position: absolute;
  left: -1.75rem;
  top: 0.5rem;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  background: var(--color-ink);
  border: 2px solid var(--color-gold);
  box-shadow: 0 0 0 4px rgba(201, 162, 39, 0.1);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}
.page-home .timeline-item.is-active .timeline-node {
  background: var(--color-gold);
  box-shadow: 0 0 0 6px rgba(201, 162, 39, 0.2);
}
.page-home .timeline-card {
  padding: 1.25rem 1.375rem;
  background: rgba(245, 240, 233, 0.045);
  border-left: 2px solid var(--color-gold);
  transition: border-color 0.3s ease, background 0.3s ease;
}
.page-home .timeline-item.is-active .timeline-card {
  border-left-color: var(--color-yellow);
  background: rgba(245, 240, 233, 0.065);
}
.page-home .timeline-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 0.625rem;
  font-size: 0.8125rem;
  color: var(--color-stone);
}
.page-home .timeline-card h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
}
.page-home .timeline-card p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245, 240, 233, 0.68);
}
.page-home .compare-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background:
    linear-gradient(rgba(245, 240, 233, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 240, 233, 0.03) 1px, transparent 1px),
    var(--color-ink);
  background-size: 44px 44px;
}
.page-home .compare-board {
  display: grid;
  gap: 1.75rem;
  margin-top: 2.75rem;
}
.page-home .compare-col {
  position: relative;
  padding: 1.75rem 1.375rem;
  background: rgba(11, 12, 16, 0.72);
  border: 1px solid rgba(245, 240, 233, 0.12);
}
.page-home .compare-col::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  height: 3px;
  width: 100%;
}
.page-home .compare-old::before {
  background: var(--color-stone);
}
.page-home .compare-new::before {
  background: var(--color-gold);
}
.page-home .compare-label {
  padding-bottom: 0.9375rem;
  margin-bottom: 1.125rem;
  border-bottom: 1px solid rgba(245, 240, 233, 0.14);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1875rem;
  color: #ffffff;
}
.page-home .compare-old .compare-label {
  color: rgba(245, 240, 233, 0.58);
}
.page-home .compare-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.875rem;
}
.page-home .compare-list li {
  position: relative;
  padding-left: 1.625rem;
  font-size: 0.90625rem;
  line-height: 1.72;
  color: rgba(245, 240, 233, 0.78);
}
.page-home .compare-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 9px;
  height: 9px;
  transform: rotate(45deg);
}
.page-home .compare-old .compare-list li::before {
  background: var(--color-stone);
}
.page-home .compare-new .compare-list li::before {
  background: var(--color-gold);
}
.page-home .compare-note {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.375rem;
  padding-top: 1.125rem;
  border-top: 1px dashed rgba(245, 240, 233, 0.2);
  font-size: 0.84375rem;
  line-height: 1.65;
  color: rgba(245, 240, 233, 0.62);
}
.page-home .compare-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
}
.page-home .compare-divider span {
  flex: 1;
  height: 1px;
  background: rgba(201, 162, 39, 0.35);
}
.page-home .compare-vs {
  position: relative;
  width: 44px;
  height: 44px;
  transform: rotate(45deg);
  flex: none;
  border: 1px solid var(--color-gold);
  background: rgba(11, 12, 16, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page-home .compare-vs::before {
  content: "VS";
  transform: rotate(-45deg);
  font-style: normal;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}
.page-home .compare-cta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.375rem;
}
.page-home .compare-cta p {
  margin: 0;
  font-size: 0.9375rem;
  color: rgba(245, 240, 233, 0.8);
}
.page-home .flash-section {
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  background: var(--color-ink);
}
.page-home .flash-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.page-home .flash-card {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  background: rgba(245, 240, 233, 0.045);
  border: 1px solid rgba(245, 240, 233, 0.09);
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.page-home .flash-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 100%;
  background: var(--color-gold);
}
.page-home .flash-card:hover {
  border-color: rgba(201, 162, 39, 0.42);
  transform: translateY(-2px);
}
.page-home .flash-thumb {
  margin: 0;
  border-bottom: 1px solid rgba(245, 240, 233, 0.09);
}
.page-home .flash-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .flash-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.375rem;
}
.page-home .flash-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.875rem;
  font-size: 0.8125rem;
  color: var(--color-stone);
}
.page-home .flash-body h3 {
  margin: 0 0 0.625rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.45;
  color: #ffffff;
}
.page-home .flash-body p {
  flex: 1;
  margin: 0 0 1.125rem;
  font-size: 0.875rem;
  line-height: 1.72;
  color: rgba(245, 240, 233, 0.64);
}
.page-home .flash-body a {
  color: var(--color-gold);
  font-weight: 700;
  font-size: 0.875rem;
  text-decoration: none;
}
.page-home .flash-body a:hover,
.page-home .flash-body a:focus-visible {
  color: var(--color-yellow);
  text-decoration: underline;
}
.page-home .flash-more {
  margin-top: 2.375rem;
  text-align: center;
}
.page-home .stats-section {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0;
  overflow: hidden;
  background: var(--color-ink);
}
.page-home .stats-media {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}
.page-home .stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .stats-inner {
  position: relative;
  z-index: 1;
}
.page-home .stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.875rem;
  margin-top: 2.375rem;
}
.page-home .stat-item {
  position: relative;
  padding: 1.5rem 0.625rem;
  text-align: center;
  background: rgba(11, 12, 16, 0.62);
  border: 1px solid rgba(201, 162, 39, 0.22);
  transition: transform 0.35s ease, border-color 0.35s ease;
}
.page-home .stat-item::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 11px;
  height: 11px;
  transform: translateX(-50%) rotate(45deg);
  background: var(--color-gold);
}
.page-home .stat-item.is-active {
  transform: translateY(-3px);
  border-color: rgba(201, 162, 39, 0.56);
}
.page-home .stat-num {
  display: block;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(1.625rem, 4.5vw, 2.75rem);
  line-height: 1.08;
  color: var(--color-gold);
  letter-spacing: 0.02em;
}
.page-home .stat-plus {
  font-size: 0.62em;
  color: var(--color-yellow);
}
.page-home .stat-label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.78125rem;
  line-height: 1.45;
  color: rgba(245, 240, 233, 0.72);
}
.page-home .stats-bars {
  max-width: 720px;
  margin: 2.75rem auto 0;
  display: grid;
  gap: 0.875rem;
}
.page-home .bars-head {
  font-size: 0.8125rem;
  letter-spacing: 0.12em;
  color: var(--color-stone);
}
.page-home .bar-row {
  display: grid;
  grid-template-columns: 6.75rem 1fr;
  gap: 0.75rem;
  align-items: center;
}
.page-home .bar-label {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: rgba(245, 240, 233, 0.76);
}
.page-home .bar-track {
  height: 26px;
  background: rgba(245, 240, 233, 0.07);
  overflow: hidden;
}
.page-home .bar-fill {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  padding-right: 0.625rem;
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.page-home .bar-old {
  background: repeating-linear-gradient(45deg, var(--color-stone) 0, var(--color-stone) 6px, #565c5f 6px, #565c5f 12px);
  color: var(--color-cream);
}
.page-home .bar-new {
  background: linear-gradient(90deg, var(--color-gold) 0%, var(--color-yellow) 100%);
  color: var(--color-ink);
}
.page-home .bars-note {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem;
  margin-top: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(245, 240, 233, 0.12);
}
.page-home .bars-note p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(245, 240, 233, 0.74);
}
.page-home .trust-section {
  padding: clamp(2.5rem, 6vw, 4rem) 0;
  background: linear-gradient(135deg, rgba(201, 162, 39, 0.09) 0%, transparent 52%), var(--color-ink);
  border-top: 1px solid rgba(201, 162, 39, 0.2);
}
.page-home .trust-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 1.75rem;
  background: rgba(245, 240, 233, 0.04);
  border: 1px solid rgba(201, 162, 39, 0.3);
}
.page-home .trust-copy h2 {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 800;
  color: #ffffff;
}
.page-home .trust-copy p {
  max-width: 38rem;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(245, 240, 233, 0.7);
}
.page-home .trust-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  flex: none;
}
@media (min-width: 640px) {
  .page-home .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  .page-home .compare-board {
    gap: 2rem;
  }
}
@media (min-width: 860px) {
  .page-home .hero-inner {
    grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.72fr);
    gap: 3.5rem;
  }
  .page-home .hero-panel {
    padding: 1.75rem;
  }
  .page-home .timeline-media {
    order: 0;
    position: sticky;
    top: calc(var(--nav-offset) + 2rem);
  }
  .page-home .timeline-wrap {
    grid-template-columns: 340px minmax(0, 1fr);
    gap: 3rem;
  }
  .page-home .compare-board {
    grid-template-columns: 1fr 64px 1fr;
    align-items: stretch;
    gap: 1rem;
  }
  .page-home .compare-divider {
    flex-direction: column;
  }
  .page-home .compare-divider > span {
    width: 1px;
    height: auto;
    flex: 1 1 auto;
    background: rgba(201, 162, 39, 0.35);
  }
  .page-home .compare-vs {
    width: 50px;
    height: 50px;
  }
  .page-home .flash-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .flash-card-feature {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 340px 1fr;
    align-items: stretch;
  }
  .page-home .flash-card-feature .flash-thumb {
    aspect-ratio: auto;
    height: 100%;
    min-height: 220px;
    border-right: 1px solid rgba(245, 240, 233, 0.09);
    border-bottom: 0;
  }
  .page-home .flash-card-feature .flash-thumb img {
    height: 100%;
  }
  .page-home .flash-body {
    padding: 1.625rem 1.75rem;
  }
}
@media (min-width: 980px) {
  .page-home .stats-grid {
    grid-template-columns: repeat(6, 1fr);
  }
  .page-home .trust-card {
    padding: 2.25rem 2.5rem;
  }
}
@media (prefers-reduced-motion: reduce) {
  .page-home .hero-scroll-cue span {
    animation: none;
  }
  .page-home .stat-item,
  .page-home .flash-card,
  .page-home .timeline-item {
    transition: none;
  }
}
