:root {
  --deep-navy: #0A1628;
  --royal-blue: #1B3A5C;
  --electric-gold: #F5B63F;
  --pale-gold: #FDE3A7;
  --dark-red: #A91D3A;
  --off-white: #F8F7F2;
  --pure-white: #FFFFFF;
  --light-gray: #E6E9EF;
  --charcoal: #1F2937;
  --slate: #5B6B7A;

  --font-heading: "Barlow Condensed", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-body: "Inter", "Noto Sans SC", "Microsoft YaHei", sans-serif;
  --font-data: "SFMono-Regular", "Consolas", "Liberation Mono", monospace;

  --container-max: 1200px;
  --radius: 3px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 0.75rem;
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: 0.02em;
  color: inherit;
}

h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
}

h4 {
  font-size: 1.125rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

p {
  margin: 0 0 1rem;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

main {
  display: block;
}

::selection {
  background: var(--electric-gold);
  color: var(--deep-navy);
}

a {
  color: var(--dark-red);
  text-decoration: underline;
  text-decoration-color: rgba(169, 29, 58, 0.35);
  text-underline-offset: 3px;
  transition: color 180ms ease, text-decoration-color 180ms ease;
}

a:hover {
  color: var(--royal-blue);
  text-decoration-color: currentColor;
}

.site-header a,
.site-footer a,
.page-hero a,
.section--deep a,
.section--blue a {
  color: var(--electric-gold);
  text-decoration-color: rgba(245, 182, 63, 0.35);
}

.site-header a:hover,
.site-footer a:hover,
.page-hero a:hover,
.section--deep a:hover,
.section--blue a:hover {
  color: var(--pale-gold);
  text-decoration-color: currentColor;
}

:focus-visible {
  outline: 2px solid var(--electric-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1200;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  background: var(--electric-gold);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 0 0 var(--radius) 0;
  text-decoration: none;
  transform: translateY(-120%);
  transition: transform 180ms ease;
}

.skip-link:link,
.skip-link:visited {
  color: var(--deep-navy);
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.container,
.header-topbar__inner,
.header-main__inner,
.site-footer__inner,
.site-footer__bottom-inner {
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

.section {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.section--light {
  background: var(--off-white);
  color: var(--charcoal);
}

.section--white {
  background: var(--pure-white);
  color: var(--charcoal);
}

.section--deep {
  background: var(--deep-navy);
  color: var(--light-gray);
}

.section--blue {
  background: var(--royal-blue);
  color: var(--light-gray);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--deep-navy);
  color: var(--light-gray);
  border-bottom: 1px solid rgba(245, 182, 63, 0.3);
  transition: box-shadow 180ms ease;
}

.site-header[data-scrolled] {
  box-shadow: 0 10px 30px rgba(4, 8, 16, 0.45);
}

.header-topbar {
  background: var(--royal-blue);
  border-bottom: 1px solid rgba(245, 182, 63, 0.22);
}

.header-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  min-height: 38px;
  padding-block: 0.375rem;
  font-size: 0.78rem;
}

.header-topbar__slogan {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  margin: 0;
  color: var(--pale-gold);
  letter-spacing: 0.05em;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.header-topbar__slogan::before {
  content: "";
  flex: 0 0 auto;
  width: 18px;
  height: 2px;
  background: var(--electric-gold);
  clip-path: polygon(0 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
}

.header-utility {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.375rem;
}

.header-utility__link {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 0.625rem;
  color: var(--electric-gold);
  font-size: inherit;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid rgba(245, 182, 63, 0.4);
  border-radius: 2px;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.header-utility__link:hover {
  background: rgba(245, 182, 63, 0.14);
  border-color: var(--electric-gold);
  color: var(--pale-gold);
}

.header-main {
  position: relative;
}

.header-main__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  flex: 0 1 auto;
  align-items: center;
  gap: 0.75rem;
  min-height: 44px;
  text-decoration: none;
}

.brand:link,
.brand:visited {
  color: var(--pure-white);
  text-decoration: none;
}

.brand__mark {
  display: grid;
  flex: 0 0 46px;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--electric-gold);
  color: var(--deep-navy);
  font-family: var(--font-heading);
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1;
  clip-path: polygon(0 0, 74% 0, 100% 22%, 100% 100%, 22% 100%, 0 78%);
  transition: background 180ms ease, transform 180ms ease;
}

.brand:hover .brand__mark {
  background: var(--pale-gold);
  transform: translateY(-2px);
}

.brand__name {
  display: flex;
  flex-direction: column;
}

.brand__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--pure-white);
}

.brand__title em {
  margin-left: 0.125rem;
  font-size: 0.82em;
  font-style: normal;
  color: var(--electric-gold);
}

.brand__sub {
  margin-top: 5px;
  font-family: var(--font-body);
  font-size: 0.675rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.06em;
  color: var(--pale-gold);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 48px;
  height: 48px;
  padding: 11px 10px;
  background: transparent;
  border: 1px solid rgba(245, 182, 63, 0.45);
  border-radius: var(--radius);
  cursor: pointer;
}

.nav-toggle__bar {
  display: block;
  height: 2px;
  background: var(--electric-gold);
  border-radius: 2px;
  transition: transform 180ms ease, opacity 180ms ease, background 180ms ease;
}

.nav-toggle:hover .nav-toggle__bar {
  background: var(--pale-gold);
}

.nav-toggle[data-open] .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[data-open] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[data-open] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: 0.125rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.375rem 0.875rem;
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  line-height: 1.15;
  text-decoration: none;
  color: var(--light-gray);
  transition: color 180ms ease;
}

.site-nav__link::before {
  content: "";
  position: absolute;
  right: 0.875rem;
  bottom: 6px;
  left: 0.875rem;
  height: 2px;
  background: var(--electric-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease, height 220ms ease;
}

.site-header .site-nav__link:hover {
  color: var(--pale-gold);
}

.site-nav__link:hover::before,
.site-nav__link[aria-current="page"]::before {
  height: 6px;
  transform: scaleX(1);
}

.site-header .site-nav__link[aria-current="page"] {
  color: var(--electric-gold);
}

@media (max-width: 980px) {
  .header-main__inner {
    flex-wrap: wrap;
  }

  .site-nav {
    order: 3;
    width: 100%;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0.375rem 0 0.75rem;
  }

  .site-nav__item {
    border-bottom: 1px solid rgba(230, 233, 239, 0.1);
  }

  .site-nav__item:last-child {
    border-bottom: 0;
  }

  .site-nav__link {
    display: block;
    width: 100%;
    min-height: 46px;
    padding: 0.625rem 0;
  }

  .site-nav__link::before {
    display: none;
  }

  .site-nav__link[aria-current="page"] {
    padding-left: 0.875rem;
    border-left: 3px solid var(--electric-gold);
  }
}

@media (max-width: 980px) {
  html[data-js] .header-main__inner {
    flex-wrap: nowrap;
  }

  html[data-js] .nav-toggle {
    display: flex;
  }

  html[data-js] .site-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    z-index: 110;
    display: none;
    order: 0;
    width: auto;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    background: var(--deep-navy);
    border-top: 2px solid var(--electric-gold);
    box-shadow: 0 28px 36px rgba(4, 8, 16, 0.45);
    -webkit-overflow-scrolling: touch;
  }

  html[data-js] .site-nav[data-open] {
    display: block;
  }

  html[data-js] .site-nav__list {
    padding: 0.625rem clamp(1rem, 4vw, 2rem) 1.125rem;
  }
}

@media (max-width: 640px) {
  .header-topbar__inner {
    font-size: 0.72rem;
    gap: 0.5rem;
  }

  .header-main__inner {
    min-height: 68px;
  }

  .brand__mark {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 1.5rem;
  }

  .brand__title {
    font-size: 1.25rem;
  }

  .brand__sub {
    font-size: 0.625rem;
  }
}

.site-footer {
  background: var(--deep-navy);
  color: var(--light-gray);
  border-top: 1px solid rgba(245, 182, 63, 0.3);
}

.site-footer__band {
  height: 5px;
  background: linear-gradient(105deg, var(--electric-gold) 0 28%, var(--dark-red) 28% 71%, var(--royal-blue) 71% 100%);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding-block: clamp(2.5rem, 6vw, 4rem) 2.25rem;
}

.site-footer__about {
  max-width: 46ch;
}

.site-footer__brand {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--pure-white);
}

.site-footer__tagline {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--electric-gold);
}

