/* ============================================================
   explore.css — shared styles for the Explore hub: the gallery
   (/explore/) and the six templated lens pages (/explore/<slug>/).
   Self-contained (tokens inlined) so each page just links this file.
   Matches "The Tracker" homepage language: navy ink, warm paper,
   mint accent, Inter + JetBrains Mono.
   ============================================================ */
:root {
  --ink:     #03012D;
  --text:    #20242B;
  --paper:   #F6F5F1;
  --paper-2: #FBFAF7;
  --card:    #FFFFFF;

  --n-50:  #F6F5F1;
  --n-100: #EDECE7;
  --n-200: #E0DFD8;
  --n-300: #C9C8BF;
  --n-400: #9C9B91;
  --n-500: #6F6E65;
  --n-600: #514F47;
  --n-700: #393831;

  --accent:  #2FA877;   /* mint — matches the homepage live accent */
  --coral:   #C44A52;
  --partyR:  #B3514E;
  --partyD:  #3F6BB0;

  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;

  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-pill: 999px;

  --sh-sm: 0 1px 2px rgba(3,1,45,0.06), 0 1px 1px rgba(3,1,45,0.04);
  --sh-md: 0 4px 14px rgba(3,1,45,0.08), 0 1px 2px rgba(3,1,45,0.04);
  --sh-lg: 0 16px 40px rgba(3,1,45,0.12), 0 2px 6px rgba(3,1,45,0.05);

  --accent-soft: color-mix(in srgb, var(--accent) 14%, transparent);
  --accent-ink: color-mix(in srgb, var(--accent) 80%, var(--ink));
}

html, body { margin: 0; padding: 0; background: var(--paper); }

.ex-page {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--paper);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.ex-page *, .ex-page *::before, .ex-page *::after { box-sizing: border-box; }
.ex-page h1, .ex-page h2, .ex-page h3, .ex-page h4, .ex-page p, .ex-page ul { margin: 0; }
.ex-page ul { list-style: none; padding: 0; }
.ex-page a { color: inherit; text-decoration: none; }
.ex-page button { font-family: inherit; cursor: pointer; }
.ex-mono { font-family: var(--font-mono); }
.ex-tnum { font-variant-numeric: tabular-nums; }
/* icon wrappers hold an inline <svg>; make them inline-flex so the glyph centers
   on the text instead of sitting on the baseline (with descender space below). */
.ex-page [data-icon] { display: inline-flex; align-items: center; }

.ex-container { max-width: 1180px; margin: 0 auto; padding: 0 clamp(22px, 4vw, 48px); }
/* clamp grid children so nowrap content can't blow out a track / cause sideways scroll */
.ex-grid > *, .ex-lhero-grid > *, .ex-meaning-grid > *, .ex-nl-inner > *, .ex-compare-grid > * { min-width: 0; }

/* ---------------- NAV ---------------- */
.ex-nav { display: flex; align-items: center; justify-content: space-between; height: 70px; border-bottom: 1px solid var(--n-200); background: var(--paper); }
.ex-brand { display: inline-flex; align-items: center; gap: 9px; font-weight: 700; font-size: 18px; letter-spacing: -0.02em; color: var(--ink); }
.ex-nav-links { display: flex; align-items: center; gap: 28px; font-size: 14px; font-weight: 500; }
.ex-nav-links a { color: var(--n-600); }
.ex-nav-links a:hover { color: var(--ink); }
.ex-nav-links a.is-active { color: var(--ink); font-weight: 700; }
.ex-btn { border: none; background: var(--accent); color: #fff; padding: 9px 18px; border-radius: var(--r-sm); font-size: 14px; font-weight: 600; transition: filter .15s; display: inline-block; }
.ex-btn:hover { filter: brightness(1.08); }
.ex-nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 8px; }
.ex-nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }
.ex-mobile-menu { display: none; }
.ex-mobile-menu.is-open { display: flex; flex-direction: column; gap: 2px; padding: 4px 0 18px; border-bottom: 1px solid var(--n-200); }
.ex-mobile-menu a { padding: 13px 4px; font-size: 15px; font-weight: 500; color: var(--n-700); border-top: 1px solid var(--n-100); }
.ex-mobile-menu .ex-btn { margin-top: 12px; align-self: flex-start; color: #fff; border-top: none; }

/* ---------------- FOOTER ---------------- */
.ex-footer { background: var(--ink); margin-top: 0; }
.ex-footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; height: 76px; flex-wrap: wrap; }
.ex-footer .ex-brand { color: #fff; }
.ex-footer-links { display: flex; gap: 22px; font-size: 13px; }
.ex-footer-links a { color: rgba(255,255,255,0.6); }
.ex-footer-links a:hover { color: #fff; }
.ex-footer-meta { font-size: 13px; color: rgba(255,255,255,0.45); }

/* shared section eyebrow */
.ex-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--n-500); margin-bottom: 16px; }

