
  :root {
    --bg: #0a0907;
    --bg-2: #14110d;
    --bg-3: #1d1812;
    --line: rgba(212,175,107,.18);
    --gold: #d4af6b;
    --gold-2: #b89456;
    --gold-soft: #e8cf99;
    --red: #c8321f;
    --ink: #f3ead7;
    --ink-2: #c2b69a;
    --dust: #847a68;
  }
  html { scroll-behavior: smooth; }
  html, body { margin: 0; padding: 0; }
  body {
    background:
      radial-gradient(1200px 600px at 75% -200px, rgba(212,175,107,.08), transparent 70%),
      radial-gradient(800px 500px at 0% 30%, rgba(200,50,31,.05), transparent 70%),
      var(--bg);
    color: var(--ink);
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    min-height: 100vh;
    overflow-x: hidden;
  }
  section { scroll-margin-top: 90px; }
  body::before {
    content: "";
    position: fixed; inset: 0;
    pointer-events: none;
    z-index: 1;
    background-image:
      radial-gradient(rgba(212,175,107,.04) 1px, transparent 1px);
    background-size: 3px 3px;
    mix-blend-mode: overlay;
    opacity: .6;
  }
  .display { font-family: "Archivo Black", sans-serif; letter-spacing: -0.01em; }
  .mono { font-family: "JetBrains Mono", ui-monospace, monospace; }
  ::selection { background: var(--gold); color: #000; }
  * { box-sizing: border-box; }
  a { color: inherit; }
  img { display: block; max-width: 100%; }
  #root { position: relative; z-index: 2; }

  /* Reusable */
  .container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }

  .btn {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 14px 22px;
    font-family: "Inter", sans-serif;
    font-size: 13px; font-weight: 600;
    letter-spacing: .12em; text-transform: uppercase;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all .15s ease;
    cursor: pointer;
  }
  .btn-gold {
    background: var(--gold); color: #14110d;
  }
  .btn-gold:hover { background: var(--gold-soft); }
  .btn-ghost {
    background: transparent; color: var(--ink);
    border-color: var(--line);
  }
  .btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

  .eyebrow {
    font-family: "JetBrains Mono", monospace;
    font-size: 11px;
    letter-spacing: .28em;
    text-transform: uppercase;
    color: var(--gold);
  }

  /* Section heading underline */
  .section-head { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
  .section-head .line { flex: 1; height: 1px; background: var(--line); }
  .section-head .num { font-family: "Archivo Black"; color: var(--gold); font-size: 16px; }

  /* Decorative gold corner box (used on cards) */
  .gold-frame {
    position: relative;
    background: var(--bg-2);
    border: 1px solid var(--line);
    transition: border-color .2s ease;
  }
  .gold-frame:hover { border-color: rgba(212,175,107,.45); }
  .gold-frame::before, .gold-frame::after,
  .gold-frame > .corner-tl, .gold-frame > .corner-tr,
  .gold-frame > .corner-bl, .gold-frame > .corner-br {
    content: ""; position: absolute; width: 10px; height: 10px;
    border: 1.5px solid var(--gold);
    pointer-events: none;
  }
  /* Hide bundler loader error banner — secondary script warnings, not user-facing issues */
  #__bundler_err, #__bundler_loading { display: none !important; }

  .gold-frame::before { top: -1px; left: -1px; border-right: 0; border-bottom: 0; }
  .gold-frame::after  { top: -1px; right: -1px; border-left: 0; border-bottom: 0; }
  .gold-frame > .corner-bl { bottom: -1px; left: -1px; border-right: 0; border-top: 0; }
  .gold-frame > .corner-br { bottom: -1px; right: -1px; border-left: 0; border-top: 0; }

  /* Reveal on scroll */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s ease, transform .8s ease; }
  .reveal.in { opacity: 1; transform: translateY(0); }
  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .reveal { opacity: 1; transform: none; transition: none; }
  }

  /* === Mobile responsiveness === */
  @media (max-width: 900px) {
    .container { padding: 0 20px !important; }
    section { padding: 60px 0 !important; }
    /* Collapse all multi-column grids to single column on mobile */
    section [style*="grid-template-columns"] {
      grid-template-columns: 1fr !important;
      gap: 32px !important;
    }
    /* Hero stays balanced */
    h1.display { font-size: clamp(48px, 12vw, 72px) !important; }
    h2.display { font-size: clamp(32px, 7vw, 44px) !important; }
    h3.display { font-size: clamp(24px, 6vw, 32px) !important; }
    /* TopNav hide horizontal nav on mobile, show hamburger instead */
    nav[role="navigation"] { display: none !important; }
    .mobile-burger { display: flex !important; }
    header > .container {
      display: flex !important;
      justify-content: space-between !important;
      align-items: center !important;
      gap: 12px !important;
      padding: 14px 20px !important;
    }
    header .btn { padding: 10px 14px; font-size: 11px; }
    /* Force 2-col stat strips to 2 columns max */
    .stat-grid { grid-template-columns: 1fr 1fr !important; }
  }

  @media (max-width: 560px) {
    section { padding: 48px 0 !important; }
    h1.display { font-size: clamp(40px, 13vw, 60px) !important; }
    .btn { padding: 12px 18px; font-size: 12px; }
  }


