/* ================= Tokens ================= */
:root {
  --navy: #0E1B2C;
  --navy-2: #0F2233;
  --navy-3: #142c42;
  --cyan: #2ED9E8;
  --amber: #E2A33D;
  --cloud: #F2F7F9;
  --cloud-2: #EEF3F7;
  --slate: #5A7180;
  --slate-2: #6C8994;
  --line: #DCE7EA;
  --white: #FFFFFF;

  --display: 'Space Grotesk', 'Arial', sans-serif;
  --body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'IBM Plex Mono', 'Courier New', monospace;

  --maxw: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--body);
  color: var(--navy);
  background: var(--cloud);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 32px;
}
h1, h2, h3, h4 {
  font-family: var(--display);
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1.08;
}
p { line-height: 1.6; margin: 0; }
.eyebrow {
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 16px;
  height: 1.5px;
  background: var(--amber);
  display: inline-block;
}

/* ================= Nav ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(14, 27, 44, 0.94);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
  gap: 10px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-family: var(--display);
  font-weight: 600;
  font-size: 14.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.brand .mark { width: 22px; height: 22px; flex-shrink: 0; }
.brand span.hi { color: var(--cyan); }
.navlinks {
  display: flex;
  gap: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.72);
  flex-shrink: 1;
  min-width: 0;
}
.navlinks a { transition: color .15s ease; margin-right: 16px; white-space: nowrap; }
.navlinks a:last-child { margin-right: 0; }
.navlinks a:hover, .navlinks a.active { color: var(--white); }
.nav-cta {
  background: var(--cyan);
  color: var(--navy);
  font-weight: 600;
  font-size: 12.5px;
  padding: 9px 14px;
  border-radius: 7px;
  transition: transform .15s ease, box-shadow .15s ease;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(46,217,232,0.35); }
.navtoggle { display: none; }

/* ---- Nav hover dropdown ---- */
.navitem { position: relative; display: inline-flex; align-items: center; }
.navitem > a::after {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
  margin-left: 6px;
  opacity: 0.6;
  position: relative;
  top: -2px;
}
.navdrop {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 16px 36px rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease;
  z-index: 60;
  margin-top: 8px;
}
.navitem:hover .navdrop {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.navdrop a {
  display: block;
  padding: 9px 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  border-radius: 6px;
  white-space: nowrap;
  margin-right: 0 !important;
}
.navdrop a:hover { background: rgba(255,255,255,0.08); color: var(--white); }
.navdrop .navdrop-all {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 6px;
  padding-top: 12px !important;
  color: var(--cyan) !important;
  font-weight: 600;
}
@media (max-width: 900px) {
  .navitem > a::after { display: none; }
  .navdrop { display: none !important; }
}

/* ================= Buttons ================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 22px;
  border-radius: 8px;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary { background: var(--cyan); color: var(--navy); }
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 8px 22px rgba(46,217,232,0.32); }
.btn-outline { border: 1px solid var(--line); color: var(--navy); background: var(--white); }
.btn-outline:hover { border-color: var(--slate-2); }
.btn-ghost-dark { color: rgba(255,255,255,0.85); border: 1px solid rgba(255,255,255,0.22); }
.btn-ghost-dark:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

/* ================= Hero ================= */
.hero {
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
  padding: 96px 0 0;
}
.hero-grid-bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(46,217,232,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(46,217,232,0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 70% 60% at 60% 20%, black 0%, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  padding-bottom: 64px;
}
.hero h1 {
  font-size: 52px;
  max-width: 820px;
  margin-top: 22px;
  font-weight: 600;
}
.hero h1 em {
  font-style: normal;
  color: var(--cyan);
}
.hero .sub {
  max-width: 560px;
  margin-top: 22px;
  font-size: 17.5px;
  color: rgba(255,255,255,0.68);
}
.hero-ctas {
  display: flex;
  gap: 14px;
  margin-top: 34px;
}

/* ---- Rate ticker (signature element) ---- */
.ticker-shell {
  margin-top: 64px;
  border-top: 1px solid rgba(255,255,255,0.1);
  background: linear-gradient(180deg, rgba(255,255,255,0.02), transparent);
}
.ticker-label {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px 0;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.ticker {
  overflow: hidden;
  padding: 14px 0 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.ticker-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: scrollx 34s linear infinite;
}
.ticker:hover .ticker-track { animation-play-state: paused; }
@keyframes scrollx {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.rate-card {
  flex-shrink: 0;
  width: 250px;
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 16px 18px;
  font-family: var(--mono);
}
.rate-card .sku {
  font-size: 11px;
  color: rgba(255,255,255,0.42);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.rate-card .prices { display: flex; align-items: baseline; gap: 10px; }
.rate-card .was { color: rgba(255,255,255,0.35); text-decoration: line-through; font-size: 14px; }
.rate-card .now { color: var(--cyan); font-size: 20px; font-weight: 600; }
.rate-card .gap { margin-top: 8px; font-size: 11px; color: var(--amber); }

/* ---- Commodity watch mini-ticker (~25% scale of main ticker) ---- */
.commodity-shell {
  border-top: 1px solid rgba(255,255,255,0.06);
}
.commodity-label {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 10px 32px 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.32);
}
.commodity-ticker {
  overflow: hidden;
  padding: 6px 0 12px;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 6%, black 94%, transparent);
}
.commodity-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: scrollx 22s linear infinite reverse;
}
.commodity-ticker:hover .commodity-track { animation-play-state: paused; }
.commodity-pill {
  flex-shrink: 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 0 20px;
  border-right: 1px solid rgba(255,255,255,0.08);
  font-family: var(--mono);
  font-size: 11px;
  white-space: nowrap;
}
.commodity-pill .cn { color: rgba(255,255,255,0.4); }
.commodity-pill .cp { color: rgba(255,255,255,0.85); font-weight: 600; }
.commodity-pill .cc { color: var(--amber); font-size: 10px; }

/* ================= Sections ================= */
section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head h2 { font-size: 34px; margin-top: 16px; }
.section-head p { margin-top: 16px; color: var(--slate); font-size: 16px; }
.on-navy { background: var(--navy); color: var(--white); }
.on-navy .section-head p { color: rgba(255,255,255,0.62); }
.on-cloud2 { background: var(--cloud-2); }

/* ---- Step / grid cards ---- */
.grid3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px;
}
.card .num {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--amber);
  margin-bottom: 14px;
}
.card h3 { font-size: 19px; margin-bottom: 10px; }
.card p { color: var(--slate); font-size: 15px; }
.card-dark {
  background: var(--navy-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 28px;
}
.card-dark h3 { font-size: 19px; margin-bottom: 10px; color: var(--white); }
.card-dark p { color: rgba(255,255,255,0.64); font-size: 15px; }

/* ---- Stat band ---- */
.statband {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.statband .stat {
  padding: 30px 28px;
  border-right: 1px solid var(--line);
}
.statband .stat:last-child { border-right: none; }
.statband .stat .n {
  font-family: var(--mono);
  font-size: 30px;
  font-weight: 600;
  color: var(--navy);
}
.statband .stat .l {
  margin-top: 8px;
  font-size: 13.5px;
  color: var(--slate);
}

/* ---- Split ---- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.split h2 { font-size: 30px; }
.split p { margin-top: 16px; color: var(--slate); font-size: 15.5px; }

/* ---- Table ---- */
table.compare { width: 100%; border-collapse: collapse; font-size: 14.5px; }
table.compare th {
  text-align: left;
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--navy);
  padding: 14px 16px;
}
table.compare td { padding: 14px 16px; border-bottom: 1px solid var(--line); color: var(--navy); }
table.compare tr:nth-child(even) td { background: var(--cloud-2); }
table.compare td.num { font-family: var(--mono); }
table.compare td.gap { color: var(--amber); font-family: var(--mono); font-weight: 600; }

/* ---- Timeline (about / how it works) ---- */
.tl { position: relative; padding-left: 28px; border-left: 1px solid var(--line); }
.tl-item { position: relative; padding-bottom: 40px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: "";
  position: absolute;
  left: -33px;
  top: 4px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--cloud);
}
.tl-item .tag { font-family: var(--mono); font-size: 12px; color: var(--slate-2); text-transform: uppercase; letter-spacing: .06em; }
.tl-item h3 { font-size: 18px; margin: 8px 0 8px; }
.tl-item p { color: var(--slate); font-size: 15px; }

