/* ============ Reset & Global ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  background: #F7F9FC;
  color: #1B2A41;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.8;
  min-height: 100vh;
  overflow-x: hidden;
}

ul, ol { list-style: none; }

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

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

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

:focus-visible { outline: 3px solid #FF4A3D; outline-offset: 3px; border-radius: 2px; }

::selection { background: #FF4A3D; color: #FFFFFF; }

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: #F7F9FC; }
::-webkit-scrollbar-thumb { background: #5A6B7B; border-radius: 6px; }
::-webkit-scrollbar-thumb:hover { background: #1B2A41; }

/* ============ Design Tokens ============ */
:root {
  --cmp-color-primary: #FF4A3D;
  --cmp-color-deep: #1B2A41;
  --cmp-color-gold: #FFD02F;
  --cmp-color-green: #4CAF7D;
  --cmp-color-mist: #F7F9FC;
  --cmp-color-ink: #101820;
  --cmp-color-white: #FFFFFF;
  --cmp-color-violet: #8B5CF6;
  --cmp-color-slate: #5A6B7B;
  --cmp-color-line: rgba(27,42,65,0.12);
  --cmp-font-display: Impact, Haettenschweiler, "Arial Black", "PingFang SC", "Microsoft YaHei", sans-serif;
  --cmp-font-body: "Helvetica Neue", Helvetica, "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  --cmp-font-mono: "Courier New", Courier, "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  --cmp-header-h: 72px;
  --cmp-container: 1280px;
  --cmp-gap: 24px;
  --cmp-radius: 0px;
  --cmp-shadow: 0 10px 30px rgba(16,24,32,0.08);
}

/* ============ Common Layout Container ============ */
.cmp-container {
  width: min(var(--cmp-container), 100% - 48px);
  margin-inline: auto;
}

/* ============ Skip Link ============ */
.cmp-skiplink {
  position: fixed;
  top: -200px;
  left: 16px;
  z-index: 9999;
  background: #101820;
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.08em;
  border-bottom: 4px solid #FF4A3D;
  transition: top 0.25s ease;
}
.cmp-skiplink:focus { top: 12px; }

