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

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[class],
ol[class] {
  list-style: none;
  margin: 0;
  padding: 0;
}

img,
picture,
svg,
video {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

button {
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}

:root {
  --c-primary: #0a1f44;
  --c-primary-light: #1b3a6b;
  --c-accent: #ff6b35;
  --c-gold: #ffd700;
  --c-ivory: #f7f1e8;
  --c-ash: #e8e4dc;
  --c-teal: #3a7d6a;
  --c-terra: #c05a3c;
  --c-muted: #5a6472;
  --c-success: #2e8b57;
  --c-text: #16233c;
  --font-display: 'Impact', 'Oswald', 'Noto Sans SC', sans-serif;
  --font-body: 'Roboto', 'Noto Sans SC', sans-serif;
  --shadow-card: 0 10px 30px rgba(10, 31, 68, .12);
  --shadow-pop: 0 18px 48px rgba(10, 31, 68, .22);
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-pill: 999px;
  --container-w: 1200px;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-text);
  background-color: var(--c-ivory);
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: 1px;
}

h1 {
  font-size: clamp(40px, 7vw, 72px);
}

h2 {
  font-size: clamp(30px, 4.5vw, 48px);
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

:focus-visible {
  outline: 3px solid var(--c-accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container-w);
  margin-inline: auto;
  padding-inline: clamp(16px, 3vw, 28px);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section--dark {
  background:
    radial-gradient(900px 360px at 92% -40px, rgba(255, 107, 53, .22), transparent 55%),
    linear-gradient(135deg, var(--c-primary) 0%, var(--c-primary-light) 100%);
  color: rgba(255, 255, 255, .86);
}

.section--dark .section__title {
  color: #ffffff;
}

.section--dark .section__kicker {
  color: var(--c-gold);
}

.section--dark .section__kicker::before {
  background: var(--c-gold);
}

.section__head {
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
  max-width: 720px;
}

.section__kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  color: var(--c-terra);
}

.section__kicker::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--c-accent);
  border-radius: 2px;
}

.section__title {
  color: var(--c-primary);
  font-size: clamp(28px, 4vw, 42px);
}

.text-muted {
  color: var(--c-muted);
}

.data-highlight {
  font-family: var(--font-display);
  font-size: clamp(40px, 6vw, 64px);
  line-height: 1;
  color: var(--c-accent);
  letter-spacing: 1px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  white-space: nowrap;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn--primary {
  background: linear-gradient(120deg, var(--c-accent), #ff8e4d);
  color: var(--c-primary);
  box-shadow: 0 10px 24px rgba(255, 107, 53, .32);
}

.btn--ghost {
  border: 1px solid rgba(255, 215, 0, .6);
  color: var(--c-gold);
  background: rgba(255, 215, 0, .06);
}

.btn--ghost:hover {
  background: rgba(255, 215, 0, .14);
  box-shadow: 0 6px 18px rgba(255, 215, 0, .2);
}

.card {
  background: #ffffff;
  border: 1px solid var(--c-ash);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-pop);
}

.tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  background: var(--c-ash);
  color: var(--c-muted);
}

.tag--gold {
  background: rgba(255, 215, 0, .18);
  color: #8a6d00;
}

.tag--teal {
  background: rgba(58, 125, 106, .15);
  color: var(--c-teal);
}

.tag--terra {
  background: rgba(192, 90, 60, .14);
  color: var(--c-terra);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--c-muted);
  padding: 16px 0;
}

.breadcrumb a {
  color: var(--c-primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--c-accent);
}

.breadcrumb__sep {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-right: 2px solid var(--c-accent);
  border-bottom: 2px solid var(--c-accent);
  transform: rotate(-45deg);
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.filter-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--c-ash);
  background: #ffffff;
  color: var(--c-muted);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.filter-btn:hover {
  border-color: var(--c-accent);
  color: var(--c-accent);
  transform: translateY(-1px);
}

