/* ═══════════════════════════════════════════════════
   LAYOUT UTILITIES
═══════════════════════════════════════════════════ */
.inner  { max-width: 1280px; margin: 0 auto; padding: 0 0px; }
.section { padding: 72px 24px; }
.sec-label { font-family: var(--FD); font-weight: 700; font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.sec-title { font-family: var(--FD); font-weight: 900; font-size: clamp(34px, 4.5vw, 56px); line-height: 1; letter-spacing: -1px; text-transform: uppercase; margin-bottom: 8px; }
.sec-sub   { font-size: 15px; color: var(--g500); margin-bottom: 40px; max-width: 520px; }
.divider   { height: 1px; background: var(--border); }
.reveal    { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.visible { opacity: 1; transform: none; }



/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
.hero { background: var(--black); color: var(--white); padding: 64px 24px 0; position: relative; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, transparent, transparent 79px, rgba(255,255,255,.018) 79px, rgba(255,255,255,.018) 80px);
  pointer-events: none;
}
.hero-inner { max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.hero-grid { display: grid; grid-template-columns: 1fr 420px; gap: 48px; align-items: start; padding-bottom: 56px; }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(237,32,36,.15); border: 1px solid rgba(237,32,36,.35);
  color: #ff7077; font-family: var(--FD); font-weight: 700; font-size: 12px;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 13px;
  border-radius: 3px; margin-bottom: 20px;
}
.hero-badge-dot { width: 7px; height: 7px; background: var(--red); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.65)} }

.hero-title { font-family: var(--FD); font-weight: 600; font-size: clamp(45px, 7.5vw, 90px); line-height: .88; letter-spacing: -2.5px; text-transform: uppercase; margin-bottom: 28px; }
.hero-title em { font-style: normal; color: var(--red); }
.hero-title .sub { font-size: clamp(20px, 3vw, 38px); font-weight: 600; letter-spacing: 0; text-transform: none; display: block; color: var(--g300); margin-bottom: 6px; }

