/* ==========================================================================
   OCS AI Trader — LIGHT theme
   Airy, premium fintech surface: soft daylight base, glass panels, gentle
   shadows. Signal-green / signal-red accents, teal "AI" glow, gold "stars".
   Keeps the instrument-cluster spirit (engine gauge) without the dark cockpit.
   ========================================================================== */

:root {
  /* === Confluence Manifold theme === navy ink · olive-green · teal · pink ·
     amber · violet, on a soft light base with clean white research cards. */
  --bg: #f5f8fc;
  --bg-2: #fbfdff;
  --panel: #ffffff;
  --panel-solid: #ffffff;
  --panel2: #fbfdff;
  --node: #ffffff;
  --stroke: #e3e9f1;
  --stroke-strong: #d4dde9;
  --edge: #e3e9f1;            /* aliases used by the engine viz CSS */
  --edge2: #d4dde9;

  /* Text */
  --ink: #1e2f4d;
  --ink-soft: #5a6b7e;
  --ink-faint: #9aa9ba;
  --muted: #5a6b7e;
  --faint: #9aa9ba;
  --navy: #1e2f4d;

  /* Accents */
  --green: #6f9a1f;  --green-bright: #84b52a;  --pos: #6f9a1f;  --acc: #6f9a1f;
  --red: #f0386b;    --red-bright: #ff5a86;    --neg: #f0386b;
  --cyan: #0b86b8;   --cyan-bright: #16a3d8;
  --amber: #e0a400;  --unc: #e0a400;
  --gold: #c98b00;   --hot: #f97316;
  --mag: #8b5cf6;    --violet: #8b5cf6;

  /* Soft, directional shadows (research-dashboard feel) */
  --shadow-sm: 0 8px 22px -16px rgba(15, 23, 34, 0.40);
  --shadow: 0 16px 38px -24px rgba(15, 23, 34, 0.42);
  --shadow-lg: 0 40px 90px -54px rgba(15, 23, 34, 0.45);
  --glow-cyan: 0 12px 30px -16px rgba(11, 134, 184, 0.5);
  --glow-green: 0 12px 28px -16px rgba(111, 154, 31, 0.5);

  /* Type — Segoe UI throughout */
  --font-sans: 'Segoe UI', 'Segoe UI Variable', system-ui, -apple-system, 'Helvetica Neue', Roboto, Arial, sans-serif;
  --font-mono: 'Segoe UI', 'Segoe UI Variable', system-ui, -apple-system, 'Helvetica Neue', Roboto, Arial, sans-serif;

  /* Layout */
  --maxw: 1200px;
  --radius: 14px;
  --radius-sm: 10px;
  --header-h: 72px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---- Reset / base -------------------------------------------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-variant-numeric: tabular-nums;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  /* clean research surface: soft olive + navy light blooms */
  background-image:
    radial-gradient(1300px 820px at 88% -12%, rgba(111, 154, 31, 0.07), transparent 56%),
    radial-gradient(1000px 680px at -8% 112%, rgba(30, 47, 77, 0.05), transparent 56%);
  background-attachment: fixed, fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--cyan);
  text-decoration: none;
  transition: color 0.2s var(--ease);
}
a:hover {
  color: var(--green);
}

h1,
h2,
h3 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 0.5em;
  color: var(--ink);
}

p {
  margin: 0 0 1rem;
}

.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--cyan);
  color: #fff;
  padding: 0.6rem 1rem;
  z-index: 200;
  border-radius: 0 0 8px 0;
  font-weight: 600;
}
.skip-link:focus {
  left: 0;
}

main {
  display: block;
  outline: none;
}

.wrap {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
}

.section {
  padding: clamp(3.25rem, 7vw, 6.5rem) 0;
  position: relative;
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1rem;
  font-weight: 500;
}
.eyebrow::before {
  content: '';
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
}

.lede {
  font-size: 0.98rem;
  color: var(--ink-soft);
  max-width: 62ch;
}

/* ---- Buttons ------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  padding: 0.82rem 1.45rem;
  border-radius: 999px;
  border: 1px solid var(--stroke-strong);
  cursor: pointer;
  transition: transform 0.18s var(--ease), box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease), background 0.25s var(--ease), color 0.2s var(--ease);
  background: var(--panel-solid);
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.btn:hover {
  transform: translateY(-2px);
}
.btn--primary {
  background: var(--acc);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--glow-green);
}
.btn--primary:hover {
  background: #5c8019;
  box-shadow: 0 16px 32px -16px rgba(111, 154, 31, 0.6);
  color: #fff;
}
.btn--ghost {
  background: #fff;
  border-color: var(--stroke-strong);
  color: var(--acc);
}
.btn--ghost:hover {
  border-color: var(--acc);
  box-shadow: var(--glow-green);
  color: var(--acc);
}

/* ---- Cards (clean white research panels) --------------------------------- */
.glass {
  background: var(--panel-solid);
  border: 1px solid var(--stroke);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

/* ==========================================================================
   Header / HUD nav
   ========================================================================== */
.hud-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 1px 0 var(--stroke), 0 10px 30px rgba(28, 58, 99, 0.05);
}
.hud-header__inner {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--ink);
}
.brand__logo {
  height: 38px;
  width: auto;
  display: block;
  background: #fff;
  border-radius: 9px;
  padding: 4px 8px;
  box-shadow: var(--shadow-sm);
}
.brand__sub {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
  padding-left: 0.7rem;
  border-left: 1px solid var(--stroke);
}
@media (max-width: 520px) {
  .brand__logo { height: 34px; }
  .brand__sub { display: none; }
}
/* footer logo (smaller) */
.site-footer__logo {
  height: 40px;
  width: auto;
  margin-bottom: 0.6rem;
  background: #fff;
  border-radius: 10px;
  padding: 6px 10px;
  box-shadow: var(--shadow-sm);
}