/* ---- Quote / value prop banner ---- */
.banner {
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.banner h2 { font-size: 28px; max-width: 520px; font-weight: 500; }
.banner h2 span { color: var(--cyan); }

/* ---- Contact ---- */
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 64px; }
.form-field { margin-bottom: 20px; }
.form-field label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--navy);
}
.form-field input, .form-field select, .form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--body);
  font-size: 14.5px;
  color: var(--navy);
  background: var(--white);
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: 2px solid var(--cyan);
  outline-offset: 1px;
  border-color: transparent;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.contact-side .item { padding: 20px 0; border-bottom: 1px solid var(--line); }
.contact-side .item:first-child { padding-top: 0; }
.contact-side .item .k { font-family: var(--mono); font-size: 12px; color: var(--slate-2); text-transform: uppercase; letter-spacing: .06em; }
.contact-side .item .v { margin-top: 6px; font-size: 15.5px; }

/* ================= Footer ================= */
footer {
  background: var(--navy);
  color: rgba(255,255,255,0.55);
  padding: 56px 0 32px;
  font-size: 14px;
}
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.footer-brand { display: flex; align-items: center; gap: 10px; color: var(--white); font-family: var(--display); font-weight: 600; }
.footer-brand .mark { width: 22px; height: 22px; }
.footer-cols { display: flex; gap: 56px; }
.footer-col h4 { font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; color: rgba(255,255,255,0.4); margin-bottom: 14px; font-family: var(--mono); font-weight: 500; }
.footer-col a { display: block; margin-bottom: 10px; color: rgba(255,255,255,0.65); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

/* ================= Page hero (non-home) ================= */
.pagehead {
  background: var(--navy);
  color: var(--white);
  padding: 76px 0 64px;
}
.pagehead h1 { font-size: 42px; margin-top: 18px; max-width: 680px; }
.pagehead p { margin-top: 18px; color: rgba(255,255,255,0.62); max-width: 560px; font-size: 16.5px; }

/* ================= Utility ================= */
.mt-lg { margin-top: 64px; }
.center { text-align: center; }
.list-check { list-style: none; margin: 0; padding: 0; }
.list-check li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
  color: var(--slate);
  font-size: 15px;
}
.list-check li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: rgba(46,217,232,0.15);
  border: 1.5px solid var(--cyan);
}