.hero-desc { font-size: 15px; line-height: 1.7; color: var(--g300); max-width: 480px; margin-bottom: 28px; }
.hero-cta-row { display: flex; align-items: center; gap: 16px; }
.btn-primary { display: inline-block; background: var(--red); color: #fff; font-family: var(--FD); font-weight: 700; font-size: 15px; letter-spacing: .5px; padding: 12px 24px; border-radius: 5px; text-decoration: none; transition: background .2s; }
.btn-primary:hover { background: var(--red-l); }
.btn-ghost { display: inline-block; color: var(--g300); font-family: var(--FD); font-weight: 600; font-size: 14px; letter-spacing: .5px; text-decoration: none; transition: color .2s; }
.btn-ghost:hover { color: var(--white); }

.hero-board {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r);
  padding: 20px;
}
.hero-board-title { font-family: var(--FD); font-weight: 700; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--g500); margin-bottom: 14px; }
.price-row { display: flex; align-items: center; justify-content: space-between; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.price-row:last-child { border-bottom: none; }
.price-row-flag { font-size: 18px; margin-right: 10px; }
.price-row-name { font-family: var(--FD); font-weight: 700; font-size: 15px; color: var(--white); flex: 1; }
.price-row-val { font-family: var(--FD); font-weight: 900; font-size: 17px; color: var(--white); margin-right: 12px; }
.price-row-chg { font-family: var(--FD); font-weight: 700; font-size: 13px; min-width: 58px; text-align: right; }
.price-row-chg.up   { color: #ff5560; }
.price-row-chg.down { color: #4d9fff; }
.board-date { font-size: 11px; color: var(--g500); text-align: right; margin-top: 12px; }

.ticker { background: var(--red); margin: 0 -24px; padding: 9px 24px; overflow: hidden; white-space: nowrap; }
.ticker-track { display: inline-flex; gap: 56px; animation: ticker 26s linear infinite; }
.ticker-item { font-family: var(--FD); font-weight: 700; font-size: 13px; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,.9); }
.ticker-sep { color: rgba(255,255,255,.35); }
@keyframes ticker { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ═══════════════════════════════════════════════════
   CHART SECTION
═══════════════════════════════════════════════════ */
.chart-section { background: var(--g100); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.chart-section .inner { max-width: 1280px; }

.widget-shell { width: 100%; }
.tab-bar { display: flex; border-bottom: 2px solid var(--border); background: var(--pure); border-radius: var(--r) var(--r) 0 0; overflow: hidden; }
.tab { padding: 13px 20px; font-family: var(--FD); font-weight: 700; font-size: 14px; letter-spacing: .7px; text-transform: uppercase; color: var(--g500); background: var(--pure); border: none; border-bottom: 3px solid transparent; cursor: pointer; transition: color .15s,border-color .15s; white-space: nowrap; }
.tab:hover { color: var(--black); }
.tab.active { color: var(--black); border-bottom-color: var(--red); }
.tab-sep { width: 1px; background: var(--border); margin: 8px 0; }
.panel-wrap { background: var(--pure); border: 1px solid var(--border); border-top: none; border-radius: 0 0 var(--r) var(--r); padding: 24px; }
.chart-panel { display: none; }
.chart-panel.active { display: block; }

.controls { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 18px; }
.ctrl-group { display: flex; align-items: center; gap: 6px; }
.ctrl-label { font-family: var(--FD); font-weight: 700; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--g500); }
.pill-btn { padding: 5px 13px; border-radius: 100px; border: 1px solid var(--border); background: var(--pure); font-family: var(--FD); font-weight: 700; font-size: 13px; color: var(--g700); cursor: pointer; transition: all .15s; }
.pill-btn:hover { border-color: var(--g500); color: var(--black); }
.pill-btn.active { background: var(--black); color: #fff; border-color: var(--black); }
.country-btn { padding: 5px 11px; border-radius: 4px; border: 1.5px solid var(--border); background: var(--pure); font-family: var(--FD); font-weight: 700; font-size: 13px; cursor: pointer; transition: all .15s; display: flex; align-items: center; gap: 6px; }
.country-btn .dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.country-btn.off { opacity: .32; filter: grayscale(1); }
.country-btn:hover { opacity: 1; filter: none; }
select.ctrl-select { padding: 5px 9px; border: 1px solid var(--border); border-radius: 6px; background: #fff; font-family: var(--FB); font-size: 13px; color: var(--black); cursor: pointer; }

.stat-row { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 14px; }
.stat-pill { background: var(--g100); border: 1px solid var(--border); border-radius: 7px; padding: 9px 14px; display: flex; flex-direction: column; gap: 2px; }
.stat-pill-val { font-family: var(--FD); font-weight: 900; font-size: 20px; line-height: 1; }
.stat-pill-val.up   { color: var(--red); }
.stat-pill-val.down { color: var(--blue); }
.stat-pill-lbl { font-size: 10px; font-weight: 600; letter-spacing: .5px; color: var(--g500); text-transform: uppercase; }

.chart-wrap { position: relative; }
svg.mc { display: block; width: 100%; overflow: visible; }
.ttip { position: absolute; opacity: 0; pointer-events: none; background: var(--black); color: #fff; padding: 9px 13px; border-radius: 8px; font-size: 13px; line-height: 1.5; white-space: nowrap; box-shadow: 0 8px 24px rgba(0,0,0,.22); transition: opacity .1s; z-index: 20; transform: translate(-50%,-115%); }
.evbox { position: absolute; opacity: 0; pointer-events: none; background: var(--red); color: #fff; padding: 10px 14px; border-radius: 8px; font-size: 12px; line-height: 1.5; max-width: 240px; box-shadow: 0 8px 24px rgba(0,0,0,.2); transition: opacity .1s; z-index: 21; }

.layout-2col { display: grid; grid-template-columns: 1fr 300px; gap: 22px; align-items: start; }
.info-panel { background: var(--g100); border: 1px solid var(--border); border-radius: 8px; padding: 18px; }
.info-panel h3 { font-family: var(--FD); font-weight: 800; font-size: 18px; margin-bottom: 14px; }
.info-section-title { font-family: var(--FD); font-weight: 700; font-size: 14px; margin-bottom: 7px; }
.ig { display: grid; grid-template-columns: 1fr 1fr; gap: 4px 10px; font-size: 12px; margin-bottom: 14px; }
.ig .k { color: var(--g500); font-weight: 500; }
.ig .v { font-weight: 600; }
.hr { height: 1px; background: var(--border); margin: 12px 0; }

.cost-intro { font-size: 14px; color: var(--g700); line-height: 1.6; margin-bottom: 18px; }
.slider-row { margin-bottom: 12px; }
.slider-label { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.slider-label .sv { font-family: var(--FD); font-weight: 700; font-size: 14px; color: var(--red); }
input[type=range] { width: 100%; accent-color: var(--black); }
.cost-results { margin-top: 18px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.cost-card { background: var(--pure); border: 1px solid var(--border); border-radius: 8px; padding: 13px; }
.ccv { font-family: var(--FD); font-weight: 900; font-size: 24px; line-height: 1; margin-bottom: 2px; }
.ccv.hl { color: var(--red); }
.ccl { font-size: 10px; color: var(--g500); font-weight: 600; text-transform: uppercase; letter-spacing: .4px; }
.ccs { font-size: 11px; color: var(--g700); margin-top: 4px; line-height: 1.4; }
.bar-wrap { margin-top: 18px; }
.bar-title { font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.bar-row { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; font-size: 11px; }
.bar-lbl { width: 96px; color: var(--g700); text-align: right; flex-shrink: 0; }
.bar-track { flex: 1; height: 12px; background: var(--g200); border-radius: 100px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 100px; transition: width .4s; }
.bar-pct { width: 36px; font-weight: 700; }

/* ═══════════════════════════════════════════════════
   BRIEFING SECTION
═══════════════════════════════════════════════════ */
/* ── News section ──────────────────────────────── */
.news-section { background: var(--white); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: var(--pearlwhite); border: 1px solid var(--border); border-radius: var(--r); overflow: hidden; }
.news-card { display: flex; flex-direction: column; gap: 10px; padding: 28px 32px; border-right: 1px solid var(--border); text-decoration: none; color: inherit; transition: background .15s; cursor: pointer; }
.news-grid .news-card:nth-child(2n) { border-right: none; }
.news-grid .news-card:nth-child(n+3) { border-top: 1px solid var(--border); }
.news-card:hover { background: var(--g100); }
.news-card-tag { display: inline-flex; align-items: center; gap: 5px; font-family: var(--FD); font-weight: 700; font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase; color: var(--red); }
.news-card-tag-dot { width: 5px; height: 5px; background: var(--red); border-radius: 50%; }
.news-card h4 { font-family: var(--FD); font-weight: 800; font-size: 20px; line-height: 1.1; letter-spacing: -.2px; flex: 1; }
.news-card p { font-size: 14px; line-height: 1.6; color: var(--g700); }
.news-card-meta { display: flex; align-items: center; justify-content: space-between; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--g200); }
.news-card-date { font-family: var(--FD); font-weight: 600; font-size: 12px; color: var(--g500); }
.news-card-arrow { width: 28px; height: 28px; border-radius: 50%; background: var(--black); display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; flex-shrink: 0; }
.news-card:hover .news-card-arrow { background: var(--red); transform: translateX(3px); }
.news-card-arrow svg { width: 12px; height: 12px; fill: none; stroke: white; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ── Notes section ──────────────────────────────── */
.notes-section { background: var(--black); }
.notes-section-inner { max-width: 1280px; margin: 0 auto; padding: 56px 24px; }
.notes-section-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 28px; flex-wrap: wrap; }
.notes-section-header .sec-label { color: #ff7077; }
.notes-section-header .sec-title { color: var(--white); }
.notes-section-header .sec-sub  { color: var(--g500); margin-bottom: 0; }
.notes-meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.notes-week-pill { background: var(--red); color: #fff; font-family: var(--FD); font-weight: 900; font-size: 16px; padding: 4px 12px; border-radius: 3px; }
.notes-date-txt { font-family: var(--FD); font-weight: 600; font-size: 14px; color: var(--g500); }
.npi-sep { color: rgba(255,255,255,.15); }
.npi-val { font-family: var(--FD); font-weight: 900; font-size: 16px; color: var(--white); }
.npi-chg { font-family: var(--FD); font-weight: 700; font-size: 13px; color: #4d9fff; }
.notes-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r); overflow: hidden; }
.notes-item { display: flex; gap: 14px; padding: 18px 22px; border-right: none; background: rgba(255,255,255,.02); transition: background .15s; }
.notes-item:hover { background: rgba(255,255,255,.05); }
.notes-item-idx { font-family: var(--FD); font-weight: 900; font-size: 12px; color: var(--red); min-width: 22px; padding-top: 2px; flex-shrink: 0; }
.notes-item-text { font-size: 13.5px; line-height: 1.65; color: rgba(245,243,239,.75); }
.notes-item-text strong { color: var(--white); font-weight: 600; }

/* ═══════════════════════════════════════════════════
   DATA SECTION
═══════════════════════════════════════════════════ */
.data-section { background: var(--g100); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.data-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.data-card { background: var(--pure); border: 1px solid var(--border); border-radius: var(--r); padding: 28px; }
.data-card h3 { font-family: var(--FD); font-weight: 800; font-size: 22px; letter-spacing: -.3px; margin-bottom: 20px; }
.fiscal-tabs { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 18px; }
.ftab { padding: 7px 14px; font-family: var(--FD); font-weight: 700; font-size: 13px; color: var(--g500); background: none; border: none; border-bottom: 2px solid transparent; cursor: pointer; transition: all .15s; }
.ftab.active { color: var(--black); border-bottom-color: var(--red); }
.fiscal-panel { display: none; }
.fiscal-panel.active { display: block; }
.ftable { width: 100%; border-collapse: collapse; font-size: 14px; }
.ftable tr { border-bottom: 1px solid var(--g200); }
.ftable tr:last-child { border-bottom: none; }
.ftable td { padding: 9px 6px; }
.ftable td:first-child { color: var(--g500); font-weight: 500; }
.ftable td:last-child { font-weight: 600; text-align: right; }
.ftable .group-header td { font-family: var(--FD); font-weight: 700; font-size: 13px; letter-spacing: .5px; text-transform: uppercase; color: var(--g500); padding-top: 14px; padding-bottom: 4px; border-bottom: none; }
.cmp-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.cmp-table th { font-family: var(--FD); font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--g500); text-align: left; padding: 0 6px 10px; border-bottom: 1px solid var(--g200); }
.cmp-table th:not(:first-child) { text-align: right; }
.cmp-table td { padding: 9px 6px; border-bottom: 1px solid var(--g200); vertical-align: middle; }
.cmp-table tr:last-child td { border-bottom: none; }
.cmp-table td:not(:first-child) { text-align: right; }
.cmp-table .ctry-name { font-family: var(--FD); font-weight: 700; font-size: 15px; display: flex; align-items: center; gap: 8px; }
.cmp-table .ctry-dot { width: 9px; height: 9px; border-radius: 50%; flex-shrink: 0; }
.cmp-table .val-main { font-family: var(--FD); font-weight: 700; font-size: 15px; }
.cmp-table .chg-cell { font-family: var(--FD); font-weight: 700; font-size: 13px; }
.cmp-table .chg-cell.up   { color: var(--red); }
.cmp-table .chg-cell.down { color: var(--blue); }
.cmp-table .ro-row td { background: rgba(237,32,36,.04); }
.cmp-table .bar-mini { height: 6px; background: var(--g200); border-radius: 100px; margin-top: 4px; overflow: hidden; }
.cmp-table .bar-mini-fill { height: 100%; border-radius: 100px; }


/* ═══════════════════════════════════════════════════
   SNIPPETS STRIP (below chart, horizontal scroll)
═══════════════════════════════════════════════════ */
.snippets-strip-section {
  background: var(--black);
  border-top: 3px solid var(--red);
  padding: 0;
  overflow: hidden;
}
.snippets-strip-header {
  max-width: 1280px; margin: 0 auto;
  padding: 20px 0 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.snippets-strip-label {
  display: flex; align-items: center; gap: 10px;
}
.snippets-strip-label span.badge {
  background: var(--red);
  color: #fff;
  font-family: var(--FD); font-weight: 700; font-size: 11px;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 3px 10px; border-radius: 2px;
}
.snippets-strip-label span.title {
  font-family: var(--FD); font-weight: 800; font-size: 16px;
  letter-spacing: -.2px; color: var(--white);
  text-transform: uppercase;
}
.snippets-strip-meta {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--FD); font-weight: 600; font-size: 13px;
}
.strip-week { background: var(--red); color: #fff; padding: 2px 9px; border-radius: 2px; font-weight: 800; }
.strip-date { color: var(--g500); }
.strip-price { color: var(--white); font-weight: 700; }
.strip-chg   { color: #4d9fff; font-weight: 700; }

.snippets-scroll-wrap {
  overflow-x: auto;
  overflow-y: hidden;
  padding: 18px 24px 24px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.12) transparent;
  -webkit-overflow-scrolling: touch;
}
.snippets-scroll-wrap::-webkit-scrollbar { height: 4px; }
.snippets-scroll-wrap::-webkit-scrollbar-track { background: transparent; }
.snippets-scroll-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); border-radius: 2px; }

.snippets-track {
  display: flex; gap: 12px;
  width: max-content;
  align-items: stretch;
}
.snippet-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 16px 18px;
  width: 260px;
  flex-shrink: 0;
  display: flex; flex-direction: column; gap: 8px;
  transition: background .15s, border-color .15s;
  cursor: default;
}
.snippet-card:hover {
  background: rgba(255,255,255,.07);
  border-color: rgba(237,32,36,.4);
}
.snippet-card-top {
  display: flex; align-items: center; gap: 6px; flex-wrap: wrap;
}
.snippet-week {
  font-family: var(--FD); font-weight: 800; font-size: 11px;
  letter-spacing: 1px; text-transform: uppercase; color: var(--red);
}
.snippet-date {
  font-family: var(--FD); font-weight: 600; font-size: 11px; color: var(--g500);
}
.snippet-sep { color: rgba(255,255,255,.12); font-size: 10px; }
.snippet-cat {
  font-family: var(--FD); font-weight: 700; font-size: 10px;
  letter-spacing: .8px; text-transform: uppercase;
  padding: 2px 7px; border-radius: 2px;
}
.cat-geopolitica    { background: rgba(0,91,187,.3); color: #7ab8ff; }
.cat-fiscal { background: rgba(240,194,0,.2); color: #c8a400; }
.cat-rute  { background: rgba(0,122,64,.2);  color: #4ecb8a; }
.cat-piata-interna { background: rgba(237,32,36,.2); color: #ff7077; }

.snippet-headline {
  font-family: var(--FD); font-weight: 800; font-size: 15px;
  line-height: 1.15; color: var(--white);
}
.snippet-body {
  font-family: var(--FB); font-size: 12px; line-height: 1.55;
  color: rgba(249,248,246,.6);
}
.snippet-body strong { color: rgba(249,248,246,.9); font-weight: 600; }
.snippet-pin {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--FD); font-size: 10px; font-weight: 600;
  color: var(--g500); margin-top: auto; padding-top: 6px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.snippet-pin-dot {
  width: 5px; height: 5px; background: var(--red); border-radius: 50%; flex-shrink: 0;
}




/* ═══════════════════════════════════════════════════
   BRENT CRUDE SECTION
═══════════════════════════════════════════════════ */
.brent-section { background: var(--ink); border-top: 1px solid rgba(255,255,255,.06); }
.brent-inner { max-width: 1280px; margin: 0 auto; padding: 72px 0px; }
.brent-header { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; flex-wrap: wrap; }
.brent-header-left .sec-label { color: #ffb347; }
.brent-header-left .sec-title { color: var(--white); }
.brent-header-left .sec-sub { color: var(--g500); margin-bottom: 0; }
.brent-coming-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,179,71,.12); border: 1px solid rgba(255,179,71,.3);
  color: #ffb347; font-family: var(--FD); font-weight: 700;
  font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 8px 16px; border-radius: 4px;
}
.brent-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.07); border-radius: var(--r); overflow: hidden; margin-bottom: 24px; }
.brent-stat-card {
  background: var(--g900); padding: 28px 24px;
  display: flex; flex-direction: column; gap: 6px;
  position: relative; overflow: hidden;
}
.brent-stat-card::after {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #ffb347 0%, transparent 100%);
}
.bsc-label { font-family: var(--FD); font-weight: 700; font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--g500); }
.bsc-value { font-family: var(--FD); font-weight: 900; font-size: 42px; line-height: 1; letter-spacing: -1px; color: var(--white); }
.bsc-unit  { font-size: 12px; color: var(--g500); font-weight: 500; }
.bsc-note  { font-size: 12px; color: var(--g700); margin-top: 4px; line-height: 1.4; }
.brent-chart-placeholder {
  background: var(--g900); border: 1px solid rgba(255,255,255,.06);
  border-radius: var(--r); padding: 56px 24px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 14px; text-align: center; position: relative; overflow: hidden;
}
.brent-chart-placeholder::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(
    -45deg, transparent, transparent 18px,
    rgba(255,179,71,.03) 18px, rgba(255,179,71,.03) 19px
  );
}
.bcp-icon  { font-size: 44px; opacity: .35; position: relative; z-index: 1; }
.bcp-title { font-family: var(--FD); font-weight: 800; font-size: 24px; color: rgba(255,255,255,.35); position: relative; z-index: 1; }
.bcp-sub   { font-size: 14px; color: var(--g700); position: relative; z-index: 1; max-width: 400px; line-height: 1.55; }
.brent-meta { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); border-radius: var(--r); overflow: hidden; margin-top: 24px; }
.brent-meta-card { background: var(--g900); padding: 22px 20px; }
.bmc-label { font-family: var(--FD); font-weight: 700; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--g500); margin-bottom: 6px; }
.bmc-value { font-family: var(--FD); font-weight: 900; font-size: 30px; line-height: 1; color: #ffb347; margin-bottom: 6px; }
.bmc-desc  { font-size: 12px; color: var(--g700); line-height: 1.45; }

/* ═══════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════ */
.about-section { background: var(--red); padding: 56px 24px; }
.about-inner { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about-inner h2 { font-family: var(--FD); font-weight: 900; font-size: clamp(34px, 4vw, 54px); line-height: .92; letter-spacing: -1.5px; text-transform: uppercase; color: #fff; }
.about-inner p { font-size: 15px; line-height: 1.7; color: rgba(255,255,255,.8); margin-bottom: 22px; }
.about-stats { display: flex; gap: 28px; flex-wrap: wrap; }
.astat { display: flex; flex-direction: column; gap: 3px; }
.astat-n { font-family: var(--FD); font-weight: 900; font-size: 36px; line-height: 1; color: #fff; }
.astat-l { font-size: 11px; font-weight: 600; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .8px; }

/* ═══════════════════════════════════════════════════
   SWIPTE FINGER
═══════════════════════════════════════════════════ */
.swipe-hint {
    display: none;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: #fff;
    border-radius: 999px;
    transition: opacity 0.4s;
    position: absolute;
    left: 50%;
    transform: translate(-50%, 100px);
        box-shadow: 0 6px 20px rgba(0, 21, 32, 0.1);
}
.swipe-hint.hidden { opacity: 0; pointer-events: none; }

.swipe-finger {
  font-size: 16px;
  animation: swipe 1.4s ease-in-out infinite;
  display: inline-block;
}
@keyframes swipe {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(8px); }
}

.swipe-text {
  font-size: 11px;
  font-weight: 600;
  color: #003087;
  letter-spacing: 0.04em;
}
/* ═══════════════════════════════════════════════════
    RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1020px) {

  .hero-grid { grid-template-columns: 1fr; }
  .hero-board { display: none; }
  .briefing-grid { grid-template-columns: 1fr; }
  .data-grid { grid-template-columns: 1fr; }
  .about-inner { grid-template-columns: 1fr; gap: 32px; }
  .brent-stats { grid-template-columns: 1fr; }
  .brent-meta  { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .layout-2col { grid-template-columns: 1fr; }
  .cost-results { grid-template-columns: 1fr; }
  .hero-title { font-size: 52px; }
  
  	.snippets-strip-header {
    padding: 20px 24px 0;
}
	.news-grid {
    grid-template-columns: auto;
}

.news-card {
    border-right: none;
    border-top: 1px solid var(--border);
}

.brent-inner {
    padding: 72px 24px;
}

.snippets-strip-label span.badge {
    width: 120px;
}

.el-chart-inner {
    width: 100%;
    overflow-x: scroll;
    display: block;
}

.chart-section .layout-2col {
    display:block;
}

.chart-wrap {
    position: unset;
    width: 1000px;
    margin-left: -34px;
}

.stat-pill-lbl {
        font-size: 7px;
}

.swipe-hint {
  display: inline-flex;
}

}

