  :root {
    --bg: #0a0a0c;
    --bg-elevated: #111114;
    --bg-card: #16161a;
    --surface: #1c1c22;
    --border: rgba(255,255,255,0.06);
    --text-primary: #f0efe9;
    --text-secondary: rgba(240,239,233,0.5);
    --text-tertiary: rgba(240,239,233,0.3);
    --accent: #00e59b;
    --accent-dim: rgba(0,229,155,0.15);
    --accent-glow: rgba(0,229,155,0.25);
    --warm: #f5c542;
    --red: #ff4d4d;
    --blue: #4da6ff;
    --display: 'Instrument Serif', Georgia, serif;
    --sans: 'Outfit', sans-serif;
    --mono: 'Space Mono', monospace;
  }
  * { margin: 0; padding: 0; box-sizing: border-box; }
  body { background: var(--bg); color: var(--text-primary); font-family: var(--sans); line-height: 1.6; -webkit-font-smoothing: antialiased; }
  ::selection { background: var(--accent); color: var(--bg); }

  /* ── TICKER ── */
  .ticker-bar { background: var(--accent); color: var(--bg); padding: 7px 0; overflow: hidden; position: sticky; top: 0; z-index: 100; }
  .ticker-track { display: flex; animation: ticker 60s linear infinite; white-space: nowrap; }
  .ticker-item { font-family: var(--sans); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.04em; padding: 0 2.5rem; flex-shrink: 0; }
  .ticker-item .label { font-weight: 800; text-transform: uppercase; margin-right: 0.5rem; background: var(--bg); color: var(--accent); padding: 1px 6px; font-size: 0.6rem; letter-spacing: 0.1em; vertical-align: 1px; }
  @keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

  /* ── MASTHEAD ── */
  .masthead { text-align: center; padding: 2.5rem 1.5rem 2rem; border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
  .masthead::before { content: ''; position: absolute; top: -50%; left: 50%; transform: translateX(-50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%); opacity: 0.15; pointer-events: none; }
  .masthead-meta { font-family: var(--mono); font-size: 0.62rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 1rem; position: relative; }
  .masthead-logo { position: relative; display: inline-block; margin-bottom: 0.5rem; }
  .masthead-logo h1 { font-family: var(--sans); font-size: clamp(2.5rem, 7vw, 5rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1; background: linear-gradient(135deg, var(--text-primary) 0%, var(--accent) 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .masthead-logo .dot { display: inline-block; width: 10px; height: 10px; background: var(--accent); border-radius: 50%; margin-left: 2px; vertical-align: super; animation: pulse 2s ease-in-out infinite; box-shadow: 0 0 12px var(--accent-glow); }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }
  .masthead-tagline { font-family: var(--display); font-style: italic; font-size: 1.05rem; color: var(--text-secondary); margin-bottom: 0.8rem; position: relative; }
  .masthead-rule { width: 40px; height: 2px; background: var(--accent); margin: 0 auto; box-shadow: 0 0 10px var(--accent-glow); }

  /* ── NAV ── */
  .nav-bar { display: flex; justify-content: center; gap: 0; padding: 0; border-bottom: 1px solid var(--border); background: rgba(10,10,12,0.9); position: sticky; top: 31px; z-index: 99; overflow-x: auto; backdrop-filter: blur(12px); }
  .nav-bar a { font-family: var(--sans); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none; color: var(--text-secondary); padding: 0.9rem 1.4rem; position: relative; transition: color 0.25s; white-space: nowrap; }
  .nav-bar a::after { content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 2px; background: var(--accent); transition: all 0.3s; transform: translateX(-50%); box-shadow: 0 0 8px var(--accent-glow); }
  .nav-bar a:hover { color: var(--accent); }
  .nav-bar a:hover::after { width: 100%; }
  .nav-bar a.active { color: var(--accent); }
  .nav-bar a.active::after { width: 100%; }

  /* ── CONTAINER ── */
  .container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

  /* ── DATA STRIP ── */
  .data-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 2rem 0; background: var(--bg-elevated); }
  .data-cell { padding: 1.2rem; text-align: center; border-right: 1px solid var(--border); transition: background 0.2s; }
  .data-cell:last-child { border-right: none; }
  .data-cell:hover { background: var(--bg-card); }
  .data-cell .data-label { font-family: var(--sans); font-size: 0.58rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-tertiary); margin-bottom: 0.3rem; }
  .data-cell .data-value { font-family: var(--mono); font-size: 1.2rem; font-weight: 700; letter-spacing: -0.02em; }
  .data-cell .data-change { font-family: var(--mono); font-size: 0.68rem; margin-top: 0.2rem; font-weight: 700; }
  .data-cell .data-change.up { color: var(--accent); }
  .data-cell .data-change.down { color: var(--red); }
  .data-cell .data-change.neutral { color: var(--warm); }

  /* ── BRIEFING CARD ── */
  .briefing {
    border: 1px solid var(--border);
    margin-bottom: 2rem;
    transition: border-color 0.3s;
    position: relative;
    overflow: hidden;
  }
  .briefing:hover { border-color: rgba(255,255,255,0.1); }
  .briefing-header {
    display: flex;
    align-items: flex-start;
    gap: 0;
  }
  .briefing-image {
    width: 420px;
    min-height: 320px;
    flex-shrink: 0;
    background: var(--surface);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-tertiary);
    font-family: var(--mono);
    font-size: 0.65rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }
  .briefing-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 50%, var(--accent-dim));
    pointer-events: none;
  }
  .briefing-headline {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .briefing-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
  }
  .briefing-tag .tag-label {
    font-family: var(--sans);
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 0.25rem 0.7rem;
  }
  .briefing-tag .tag-label.conflict { background: var(--red); color: white; }
  .briefing-tag .tag-label.tech { background: var(--accent); color: var(--bg); }
  .briefing-tag .tag-label.music { background: var(--blue); color: var(--bg); }
  .briefing-tag .tag-label.markets { background: var(--warm); color: var(--bg); }
  .briefing-tag .source-count {
    font-family: var(--mono);
    font-size: 0.58rem;
    color: var(--text-tertiary);
    letter-spacing: 0.05em;
  }
  .briefing-headline h2 {
    font-family: var(--display);
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0.8rem;
  }
  .briefing-headline .deck {
    font-family: var(--sans);
    font-size: 0.92rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
  }
  .briefing-meta {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--text-tertiary);
  }
  .briefing-meta .time { color: var(--accent); }

  /* ── BRIEFING BODY ── */
  .briefing-body {
    padding: 0 2.5rem 2.5rem;
    border-top: 1px solid var(--border);
  }

  /* Key points */
  .key-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin: 0 -2.5rem;
    padding: 1.5rem 2.5rem;
    background: var(--bg-elevated);
    border-bottom: 1px solid var(--border);
    margin-bottom: 1.5rem;
  }
  .key-point {
    padding: 0 1.5rem;
    border-right: 1px solid var(--border);
  }
  .key-point:first-child { padding-left: 0; }
  .key-point:last-child { border-right: none; padding-right: 0; }
  .key-point .kp-label {
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 0.4rem;
  }
  .key-point .kp-label.red { color: var(--red); }
  .key-point .kp-label.warm { color: var(--warm); }
  .key-point .kp-label.blue { color: var(--blue); }
  .key-point .kp-text {
    font-family: var(--sans);
    font-size: 0.82rem;
    font-weight: 400;
    line-height: 1.55;
    color: var(--text-primary);
  }

  /* Synthesis paragraphs */
  .synthesis {
    columns: 2;
    column-gap: 2.5rem;
    column-rule: 1px solid var(--border);
  }
  .synthesis p {
    font-family: var(--sans);
    font-size: 0.88rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    break-inside: avoid;
  }
  .synthesis p:last-child { margin-bottom: 0; }
  .synthesis .source-tag {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.04em;
    white-space: nowrap;
  }
  .synthesis .source-tag.red { color: var(--red); }
  .synthesis .source-tag.warm { color: var(--warm); }
  .synthesis .source-tag.blue { color: var(--blue); }
  .synthesis .highlight {
    color: var(--text-primary);
    font-weight: 500;
  }

  /* Source bar */
  .source-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .source-bar .sb-label {
    font-family: var(--mono);
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--text-tertiary);
    padding: 0.3rem 0;
    margin-right: 0.5rem;
  }
  .source-pill {
    font-family: var(--sans);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 0.25rem 0.7rem;
    border-radius: 2px;
    transition: all 0.2s;
    cursor: pointer;
  }
  .source-pill:hover {
    border-color: var(--accent);
    color: var(--accent);
  }

  /* ── QUOTE CALLOUT ── */
  .quote-callout {
    background: var(--bg-elevated);
    border-left: 3px solid var(--warm);
    padding: 1.5rem 2rem;
    margin: 1.5rem 0;
    break-inside: avoid;
  }
  .quote-callout blockquote {
    font-family: var(--display);
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
  }
  .quote-callout .quote-attr {
    font-family: var(--mono);
    font-size: 0.6rem;
    color: var(--text-tertiary);
  }

  /* ── SECTION DIVIDER ── */
  .section-divider {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
  }
  .section-divider .sd-line { flex: 1; height: 1px; background: var(--border); }
  .section-divider .sd-label {
    font-family: var(--mono);
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-tertiary);
  }

  /* ── FOOTER ── */
  footer { background: var(--bg-elevated); color: var(--text-primary); padding: 3rem 1.5rem 1.5rem; margin-top: 3rem; border-top: 1px solid var(--border); }
  .footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
  .footer-brand h3 { font-family: var(--sans); font-size: 1.4rem; font-weight: 900; letter-spacing: -0.03em; margin-bottom: 0.5rem; background: linear-gradient(135deg, var(--text-primary), var(--accent)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .footer-brand p { font-family: var(--sans); font-size: 0.78rem; font-weight: 300; color: var(--text-tertiary); line-height: 1.7; max-width: 300px; }
  .footer-col h4 { font-family: var(--sans); font-size: 0.6rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 1rem; color: var(--accent); }
  .footer-col a { display: block; font-family: var(--sans); font-size: 0.78rem; font-weight: 400; color: var(--text-tertiary); text-decoration: none; padding: 0.25rem 0; transition: color 0.2s; }
  .footer-col a:hover { color: var(--accent); }
  .footer-bottom { max-width: 1280px; margin: 1rem auto 0; font-family: var(--mono); font-size: 0.58rem; color: var(--text-tertiary); text-align: center; letter-spacing: 0.08em; }
  .footer-bottom .grine-mark { color: var(--accent); }

  /* ── ANIMATIONS ── */
  .fade-up { opacity: 0; transform: translateY(16px); animation: fadeUp 0.5s ease forwards; }
  @keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

  /* ── RESPONSIVE ── */
  @media (max-width: 1000px) {
    .briefing-header { flex-direction: column; }
    .briefing-image { width: 100%; min-height: 200px; }
    .synthesis { columns: 1; }
    .key-points { grid-template-columns: 1fr; }
    .key-point { padding: 0.8rem 0; border-right: none; border-bottom: 1px solid var(--border); }
    .key-point:last-child { border-bottom: none; }
  }
  @media (max-width: 900px) {
    .data-strip { grid-template-columns: repeat(2, 1fr); }
    .data-cell:nth-child(odd) { border-right: 1px solid var(--border); }
    .data-cell:last-child { border-right: none; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 600px) {
    .data-strip { grid-template-columns: 1fr; }
    .data-cell { border-right: none !important; border-bottom: 1px solid var(--border); }
    .footer-grid { grid-template-columns: 1fr; }
    .briefing-headline { padding: 1.5rem; }
    .briefing-body { padding: 0 1.5rem 1.5rem; }
    .key-points { padding: 1.5rem; margin: 0 -1.5rem; }
  }
