:root {
  --orange: #FF6B00;
  --navy: #0A1E3C;
  --acid: #C6FF00;
  --cream: #F7F3E8;
  --white: #FFFFFF;
  --gray: #4A5568;
  --sand: #E2DCC8;
  --red: #D32F2F;
  --blue: #1E88E5;
  --ink: #2B2B2B;
  --rail: 288px;
  --gutter: clamp(20px, 4vw, 56px);
  --shadow: 8px 8px 0 rgba(10,30,60,.18);
  --font-display: "Anton", "Arial Black", "Impact", "Helvetica Neue", sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background-color: var(--cream);
  background-image:
    linear-gradient(90deg, rgba(42,43,43,.045) 1px, transparent 1px),
    linear-gradient(rgba(42,43,43,.045) 1px, transparent 1px);
  background-size: 32px 32px;
  color: var(--navy);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
}

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

h1,
h2,
h3,
h4,
p,
ul,
ol,
dl,
dd,
figure {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  color: var(--navy);
  line-height: .95;
  text-transform: uppercase;
}

a {
  color: var(--blue);
  text-decoration-thickness: .1em;
  text-underline-offset: .15em;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

.site-main:focus-visible {
  outline-offset: -3px;
}

.skip-link {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 5000;
  background: var(--orange);
  color: var(--navy);
  padding: 12px 18px;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 4px 4px 0 var(--navy);
  transition: top .2s;
}

.skip-link:focus {
  top: 16px;
}

.read-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  z-index: 3000;
  background: rgba(10,30,60,.12);
  pointer-events: none;
}

.read-progress-bar {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, var(--acid), var(--orange));
  box-shadow: 0 0 12px rgba(198,255,0,.8);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: var(--rail);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  background-color: var(--navy);
  background-image: repeating-linear-gradient(135deg, rgba(255,107,0,.12) 0 2px, rgba(10,30,60,0) 2px 18px);
  color: var(--cream);
  border-right: 6px solid var(--orange);
}

.header-shell {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  padding: 28px 20px 20px;
  position: relative;
}

.site-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--cream);
  text-decoration: none;
}

.brand-badge {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  background: var(--orange);
  color: var(--navy);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 30px;
  line-height: 1;
  box-shadow: 5px 5px 0 var(--acid);
  transform: rotate(-6deg);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 24px;
  line-height: 1;
  letter-spacing: .02em;
  color: var(--cream);
  text-transform: uppercase;
}

.brand-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--acid);
}

.header-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 10px;
  border: 1px solid rgba(198,255,0,.45);
  background: rgba(10,30,60,.35);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(247,243,232,.82);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--acid);
  animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
  0% { box-shadow: 0 0 0 0 rgba(198,255,0,.7); }
  70% { box-shadow: 0 0 0 8px rgba(198,255,0,0); }
  100% { box-shadow: 0 0 0 0 rgba(198,255,0,0); }
}

.site-nav {
  margin-top: 30px;
}

.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.nav-link {
  display: flex;
  align-items: baseline;
  gap: 12px;
  padding: 12px 14px;
  border-left: 4px solid transparent;
  text-decoration: none;
  color: rgba(247,243,232,.72);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .03em;
  transition: background-color .18s, color .18s, border-color .18s;
}

.nav-link:hover,
.nav-link:focus-visible {
  background: rgba(255,107,0,.2);
  color: var(--cream);
  border-left-color: var(--orange);
}

.nav-link[aria-current="page"] {
  background: linear-gradient(90deg, rgba(198,255,0,.18), rgba(10,30,60,0));
  color: var(--cream);
  border-left-color: var(--acid);
}

.nav-link[aria-current="page"] .nav-index {
  color: var(--acid);
  opacity: 1;
}

.nav-index {
  min-width: 26px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--acid);
  opacity: .7;
}

.nav-label {
  line-height: 1.3;
}

.header-foot {
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(247,243,232,.16);
}

