.page-home {
  display: block;
  width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  line-height: 1.7;
  overflow-x: clip;
}
.page-home a:focus-visible,
.page-home input:focus-visible,
.page-home summary:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 2px;
}
.page-home img {
  max-width: 100%;
  height: auto;
}
.page-home .home-breadcrumb {
  max-width: var(--container);
  margin-inline: auto;
  padding: 18px 16px 0;
  display: flex;
  gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}
.page-home .crumb-slash {
  color: var(--red);
  font-style: normal;
}
.page-home .home-breadcrumb [aria-current="page"] {
  color: var(--red);
  font-weight: 700;
}
.page-home .home-masthead {
  position: relative;
  text-align: center;
  max-width: var(--container);
  margin-inline: auto;
  padding: clamp(32px, 7vw, 78px) 16px 34px;
  background-image:
    linear-gradient(rgba(11, 27, 58, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 27, 58, .05) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-home .masthead-kicker {
  margin: 0 0 12px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.page-home .masthead-title {
  margin: 0 0 14px;
  font-family: var(--heading);
  font-weight: 900;
  font-size: clamp(2.6rem, 10vw, 7rem);
  line-height: .92;
  letter-spacing: -.03em;
  text-transform: uppercase;
  color: var(--navy);
}
.page-home .masthead-underline {
  position: relative;
  width: min(560px, 84%);
  height: 6px;
  margin-inline: auto;
  background: linear-gradient(90deg, var(--red) 0%, var(--red) 58%, var(--gold) 130%);
}
.page-home .masthead-knot {
  position: absolute;
  top: -4px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--gold);
  transform: translateX(-50%) rotate(45deg);
  border: 2px solid var(--navy);
}
.page-home .masthead-slogan {
  display: inline-block;
  margin: 18px 0 8px;
  padding: 6px 18px 8px;
  background: var(--navy);
  border: 2px solid var(--navy);
  box-shadow: 5px 5px 0 var(--red);
  color: var(--gold);
  font-size: clamp(1.1rem, 3.2vw, 1.9rem);
  font-weight: 800;
  letter-spacing: .22em;
}
.page-home .masthead-meta {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .04em;
  color: var(--muted);
}
.page-home .home-bento {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 16px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 0 16px 32px;
}
.page-home .bento-card {
  position: relative;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: clamp(18px, 3vw, 28px);
  overflow: hidden;
}
.page-home .bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 30%, rgba(230, 0, 18, .12) 50%, transparent 70%);
  transform: translateX(-130%);
  transition: transform .6s var(--ease);
}
.page-home .bento-card:hover::after {
  transform: translateX(130%);
}
.page-home .stage-rail {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  background: linear-gradient(160deg, var(--navy), var(--deep));
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper);
  padding: 16px 14px;
}
.page-home .rail-caption {
  width: 100%;
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px dashed rgba(255, 215, 0, .5);
  padding-bottom: 8px;
}
.page-home .rail-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}
.page-home .rail-links a {
  color: var(--paper);
  text-decoration: none;
  font-weight: 600;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.page-home .rail-links a:hover {
  color: var(--gold);
  border-bottom-color: var(--gold);
}
.page-home .rail-ticket {
  display: none;
  margin-top: auto;
  padding: 10px;
  border: 1px dashed rgba(247, 247, 245, .35);
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.6;
  text-align: center;
  color: rgba(247, 247, 245, .7);
}
.page-home .home-search {
  background: var(--navy);
  color: var(--paper);
  min-height: 420px;
  justify-content: flex-end;
}
.page-home .home-search .search-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .24;
  filter: saturate(.75) contrast(1.15);
}
.page-home .search-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
  padding: 2px;
}
.page-home .section-label {
  margin: 0;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red);
}
.page-home .section-title {
  margin: 0;
  font-family: var(--heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  line-height: .98;
  letter-spacing: -.02em;
  color: inherit;
}
.page-home .home-search .section-title {
  color: var(--paper);
}
.page-home .lede {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
}
.page-home .home-search .lede {
  color: rgba(247, 247, 245, .88);
}
.page-home .search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 2px;
  padding: 10px 12px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(230, 0, 18, .35);
}
.page-home .search-field svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--red);
}
.page-home .search-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: none;
  background: transparent;
  font-family: var(--body);
  font-size: 14px;
  color: var(--ink);
}
.page-home .search-field input::placeholder {
  color: var(--muted);
}
.page-home .search-note {
  margin: 0;
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 247, 245, .72);
}
.page-home .search-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.page-home .search-tags .tag {
  display: inline-block;
  padding: 4px 10px;
  border: 1px solid rgba(255, 215, 0, .7);
  color: var(--gold);
  background: rgba(255, 215, 0, .06);
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.page-home .search-tags .tag:hover {
  background: var(--gold);
  color: var(--navy);
}
.page-home .search-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px dashed rgba(247, 247, 245, .3);
}
.page-home .search-spec {
  font-family: var(--mono);
  font-size: 11px;
  color: rgba(247, 247, 245, .7);
}
.page-home .text-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 700;
  border-bottom: 2px solid var(--red);
  transition: color .2s var(--ease), border-color .2s var(--ease);
}
.page-home .text-link:hover {
  color: var(--paper);
  border-bottom-color: var(--gold);
}
.page-home .home-download {
  background: linear-gradient(135deg, var(--red), #A3000D);
  border-color: var(--ink);
  color: #fff;
}
.page-home .home-download .section-label {
  color: var(--gold);
}
.page-home .home-download .section-title {
  color: #fff;
}
.page-home .download-top {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.page-home .download-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}
.page-home .download-version {
  margin: 0;
  font-family: var(--mono);
  font-size: 13px;
  color: rgba(255, 255, 255, .92);
}
.page-home .download-version strong {
  color: var(--gold);
  font-size: 16px;
}
.page-home .download-desc {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, .9);
}
.page-home .download-icon {
  flex: 0 0 auto;
  width: 84px;
  height: 84px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, .75);
  background: #fff;
}
.page-home .download-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
  padding-top: 10px;
}
.page-home .home-download .btn {
  background: #fff;
  border: 2px solid var(--ink);
  color: var(--red);
  font-weight: 800;
}
.page-home .home-download .btn--outline {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, .85);
  color: #fff;
}
.page-home .home-rights {
  background: linear-gradient(180deg, var(--deep), var(--navy));
  border-color: var(--ink);
  color: var(--paper);
}
.page-home .home-rights .rights-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 72%;
  height: 104px;
  object-fit: cover;
  opacity: .32;
  mix-blend-mode: screen;
}
.page-home .rights-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}
.page-home .rights-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}
.page-home .rights-version {
  flex: 0 0 auto;
  padding: 4px 8px;
  background: var(--gold);
  border: 2px solid var(--ink);
  color: var(--navy);
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.page-home .home-rights .lede {
  color: rgba(247, 247, 245, .88);
}
.page-home .rights-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.page-home .rights-points li {
  padding: 8px 6px;
  border: 1px solid rgba(247, 247, 245, .25);
  text-align: center;
  font-size: 12px;
  color: rgba(247, 247, 245, .82);
}
.page-home .rp-num {
  display: block;
  font-family: var(--mono);
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.page-home .rights-timeline {
  margin-top: 2px;
}
.page-home .rights-timeline summary {
  list-style: none;
  cursor: pointer;
  padding: 6px 0 4px;
  border-bottom: 1px dashed rgba(255, 215, 0, .5);
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.page-home .rights-timeline summary::-webkit-details-marker {
  display: none;
}
.page-home .rights-timeline summary::before {
  content: "+";
  margin-right: 8px;
  color: var(--red);
  font-weight: 900;
}
.page-home .rights-timeline[open] summary::before {
  content: "–";
}
.page-home .timeline-list {
  list-style: none;
  margin: 10px 0 0;
  padding: 0 0 0 14px;
  border-left: 2px solid var(--gold);
  display: grid;
  gap: 8px;
}
.page-home .timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 10px;
  align-items: baseline;
  font-size: 13px;
  color: rgba(247, 247, 245, .9);
}
.page-home .timeline-list li::before {
  content: "";
  position: absolute;
  top: .45em;
  left: -19px;
  width: 8px;
  height: 8px;
  background: var(--red);
  border: 2px solid var(--gold);
  transform: rotate(45deg);
}
.page-home .tl-year {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
}
.page-home .home-articles {
  background: var(--lunar);
  border-color: var(--ink);
  gap: 14px;
}
.page-home .articles-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 14px;
  flex-wrap: wrap;
}
.page-home .articles-lede {
  max-width: 560px;
  color: var(--muted);
}
.page-home .article-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
.page-home .article-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(11, 27, 58, .12);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.page-home .article-card:hover {
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(11, 27, 58, .16);
}
.page-home .article-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-bottom: 2px solid var(--ink);
}
.page-home .article-copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 16px 16px;
}
.page-home .article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.page-home .article-title {
  margin: 0;
  font-family: var(--body);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.4;
}
.page-home .article-title a {
  color: var(--ink);
  text-decoration: none;
  transition: color .2s var(--ease);
}
.page-home .article-title a:hover {
  color: var(--red);
}
.page-home .article-excerpt {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}
.page-home .article-more {
  margin-top: auto;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}