.filter-btn.is-active {
  background: linear-gradient(120deg, var(--c-accent), #ff8e4d);
  border-color: var(--c-accent);
  color: var(--c-primary);
  box-shadow: 0 6px 16px rgba(255, 107, 53, .28);
}

[data-filter-item][hidden] {
  display: none !important;
}

.diag-divider {
  position: relative;
  height: 56px;
  overflow: hidden;
}

.diag-divider::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -5%;
  width: 110%;
  height: 100%;
  background: repeating-linear-gradient(-55deg, var(--c-primary) 0 18px, var(--c-primary-light) 18px 19px, transparent 19px 34px);
}

.img-frame {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 107, 53, .16), rgba(255, 215, 0, .10)),
    var(--c-ash);
  aspect-ratio: 16 / 9;
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-45deg, transparent 0 12px, rgba(10, 31, 68, .04) 12px 13px);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.img-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.img-frame--square {
  aspect-ratio: 1 / 1;
}

.img-frame--wide {
  aspect-ratio: 21 / 9;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 2000;
  padding: 12px 20px;
  background: var(--c-gold);
  color: var(--c-primary);
  font-weight: 700;
  border-radius: var(--radius-pill);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

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

.site-header {
  position: relative;
  z-index: 500;
}

.announce-bar {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--c-primary) 0%, var(--c-primary-light) 60%, var(--c-primary) 100%);
  border-bottom: 1px solid rgba(255, 215, 0, .28);
}

.announce-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(-55deg, transparent 0 10px, rgba(255, 215, 0, .08) 10px 11px);
  pointer-events: none;
}

.announce-bar__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 36px;
}

.announce-bar__text {
  flex: 1;
  min-width: 0;
  position: relative;
  z-index: 1;
  font-size: 13px;
  letter-spacing: .5px;
  color: #ffffff;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announce-bar__badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--c-gold);
  background: rgba(255, 215, 0, .12);
  border: 1px solid rgba(255, 215, 0, .3);
  border-radius: var(--radius-pill);
  padding: 3px 12px;
}

.announce-bar__badge::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-gold);
  box-shadow: 0 0 8px rgba(255, 215, 0, .8);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: .5;
    transform: scale(.7);
  }
}

.header-main {
  position: relative;
  z-index: 100;
  background:
    radial-gradient(1200px 320px at 85% -80px, rgba(255, 107, 53, .28), transparent 60%),
    linear-gradient(120deg, var(--c-primary) 0%, var(--c-primary-light) 78%, #0c2550 100%);
  box-shadow: 0 14px 34px rgba(10, 31, 68, .28);
  overflow: hidden;
}

.header-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 55%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, .14), rgba(255, 215, 0, .12), transparent);
  transform: translateX(-120%);
  animation: scan-once 1.15s ease-out .2s forwards;
  pointer-events: none;
}

@keyframes scan-once {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(220%);
  }
}

.header-main::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-accent) 42%, transparent 72%);
}

.header-main__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  color: #ffffff;
}

.brand__logo {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--c-gold), var(--c-accent));
  clip-path: polygon(50% 0, 100% 25%, 100% 75%, 50% 100%, 0 75%, 0 25%);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: var(--c-primary);
  box-shadow: 0 6px 16px rgba(255, 107, 53, .35);
}

.brand__text {
  display: inline-flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand__name {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: 1.5px;
  color: #ffffff;
}

.brand__tagline {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .55);
}

.site-nav {
  margin-left: auto;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-item {
  margin: 0;
}

.nav-link {
  display: block;
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 500;
  color: rgba(255, 255, 255, .82);
  transition: color .2s ease, background-color .2s ease;
  white-space: nowrap;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, .08);
}

.nav-link[aria-current="page"] {
  color: var(--c-primary);
  background: linear-gradient(120deg, var(--c-gold), #ffe066);
  box-shadow: 0 6px 18px rgba(255, 215, 0, .28);
  font-weight: 700;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  margin-left: 0;
}

.user-entry {
  font-size: 13px;
  padding: 8px 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, .16);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: var(--c-gold);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}