/* ============ Header ============ */
.cmp-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--cmp-header-h);
  background: transparent;
  color: #FFFFFF;
  transition: background 0.35s ease, box-shadow 0.35s ease, height 0.35s ease;
}
.cmp-header.is-solid,
.cmp-header.has-scrolled {
  background: rgba(27,42,65,0.97);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  height: 66px;
}
.cmp-header__inner {
  width: min(var(--cmp-container), 100% - 48px);
  height: 100%;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* Brand */
.cmp-brand { display: flex; align-items: center; gap: 10px; min-width: 0; }
.cmp-brand__mark {
  background: #FF4A3D;
  color: #FFFFFF;
  font-family: var(--cmp-font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.04em;
  padding: 6px 12px 4px;
  transform: skew(-8deg);
  display: inline-block;
  line-height: 1;
  box-shadow: 4px 4px 0 #FFD02F;
}
.cmp-header.is-solid .cmp-brand__mark,
.cmp-header.has-scrolled .cmp-brand__mark { box-shadow: 4px 4px 0 #4CAF7D; }
.cmp-brand__title {
  font-family: var(--cmp-font-display);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

/* Header quick CTA */
.cmp-header__quick {
  display: inline-flex;
  align-items: center;
  background: #FF4A3D;
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 10px 18px;
  border: 1px solid #FF4A3D;
  transform: skew(-6deg);
  transition: background 0.2s ease, color 0.2s ease;
}
.cmp-header__quick:hover { background: transparent; color: #FF4A3D; }
.cmp-header__quick::before {
  content: "●";
  margin-right: 8px;
  font-size: 8px;
  color: #FFD02F;
}

/* Nav toggle (mobile) */
.cmp-nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  position: relative;
  z-index: 1101;
}
.cmp-nav-toggle__box { position: absolute; top: 14px; left: 10px; width: 28px; height: 20px; }
.cmp-nav-toggle__inner,
.cmp-nav-toggle__inner::before,
.cmp-nav-toggle__inner::after {
  position: absolute;
  left: 0;
  width: 28px;
  height: 3px;
  background: #FFFFFF;
  content: "";
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}
.cmp-nav-toggle__inner { top: 8px; }
.cmp-nav-toggle__inner::before { top: -7px; left: 2px; }
.cmp-nav-toggle__inner::after { top: 7px; left: -2px; }
body.nav-open .cmp-nav-toggle__inner { background: transparent; }
body.nav-open .cmp-nav-toggle__inner::before { top: 0; transform: rotate(45deg); width: 26px; left: 1px; }
body.nav-open .cmp-nav-toggle__inner::after { top: 0; transform: rotate(-45deg); width: 26px; left: 1px; }

/* Nav backdrop */
.cmp-nav-backdrop {
  display: none;
}

/* Navigation */
.cmp-nav__close { display: none; }
.cmp-nav__list { display: flex; align-items: center; gap: 6px; }
.cmp-nav__link {
  display: block;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.88);
  position: relative;
  transition: color 0.2s ease;
}
.cmp-nav__link::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 3px;
  background: #FFD02F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}
.cmp-nav__link:hover { color: #FFFFFF; }
.cmp-nav__link:hover::after { transform: scaleX(1); }
.cmp-nav__link[aria-current="page"] { color: #FFFFFF; }
.cmp-nav__link[aria-current="page"]::after { transform: scaleX(1); background: #FF4A3D; }
.cmp-nav__footer { display: none; }

/* ============ Scroll Progress ============ */
.cmp-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  z-index: 1200;
  background: rgba(255,255,255,0.2);
  pointer-events: none;
}
.cmp-progress__bar {
  display: block;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #FF4A3D 0%, #FFD02F 70%, #4CAF7D 100%);
  transition: width 0.05s linear;
}

/* ============ Mobile Navigation State ============ */
@media (max-width: 900px) {
  .cmp-nav-toggle { display: block; }
  .cmp-header__quick { display: none; }
  .cmp-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(16,24,32,0.4);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 1090;
  }
  body.nav-open .cmp-nav-backdrop { opacity: 1; visibility: visible; }
  .cmp-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 88vw);
    background: #1B2A41;
    color: #FFFFFF;
    padding: 88px 32px 40px;
    transform: translateX(105%);
    transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    z-index: 1100;
    overflow-y: auto;
    box-shadow: -20px 0 40px rgba(0,0,0,0.25);
    border-left: 4px solid #FF4A3D;
  }
  .cmp-nav::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(-45deg, rgba(255,255,255,0.03) 0 2px, transparent 2px 12px),
      radial-gradient(circle at 85% 12%, rgba(255,74,61,0.25) 0 90px, transparent 190px);
    pointer-events: none;
  }
  .cmp-nav[data-open] { transform: translateX(0); }
  .cmp-nav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 1;
    width: 48px;
    height: 48px;
    font-size: 28px;
    line-height: 1;
    color: #FFFFFF;
    background: #FF4A3D;
    border-radius: 50%;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .cmp-nav__close:hover { background: #FFD02F; color: #101820; transform: rotate(90deg); }
  .cmp-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .cmp-nav__link {
    font-size: 18px;
    font-weight: 800;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .cmp-nav__link::after { display: none; }
  .cmp-nav__link[aria-current="page"] {
    background: rgba(255,74,61,0.18);
    color: #FF4A3D;
    border-left: 4px solid #FF4A3D;
  }
  .cmp-nav__footer {
    display: block;
    margin-top: auto;
    padding-top: 28px;
  }
  .cmp-nav__quick {
    display: block;
    text-align: center;
    background: #FF4A3D;
    color: #FFFFFF;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 14px 18px;
    margin-bottom: 14px;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  .cmp-nav__quick:hover { background: #FFD02F; color: #101820; transform: skew(-4deg); }
  .cmp-nav__meta {
    display: block;
    text-align: center;
    font-size: 12px;
    letter-spacing: 0.2em;
    color: rgba(255,255,255,0.45);
    text-transform: uppercase;
  }
}

@media (max-width: 560px) {
  :root { --cmp-header-h: 60px; }
  .cmp-header__inner { width: calc(100% - 28px); }
  .cmp-brand__mark { font-size: 18px; padding: 5px 8px 3px; }
  .cmp-brand__title { font-size: 16px; }
  .cmp-skiplink { width: calc(100% - 32px); text-align: center; left: 16px; }
}

/* ============ Footer ============ */
.cmp-footer {
  background: #1B2A41;
  color: rgba(255,255,255,0.86);
  position: relative;
  overflow: hidden;
}
.cmp-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 20%, rgba(255,74,61,0.12), transparent 260px),
    radial-gradient(circle at 10% 90%, rgba(76,175,125,0.08), transparent 220px);
  pointer-events: none;
}
.cmp-footer__inner {
  position: relative;
  width: min(var(--cmp-container), 100% - 48px);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.1fr 0.9fr;
  gap: 40px;
  padding: 72px 0 40px;
}
.cmp-footer__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.cmp-footer__brandmark {
  background: #FF4A3D;
  color: #FFFFFF;
  font-family: var(--cmp-font-display);
  font-size: 24px;
  font-weight: 900;
  padding: 8px 14px 6px;
  transform: skew(-8deg);
  display: inline-block;
  line-height: 1;
  box-shadow: 4px 4px 0 #4CAF7D;
}
.cmp-footer__brandtitle {
  font-family: var(--cmp-font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.cmp-footer__slogan {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255,255,255,0.68);
  max-width: 340px;
  margin-bottom: 24px;
}
.cmp-footer__qrcode {
  width: 108px;
  height: 108px;
  padding: 8px;
  background: #FFFFFF;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 4px;
  border: 1px solid rgba(255,255,255,0.35);
}
.cmp-footer__qrcode::before,
.cmp-footer__qrcode::after,
.cmp-footer__qrcode {
  background:
    conic-gradient(from 0deg, transparent 0 25%, #101820 25% 50%, transparent 50% 75%, #101820 75%);
  background-size: 12px 12px;
}
.cmp-footer__qrcode::before,
.cmp-footer__qrcode::after {
  content: "";
  grid-column: span 1;
  display: none;
}
.cmp-footer__heading {
  color: #FFD02F;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding-bottom: 12px;
  margin-bottom: 18px;
  border-bottom: 2px solid rgba(255,255,255,0.14);
  position: relative;
}
.cmp-footer__heading::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 48px;
  height: 2px;
  background: #FF4A3D;
}
.cmp-footer__links li, .cmp-footer__contact li { margin-bottom: 12px; }
.cmp-footer__links a, .cmp-footer__contact a {
  font-size: 15px;
  color: rgba(255,255,255,0.76);
  position: relative;
  transition: color 0.2s ease, padding-left 0.2s ease;
}
.cmp-footer__links a::before {
  content: "›";
  color: #FF4A3D;
  margin-right: 8px;
  font-weight: 700;
}
.cmp-footer__links a:hover, .cmp-footer__contact a:hover { color: #FFFFFF; padding-left: 4px; }
.cmp-footer__contact { display: flex; flex-direction: column; gap: 8px; }
.cmp-footer__contact li { display: flex; flex-direction: column; gap: 2px; }
.cmp-footer__contact-label {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-family: var(--cmp-font-mono);
}
.cmp-footer__contact a { color: rgba(255,255,255,0.86); font-weight: 600; }
.cmp-footer__contact .cmp-footer__contact-addr {
  color: rgba(255,255,255,0.86);
  font-size: 15px;
}
.cmp-footer__col--legal { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 28px; }
.cmp-footer__icp {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(255,255,255,0.42);
  font-family: var(--cmp-font-mono);
  letter-spacing: 0.08em;
}
.cmp-footer__copyright {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.56);
}
.cmp-footer__strip {
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  display: flex;
  align-items: center;
  gap: 16px;
}
.cmp-footer__strip-line { height: 2px; width: 88px; background: linear-gradient(90deg, #FF4A3D, #4CAF7D); transform: skew(-15deg); }
.cmp-footer__strip-note {
  font-family: var(--cmp-font-mono);
  font-size: 12px;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.34);
  white-space: nowrap;
}

@media (max-width: 1024px) {
  .cmp-footer__inner { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cmp-footer__col--legal { border-left: none; padding-left: 0; }
}

@media (max-width: 640px) {
  .cmp-footer__inner { grid-template-columns: 1fr; padding-top: 48px; gap: 28px; }
  .cmp-footer__strip { flex-direction: column; align-items: flex-start; }
}

/* ============ Back Top ============ */
.cmp-backtop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 900;
  width: 48px;
  height: 48px;
  background: #1B2A41;
  color: #FFFFFF;
  font-size: 20px;
  border: 2px solid #FF4A3D;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) rotate(45deg);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease, background 0.2s ease;
}
.cmp-backtop > span, .cmp-backtop {
  line-height: 1;
}
.cmp-backtop::first-letter { visibility: hidden; }
.cmp-backtop { text-align: center; line-height: 44px; }
.cmp-backtop.is-visible { opacity: 1; visibility: visible; transform: translateY(0) rotate(45deg); }
.cmp-backtop:hover { background: #FF4A3D; color: #101820; }
.cmp-backtop:focus-visible { outline-color: #FFD02F; }
@media (prefers-reduced-motion: reduce) {
  .cmp-backtop, .cmp-backtop.is-visible { transition: none; transform: none; }
}

/* ============ Section Label / Editorial System ============ */
.cmp-section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--cmp-font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #5A6B7B;
}
.cmp-section-label::before {
  content: "";
  width: 32px;
  height: 4px;
  background: #FF4A3D;
  transform: skew(-30deg);
}
.cmp-section-label--gold::before { background: #FFD02F; }
.cmp-section-label--green::before { background: #4CAF7D; }

/* ============ Display Headings ============ */
.cmp-display {
  font-family: var(--cmp-font-display);
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.98;
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1B2A41;
}
.cmp-display--hero { color: #FFFFFF; }
.cmp-display--accent { color: #FF4A3D; }
.cmp-display--outline {
  color: transparent;
  -webkit-text-stroke: 2px #1B2A41;
}
@media (max-width: 640px) {
  .cmp-display--outline { -webkit-text-stroke-width: 1.5px; }
}

/* ============ Panels and Data Indicators ============ */
.cmp-panel {
  background: #FFFFFF;
  border: 1px solid var(--cmp-color-line);
  box-shadow: var(--cmp-shadow);
  position: relative;
  overflow: hidden;
}
.cmp-panel::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 5px;
  height: 100%;
  background: #FF4A3D;
}
.cmp-panel--violet::before { background: #8B5CF6; }
.cmp-panel--gold::before { background: #FFD02F; }
.cmp-panel--green::before { background: #4CAF7D; }
.cmp-panel__inner { padding: 24px; }

/* ============ Cards ============ */
.cmp-card {
  background: #FFFFFF;
  border: 1px solid var(--cmp-color-line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.cmp-card:hover { box-shadow: 0 14px 40px rgba(27,42,65,0.14); transform: translateY(-4px); }
.cmp-card--tilt:hover { transform: translateY(-6px) rotate(-1.2deg); }
.cmp-card__tag {
  display: inline-flex;
  align-self: flex-start;
  background: #1B2A41;
  color: #FFFFFF;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  text-transform: uppercase;
}
.cmp-card__tag--hot { background: #FF4A3D; }
.cmp-card__tag--gold { background: #FFD02F; color: #101820; }
.cmp-card__number {
  font-family: var(--cmp-font-mono);
  font-size: 48px;
  line-height: 1;
  font-weight: 700;
  color: #FF4A3D;
}
.cmp-card__title { font-family: var(--cmp-font-display); font-size: 20px; line-height: 1.3; }
.cmp-card__text { font-size: 14px; color: #5A6B7B; line-height: 1.8; }

/* ============ Timeline ============ */
.cmp-timeline {
  display: grid;
  gap: 0;
  position: relative;
}
.cmp-timeline::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: #1B2A41;
  opacity: 0.12;
}
.cmp-timeline__item {
  position: relative;
  padding-left: 32px;
  padding-bottom: 28px;
}
.cmp-timeline__item:last-child { padding-bottom: 0; }
.cmp-timeline__item::before {
  content: "";
  position: absolute;
  left: 3px;
  top: 8px;
  width: 12px;
  height: 12px;
  background: #FF4A3D;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 2px #FF4A3D;
  transform: rotate(45deg);
}
.cmp-timeline__time {
  font-family: var(--cmp-font-mono);
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #FF4A3D;
  font-weight: 700;
}
.cmp-timeline__title { font-weight: 800; font-size: 18px; }
.cmp-timeline__desc { font-size: 14px; color: #5A6B7B; margin-top: 4px; }

/* ============ Accordion ============ */
.cmp-accordion { border: 1px solid var(--cmp-color-line); background: #FFFFFF; }
.cmp-accordion__item { border-bottom: 1px solid var(--cmp-color-line); }
.cmp-accordion__item:last-child { border-bottom: none; }
.cmp-accordion__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: transparent;
  text-align: left;
  font-weight: 800;
  font-size: 16px;
  color: #1B2A41;
  transition: background 0.2s ease;
  cursor: pointer;
}
.cmp-accordion__trigger:hover { background: #F7F9FC; }
.cmp-accordion__icon {
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.cmp-accordion__icon::before,
.cmp-accordion__icon::after {
  content: "";
  position: absolute;
  top: 9px;
  left: 2px;
  width: 16px;
  height: 2px;
  background: #FF4A3D;
  transition: transform 0.25s ease;
}
.cmp-accordion__icon::after { transform: rotate(90deg); }
.cmp-accordion[data-active] .cmp-accordion__icon::after { transform: rotate(0deg); }
.cmp-accordion__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.cmp-accordion__content-inner { overflow: hidden; padding: 0 22px; }
.cmp-accordion__content-inner > :last-child { padding-bottom: 20px; }
.cmp-accordion__item[data-open] .cmp-accordion__content { grid-template-rows: 1fr; }
.cmp-accordion[data-active] .cmp-accordion__content-inner { padding: 0 22px; }

/* ============ Match Table ============ */
.cmp-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--cmp-color-line);
  background: #FFFFFF;
}
.cmp-match-table { width: 100%; border-collapse: collapse; min-width: 520px; }
.cmp-match-table th, .cmp-match-table td { padding: 14px 16px; text-align: left; border-bottom: 1px solid var(--cmp-color-line); }
.cmp-match-table th {
  background: #1B2A41;
  color: #FFFFFF;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-family: var(--cmp-font-mono);
}
.cmp-match-table td { font-size: 15px; }
.cmp-match-table tr:last-child td { border-bottom: none; }
.cmp-match-table tr:hover td { background: #F7F9FC; }
.cmp-match-table .cmp-score {
  font-family: var(--cmp-font-mono);
  font-size: 22px;
  font-weight: 700;
  color: #FF4A3D;
}

/* ============ Image Frames (reusable placeholders) ============ */
.cmp-image-frame {
  position: relative;
  background: #1B2A41;
  overflow: hidden;
  min-height: 200px;
  display: flex;
  align-items: flex-end;
  border: 1px solid rgba(255,255,255,0.24);
}
.cmp-image-frame__visual {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease, filter 0.4s ease;
}
.cmp-image-frame:hover .cmp-image-frame__visual { transform: scale(1.03); filter: saturate(1.2); }
.cmp-image-frame__label {
  position: relative;
  z-index: 1;
  background: rgba(16,24,32,0.86);
  color: #FFFFFF;
  font-family: var(--cmp-font-mono);
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 10px 14px;
  border-left: 4px solid #FF4A3D;
  backdrop-filter: blur(4px);
}
.cmp-image-frame--skew { transform: skewY(-1.5deg); transform-origin: left center; }
.cmp-image-frame--green .cmp-image-frame__label { border-left-color: #4CAF7D; }
.cmp-image-frame--gold .cmp-image-frame__label { border-left-color: #FFD02F; color: #101820; background: rgba(255,208,47,0.9); }

/* ============ Reveal Interaction ============ */
.cmp-reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.cmp-reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .cmp-reveal { opacity: 1; transform: none; transition: none; }
  .cmp-card, .cmp-card--tilt { transition: none; }
  html { scroll-behavior: auto; }
}

/* ============ Utilities/Grids ============ */
.cmp-grid { display: grid; gap: var(--cmp-gap); }
.cmp-grid--2 { grid-template-columns: repeat(2, 1fr); }
.cmp-grid--3 { grid-template-columns: repeat(3, 1fr); }
.cmp-grid--4 { grid-template-columns: repeat(4, 1fr); }
.cmp-grid--12 { grid-template-columns: repeat(12, 1fr); }
.cmp-col-span-4 { grid-column: span 4; }
.cmp-col-span-6 { grid-column: span 6; }
.cmp-col-span-8 { grid-column: span 8; }
.cmp-col-span-12 { grid-column: span 12; }

@media (max-width: 1000px) {
  .cmp-grid--3, .cmp-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .cmp-col-span-4, .cmp-col-span-6, .cmp-col-span-8, .cmp-col-span-12 { grid-column: span 1; }
}
@media (max-width: 640px) {
  .cmp-grid--2, .cmp-grid--3, .cmp-grid--4 { grid-template-columns: 1fr; }
  .cmp-panel__inner { padding: 18px; }
  .cmp-card { padding: 20px; }
}

/* ============ Breadcrumbs ============ */
.cmp-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 13px;
  color: #5A6B7B;
  padding: 16px 0;
}
.cmp-breadcrumbs a { color: #1B2A41; font-weight: 600; transition: color 0.2s; }
.cmp-breadcrumbs a:hover { color: #FF4A3D; }
.cmp-breadcrumbs [aria-current="page"] { color: #FF4A3D; font-weight: 700; }

/* ============ Buttons ============ */
.cmp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1B2A41;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  border: 2px solid #1B2A41;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-transform: uppercase;
}
.cmp-btn::before { content: "→"; font-weight: 900; color: #FFD02F; }
.cmp-btn:hover { background: transparent; color: #1B2A41; transform: translateY(-2px); }
.cmp-btn--primary { background: #FF4A3D; border-color: #FF4A3D; color: #FFFFFF; }
.cmp-btn--primary::before { color: #FFD02F; }
.cmp-btn--primary:hover { background: #FFFFFF; border-color: #FF4A3D; color: #FF4A3D; }
.cmp-btn--ghost { background: transparent; color: #1B2A41; border-color: #1B2A41; }
.cmp-btn--ghost::before { color: #FF4A3D; }
.cmp-btn--ghost:hover { background: #1B2A41; color: #FFFFFF; }

@keyframes cmp-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.4; transform: scale(0.8); }
}
.cmp-live-dot { display: inline-block; width: 10px; height: 10px; background: #FF4A3D; border-radius: 50%; animation: cmp-pulse-dot 1.4s infinite ease-in-out; margin-right: 6px; }

@media (prefers-reduced-motion: reduce) {
  .cmp-live-dot { animation: none; }
}

/* ============ Header State Alignment for Page-level Use ============ */
body.has-transparent-header { padding-top: 0; }
body.has-solid-header { padding-top: var(--cmp-header-h); }
@media (max-width: 640px) { body.has-solid-header { padding-top: 60px; } }

/* Accessibility: hide visually */
.cmp-visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ============ Motion / reduced motion global ============ */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
}
@media (max-width: 640px) {
  .cmp-header__quick { display: none; }
  .cmp-nav-toggle { display: block; }
  .cmp-footer__strip-note { font-size: 11px; letter-spacing: 0.14em; }
}

/* ============ Mobile Down Fallback where classes may be used by page components ============ */
.cmp-score-line { display: flex; align-items: baseline; gap: 8px; }
.cmp-score-line large { font-family: var(--cmp-font-mono); font-size: 2.6em; font-weight: 700; color: #FF4A3D; line-height: 1; }