.site-footer__trust {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--light-gray);
}

.site-footer__col {
  font-size: 0.9rem;
}

.site-footer__col--contact {
  font-size: 0.875rem;
}

.site-footer__title {
  margin: 0 0 0.875rem;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pale-gold);
}

.site-footer__list {
  display: grid;
  gap: 0.375rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer__list a {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  font-size: 0.9rem;
  color: var(--light-gray);
  text-decoration: none;
  transition: color 180ms ease, transform 180ms ease;
}

.site-footer__list a::before {
  content: "→";
  flex: 0 0 auto;
  margin-right: 0.5rem;
  color: var(--electric-gold);
  transition: transform 180ms ease;
}

.site-footer__list a:hover {
  color: var(--pale-gold);
  transform: translateX(3px);
}

.site-footer__contact {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1.55;
  color: var(--light-gray);
}

.site-footer__key {
  display: block;
  margin-bottom: 0.125rem;
  font-family: var(--font-data);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale-gold);
  opacity: 0.72;
}

.site-footer__note {
  margin: 1rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.6;
  color: var(--light-gray);
  opacity: 0.72;
}

.site-footer__bottom {
  background: var(--royal-blue);
  border-top: 1px solid rgba(245, 182, 63, 0.28);
}

.site-footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding-block: 1.25rem;
  font-size: 0.78rem;
}