.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav a {
  display: inline-block;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  position: relative;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.primary-nav a:hover {
  color: var(--ink);
  background: rgba(16, 32, 43, 0.05);
}
.primary-nav a.is-active {
  color: var(--ink);
}
.primary-nav a.is-active::after {
  content: '';
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 1px;
  height: 2px;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: 2px;
}
.primary-nav__cta {
  margin-left: 0.4rem;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: var(--panel-solid);
  border: 1px solid var(--stroke-strong);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 20px;
  margin-inline: auto;
  background: var(--ink);
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded='true'] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle[aria-expanded='true'] span:nth-child(2) {
  opacity: 0;
}
.nav-toggle[aria-expanded='true'] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2.5rem, 6vw, 5rem);
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}
.hero__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--stroke);
  border-radius: 999px;
  padding: 0.35rem 0.8rem;
  margin-bottom: 1.1rem;
  box-shadow: var(--shadow-sm);
}
.hero__rating .stars-inline {
  color: var(--gold);
  letter-spacing: 1px;
}
.hero__title {
  font-size: clamp(2.3rem, 5.2vw, 3.85rem);
  font-weight: 600;            /* match .section__title heading style */
  letter-spacing: -0.02em;
  line-height: 1.12;
  margin-bottom: 0.6rem;
}
.hero__title .accent {
  background: linear-gradient(120deg, var(--green), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__tag {
  font-family: var(--font-mono);
  color: var(--ink-soft);
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  margin-bottom: 1.4rem;
}
.hero__tag b {
  color: var(--ink);
  font-weight: 600;
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}
.hero__note {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 60ch;
  line-height: 1.5;
}

.hero__copy--center {
  text-align: center;
  max-width: 820px;
  margin: 0 auto clamp(1.6rem, 4vw, 2.6rem);
}
.hero__copy--center .hero__rating { margin-inline: auto; }

/* Full-width live dashboard panel */
.hero__dash {
  padding: clamp(0.8rem, 2vw, 1.4rem);
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(238, 242, 248, 0.78));
}
.hero__dash #hero-dashboard { width: 100%; }
.hero__dash svg { width: 100%; height: auto; display: block; }
.hero__dash .cluster__badge { position: static; margin-bottom: 0.4rem; }

/* Engine gauge panel */
.cluster {
  aspect-ratio: 1 / 0.84;
  padding: 1rem;
  min-height: 320px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(238, 244, 250, 0.7));
}
.cluster svg {
  width: 100%;
  height: 100%;
  display: block;
}
.cluster__badge {
  position: absolute;
  top: 14px;
  left: 16px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cluster__badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.readouts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.6rem;
  margin-top: 0.9rem;
}
.readout {
  padding: 0.7rem 0.85rem;
  border-radius: var(--radius-sm);
  background: var(--panel-solid);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow-sm);
}
.readout__label {
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.readout__value {
  font-family: var(--font-mono);
  font-size: 1.15rem;
  font-weight: 700;
  margin-top: 2px;
}
.v-green { color: var(--green); }
.v-red { color: var(--red); }
.v-cyan { color: var(--cyan); }

/* ==========================================================================
   Content blocks
   ========================================================================== */
.section__head {
  max-width: 64ch;
  margin-bottom: 2.6rem;
}
.section__title {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
}

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.pillar {
  padding: 1.7rem 1.6rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.pillar:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(22, 180, 224, 0.4);
}
.pillar__icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(6, 179, 107, 0.14), rgba(14, 143, 184, 0.14));
  border: 1px solid rgba(14, 143, 184, 0.22);
  color: var(--cyan);
  margin-bottom: 1rem;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.25rem; }
.pillar p { color: var(--ink-soft); font-size: 0.96rem; margin: 0; }

/* What We Offer — star cards */
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.offer {
  padding: 1.7rem 1.6rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.offer:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.offer__stars {
  height: 56px;
  margin: 0 auto 0.7rem;
}
.offer h3 { font-size: 1.2rem; margin-bottom: 0.4rem; }
.offer p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ==========================================================================
   Live playlist carousel + video lightbox
   ========================================================================== */
.section--tight { padding: clamp(2.5rem, 6vw, 4.5rem) 0 clamp(2rem, 5vw, 3.5rem); }

.carousel {
  position: relative;
  width: min(100% - 1.4rem, var(--maxw));
  margin-inline: auto;
  padding: 0 58px;            /* gutters so the arrows clear the thumbnails */
}
.carousel__track {
  display: flex;
  gap: 1.1rem;
  overflow-x: auto;
  padding: 0.6rem 0.2rem 1.1rem;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.carousel__track::-webkit-scrollbar { display: none; }

.carousel__nav {
  position: absolute;
  top: 42%;
  transform: translateY(-50%);
  z-index: 6;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  color: var(--ink);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.carousel__nav:hover { transform: translateY(-50%) scale(1.08); color: var(--cyan); box-shadow: var(--glow-cyan); }
.carousel__nav--prev { left: 4px; }
.carousel__nav--next { right: 4px; }
@media (max-width: 640px) {
  .carousel { padding: 0; }
  .carousel__nav { display: none; }
}

.vcard {
  flex: 0 0 clamp(248px, 30vw, 320px);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
}
.vcard__thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-sm);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--stroke);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vcard:hover .vcard__thumb,
.vcard:focus-visible .vcard__thumb { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.vcard__thumb::after {
  content: '';
  position: absolute;
  inset: 0;
  /* keep the image bright; only a faint bottom wash for title/badge legibility */
  background: linear-gradient(180deg, transparent 62%, rgba(8, 18, 30, 0.16));
}
.vcard__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 64px;
  height: 45px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: #f0282d;            /* YouTube red */
  color: #fff;
  box-shadow: 0 6px 18px rgba(240, 40, 45, 0.45);
  z-index: 2;
  transition: transform 0.2s var(--ease), background 0.2s var(--ease);
}
.vcard__play svg { width: 26px; height: 26px; margin-left: 2px; }
.vcard:hover .vcard__play { transform: scale(1.1); background: #ff0000; }
.vcard__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.26rem 0.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  backdrop-filter: blur(6px);
}
.vcard__live {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #fff;
  background: rgba(239, 59, 84, 0.94);
  padding: 0.24rem 0.5rem;
  border-radius: 999px;
}
.vcard__live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: pulse 1.8s var(--ease) infinite; }
.vcard__title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  padding: 0 0.15rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.5em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
  background: rgba(12, 22, 36, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s var(--ease);
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox__panel {
  width: min(100%, 940px);
  transform: scale(0.96);
  transition: transform 0.3s var(--ease);
}
.lightbox.is-open .lightbox__panel { transform: none; }
.lightbox__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.lightbox__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.lightbox__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.95rem;
}
.lightbox__title { color: #fff; font-weight: 600; font-size: 0.98rem; line-height: 1.3; }
.lightbox__actions { display: flex; gap: 0.6rem; flex-shrink: 0; }
.lightbox__close { background: rgba(255, 255, 255, 0.16); color: #fff; border-color: rgba(255, 255, 255, 0.3); }
.lightbox__close:hover { background: rgba(255, 255, 255, 0.26); color: #fff; }
@media (max-width: 600px) {
  .lightbox__bar { flex-direction: column; align-items: flex-start; }
}

/* User types band */
.usertypes {
  text-align: center;
}
.usertypes__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.6rem;
  list-style: none;
  padding: 0;
  margin: 1.6rem 0 0;
}
.usertypes__list li {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  background: var(--panel-solid);
  border: 1px solid var(--stroke);
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.usertypes__list li:hover {
  transform: translateY(-3px);
  color: var(--cyan);
  border-color: rgba(14, 143, 184, 0.4);
}

/* Loadout (indicators page) */
.loadout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.loadout__card { padding: 1.9rem; }
.loadout__tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.32rem 0.75rem;
  border-radius: 999px;
  display: inline-block;
  margin-bottom: 1rem;
}
.tag--engine {
  color: var(--green);
  background: rgba(6, 179, 107, 0.12);
  border: 1px solid rgba(6, 179, 107, 0.3);
}
.tag--filter {
  color: var(--cyan);
  background: rgba(14, 143, 184, 0.12);
  border: 1px solid rgba(14, 143, 184, 0.3);
}
.loadout__card h3 { font-size: 1.5rem; }
.loadout__card ul { list-style: none; padding: 0; margin: 1.2rem 0 0; }
.loadout__card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.7rem;
  color: var(--ink-soft);
}
.loadout__card li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--cyan);
}