.header-caption {
  display: block;
  font-size: 11px;
  line-height: 1.7;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(247,243,232,.55);
  border-left: 3px solid var(--orange);
  padding-left: 10px;
}

.nav-toggle {
  display: none;
}

.site-main,
.site-footer {
  margin-left: var(--rail);
}

.site-main {
  min-height: 72vh;
}

.site-container {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding: clamp(48px, 7vw, 100px) 0;
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(24px, 3vw, 40px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}

.section-kicker::before {
  content: "";
  width: 30px;
  height: 4px;
  background: var(--orange);
}

.section-title {
  margin: 0;
}

.section-desc {
  font-size: 18px;
  color: var(--gray);
  max-width: 680px;
  margin-top: 12px;
}

.page-header {
  padding: clamp(48px, 8vw, 110px) 0 24px;
  border-bottom: 4px solid var(--navy);
  margin-bottom: clamp(32px, 5vw, 64px);
}

.page-title {
  font-size: clamp(48px, 8vw, 100px);
  margin: 0;
}

.page-desc {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  max-width: 720px;
  margin-top: 16px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(16px, 2.2vw, 28px);
}

.grid-cols-2 > * {
  grid-column: span 6;
}

.grid-cols-3 > * {
  grid-column: span 4;
}

.card {
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
  padding: clamp(18px, 2.5vw, 28px);
  position: relative;
}

.card-dark {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  box-shadow: 6px 6px 0 var(--orange);
}

.card-accent {
  border-top: 8px solid var(--orange);
}

.card-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 24px;
  line-height: 1;
  margin-bottom: 10px;
}

.card-meta {
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray);
}

.metric {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  line-height: .9;
  font-size: clamp(52px, 7vw, 88px);
}

.metric-accent {
  color: var(--orange);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--cream);
  border: 2px solid var(--navy);
  padding: 12px 20px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--orange);
  transition: transform .15s, box-shadow .15s, background-color .15s, color .15s;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--orange);
  background: var(--orange);
  color: var(--navy);
  border-color: var(--navy);
}

.btn-primary {
  background: var(--orange);
  color: var(--navy);
  border-color: var(--navy);
  box-shadow: 4px 4px 0 var(--navy);
}

.btn-primary:hover {
  background: var(--acid);
  color: var(--navy);
}

.btn-sm {
  padding: 8px 14px;
  font-size: 14px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--orange);
  color: var(--navy);
  padding: 5px 9px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.badge-live {
  background: var(--acid);
  color: var(--navy);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 24px;
  padding: 0;
  list-style: none;
  font-size: 13px;
  color: var(--gray);
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 8px;
  color: var(--sand);
}

.breadcrumb a {
  color: var(--blue);
  text-decoration: none;
  font-weight: 600;
}

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

.breadcrumb [aria-current="page"] {
  color: var(--navy);
  font-weight: 700;
}

.img-frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #10264d 100%);
  border: 3px solid var(--navy);
  box-shadow: 8px 8px 0 rgba(10,30,60,.16);
  min-height: 120px;
}

.img-frame::before {
  content: "WIKI / VISUAL";
  z-index: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 16px;
  letter-spacing: .1em;
  color: rgba(247,243,232,.65);
}

.img-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: repeating-linear-gradient(115deg, transparent 0 16px, rgba(255,107,0,.16) 16px 20px, transparent 20px 36px);
  pointer-events: none;
  mix-blend-mode: screen;
}

.img-frame > img {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ratio-16-9 {
  aspect-ratio: 16 / 9;
}

.ratio-4-3 {
  aspect-ratio: 4 / 3;
}

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

.speed-lines {
  position: relative;
  overflow: hidden;
}

.speed-lines::before {
  content: "";
  position: absolute;
  inset: -20%;
  z-index: 0;
  background: repeating-linear-gradient(120deg, transparent 0 24px, rgba(255,107,0,.18) 24px 28px, transparent 28px 52px);
  pointer-events: none;
}

.speed-lines > * {
  position: relative;
  z-index: 1;
}

.table-wrap {
  overflow-x: auto;
  background: var(--white);
  border: 3px solid var(--navy);
  box-shadow: 6px 6px 0 var(--navy);
}

.table-wrap table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  min-width: 640px;
}