.site-footer__copy {
  margin: 0;
  color: var(--light-gray);
}

.site-footer__motto {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--pale-gold);
}

@media (min-width: 640px) {
  .site-footer__inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 992px) {
  .site-footer__inner {
    grid-template-columns: 1.6fr 0.8fr 0.9fr 1.2fr;
  }
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 8vw, 5.5rem);
  background: var(--deep-navy);
  color: var(--light-gray);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: -6%;
  width: 52%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(27, 58, 92, 0.65) 30%, rgba(27, 58, 92, 0.95) 100%);
  transform: skewX(-14deg);
  transform-origin: top right;
}

.page-hero::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--electric-gold) 0 38%, var(--dark-red) 38% 100%);
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 2rem), var(--container-max));
  margin-inline: auto;
}

.page-hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1rem;
  font-family: var(--font-data);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--electric-gold);
}

.page-hero__kicker::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--electric-gold);
}

.page-hero__title {
  max-width: 15ch;
  margin: 0 0 1.125rem;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 7vw, 5.25rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: 0.02em;
  color: var(--pure-white);
}

.page-hero__lead {
  max-width: 58ch;
  margin: 0;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.7;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin: 0 0 1.25rem;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.breadcrumb__item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb__item + .breadcrumb__item::before {
  content: "›";
  margin-right: 0.375rem;
  color: var(--slate);
}

.breadcrumb__link {
  color: var(--slate);
  text-decoration: none;
}

.breadcrumb__link:hover {
  color: var(--royal-blue);
}

.breadcrumb__current {
  color: var(--charcoal);
  font-weight: 600;
}

.page-hero .breadcrumb__link {
  color: var(--light-gray);
  opacity: 0.8;
}

.page-hero .breadcrumb__link:hover {
  color: var(--pale-gold);
}

.page-hero .breadcrumb__current {
  color: var(--pale-gold);
}

.page-hero .breadcrumb__item + .breadcrumb__item::before {
  color: var(--light-gray);
  opacity: 0.5;
}

.chapter-head {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.chapter-head__no {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--electric-gold);
}

.chapter-head__title {
  flex: 0 1 auto;
  margin: 0;
}

.chapter-head__rule {
  position: relative;
  flex: 1 1 2rem;
  height: 2px;
  background: linear-gradient(90deg, var(--electric-gold) 0%, rgba(245, 182, 63, 0) 100%);
}

.chapter-head__rule::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 6px;
  height: 6px;
  background: var(--dark-red);
  transform: translateY(-50%);
}

.lead {
  margin: 0 0 1.5rem;
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.6875rem 1.375rem;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.btn:hover {
  text-decoration: none;
}

.btn--gold {
  background: var(--electric-gold);
  color: var(--deep-navy);
  border-color: var(--electric-gold);
}

.btn--gold:hover {
  background: var(--pale-gold);
  color: var(--deep-navy);
  border-color: var(--pale-gold);
  transform: translateY(-3px);
}

.btn--outline {
  background: transparent;
  color: var(--electric-gold);
  border-color: var(--electric-gold);
}

.btn--outline:hover {
  background: rgba(245, 182, 63, 0.14);
  color: var(--pale-gold);
  border-color: var(--pale-gold);
  transform: translateY(-3px);
}

.btn--red {
  background: var(--dark-red);
  color: var(--pure-white);
  border-color: var(--dark-red);
}

.btn--red:hover {
  background: #c22a49;
  color: var(--pure-white);
  border-color: #c22a49;
  transform: translateY(-3px);
}

.btn--block {
  display: flex;
  width: 100%;
}

.section--light .btn--outline,
.section--white .btn--outline {
  color: var(--dark-red);
  border-color: var(--dark-red);
}

.section--light .btn--outline:hover,
.section--white .btn--outline:hover {
  color: var(--dark-red);
  border-color: var(--dark-red);
  background: rgba(169, 29, 58, 0.08);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  gap: 1.25rem;
}

.card-grid--wide {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
}

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding: 1.5rem 1.5rem 1.75rem;
  background: var(--pure-white);
  color: var(--charcoal);
  border: 1px solid rgba(27, 58, 92, 0.16);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(10, 22, 40, 0.05);
  transition: transform 180ms ease, box-shadow 220ms ease, border-color 180ms ease;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 2px;
  background: var(--electric-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 220ms ease, height 220ms ease;
}

.card:hover {
  transform: translateY(-3px);
  border-color: rgba(245, 182, 63, 0.65);
  box-shadow: 0 14px 28px rgba(10, 22, 40, 0.12);
}

.card:hover::before {
  height: 6px;
  transform: scaleX(1);
}

.card--deep {
  background: var(--royal-blue);
  color: var(--light-gray);
  border-color: rgba(245, 182, 63, 0.18);
}

.card--deep::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  border-width: 0 24px 24px 0;
  border-style: solid;
  border-color: transparent var(--deep-navy) transparent transparent;
}