/* Indicator rows: copy beside a live viz panel */
.ind-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 1.4rem;
  align-items: center;
  margin-bottom: 1.4rem;
}
.ind-grid.is-flip .ind-copy { order: 2; }
.viz-panel {
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 242, 248, 0.72));
}
.viz-panel svg { width: 100%; height: auto; display: block; }
.viz-panel__badge {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
@media (max-width: 860px) {
  .ind-grid { grid-template-columns: 1fr; }
  .ind-grid.is-flip .ind-copy { order: 0; }
}

.controls-map {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
  margin-top: 2.4rem;
}
.control { padding: 1.3rem; text-align: center; }
.control__role {
  font-family: var(--font-mono);
  font-size: 0.66rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.control__name { font-weight: 600; font-size: 1.05rem; margin: 0.4rem 0; }
.control__desc { font-size: 0.85rem; color: var(--ink-soft); margin: 0; }

/* ==========================================================================
   How to Use — map + scrollytelling
   ========================================================================== */
.tf-ladder {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1.4rem 0 0;
  list-style: none;
  padding: 0;
}
.tf-chip {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  padding: 0.4rem 0.8rem;
  border-radius: 8px;
  border: 1px solid var(--stroke-strong);
  color: var(--ink-soft);
  background: var(--panel-solid);
}
.tf-chip.is-bias {
  border-color: rgba(14, 143, 184, 0.5);
  color: var(--cyan);
  background: rgba(14, 143, 184, 0.08);
}

.map-wrap { display: grid; gap: 1rem; }
.signal-map { padding: 0.6rem; position: relative; }
.signal-map #signal-map { width: 100%; }
.signal-map svg {
  width: 100%;
  height: clamp(380px, 56vw, 540px);
  display: block;
  touch-action: none;
}
.map-legend {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  padding: 0.4rem 0.2rem 0;
  margin: 0;
}
.map-legend li {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}
.lg-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }

.method {
  counter-reset: m;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}
.method li {
  counter-increment: m;
  position: relative;
  padding: 1.2rem 1.3rem 1.2rem 3.6rem;
  border-radius: var(--radius-sm);
}
.method li::before {
  content: counter(m, decimal-leading-zero);
  position: absolute;
  left: 1.2rem;
  top: 1.1rem;
  font-family: var(--font-mono);
  font-size: 0.95rem;
  color: var(--cyan);
  font-weight: 700;
}
.method strong { color: var(--ink); }

.scrolly {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.scrolly__viz {
  position: sticky;
  top: calc(var(--header-h) + 1.5rem);
  height: min(70vh, 560px);
  padding: 1rem;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(238, 244, 250, 0.7));
}
.scrolly__viz svg { width: 100%; height: 100%; }
.scrolly__steps {
  display: flex;
  flex-direction: column;
  gap: 50vh;
  padding: 18vh 0 40vh;
}
.step {
  opacity: 0.34;
  transform: translateY(12px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.step.is-active { opacity: 1; transform: none; }
.step__num {
  font-family: var(--font-mono);
  color: var(--cyan);
  font-size: 0.8rem;
  letter-spacing: 0.18em;
}
.step h3 { font-size: 1.5rem; margin: 0.5rem 0; }
.step p { color: var(--ink-soft); }
.signal-label {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  padding: 0.2rem 0.55rem;
  border-radius: 6px;
  display: inline-block;
  margin: 0.15rem 0.3rem 0.15rem 0;
}
.label--booked {
  color: var(--green);
  background: rgba(6, 179, 107, 0.1);
  border: 1px solid rgba(6, 179, 107, 0.3);
}
.label--strength {
  color: var(--cyan);
  background: rgba(14, 143, 184, 0.1);
  border: 1px solid rgba(14, 143, 184, 0.3);
}
.label--stop {
  color: var(--red);
  background: rgba(226, 59, 80, 0.1);
  border: 1px solid rgba(226, 59, 80, 0.3);
}

/* ==========================================================================
   Education
   ========================================================================== */
.edu-cat { margin-bottom: 2.6rem; }
.edu-cat__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--stroke);
  padding-bottom: 0.7rem;
}
.edu-cat__head h3 { margin: 0; font-size: 1.25rem; }
.edu-cat__head p { margin: 0; color: var(--ink-faint); font-size: 0.85rem; }
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.video {
  border-radius: var(--radius-sm);
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: #0a1620;
  box-shadow: var(--shadow-sm);
}
.video__frame {
  position: relative;
  aspect-ratio: 16 / 9;
  cursor: pointer;
  background-size: cover;
  background-position: center;
}
.video__frame::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.5));
}
.video__play { position: absolute; inset: 0; display: grid; place-items: center; z-index: 2; }
.video__play span {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--green);
  box-shadow: var(--glow-green);
  transition: transform 0.2s var(--ease);
}
.video__frame:hover .video__play span { transform: scale(1.1); }
.video__play svg { width: 22px; height: 22px; fill: #fff; margin-left: 3px; }
.video__title {
  padding: 0.75rem 0.9rem;
  font-size: 0.9rem;
  color: #fff;
  position: relative;
  z-index: 3;
}
.video iframe { width: 100%; aspect-ratio: 16 / 9; border: 0; display: block; }

/* ==========================================================================
   Contact
   ========================================================================== */
/* ==========================================================================
   Pricing (Contact page) — region-aware (International $ / India ₹)
   ========================================================================== */
.pricing { margin-top: 2.6rem; }
.pricing__head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1.4rem;
}
.pricing__intro { max-width: 62ch; }
.pricing__title { font-size: 1.5rem; margin: 0.15rem 0 0.5rem; color: var(--ink); }
.pricing__note { color: var(--ink-soft); font-size: 0.92rem; margin: 0; }

/* Segmented region toggle */
.pricing__toggle {
  display: inline-flex; padding: 0.3rem; gap: 0.25rem;
  background: var(--panel-solid); border: 1px solid var(--stroke);
  border-radius: 999px; box-shadow: var(--shadow);
}
.pricing__toggle .seg {
  border: 0; background: transparent; cursor: pointer; font: inherit;
  font-weight: 600; color: var(--ink-faint);
  padding: 0.5rem 1.15rem; border-radius: 999px; line-height: 1;
  display: inline-flex; align-items: center; gap: 0.4rem;
  transition: background 0.2s var(--ease), color 0.2s var(--ease);
}
.pricing__toggle .seg span { font-family: var(--font-mono); font-size: 0.85rem; opacity: 0.65; }
.pricing__toggle .seg:hover { color: var(--ink); }
.pricing__toggle .seg.is-active { background: var(--ink); color: #fff; }
.pricing__toggle .seg.is-active span { opacity: 0.9; }

.pricing__panel { animation: priceFade 0.4s var(--ease); }
@keyframes priceFade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }

.price-cols { display: grid; gap: 1rem; align-items: start; }
.price-cols--two { grid-template-columns: 1fr 1fr; }
.price-cols--trial { grid-template-columns: 1.5fr 1fr; }
@media (max-width: 880px) {
  .price-cols--two, .price-cols--trial { grid-template-columns: 1fr; }
}

