:root {
      --surface: #0f150b;
      --surface-dim: #0b1008;
      --surface-lowest: #0a1007;
      --surface-low: #171d13;
      --surface-container: #1b2117;
      --surface-high: #252c21;
      --surface-highest: #30372b;
      --surface-bright: #343b2f;
      --surface-variant: #30372b;
      --outline-variant: rgba(75, 71, 51, 0.45);
      --text: #dee5d4;
      --text-muted: #cdc7ac;
      --text-dim: #9ca38f;
      --yellow: #fbe434;
      --yellow-dim: #ddc808;
      --yellow-dark: #716500;
      --white: #ffffff;
      --error: #ff8f8a;
      --blue: #82cfff;
      --blue-deep: #2a6e90;
      --shadow-glow: rgba(221, 200, 8, 0.16);
      --shadow-deep: rgba(0, 0, 0, 0.38);
      --radius-sm: 2px;
      --topbar-h: 72px;
      --sidebar-w: 216px;
      --content-max: 1180px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      background:
        radial-gradient(circle at 15% 10%, rgba(221, 200, 8, 0.06), transparent 28%),
        radial-gradient(circle at 80% 25%, rgba(130, 207, 255, 0.04), transparent 20%),
        linear-gradient(180deg, #10170c 0%, #091006 100%);
      color: var(--text);
      font-family: "Work Sans", Arial, sans-serif;
      overflow-x: hidden;
    }

    body.nav-open { overflow: hidden; }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.02) 50%);
      background-size: 100% 4px;
      opacity: 0.6;
      z-index: 999;
      mix-blend-mode: soft-light;
    }

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

    .hud-font,
    .nav-link,
    .section-title,
    .eyebrow,
    .meta,
    .button,
    .top-nav a,
    .brand,
    .hero-title,
    .table,
    .status-label,
    .status-value,
    .foot-link,
    .mobile-toggle {
      font-family: "Space Grotesk", Arial, sans-serif;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 50;
      height: var(--topbar-h);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 0 22px;
      background: linear-gradient(180deg, rgba(14, 19, 10, 0.98), rgba(11, 16, 8, 0.96));
      box-shadow: 0 10px 32px rgba(0,0,0,0.34), inset 0 -1px 0 rgba(255,255,255,0.04);
      border-bottom: 8px solid rgba(27, 33, 23, 0.9);
    }

    .brand {
      font-style: italic;
      font-weight: 800;
      font-size: 19px;
      letter-spacing: -0.03em;
      color: var(--yellow);
      text-transform: uppercase;
      text-shadow: 0 0 12px rgba(251, 228, 52, 0.16);
      white-space: nowrap;
    }

    .top-nav {
      display: flex;
      align-items: center;
      gap: 28px;
      margin-left: auto;
      margin-right: 24px;
    }

    .top-nav a {
      position: relative;
      font-size: 12px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-muted);
      letter-spacing: -0.01em;
      padding: 4px 0;
      transition: color 180ms ease, text-shadow 180ms ease;
    }

    .top-nav a:hover,
    .top-nav a.active {
      color: var(--yellow);
      text-shadow: 0 0 12px rgba(251, 228, 52, 0.18);
    }

    .top-nav a.active::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -8px;
      height: 3px;
      background: var(--yellow);
      box-shadow: 0 0 12px rgba(251, 228, 52, 0.35);
    }

    .topbar-right {
      display: flex;
      align-items: center;
      gap: 16px;
      flex-shrink: 0;
    }

    .status-chip {
      text-align: right;
      line-height: 1;
      min-width: 120px;
    }

    .status-label {
      display: block;
      font-size: 9px;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: 0.02em;
      opacity: 0.86;
      margin-bottom: 4px;
    }

    .status-value {
      display: block;
      color: var(--yellow);
      font-size: 11px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.02em;
    }

    .status-hud {
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 40;
      background: rgba(16, 22, 12, 0.82);
      backdrop-filter: blur(8px);
      padding: 10px 12px;
      min-width: 160px;
      box-shadow: 0 12px 30px rgba(0,0,0,0.24), inset 0 0 0 1px rgba(130, 207, 255, 0.08);
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
    }

    .status-hud .meta {
      display: grid;
      grid-template-columns: 58px 1fr;
      gap: 4px 10px;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.03em;
      color: var(--blue);
    }

    .status-hud .meta .label { opacity: 0.7; }
    .status-hud .meta .value { color: var(--text); font-weight: 700; }

    .button,
    .mobile-toggle {
      border: 0;
      cursor: pointer;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.01em;
      transition: transform 140ms ease, background 180ms ease, box-shadow 180ms ease, color 180ms ease;
    }

    .button:active,
    .mobile-toggle:active { transform: translateY(1px); }

    .button--ghost {
      background: var(--surface-container);
      color: var(--yellow);
      font-size: 12px;
      padding: 12px 18px;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }

    .button--ghost:hover { background: var(--surface-highest); }

    .button--primary {
      background: linear-gradient(180deg, #fff268 0%, var(--yellow) 100%);
      color: #373100;
      font-size: 13px;
      padding: 16px 22px;
      width: 100%;
      clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
      box-shadow: 0 10px 24px rgba(221,200,8,0.18);
    }

    .button--primary:hover {
      box-shadow: 0 14px 28px rgba(221,200,8,0.24);
      transform: translateY(-1px);
    }

    .mobile-toggle {
      display: none;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      background: var(--surface-container);
      color: var(--yellow);
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
    }

    .mobile-toggle .material-symbols-outlined { font-size: 22px; }

    .sidebar {
      position: fixed;
      top: var(--topbar-h);
      left: 0;
      bottom: 0;
      width: var(--sidebar-w);
      z-index: 30;
      padding: 18px 14px 16px;
      background: linear-gradient(180deg, rgba(27,33,23,0.96), rgba(14,19,10,0.98));
      box-shadow: inset -1px 0 0 rgba(255,255,255,0.03), 16px 0 40px rgba(0,0,0,0.2);
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .sidebar::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 10px;
      height: 100%;
      background: linear-gradient(180deg, rgba(0,0,0,0.1), rgba(0,0,0,0.34));
      opacity: 0.7;
    }

    .operator-card {
      position: relative;
      background: linear-gradient(180deg, var(--surface-lowest), #11190c);
      padding: 14px 14px 14px 18px;
      min-height: 86px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 8px 20px rgba(0,0,0,0.2);
      display: flex;
    }

    .operator-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: var(--yellow);
      box-shadow: 0 0 10px rgba(251,228,52,0.25);
    }

    .operator-row {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .operator-icon {
      width: 34px;
      height: 34px;
      display: grid;
      place-items: center;
      background: var(--surface-highest);
      color: var(--yellow);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
      flex-shrink: 0;
    }

    .operator-name {
      margin: 0 0 4px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-weight: 700;
      font-size: 12px;
      letter-spacing: 0.02em;
    }

    .operator-status {
      margin: 0;
      color: var(--text-muted);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 10px;
      opacity: 0.85;
    }

    .side-nav {
      display: grid;
      gap: 8px;
    }

    .nav-link {
      display: flex;
      align-items: center;
      gap: 10px;
      min-height: 48px;
      padding: 0 12px;
      color: var(--text-muted);
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 700;
      position: relative;
      transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
    }

    .nav-link .material-symbols-outlined {
      font-size: 18px;
      opacity: 0.9;
    }

    .nav-link:hover {
      background: rgba(52, 59, 47, 0.72);
      color: var(--yellow);
    }

    .nav-link.active {
      background: linear-gradient(180deg, rgba(65, 72, 57, 0.9), rgba(52, 59, 47, 0.8));
      color: var(--yellow);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 0 24px rgba(221,200,8,0.08);
      padding-left: 22px;
    }

    .nav-link.active::before {
      content: ">";
      position: absolute;
      left: 10px;
      top: 50%;
      transform: translateY(-50%);
      color: var(--yellow);
      font-weight: 800;
    }

    .sidebar-footer { margin-top: auto; }

    .page {
      flex: 1;
      padding-top: calc(var(--topbar-h) + 10px);
      padding-left: calc(var(--sidebar-w) + 32px);
      padding-right: 30px;
      padding-bottom: 120px;
    }

    .page-no-sidebar {
      padding-left: 30px;
    }

    .content {
      max-width: var(--content-max);
      margin: 0 auto;
    }

    .hero {
      margin: 16px 0 52px;
      padding-left: 28px;
      position: relative;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 0;
      top: 8px;
      width: 7px;
      height: 100%;
      background: var(--yellow);
      box-shadow: 0 0 18px rgba(251, 228, 52, 0.16);
    }

    .hero-title {
      margin: 0 0 10px;
      color: var(--white);
      text-transform: uppercase;
      font-style: italic;
      font-weight: 800;
      letter-spacing: -0.05em;
      line-height: 0.92;
      font-size: clamp(40px, 7vw, 86px);
      text-shadow: 0 0 22px rgba(255,255,255,0.05);
    }

    .hero-tag {
      display: inline-block;
      background: rgba(48, 55, 43, 0.7);
      color: var(--yellow);
      padding: 8px 10px;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 16px;
      font-weight: 800;
      line-height: 1;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .section {
      margin-bottom: 52px;
    }

    .section-title {
      display: flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 20px;
      color: var(--yellow);
      font-size: clamp(16px, 2.4vw, 28px);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: -0.02em;
    }

    .section-title::before {
      content: "";
      width: 28px;
      height: 2px;
      background: var(--yellow);
      box-shadow: 0 0 12px rgba(251,228,52,0.14);
      flex-shrink: 0;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
      display: grid;
      gap: 24px;
    }

    .grid-2 { grid-template-columns: minmax(0, 1fr) minmax(320px, 0.97fr); }
    .grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1px; }

    .panel,
    .module,
    .table-wrap,
    .mini-panel {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(27,33,23,0.98), rgba(20,25,16,0.98));
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 16px 28px rgba(0,0,0,0.18);
    }

    .panel::after,
    .module::after,
    .table-wrap::after,
    .mini-panel::after {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background:
        linear-gradient(to bottom, rgba(255,255,255,0.02) 50%, rgba(0,0,0,0.01) 50%);
      background-size: 100% 4px;
      opacity: 0.18;
    }

    .panel { padding: 20px 22px 22px; }
    .panel.inset {
      background: linear-gradient(180deg, rgba(10,16,7,0.98), rgba(8,14,6,0.98));
      box-shadow: inset 0 0 0 4px rgba(48,55,43,0.6), 0 16px 28px rgba(0,0,0,0.18);
    }

    .card-title,
    .eyebrow {
      color: var(--yellow);
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.04em;
      margin: 0 0 14px;
    }

    .eyebrow {
      font-size: 12px;
      margin-bottom: 10px;
      opacity: 0.92;
    }

    .muted-label {
      margin: 0 0 8px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      opacity: 0.78;
    }

    .body-copy,
    .list,
    .desc,
    .small-copy {
      position: relative;
      z-index: 1;
    }

    .body-copy {
      margin: 0;
      font-size: 18px;
      line-height: 1.6;
      color: var(--text);
      max-width: 62ch;
    }

    .small-copy {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: var(--text-muted);
    }

    .objective-boxes {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 10px;
      margin-top: 14px;
    }

    .mini-panel {
      padding: 12px 12px 13px;
      background: linear-gradient(180deg, rgba(22,28,18,1), rgba(14,18,11,1));
    }

    .mini-panel.victory { box-shadow: inset 3px 0 0 var(--yellow), inset 0 0 0 1px rgba(255,255,255,0.03); }
    .mini-panel.termination { box-shadow: inset 3px 0 0 var(--error), inset 0 0 0 1px rgba(255,255,255,0.03); }

    .micro-title {
      margin: 0 0 4px;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .victory .micro-title { color: var(--yellow); }
    .termination .micro-title { color: var(--error); }

    .micro-copy {
      margin: 0;
      color: var(--text);
      font-size: 13px;
      line-height: 1.35;
    }

    .diamond-list {
      list-style: none;
      padding: 0;
      margin: 10px 0 0;
      display: grid;
      gap: 8px;
      color: var(--text-muted);
      font-size: 15px;
    }

    .diamond-list li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .diamond-list li::before {
      content: "";
      width: 6px;
      height: 6px;
      margin-top: 9px;
      background: var(--yellow);
      transform: rotate(45deg);
      flex-shrink: 0;
      box-shadow: 0 0 12px rgba(251,228,52,0.22);
    }

    .priority-block + .priority-block { margin-top: 22px; }

    .priority-head {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 12px;
      margin-bottom: 8px;
    }

    .priority-label,
    .priority-rank {
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
    }

    .priority-label { font-size: 11px; font-weight: 800; color: var(--white); letter-spacing: 0.04em; }
    .priority-rank { font-size: 10px; color: var(--text-dim); letter-spacing: 0.05em; }

    .priority-bar {
      height: 4px;
      background: rgba(48,55,43,0.9);
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
      margin-bottom: 10px;
    }

    .priority-fill {
      height: 100%;
      background: linear-gradient(90deg, #ffee65 0%, var(--yellow-dim) 100%);
      box-shadow: 0 0 12px rgba(251,228,52,0.25);
    }

    .split-panel {
      display: grid;
      gap: 22px;
      grid-template-columns: 1.04fr 0.96fr 0.96fr;
    }

    .role-list,
    .simple-list {
      display: grid;
      gap: 12px;
    }

    .role-item {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      padding-bottom: 8px;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.06);
      text-transform: uppercase;
      font-size: 14px;
    }

    .role-item:last-child { box-shadow: none; padding-bottom: 0; }

    .role-item .value {
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-weight: 800;
      letter-spacing: 0.03em;
    }

    .comm-block + .comm-block { margin-top: 18px; }

    .comm-label {
      margin: 0 0 5px;
      color: var(--text-dim);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.05em;
    }

    .comm-value {
      margin: 0;
      font-size: 15px;
      line-height: 1.4;
      color: var(--text);
      font-weight: 600;
    }

    .comm-value.highlight { color: var(--yellow); font-family: "Space Grotesk", Arial, sans-serif; font-size: 20px; font-weight: 800; }
    .comm-value.italic { font-style: italic; font-weight: 500; color: var(--text-muted); }

    .stack {
      display: grid;
      gap: 16px;
      align-content: start;
    }

    .stack .mini-panel { min-height: 102px; }

    .dev-strip {
      padding: 1px;
      background: linear-gradient(90deg, rgba(67,74,59,0.85), rgba(42,49,36,0.55));
      box-shadow: 0 16px 28px rgba(0,0,0,0.18);
    }

    .dev-card {
      min-height: 158px;
      background: linear-gradient(180deg, rgba(27,33,23,1), rgba(18,24,14,1));
      padding: 20px 22px;
      position: relative;
    }

    .dev-card .material-symbols-outlined {
      color: var(--yellow);
      font-size: 22px;
      margin-bottom: 14px;
    }

    .dev-card h3 {
      margin: 0 0 12px;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      color: var(--white);
    }

    .dev-card ul,
    .dev-card p {
      margin: 0;
      padding: 0;
      list-style: none;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.55;
    }

    .schedule-grid {
      display: grid;
      gap: 24px;
      grid-template-columns: minmax(0, 1fr) minmax(350px, 1fr);
    }

    .subsection-label {
      margin: 0 0 12px;
      padding-left: 14px;
      border-left: 4px solid var(--yellow);
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0.05em;
    }

    .timeline-card {
      padding: 20px 22px;
      background: linear-gradient(180deg, rgba(27,33,23,0.98), rgba(18,22,14,0.98));
      position: relative;
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03), 0 16px 28px rgba(0,0,0,0.18);
    }

    .timeline-card::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 4px;
      height: 100%;
      background: linear-gradient(180deg, rgba(251,228,52,0.35), rgba(251,228,52,0));
      opacity: 0.5;
    }

    .timeline-item + .timeline-item { margin-top: 24px; }

    .timeline-item {
      display: grid;
      grid-template-columns: 52px 1fr;
      gap: 16px;
      align-items: start;
    }

    .timeline-week {
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .timeline-title {
      margin: 0 0 4px;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 18px;
      font-weight: 800;
      color: var(--white);
    }

    .timeline-title.emphasis { font-style: italic; }

    .timeline-desc {
      margin: 0;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.45;
    }

    .table-wrap {
      background: linear-gradient(180deg, rgba(27,33,23,0.98), rgba(16,20,13,0.98));
      padding: 0;
    }

    table {
      width: 100%;
      border-collapse: collapse;
      position: relative;
      z-index: 1;
    }

    /* Weekly delta log expanders */
    .expander-row td,
    .expander-content-row td {
      padding: 0;
      font-size: 13px;
      box-shadow: inset 0 -1px 0 rgba(255,255,255,0.04);
    }

    .expander-row {
      background: rgba(23, 29, 19, 0.42);
    }

    .expander-row:nth-of-type(4n + 1),
    .expander-row:nth-of-type(4n + 3) {
      background: rgba(23, 29, 19, 0.42);
    }

    .expander-row:nth-of-type(4n + 2),
    .expander-row:nth-of-type(4n + 4) {
      background: rgba(23, 29, 19, 0.7);
    }

    .week-expander {
      width: 100%;
      border: 0;
      background: transparent;
      color: var(--text);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      text-align: left;
      padding: 0;
      cursor: pointer;
      transition: background 200ms ease;
    }

    .week-expander:hover {
      background: rgba(251, 228, 52, 0.06);
    }

    /* tbody tr button {
      transition: background 160ms ease;
    } */

    .week-expander__left,
    .week-expander__right {
      display: flex;
      align-items: center;
    }

    .week-expander__left {
      min-width: 0;
      flex: 1;
      gap: 16px;
      padding: 15px 16px;
    }

    .week-expander__right {
      gap: 12px;
      padding: 15px 16px;
      flex-shrink: 0;
    }

    .week-expander__week {
      width: 110px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-weight: 800;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      flex-shrink: 0;
    }

    .week-expander__title {
      min-width: 0;
      color: var(--text);
      text-transform: uppercase;
      font-size: 13px;
    }

    .week-expander__status {
      width: 90px;
      text-align: right;
      font-size: 10px;
      color: rgba(222, 229, 212, 0.42);
      letter-spacing: 0.05em;
      text-transform: uppercase;
      font-family: "Space Grotesk", Arial, sans-serif;
    }

    .week-expander__icon {
      font-size: 18px;
      color: var(--yellow);
      transition: transform 180ms ease;
    }

    .week-expander[aria-expanded="true"] .week-expander__icon {
      transform: rotate(180deg);
    }

    .expander-content-row {
      background: rgba(10, 16, 7, 0.92);
    }

    .expander-content-row td {
      border-top: 1px solid rgba(255, 255, 255, 0.03);
    }

    .week-expander__content-outer {
      height: 0;
      overflow: hidden;
      transition: height 240ms ease;
    }

    .week-expander__content {
      padding: 18px 20px 20px 20px;
      box-shadow:
        inset 3px 0 0 rgba(221, 200, 8, 0.45),
        inset 0 -1px 0 rgba(255, 255, 255, 0.03);
      background:
        linear-gradient(180deg, rgba(17, 23, 14, 0.98), rgba(12, 17, 10, 0.98));
    }

    .week-expander[aria-expanded="true"] .week-expander__icon {
      transform: rotate(180deg);
      transition: transform 180ms ease;
    }

    .week-expander__label {
      margin: 0 0 8px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 0.05em;
      opacity: 0.9;
    }

    .week-expander__text {
      margin: 0;
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.55;
    }

    @media (max-width: 640px) {
      .week-expander__left {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
      }

      .week-expander__week,
      .week-expander__status {
        width: auto;
      }

      .week-expander__right {
        align-items: center;
        gap: 8px;
      }

      .week-expander__title {
        font-size: 12px;
      }
    }

    .footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
      padding: 14px 26px;
      background: rgba(10, 16, 7, 0.96);
      border-top: 2px solid rgba(27,33,23,0.9);
      color: var(--text-muted);
      text-transform: uppercase;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 11px;
      letter-spacing: 0.08em;
      margin-left: var(--sidebar-w);
    }
    .footer-no-sidebar {
      margin-left: 0;
    }

    .footer-nav {
      display: flex;
      gap: 26px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .foot-link { opacity: 0.9; }
    .foot-link:hover { color: var(--white); }

    .footer-build {
      color: var(--yellow);
      font-weight: 800;
    }

    .backdrop {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.44);
      backdrop-filter: blur(3px);
      z-index: 20;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    @media (max-width: 1200px) {
      .grid-2,
      .schedule-grid,
      .split-panel {
        grid-template-columns: 1fr;
      }

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

    @media (max-width: 980px) {
      .top-nav,
      .status-chip {
        display: none;
      }

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

      .sidebar {
        transform: translateX(-100%);
        transition: transform 220ms ease;
        width: min(86vw, 320px);
        box-shadow: 24px 0 50px rgba(0,0,0,0.34);
      }

      body.nav-open .sidebar { transform: translateX(0); }
      body.nav-open .backdrop { display: block; }

      .page {
        padding-left: 20px;
        padding-right: 20px;
      }

      .hero {
        padding-left: 20px;
        margin-bottom: 40px;
      }

      .hero::before { height: 72px; }
      .content { max-width: 100%; }
      .grid-3 { grid-template-columns: 1fr; }
      .status-hud { right: 12px; bottom: 12px; }

      .footer {
        margin-left: 0;
      }
    }

    @media (max-width: 640px) {
      .topbar {
        padding: 0 14px;
        gap: 12px;
      }

      .brand { font-size: 16px; }
      .button--ghost { padding: 11px 12px; font-size: 11px; }
      .page { padding-left: 14px; padding-right: 14px; padding-bottom: 110px; }
      .panel, .timeline-card { padding: 16px; }
      .grid-4 { grid-template-columns: 1fr; }
      .objective-boxes { grid-template-columns: 1fr; }
      .footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
      }
      .footer-nav { gap: 14px; justify-content: flex-start; }
      td { padding: 12px 10px; font-size: 12px; }
      td:first-child { width: 84px; }
      td:last-child { width: 74px; }
      .status-hud { min-width: 144px; }
    }

    /* -------------------------------
       Home page tactical landing
       ------------------------------- */
    .terminal-search {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-width: 240px;
      padding: 0 10px;
      height: 40px;
      background: linear-gradient(180deg, rgba(10, 16, 7, 0.96), rgba(13, 19, 10, 0.98));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
    }

    .terminal-search .material-symbols-outlined {
      color: var(--yellow);
      font-size: 16px;
      opacity: 0.9;
    }

    .terminal-search input {
      border: 0;
      outline: 0;
      width: 100%;
      background: transparent;
      color: var(--text);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .terminal-search input::placeholder {
      color: rgba(205, 199, 172, 0.74);
    }

    .terminal-search input:focus {
      text-shadow: 0 0 10px rgba(221, 200, 8, 0.26);
    }

    .hud-login {
      height: 40px;
      padding: 0 14px;
      background: linear-gradient(180deg, #fff268 0%, var(--yellow) 100%);
      color: #373100;
      font-size: 10px;
      box-shadow: 0 6px 14px rgba(221, 200, 8, 0.18);
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
    }

    .hud-login:hover {
      transform: translateY(-1px);
      box-shadow: 0 9px 20px rgba(221, 200, 8, 0.24);
    }

    .sidebar-diagnostics {
      margin-top: auto;
      margin-bottom: 12px;
      padding: 10px 10px 10px 12px;
      background: linear-gradient(180deg, rgba(10, 16, 7, 0.9), rgba(12, 18, 8, 0.96));
      color: rgba(130, 207, 255, 0.8);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      box-shadow: inset 0 0 0 1px rgba(130, 207, 255, 0.16);
    }

    .sidebar-diagnostics p {
      margin: 0;
      line-height: 1.7;
    }

    .uplink-button {
      width: 100%;
      height: 42px;
      background: linear-gradient(180deg, rgba(52, 59, 47, 0.95), rgba(34, 39, 30, 0.95));
      color: var(--yellow);
      font-size: 10px;
      box-shadow: inset 0 0 0 1px rgba(221, 200, 8, 0.28);
    }

    .uplink-button:hover {
      background: linear-gradient(180deg, rgba(68, 76, 60, 0.96), rgba(42, 49, 36, 0.98));
    }

    .home-hero {
      position: relative;
      height: min(72vh, 630px);
      min-height: 520px;
      margin-bottom: 26px;
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 0 100%);
      background: #0d120a;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04), 0 26px 50px rgba(0, 0, 0, 0.34);
    }

    .home-hero-image {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1) brightness(0.66) contrast(1.08);
      transform: scale(1.02);
    }

    .home-hero-overlay {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 56%, rgba(221, 200, 8, 0.18), transparent 38%),
        linear-gradient(90deg, rgba(14, 20, 10, 0.94) 0%, rgba(14, 20, 10, 0.66) 42%, rgba(14, 20, 10, 0.26) 100%),
        linear-gradient(180deg, rgba(14, 20, 10, 0.22) 0%, rgba(14, 20, 10, 0.72) 100%);
      pointer-events: none;
    }

    .home-hero-content {
      position: relative;
      z-index: 2;
      max-width: 560px;
      padding: clamp(32px, 7vw, 108px) clamp(22px, 4vw, 58px);
    }

    .home-chip {
      display: inline-block;
      margin: 0 0 18px;
      padding: 5px 7px;
      background: var(--yellow);
      color: #2a2400;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .home-hero h1 {
      margin: 0;
      color: #ffe838;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-style: italic;
      font-size: clamp(42px, 6.2vw, 66px);
      line-height: 0.94;
      letter-spacing: -0.045em;
      text-transform: uppercase;
      text-shadow: 0 0 20px rgba(221, 200, 8, 0.18);
    }

    .home-hero-copy {
      margin: 16px 0 0;
      max-width: 38ch;
      color: var(--text);
      font-size: clamp(16px, 1.8vw, 25px);
      line-height: 1.5;
    }

    .home-hero-actions {
      margin-top: 30px;
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .home-btn-primary,
    .home-btn-secondary {
      min-height: 46px;
      min-width: 176px;
      padding: 0 18px;
      font-size: 12px;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .home-btn-primary {
      background: linear-gradient(180deg, #fff268 0%, var(--yellow) 100%);
      color: #2e2900;
      box-shadow: 0 10px 24px rgba(221, 200, 8, 0.2);
    }

    .home-btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 14px 28px rgba(221, 200, 8, 0.26);
    }

    .home-btn-secondary {
      background: rgba(13, 19, 10, 0.44);
      color: var(--yellow);
      box-shadow: inset 0 0 0 1px rgba(221, 200, 8, 0.7);
    }

    .home-btn-secondary:hover {
      background: rgba(221, 200, 8, 0.12);
    }

    .home-hero-meta {
      position: absolute;
      top: 24px;
      right: 22px;
      z-index: 2;
      text-align: right;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      color: rgba(251, 228, 52, 0.58);
      line-height: 1.5;
      text-shadow: 0 0 10px rgba(221, 200, 8, 0.2);
    }

    .home-hero-meta p {
      margin: 0;
    }

    .home-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(300px, 0.38fr);
      gap: 20px;
      align-items: start;
    }

    .home-section-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 10px;
      padding-bottom: 8px;
      box-shadow: inset 0 -1px 0 rgba(75, 71, 51, 0.56);
    }

    .home-section-head h2 {
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      color: var(--white);
      font-size: clamp(22px, 2.2vw, 34px);
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .home-section-head h2 span {
      width: 11px;
      height: 11px;
      background: var(--yellow);
      box-shadow: 0 0 8px rgba(221, 200, 8, 0.4);
    }

    .home-section-head p {
      margin: 0;
      color: rgba(205, 199, 172, 0.84);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 9px;
      letter-spacing: 0.07em;
    }

    .home-feed {
      min-width: 0;
    }

    .news-card {
      display: grid;
      grid-template-columns: 130px 1fr;
      gap: 16px;
      align-items: stretch;
      margin-top: 12px;
      padding: 14px;
      background: linear-gradient(180deg, rgba(27, 33, 23, 0.96), rgba(18, 22, 14, 0.98));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 14px 24px rgba(0, 0, 0, 0.2);
      transition: background 190ms ease, transform 190ms ease;
    }

    .news-card:hover {
      background: linear-gradient(180deg, rgba(37, 44, 33, 0.98), rgba(24, 31, 19, 0.98));
      transform: translateY(-2px);
    }

    .news-thumb-wrap {
      overflow: hidden;
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
      background: #0a1007;
    }

    .news-thumb {
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: grayscale(1) brightness(0.73);
      transition: filter 180ms ease, transform 180ms ease;
    }

    .news-card:hover .news-thumb {
      filter: grayscale(0.2) brightness(0.86);
      transform: scale(1.03);
    }

    .news-body {
      min-width: 0;
      display: grid;
      align-content: center;
      gap: 8px;
    }

    .news-meta {
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      color: #ffe838;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 700;
    }

    .news-body h3 {
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      color: var(--white);
      font-size: clamp(23px, 2.3vw, 34px);
      line-height: 0.98;
      text-transform: uppercase;
      letter-spacing: -0.03em;
      font-weight: 800;
    }

    .news-body p {
      margin: 0;
      color: var(--text-muted);
      font-size: clamp(13px, 1.2vw, 17px);
      line-height: 1.5;
      max-width: 62ch;
    }

    .news-action {
      margin-top: 6px;
      border: 0;
      padding: 0;
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: transparent;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 800;
      cursor: pointer;
    }

    .news-action .material-symbols-outlined {
      font-size: 14px;
    }

    .mission-panel {
      position: sticky;
      top: calc(var(--topbar-h) + 22px);
      padding: 16px 16px 18px;
      background: linear-gradient(180deg, rgba(10, 16, 7, 0.98), rgba(13, 19, 10, 0.98));
      box-shadow: inset 3px 0 0 rgba(52, 59, 47, 0.98), inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 18px 28px rgba(0, 0, 0, 0.18);
      min-height: fit-content;
      overflow: hidden;
    }

    .mission-panel h2 {
      margin: 0 0 14px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: clamp(18px, 1.8vw, 26px);
      color: var(--yellow);
      letter-spacing: -0.02em;
      font-weight: 800;
    }

    .mission-panel h2 .material-symbols-outlined {
      font-size: 18px;
    }

    .brief-item {
      margin-bottom: 12px;
      padding-left: 12px;
      border-left: 2px solid rgba(75, 71, 51, 0.56);
      position: relative;
    }

    .brief-item::before {
      content: "";
      position: absolute;
      left: -4px;
      top: 1px;
      width: 6px;
      height: 6px;
      background: var(--yellow);
    }

    .brief-item.danger::before {
      background: var(--error);
    }

    .brief-item p {
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      color: var(--white);
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      font-weight: 800;
    }

    .brief-item span {
      display: block;
      margin-top: 5px;
      color: var(--text-muted);
      font-size: 11px;
      line-height: 1.45;
      text-transform: uppercase;
    }

    .diag-card {
      margin-top: 14px;
      padding: 12px;
      background: linear-gradient(180deg, rgba(37, 44, 33, 0.96), rgba(28, 34, 25, 0.96));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .diag-card h3 {
      margin: 0 0 10px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 10px;
      letter-spacing: 0.04em;
      font-weight: 800;
    }

    .diag-row + .diag-row {
      margin-top: 10px;
    }

    .diag-bar {
      width: 100%;
      height: 3px;
      background: rgba(10, 16, 7, 0.72);
      overflow: hidden;
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .diag-fill {
      display: block;
      width: 0;
      height: 100%;
      transition: width 520ms ease;
    }

    .diag-fill[data-fill="yellow"] {
      background: linear-gradient(90deg, #fff268, var(--yellow));
    }

    .diag-fill[data-fill="blue"] {
      background: linear-gradient(90deg, #5ebce8, #82cfff);
    }

    .diag-row p {
      margin: 5px 0 0;
      display: flex;
      justify-content: space-between;
      color: var(--text-muted);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 8px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .diag-row strong {
      color: var(--text);
      font-weight: 700;
    }

    .mission-warning {
      margin: 14px 0 0;
      color: rgba(205, 199, 172, 0.48);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 8px;
      text-transform: uppercase;
      line-height: 1.5;
      letter-spacing: 0.04em;
      font-style: italic;
    }

    .mission-console {
      position: absolute;
      right: 0;
      bottom: 0;
      width: 48px;
      height: 40px;
      border: 0;
      background: linear-gradient(180deg, #fff268 0%, var(--yellow) 100%);
      color: #393300;
      cursor: pointer;
      clip-path: polygon(0 0, 88% 0, 100% 16%, 100% 100%, 0 100%);
      box-shadow: 0 0 22px rgba(221, 200, 8, 0.35);
    }

    .mission-console .material-symbols-outlined {
      font-size: 18px;
    }

    .floating-terminal {
      position: fixed;
      right: 18px;
      bottom: 96px;
      z-index: 45;
      padding: 3px;
      background: linear-gradient(180deg, rgba(48, 55, 43, 0.94), rgba(28, 34, 25, 0.98));
      box-shadow: inset 0 0 0 1px rgba(221, 200, 8, 0.2), 0 14px 28px rgba(0, 0, 0, 0.3);
      clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 0 100%);
    }

    .floating-terminal button {
      width: 54px;
      height: 54px;
      border: 0;
      background: linear-gradient(180deg, #fff268 0%, var(--yellow) 100%);
      color: #2c2800;
      cursor: pointer;
      clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 0 100%);
      transition: transform 180ms ease;
    }

    .floating-terminal button:hover {
      transform: scale(1.08);
    }

    .floating-terminal .material-symbols-outlined {
      font-size: 28px;
    }

    @media (max-width: 1120px) {
      .home-grid {
        grid-template-columns: 1fr;
      }

      .mission-panel {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 980px) {
      .terminal-search {
        min-width: 160px;
      }

      .news-card {
        grid-template-columns: 112px 1fr;
      }

      .floating-terminal {
        right: 14px;
        bottom: 84px;
      }
    }

    @media (max-width: 720px) {
      .terminal-search {
        display: none;
      }

      .hud-login {
        display: none;
      }

      .home-hero {
        height: auto;
        min-height: 460px;
      }

      .home-hero-content {
        padding: 26px 16px 22px;
      }

      .home-hero-meta {
        top: 14px;
        right: 12px;
        font-size: 9px;
      }

      .news-card {
        grid-template-columns: 1fr;
      }

      .news-thumb-wrap {
        height: 132px;
      }

      .floating-terminal {
        display: none;
      }
    }

    /* -------------------------------
       Reports page tactical archive
       ------------------------------- */
    .reports-shell {
      position: relative;
      max-width: 1020px;
      margin: 0 auto;
      padding: 22px 0 24px;
    }

    .reports-bg-word {
      position: absolute;
      right: 6px;
      top: 8px;
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-style: italic;
      font-weight: 800;
      font-size: clamp(70px, 11vw, 180px);
      letter-spacing: -0.05em;
      color: rgba(255, 255, 255, 0.05);
      text-transform: uppercase;
      pointer-events: none;
      user-select: none;
      line-height: 0.86;
      z-index: 0;
    }

    .reports-header {
      position: relative;
      z-index: 1;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      gap: 16px;
      padding: 0 0 14px;
      box-shadow: inset 0 -1px 0 rgba(75, 71, 51, 0.45);
      margin-bottom: 18px;
    }

    .reports-header h1 {
      margin: 0;
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: "Space Grotesk", Arial, sans-serif;
      color: var(--yellow);
      text-transform: uppercase;
      font-size: clamp(30px, 4.2vw, 58px);
      font-style: italic;
      line-height: 0.92;
      letter-spacing: -0.04em;
      font-weight: 800;
    }

    .reports-header h1 span {
      width: 30px;
      height: 4px;
      background: var(--yellow);
      box-shadow: 0 0 10px rgba(221, 200, 8, 0.35);
      margin-top: 2px;
    }

    .reports-header p {
      margin: 7px 0 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      color: rgba(205, 199, 172, 0.86);
      font-size: 10px;
      letter-spacing: 0.08em;
    }

    .reports-signal {
      text-align: right;
      flex-shrink: 0;
    }

    .reports-signal small {
      display: block;
      color: rgba(205, 199, 172, 0.74);
      font-family: "Space Grotesk", Arial, sans-serif;
      text-transform: uppercase;
      font-size: 9px;
      letter-spacing: 0.06em;
      margin-bottom: 5px;
    }

    .reports-signal-bars {
      display: flex;
      gap: 3px;
      justify-content: flex-end;
    }

    .reports-signal-bars i {
      display: block;
      width: 7px;
      height: 15px;
      background: var(--yellow);
      box-shadow: 0 0 8px rgba(221, 200, 8, 0.35);
    }

    .reports-signal-bars i.low {
      opacity: 0.22;
      box-shadow: none;
    }

    .report-list {
      position: relative;
      z-index: 1;
      display: grid;
      gap: 12px;
    }

    .report-entry {
      position: relative;
      padding: 16px 16px 14px;
      background: linear-gradient(90deg, rgba(27, 33, 23, 0.96), rgba(19, 24, 15, 0.96));
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03), 0 10px 22px rgba(0, 0, 0, 0.2);
      transition: transform 180ms ease, background 180ms ease;
    }

    .report-entry:hover {
      transform: translateY(-2px);
      background: linear-gradient(90deg, rgba(31, 38, 26, 0.98), rgba(22, 29, 18, 0.98));
    }

    .report-entry::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 3px;
      background: rgba(75, 71, 51, 0.75);
    }

    .report-entry--featured::before {
      background: var(--yellow);
      box-shadow: 0 0 12px rgba(221, 200, 8, 0.35);
    }

    .report-entry--legacy {
      background: linear-gradient(90deg, rgba(17, 22, 13, 0.94), rgba(13, 18, 10, 0.96));
      opacity: 0.8;
    }

    .report-entry--muted {
      opacity: 0.9;
    }

    .report-entry-meta {
      margin: 0 0 10px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 10px;
    }

    .report-entry time {
      color: rgba(205, 199, 172, 0.56);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    .report-entry-tag {
      color: rgba(251, 228, 52, 0.7);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 700;
    }

    .report-chip {
      display: inline-block;
      padding: 2px 7px;
      background: var(--yellow);
      color: #2a2400;
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
      font-weight: 800;
    }

    .report-entry h2,
    .report-entry h3 {
      margin: 0;
      font-family: "Space Grotesk", Arial, sans-serif;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: -0.02em;
      line-height: 1.04;
      font-weight: 800;
    }

    .report-entry h2 {
      font-size: clamp(24px, 2.9vw, 40px);
    }

    .report-entry h3 {
      font-size: clamp(20px, 2.2vw, 32px);
    }

    .report-entry p {
      margin: 8px 0 0;
      color: var(--text-muted);
      font-size: clamp(12px, 1.15vw, 16px);
      line-height: 1.55;
      max-width: 74ch;
    }

    .report-entry-footer {
      margin-top: 12px;
      display: flex;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
    }

    .report-mini-meta {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: rgba(205, 199, 172, 0.55);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.05em;
    }

    .report-mini-meta .material-symbols-outlined {
      font-size: 12px;
    }

    .report-link {
      margin-left: auto;
      display: inline-flex;
      align-items: center;
      gap: 4px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      font-weight: 800;
      text-decoration: none;
      white-space: nowrap;
    }

    .report-link .material-symbols-outlined {
      font-size: 14px;
    }

    .report-link:hover {
      text-shadow: 0 0 12px rgba(221, 200, 8, 0.35);
    }

    .reports-hud-grid {
      margin-top: 18px;
      display: grid;
      gap: 10px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reports-hud-card {
      padding: 10px;
      background: linear-gradient(180deg, rgba(27, 33, 23, 0.98), rgba(17, 22, 13, 0.98));
      box-shadow: inset 2px 0 0 rgba(221, 200, 8, 0.34), inset 0 0 0 1px rgba(255, 255, 255, 0.03);
    }

    .reports-hud-card p {
      margin: 0 0 6px;
      color: rgba(205, 199, 172, 0.8);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 9px;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .reports-hud-line {
      width: 100%;
      height: 4px;
      background: rgba(10, 16, 7, 0.9);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
      overflow: hidden;
    }

    .reports-hud-line span {
      display: block;
      width: 0;
      height: 100%;
      background: linear-gradient(90deg, #fff268 0%, var(--yellow) 100%);
      box-shadow: 0 0 10px rgba(221, 200, 8, 0.3);
      transition: width 560ms ease;
    }

    .reports-hud-card strong {
      display: inline-block;
      margin-top: 5px;
      color: var(--yellow);
      font-family: "Space Grotesk", Arial, sans-serif;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    @media (max-width: 940px) {
      .reports-header {
        align-items: flex-start;
        flex-direction: column;
      }

      .reports-signal {
        text-align: left;
      }

      .reports-signal-bars {
        justify-content: flex-start;
      }

      .reports-hud-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (max-width: 720px) {
      .reports-shell {
        padding-top: 14px;
      }

      .reports-bg-word {
        font-size: 58px;
        right: 0;
        top: 18px;
      }

      .report-entry {
        padding: 14px 12px 12px;
      }

      .report-entry-footer {
        gap: 10px;
      }

      .report-link {
        margin-left: 0;
      }
    }

    .report-header {
      font-size: 18px;
    }


