/* =============================================================
   INDICORE FINANCIAL WIRE — newsroom interface
   live data journalism · cyber media · editorial OS
   ============================================================= */

:root {
  --bg: #0A0B0E;
  --bg-2: #101218;
  --paper: #14171F;
  --paper-2: #1C2030;
  --line: #232838;
  --line-2: #2E3548;
  --text: #E8EBF0;
  --text-dim: #95A0B5;
  --text-mute: #5F6A82;
  --cyan: #6FE0EA;
  --blue: #7AA0FF;
  --signal: #4C7FE0;
  --red: #FF5A6E;
  --green: #5EE0A0;
  --amber: #FFC267;
  --steel: #8B97AE;

  --font-display: "Archivo", "Inter", system-ui, sans-serif;
  --font-cond: "Archivo Narrow", "Archivo", "Inter", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --font-mono: "JetBrains Mono", "SF Mono", ui-monospace, monospace;
  --font-serif: "Source Serif 4", "Georgia", serif;

  --nav-h: 64px;
  --ticker-h: 40px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img, svg, iframe { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

/* ============================================================
   ANIMATED BACKGROUND
   ============================================================ */
body::before {
  content: "";
  position: fixed; inset: 0;
  background-image:
    linear-gradient(to right, rgba(95, 106, 130, 0.04) 1px, transparent 1px);
  background-size: 80px 100%;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 80% 0%, rgba(122, 160, 255, 0.06), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader {
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 100000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 24px;
  transition: opacity .6s ease, visibility .6s ease;
}
.loader.hide { opacity: 0; visibility: hidden; }
.loader__pre {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.32em;
  color: var(--cyan);
  text-transform: uppercase;
}
.loader__big {
  font-family: var(--font-display);
  font-size: clamp(56px, 10vw, 140px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 1;
  color: var(--text);
}
.loader__big i { font-style: italic; color: var(--cyan); }
.loader__bar {
  width: 320px; height: 2px;
  background: rgba(255,255,255,.06);
  overflow: hidden;
  position: relative;
}
.loader__bar::after {
  content: ""; position: absolute; inset: 0;
  background: var(--cyan);
  animation: lb 1.5s ease-out forwards;
  transform-origin: left;
}
@keyframes lb { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.loader__meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ============================================================
   PROGRESS
   ============================================================ */
.progress {
  position: fixed; top: 0; left: 0; right: 0;
  height: 2px;
  z-index: 9100;
  pointer-events: none;
}
.progress__b {
  height: 100%;
  background: var(--cyan);
  width: 0;
  box-shadow: 0 0 12px var(--cyan);
  transition: width .1s linear;
}

/* ============================================================
   NAV / HEADER
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: rgba(10, 11, 14, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid var(--line);
  z-index: 9000;
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0 30px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 900;
  letter-spacing: -0.025em;
  white-space: nowrap;
}
.brand .mark {
  width: 32px; height: 32px;
  background: var(--cyan);
  position: relative;
  flex-shrink: 0;
  transform: rotate(45deg);
}
.brand .mark::after {
  content: "";
  position: absolute;
  inset: 7px;
  background: var(--bg);
}
.brand .name { line-height: 1; }
.brand .name span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--text-mute);
  letter-spacing: 0.24em;
  text-transform: uppercase;
  margin-top: 4px;
}

.nav__list {
  display: flex;
  gap: 26px;
  font-family: var(--font-cond);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  margin-left: 20px;
}
.nav__list a {
  position: relative;
  padding: 6px 0;
  color: var(--text-dim);
  transition: color .2s ease;
}
.nav__list a::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--cyan);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__list a:hover, .nav__list a.is-on { color: var(--text); }
.nav__list a:hover::after, .nav__list a.is-on::after { transform: scaleX(1); }
.nav__live {
  margin-left: auto;
  display: flex; align-items: center; gap: 14px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.nav__live .on {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--red);
  font-weight: 600;
}
.nav__live .on::before {
  content: ""; width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.nav__live .time { color: var(--text-dim); }

.burger {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-2);
  position: relative;
  margin-right: 8px;
}
.burger span {
  position: absolute;
  left: 10px; right: 10px; height: 1px;
  background: var(--text);
  transition: transform .3s ease, opacity .3s ease;
}
.burger span:nth-child(1) { top: 14px; }
.burger span:nth-child(2) { top: 19px; }
.burger span:nth-child(3) { top: 24px; }
.burger.is-on span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
.burger.is-on span:nth-child(2) { opacity: 0; }
.burger.is-on span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

.mnav {
  position: fixed; inset: var(--nav-h) 0 0 0;
  background: var(--bg);
  z-index: 8500;
  padding: 30px;
  transform: translateX(100%);
  transition: transform .35s cubic-bezier(.7,.1,.2,1);
  display: flex; flex-direction: column;
}
.mnav.is-on { transform: translateX(0); }
.mnav a {
  font-family: var(--font-display);
  font-size: clamp(28px, 6vw, 44px);
  font-weight: 800;
  letter-spacing: -0.025em;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  color: var(--text);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  height: var(--ticker-h);
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  z-index: 8900;
  display: flex;
  align-items: center;
  overflow: hidden;
  font-family: var(--font-mono);
  font-size: 12.5px;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.ticker__lbl {
  flex-shrink: 0;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  background: var(--cyan);
  color: var(--bg);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
}
.ticker__lane {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  width: max-content;
  animation: scroll 50s linear infinite;
  padding-left: 32px;
}
.ticker__lane span.tag {
  color: var(--cyan);
  font-weight: 600;
}
.ticker__lane b { color: var(--text); font-weight: 500; }
.ticker__lane .up { color: var(--green); }
.ticker__lane .down { color: var(--red); }
.ticker__lane .sep { color: var(--text-mute); }
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   MAIN
   ============================================================ */
.wrap {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
}
.app { padding-top: calc(var(--nav-h) + var(--ticker-h)); position: relative; z-index: 1; }

/* ============================================================
   PAGE HEAD
   ============================================================ */
.ph {
  padding: 70px 0 50px;
  border-bottom: 1px solid var(--line);
}
.ph__top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.ph__top .live {
  color: var(--red);
  padding: 3px 10px;
  border: 1px solid var(--red);
  font-weight: 600;
  letter-spacing: 0.18em;
}
.ph__top .live::before {
  content: "● ";
}
.ph h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(46px, 7vw, 108px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.92;
}
.ph h1 i { font-style: italic; color: var(--cyan); }
.ph__sub {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-top: 30px;
}
.ph__sub p {
  margin: 0;
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.4;
  color: var(--text-dim);
  max-width: 60ch;
}
.ph__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  min-width: 280px;
  justify-content: flex-end;
}
.ph__meta span {
  padding: 5px 10px;
  border: 1px solid var(--line);
}
.ph__meta b { color: var(--text); font-weight: 600; }

/* ============================================================
   SECTIONS
   ============================================================ */
.sec { padding: 70px 0; position: relative; }
.sec--tight { padding: 50px 0; }
.sec--top { padding-top: 40px; }

.sec__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 36px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.sec__head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
}
.sec__head h2 i { color: var(--cyan); font-style: italic; }
.sec__head .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--cyan);
  text-transform: uppercase;
}
.sec__head .more {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.sec__head .more::after { content: " →"; color: var(--cyan); }

/* ============================================================
   HERO SPLIT
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 40px;
  align-items: stretch;
}
.hero__lead {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 40px;
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
  display: flex;
  flex-direction: column;
}
.hero__lead .stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__lead .stamp::before { content: "● "; }
.hero__lead h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 50px);
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.04;
}
.hero__lead p {
  margin: 22px 0 0;
  font-family: var(--font-serif);
  color: var(--text-dim);
  font-size: 17px;
  line-height: 1.55;
  max-width: 60ch;
}
.hero__lead .by {
  margin-top: auto;
  padding-top: 30px;
  display: flex; gap: 18px; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.1em;
  border-top: 1px dashed var(--line);
  margin-top: 30px;
  padding-top: 22px;
}
.hero__lead .by b { color: var(--text); font-weight: 500; }

.hero__side {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hero__minor {
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--paper);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.hero__minor:hover { border-color: var(--cyan); }
.hero__minor .meta {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--cyan);
  text-transform: uppercase;
}
.hero__minor h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.015em;
}
.hero__minor p { margin: 0; color: var(--text-dim); font-size: 14px; line-height: 1.5; }
.hero__minor .by {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}

/* ============================================================
   ARTICLE GRID
   ============================================================ */
.articles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.article {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  transition: background .25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.article:nth-child(3n) { border-right: none; }
.article:hover { background: var(--bg-2); }
.article__cat {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--cyan);
  text-transform: uppercase;
}
.article h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.article p {
  margin: 0;
  color: var(--text-dim);
  font-size: 14.5px;
  line-height: 1.5;
}
.article__by {
  margin-top: auto;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
  padding-top: 12px;
  border-top: 1px dashed var(--line);
}
.article__by .more { color: var(--cyan); }

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
}
.stat {
  padding: 30px 26px;
  border-right: 1px solid var(--line);
}
.stat:last-child { border-right: none; }
.stat__l {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  color: var(--text-mute);
  text-transform: uppercase;
}
.stat__v {
  font-family: var(--font-display);
  font-size: clamp(38px, 4.5vw, 64px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  margin: 12px 0 8px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.stat__v .small { font-size: .45em; color: var(--text-mute); font-weight: 600; }
.stat__v .cy { color: var(--cyan); }
.stat__c {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--text-dim);
  letter-spacing: 0.06em;
}

/* ============================================================
   LIVE PANEL
   ============================================================ */
.panel {
  background: var(--paper);
  border: 1px solid var(--line);
  position: relative;
}
.panel__h {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.panel__h b { color: var(--text); font-weight: 500; }
.panel__b { padding: 20px 22px; }

/* ============================================================
   FEED LIST
   ============================================================ */
.feed { display: flex; flex-direction: column; }
.feed__i {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 16px;
  align-items: start;
  padding: 14px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 13.5px;
}
.feed__i:last-child { border-bottom: none; }
.feed__t { font-family: var(--font-mono); font-size: 11px; color: var(--cyan); letter-spacing: 0.06em; padding-top: 2px; }
.feed__msg { color: var(--text-dim); line-height: 1.5; }
.feed__msg b { color: var(--text); font-weight: 500; }
.feed__tag {
  font-family: var(--font-mono); font-size: 9.5px;
  padding: 3px 8px;
  border: 1px solid var(--line-2);
  color: var(--text-mute);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.feed__tag.cy { color: var(--cyan); border-color: rgba(111,224,234,.3); }
.feed__tag.bl { color: var(--blue); border-color: rgba(122,160,255,.3); }
.feed__tag.gn { color: var(--green); border-color: rgba(94,224,160,.3); }
.feed__tag.am { color: var(--amber); border-color: rgba(255,194,103,.3); }
.feed__tag.rd { color: var(--red); border-color: rgba(255,90,110,.3); }

/* ============================================================
   FEATURED STORIES — magazine layout
   ============================================================ */
.feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.feature__main {
  padding: 36px;
  border-right: 1px solid var(--line);
  background: linear-gradient(180deg, var(--paper) 0%, var(--bg) 100%);
}
.feature__side { padding: 26px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); display: flex; flex-direction: column; }
.feature__side:nth-last-child(2) { border-bottom: none; }
.feature__side:last-child { border-right: none; }
.feature__main h2 {
  margin: 18px 0 16px;
  font-family: var(--font-display);
  font-size: clamp(28px, 3.4vw, 46px);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.02;
}
.feature__main p { font-family: var(--font-serif); color: var(--text-dim); font-size: 16px; line-height: 1.55; margin: 0; }
.feature__side h4 {
  margin: 12px 0 8px;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.18;
}
.feature__side p { margin: 0; color: var(--text-dim); font-size: 13.5px; line-height: 1.5; }

/* ============================================================
   TIMELINE
   ============================================================ */
.tlx {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 0;
}
.tlx__y {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
}
.tlx__y span {
  display: block;
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--cyan);
  letter-spacing: 0.18em;
  margin-top: 6px;
  text-transform: uppercase;
}
.tlx__c {
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}
.tlx__c h5 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.015em;
}
.tlx__c p { margin: 0; color: var(--text-dim); font-size: 14.5px; line-height: 1.5; max-width: 60ch; }

/* ============================================================
   CHART
   ============================================================ */
.chart { position: relative; height: 320px; width: 100%; }
.chart svg { width: 100%; height: 100%; }

/* ============================================================
   DATA TABLE
   ============================================================ */
.dt { width: 100%; border-collapse: collapse; font-size: 13.5px; }
.dt th, .dt td {
  padding: 14px 22px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.dt th {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-mute);
  background: var(--bg-2);
  font-weight: 500;
}
.dt td:first-child { font-family: var(--font-display); font-weight: 700; font-size: 15.5px; color: var(--text); letter-spacing: -0.005em; }
.dt tr:last-child td { border-bottom: none; }
.dt tr:hover td { background: rgba(111,224,234,.03); }

/* ============================================================
   PROGRESS BAR ROWS
   ============================================================ */
.bars { display: flex; flex-direction: column; }
.bar-row {
  display: grid;
  grid-template-columns: 28px 1fr 100px 80px;
  align-items: center;
  gap: 14px;
  padding: 12px 22px;
  border-bottom: 1px solid var(--line);
}
.bar-row:last-child { border-bottom: none; }
.bar-row .lbl { color: var(--text-dim); font-size: 13.5px; }
.bar-row .v { color: var(--text); font-family: var(--font-mono); text-align: right; font-size: 12.5px; }
.bar-row .br { height: 4px; background: rgba(255,255,255,.05); position: relative; overflow: hidden; }
.bar-row .br::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, var(--signal), var(--cyan)); width: var(--w, 50%); }
.dot {
  width: 8px; height: 8px;
  display: inline-block;
}
.dot.cy { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.dot.bl { background: var(--blue); }
.dot.gn { background: var(--green); }
.dot.am { background: var(--amber); }
.dot.rd { background: var(--red); }
.dot.mu { background: var(--text-mute); }

/* ============================================================
   QUOTE
   ============================================================ */
.qbox {
  padding: 50px 40px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(111,224,234,.04), transparent);
  position: relative;
}
.qbox::before {
  content: "“";
  position: absolute;
  top: 0; left: 30px;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 120px;
  color: var(--cyan);
  line-height: 1;
  background: var(--bg);
  padding: 0 8px;
}
.qbox p {
  margin: 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.32;
  color: var(--text);
  max-width: 60ch;
}
.qbox cite {
  display: block;
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-mute);
  font-style: normal;
}