.card__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.4375rem;
  line-height: 1.15;
  color: inherit;
}

.card__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: inherit;
  opacity: 0.88;
}

.card__link {
  align-self: flex-start;
  margin-top: auto;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark-red);
}

.card__link:hover {
  color: var(--royal-blue);
}

.card--deep .card__link {
  color: var(--electric-gold);
}

.card--deep .card__link:hover {
  color: var(--pale-gold);
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  min-height: 28px;
  padding: 0.25rem 0.625rem;
  font-family: var(--font-data);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border-radius: 2px;
}

.tag--gold {
  background: var(--electric-gold);
  color: var(--deep-navy);
}

.tag--red {
  background: var(--dark-red);
  color: var(--pure-white);
}

.tag--navy {
  background: var(--royal-blue);
  color: var(--pure-white);
}

.tag--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 160px), 1fr));
  gap: 1.5rem;
}

.stat {
  margin: 0;
  font-family: var(--font-data);
  font-size: clamp(1.875rem, 3vw, 2.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--electric-gold);
}

.stat__label {
  display: block;
  margin-top: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--slate);
}

.section--deep .stat__label,
.section--blue .stat__label {
  color: var(--light-gray);
  opacity: 0.78;
}

.media-frame {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--royal-blue);
  border-radius: var(--radius);
}

.media-frame--wide {
  aspect-ratio: 16 / 9;
}

.media-frame--portrait {
  aspect-ratio: 3 / 4;
}

.media-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-frame__placeholder {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 1rem;
  font-family: var(--font-data);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pale-gold);
  background:
    linear-gradient(135deg, transparent 45%, rgba(245, 182, 63, 0.15) 48%, transparent 52%),
    var(--royal-blue);
}

.notice {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  padding: 1.125rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--charcoal);
  background: rgba(169, 29, 58, 0.07);
  border-left: 4px solid var(--dark-red);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.notice--gold {
  background: rgba(245, 182, 63, 0.12);
  border-left-color: var(--electric-gold);
}

.notice--navy {
  background: rgba(27, 58, 92, 0.08);
  border-left-color: var(--royal-blue);
}

.notice__icon {
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-weight: 700;
  color: var(--dark-red);
}

.notice--gold .notice__icon {
  color: var(--electric-gold);
}

.notice--navy .notice__icon {
  color: var(--royal-blue);
}

.notice__text {
  margin: 0;
}

.accordion {
  background: var(--pure-white);
  border: 1px solid var(--light-gray);
  border-radius: var(--radius);
}

.accordion + .accordion {
  border-top: 0;
  border-radius: 0;
}

.accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 48px;
  padding: 0.875rem 1.25rem;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.02em;
  cursor: pointer;
  list-style: none;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::after {
  content: "＋";
  flex: 0 0 auto;
  font-family: var(--font-data);
  font-size: 1.25rem;
  line-height: 1;
  color: var(--electric-gold);
}

.accordion[open] summary::after {
  content: "－";
}

.accordion__body {
  padding: 0 1.25rem 1.25rem;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.accordion__body > :last-child {
  margin-bottom: 0;
}

.divider {
  height: 1px;
  margin: 2rem 0;
  background: linear-gradient(90deg, var(--electric-gold) 0 22%, var(--light-gray) 22% 100%);
  border: 0;
}

.section--deep .divider {
  background: linear-gradient(90deg, var(--electric-gold) 0 22%, rgba(230, 233, 239, 0.16) 22% 100%);
}

html[data-js] [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

html[data-js] [data-reveal="left"] {
  transform: translateX(-18px);
}

html[data-js] [data-reveal="right"] {
  transform: translateX(18px);
}

html[data-js] [data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@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;
  }

  html[data-js] [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