/* ================= Responsive ================= */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .6s ease, transform .6s ease;
}
[data-reveal].is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1; transform: none; transition: none; }
  .ticker-track { animation: none; }
  .commodity-track { animation: none; }
}

/* ---- Category tabs ---- */
.tabbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 20px;
  margin-bottom: 40px;
}
.tabbtn {
  font-family: var(--mono);
  font-size: 12.5px;
  letter-spacing: 0.03em;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--slate);
  cursor: pointer;
  transition: all .15s ease;
  white-space: nowrap;
}
.tabbtn:hover { border-color: var(--slate-2); color: var(--navy); }
.tabbtn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }
.tabpanel { display: none; }
.tabpanel.active { display: block; }
.cat-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 30px; gap: 24px; flex-wrap: wrap; }
.cat-head h2 { font-size: 28px; }
.cat-head p { margin-top: 10px; color: var(--slate); font-size: 15px; max-width: 560px; }
.cat-badge {
  font-family: var(--mono);
  font-size: 11.5px;
  color: var(--amber);
  background: rgba(226,163,61,0.12);
  border: 1px solid rgba(226,163,61,0.3);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.subgrid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.subcard {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.subcard h4 { font-size: 16px; margin-bottom: 6px; }
.subcard p { font-size: 13.5px; color: var(--slate); }
.subcard .go {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--navy);
  border: 1px solid var(--line);
  padding: 9px 14px;
  border-radius: 7px;
  transition: all .15s ease;
}
.subcard .go:hover { background: var(--navy); color: var(--white); border-color: var(--navy); }
.subcard .go svg { width: 12px; height: 12px; }

/* ---- Segments ---- */
.segrow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.segrow .seg { background: var(--white); padding: 26px 22px; }
.segrow .seg .t { font-size: 15px; font-weight: 600; }
.segrow .seg .d { margin-top: 8px; font-size: 13px; color: var(--slate); }

/* ---- Numbered solutions list (home) ---- */
.numlist { border-top: 1px solid rgba(255,255,255,0.12); }
.numrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  gap: 20px;
}
.numrow .left { display: flex; align-items: center; gap: 22px; }
.numrow .idx { font-family: var(--mono); font-size: 13px; color: var(--amber); width: 26px; }
.numrow .name { font-family: var(--display); font-size: 19px; font-weight: 500; }
.numrow .arrow { color: rgba(255,255,255,0.4); transition: transform .15s ease, color .15s ease; }
.numrow:hover .name { color: var(--cyan); }
.numrow:hover .arrow { transform: translateX(4px); color: var(--cyan); }