/* ============================================================
   ARCHIVE GRID
   ============================================================ */
.archive {
  display: grid;
  grid-template-columns: 200px 1fr 220px 100px;
  border-top: 1px solid var(--line);
}
.archive__row { display: contents; }
.archive__row > div {
  padding: 16px 22px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  display: flex; align-items: center;
}
.archive__row > div:first-child { font-family: var(--font-mono); font-size: 12px; color: var(--cyan); letter-spacing: 0.06em; }
.archive__row > div.t { font-family: var(--font-display); font-weight: 700; color: var(--text); font-size: 15px; letter-spacing: -0.01em; }
.archive__row > div.a { color: var(--text-dim); font-size: 13px; font-family: var(--font-mono); letter-spacing: 0.04em; }
.archive__row > div.n { justify-content: flex-end; color: var(--text-mute); font-family: var(--font-mono); font-size: 11px; }

/* ============================================================
   FILTERS BAR
   ============================================================ */
.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.filters span {
  padding: 8px 14px;
  border: 1px solid var(--line);
  color: var(--text-dim);
  background: var(--bg-2);
  cursor: pointer;
  transition: border-color .2s ease, color .2s ease;
}
.filters span:hover { border-color: var(--cyan); color: var(--cyan); }
.filters span.is-on { background: var(--cyan); color: var(--bg); border-color: var(--cyan); font-weight: 700; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  border: 1px solid var(--text);
  color: var(--text);
  background: transparent;
  transition: all .2s ease;
}
.btn:hover { background: var(--text); color: var(--bg); }
.btn--cy { border-color: var(--cyan); color: var(--cyan); }
.btn--cy:hover { background: var(--cyan); color: var(--bg); }
.btn--solid { background: var(--cyan); color: var(--bg); border-color: var(--cyan); }
.btn--solid:hover { background: var(--text); color: var(--bg); border-color: var(--text); }

