:root {
  --c-deep: #0B2A4A;
  --c-deep-2: #1E3A5F;
  --c-gold: #E6B400;
  --c-red: #D32F2F;
  --c-orange: #FF9800;
  --c-paper: #F5F0E8;
  --c-ink: #1A1A1A;
  --c-white: #FFFFFF;
  --f-title: Impact, 'Arial Black', sans-serif;
  --f-body: 'Source Serif Pro', Georgia, serif;
  --container-w: 1200px;
  --radius: 4px;
  --space-sm: 12px;
  --space-md: 24px;
  --space-lg: 48px;
  --space-xl: 80px;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--c-ink);
  background: var(--c-paper);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
img {
  max-width: 100%;
  display: block;
}
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}
.skip-link {
  position: fixed;
  top: -120px;
  left: 16px;
  z-index: 2000;
  background: var(--c-gold);
  color: var(--c-deep);
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transition: top 0.2s ease;
}
.skip-link:focus-visible {
  top: 0;
}
#main-content {
  flex: 1;
  width: 100%;
}
.container {
  width: min(100% - 48px, var(--container-w));
  margin-inline: auto;
}
.site-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 1200;
  background: transparent;
  pointer-events: none;
}
.site-progress__bar {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--c-gold), var(--c-orange) 60%, var(--c-red) 100%);
  transition: width 0.16s ease-out;
}
.site-header {
  background: var(--c-deep);
}
.masthead {
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 16px,
      rgba(230,180,0,0.045) 16px,
      rgba(230,180,0,0.045) 18px
    ),
    var(--c-deep);
  border-bottom: 1px solid rgba(230,180,0,0.22);
  padding: 28px 0 24px;
  position: relative;
}
.masthead::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-orange) 45%, var(--c-red) 100%);
  opacity: 0.9;
}
.masthead__container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
.masthead__kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}
.masthead__rule {
  display: inline-block;
  width: 26px;
  height: 2px;
  background: var(--c-gold);
}
.masthead__brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  text-decoration: none;
  justify-self: center;
  padding: 4px 0;
  border-radius: var(--radius);
}
.masthead__title {
  font-family: var(--f-title);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: 0.07em;
  color: var(--c-white);
  text-transform: uppercase;
}
.masthead__slash {
  display: inline-block;
  width: 9px;
  height: 32px;
  background: var(--c-gold);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
  transform: skewX(-8deg);
}
.masthead__subtitle {
  font-family: var(--f-title);
  font-size: 1.45rem;
  line-height: 1;
  letter-spacing: 0.14em;
  color: var(--c-gold);
  text-transform: uppercase;
}
.masthead__side {
  display: flex;
  align-items: center;
  gap: 14px;
  justify-self: end;
}
.status-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.82);
  background: rgba(230,180,0,0.1);
  border: 1px solid rgba(230,180,0,0.35);
  border-radius: 2px;
  padding: 5px 12px;
}
.status-live__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 0 3px rgba(230,180,0,0.22);
}
.nav-toggle {
  display: none;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: 1px solid rgba(230,180,0,0.45);
  border-radius: var(--radius);
  color: var(--c-gold);
  font-family: var(--f-body);
  font-size: 0.8rem;
  padding: 8px 14px;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.nav-toggle:hover {
  background: rgba(230,180,0,0.12);
  border-color: var(--c-gold);
}
.nav-toggle__bars {
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}
.nav-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
}
.nav-toggle__text {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.main-nav {
  background: var(--c-deep-2);
  border-top: 1px solid rgba(230,180,0,0.22);
  box-shadow: 0 2px 10px rgba(0,0,0,0.18);
  position: sticky;
  top: 0;
  z-index: 900;
}
.main-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-nav__item {
  flex: 0 0 auto;
}
.main-nav__link {
  display: block;
  padding: 14px 22px;
  font-family: var(--f-body);
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
}
.main-nav__link:hover {
  color: var(--c-white);
  background: rgba(230,180,0,0.1);
  border-bottom-color: rgba(230,180,0,0.6);
}
.main-nav__link[aria-current="page"] {
  color: var(--c-gold);
  background: rgba(230,180,0,0.08);
  border-bottom-color: var(--c-gold);
}
.site-footer {
  background: var(--c-deep);
  color: rgba(255,255,255,0.75);
}
.footer-signal {
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-orange) 30%, var(--c-red) 70%, rgba(255,255,255,0) 100%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 44px;
  padding: 56px 0 48px;
}
.footer-col {
  min-width: 0;
}
.footer-col--brand {
  padding-right: 12px;
}
.footer-col--contact {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(230,180,0,0.14);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.footer-brand__cn {
  font-family: var(--f-title);
  font-size: 1.65rem;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--c-white);
}
.footer-brand__slash {
  display: inline-block;
  width: 6px;
  height: 21px;
  background: var(--c-gold);
  clip-path: polygon(24% 0, 100% 0, 76% 100%, 0 100%);
}
.footer-brand__en {
  font-family: var(--f-title);
  font-size: 1.05rem;
  letter-spacing: 0.13em;
  color: var(--c-gold);
}
.footer-trust {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.62);
  border-left: 3px solid var(--c-gold);
  padding-left: 16px;
  margin-bottom: 18px;
}
.footer-domain {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}
.footer-col__title {
  font-family: var(--f-title);
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: 18px;
  padding-bottom: 8px;
  position: relative;
}
.footer-col__title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 22px;
  height: 2px;
  background: var(--c-orange);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.2s, padding-left 0.2s;
}
.footer-links a:hover {
  color: var(--c-gold);
  padding-left: 6px;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.footer-contact__label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
}
.footer-contact__text {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.82);
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}
.footer-bottom__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px 24px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--f-body);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-decoration: none;
  padding: 12px 28px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.15s;
}
.btn:active {
  transform: translateY(1px);
}
.btn--gold {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-deep);
}
.btn--gold:hover {
  background: transparent;
  color: var(--c-gold);
}
.btn--outline {
  background: transparent;
  border-color: rgba(230,180,0,0.6);
  color: var(--c-gold);
}
.btn--outline:hover {
  background: var(--c-gold);
  color: var(--c-deep);
}
.btn--white {
  background: var(--c-white);
  border-color: var(--c-white);
  color: var(--c-deep);
}
.btn--white:hover {
  background: transparent;
  color: var(--c-white);
}
.breadcrumb {
  padding: 18px 0;
  font-size: 0.85rem;
}
.breadcrumb__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}
.breadcrumb__item + .breadcrumb__item::before {
  content: '/';
  margin: 0 10px;
  opacity: 0.45;
}
.breadcrumb__link {
  text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb__link:hover {
  text-decoration: underline;
}
.breadcrumb__current {
  font-weight: 700;
}
.breadcrumb--on-dark {
  color: rgba(255,255,255,0.6);
}
.breadcrumb--on-dark .breadcrumb__link {
  color: var(--c-gold);
}
.breadcrumb--on-dark .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(255,255,255,0.35);
}
.breadcrumb--on-dark .breadcrumb__current {
  color: rgba(255,255,255,0.85);
}
.breadcrumb--on-light {
  color: rgba(26,26,26,0.6);
}
.breadcrumb--on-light .breadcrumb__link {
  color: var(--c-deep);
}
.breadcrumb--on-light .breadcrumb__item + .breadcrumb__item::before {
  color: rgba(26,26,26,0.35);
}
.breadcrumb--on-light .breadcrumb__current {
  color: var(--c-ink);
}
.section-band {
  padding: var(--space-xl) 0;
}
.section-band--paper {
  background: var(--c-paper);
}
.section-band--white {
  background: var(--c-white);
}
.section-band--blue {
  background: var(--c-deep);
  color: rgba(255,255,255,0.85);
}
.section-band--blue-light {
  background: var(--c-deep-2);
  color: rgba(255,255,255,0.85);
}
.section-band--gold {
  background: var(--c-gold);
  color: var(--c-deep);
}
.section-heading {
  font-family: var(--f-title);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-left: 16px;
  position: relative;
}
.section-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: calc(100% - 12px);
  background: var(--c-orange);
}
.section-heading--light {
  color: var(--c-white);
}
.section-heading--dark {
  color: var(--c-deep);
}
.section-heading__accent {
  color: var(--c-gold);
}
.section-heading--dark .section-heading__accent {
  color: var(--c-orange);
}
.grid {
  display: grid;
  gap: 24px;
}
.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}
.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}
.grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.card {
  background: var(--c-white);
  border: 1px solid rgba(11,42,74,0.12);
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(11,42,74,0.14);
  border-color: var(--c-gold);
}
.card--blue {
  background: var(--c-deep-2);
  border-color: rgba(230,180,0,0.2);
  color: rgba(255,255,255,0.82);
}
.card--blue:hover {
  border-color: var(--c-gold);
  box-shadow: 0 8px 28px rgba(0,0,0,0.3);
}
.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: var(--c-deep-2);
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
}
.image-frame--4-3 {
  aspect-ratio: 4 / 3;
}
.image-frame--1-1 {
  aspect-ratio: 1 / 1;
}
.image-frame__media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s, filter 0.3s;
}
.image-frame:hover .image-frame__media {
  transform: scale(1.03);
  filter: saturate(1.15);
}
.image-frame__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 14px,
      rgba(230,180,0,0.16) 14px,
      rgba(230,180,0,0.16) 16px
    ),
    var(--c-deep-2);
  font-family: var(--f-title);
  font-size: 1rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
}
.badge {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  padding: 4px 12px;
  border-radius: 2px;
  text-transform: uppercase;
}
.badge--gold {
  background: var(--c-gold);
  color: var(--c-deep);
}
.badge--red {
  background: var(--c-red);
  color: var(--c-white);
}
.badge--orange {
  background: var(--c-orange);
  color: var(--c-deep);
}
.badge--blue {
  background: var(--c-deep);
  color: var(--c-white);
}
.status-panel {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--c-deep);
  border: 1px solid rgba(230,180,0,0.3);
  border-radius: var(--radius);
  padding: 18px 22px;
  color: var(--c-white);
}
.status-panel__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-gold);
  flex: 0 0 auto;
  box-shadow: 0 0 0 4px rgba(230,180,0,0.18);
}
.status-panel--red .status-panel__dot {
  background: var(--c-red);
  box-shadow: 0 0 0 4px rgba(211,47,47,0.2);
}
.stat-number {
  font-family: var(--f-title);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  color: var(--c-gold);
}
.stat-label {
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
}
@media (max-width: 1100px) {
  .main-nav__link {
    padding: 14px 15px;
    font-size: 0.88rem;
  }
  .masthead__title {
    font-size: 1.85rem;
  }
  .masthead__subtitle {
    font-size: 1.2rem;
  }
  .masthead__slash {
    height: 27px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px 32px;
    padding: 48px 0 40px;
  }
  .footer-col--contact {
    grid-column: 1 / -1;
  }
}
@media (max-width: 859px) {
  .nav-toggle {
    display: inline-flex;
  }
  .masthead {
    padding: 18px 0;
  }
  .masthead__container {
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .masthead__kicker {
    display: none;
  }
  .masthead__brand {
    justify-self: start;
  }
  .masthead__side {
    justify-self: end;
  }
  .masthead__title {
    font-size: 1.6rem;
  }
  .masthead__subtitle {
    font-size: 1.05rem;
  }
  .masthead__slash {
    width: 7px;
    height: 22px;
  }
  .main-nav {
    position: static;
    display: none;
    background: var(--c-deep);
    border-top: 1px solid rgba(230,180,0,0.25);
    box-shadow: 0 12px 24px rgba(0,0,0,0.3);
  }
  .main-nav[data-open] {
    display: block;
  }
  .main-nav__list {
    flex-direction: column;
    align-items: stretch;
    padding: 6px 0 10px;
  }
  .main-nav__link {
    border-bottom: none;
    border-left: 3px solid transparent;
    padding: 13px 24px;
  }
  .main-nav__link:hover {
    border-bottom: none;
    border-left-color: var(--c-gold);
    background: rgba(230,180,0,0.1);
  }
  .main-nav__link[aria-current="page"] {
    border-bottom: none;
    border-left-color: var(--c-gold);
  }
}
@media (max-width: 600px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
  .section-band {
    padding: 56px 0;
  }
  .container {
    width: calc(100% - 32px);
  }
}
@media (min-width: 601px) and (max-width: 1100px) {
  .grid--3,
  .grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .status-live {
    display: none;
  }
  .masthead__side {
    gap: 8px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 40px 0 32px;
  }
  .footer-bottom__inner {
    flex-direction: column;
    gap: 4px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