.site-footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 240px at -10% 0%, rgba(255, 107, 53, .25), transparent 55%),
    radial-gradient(900px 320px at 110% 100%, rgba(255, 215, 0, .10), transparent 55%),
    linear-gradient(180deg, var(--c-primary) 0%, #081831 100%);
  color: rgba(255, 255, 255, .78);
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold), var(--c-accent) 55%, transparent 80%);
}

.footer-ornament {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 44px;
  background: repeating-linear-gradient(-55deg, transparent 0 12px, rgba(255, 215, 0, .06) 12px 13px);
  border-bottom: 1px solid rgba(255, 215, 0, .18);
  pointer-events: none;
}

.footer-top {
  position: relative;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 0 44px;
}

.footer-brand {
  min-width: 0;
}

.brand--footer .brand__logo {
  width: 38px;
  height: 38px;
  font-size: 15px;
}

.brand--footer .brand__name {
  font-size: 18px;
}

.footer-brand__desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, .66);
  max-width: 42ch;
}

.footer-trust {
  margin-top: 18px;
  padding: 14px 16px;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, .8);
  background: rgba(255, 215, 0, .07);
  border-left: 3px solid var(--c-gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  max-width: 46ch;
}

.footer-col__title {
  position: relative;
  margin-bottom: 18px;
  padding-left: 18px;
  font-family: var(--font-display);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--c-gold);
}

.footer-col__title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, var(--c-gold), var(--c-accent));
}

.contact-list {
  display: grid;
  gap: 12px;
}

.contact-list__item {
  display: grid;
  gap: 2px;
}

.contact-list__label {
  font-size: 11px;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, .4);
}

.contact-list__value {
  font-size: 14px;
  color: rgba(255, 255, 255, .88);
  word-break: break-all;
}

.footer-links {
  min-width: 0;
}

.footer-links__list {
  display: grid;
  gap: 12px;
}

.footer-links__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, .72);
  transition: color .2s ease;
}

.footer-links__link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 1px;
  background: var(--c-accent);
  opacity: 0;
  transform: rotate(45deg) scale(.5);
  transition: opacity .2s ease, transform .2s ease;
}

.footer-links__link:hover {
  color: var(--c-gold);
}

.footer-links__link:hover::before {
  opacity: 1;
  transform: rotate(45deg);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 24px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  padding: 18px 0 26px;
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.copyright {
  order: 1;
}

.icp {
  order: 2;
  color: rgba(255, 255, 255, .5);
}

.footer-bottom__note {
  order: 3;
  letter-spacing: .5px;
}

@media (max-width: 1024px) {
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    display: none;
    margin-left: 0;
    background: linear-gradient(180deg, var(--c-primary-light) 0%, var(--c-primary) 100%);
    box-shadow: 0 24px 44px rgba(10, 31, 68, .42);
    border-bottom: 3px solid var(--c-gold);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    padding: 14px 16px 20px;
  }

  .nav-link {
    padding: 13px 18px;
    font-size: 16px;
    border-radius: var(--radius-md);
  }

  .nav-toggle {
    display: inline-flex;
  }

  .header-actions {
    margin-left: auto;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 28px;
  }
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 960px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .grid--2,
  .grid--3 {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand__logo {
    width: 38px;
    height: 38px;
    font-size: 15px;
  }

  .brand__name {
    font-size: 17px;
    letter-spacing: 1px;
  }

  .brand__tagline {
    display: none;
  }

  .user-entry {
    padding: 6px 12px;
    font-size: 12px;
  }

  .header-main__inner {
    gap: 8px;
    min-height: 64px;
  }

  .announce-bar__text {
    font-size: 12px;
  }

  .announce-bar__badge {
    padding: 2px 8px;
    font-size: 11px;
  }
}

@media (max-width: 560px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }

  .footer-brand__desc,
  .footer-trust {
    max-width: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