.price-group { padding: 0.3rem 1.4rem 0.9rem; }
.price-group__label {
  display: flex; align-items: baseline; justify-content: space-between; gap: 0.8rem;
  padding: 1.05rem 0 0.75rem; margin-bottom: 0.25rem;
  border-bottom: 1px solid var(--stroke);
}
.price-group__name { font-weight: 700; font-size: 1.04rem; color: var(--ink); }
.price-group__cur {
  font-family: var(--font-mono); font-size: 0.7rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); white-space: nowrap;
  background: rgba(11, 134, 184, 0.08); border: 1px solid rgba(11, 134, 184, 0.2);
  border-radius: 999px; padding: 0.24rem 0.62rem;
}
.price-list { list-style: none; margin: 0; padding: 0; }
.price-row {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 0.72rem 0; border-bottom: 1px solid rgba(212, 221, 233, 0.55);
}
.price-row:last-child { border-bottom: 0; }
.pl-name { color: var(--ink); font-weight: 500; font-size: 0.96rem; }
.pl-name em {
  color: var(--ink-faint); font-style: normal; font-size: 0.78rem;
  font-family: var(--font-mono); margin-left: 0.4rem;
}
.pl-end { display: inline-flex; align-items: baseline; gap: 0.85rem; white-space: nowrap; }
.pl-price { font-weight: 700; color: var(--ink); font-size: 1.04rem; white-space: nowrap; }
.pl-per { font-weight: 500; font-size: 0.72rem; color: var(--ink-faint); margin-left: 0.28rem; }
.pl-connect {
  font-size: 0.8rem; font-weight: 600; color: var(--cyan); text-decoration: none;
  white-space: nowrap; padding: 0.18rem 0.55rem; border-radius: 999px;
  border: 1px solid rgba(11, 134, 184, 0.22); background: rgba(11, 134, 184, 0.06);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}
.pl-connect:hover { background: rgba(11, 134, 184, 0.14); border-color: rgba(11, 134, 184, 0.45); }

/* Highlighted 1-month review-access card (international view) */
.price-trial {
  padding: 1.6rem 1.5rem; display: flex; flex-direction: column; gap: 1.1rem;
  border-color: rgba(11, 134, 184, 0.35);
  background:
    radial-gradient(120% 80% at 100% 0%, rgba(11, 134, 184, 0.08), transparent 60%),
    var(--panel-solid);
}
.price-trial__tag {
  display: inline-block; font-family: var(--font-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--cyan);
}
.price-trial__lead { color: var(--ink); font-size: 0.96rem; margin: 0.55rem 0 0; }
.price-trial__lead a { color: var(--cyan); font-weight: 600; }
.price-trial__body { color: var(--ink-soft); font-size: 0.88rem; margin: 0.55rem 0 0; }
.price-trial__main { min-width: 0; }
.price-trial__aside { display: flex; flex-direction: column; align-items: flex-start; gap: 0.5rem; }
.price-trial__price { font-size: 2.3rem; font-weight: 800; color: var(--ink); line-height: 1; }
.price-trial__name { font-weight: 600; color: var(--ink-soft); font-size: 0.86rem; }
.price-trial__btn { align-self: flex-start; margin-top: 0.2rem; }

/* Wide horizontal variant — India view, full-width below the two columns */
.price-trial--wide {
  margin-top: 1rem;
  flex-direction: row; align-items: center; justify-content: space-between;
  gap: 1.8rem; flex-wrap: wrap;
}
.price-trial--wide .price-trial__main { flex: 1 1 360px; }
.price-trial--wide .price-trial__aside { flex: 0 0 auto; align-items: flex-end; }
.price-trial--wide .price-trial__name { text-align: right; }
.price-trial--wide .price-trial__btn { align-self: flex-end; }
@media (max-width: 560px) {
  .price-trial--wide .price-trial__aside { align-items: flex-start; }
  .price-trial--wide .price-trial__name { text-align: left; }
  .price-trial--wide .price-trial__btn { align-self: flex-start; }
}

.price-foot { margin: 1.15rem 0 0; color: var(--ink-soft); font-size: 0.92rem; }
.price-foot strong { color: var(--ink); }

/* "Don't see your exact mix?" — highlighted custom-plan callout (cyan accent,
   styled like the impersonator notice). */
.price-note {
  margin-top: 1.2rem;
  padding: 1.15rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.4rem; flex-wrap: wrap;
  border-left: 3px solid var(--cyan);
  background:
    radial-gradient(120% 120% at 0% 0%, rgba(11, 134, 184, 0.07), transparent 60%),
    var(--panel-solid);
}
.price-note__main { flex: 1 1 320px; min-width: 0; }
.price-note__title {
  display: block; margin-bottom: 0.3rem;
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--cyan); font-weight: 600;
}
.price-note p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; line-height: 1.55; }
.price-note__btn.btn--cta {
  flex: 0 0 auto;
  padding: 0.5rem 1.05rem; font-size: 0.85rem;
  background: var(--green); border-color: var(--green);
  box-shadow: 0 6px 16px -8px rgba(111, 154, 31, 0.55);
}
.price-note__btn.btn--cta:hover { background: var(--green-bright); border-color: var(--green-bright); color: #fff; box-shadow: 0 9px 20px -9px rgba(111, 154, 31, 0.6); }
@media (max-width: 560px) { .price-note__btn { width: 100%; text-align: center; } }

/* "Please contact for access" + payment methods, above the channel cards */
.access-head { margin-top: 3rem; text-align: center; }
.access-head__title { font-size: 1.4rem; color: var(--ink); margin: 0.25rem 0 1rem; }
.pay-methods {
  display: flex; align-items: center; justify-content: center;
  gap: 0.75rem; flex-wrap: wrap;
}
.pay-methods__label {
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint);
}
.pay-methods__list { list-style: none; display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; padding: 0; margin: 0; }
.pay-methods__list li {
  font-size: 0.82rem; font-weight: 600; color: var(--ink-soft);
  background: var(--panel-solid); border: 1px solid var(--stroke);
  border-radius: 999px; padding: 0.36rem 0.85rem;
}
.pay-methods__more { border-style: dashed !important; color: var(--ink-faint) !important; }
.pay-methods--standalone { margin-top: 1.8rem; }

