.page-home {
  --shadow-pop: 8px 8px 0 rgba(26, 26, 46, 0.14);
  --shadow-pop-accent: 6px 6px 0 var(--accent);
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  overflow-x: clip;
}
.page-home img {
  max-width: 100%;
  height: auto;
  display: block;
}
.page-home .home-contextbar {
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: relative;
  z-index: 5;
}
.page-home .home-contextbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 0.875rem;
}
.page-home .breadcrumb ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.5rem;
}
.page-home .breadcrumb li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.page-home .breadcrumb li:not(:first-child)::before {
  content: "/";
  color: var(--border);
  font-family: var(--font-mono);
}
.page-home .breadcrumb a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
}
.page-home .breadcrumb a:hover {
  text-decoration: underline;
}
.page-home .breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
.page-home .context-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.page-home .context-live .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  animation: homePulse 2s ease-in-out infinite;
}
.page-home .home-hero {
  position: relative;
  background: linear-gradient(160deg, var(--primary) 0%, #0b5ed7 55%, var(--text) 100%);
  color: #fff;
  overflow: hidden;
  box-shadow: 0 4px 0 var(--text);
}
.page-home .hero-backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-home .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}
.page-home .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30, 144, 255, 0.85) 0%, rgba(26, 26, 46, 0.82) 100%);
  z-index: 1;
}
.page-home .hero-mountains {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 34%;
  min-height: 90px;
  z-index: 2;
  opacity: 0.9;
}
.page-home .hero-content {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  align-items: start;
}
.page-home .hero-title {
  margin: 0;
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.03em;
}
.page-home .hero-brand {
  display: block;
  font-size: clamp(3rem, 10vw, 6.5rem);
  line-height: 0.95;
}
.page-home .hero-official {
  display: block;
  margin-top: 0.4rem;
  font-size: clamp(0.9rem, 2.4vw, 1.4rem);
  font-weight: 400;
  letter-spacing: 0.1em;
  color: rgba(248, 249, 250, 0.85);
}
.page-home .hero-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  font-size: clamp(1.1rem, 3vw, 1.7rem);
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-home .hero-live-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.3);
  animation: homePulse 1.6s ease-in-out infinite;
}
.page-home .hero-lead {
  margin: 1rem 0 1.4rem;
  max-width: 42em;
  color: rgba(248, 249, 250, 0.92);
  font-size: 1rem;
  line-height: 1.7;
}
.page-home .hero-lead small {
  display: block;
  margin-top: 0.4rem;
  color: rgba(248, 249, 250, 0.7);
  font-size: 0.8rem;
}
.page-home .hero-stats {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 1.2rem;
  border-top: 1px solid rgba(248, 249, 250, 0.3);
  padding-top: 1rem;
  max-width: 420px;
}
.page-home .hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.page-home .hero-stat-num {
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
.page-home .hero-stat-label {
  font-size: 0.75rem;
  color: rgba(248, 249, 250, 0.75);
  letter-spacing: 0.05em;
}
.page-home .hero-demo {
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--text);
  border: 2px solid var(--text);
  box-shadow: var(--shadow-pop);
  min-width: 0;
}
.page-home .demo-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 2px solid var(--text);
}
.page-home .demo-tab {
  appearance: none;
  background: transparent;
  border: 0;
  padding: 0.9rem 1rem;
  font: inherit;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
  text-align: center;
}
.page-home .demo-tab + .demo-tab {
  border-left: 2px solid var(--text);
}
.page-home .demo-tab.is-active,
.page-home .demo-tab[aria-selected="true"] {
  background: var(--accent);
  color: #fff;
}
.page-home .demo-tab:hover {
  background: var(--primary);
  color: #fff;
}
.page-home .demo-tab:focus-visible,
.page-home .filter-btn:focus-visible {
  outline: 2px dashed var(--text);
  outline-offset: -4px;
}
.page-home .demo-stage {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.page-home .hero-card {
  border: 1px dashed var(--border);
  padding: 0.85rem;
  background: #fff;
}
.page-home .hero-card + .hero-card {
  border-style: dashed;
}
.page-home .hero-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
}
.page-home .hero-card-note {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.page-home .hero-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0 0 0.7rem;
}
.page-home .event-flow {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.page-home .event-line {
  display: grid;
  grid-template-columns: 3.5rem 1fr 1fr;
  gap: 0.5rem;
  align-items: center;
  padding: 0.4rem 0.5rem;
  background: var(--bg);
  border-left: 3px solid var(--primary);
  font-size: 0.85rem;
}
.page-home .event-time {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}
.page-home .event-type {
  font-weight: 600;
}
.page-home .event-team {
  color: #64748b;
  text-align: right;
  font-size: 0.8rem;
}
.page-home .hero-card-foot {
  display: flex;
  gap: 1rem;
  margin-top: 0.8rem;
  padding-top: 0.7rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.page-home .hero-card-metric {
  display: inline-flex;
  align-items: baseline;
  gap: 0.2rem;
  font-size: 0.8rem;
  color: #64748b;
}
.page-home .hero-card-num {
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent);
}
.page-home .hero-card-unit {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: #64748b;
}
.page-home .mini-stat {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.85rem;
}
.page-home .mini-stat th {
  text-align: left;
  font-weight: 600;
  color: var(--text);
  padding: 0.45rem 0;
}
.page-home .mini-stat td {
  text-align: right;
  font-weight: 700;
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
}
.page-home .mini-stat td:first-of-type {
  color: var(--primary);
}
.page-home .mini-stat td:last-of-type {
  color: var(--accent);
}
.page-home .mini-stat tr:last-child td {
  border-bottom: 0;
}
.page-home .hero-entries {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
}
.page-home .entry-chip {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(248, 249, 250, 0.12);
  border: 1px solid rgba(248, 249, 250, 0.4);
  padding: 0.85rem 1rem;
  color: #fff;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.page-home .entry-chip:hover {
  background: rgba(255, 107, 53, 0.85);
  border-color: #fff;
  transform: translateY(-2px);
}
.page-home .entry-chip:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.page-home .entry-num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  width: 1.7rem;
  height: 1.7rem;
  border: 1px solid #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  flex-shrink: 0;
}
.page-home .entry-text {
  font-weight: 600;
  font-size: 0.9rem;
}
.page-home .entry-arrow {
  margin-left: auto;
  font-size: 1.2rem;
  color: rgba(248, 249, 250, 0.8);
}
.page-home .home-version,
.page-home .home-report,
.page-home .home-tablet,
.page-home .home-desktop,
.page-home .home-close {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.page-home .section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
}
.page-home .section-index {
  font-family: var(--font-mono);
  font-size: clamp(2.2rem, 6vw, 3.8rem);
  font-weight: 700;
  line-height: 1;
  color: var(--primary);
}
.page-home .section-head-main {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.page-home .section-title {
  margin: 0;
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.page-home .eyebrow {
  margin: 0;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.page-home .section-copy {
  margin: 0;
  line-height: 1.7;
  color: #475569;
  font-size: 0.95rem;
  max-width: 52em;
}
.page-home .version-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: stretch;
}
.page-home .media {
  margin: 0;
  position: relative;
  border: 2px solid var(--text);
  box-shadow: var(--shadow-pop);
  overflow: hidden;
  background: var(--border);
}
.page-home .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-home .media-caption {
  padding: 0.6rem 0.8rem;
  background: #fff;
  border-top: 2px solid var(--text);
  font-size: 0.8rem;
  color: var(--text);
  font-family: var(--font-mono);
}
.page-home .version-panel {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.page-home .filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  border-top: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  padding: 0.6rem 0;
}
.page-home .filter-btn {
  appearance: none;
  border: 2px solid var(--text);
  background: #fff;
  padding: 0.5rem 0.9rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  color: var(--text);
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}
.page-home .filter-btn.is-active,
.page-home .filter-btn[aria-selected="true"] {
  background: var(--primary);
  color: #fff;
  box-shadow: 3px 3px 0 var(--text);
}
.page-home .filter-btn:hover {
  background: var(--text);
  color: #fff;
}
.page-home .version-details {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.page-home .version-detail {
  background: #fff;
  border: 1px solid var(--border);
  border-top: 4px solid var(--primary);
  padding: 1.1rem;
  box-shadow: var(--shadow-pop);
}
.page-home .detail-title {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
}
.page-home .detail-copy {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
  line-height: 1.65;
  color: #475569;
}
.page-home .detail-list {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.88rem;
  line-height: 1.7;
}
.page-home .version-note {
  margin: 0;
  padding: 0.7rem 1rem;
  background: var(--secondary);
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border-left: 4px solid var(--text);
}
.page-home .home-report {
  background: linear-gradient(180deg, var(--bg) 0%, #eaf2ff 100%);
  border-top: 3px solid var(--text);
  border-bottom: 3px solid var(--text);
}
.page-home .report-demo {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: center;
}
.page-home .phone-frame {
  background: #fff;
  border: 2px solid var(--text);
  box-shadow: var(--shadow-pop-accent);
  border-radius: 18px;
  padding: 1rem;
  max-width: 340px;
  margin: 0 auto;
  width: 100%;
}
.page-home .phone-status {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--primary);
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.page-home .phone-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--secondary);
}
.page-home .phone-head {
  font-weight: 700;
  font-size: 0.9rem;
  margin-top: 0.75rem;
  text-align: center;
}
.page-home .phone-vs {
  font-style: italic;
  color: var(--accent);
  margin: 0 0.35rem;
}
.page-home .phone-scoreline {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin: 0.3rem 0;
}
.page-home .phone-colon {
  color: var(--text);
}
.page-home .phone-score {
  color: var(--text);
}
.page-home .phone-timeline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  background: var(--bg);
  padding: 0.75rem;
  border: 1px dashed var(--border);
}
.page-home .phone-event {
  display: flex;
  gap: 0.5rem;
  font-size: 0.78rem;
  align-items: baseline;
}
.page-home .phone-time {
  font-family: var(--font-mono);
  font-weight: 700;
  color: var(--primary);
}
.page-home .phone-event-label {
  color: var(--text);
}
.page-home .phone-foot {
  margin-top: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: #94a3b8;
  text-align: center;
  letter-spacing: 0.08em;
}
.page-home .report-copy-title {
  margin: 0 0 0.6rem;
  font-size: 1.2rem;
  font-weight: 700;
}
.page-home .report-copy p {
  line-height: 1.7;
  color: #475569;
  font-size: 0.95rem;
}
.page-home .report-list {
  list-style: none;
  margin: 0.8rem 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.page-home .report-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.92rem;
}
.page-home .report-list .marker {
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  background: var(--text);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  flex-shrink: 0;
}
.page-home .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.4rem;
  text-decoration: none;
}
.page-home .tablet-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.page-home .tablet-media {
  margin: 0;
}
.page-home .tablet-copy-title {
  font-size: 1.2rem;
  margin: 0 0 0.6rem;
  font-weight: 700;
}
.page-home .tablet-copy p {
  line-height: 1.7;
  color: #475569;
  font-size: 0.95rem;
  margin: 0 0 0.6rem;
}
.page-home .tablet-list {
  list-style: none;
  margin: 0.8rem 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.page-home .tablet-list li {
  padding-left: 1rem;
  border-left: 3px solid var(--primary);
  font-size: 0.92rem;
  line-height: 1.5;
}
.page-home .tablet-hint-line {
  font-size: 0.9rem;
  color: #475569;
}
.page-home .team-hint {
  position: relative;
  display: inline-block;
  border-bottom: 2px dashed var(--accent);
  cursor: pointer;
  color: var(--primary);
  font-weight: 600;
  margin: 0 0.1rem;
}
.page-home .team-hint-pop {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--text);
  color: #fff;
  font-size: 0.78rem;
  font-family: var(--font-mono);
  padding: 0.4rem 0.6rem;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 10;
}
.page-home .team-hint:hover .team-hint-pop,
.page-home .team-hint:focus .team-hint-pop {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.page-home .team-hint:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
.page-home .tablet-tip {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: var(--secondary);
  font-family: var(--font-mono);
  margin: 0.6rem 0 1rem;
}
.page-home .tablet-tip .status-dot {
  width: 8px;
  height: 8px;
  background: var(--secondary);
  border-radius: 50%;
  animation: homePulse 2.4s ease-in-out infinite;
}
.page-home .home-desktop {
  background: #fff8f3;
  border-bottom: 3px solid var(--text);
}
.page-home .desktop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}
.page-home .desktop-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-width: 0;
}
.page-home .desktop-note {
  font-size: 0.8rem;
  color: #94a3b8;
  margin: 0;
  font-family: var(--font-mono);
}
.page-home .table-wrap {
  border: 2px solid var(--text);
  background: #fff;
  box-shadow: var(--shadow-pop);
}
.page-home .data-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--font-mono);
  font-size: 0.82rem;
}
.page-home .data-table th,
.page-home .data-table td {
  padding: 0.7rem 0.8rem;
  border-bottom: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
}
.page-home .data-table thead th {
  background: var(--text);
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
}
.page-home .data-table tbody tr:last-child td {
  border-bottom: 0;
}
.page-home .desktop-media {
  margin: 0;
}
.page-home .home-close {
  background: var(--text);
  color: #fff;
  margin-top: 2rem;
}
.page-home .close-note {
  display: grid;
  gap: 1rem;
  justify-items: start;
}
.page-home .close-title {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.4rem);
  font-weight: 300;
}
.page-home .close-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  font-size: 0.9rem;
}
.page-home .close-links a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}
.page-home .close-links a:hover {
  text-decoration: underline;
}
.page-home .close-links a:visited {
  color: var(--accent);
}
.page-home .close-sep {
  color: rgba(248, 249, 250, 0.4);
}
.page-home .close-lead {
  color: rgba(248, 249, 250, 0.8);
  font-size: 0.9rem;
  line-height: 1.65;
  max-width: 46em;
  margin: 0;
}
@keyframes homePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(0.72);
  }
}
@media (min-width: 640px) {
  .page-home .hero-entries {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-home .version-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .report-demo {
    grid-template-columns: 340px 1fr;
  }
  .page-home .desktop-grid {
    grid-template-columns: 1fr 1fr;
  }
  .page-home .section-head {
    grid-template-columns: auto 1fr;
    gap: 1rem;
    align-items: center;
  }
}
@media (min-width: 960px) {
  .page-home .home-hero {
    min-height: 92vh;
  }
  .page-home .hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
    min-height: 62vh;
  }
  .page-home .hero-entries {
    padding-bottom: 2rem;
  }
  .page-home .section-head--twin {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: 2rem;
  }
  .page-home .section-copy--right {
    max-width: 38em;
    text-align: right;
  }
  .page-home .tablet-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}