html, body { max-width: 100%; overflow-x: clip; }
.project-status-beam {
  display: grid;
  grid-template-columns: minmax(150px, .38fr) minmax(0, 1.62fr);
  width: min(1180px, calc(100% - 40px));
  margin: 22px auto 0;
  border: 1px solid rgba(211, 183, 128, .36);
  background: linear-gradient(105deg, rgba(22, 19, 16, .98), rgba(52, 43, 34, .92));
  box-shadow: 0 18px 55px rgba(0, 0, 0, .28);
}
.project-status-label {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 19px 22px;
  border-right: 1px solid rgba(211, 183, 128, .28);
  color: #f1e7d4;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  white-space: nowrap;
  text-decoration: none;
}
.project-status-label b { margin-left: auto; color: #b99a66; font-size: 9px; letter-spacing: .12em; }
.project-status-label i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c9aa73;
  box-shadow: 0 0 0 5px rgba(201, 170, 115, .12);
}
.project-status-items { display: grid; grid-template-columns: repeat(3, 1fr); }
.project-status-items article {
  min-width: 0;
  padding: 17px 20px;
  border-right: 1px solid rgba(211, 183, 128, .16);
}
.project-status-items article:last-child { border-right: 0; }
.project-status-items small {
  display: block;
  margin-bottom: 7px;
  color: #b99a66;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .13em;
}
.project-status-items strong {
  color: #f5efe6;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}
@media (max-width: 900px) {
  .project-status-beam { grid-template-columns: 1fr; }
  .project-status-label { border-right: 0; border-bottom: 1px solid rgba(211, 183, 128, .28); }
  .project-status-items { grid-template-columns: 1fr; }
  .project-status-items article { border-right: 0; border-bottom: 1px solid rgba(211, 183, 128, .16); }
  .project-status-items article:last-child { border-bottom: 0; }
}
@media (max-width: 1280px) {
  .mobile-burger { display: flex !important; }
  header > .container {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 14px 20px !important;
  }
}

/* === ASKARI News · public message centre === */
.askari-news-centre {
  position: relative;
  padding: 100px 0;
  background:
    linear-gradient(180deg, rgba(10,9,7,.95), rgba(20,17,13,.98)),
    radial-gradient(700px 300px at 85% 10%, rgba(212,175,107,.11), transparent 70%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.news-kicker { display: flex; align-items: center; gap: 14px; margin-bottom: 30px; font: 700 10px/1 "JetBrains Mono", monospace; letter-spacing: .2em; color: var(--gold); }
.news-kicker i { width: 42px; height: 1px; background: var(--gold); }
.news-kicker em { color: var(--dust); font-style: normal; }
.news-heading-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 70px; align-items: end; margin-bottom: 50px; }
.news-heading-grid h2 { margin: 12px 0 0; font-size: clamp(46px, 6vw, 82px); line-height: .92; text-transform: uppercase; }
.news-heading-grid h2 span { color: var(--gold); }
.news-intro { max-width: 620px; margin: 0 0 4px; color: var(--ink-2); font-size: 17px; }
.news-location-board { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--line); margin-bottom: 26px; }
.news-location-board article { position: relative; padding: 26px; background: rgba(20,17,13,.82); border-right: 1px solid var(--line); }
.news-location-board article:last-child { border-right: 0; }
.news-location-board article.active::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--gold); }
.news-location-board small { color: var(--gold); font: 700 9px/1 "JetBrains Mono", monospace; letter-spacing: .16em; }
.news-location-board h3 { margin: 12px 0 7px; font-family: "Archivo Black", sans-serif; font-size: 25px; text-transform: uppercase; }
.news-location-board p { margin: 0; color: var(--ink-2); font-size: 13px; }
.news-board-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(320px, .7fr); gap: 26px; }
.news-feed, .news-next { border: 1px solid var(--line); background: rgba(20,17,13,.86); }
.news-panel-head { display: flex; justify-content: space-between; gap: 20px; padding: 16px 20px; border-bottom: 1px solid var(--line); font: 700 9px/1 "JetBrains Mono", monospace; letter-spacing: .15em; color: var(--gold); }
.news-panel-head b { color: var(--dust); font-weight: 600; }
.news-feed article { display: grid; grid-template-columns: 110px minmax(0, 1fr) auto; gap: 20px; align-items: start; padding: 24px 20px; border-bottom: 1px solid rgba(212,175,107,.12); }
.news-feed article:last-child { border-bottom: 0; }
.news-feed time { color: var(--gold); font: 700 10px/1.4 "JetBrains Mono", monospace; }
.news-feed h3 { margin: 0 0 6px; font-size: 16px; text-transform: uppercase; letter-spacing: .04em; }
.news-feed p { margin: 0; color: var(--ink-2); font-size: 13px; }
.news-state { padding: 6px 8px; border: 1px solid rgba(212,175,107,.35); color: var(--gold); font: 700 8px/1 "JetBrains Mono", monospace; letter-spacing: .12em; white-space: nowrap; }
.news-state.pending { color: var(--ink-2); border-color: rgba(194,182,154,.25); }
.news-next ol { list-style: none; margin: 0; padding: 8px 20px; }
.news-next li { display: grid; grid-template-columns: 38px 1fr; gap: 14px; padding: 19px 0; border-bottom: 1px solid rgba(212,175,107,.12); }
.news-next li > span { color: var(--gold); font: 700 12px/1.4 "JetBrains Mono", monospace; }
.news-next strong { display: block; margin-bottom: 5px; font-size: 13px; text-transform: uppercase; }
.news-next small { color: var(--ink-2); font-size: 12px; }
.news-social-link { display: block; padding: 18px 20px; color: var(--bg); background: var(--gold); text-decoration: none; font: 800 10px/1 "JetBrains Mono", monospace; letter-spacing: .12em; text-align: center; }
.news-social-link:hover { background: var(--gold-soft); }
@media (max-width: 900px) {
  .news-heading-grid, .news-location-board, .news-board-grid { grid-template-columns: 1fr; }
  .news-heading-grid { gap: 24px; }
  .news-location-board article { border-right: 0; border-bottom: 1px solid var(--line); }
  .news-location-board article:last-child { border-bottom: 0; }
  .news-feed article { grid-template-columns: 1fr; gap: 10px; }
  .news-state { justify-self: start; }
  .project-status-label b { display: none; }
}