/* ============================================================
   FORM
   ============================================================ */
.form { display: grid; gap: 14px; max-width: 540px; }
.form__row { display: grid; gap: 6px; }
.form label {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-mute);
}
.form input, .form textarea {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 12px 14px;
  color: var(--text);
  font: inherit;
  font-size: 14px;
  width: 100%;
  transition: border-color .2s ease;
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--cyan); }
.form textarea { resize: vertical; min-height: 120px; }

/* ============================================================
   MAP
   ============================================================ */
.map {
  border: 1px solid var(--line);
  min-height: 480px;
  overflow: hidden;
}
.map iframe {
  width: 100%; height: 100%; min-height: 480px;
  border: 0;
  filter: invert(0.9) hue-rotate(180deg) contrast(.85) saturate(.6);
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  border-top: 1px solid var(--line);
  padding: 60px 0 28px;
  background: var(--bg-2);
  margin-top: 60px;
}
.footer__t {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid var(--line);
}
.footer__l h5 { font-family: var(--font-mono); font-size: 10.5px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); margin: 0 0 14px; font-weight: 500; }
.footer__l ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.footer__l a { color: var(--text-dim); font-size: 14px; transition: color .2s ease; }
.footer__l a:hover { color: var(--cyan); }
.footer__brand h5 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--text);
}
.footer__brand p { margin: 0; color: var(--text-mute); font-size: 13px; max-width: 40ch; line-height: 1.55; }
.footer__b {
  margin-top: 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 20px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-mute);
  letter-spacing: 0.06em;
}
.soc { display: flex; gap: 10px; }
.soc a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-2);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim);
  transition: all .2s ease;
}
.soc a:hover { border-color: var(--cyan); color: var(--cyan); transform: translateY(-2px); }
.soc svg { width: 14px; height: 14px; fill: currentColor; }