.page-home .article-card--plain {
  background: var(--navy);
  border-color: var(--ink);
  color: var(--paper);
}
.page-home .article-card--plain .tag {
  border: 1px solid rgba(255, 215, 0, .6);
  color: var(--gold);
  background: rgba(255, 215, 0, .06);
}
.page-home .article-card--plain .article-title a {
  color: var(--paper);
}
.page-home .article-card--plain .article-title a:hover {
  color: var(--gold);
}
.page-home .article-card--plain .article-excerpt {
  color: rgba(247, 247, 245, .75);
}
.page-home .article-card--plain .article-more {
  color: var(--gold);
}
.page-home .plain-readout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 10px;
  margin-top: auto;
  padding: 12px;
  border: 1px dashed rgba(255, 215, 0, .5);
  background: rgba(255, 215, 0, .06);
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(247, 247, 245, .8);
}
.page-home .plain-big {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
}
.page-home .home-trust {
  display: grid;
  gap: 22px;
  max-width: var(--container);
  margin-inline: auto;
  padding: 8px 16px 56px;
}
.page-home .trust-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  padding: clamp(20px, 4vw, 34px);
  background: var(--navy);
  border: 2px solid var(--ink);
  box-shadow: var(--shadow);
  color: var(--paper);
}
.page-home .trust-intro .section-title {
  color: var(--paper);
}
.page-home .trust-intro .lede {
  color: rgba(247, 247, 245, .8);
}
.page-home .trust-facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.page-home .tf-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 14px;
  background: var(--deep);
  border: 1px solid rgba(247, 247, 245, .25);
}
.page-home .tf-item .stat-value {
  font-family: var(--mono);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.1;
  color: var(--gold);
}
.page-home .tf-item span:last-child {
  font-size: 12px;
  color: rgba(247, 247, 245, .75);
}
.page-home .trust-contact {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  padding: 18px 20px;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 4px 4px 0 rgba(11, 27, 58, .12);
}
.page-home .cb-label {
  margin: 0 0 2px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--red);
}
.page-home .cb-value {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
}
.page-home .trust-foot {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--silver);
  font-family: var(--mono);
  font-size: 11px;
  color: var(--muted);
}
.page-home .trust-foot p {
  margin: 0;
}