/* white visual tray — keeps light-bg lens visuals readable anywhere */
.ex-vis { background: var(--card); border: 1px solid var(--n-200); border-radius: var(--r-md); padding: 18px 20px; display: flex; align-items: center; }
.ex-chartwrap { width: 100%; }
.ex-legend { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 12px; font-size: 12.5px; color: var(--n-600); }
.ex-leg { display: inline-flex; align-items: center; gap: 7px; }
.ex-leg-sw { display: inline-block; width: 13px; height: 13px; border-radius: 3px; flex-shrink: 0; }
.ex-leg-sw.line { height: 3px; border-radius: 2px; }

/* ============================================================
   GALLERY  (/explore/)
   ============================================================ */
.ex-hero { padding: clamp(40px,5vw,68px) 0 clamp(26px,3vw,38px); }
.ex-hero h1 { font-size: clamp(34px,5vw,56px); font-weight: 800; letter-spacing: -0.035em; line-height: 1.04; color: var(--ink); max-width: 820px; margin-bottom: 22px; }
.ex-hero h1 .ex-mono { font-weight: 800; }
.ex-hero-lead { font-size: 18px; line-height: 1.6; color: var(--n-600); max-width: 620px; }
.ex-hero-stats { display: flex; gap: 28px; margin-top: 28px; flex-wrap: wrap; }
.ex-hero-stat-v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 20px; font-weight: 700; color: var(--ink); }
.ex-hero-stat-k { font-size: 12.5px; color: var(--n-500); margin-top: 2px; }

.ex-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; padding-bottom: clamp(20px,3vw,28px); }
.ex-card { display: flex; flex-direction: column; gap: 15px; background: var(--card); border: 1px solid var(--n-200); border-radius: var(--r-lg); box-shadow: var(--sh-sm); padding: 24px; transition: box-shadow .16s, transform .16s, border-color .16s; }
.ex-card:hover { box-shadow: var(--sh-md); transform: translateY(-2px); border-color: var(--n-300); }
.ex-card-head { display: flex; align-items: center; gap: 11px; }
.ex-card-icon { display: inline-flex; width: 34px; height: 34px; border-radius: 9px; align-items: center; justify-content: center; background: var(--paper-2); border: 1px solid var(--n-200); color: var(--ink); flex-shrink: 0; }
.ex-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--n-600); }
.ex-card-arrow { margin-left: auto; color: var(--n-400); font-size: 17px; }
.ex-card-figure { display: flex; align-items: baseline; gap: 9px; }
.ex-card-val { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 38px; font-weight: 700; letter-spacing: -0.03em; color: var(--ink); line-height: 0.95; white-space: nowrap; }
.ex-card-unit { font-size: 14px; font-weight: 600; color: var(--n-500); }
.ex-card-headline { font-size: 17px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); line-height: 1.2; }
.ex-card-visual { background: var(--paper-2); border-radius: var(--r-md); padding: 16px 18px; display: flex; align-items: center; min-height: 112px; }
.ex-card-take { font-size: 13.5px; color: var(--n-600); line-height: 1.55; }
.ex-card-link { font-size: 13.5px; font-weight: 700; color: var(--accent-ink); margin-top: auto; }
.ex-gallery-foot { font-size: 12.5px; color: var(--n-500); line-height: 1.6; margin: 24px 0 clamp(48px,6vw,72px); max-width: 760px; }