/* ============================================================
   COOKIE
   ============================================================ */
.cookie {
  position: fixed;
  bottom: 18px; left: 18px;
  max-width: 420px;
  background: var(--paper);
  border: 1px solid var(--line-2);
  padding: 16px 18px;
  z-index: 8000;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  transform: translateY(160%);
  transition: transform .5s cubic-bezier(.2,.7,.2,1);
}
.cookie.is-on { transform: translateY(0); }
.cookie p { margin: 0; font-size: 13px; line-height: 1.5; color: var(--text-dim); }
.cookie p b { color: var(--cyan); }
.cookie__ok {
  padding: 8px 14px;
  background: var(--cyan);
  color: var(--bg);
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ============================================================
   REVEAL
   ============================================================ */
.r {
  opacity: 1;
  transform: translateY(28px);
  transition: opacity .55s ease, transform .8s cubic-bezier(.2,.7,.2,1);
}
.r.in { transform: translateY(0); }

/* ============================================================
   MOBILE
   ============================================================ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; gap: 16px; }
  .feature { grid-template-columns: 1fr; }
  .feature__main { border-right: none; border-bottom: 1px solid var(--line); }
  .feature__side { border-right: none; }
  .articles { grid-template-columns: repeat(2, 1fr); }
  .article:nth-child(3n) { border-right: 1px solid var(--line); }
  .article:nth-child(2n) { border-right: none; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2n) { border-right: none; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .footer__t { grid-template-columns: 1fr 1fr; }
  .archive { grid-template-columns: 1fr; }
  .archive__row > div { border-right: none; }
}
@media (max-width: 760px) {
  .wrap { padding: 0 16px; }
  .nav { padding: 0 16px; gap: 12px; }
  .nav__list { display: none; }
  .nav__live .time { display: none; }
  .burger { display: block; }
  .ticker__lbl { display: none; }
  .ph { padding: 40px 0 30px; }
  .ph__sub { flex-direction: column; align-items: flex-start; }
  .ph__meta { justify-content: flex-start; }
  .sec { padding: 50px 0; }
  .articles { grid-template-columns: 1fr; }
  .article { border-right: none !important; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-right: none !important; border-bottom: 1px solid var(--line); }
  .stat:last-child { border-bottom: none; }
  .tlx { grid-template-columns: 90px 1fr; }
  .tlx__y { font-size: 22px; padding: 16px; }
  .tlx__c { padding: 16px; }
  .footer__t { grid-template-columns: 1fr; }
  .footer__b { grid-template-columns: 1fr; text-align: center; }
  .soc { justify-self: center; }
  .cookie { left: 12px; right: 12px; bottom: 12px; max-width: none; }
}