@media (min-width: 760px) {
  .page-home .trust-main {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .page-home .trust-contact {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-home .article-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 900px) {
  .page-home .home-bento {
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: minmax(170px, auto);
    gap: 20px;
  }
  .page-home .stage-rail {
    grid-column: 1 / 3;
    grid-row: 1 / span 2;
    flex-direction: column;
    align-items: stretch;
    flex-wrap: nowrap;
    clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 100%, 0 100%);
    padding: 20px 16px;
  }
  .page-home .rail-caption {
    width: auto;
  }
  .page-home .rail-links {
    flex-direction: column;
    gap: 2px;
  }
  .page-home .rail-links a {
    padding: 8px;
    border-left: 3px solid transparent;
    border-bottom: 0;
  }
  .page-home .rail-links a:hover {
    border-left-color: var(--gold);
  }
  .page-home .rail-ticket {
    display: block;
  }
  .page-home .home-search {
    grid-column: 3 / 8;
    grid-row: 1 / span 2;
    min-height: 0;
  }
  .page-home .home-download {
    grid-column: 8 / 13;
    grid-row: 1;
  }
  .page-home .home-rights {
    grid-column: 8 / 13;
    grid-row: 2;
  }
  .page-home .home-articles {
    grid-column: 1 / -1;
    grid-row: 3;
  }
  .page-home .download-icon {
    width: 96px;
    height: 96px;
  }
}