.table-wrap th,
.table-wrap td {
  padding: 12px;
  text-align: left;
  border-bottom: 1px solid var(--sand);
}

.table-wrap thead th {
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.site-footer {
  background-color: var(--ink);
  background-image: repeating-linear-gradient(135deg, rgba(255,107,0,.1) 0 1px, transparent 1px 16px);
  color: rgba(247,243,232,.72);
  border-top: 8px solid var(--orange);
  padding: clamp(40px, 6vw, 64px) 0 24px;
}

.footer-shell {
  max-width: 1400px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: clamp(24px, 4vw, 56px);
}

.footer-brand .site-brand {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 16px;
}

.footer-trust {
  max-width: 360px;
  font-size: 14px;
  line-height: 1.8;
  color: rgba(247,243,232,.6);
}

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

.footer-title {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 900;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--cream);
  letter-spacing: .04em;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: rgba(247,243,232,.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}

.footer-links a:hover {
  color: var(--acid);
  border-bottom-color: currentColor;
}

.footer-address {
  font-style: normal;
  display: grid;
  gap: 4px;
}

.footer-address .foot-label {
  display: block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--acid);
  font-weight: 700;
}

.footer-address .foot-value {
  font-weight: 600;
  color: rgba(247,243,232,.85);
  line-height: 1.5;
}

.footer-bottom {
  margin-top: clamp(28px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid rgba(247,243,232,.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(247,243,232,.52);
}

.footer-icp {
  margin: 0;
}

.legal-links {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.legal-links a {
  color: rgba(247,243,232,.7);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: color .18s, border-color .18s;
}

.legal-links a:hover {
  color: var(--orange);
  border-bottom-color: currentColor;
}

@media (max-width: 920px) {
  :root {
    --rail: 0px;
  }

  .site-header {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    width: auto;
    height: 64px;
    flex-direction: row;
    align-items: center;
    padding: 0 16px;
    border-right: 0;
    border-bottom: 4px solid var(--orange);
  }

  .header-shell {
    flex-direction: row;
    align-items: center;
    padding: 0;
  }

  .site-brand {
    margin-right: auto;
  }

  .brand-badge {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    font-size: 22px;
    box-shadow: 3px 3px 0 var(--acid);
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-tag {
    display: none;
  }

  .header-status {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    margin: 0;
    padding: 16px 20px 24px;
    background: var(--navy);
    border-bottom: 5px solid var(--orange);
    box-shadow: 0 14px 24px rgba(0,0,0,.25);
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: transform .18s ease, opacity .18s ease, visibility .18s;
  }

  .site-nav[data-open] {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-list {
    gap: 4px;
  }

  .nav-link {
    padding: 14px 12px;
  }

  .header-foot {
    display: none;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-left: 12px;
    background: var(--orange);
    color: var(--navy);
    border: 0;
    box-shadow: 3px 3px 0 var(--acid);
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
  }

  .nav-toggle[aria-expanded="true"] {
    background: var(--acid);
    color: var(--navy);
    box-shadow: none;
  }

  .site-main,
  .site-footer {
    margin-left: 0;
  }

  .site-main {
    padding-top: 64px;
  }

  body:has(.site-nav[data-open]) {
    overflow: hidden;
  }
}

@media (max-width: 760px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 15px;
  }

  .grid-cols-2 > *,
  .grid-cols-3 > * {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .legal-links {
    justify-content: flex-start;
  }
}

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

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

  .status-dot {
    animation: none;
  }

  .read-progress-bar {
    transition: none;
  }
}