/* ---- Login gate ---- */
.login-shell {
  max-width: 420px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 40px 36px;
}
.login-shell .lock {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.login-shell h2 { font-size: 22px; }
.login-shell p.sub { margin-top: 10px; color: var(--slate); font-size: 14.5px; }
.login-shell .form-field { margin-top: 20px; }
.login-links { margin-top: 20px; font-size: 13.5px; color: var(--slate); text-align: center; }
.login-links a { color: var(--navy); font-weight: 600; }
.notice-card {
  background: var(--cloud-2);
  border: 1px dashed var(--slate-2);
  border-radius: 10px;
  padding: 16px 18px;
  font-size: 13px;
  color: var(--slate);
  margin-top: 24px;
}

/* ---- Supplier page ---- */
.supplier-crit { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.supplier-crit .row {
  display: flex;
  gap: 14px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.supplier-crit .row .n { font-family: var(--mono); color: var(--amber); font-size: 13px; }
.supplier-crit .row .t { font-size: 14.5px; color: var(--navy); }

/* ---- Category insight stats (PA-style) ---- */
.cat-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  margin: 20px 0 32px;
}
.cat-stats .cs {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  background: var(--white);
}
.cat-stats .cs:last-child { border-right: none; }
.cat-stats .cs .n { font-family: var(--mono); font-size: 22px; font-weight: 600; color: var(--navy); }
.cat-stats .cs .l { margin-top: 6px; font-size: 12.5px; color: var(--slate); }
.cat-intro { color: var(--slate); font-size: 15px; max-width: 760px; margin-bottom: 32px; line-height: 1.65; }

/* ---- Enhanced subcategory block (replaces flat subcard row) ---- */
.subblock-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.subblock {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 26px 26px 22px;
  display: flex;
  flex-direction: column;
}
.subblock-media {
  width: 100%;
  height: 104px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.subblock-media svg {
  width: 42px;
  height: 42px;
  stroke: var(--cyan);
  fill: none;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.subblock h4 { font-size: 17px; margin-bottom: 8px; }
.subblock > p.desc { font-size: 14px; color: var(--slate); margin-bottom: 16px; }
.subblock ul.feat { list-style: none; margin: 0 0 20px; padding: 0; flex-grow: 1; }
.subblock ul.feat li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 9px;
  font-size: 13.5px;
  color: var(--navy);
}
.subblock ul.feat li::before {
  content: "";
  position: absolute;
  left: 0; top: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(46,217,232,0.18);
  border: 1.5px solid var(--cyan);
}
.subblock ul.feat li.range { color: var(--amber); font-family: var(--mono); font-size: 12.5px; }
.subblock ul.feat li.range::before { background: rgba(226,163,61,0.18); border-color: var(--amber); }
.subblock .go {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  background: var(--navy);
  padding: 10px 16px;
  border-radius: 7px;
  transition: all .15s ease;
}
.subblock .go:hover { background: var(--navy-2); transform: translateY(-1px); }
.subblock .go svg { width: 12px; height: 12px; }

/* ---- Video embed ---- */
.video-shell {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  max-width: 840px;
  margin: 0 auto;
}
.video-shell video { width: 100%; display: block; background: #0E1B2C; }

@media (max-width: 860px) {
  .cat-stats, .subblock-grid { grid-template-columns: 1fr; }
  .cat-stats .cs { border-right: none; border-bottom: 1px solid var(--line); }
  .cat-stats .cs:last-child { border-bottom: none; }
}
.map-shell {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line);
}
#dc-map { width: 100%; height: 520px; background: #0E1B2C; }
.leaflet-popup-content-wrapper {
  background: var(--navy-2);
  color: var(--white);
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.leaflet-popup-content { font-family: var(--body); font-size: 13px; margin: 10px 14px; }
.leaflet-popup-content strong { font-family: var(--display); font-size: 13.5px; }
.leaflet-popup-tip { background: var(--navy-2); }
.leaflet-container a.leaflet-popup-close-button { color: rgba(255,255,255,0.6); }
.leaflet-control-zoom a {
  background: var(--navy-2) !important;
  color: var(--white) !important;
  border-color: rgba(255,255,255,0.15) !important;
}
.leaflet-control-attribution {
  background: rgba(14,27,44,0.7) !important;
  color: rgba(255,255,255,0.5) !important;
}
.leaflet-control-attribution a { color: rgba(255,255,255,0.7) !important; }
.map-legend {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
  font-size: 13px;
  color: var(--slate);
}
.map-legend .dot { display: inline-block; width: 9px; height: 9px; border-radius: 50%; margin-right: 7px; }
.map-legend .dot.live { background: #2ED9E8; }
.map-legend .dot.pipeline { background: #E2A33D; }

/* ---- News list ---- */
.news-list { display: flex; flex-direction: column; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.news-item {
  background: var(--white);
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  transition: background .15s ease;
}
.news-item:hover { background: var(--cloud-2); }
.news-item .src { font-family: var(--mono); font-size: 11.5px; color: var(--amber); text-transform: uppercase; letter-spacing: .04em; margin-bottom: 5px; }
.news-item .t { font-size: 15.5px; font-weight: 600; color: var(--navy); }
.news-item .d { font-size: 13.5px; color: var(--slate); margin-top: 4px; }
.news-item .arrow { flex-shrink: 0; color: var(--slate-2); }

/* ---- Dashboard stat cards ---- */
.dash-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dash-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 22px;
}
.dash-card .n { font-family: var(--mono); font-size: 26px; font-weight: 600; color: var(--navy); }
.dash-card .l { margin-top: 8px; font-size: 13px; color: var(--slate); }
.dash-region { font-family: var(--mono); font-size: 11px; color: var(--amber); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 24px; margin-top: 40px; }
.dash-region:first-child { margin-top: 0; }

@media (max-width: 900px) {
  .dash-grid { grid-template-columns: 1fr 1fr; }
  #dc-map { height: 380px; }
  .news-item { flex-direction: column; align-items: flex-start; gap: 6px; }
  .subgrid, .segrow, .supplier-crit { grid-template-columns: 1fr; }
  .segrow .seg { border-bottom: 1px solid var(--line); }

  .navtoggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
  }
  .navtoggle span { width: 22px; height: 2px; background: var(--white); display: block; }
  .navlinks {
    display: none;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    gap: 0;
    padding: 8px 32px 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .navlinks.open { display: flex; }
  .navlinks a { padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
  .nav-cta { display: none; }
  .hero h1 { font-size: 38px; }
  .split, .grid3, .grid2, .contact-grid, .statband { grid-template-columns: 1fr; }
  .statband .stat { border-right: none; border-bottom: 1px solid var(--line); }
  .banner { flex-direction: column; align-items: flex-start; }
  .footer-top { flex-direction: column; }
  .footer-cols { gap: 32px; }
}