.channel-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (max-width: 920px) {
  .channel-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .channel-grid { grid-template-columns: 1fr; }
}
.channel {
  padding: 1.15rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.95rem;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
}
.channel:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(14, 143, 184, 0.4);
}
/* Icon tile — consistent size for every channel (png logos & svgs alike) */
.channel__icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--stroke);
  overflow: hidden;
}
.channel__icon img { width: 34px; height: 34px; object-fit: contain; display: block; }
.channel__icon--svg { color: var(--cyan); }
.channel__icon--svg svg { width: 26px; height: 26px; }
.channel__icon--tv { color: #131722; }
.channel__icon--tv svg { width: 30px; height: auto; }
.channel__icon--tv svg path,
.channel__icon--tv svg circle { fill: currentColor; }
/* Text block */
.channel__text { display: flex; flex-direction: column; gap: 0.2rem; min-width: 0; }
.channel__name {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.channel__value { font-size: 1.02rem; font-weight: 600; color: var(--ink); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; line-height: 1.25; }
/* Trailing arrow nudges on hover */
.channel__arrow {
  margin-left: auto;
  align-self: center;
  color: var(--ink-faint);
  font-size: 1.05rem;
  transition: transform 0.25s var(--ease), color 0.25s var(--ease);
}
.channel:hover .channel__arrow { color: var(--cyan); transform: translateX(4px); }
.callout {
  padding: 1.6rem 1.8rem;
  margin-top: 2.4rem;
  border-left: 3px solid var(--amber);
}
.callout h3 { color: var(--amber); }

/* ==========================================================================
   Footer + disclaimer
   ========================================================================== */
.site-footer {
  border-top: 1px solid var(--stroke);
  background: linear-gradient(180deg, var(--bg-2), #e7eef6);
  padding-top: 3rem;
  margin-top: 2rem;
}
.site-footer__grid {
  width: min(100% - 2.4rem, var(--maxw));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.4rem;
  border-bottom: 1px solid var(--stroke);
}
.site-footer__tag { color: var(--ink-soft); font-size: 0.95rem; margin: 0.6rem 0; }
.site-footer__pill {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.dot { width: 8px; height: 8px; border-radius: 50%; display: inline-block; }
.dot--green { background: var(--green); box-shadow: 0 0 8px rgba(6, 179, 107, 0.6); }
.site-footer h3 {
  font-family: var(--font-mono);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.5rem; }
.site-footer__nav a,
.site-footer__contact a { color: var(--ink-soft); }
.site-footer__nav a:hover,
.site-footer__contact a:hover { color: var(--cyan); }

.disclaimer {
  width: min(100% - 2.4rem, var(--maxw));
  margin: 1.8rem auto;
  padding: 1.4rem 1.6rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-radius: var(--radius-sm);
}
/* Beware-of-impersonators notice — last block in the footer. Matches the
   disclaimer box, with the amber callout accent. */
.footer-warn {
  width: min(100% - 2.4rem, var(--maxw));
  margin: 0 auto 2.4rem;
  padding: 1.2rem 1.5rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--stroke);
  border-left: 3px solid var(--amber);
  border-radius: var(--radius-sm);
}
.footer-warn__title {
  color: var(--amber);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 0.5rem;
}
.footer-warn p { font-size: 0.82rem; line-height: 1.7; color: var(--ink-soft); margin: 0; }
.footer-warn p strong { color: var(--ink); }
.disclaimer__heading {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--amber);
  margin-bottom: 0.8rem;
}
.disclaimer p {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--ink-faint);
  margin-bottom: 0.7rem;
}
.disclaimer p:last-child { margin-bottom: 0; }
.disclaimer__subheading {
  font-size: 0.8rem;
  font-family: var(--font-mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 1.4rem 0 0.7rem;
}
.disclaimer__channels {
  list-style: none;
  padding: 0;
  margin: 0 0 0.7rem;
  display: grid;
  gap: 0.35rem;
}
.disclaimer__channels li {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.disclaimer__channels a { color: var(--cyan); }
.site-footer__legal {
  width: min(100% - 2.4rem, var(--maxw));
  margin: 0 auto;
  padding: 1.2rem 0 2.4rem;
}
.site-footer__legal p { font-size: 0.76rem; color: var(--ink-faint); margin: 0; }

/* ==========================================================================
   Reveal-on-scroll
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
.no-js .reveal { opacity: 1; transform: none; }

/* ==========================================================================
   404
   ========================================================================== */
.error-page { min-height: 60vh; display: grid; place-items: center; text-align: center; }
.error-page .code {
  font-family: var(--font-mono);
  font-size: clamp(4rem, 18vw, 9rem);
  font-weight: 700;
  background: linear-gradient(120deg, var(--red), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 920px) {
  .hero__grid,
  .scrolly { grid-template-columns: 1fr; }
  .scrolly__viz { position: relative; top: 0; height: 56vh; margin-bottom: 1rem; }
  .scrolly__steps { gap: 30vh; padding: 6vh 0 20vh; }
  .pillars,
  .offer-grid,
  .loadout,
  .controls-map { grid-template-columns: 1fr; }
  .controls-map { grid-template-columns: 1fr 1fr; }
  .site-footer__grid { grid-template-columns: 1fr; gap: 1.6rem; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(247, 250, 253, 0.98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--stroke);
    box-shadow: var(--shadow);
    transform: translateY(-130%);
    transition: transform 0.35s var(--ease);
    padding: 1rem 1.2rem 1.4rem;
  }
  .primary-nav.is-open { transform: none; }
  .primary-nav ul { flex-direction: column; align-items: stretch; gap: 0.2rem; }
  .primary-nav a { padding: 0.8rem 0.6rem; font-size: 1.05rem; }
  .primary-nav a.is-active::after { display: none; }
  .primary-nav__cta { margin: 0.6rem 0 0; }
  .primary-nav__cta .btn { width: 100%; justify-content: center; }
  .offer-grid { grid-template-columns: 1fr; }
  .controls-map { grid-template-columns: 1fr; }
}

/* ==========================================================================
   Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .step { opacity: 1; transform: none; }
}

/* ==========================================================================
   How It Works — Bias Engine (scoped under .hiw to avoid global clashes)
   ========================================================================== */
.hiw { position: relative; }
.hiw .kick { font-size: 11px; letter-spacing: .42em; color: var(--acc); text-transform: uppercase; display: flex; align-items: center; gap: 10px; font-weight: 600; }
.hiw .kick .live { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); animation: bePulse 1.6s infinite; }
@keyframes bePulse { 0% { box-shadow: 0 0 0 0 rgba(111,154,31,.45); } 70% { box-shadow: 0 0 0 9px rgba(111,154,31,0); } 100% { box-shadow: 0 0 0 0 rgba(111,154,31,0); } }
.hiw .hiw-title { font-weight: 600; letter-spacing: -.02em; font-size: clamp(26px, 4.6vw, 44px); line-height: 1.12; margin: 12px 0 12px; color: var(--ink); }
.hiw .lede { color: var(--muted); max-width: 84ch; font-size: 0.91rem; }
.hiw .lede b { color: var(--ink); font-weight: 600; }

.hiw .explain { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 14px; margin: 22px 0 4px; }
.hiw .step { opacity: 1; transform: none; background: var(--panel); border: 1px solid var(--edge); border-radius: 12px; padding: 15px 16px; box-shadow: var(--shadow); }
.hiw .step .n { font-weight: 800; font-size: 14px; color: var(--cyan); background: rgba(11,134,184,.12); width: 28px; height: 28px; border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 9px; }
.hiw .step h4 { font-size: 12.5px; font-weight: 700; margin-bottom: 5px; letter-spacing: -.01em; }
.hiw .step p { font-size: 11px; color: var(--muted); line-height: 1.55; margin: 0; }
.hiw .step p b { color: var(--ink); font-weight: 600; }

.hiw .engine { background: linear-gradient(180deg, var(--panel), var(--panel2)); border: 1px solid var(--edge); border-radius: 14px; margin: 22px 0; overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.hiw .ehead { padding: 16px 22px 12px; border-bottom: 1px solid var(--edge); display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; }
.hiw .ehead h2 { font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.hiw .badge { font-size: 9.5px; letter-spacing: .12em; color: var(--muted); border: 1px solid var(--edge); padding: 4px 10px; border-radius: 20px; text-transform: uppercase; background: var(--panel2); }
.hiw .cyc { margin-left: auto; font-size: 10.5px; color: var(--faint); }
.hiw .cyc b { color: var(--cyan); }
.hiw .stage { position: relative; background: #fff; overflow: hidden; }
.hiw .stage::before { content: ""; position: absolute; right: 18px; bottom: 14px; width: 150px; height: 150px; z-index: 0; pointer-events: none; background-image: url("/img/brand-logo.jpeg"); background-repeat: no-repeat; background-position: bottom right; background-size: contain; opacity: .5; }
.hiw .stage svg { position: relative; z-index: 1; }
.hiw svg { display: block; width: 100%; overflow: visible; }

.hiw .ctrls { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; padding: 13px 22px; border-top: 1px solid var(--edge); background: rgba(0,0,0,.015); }
.hiw .btn { display: inline-flex; align-items: center; background: var(--panel); border: 1px solid var(--edge2); color: var(--ink); font-family: inherit; font-size: 10.5px; letter-spacing: .06em; text-transform: uppercase; padding: 9px 15px; border-radius: 7px; cursor: pointer; transition: .16s; font-weight: 500; box-shadow: none; }
.hiw .btn:hover { border-color: var(--acc); color: var(--acc); transform: none; }
.hiw .btn.primary { border-color: var(--acc); color: #fff; background: var(--acc); }
.hiw .btn.paused { border-color: var(--gold); color: #fff; background: var(--gold); }
.hiw .ctl { display: flex; flex-direction: column; gap: 5px; min-width: 130px; }
.hiw .ctl label { font-size: 9px; letter-spacing: .09em; text-transform: uppercase; color: var(--muted); }
.hiw .ctl .v { color: var(--acc); font-weight: 600; }
.hiw input[type=range] { -webkit-appearance: none; appearance: none; height: 5px; border-radius: 3px; background: var(--edge2); outline: none; cursor: pointer; }
.hiw input[type=range]::-webkit-slider-thumb { -webkit-appearance: none; width: 15px; height: 15px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 0 4px rgba(111,154,31,.16); cursor: grab; }
.hiw input[type=range]::-moz-range-thumb { width: 15px; height: 15px; border: none; border-radius: 50%; background: var(--acc); cursor: grab; }

.hiw .tray { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.hiw .tray.open { max-height: 420px; border-top: 1px solid var(--edge); }
.hiw .tray-inner { padding: 16px 22px; }
.hiw .tray h3 { font-size: 12px; font-weight: 700; color: var(--gold); letter-spacing: .02em; margin-bottom: 4px; }
.hiw .tray p { font-size: 11px; color: var(--muted); margin-bottom: 12px; max-width: 80ch; }
.hiw .tray p b { color: var(--ink); font-weight: 600; }
.hiw .conds { display: flex; flex-wrap: wrap; gap: 8px; }
.hiw .cond { font-size: 10.5px; color: var(--muted); border: 1px solid var(--edge2); padding: 7px 12px; border-radius: 8px; cursor: pointer; transition: .14s; display: flex; align-items: center; gap: 7px; background: var(--panel); }
.hiw .cond i { width: 8px; height: 8px; border-radius: 3px; background: var(--faint); transition: .14s; }
.hiw .cond.on { color: var(--ink); border-color: var(--acc); background: rgba(111,154,31,.07); }
.hiw .cond.on i { background: var(--acc); }
.hiw .cond.veto.on { border-color: var(--neg); background: rgba(240,56,107,.07); }
.hiw .cond.veto.on i { background: var(--neg); }
.hiw .riskrow { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 16px; align-items: center; }

.hiw .readouts { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 1px; background: var(--edge); border-top: 1px solid var(--edge); }
.hiw .ro { background: var(--panel); padding: 13px 18px; }
.hiw .ro .lab { font-size: 9px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.hiw .ro .big { font-weight: 700; font-size: 21px; margin-top: 3px; }
.hiw .ro .sub { font-size: 10px; color: var(--faint); margin-top: 1px; }

.hiw .legend { display: flex; flex-wrap: wrap; gap: 7px 16px; padding: 11px 22px; border-top: 1px solid var(--edge); font-size: 10px; color: var(--muted); }
.hiw .legend span { display: inline-flex; align-items: center; gap: 6px; }
.hiw .sw { width: 15px; height: 3px; border-radius: 2px; }
.hiw .dt { width: 9px; height: 9px; border-radius: 50%; }
.hiw text { font-family: var(--font-sans); }
.hiw .laylab { fill: var(--faint); font-size: 9px; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; }
.hiw .nlabel { fill: var(--ink); font-size: 9px; font-weight: 600; }
.hiw .nsub { fill: var(--faint); font-size: 8px; }
.hiw .wnum { fill: var(--cyan); font-size: 9px; font-weight: 700; paint-order: stroke; stroke: #fff; stroke-width: 2.4px; stroke-linejoin: round; }
.hiw .glow { filter: drop-shadow(0 0 4px currentColor); }
.hiw .hiw-note { color: var(--faint); font-size: 10.5px; line-height: 1.7; margin-top: 14px; }
.hiw .hiw-note b { color: var(--muted); }

/* ==========================================================================
   Nav dropdown + attention-seeking CTA
   ========================================================================== */
.primary-nav .has-sub { position: relative; }
.primary-nav .has-sub > a { display: inline-flex; align-items: center; gap: 4px; }
.primary-nav .caret { transition: transform 0.2s var(--ease); opacity: 0.7; }
.primary-nav .has-sub:hover .caret,
.primary-nav .has-sub:focus-within .caret { transform: rotate(180deg); }
.primary-nav .subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 190px;
  list-style: none;
  margin: 0;
  padding: 6px;
  background: var(--panel-solid);
  border: 1px solid var(--stroke);
  border-radius: 12px;
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  z-index: 120;
}
.primary-nav .has-sub:hover .subnav,
.primary-nav .has-sub:focus-within .subnav { opacity: 1; visibility: visible; transform: none; }
.primary-nav .subnav li a {
  display: block;
  padding: 0.55rem 0.8rem;
  border-radius: 8px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}
.primary-nav .subnav li a:hover,
.primary-nav .subnav li a.is-active { background: rgba(111, 154, 31, 0.1); color: var(--acc); }

/* clean solid-blue pill CTA (Google-style) */
.btn--cta {
  color: #fff;
  border: 0;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  background: #3b6ef5;
  box-shadow: 0 6px 16px -6px rgba(59, 110, 245, 0.55);
  transition: background 0.18s var(--ease), box-shadow 0.2s var(--ease), transform 0.18s var(--ease);
}
.btn--cta:hover {
  color: #1e2f4d;
  background: #2f5fe0;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(59, 110, 245, 0.6);
}
.btn--cta:active { transform: translateY(0); background: #2a55cf; }
/* CTA text: white by default, navy on hover (beats .primary-nav a colour) */
.primary-nav .btn--cta { color: #fff; }
.primary-nav .btn--cta:hover { color: #1e2f4d; }

@media (max-width: 760px) {
  .primary-nav .subnav {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: 0;
    border-left: 2px solid var(--stroke);
    border-radius: 0;
    margin: 0 0 0.3rem 0.8rem;
    padding: 0;
    min-width: 0;
  }
  .primary-nav .caret { display: none; }
}

/* ==========================================================================
   Research · Market Pulse
   ========================================================================== */
.research-hero { max-width: 80ch; margin-bottom: 1.8rem; }
.research-hero .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 8px var(--acc); }

.rstats {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--edge); border: 1px solid var(--edge); border-radius: var(--radius); overflow: hidden;
}
.rstats li { background: var(--panel); padding: 1.1rem 1.2rem; display: flex; flex-direction: column; gap: 3px; }
.rstats__n { font-size: 1.4rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.rstats__l { font-size: 0.78rem; color: var(--muted); }

/* shared chips */
.rcard__meta { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 0.5rem; }
.rtag { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); background: rgba(11,134,184,0.1); border-radius: 999px; padding: 3px 9px; }
.rsent { font-size: 0.66rem; font-weight: 700; letter-spacing: 0.04em; border-radius: 999px; padding: 3px 9px; }
.rsent--up { color: var(--green); background: rgba(111,154,31,0.12); }
.rsent--down { color: var(--neg); background: rgba(240,56,107,0.12); }
.rsent--mixed { color: #b07e00; background: rgba(224,164,0,0.14); }
.rchange { font-family: var(--font-mono); font-weight: 700; font-size: 0.86rem; margin-left: auto; }
.rchange--up { color: var(--green); }
.rchange--down { color: var(--neg); }
.rchange--mixed { color: #b07e00; }
.rmkt { font-size: 0.78rem; color: var(--ink-soft); font-weight: 600; }
.rmins { font-size: 0.74rem; color: var(--faint); }
.rcard__foot { display: flex; align-items: center; justify-content: space-between; gap: 0.6rem; margin-top: 0.8rem; }
.rchip { font-size: 0.7rem; color: var(--muted); border: 1px solid var(--edge); border-radius: 999px; padding: 3px 10px; }
.rtags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 0.8rem; }

/* featured */
.rfeat { display: grid; grid-template-columns: 1.05fr 1fr; overflow: hidden; }
.rfeat__chart { position: relative; min-height: 300px; background: linear-gradient(180deg, var(--panel2), #eef3f8); border-right: 1px solid var(--edge); }
.rfeat__chart svg { position: absolute; inset: 0; }
.rfeat__badge { position: absolute; top: 14px; left: 14px; z-index: 2; display: inline-flex; align-items: center; gap: 7px; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.05em; color: var(--ink); background: rgba(255,255,255,0.9); border: 1px solid var(--edge); border-radius: 999px; padding: 5px 11px; backdrop-filter: blur(6px); }
.rfeat__badge .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--acc); box-shadow: 0 0 8px var(--acc); }
.rfeat__body { padding: clamp(1.4rem, 3vw, 2.2rem); }
.rprompt { font-style: italic; color: var(--cyan); font-size: 0.92rem; margin: 0 0 0.4rem; }
.rfeat__title { font-size: clamp(1.3rem, 2.4vw, 1.8rem); font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.7rem; }
.rfeat__summary { font-size: 0.96rem; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* report grid */
.rgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(330px, 1fr)); gap: 1.1rem; }
.rcard { display: flex; flex-direction: column; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.rcard:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.rcard__chart { height: 96px; border-bottom: 1px solid var(--edge); background: var(--panel2); }
.rcard__chart svg { display: block; }
.rcard__body { padding: 1.1rem 1.2rem 1.2rem; display: flex; flex-direction: column; flex: 1; }
.rcard__title { font-size: 1.06rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.4rem; line-height: 1.3; }
.rcard__summary { font-size: 0.88rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

@media (max-width: 820px) {
  .rstats { grid-template-columns: 1fr 1fr; }
  .rfeat { grid-template-columns: 1fr; }
  .rfeat__chart { min-height: 220px; border-right: 0; border-bottom: 1px solid var(--edge); }
}

/* ==========================================================================
   Signal charts slider (real TradingView screenshots)
   ========================================================================== */
.cslider { position: relative; padding: 0; outline: none; }
.cslider__viewport { overflow: hidden; border-radius: inherit; }
.cslider__track { display: flex; transition: transform 0.55s var(--ease); will-change: transform; }
.cslide { min-width: 100%; margin: 0; }
.cslide img { width: 100%; height: auto; display: block; background: #fff; }
.cslide__cap {
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  padding: 11px 16px; font-size: 0.86rem; color: var(--ink-soft);
  border-top: 1px solid var(--edge); background: var(--panel2);
}
.cslide__cap b { color: var(--ink); font-weight: 700; }
.cslide__cap .cslide__chip {
  font-size: 0.64rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--acc); background: rgba(111,154,31,0.12); border-radius: 999px; padding: 3px 9px;
}
.cslide__cap .cslide__note { margin-left: auto; font-size: 0.76rem; color: var(--faint); }

.cslider__nav {
  position: absolute; top: 42%; transform: translateY(-50%); z-index: 4;
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%;
  background: rgba(255,255,255,0.82); border: 1px solid var(--edge); color: var(--ink);
  box-shadow: var(--shadow); cursor: pointer;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: transform 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.cslider__nav:hover { transform: translateY(-50%) scale(1.08); color: var(--cyan); box-shadow: var(--glow-cyan); }
.cslider__nav--prev { left: 12px; }
.cslider__nav--next { right: 12px; }

.cslider__dots { display: flex; justify-content: center; gap: 8px; padding: 12px; }
.cslider__dots button {
  width: 8px; height: 8px; border-radius: 999px; border: 0; padding: 0;
  background: var(--edge2); cursor: pointer; transition: width 0.2s var(--ease), background 0.2s var(--ease);
}
.cslider__dots button.is-active { width: 22px; background: var(--cyan); }

@media (max-width: 600px) { .cslider__nav { width: 38px; height: 38px; } .cslide__cap .cslide__note { display: none; } }

/* --- premium slider motion (overrides the base slider rules above) --- */
.cslider__track { transition: transform 0.7s var(--ease); }
.cslide img { will-change: transform; }
.cslide.is-active img { animation: chartReveal 1.15s var(--ease) both; }
@keyframes chartReveal {
  0%   { transform: scale(1.06); opacity: 0.25; filter: blur(3px); }
  45%  { opacity: 1; filter: blur(0); }
  100% { transform: scale(1); opacity: 1; filter: blur(0); }
}
/* slider column inside the Indicator 1 grid */
.ind-slider-col { display: flex; flex-direction: column; gap: 0.6rem; }
.ind-slider-note { font-size: 0.78rem; color: var(--faint); margin: 0; text-align: center; }
.cslide__cap { opacity: 0; transform: translateY(7px); transition: opacity 0.5s var(--ease), transform 0.5s var(--ease); }
.cslide.is-active .cslide__cap { opacity: 1; transform: none; transition-delay: 0.12s; }
.cslider__dots button { position: relative; overflow: hidden; }
.cslider__dots button.is-active { width: 26px; background: var(--edge2); }
.cslider__dots button.is-active::after {
  content: ''; position: absolute; inset: 0; width: 0;
  background: linear-gradient(90deg, var(--green), var(--cyan));
  border-radius: inherit; animation: dotFill var(--dwell, 4.8s) linear forwards;
}
@keyframes dotFill { from { width: 0; } to { width: 100%; } }
@media (prefers-reduced-motion: reduce) {
  .cslide.is-active img { animation: none; }
  .cslide__cap { opacity: 1; transform: none; }
  .cslider__dots button.is-active::after { animation: none; width: 100%; }
}

/* --- feature row above the signal-charts slider --- */
.feat-row {
  list-style: none; padding: 0; margin: 0 0 1.5rem;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 10px;
}
.feat {
  display: flex; align-items: center; gap: 11px;
  padding: 12px 14px; border: 1px solid var(--edge); border-radius: 12px;
  background: var(--panel); box-shadow: var(--shadow-sm);
  transition: transform 0.2s var(--ease), border-color 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feat:hover { transform: translateY(-3px); border-color: rgba(111,154,31,0.4); box-shadow: var(--shadow); }
.feat__ic {
  width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center;
  border-radius: 9px; background: rgba(111,154,31,0.12); color: var(--acc);
}
.feat__ic svg { width: 17px; height: 17px; }
.feat b { display: block; font-size: 0.9rem; color: var(--ink); letter-spacing: -0.005em; line-height: 1.2; }
.feat span { font-size: 0.76rem; color: var(--muted); }

/* ==========================================================================
   Indicator explainer (marker map + legend)
   ========================================================================== */
.explain-wrap { display: grid; gap: 1.4rem; }
.marker-fig { margin: 0; padding: 0.7rem; }
.marker-fig img { width: 100%; height: auto; display: block; border-radius: var(--radius-sm); border: 1px solid var(--edge); }
.marker-fig figcaption { font-size: 0.78rem; color: var(--faint); text-align: center; margin-top: 0.6rem; }

.legend-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.legend-col h4 {
  font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase;
  margin: 0 0 0.7rem; padding-bottom: 0.5rem; border-bottom: 1px solid var(--edge);
}
.legend-col.liq h4 { color: var(--cyan); }
.legend-col.dlt h4 { color: var(--green); }
.legend-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.legend-list li { display: flex; gap: 10px; align-items: baseline; }
.legend-list .mk {
  flex: 0 0 24px; width: 24px; height: 24px; display: grid; place-items: center; border-radius: 7px;
  font-size: 0.74rem; font-weight: 800; color: #fff; font-style: italic;
}
.legend-list .mk--pos { background: #4caf50; }
.legend-list .mk--neg { background: #ef3b54; }
.legend-list .mk--unc { background: #e0a400; }
.legend-list .mk--cyan { background: #00bcd4; }
.legend-list .mk--mag { background: #c44fe0; }
.legend-list .mk--slate { background: #7d8aa0; }
.legend-list .lg-t { font-size: 0.88rem; color: var(--ink); }
.legend-list .lg-t b { font-weight: 700; }
.legend-list .lg-t span { color: var(--muted); }

.play-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.play { padding: 1.2rem 1.3rem; border-left: 3px solid var(--edge2); }
.play.is-long { border-left-color: var(--green); }
.play.is-short { border-left-color: var(--neg); }
.play.is-rev { border-left-color: var(--cyan); }
.play.is-off { border-left-color: var(--amber, #e0a400); }
.play h4 { font-size: 0.98rem; margin: 0 0 0.4rem; }
.play p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
.play .play__entry { display: block; margin-top: 0.5rem; font-size: 0.78rem; color: var(--faint); }

.notes-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1rem; }
.note-card { padding: 1.1rem 1.2rem; }
.note-card h4 { font-size: 0.82rem; font-family: var(--font-mono); letter-spacing: 0.08em; text-transform: uppercase; color: var(--cyan); margin: 0 0 0.4rem; }
.note-card p { font-size: 0.84rem; color: var(--ink-soft); margin: 0; line-height: 1.55; }
@media (max-width: 760px) { .legend-grid { grid-template-columns: 1fr; } }

/* ==========================================================================
   Liquidity & Delta — adaptive system map
   ========================================================================== */
.ldmap-wrap { display: grid; grid-template-columns: 1.55fr 1fr; gap: 1.1rem; align-items: stretch; }
.ldmap { padding: 0.5rem; }
.ldmap svg { width: 100%; height: clamp(420px, 52vw, 560px); display: block; touch-action: none; }
.ldmap-info { padding: 1.3rem 1.4rem; display: flex; flex-direction: column; }
.ldmap-info__tag { font-family: var(--font-mono); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; margin-bottom: 0.5rem; }
.ldmap-info__name { font-size: 1.15rem; font-weight: 700; letter-spacing: -0.01em; margin: 0 0 0.6rem; transition: color 0.2s var(--ease); }
.ldmap-info__desc { font-size: 0.9rem; color: var(--ink-soft); line-height: 1.6; margin: 0; min-height: 6.5em; }
.ldmap-legend { list-style: none; padding: 0.9rem 0 0; margin: 0.9rem 0 0; border-top: 1px solid var(--edge); display: grid; grid-template-columns: 1fr 1fr; gap: 0.5rem 0.9rem; }
.ldmap-legend li { font-size: 0.78rem; color: var(--muted); display: inline-flex; align-items: center; gap: 0.5rem; }
.ldmap-legend .lg-dot { width: 9px; height: 9px; border-radius: 50%; display: inline-block; }
@media (max-width: 820px) { .ldmap-wrap { grid-template-columns: 1fr; } .ldmap-info__desc { min-height: 0; } }

/* exact-hex marker chips + hex code label in the explainer legend */
.legend-list .hex {
  font-family: var(--font-mono); font-size: 0.64rem; color: var(--muted);
  background: var(--panel2); border: 1px solid var(--edge); border-radius: 5px;
  padding: 1px 5px; margin-left: 5px; vertical-align: middle; white-space: nowrap;
}

/* ==========================================================================
   Footer official-channels (with icons)
   ========================================================================== */
.foot-channels { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.55rem; }
.foot-channels a { display: inline-flex; align-items: center; gap: 0.65rem; color: var(--ink-soft); font-size: 0.88rem; }
.foot-channels a:hover { color: var(--cyan); }
.foot-channels a b { color: var(--ink); font-weight: 600; }
.foot-channels a:hover b { color: var(--cyan); }
.foot-channels .ci {
  flex: 0 0 26px; width: 26px; height: 26px; border-radius: 7px; overflow: hidden;
  display: grid; place-items: center; background: var(--panel); border: 1px solid var(--stroke);
}
.foot-channels .ci img { width: 100%; height: 100%; object-fit: cover; display: block; }
.foot-channels .ci--svg { color: var(--cyan); }
.foot-channels .ci--svg svg { width: 15px; height: 15px; }