/* ============================================================
   LENS TEMPLATE  (/explore/<slug>/)
   ============================================================ */
/* lens strip — doubles as cross-page nav */
.ex-lensstrip { background: var(--paper-2); border-bottom: 1px solid var(--n-200); }
.ex-lensstrip-inner { display: flex; align-items: center; gap: 8px; padding: 12px 0; overflow-x: auto; }
.ex-lensstrip-label { font-size: 12.5px; color: var(--n-500); white-space: nowrap; margin-right: 4px; flex-shrink: 0; }
.ex-lenspill { display: inline-flex; align-items: center; gap: 7px; padding: 7px 13px; border-radius: var(--r-pill); white-space: nowrap; border: 1px solid var(--n-200); background: var(--card); color: var(--n-700); font-size: 12.5px; font-weight: 600; flex-shrink: 0; transition: border-color .15s, background .15s; }
.ex-lenspill:hover { border-color: var(--n-400); }
.ex-lenspill.is-active { border-color: var(--ink); background: var(--ink); color: #fff; }

/* navy hero */
.ex-lhero { background: var(--ink); position: relative; overflow: hidden; }
.ex-lhero::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.045) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.045) 1px,transparent 1px);
  background-size: 50px 50px; -webkit-mask-image: radial-gradient(120% 100% at 78% 0%, #000, transparent 72%); mask-image: radial-gradient(120% 100% at 78% 0%, #000, transparent 72%); }
.ex-lhero-inner { position: relative; padding: clamp(28px,3.5vw,44px) 0 clamp(36px,4vw,54px); }
.ex-breadcrumb { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 22px; }
.ex-breadcrumb a { color: rgba(255,255,255,0.78); }
.ex-breadcrumb a:hover { color: #fff; }
.ex-breadcrumb .sep { opacity: 0.5; margin: 0 6px; }
.ex-lhero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px,4vw,56px); align-items: center; }
.ex-lhero-eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; color: var(--accent); }
.ex-lhero-eyebrow span { font-size: 11.5px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.ex-lhero-figure { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; }
.ex-lhero-value { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: clamp(54px,9vw,108px); font-weight: 700; letter-spacing: -0.04em; color: #fff; line-height: 0.84; }
.ex-lhero-unit { font-size: 19px; font-weight: 600; color: rgba(255,255,255,0.55); }
.ex-lhero h1 { font-size: clamp(24px,3vw,34px); font-weight: 800; letter-spacing: -0.025em; color: #fff; margin-top: 22px; max-width: 460px; line-height: 1.15; }
.ex-lhero-src { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 22px; line-height: 1.5; }

/* key-figures panel (right of hero) */
.ex-keyfig { background: var(--card); border-radius: var(--r-lg); box-shadow: var(--sh-lg); padding: 6px 28px; }
.ex-keyfig-h { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--n-500); margin: 16px 0 0; }
.ex-keyfig-row { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 12px 0; border-bottom: 1px solid var(--n-200); }
.ex-keyfig-row:last-child { border-bottom: none; }
.ex-keyfig-k { font-size: 13.5px; color: var(--n-600); }
.ex-keyfig-v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 16px; font-weight: 700; color: var(--ink); white-space: nowrap; }
.ex-keyfig-row.is-hot .ex-keyfig-v { font-size: 23px; color: var(--accent-ink); }

/* body */
.ex-body { padding: clamp(40px,5vw,64px) 0; }
.ex-fullchart-wrap { margin-bottom: clamp(38px,4vw,54px); }
.ex-fullchart-cap { font-size: 13.5px; color: var(--n-500); margin-top: 14px; max-width: 740px; line-height: 1.55; }

.ex-meaning-grid { display: grid; grid-template-columns: 1.12fr 1fr; gap: clamp(36px,5vw,60px); align-items: start; }
.ex-meaning p { font-size: 17px; line-height: 1.7; color: var(--n-700); margin-bottom: 16px; }
.ex-pull { margin-top: 22px; padding: 18px 22px; border-radius: var(--r-md); background: var(--paper-2); border: 1px solid var(--n-200); border-left: 3px solid var(--accent); }
.ex-pull span { font-size: 15.5px; font-weight: 700; color: var(--ink); line-height: 1.5; }

.ex-why { display: flex; flex-direction: column; gap: 18px; }
.ex-why-item { display: flex; gap: 13px; }
.ex-why-ic { flex-shrink: 0; display: inline-flex; width: 32px; height: 32px; border-radius: 9px; align-items: center; justify-content: center; background: var(--paper-2); border: 1px solid var(--n-200); color: var(--ink); }
.ex-why-ic.coral { color: var(--coral); }
.ex-why-t { font-size: 14.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.ex-why-d { font-size: 13.5px; color: var(--n-600); line-height: 1.5; }
.ex-why-link { display: inline-block; margin-top: 6px; font-size: 13px; font-weight: 700; color: var(--accent-ink); }

/* peer bars */
.ex-peers-sec { margin-top: clamp(38px,4vw,54px); padding-top: clamp(30px,3vw,42px); border-top: 1px solid var(--n-200); }
.ex-peers-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.ex-peers-head h2 { font-size: clamp(22px,2.6vw,28px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.ex-peers-head span { font-size: 13px; color: var(--n-500); }
.ex-peers { display: flex; flex-direction: column; gap: 12px; }
.ex-peer { display: flex; align-items: center; gap: 16px; }
.ex-peer-name { width: 148px; flex-shrink: 0; font-size: 13.5px; font-weight: 600; color: var(--n-600); white-space: nowrap; }
.ex-peer.is-us .ex-peer-name { font-weight: 800; color: var(--ink); }
.ex-peer-track { flex: 1; height: 16px; background: var(--n-100); border-radius: var(--r-pill); overflow: hidden; }
.ex-peer-fill { display: block; height: 100%; background: var(--n-300); border-radius: var(--r-pill); }
.ex-peer.is-us .ex-peer-fill { background: var(--accent); }
.ex-peer-val { width: 50px; flex-shrink: 0; text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 14px; font-weight: 700; color: var(--ink); }
.ex-peer.is-us .ex-peer-val { color: var(--accent-ink); }

/* shared lens visuals (also reused on cards) */
.ex-bars { display: flex; flex-direction: column; gap: 11px; width: 100%; }
.ex-bar-row { display: flex; align-items: center; gap: 12px; }
.ex-bar-name { width: 132px; flex-shrink: 0; font-size: 13px; font-weight: 600; color: var(--ink); white-space: nowrap; display: flex; align-items: center; gap: 8px; overflow: hidden; text-overflow: ellipsis; }
.ex-bar-name .ex-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.ex-bar-name small { color: var(--n-500); font-weight: 500; }
.ex-bar-track { flex: 1; height: 13px; background: var(--n-100); border-radius: var(--r-pill); overflow: hidden; }
.ex-bar-fill { display: block; height: 100%; border-radius: var(--r-pill); }
.ex-bar-val { width: 52px; flex-shrink: 0; text-align: right; font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 13px; font-weight: 700; color: var(--ink); }
.ex-bars.compact .ex-bar-track { height: 10px; }
.ex-bars.compact .ex-bar-name { width: 92px; font-size: 11.5px; }

.ex-party-totals { display: flex; justify-content: space-between; gap: 16px; margin-bottom: 16px; }
.ex-party-head { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; }
.ex-party-head .ex-dot { width: 9px; height: 9px; border-radius: 50%; }
.ex-party-head span { font-size: 10.5px; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase; color: var(--n-600); }
.ex-party-big { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 30px; font-weight: 700; line-height: 1; }
.ex-party-bar { display: flex; height: 16px; border-radius: var(--r-pill); overflow: hidden; }
.ex-party-bar > div { height: 100%; }
.ex-party-pcts { display: flex; justify-content: space-between; margin-top: 7px; font-size: 11.5px; color: var(--n-500); font-family: var(--font-mono); }

.ex-war { width: 100%; }
.ex-war-bars { display: flex; align-items: flex-end; gap: 28px; height: 132px; }
.ex-war-col { flex: 1; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; height: 100%; }
.ex-war-val { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 19px; font-weight: 700; margin-bottom: 6px; }
.ex-war-bar { width: 100%; max-width: 86px; border-radius: 6px 6px 0 0; }
.ex-war-bar.peak { background: repeating-linear-gradient(45deg, var(--n-300), var(--n-300) 5px, var(--n-200) 5px, var(--n-200) 10px); }
.ex-war-bar.today { background: var(--coral); }
.ex-war-labels { display: flex; gap: 28px; margin-top: 9px; }
.ex-war-label { flex: 1; text-align: center; }
.ex-war-label .t { font-size: 12px; font-weight: 700; color: var(--ink); }
.ex-war-label .n { font-size: 10.5px; color: var(--n-500); margin-top: 1px; }

/* ============================================================
   NEWSLETTER MODULE (navy)
   ============================================================ */
.ex-nl { background: var(--ink); border-radius: var(--r-lg); position: relative; overflow: hidden; margin-top: clamp(40px,5vw,60px); }
.ex-nl::before { content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px,transparent 1px), linear-gradient(90deg,rgba(255,255,255,0.04) 1px,transparent 1px);
  background-size: 48px 48px; -webkit-mask-image: radial-gradient(110% 130% at 12% 50%, #000, transparent 70%); mask-image: radial-gradient(110% 130% at 12% 50%, #000, transparent 70%); }
.ex-nl-inner { position: relative; display: grid; grid-template-columns: 1fr 0.9fr; gap: clamp(32px,4vw,56px); padding: clamp(30px,3.5vw,46px); align-items: center; }
.ex-nl-eyebrow { font-size: 11px; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
.ex-nl h2 { font-size: clamp(26px,3.2vw,38px); font-weight: 800; letter-spacing: -0.025em; color: #fff; line-height: 1.08; margin-bottom: 14px; }
.ex-nl-lead { font-size: 16px; line-height: 1.6; color: rgba(255,255,255,0.66); max-width: 420px; margin-bottom: 24px; }
.ex-nl-props { display: flex; flex-direction: column; gap: 15px; margin-bottom: 26px; }
.ex-nl-prop { display: flex; gap: 12px; }
.ex-nl-prop-ic { flex-shrink: 0; display: inline-flex; width: 34px; height: 34px; border-radius: 9px; align-items: center; justify-content: center; background: color-mix(in srgb, var(--accent) 18%, transparent); color: #8DF06A; }
.ex-nl-prop-t { font-size: 14.5px; font-weight: 700; color: #fff; }
.ex-nl-prop-d { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.45; margin-top: 2px; }
.ex-nl-form { display: flex; gap: 10px; flex-wrap: wrap; }
.ex-nl-input { flex: 1; min-width: 200px; border: 1px solid rgba(255,255,255,0.2); background: rgba(255,255,255,0.06); color: #fff; border-radius: var(--r-sm); padding: 13px 15px; font-size: 15px; }
.ex-nl-input::placeholder { color: rgba(255,255,255,0.4); }
.ex-nl-input:focus { outline: none; border-color: var(--accent); }
.ex-nl-submit { border: none; background: var(--accent); color: #fff; font-weight: 700; font-size: 15px; padding: 13px 22px; border-radius: var(--r-sm); white-space: nowrap; transition: filter .15s; }
.ex-nl-submit:hover { filter: brightness(1.08); }
.ex-nl-fine { font-size: 12.5px; color: rgba(255,255,255,0.5); margin-top: 12px; }
.ex-nl-note { font-size: 12.5px; color: var(--accent); margin-top: 10px; min-height: 16px; }

/* "a peek inside" sample issue */
.ex-peek-label { font-size: 11px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); margin-bottom: 12px; }
.ex-peek { background: var(--card); border-radius: var(--r-md); box-shadow: var(--sh-lg); overflow: hidden; }
.ex-peek-h { display: flex; align-items: center; gap: 8px; padding: 13px 18px; border-bottom: 1px solid var(--n-200); }
.ex-peek-h .ex-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); }
.ex-peek-h .t { font-size: 12px; font-weight: 700; letter-spacing: 0.04em; text-transform: uppercase; color: var(--ink); }
.ex-peek-h .d { margin-left: auto; font-size: 11.5px; color: var(--n-500); white-space: nowrap; }
.ex-peek-body { padding: 16px 18px; }
.ex-peek-k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--n-500); }
.ex-peek-fig { display: flex; align-items: baseline; gap: 9px; margin-top: 4px; }
.ex-peek-fig .v { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 26px; font-weight: 700; color: var(--ink); }
.ex-peek-fig .chg { font-size: 12.5px; font-weight: 700; color: var(--coral); white-space: nowrap; }
.ex-peek-bd { margin-top: 14px; padding: 10px 12px; border-radius: 8px; background: var(--paper-2); display: flex; align-items: center; gap: 9px; }
.ex-peek-bd .tag { font-size: 9.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); background: color-mix(in srgb, var(--accent) 14%, transparent); border-radius: var(--r-pill); padding: 3px 8px; white-space: nowrap; }
.ex-peek-bd .nm { font-size: 13px; font-weight: 600; color: var(--ink); }
.ex-peek-bd .ar { margin-left: auto; color: var(--n-400); }
.ex-peek-reads-k { font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--n-500); margin: 16px 0 9px; }
.ex-peek-read { display: flex; gap: 9px; margin-bottom: 9px; }
.ex-peek-read .ex-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.ex-peek-read .tx { font-size: 12.5px; color: var(--n-700); line-height: 1.4; }
.ex-peek-read .tx .src { color: var(--n-400); font-weight: 600; }
.ex-peek-foot { padding: 11px 18px; border-top: 1px solid var(--n-200); font-size: 12px; font-weight: 600; color: var(--accent-ink); }

/* compare another lens */
.ex-compare { margin-top: clamp(40px,5vw,60px); padding-top: clamp(32px,4vw,44px); border-top: 1px solid var(--n-200); }
.ex-compare-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.ex-compare-head h2 { font-size: clamp(22px,2.6vw,28px); font-weight: 800; letter-spacing: -0.025em; color: var(--ink); }
.ex-compare-head a { font-size: 13.5px; font-weight: 700; color: var(--accent-ink); }
.ex-compare-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.ex-compare-card { display: flex; flex-direction: column; gap: 10px; padding: 18px; border: 1px solid var(--n-200); border-radius: var(--r-md); background: var(--card); transition: border-color .15s, box-shadow .15s; }
.ex-compare-card:hover { border-color: var(--n-300); box-shadow: var(--sh-sm); }
.ex-compare-ic { display: inline-flex; width: 30px; height: 30px; border-radius: 8px; align-items: center; justify-content: center; background: var(--paper-2); border: 1px solid var(--n-200); color: var(--ink); }
.ex-compare-label { font-size: 12.5px; font-weight: 700; color: var(--ink); line-height: 1.25; }
.ex-compare-foot { margin-top: auto; display: flex; flex-direction: column; gap: 3px; align-items: flex-start; }
.ex-compare-val { font-family: var(--font-mono); font-variant-numeric: tabular-nums; font-size: 17px; font-weight: 700; color: var(--n-600); white-space: nowrap; }
.ex-compare-note { font-size: 10.5px; font-weight: 600; color: var(--n-500); }

.ex-foot-note { font-size: 12px; color: var(--n-500); line-height: 1.6; margin-top: clamp(32px,4vw,44px); max-width: 800px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .ex-lhero-grid { grid-template-columns: 1fr; gap: 30px; }
  .ex-meaning-grid { grid-template-columns: 1fr; gap: 36px; }
  .ex-nl-inner { grid-template-columns: 1fr; gap: 32px; }
  .ex-grid { grid-template-columns: repeat(2, 1fr); }
  .ex-compare-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 620px) {
  .ex-nav-links { display: none; }
  .ex-nav-toggle { display: flex; }
  .ex-grid { grid-template-columns: 1fr; }
  .ex-compare-grid { grid-template-columns: repeat(2, 1fr); }
  .ex-lhero-value { font-size: clamp(46px,16vw,68px); }
  .ex-war-bars { gap: 16px; height: 110px; }
  .ex-war-labels { gap: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  .ex-card { transition: none; }
}
