:root {
  --ink: #191916;
  --muted: #74746c;
  --paper: #f4f1e9;
  --paper-2: #ebe7dc;
  --white: #fffdf8;
  --line: rgba(25, 25, 22, 0.16);
  --orange: #f05223;
  --acid: #dbef55;
  --dark: #171714;
  --sans: "DM Sans", "Noto Sans SC", system-ui, sans-serif;
  --cn: "Noto Sans SC", "DM Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.search-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input { font: inherit; }
button { color: inherit; }
img { display: block; max-width: 100%; }
[hidden] { display: none !important; }
.shell { width: min(100% - 72px, 1440px); margin-inline: auto; }
.section { padding: 116px 0; }
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link { position: fixed; z-index: 1000; top: -60px; left: 20px; background: var(--acid); padding: 12px 18px; }
.skip-link:focus { top: 12px; }

.site-header {
  position: fixed; z-index: 100; top: 0; left: 0; right: 0;
  color: white; border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .3s, transform .3s, color .3s;
}
.site-header.scrolled { color: var(--ink); background: rgba(244,241,233,.94); backdrop-filter: blur(16px); border-color: var(--line); }
.site-header.header-hidden { transform: translateY(-100%); }
.nav-wrap { height: 78px; display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.brand { display: inline-flex; align-items: center; gap: 11px; font-weight: 800; font-size: 24px; letter-spacing: -.7px; }
.brand > span:last-child > span { color: var(--orange); }
.brand-mark { width: 27px; height: 27px; display: flex; align-items: flex-end; gap: 3px; transform: skew(-15deg); }
.brand-mark i { display: block; width: 7px; background: currentColor; }
.brand-mark i:nth-child(1) { height: 13px; }
.brand-mark i:nth-child(2) { height: 21px; }
.brand-mark i:nth-child(3) { height: 27px; background: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 34px; margin-left: auto; }
.main-nav a { position: relative; font: 500 13px var(--cn); opacity: .76; transition: opacity .2s; }
.main-nav a:hover, .main-nav a.active { opacity: 1; }
.main-nav a.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -29px; height: 3px; background: var(--orange); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.language-switch { display: grid; place-items: center; min-width: 38px; height: 38px; padding: 0 9px; border: 1px solid currentColor; border-radius: 50%; font-size: 10px; font-weight: 700; letter-spacing: .05em; opacity: .82; transition: .2s; }
.language-switch:hover { color: var(--ink); border-color: var(--acid); background: var(--acid); opacity: 1; }
.icon-button, .menu-button { appearance: none; border: 0; background: none; cursor: pointer; }
.icon-button { width: 42px; height: 42px; padding: 10px; }
.icon-button svg, .search-field svg { fill: none; stroke: currentColor; stroke-width: 1.8; }
.subscribe-button { display: inline-flex; align-items: center; gap: 24px; height: 43px; padding: 0 15px 0 18px; background: var(--acid); color: var(--ink); font: 600 12px var(--cn); }
.subscribe-button span { font-size: 16px; }
.menu-button { display: none; width: 42px; height: 42px; position: relative; }
.menu-button i { position: absolute; width: 21px; height: 1.5px; background: currentColor; left: 10px; transition: .2s; }
.menu-button i:first-child { top: 16px; }
.menu-button i:last-child { top: 24px; }
.menu-button.open i:first-child { top: 20px; transform: rotate(45deg); }
.menu-button.open i:last-child { top: 20px; transform: rotate(-45deg); }
.search-panel { position: absolute; inset: 78px 0 auto; background: var(--paper); color: var(--ink); border-bottom: 1px solid var(--line); padding: 40px 0 46px; box-shadow: 0 30px 50px rgba(0,0,0,.18); }
.search-panel::after { content: ""; position: fixed; inset: 0; z-index: -1; background: rgba(17,17,14,.6); }
.search-inner label { display: block; font: 600 12px var(--cn); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 13px; }
.search-field { display: flex; align-items: center; border-bottom: 1px solid var(--ink); }
.search-field svg { width: 25px; flex: 0 0 25px; margin-right: 13px; }
.search-field input { flex: 1; border: 0; background: none; outline: 0; padding: 15px 0 18px; font: 500 clamp(20px, 3vw, 36px) var(--cn); }
.search-field input::placeholder { color: #aaa79e; }
.search-close { border: 0; background: none; padding: 15px 0 15px 24px; cursor: pointer; font-size: 13px; }

.hero { min-height: 820px; height: 100svh; max-height: 980px; position: relative; color: white; background: #141310; overflow: hidden; }
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(10,10,8,.86) 0%, rgba(10,10,8,.68) 35%, rgba(10,10,8,.03) 72%), linear-gradient(0deg, rgba(10,10,8,.55), transparent 30%); }
.hero-content { position: relative; height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 80px; padding-top: 90px; padding-bottom: 130px; }
.hero-copy { width: min(670px, 52vw); }
.eyebrow, .kicker { margin: 0 0 22px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .18em; }
.eyebrow { display: flex; align-items: center; color: rgba(255,255,255,.7); }
.eyebrow span { display: inline-block; width: 31px; height: 2px; margin-right: 11px; background: var(--orange); }
.hero h1 { margin: 0; font: 700 clamp(52px, 6vw, 94px)/1.06 var(--cn); letter-spacing: -.065em; }
.hero h1 span { color: var(--acid); }
.hero-intro { max-width: 570px; margin: 30px 0 38px; color: rgba(255,255,255,.72); font: 400 17px/1.85 var(--cn); }
.primary-link { display: inline-flex; align-items: center; justify-content: space-between; width: 210px; padding: 15px 18px; border-bottom: 1px solid rgba(255,255,255,.65); font: 600 13px var(--cn); transition: background .2s, color .2s; }
.primary-link:hover { background: white; color: var(--ink); }
.primary-link span { color: var(--orange); font-size: 19px; }
.hero-story { align-self: flex-end; width: min(390px, 30vw); margin-bottom: 42px; padding: 27px 28px 25px; border-top: 3px solid var(--acid); background: rgba(18,18,16,.76); backdrop-filter: blur(12px); }
.story-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; color: rgba(255,255,255,.55); font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.story-meta span { color: var(--acid); }
.hero-story h2 { margin: 0 0 15px; font: 600 22px/1.45 var(--cn); letter-spacing: -.03em; }
.hero-story p { margin: 0 0 20px; color: rgba(255,255,255,.6); font: 400 13px/1.75 var(--cn); }
.hero-story a { font: 600 11px var(--cn); border-bottom: 1px solid rgba(255,255,255,.3); padding-bottom: 4px; }
.hero-story a span { margin-left: 8px; color: var(--acid); }
.hero-footer { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); display: flex; justify-content: space-between; align-items: center; height: 75px; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.54); font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.hero-footer p { margin: 0; }
.hero-footer strong { color: white; }
.pulse { width: 7px; height: 7px; display: inline-block; border-radius: 50%; margin-right: 9px; background: var(--acid); box-shadow: 0 0 0 5px rgba(219,239,85,.13); }

.ticker { display: flex; min-height: 60px; border-bottom: 1px solid var(--line); background: var(--white); overflow: hidden; }
.ticker-label { flex: 0 0 180px; display: grid; place-items: center; color: white; background: var(--orange); font: 700 11px var(--cn); letter-spacing: .1em; }
.ticker-track { display: flex; align-items: center; gap: 24px; white-space: nowrap; padding: 0 32px; font: 500 12px var(--cn); }
.ticker-track span i { color: var(--orange); font-style: normal; margin-left: 6px; }
.ticker-track b { color: #c9c5bb; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 40px; margin-bottom: 52px; }
.kicker { color: var(--orange); }
.section-heading h2, .signal h2, .newsletter h2, .about h2 { margin: 0; font: 700 clamp(34px, 4.6vw, 65px)/1.16 var(--cn); letter-spacing: -.055em; }
.section-note { margin: 0 0 5px; color: var(--muted); font: 400 13px/1.8 var(--cn); }
.filter-row { display: flex; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin-bottom: 40px; overflow-x: auto; }
.filter { flex: 1 0 auto; min-width: 145px; border: 0; border-right: 1px solid var(--line); background: transparent; padding: 19px 20px; cursor: pointer; font: 500 13px var(--cn); transition: .2s; }
.filter:first-child { border-left: 1px solid var(--line); }
.filter sup { margin-left: 5px; color: #9c998f; font: 500 9px var(--sans); }
.filter:hover, .filter.active { color: white; background: var(--ink); }
.filter.active sup { color: var(--acid); }
.news-layout { display: grid; grid-template-columns: 1.18fr 1fr; gap: 22px; align-items: start; }
.lead-card, .news-card { background: var(--white); border: 1px solid var(--line); transition: transform .25s, box-shadow .25s; }
.lead-card:hover, .news-card:hover { transform: translateY(-4px); box-shadow: 0 18px 50px rgba(35,32,25,.1); }
.lead-visual { height: 460px; }
.card-visual { position: relative; overflow: hidden; background: #23231f; color: white; isolation: isolate; }
.visual-index { position: absolute; top: 18px; left: 19px; z-index: 2; color: rgba(255,255,255,.75); font-size: 10px; letter-spacing: .12em; }
.visual-caption { position: absolute; right: 17px; bottom: 16px; z-index: 2; color: rgba(255,255,255,.45); font-size: 8px; letter-spacing: .14em; }
.visual-ai { display: grid; place-items: center; background: radial-gradient(circle at 50% 45%, #424832 0, #262720 26%, #191916 67%); }
.visual-ai::before { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px); background-size: 34px 34px; }
.orbital { position: relative; width: 240px; height: 240px; display: grid; place-items: center; }
.orbital::before, .orbital::after, .orbital i { content: ""; position: absolute; border: 1px solid rgba(219,239,85,.35); border-radius: 50%; }
.orbital::before { inset: 12%; }
.orbital::after { inset: 0; border-style: dashed; animation: spin 18s linear infinite; }
.orbital i:nth-child(1) { inset: 29%; background: rgba(219,239,85,.06); }
.orbital i:nth-child(2) { width: 11px; height: 11px; top: 16px; left: 50%; background: var(--acid); box-shadow: 0 0 28px var(--acid); }
.orbital i:nth-child(3) { width: 7px; height: 7px; bottom: 44px; left: 18px; background: var(--orange); border: 0; box-shadow: 0 0 20px var(--orange); }
.orbital strong { font: 600 54px var(--sans); color: var(--acid); letter-spacing: -.08em; }
@keyframes spin { to { transform: rotate(360deg); } }
.lead-body, .news-body { padding: 26px 28px 25px; }
.card-meta { display: flex; align-items: center; gap: 12px; color: #8e8b81; font-size: 9px; letter-spacing: .06em; text-transform: uppercase; }
.card-meta .tag { color: var(--orange); font: 600 10px var(--cn); letter-spacing: 0; }
.card-meta time::before, .card-meta time::after { content: ""; display: inline-block; width: 2px; height: 2px; border-radius: 50%; margin: 0 10px 3px 0; background: #aaa69c; }
.card-meta time::after { margin: 0 0 3px 10px; }
.lead-body h3 { margin: 24px 0 16px; font: 650 clamp(25px, 2.3vw, 36px)/1.38 var(--cn); letter-spacing: -.045em; }
.lead-body > p, .news-body > p { color: var(--muted); font: 400 13px/1.85 var(--cn); }
.card-bottom { display: flex; align-items: center; justify-content: space-between; margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--line); }
.source { display: flex; align-items: center; gap: 10px; }
.source > span { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%; color: white; background: var(--ink); font-size: 9px; font-weight: 700; }
.source p { margin: 0; color: #99958a; font: 400 8px/1.35 var(--cn); }
.source strong { color: var(--ink); font-size: 9px; }
.round-link { width: 38px; height: 38px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: 50%; font-size: 16px; transition: .2s; }
.round-link:hover { color: white; border-color: var(--orange); background: var(--orange); transform: rotate(10deg); }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.news-card { animation: cardIn .45s both; animation-delay: var(--delay); }
@keyframes cardIn { from { opacity: 0; transform: translateY(12px); } }
.news-card .card-visual { height: 218px; }
.news-body { padding: 21px 21px 20px; }
.news-body h3 { min-height: 81px; margin: 17px 0 13px; font: 600 18px/1.5 var(--cn); letter-spacing: -.025em; }
.news-body > p { display: -webkit-box; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; margin-bottom: 0; font-size: 11px; }
.news-card .card-bottom { margin-top: 22px; padding-top: 16px; }
.news-card .round-link { width: 32px; height: 32px; font-size: 13px; }
.visual-symbol { position: absolute; inset: 0; display: grid; place-items: center; }
.visual-symbol i { position: absolute; display: block; }
.visual-wearable { background: radial-gradient(circle at center, #5e6047, #22231d 55%); }
.visual-wearable .visual-symbol i:first-child { width: 98px; height: 98px; border: 11px solid #111; border-radius: 50%; box-shadow: inset 0 0 0 2px #57594d, 0 15px 35px #0009; }
.visual-wearable .visual-symbol i:nth-child(2) { width: 42px; height: 42px; border: 2px solid var(--acid); border-radius: 50%; }
.visual-wearable .visual-symbol i:last-child { width: 3px; height: 24px; background: var(--orange); transform: rotate(32deg); transform-origin: bottom; }
.visual-strength { background: linear-gradient(145deg, #24231f, #454137); }
.visual-strength .visual-symbol i:first-child { width: 150px; height: 24px; background: #121211; border-radius: 14px; box-shadow: 0 10px 25px #0008; }
.visual-strength .visual-symbol i:nth-child(2), .visual-strength .visual-symbol i:last-child { width: 45px; height: 92px; border-radius: 9px; background: repeating-linear-gradient(90deg, #0d0d0c 0 7px, #313028 8px 10px); }
.visual-strength .visual-symbol i:nth-child(2) { transform: translateX(-62px); }
.visual-strength .visual-symbol i:last-child { transform: translateX(62px); }
.visual-capital { background: linear-gradient(145deg, #241f1b, #5f3524); }
.visual-capital .visual-symbol i { width: 22px; bottom: 0; background: linear-gradient(var(--acid), var(--orange)); }
.visual-capital .visual-symbol i:first-child { height: 48px; transform: translateX(-34px); }
.visual-capital .visual-symbol i:nth-child(2) { height: 86px; }
.visual-capital .visual-symbol i:last-child { height: 126px; transform: translateX(34px); }
.visual-global { background: radial-gradient(circle at 52% 47%, #4f5544, #191a17 64%); }
.visual-global .visual-symbol i:first-child { width: 120px; height: 120px; border: 2px solid var(--acid); border-radius: 50%; }
.visual-global .visual-symbol i:nth-child(2) { width: 120px; height: 42px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.visual-global .visual-symbol i:last-child { width: 42px; height: 120px; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; }
.visual-china { background: linear-gradient(145deg, #2a1713, #7a2e1c); }
.visual-china .visual-symbol i:first-child { width: 115px; height: 115px; border: 1px solid rgba(255,255,255,.5); transform: rotate(45deg); }
.visual-china .visual-symbol i:nth-child(2) { width: 62px; height: 62px; background: var(--orange); transform: rotate(45deg); }
.visual-china .visual-symbol i:last-child { width: 20px; height: 20px; background: var(--acid); transform: rotate(45deg); }
.visual-app { background: linear-gradient(135deg, #dfede2, #abc1b2); }
.visual-app .visual-symbol i:first-child { width: 93px; height: 160px; border: 7px solid #171714; border-radius: 20px; background: #f8f5eb; transform: rotate(9deg); box-shadow: 12px 15px 30px #354b3d4d; }
.visual-app .visual-symbol i:nth-child(2) { width: 40px; height: 40px; border: 8px solid var(--orange); border-radius: 50%; transform: translate(4px,-22px) rotate(9deg); }
.visual-app .visual-symbol i:last-child { width: 46px; height: 3px; background: #171714; transform: translate(4px,28px) rotate(9deg); box-shadow: 0 9px #171714, 0 18px #171714; }
.visual-equipment { background: #c9c3b3; }
.visual-equipment::before { content: ""; position: absolute; inset: 0; background: linear-gradient(115deg, transparent 40%, rgba(255,255,255,.35) 41%, transparent 42%); }
.visual-equipment .visual-symbol i:first-child { width: 118px; height: 118px; border: 16px solid #24231f; border-bottom-color: var(--orange); transform: rotate(45deg); }
.visual-equipment .visual-symbol i:nth-child(2), .visual-equipment .visual-symbol i:last-child { width: 13px; height: 130px; background: #24231f; }
.visual-equipment .visual-symbol i:nth-child(2) { transform: translateX(-62px); }
.visual-equipment .visual-symbol i:last-child { transform: translateX(62px); }
.visual-mobility { background: radial-gradient(circle at 80% 20%, #f3b685, #df6e47 58%, #a93c27); }
.visual-mobility .visual-symbol i { height: 3px; background: #fff3e5; transform-origin: left; }
.visual-mobility .visual-symbol i:first-child { width: 128px; transform: translate(-43px,35px) rotate(-47deg); }
.visual-mobility .visual-symbol i:nth-child(2) { width: 92px; transform: translate(5px,-20px) rotate(56deg); }
.visual-mobility .visual-symbol i:last-child { width: 62px; height: 62px; border: 3px solid #fff3e5; border-radius: 50%; background: none; transform: translate(25px,-62px); }
.visual-pulse { background: #b7bfcb; }
.visual-pulse .visual-symbol i:first-child { width: 145px; height: 145px; border: 2px solid rgba(25,25,22,.4); border-radius: 50%; }
.visual-pulse .visual-symbol i:nth-child(2) { width: 112px; height: 112px; border: 16px solid #222; border-radius: 50%; box-shadow: 0 18px 30px #5b66755c; }
.visual-pulse .visual-symbol i:last-child { width: 70px; height: 30px; border-bottom: 3px solid var(--acid); transform: rotate(-12deg); }
.visual-os { background: #2a2a26; }
.visual-os .visual-symbol i { width: 72px; height: 72px; border: 1px solid rgba(255,255,255,.35); background: rgba(255,255,255,.04); }
.visual-os .visual-symbol i:first-child { transform: translate(-38px,-28px); }
.visual-os .visual-symbol i:nth-child(2) { transform: translate(38px,28px); border-color: var(--acid); }
.visual-os .visual-symbol i:last-child { width: 110px; height: 2px; background: var(--orange); transform: rotate(35deg); }
.load-more { display: flex; justify-content: space-between; width: 260px; margin: 50px auto 0; padding: 16px 18px; border: 1px solid var(--ink); background: transparent; cursor: pointer; font: 600 12px var(--cn); transition: .2s; }
.load-more:hover { color: white; background: var(--ink); }
.load-more span { color: var(--orange); font-size: 17px; line-height: 1; }
.empty-state, .load-error { grid-column: 1 / -1; padding: 70px 20px; text-align: center; border: 1px dashed var(--line); color: var(--muted); }
.empty-state strong { color: var(--ink); font: 600 20px var(--cn); }
.empty-state p { font: 400 13px var(--cn); }

.library-promo { background: var(--acid); }
.library-promo-grid { display: grid; grid-template-columns: .42fr 1.15fr .8fr; gap: 50px; align-items: start; }
.library-promo h2 { margin: 0; font: 700 clamp(34px, 4.6vw, 64px)/1.12 var(--cn); letter-spacing: -.055em; }
.library-promo .kicker, .library-promo .about-num { color: var(--ink); }
.library-promo-copy p { margin: 5px 0 30px; color: rgba(25,25,22,.7); font: 500 13px/1.9 var(--cn); }
.dark-link { color: var(--ink); border-color: rgba(25,25,22,.5); width: 245px; }
.dark-link:hover { color: white; background: var(--ink); }

.ai-focus { color: white; background: var(--dark); }
.ai-focus .kicker { color: var(--acid); }
.ai-focus .section-note { color: rgba(255,255,255,.55); }
.ai-domain-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.ai-domain-card { position: relative; min-width: 0; padding: 28px; border: 1px solid rgba(255,255,255,.15); background: linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.015)); overflow: hidden; }
.ai-domain-card::after { content: ""; position: absolute; z-index: 0; right: -70px; top: 75px; width: 180px; height: 180px; border: 1px solid rgba(219,239,85,.1); border-radius: 50%; }
.ai-domain-card > * { position: relative; z-index: 1; }
.ai-domain-card header, .region-card header { display: flex; align-items: center; justify-content: space-between; gap: 15px; }
.ai-domain-card header span, .region-card header span { color: var(--orange); font: 700 9px var(--sans); letter-spacing: .13em; }
.ai-domain-card header em, .region-card header em { color: rgba(255,255,255,.45); font: 500 9px var(--cn); font-style: normal; }
.ai-domain-symbol { position: relative; width: 86px; height: 86px; margin: 54px 0 34px; border: 1px solid rgba(219,239,85,.3); border-radius: 50%; }
.ai-domain-symbol::before, .ai-domain-symbol::after, .ai-domain-symbol i { content: ""; position: absolute; }
.ai-domain-symbol::before { inset: 17px; border: 1px solid rgba(255,255,255,.25); transform: rotate(45deg); }
.ai-domain-symbol::after { width: 9px; height: 9px; right: 4px; top: 7px; border-radius: 50%; background: var(--acid); box-shadow: 0 0 18px rgba(219,239,85,.65); }
.ai-domain-symbol i:first-child { left: 41px; top: -12px; width: 1px; height: 110px; background: rgba(255,255,255,.17); transform: rotate(32deg); }
.ai-domain-symbol i:nth-child(2) { left: 41px; top: -12px; width: 1px; height: 110px; background: rgba(255,255,255,.17); transform: rotate(-32deg); }
.ai-domain-symbol i:last-child { inset: 35px; border-radius: 50%; background: var(--orange); }
.ai-domain-card h3 { margin: 0 0 14px; font: 650 27px/1.3 var(--cn); letter-spacing: -.035em; }
.ai-domain-card > p { min-height: 72px; margin: 0 0 28px; color: rgba(255,255,255,.55); font: 400 12px/1.75 var(--cn); }
.ai-story-links { display: grid; border-top: 1px solid rgba(255,255,255,.13); }
.ai-story-links a { display: grid; grid-template-columns: 74px 1fr 14px; gap: 10px; align-items: start; padding: 17px 0; border-bottom: 1px solid rgba(255,255,255,.1); }
.ai-story-links time { color: rgba(255,255,255,.38); font-size: 9px; }
.ai-story-links strong { font: 550 12px/1.55 var(--cn); }
.ai-story-links a > span { color: var(--acid); }
.monitoring-note { padding: 19px 0 0; color: rgba(255,255,255,.4); font: 500 10px var(--cn); }

.regional-intelligence { background: var(--paper-2); }
.region-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.region-card { min-width: 0; min-height: 330px; display: flex; flex-direction: column; padding: 27px 28px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); background: rgba(255,255,255,.55); }
.region-card header em { color: var(--muted); }
.region-card h3 { margin: 52px 0 13px; font: 650 25px/1.25 var(--cn); letter-spacing: -.035em; }
.region-card > p { min-height: 50px; margin: 0 0 25px; color: var(--muted); font: 400 11px/1.7 var(--cn); }
.region-latest { display: grid; grid-template-columns: 66px 1fr 14px; gap: 10px; align-items: start; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.region-latest time { color: var(--orange); font-size: 9px; }
.region-latest strong { font: 550 12px/1.55 var(--cn); }
.region-latest > span { color: var(--orange); }
.region-card.is-monitoring { background: repeating-linear-gradient(135deg, rgba(255,255,255,.45) 0 10px, rgba(235,231,222,.45) 10px 20px); }
.region-empty { display: flex; align-items: center; gap: 11px; margin-top: auto; padding-top: 18px; border-top: 1px solid var(--line); }
.region-empty > span { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: var(--acid); box-shadow: 0 0 0 5px rgba(219,239,85,.32); }
.region-empty p { margin: 0; color: var(--muted); font: 500 10px/1.6 var(--cn); }

/* Exercise library — all visuals are original CSS, not upstream media. */
.library-page { background: var(--paper); }
.library-header { color: var(--ink); background: rgba(244,241,233,.96); backdrop-filter: blur(16px); border-color: var(--line); }
.library-hero { padding: 178px 0 104px; color: white; background: var(--dark); }
.library-hero-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: 100px; align-items: end; }
.library-hero h1 { margin: 0; max-width: 850px; font: 700 clamp(55px, 8vw, 112px)/.98 var(--cn); letter-spacing: -.075em; }
.library-intro > p { margin: 0 0 38px; color: rgba(255,255,255,.68); font: 400 17px/1.8 var(--cn); }
.library-intro strong { color: var(--acid); font-size: 24px; }
.dataset-note { display: grid; grid-template-columns: 90px 1fr; gap: 20px; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.18); }
.dataset-note > span { color: var(--orange); font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.dataset-note p { margin: 0; color: rgba(255,255,255,.48); font: 400 11px/1.75 var(--cn); }
.dataset-note a { color: white; border-bottom: 1px solid rgba(255,255,255,.35); }
.exercise-browser { background: var(--paper); }
.library-heading { align-items: center; }
.library-heading .section-note { color: var(--ink); font-size: 14px; font-weight: 600; }
.exercise-controls { display: grid; grid-template-columns: 2fr repeat(3, 1fr); border: 1px solid var(--line); margin-bottom: 36px; background: var(--white); }
.exercise-controls label { display: grid; gap: 7px; padding: 15px 18px; border-right: 1px solid var(--line); }
.exercise-controls label:last-child { border: 0; }
.exercise-controls label > span { color: var(--orange); font-size: 8px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.exercise-controls input, .exercise-controls select { width: 100%; border: 0; outline: 0; color: var(--ink); background: transparent; font: 500 13px var(--cn); }
.exercise-controls select { cursor: pointer; }
.exercise-view-tabs { display: flex; align-items: center; justify-content: space-between; gap: 25px; margin: 0 0 28px; border-bottom: 1px solid var(--line); }
.exercise-view-tabs > div { display: flex; gap: 4px; }
.exercise-view-tabs button { padding: 13px 16px 14px; border: 0; border-bottom: 3px solid transparent; color: var(--muted); background: transparent; cursor: pointer; font: 600 12px var(--cn); }
.exercise-view-tabs button.active { color: var(--ink); border-bottom-color: var(--orange); }
.exercise-view-tabs button span { display: inline-grid; min-width: 22px; height: 22px; margin-left: 7px; padding: 0 6px; place-items: center; border-radius: 11px; color: var(--ink); background: var(--paper-2); font: 700 9px var(--sans); }
.exercise-view-tabs button.active span { background: var(--acid); }
.exercise-view-tabs > p { margin: 0; color: var(--muted); font: 400 9px var(--cn); }
.exercise-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.exercise-card { position: relative; min-width: 0; border: 1px solid var(--line); background: var(--white); transition: transform .25s, box-shadow .25s; }
.exercise-card:hover { transform: translateY(-4px); box-shadow: 0 18px 45px rgba(35,32,25,.09); }
.exercise-card > .exercise-open { display: block; width: 100%; padding: 0; border: 0; color: inherit; background: none; text-align: left; cursor: pointer; }
.favorite-button { position: absolute; z-index: 4; top: 12px; right: 12px; display: grid; place-items: center; width: 38px; height: 38px; padding: 0; border: 1px solid rgba(255,255,255,.65); border-radius: 50%; color: white; background: rgba(20,20,17,.52); backdrop-filter: blur(6px); cursor: pointer; font-size: 22px; line-height: 1; transition: .2s; }
.favorite-button:hover, .favorite-button.saved { color: var(--ink); border-color: var(--acid); background: var(--acid); transform: scale(1.06); }
.exercise-visual { position: relative; height: 190px; overflow: hidden; color: white; background: #262621; isolation: isolate; }
.exercise-visual::before, .exercise-visual::after, .exercise-visual i { content: ""; position: absolute; }
.exercise-visual::before { width: 150px; height: 150px; left: 50%; top: 50%; border: 1px solid rgba(255,255,255,.18); border-radius: 50%; transform: translate(-50%,-50%); }
.exercise-visual::after { width: 78px; height: 2px; left: 50%; top: 50%; background: var(--acid); transform: translate(-50%,-50%) rotate(-32deg); box-shadow: 0 18px var(--orange), 0 -18px rgba(255,255,255,.5); }
.exercise-visual i:first-of-type { width: 38px; height: 38px; left: calc(50% - 19px); top: calc(50% - 52px); border: 2px solid white; border-radius: 50%; }
.exercise-visual i:last-of-type { width: 80px; height: 80px; left: calc(50% - 40px); top: calc(50% - 19px); border: 2px solid rgba(255,255,255,.55); transform: rotate(45deg); }
.exercise-visual > span { position: absolute; z-index: 2; top: 15px; left: 16px; color: rgba(255,255,255,.55); font-size: 8px; letter-spacing: .12em; }
.exercise-visual > strong { position: absolute; z-index: 2; right: 15px; bottom: 14px; color: rgba(255,255,255,.6); font: 600 9px var(--cn); text-transform: uppercase; letter-spacing: .08em; }
.exercise-card:nth-child(5n+2) .exercise-visual { background: #5b6449; }
.exercise-card:nth-child(5n+3) .exercise-visual { background: #b95231; }
.exercise-card:nth-child(5n+4) .exercise-visual { background: #525a65; }
.exercise-card:nth-child(5n) .exercise-visual { background: #817a68; }
.exercise-visual::before, .exercise-visual::after, .exercise-visual i { display: none; }
.exercise-visual > img { width: 180px; height: 180px; margin: 5px auto; object-fit: contain; }
.exercise-visual > small { position: absolute; z-index: 2; left: 10px; bottom: 9px; padding: 3px 5px; color: rgba(255,255,255,.84); background: rgba(0,0,0,.55); font-size: 6px; letter-spacing: .02em; }
.exercise-visual > strong { bottom: 13px; padding: 3px 5px; background: rgba(0,0,0,.5); }
.exercise-card-body { padding: 20px; }
.exercise-card-body > p { margin: 0; color: var(--orange); font: 600 9px var(--cn); }
.exercise-card-body h2 { min-height: 52px; margin: 12px 0 21px; font: 600 18px/1.45 var(--sans); letter-spacing: -.025em; }
.exercise-card-body .exercise-name-en { min-height: 30px; margin: -14px 0 16px; color: #969188; font: 500 10px/1.45 var(--sans); text-transform: none; letter-spacing: 0; }
.exercise-card-body > div { display: flex; justify-content: space-between; align-items: center; padding-top: 14px; border-top: 1px solid var(--line); color: var(--muted); font: 500 10px var(--cn); }
.exercise-card-body b { color: var(--orange); font-size: 14px; }
.exercise-more { width: 300px; justify-content: center; }
.dataset-section { background: var(--paper-2); }
.dataset-section h2 { margin: 0; font: 700 clamp(34px, 4vw, 54px)/1.15 var(--cn); letter-spacing: -.055em; }
.text-link { display: inline-block; margin-top: 5px; padding-bottom: 5px; border-bottom: 1px solid var(--ink); font-size: 11px; font-weight: 700; }
.exercise-dialog { width: min(760px, calc(100% - 32px)); max-height: min(820px, calc(100% - 32px)); padding: 0; border: 0; color: var(--ink); background: var(--paper); box-shadow: 0 30px 100px rgba(0,0,0,.5); }
.exercise-dialog::backdrop { background: rgba(12,12,10,.72); backdrop-filter: blur(4px); }
.dialog-close { position: sticky; z-index: 2; top: 18px; float: right; width: 42px; height: 42px; margin: 18px 18px -60px 0; border: 1px solid rgba(255,255,255,.45); border-radius: 50%; color: white; background: rgba(0,0,0,.25); cursor: pointer; font-size: 25px; }
.dialog-heading { padding: 70px 70px 48px; color: white; background: var(--dark); }
.dialog-heading p { margin: 0 0 18px; color: var(--orange); font-size: 9px; letter-spacing: .14em; }
.dialog-heading h2 { max-width: 580px; margin: 0 0 26px; font: 700 clamp(35px, 6vw, 63px)/1.05 var(--sans); letter-spacing: -.055em; }
.dialog-heading > span { display: inline-block; padding: 7px 10px; color: var(--ink); background: var(--acid); font: 600 10px var(--cn); }
.dialog-heading-media { display: grid; grid-template-columns: 180px 1fr; gap: 45px; align-items: center; }
.dialog-heading-media > div:last-child > span { display: inline-block; padding: 7px 10px; color: var(--ink); background: var(--acid); font: 600 10px var(--cn); }
.dialog-heading .dialog-name-en { margin: -16px 0 22px; color: rgba(255,255,255,.52); font: 500 12px/1.5 var(--sans); text-transform: none; letter-spacing: 0; }
.dialog-favorite { display: inline-flex; align-items: center; gap: 7px; min-height: 30px; margin-left: 8px; padding: 6px 11px; border: 1px solid rgba(255,255,255,.42); color: white; background: transparent; cursor: pointer; font: 600 9px var(--cn); }
.dialog-favorite span { color: var(--acid); font-size: 16px; line-height: 1; }
.dialog-favorite.saved { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.dialog-favorite.saved span { color: var(--orange); }
.dialog-animation img { display: block; width: 180px; height: 180px; background: white; }
.dialog-animation a { display: block; margin-top: 9px; color: rgba(255,255,255,.62); font-size: 7px; line-height: 1.4; }
.exercise-facts { display: grid; grid-template-columns: 1fr 1fr; margin: 0; border-bottom: 1px solid var(--line); }
.exercise-facts div { padding: 22px 32px; border-right: 1px solid var(--line); border-top: 1px solid var(--line); }
.exercise-facts div:nth-child(2n) { border-right: 0; }
.exercise-facts dt { margin-bottom: 6px; color: var(--muted); font: 600 8px var(--cn); text-transform: uppercase; letter-spacing: .1em; }
.exercise-facts dd { margin: 0; font: 600 13px var(--cn); }
.exercise-steps { padding: 45px 70px 60px; }
.exercise-steps h3 { margin: 0 0 25px; font: 700 25px var(--cn); }
.exercise-steps ol { display: grid; gap: 18px; margin: 0; padding-left: 24px; }
.exercise-steps li { padding-left: 10px; color: var(--muted); font: 400 14px/1.75 var(--cn); }
.exercise-steps li::marker { color: var(--orange); font-weight: 700; }
.library-footer { padding: 30px 0; }
.library-footer .footer-bottom { padding-top: 0; border: 0; }
.library-footer .footer-bottom a { color: rgba(255,255,255,.62); }

.signal { color: white; background: var(--dark); }
.signal-grid { display: grid; grid-template-columns: .8fr 1.1fr .8fr; gap: 64px; align-items: stretch; }
.kicker.light { color: var(--acid); }
.signal-intro h2 { font-size: clamp(38px, 4vw, 58px); }
.signal-intro > p:not(.kicker) { margin: 25px 0 32px; color: rgba(255,255,255,.55); font: 400 13px/1.9 var(--cn); }
.signal-intro > a { display: inline-flex; justify-content: space-between; width: 200px; padding-bottom: 8px; border-bottom: 1px solid rgba(255,255,255,.35); font: 500 11px var(--cn); }
.signal-intro > a span { color: var(--acid); }
.signal-chart { padding: 30px 33px 25px; border: 1px solid rgba(255,255,255,.15); }
.chart-top { display: flex; justify-content: space-between; margin-bottom: 34px; font-size: 10px; text-transform: uppercase; letter-spacing: .1em; }
.chart-top p { margin: 0; color: var(--acid); }
.chart-top span { color: rgba(255,255,255,.4); }
.bars { display: grid; gap: 19px; }
.bar-row { display: grid; grid-template-columns: 75px 1fr 24px; gap: 13px; align-items: center; font-size: 10px; }
.bar-row > span { color: rgba(255,255,255,.58); font-family: var(--cn); }
.bar-row > i { height: 6px; background: rgba(255,255,255,.1); }
.bar-row > i b { display: block; width: var(--value); height: 100%; background: linear-gradient(90deg, var(--orange), var(--acid)); }
.bar-row strong { font-size: 10px; }
.chart-caption { margin: 30px 0 0; color: rgba(255,255,255,.3); font: 400 8px/1.6 var(--cn); }
.signal-quote { position: relative; display: flex; flex-direction: column; justify-content: end; padding: 30px; color: var(--ink); background: var(--acid); overflow: hidden; }
.quote-mark { position: absolute; top: -35px; left: 14px; color: rgba(25,25,22,.12); font: 700 160px Georgia, serif; }
.signal-quote blockquote { position: relative; margin: 90px 0 30px; font: 600 22px/1.6 var(--cn); letter-spacing: -.03em; }
.signal-quote p { margin: 0; padding-top: 17px; border-top: 1px solid rgba(25,25,22,.25); font-size: 8px; letter-spacing: .13em; }

.newsletter { background: var(--orange); }
.newsletter-box { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; align-items: end; }
.newsletter .kicker { color: var(--ink); }
.newsletter h2 { color: white; }
.newsletter form > p:first-child { max-width: 440px; margin: 0 0 26px; color: rgba(25,25,22,.7); font: 500 13px/1.8 var(--cn); }
.email-field { display: flex; border-bottom: 1px solid var(--ink); }
.email-field input { flex: 1; min-width: 0; padding: 16px 0; border: 0; outline: 0; color: white; background: transparent; font-size: 22px; }
.email-field input::placeholder { color: rgba(255,255,255,.55); }
.email-field button { border: 0; background: var(--ink); color: white; padding: 0 20px; cursor: pointer; font: 600 11px var(--cn); }
.email-field button span { color: var(--acid); margin-left: 15px; }
.newsletter small { display: block; margin-top: 12px; color: rgba(25,25,22,.48); font: 400 8px var(--cn); }
.form-message { min-height: 20px; margin: 15px 0 0 !important; color: white !important; font-size: 11px !important; }

.about { background: var(--paper-2); }
.about-grid { display: grid; grid-template-columns: .45fr 1.1fr .8fr; gap: 50px; align-items: start; }
.about-num { margin: 8px 0 0; color: var(--orange); font-size: 9px; letter-spacing: .12em; }
.about h2 { font-size: clamp(34px, 4vw, 54px); }
.about-copy { padding-top: 6px; }
.about-copy p { margin: 0 0 22px; color: var(--muted); font: 400 13px/1.95 var(--cn); }

footer { padding: 72px 0 30px; color: white; background: #0f0f0d; }
.footer-top { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: start; padding-bottom: 68px; }
.footer-brand { font-size: 30px; }
.footer-top > p { margin: 5px 0 0; color: rgba(255,255,255,.3); font-size: 10px; line-height: 1.6; letter-spacing: .14em; }
.footer-links { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 30px; font: 400 11px var(--cn); }
.footer-links a { color: rgba(255,255,255,.58); }
.footer-links a:hover { color: var(--acid); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 25px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.28); font-size: 8px; text-transform: uppercase; letter-spacing: .08em; }
.footer-bottom button { border: 0; background: none; color: rgba(255,255,255,.62); cursor: pointer; font: 500 9px var(--cn); }

/* Intelligence detail and source directory */
.static-header { position: relative; color: white; background: var(--dark); transform: none !important; }
.static-header .nav-wrap { height: 78px; }
.static-header .static-nav { margin-left: auto; }
.static-header .language-switch { border-color: rgba(255,255,255,.3); color: white; }
.intelligence-page, .sources-page, .contact-page { background: var(--paper); }
.article-hero { padding: 86px 0 76px; color: white; background: var(--dark); }
.article-hero-grid { display: grid; grid-template-columns: 150px minmax(0, 870px); gap: 55px; align-items: start; }
.article-index { padding-top: 8px; border-top: 1px solid rgba(255,255,255,.25); }
.article-index > span { display: block; color: var(--acid); font: 700 54px/1 var(--sans); letter-spacing: -.06em; }
.article-index p { color: rgba(255,255,255,.43); font: 500 9px/1.7 var(--sans); text-transform: uppercase; letter-spacing: .12em; }
.article-meta { display: flex; gap: 12px; align-items: center; color: rgba(255,255,255,.46); font-size: 9px; text-transform: uppercase; letter-spacing: .08em; }
.article-meta span:first-child { padding: 6px 9px; color: var(--ink); background: var(--acid); font-family: var(--cn); font-weight: 700; letter-spacing: 0; }
.article-meta time::after { content: "/"; margin-left: 12px; color: rgba(255,255,255,.2); }
.article-hero h1 { max-width: 940px; margin: 27px 0 25px; font: 700 clamp(42px, 5.3vw, 76px)/1.08 var(--cn); letter-spacing: -.055em; }
.article-dek { max-width: 780px; margin: 0; color: rgba(255,255,255,.65); font: 400 17px/1.85 var(--cn); }
.article-status { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 35px; padding-top: 20px; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.34); font: 500 8px var(--sans); text-transform: uppercase; letter-spacing: .1em; }
.article-media { margin-top: 48px; }
.article-media img { display: block; width: 100%; height: auto; object-fit: contain; background: #dedbd2; }
.article-media figcaption { display: flex; justify-content: space-between; gap: 28px; padding: 12px 0; border-bottom: 1px solid var(--line); color: var(--muted); font: 500 10px/1.6 var(--cn); }
.article-media figcaption a { flex: 0 0 auto; color: var(--ink); font-weight: 700; }
.article-media figcaption i { color: var(--orange); font-style: normal; }
.article-layout { display: grid; grid-template-columns: 260px minmax(0, 720px); gap: 90px; align-items: start; padding-top: 75px; padding-bottom: 90px; }
.article-aside { position: sticky; top: 25px; padding: 25px 24px; border: 1px solid var(--line); background: var(--paper-2); }
.article-aside > p { margin: 0 0 20px; color: var(--orange); font: 700 9px var(--cn); text-transform: uppercase; letter-spacing: .11em; }
.article-aside ol { display: grid; gap: 17px; margin: 0; padding-left: 20px; }
.article-aside li { padding-left: 5px; color: var(--muted); font: 500 11px/1.7 var(--cn); }
.article-aside li::marker { color: var(--orange); font-weight: 700; }
.article-copy > section { margin-bottom: 52px; }
.article-copy h2 { margin: 0 0 20px; font: 700 28px/1.25 var(--cn); letter-spacing: -.035em; }
.article-copy p { margin: 0 0 18px; color: #56534d; font: 400 16px/1.95 var(--cn); }
.editor-signal { padding: 36px 38px; color: var(--ink); background: var(--acid); }
.editor-signal p { margin: 0 0 17px; color: rgba(25,25,22,.55); font: 700 8px var(--sans); letter-spacing: .14em; }
.editor-signal strong { display: block; font: 700 24px/1.55 var(--cn); letter-spacing: -.025em; }
.article-caveat { padding: 25px 28px; border-left: 3px solid var(--orange); background: var(--paper-2); }
.article-caveat h2 { margin-bottom: 11px; font-size: 16px; }
.article-caveat p { margin: 0; font-size: 12px; line-height: 1.8; }
.article-sources { padding-top: 38px; border-top: 1px solid var(--line); }
.article-sources > p { font-size: 11px; }
.article-sources ul { display: grid; gap: 10px; margin: 22px 0 0; padding: 0; list-style: none; }
.article-sources a { display: flex; justify-content: space-between; gap: 20px; padding: 14px 0; border-bottom: 1px solid var(--line); color: var(--ink); font: 600 11px var(--cn); }
.article-sources a span { color: var(--orange); }
.article-actions { display: flex; justify-content: space-between; gap: 20px; padding-bottom: 80px; }
.article-actions a { display: inline-flex; justify-content: space-between; gap: 30px; min-width: 230px; padding: 15px 0; border-bottom: 1px solid var(--ink); font: 700 10px var(--cn); }
.detail-footer { margin-top: 0; }

.sources-hero { padding: 105px 0 90px; color: white; background: var(--dark); }
.sources-hero-grid { display: grid; grid-template-columns: .38fr 1.4fr; gap: 70px; align-items: start; }
.sources-hero h1 { max-width: 900px; margin: 18px 0 30px; font: 700 clamp(48px, 7vw, 92px)/1.02 var(--cn); letter-spacing: -.07em; }
.sources-hero-grid > div > p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.56); font: 400 15px/1.9 var(--cn); }
.policy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.policy-grid > div { padding: 34px 30px 38px; background: var(--paper); }
.policy-grid span { color: var(--orange); font: 700 28px var(--sans); }
.policy-grid h2 { margin: 28px 0 15px; font: 700 22px/1.3 var(--cn); letter-spacing: -.03em; }
.policy-grid p { margin: 0; color: var(--muted); font: 400 12px/1.85 var(--cn); }
.source-directory { padding-top: 30px; background: var(--paper-2); }
.source-group { display: grid; grid-template-columns: 310px 1fr; gap: 55px; padding: 45px 0; border-top: 1px solid var(--line); }
.source-group > header { display: grid; grid-template-columns: 38px 1fr; gap: 16px; align-items: start; }
.source-group > header > span { color: var(--orange); font: 700 11px var(--sans); }
.source-group h3 { margin: 0 0 12px; font: 700 24px/1.25 var(--cn); letter-spacing: -.035em; }
.source-group header p { margin: 0; color: var(--muted); font: 400 11px/1.75 var(--cn); }
.source-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.source-list article { display: flex; min-height: 178px; flex-direction: column; padding: 21px; border: 1px solid var(--line); background: var(--paper); }
.source-list article > div { display: flex; justify-content: space-between; gap: 12px; align-items: start; }
.source-list h4 { margin: 0; font: 700 15px var(--sans); }
.source-list article > div span { padding: 4px 6px; color: var(--orange); background: #fff0e8; font: 700 7px var(--cn); }
.source-list p { margin: 17px 0; color: var(--muted); font: 400 10px/1.65 var(--cn); }
.source-list a { margin-top: auto; color: var(--ink); font: 700 8px var(--cn); text-transform: uppercase; letter-spacing: .08em; }

/* Protected contact page */
.contact-hero { padding: 105px 0 94px; color: white; background: var(--dark); }
.contact-hero-grid { display: grid; grid-template-columns: .38fr 1.4fr; gap: 70px; align-items: start; }
.contact-hero h1 { max-width: 940px; margin: 18px 0 30px; font: 700 clamp(48px, 7vw, 92px)/1.02 var(--cn); letter-spacing: -.07em; }
.contact-hero-grid > div > p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.56); font: 400 15px/1.9 var(--cn); }
.contact-card-section { background: var(--paper-2); }
.contact-card-grid { display: grid; grid-template-columns: .78fr 1.22fr; gap: 75px; align-items: center; }
.contact-card-grid h2 { margin: 14px 0 22px; font: 700 clamp(36px, 5vw, 62px)/1.05 var(--cn); letter-spacing: -.055em; }
.contact-card-grid > div:first-child > p:last-child { max-width: 500px; margin: 0; color: var(--muted); font: 400 13px/1.9 var(--cn); }
.protected-contact { position: relative; min-height: 330px; padding: 44px; border: 1px solid var(--line); background: var(--paper); overflow: hidden; }
.contact-shield { position: absolute; top: 24px; right: 30px; color: rgba(232,73,29,.16); font: 700 92px/1 var(--sans); }
.contact-mask { position: relative; margin: 80px 0 34px; overflow-wrap: anywhere; color: var(--ink); font: 700 clamp(28px, 4.2vw, 58px)/1.1 var(--sans); letter-spacing: -.045em; user-select: text; }
.contact-reveal, .contact-action { appearance: none; display: inline-flex; align-items: center; justify-content: center; min-height: 44px; padding: 0 17px; border: 1px solid var(--ink); color: var(--ink); background: transparent; cursor: pointer; font: 700 10px var(--cn); }
.contact-reveal span { margin-left: 22px; color: var(--orange); }
.contact-reveal:hover, .contact-action:hover { color: white; background: var(--ink); }
.contact-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.contact-action.primary { color: white; background: var(--ink); }
.contact-status, .contact-noscript { min-height: 18px; margin: 15px 0 0; color: var(--muted); font: 500 9px/1.7 var(--cn); }
.contact-topics { padding-top: 0; background: var(--paper-2); }

@media (max-width: 1100px) {
  .shell { width: min(100% - 48px, 960px); }
  .main-nav { gap: 20px; }
  .main-nav a:nth-child(4) { display: none; }
  .hero-story { display: none; }
  .hero-copy { width: min(700px, 78vw); }
  .news-layout { grid-template-columns: 1fr; }
  .lead-card { display: grid; grid-template-columns: 1fr 1fr; }
  .lead-visual { height: auto; min-height: 420px; }
  .news-grid { grid-template-columns: repeat(3, 1fr); }
  .news-card .card-visual { height: 190px; }
  .news-body h3 { min-height: 108px; }
  .signal-grid { grid-template-columns: 1fr 1.4fr; }
  .signal-quote { grid-column: 1 / -1; min-height: 250px; }
  .signal-quote blockquote { max-width: 650px; margin: 40px 0 25px; }
  .library-promo-grid { grid-template-columns: .4fr 1fr; }
  .library-promo-copy { grid-column: 2; }
  .library-hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .library-intro { max-width: 670px; }
  .exercise-grid { grid-template-columns: repeat(3, 1fr); }
  .article-hero-grid { grid-template-columns: 110px 1fr; gap: 40px; }
  .article-layout { grid-template-columns: 220px 1fr; gap: 55px; }
  .source-group { grid-template-columns: 250px 1fr; gap: 35px; }
  .contact-card-grid { gap: 45px; }
}

@media (max-width: 780px) {
  .shell { width: min(100% - 34px, 720px); }
  .section { padding: 78px 0; }
  .nav-wrap { height: 66px; }
  .brand { font-size: 21px; }
  .brand-mark { transform: scale(.85) skew(-15deg); }
  .main-nav { display: none; position: absolute; top: 66px; left: 0; right: 0; margin: 0; padding: 20px 17px 30px; color: var(--ink); background: var(--paper); border-bottom: 1px solid var(--line); }
  .main-nav.open { display: grid; }
  .main-nav a, .main-nav a:nth-child(4) { display: block; padding: 13px; font-size: 16px; }
  .main-nav a.active::after { display: none; }
  .subscribe-button { display: none; }
  .language-switch { min-width: 36px; height: 36px; }
  .menu-button { display: block; }
  .search-panel { top: 66px; padding: 30px 0; }
  .search-field input { font-size: 18px; }
  .hero { min-height: 720px; max-height: 850px; }
  .hero-image { object-position: 67% center; opacity: .74; }
  .hero-shade { background: linear-gradient(90deg, rgba(10,10,8,.88), rgba(10,10,8,.2)), linear-gradient(0deg, rgba(10,10,8,.75), transparent 55%); }
  .hero-content { align-items: end; padding: 120px 0 125px; }
  .hero-copy { width: 100%; }
  .eyebrow { margin-bottom: 18px; }
  .hero h1 { font-size: clamp(46px, 12vw, 68px); }
  .hero-intro { font-size: 14px; line-height: 1.8; margin: 23px 0 29px; }
  .hero-footer p:last-child { display: none; }
  .ticker-label { flex-basis: 105px; }
  .section-heading { display: block; margin-bottom: 35px; }
  .section-heading h2 { font-size: 36px; }
  .section-note { margin-top: 20px; }
  .filter-row { margin-inline: 0; }
  .filter { min-width: 120px; }
  .lead-card { display: block; }
  .lead-visual { height: 310px; min-height: 0; }
  .lead-body h3 { font-size: 25px; }
  .news-grid { grid-template-columns: 1fr 1fr; }
  .news-body h3 { min-height: 82px; }
  .ai-domain-grid, .region-grid { grid-template-columns: 1fr; }
  .ai-domain-card > p { min-height: 0; }
  .region-card { min-height: 290px; }
  .signal-grid, .newsletter-box, .about-grid { grid-template-columns: 1fr; gap: 45px; }
  .signal-quote { grid-column: auto; }
  .newsletter h2 { font-size: 42px; }
  .about-grid { gap: 28px; }
  .footer-top { grid-template-columns: 1fr 1fr; row-gap: 45px; }
  .footer-links { grid-column: 1 / -1; }
  .library-promo-grid { grid-template-columns: 1fr; gap: 28px; }
  .library-promo-copy { grid-column: auto; }
  .library-hero { padding: 130px 0 75px; }
  .library-hero-grid { gap: 40px; }
  .library-hero h1 { font-size: clamp(52px, 13vw, 82px); }
  .exercise-controls { grid-template-columns: 1fr 1fr; }
  .exercise-controls label:nth-child(2) { border-right: 0; }
  .exercise-controls label:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .exercise-grid { grid-template-columns: 1fr 1fr; }
  .exercise-view-tabs { align-items: flex-end; }
  .static-header .static-nav { display: none; }
  .article-hero { padding: 65px 0 58px; }
  .article-hero-grid, .article-layout, .sources-hero-grid, .source-group, .contact-hero-grid, .contact-card-grid { grid-template-columns: 1fr; }
  .article-index { display: flex; justify-content: space-between; align-items: start; }
  .article-index p { text-align: right; }
  .article-layout { gap: 38px; padding-top: 50px; }
  .article-aside { position: static; }
  .policy-grid { grid-template-columns: 1fr; }
  .source-group { gap: 25px; }
  .contact-card-grid { gap: 35px; }
}

@media (max-width: 540px) {
  .shell { width: calc(100% - 28px); }
  .hero h1 { letter-spacing: -.07em; }
  .hero-footer { width: calc(100% - 28px); }
  .ticker { min-height: 52px; }
  .ticker-track { gap: 18px; padding-inline: 22px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card { display: grid; grid-template-columns: 39% 1fr; }
  .news-card .card-visual { height: 100%; min-height: 255px; }
  .news-body { padding: 18px 16px; }
  .news-body h3 { min-height: 0; margin: 14px 0 10px; font-size: 16px; }
  .news-body > p { -webkit-line-clamp: 2; }
  .news-card .card-meta > span:last-child { display: none; }
  .news-card .card-meta time::after { display: none; }
  .news-card .card-bottom { margin-top: 15px; padding-top: 13px; }
  .news-card .source p { display: none; }
  .visual-caption { writing-mode: vertical-rl; right: 8px; bottom: 12px; }
  .ai-domain-card, .region-card { padding: 24px 21px; }
  .ai-domain-symbol { margin: 42px 0 28px; }
  .ai-story-links a, .region-latest { grid-template-columns: 58px 1fr 14px; }
  .region-card h3 { margin-top: 40px; }
  .signal-chart { padding: 25px 18px; }
  .signal-quote blockquote { font-size: 19px; }
  .email-field input { font-size: 16px; }
  .email-field button { padding-inline: 13px; }
  .email-field button span { margin-left: 5px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-links { grid-column: auto; }
  .footer-bottom { align-items: flex-start; gap: 14px; flex-direction: column; }
  .footer-bottom p { margin: 0; }
  .dataset-note { grid-template-columns: 1fr; gap: 8px; }
  .library-heading .section-note { margin-top: 18px; }
  .exercise-controls { grid-template-columns: 1fr; }
  .exercise-controls label, .exercise-controls label:nth-child(2) { border-right: 0; border-bottom: 1px solid var(--line); }
  .exercise-controls label:last-child { border-bottom: 0; }
  .exercise-grid { grid-template-columns: 1fr; }
  .exercise-card > .exercise-open { display: grid; grid-template-columns: 42% 1fr; }
  .favorite-button { right: auto; left: calc(42% - 50px); }
  .exercise-visual { height: 100%; min-height: 220px; }
  .exercise-card-body h2 { min-height: 0; font-size: 17px; }
  .exercise-card-body .exercise-name-en { min-height: 0; margin-top: -10px; }
  .exercise-view-tabs { align-items: stretch; flex-direction: column; gap: 10px; }
  .exercise-view-tabs > div { justify-content: space-between; }
  .exercise-view-tabs button { flex: 1; }
  .exercise-view-tabs > p { padding: 0 4px 10px; }
  .dialog-heading { padding: 62px 25px 38px; }
  .dialog-heading-media { grid-template-columns: 1fr; gap: 28px; }
  .exercise-facts { grid-template-columns: 1fr; }
  .exercise-facts div, .exercise-facts div:nth-child(2n) { border-right: 0; }
  .exercise-steps { padding: 35px 25px 48px; }
  .article-hero h1 { font-size: 40px; }
  .article-dek { font-size: 14px; }
  .article-status { display: grid; }
  .article-copy p { font-size: 14px; }
  .editor-signal { padding: 28px 24px; }
  .editor-signal strong { font-size: 20px; }
  .article-actions { flex-direction: column; }
  .article-actions a { width: 100%; }
  .sources-hero { padding: 70px 0 60px; }
  .sources-hero h1 { font-size: 45px; }
  .source-list { grid-template-columns: 1fr; }
  .contact-hero { padding: 70px 0 60px; }
  .contact-hero h1 { font-size: 45px; }
  .protected-contact { min-height: 270px; padding: 28px 22px; }
  .contact-mask { margin: 68px 0 28px; font-size: 29px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* Dense editorial reading mode — homepage and article sharing */
.share-button {
  appearance: none; display: inline-flex; align-items: center; gap: 7px; min-height: 36px;
  padding: 7px 11px; border: 1px solid var(--line); color: var(--muted); background: transparent;
  cursor: pointer; font: 600 12px var(--cn); transition: .2s;
}
.share-button b { font: inherit; }
.share-button > span { color: var(--orange); font-size: 14px; }
.share-button:hover, .share-button.shared { color: var(--ink); border-color: var(--ink); background: var(--white); }
.share-button-light { color: white; border-color: rgba(255,255,255,.3); }
.share-button-light:hover, .share-button-light.shared { color: var(--ink); border-color: var(--acid); background: var(--acid); }
.article-share { display: flex; align-items: center; gap: 16px; margin-top: 20px; }
.article-share p { margin: 0; color: rgba(255,255,255,.38); font: 400 11px/1.5 var(--cn); }

.home-page .shell { width: min(100% - 48px, 1220px); }
.home-page .section { padding: 64px 0; }
.home-page .site-header { background: rgba(17,17,15,.96); }
.home-page .nav-wrap { height: 64px; }
.home-page .main-nav { gap: 27px; }
.home-page .main-nav a { font-size: 14px; }
.home-page .main-nav a.active::after { bottom: -23px; }
.home-page .search-panel { inset-block-start: 64px; }

.home-page .hero { height: auto; min-height: 0; max-height: none; padding-top: 0; background: #171714; }
.home-page .hero-content { height: auto; min-height: 0; align-items: center; gap: 56px; padding: 94px 0 24px; }
.home-page .hero-copy { width: min(620px, 56%); }
.home-page .eyebrow { margin-bottom: 13px; font-size: 10px; }
.home-page .hero h1 { font-size: clamp(40px, 4.1vw, 56px); line-height: 1.03; letter-spacing: -.055em; }
.home-page .hero-intro { max-width: 590px; margin: 19px 0 20px; font-size: 15px; line-height: 1.72; }
.home-page .primary-link { width: auto; min-width: 190px; padding: 10px 0; gap: 32px; }
.home-page .hero-story { align-self: center; width: min(440px, 42%); margin: 0; padding: 21px 23px 20px; background: #252520; backdrop-filter: none; }
.home-page .story-meta { margin-bottom: 12px; font-size: 10px; }
.home-page .hero-story h2 { margin-bottom: 10px; font-size: 20px; line-height: 1.42; }
.home-page .hero-story p { margin-bottom: 12px; font-size: 13px; line-height: 1.65; }
.home-page .hero-story a { font-size: 12px; }
.home-page .hero-footer { position: relative; bottom: auto; left: auto; transform: none; height: 48px; font-size: 10px; }
.home-page .ticker { min-height: 44px; }
.home-page .ticker-label { flex-basis: 130px; height: 44px; }
.home-page .ticker-track { padding-inline: 22px; font-size: 12px; }

.home-page .latest { padding-top: 50px; }
.home-page .section-heading { align-items: start; margin-bottom: 28px; }
.home-page .section-heading h2 { font-size: clamp(30px, 3.3vw, 43px); line-height: 1.16; }
.home-page .kicker { margin-bottom: 12px; font-size: 10px; }
.home-page .section-note { max-width: 530px; font-size: 13px; line-height: 1.7; }
.home-page .filter-row { margin: 0 0 10px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.home-page .filter { min-width: 0; padding: 13px 18px; font-size: 13px; }
.home-page .filter:first-child { padding-left: 0; }
.home-page .filter.active::after { bottom: -1px; }
.home-page .news-layout, .home-page .news-grid { display: block; }
.home-page .lead-card, .home-page .news-card {
  display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 0; align-items: stretch;
  padding: 25px 0; border: 0; border-bottom: 1px solid var(--line); background: transparent;
  animation: cardIn .3s both; box-shadow: none;
}
.home-page .lead-card { grid-template-columns: 88px minmax(0,1fr); margin: 12px 0 0; padding: 28px 24px; border: 1px solid var(--line); background: var(--white); }
.home-page .lead-card.has-image { grid-template-columns: 88px minmax(0,1fr) 240px; }
.home-page .news-card.has-image { grid-template-columns: 76px minmax(0,1fr) 190px; }
.home-page .lead-card:hover, .home-page .news-card:hover { transform: none; box-shadow: none; }
.home-page .news-card:hover { background: rgba(255,255,255,.36); }
.home-page .card-visual { display: none; }
.home-page .story-thumbnail { position: relative; align-self: center; aspect-ratio: 16 / 9; margin-left: 24px; overflow: hidden; background: #dedbd2; }
.home-page .story-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.home-page .story-thumbnail:hover img { transform: scale(1.025); }
.home-page .story-thumbnail span { position: absolute; right: 7px; bottom: 6px; padding: 3px 5px; color: rgba(255,255,255,.9); background: rgba(0,0,0,.62); font: 600 8px var(--cn); }
.home-page .news-index { display: flex; flex-direction: column; justify-content: space-between; padding-right: 18px; border-right: 1px solid var(--line); }
.home-page .news-index span { color: var(--orange); font: 700 29px/1 var(--sans); letter-spacing: -.05em; }
.home-page .news-index em { color: var(--muted); font: 700 9px var(--sans); font-style: normal; letter-spacing: .12em; }
.home-page .lead-body, .home-page .news-body { padding: 0 0 0 23px; }
.home-page .card-meta { gap: 10px; font-size: 11px; letter-spacing: .02em; }
.home-page .card-meta .tag { font-size: 12px; }
.home-page .lead-body h3, .home-page .news-body h3 { min-height: 0; margin: 10px 0 9px; font: 700 21px/1.42 var(--cn); letter-spacing: -.025em; }
.home-page .lead-body h3 { max-width: 920px; font-size: 25px; line-height: 1.38; }
.home-page .lead-body h3 a:hover, .home-page .news-body h3 a:hover { color: var(--orange); }
.home-page .lead-body > p, .home-page .news-body > p {
  display: block; max-width: 980px; margin: 0; overflow: visible; color: #5f5b54;
  font: 400 15px/1.72 var(--cn); -webkit-line-clamp: unset;
}
.home-page .card-bottom { margin-top: 15px; padding-top: 13px; }
.home-page .source > span { width: 30px; height: 30px; }
.home-page .source p { font-size: 10px; line-height: 1.35; }
.home-page .source strong { font-size: 11px; }
.home-page .card-actions { display: flex; align-items: center; gap: 8px; }
.home-page .read-link { display: inline-flex; align-items: center; gap: 16px; min-height: 36px; padding: 7px 12px; color: var(--ink); border-bottom: 1px solid var(--ink); font: 700 12px var(--cn); }
.home-page .read-link span { color: var(--orange); font-size: 15px; }
.home-page .load-more { display: none !important; }

.home-page .ai-focus.section, .home-page .regional-intelligence.section { padding: 58px 0; }
.home-page .ai-domain-grid { gap: 12px; }
.home-page .ai-domain-card { padding: 22px; }
.home-page .ai-domain-symbol { display: none; }
.home-page .ai-domain-card h3 { margin: 22px 0 8px; font-size: 23px; }
.home-page .ai-domain-card > p { min-height: 0; margin: 0 0 14px; font-size: 14px; line-height: 1.65; }
.home-page .ai-story-links a { grid-template-columns: 70px 1fr 14px; padding: 12px 0; }
.home-page .ai-story-links strong { font-size: 13px; line-height: 1.5; }
.home-page .region-grid { grid-template-columns: repeat(3, 1fr); }
.home-page .region-card { min-height: 0; padding: 21px 22px; }
.home-page .region-card h3 { margin: 20px 0 8px; font-size: 22px; }
.home-page .region-card > p { min-height: 0; margin-bottom: 16px; font-size: 13px; line-height: 1.6; }
.home-page .region-latest { margin-top: 0; padding-top: 14px; }
.home-page .region-latest strong { font-size: 13px; line-height: 1.5; }
.home-page .library-promo.section { padding: 50px 0; }
.home-page .library-promo-grid { grid-template-columns: .35fr 1fr .8fr; gap: 34px; }
.home-page .library-promo h2 { font-size: clamp(29px, 3vw, 40px); }
.home-page .library-promo-copy p { font-size: 14px; line-height: 1.7; }
.home-page .signal { display: none; }
.home-page .newsletter.section { padding: 54px 0; }
.home-page .newsletter-box { gap: 60px; }
.home-page .newsletter h2 { font-size: clamp(34px, 4vw, 49px); }
.home-page .about.section { padding: 48px 0; }
.home-page .about h2 { font-size: clamp(30px, 3vw, 40px); }
.home-page .about-copy p { margin-bottom: 12px; font-size: 14px; line-height: 1.7; }
.home-page footer { padding-top: 50px; }
.home-page .footer-top { padding-bottom: 45px; }

.intelligence-page .article-hero { padding: 58px 0 52px; }
.intelligence-page .article-hero h1 { font-size: clamp(40px, 4.5vw, 63px); }
.intelligence-page .article-layout { padding-top: 58px; gap: 64px; }
.intelligence-page .article-aside li { font-size: 13px; }

@media (max-width: 900px) {
  .home-page .shell { width: min(100% - 34px, 820px); }
  .home-page .hero-copy { width: 60%; }
  .home-page .hero-story { width: 40%; }
  .home-page .main-nav { gap: 17px; }
  .home-page .main-nav a { font-size: 12px; }
  .home-page .subscribe-button { display: none; }
  .home-page .library-promo-grid { grid-template-columns: .3fr 1fr; }
  .home-page .library-promo-copy { grid-column: 2; }
}

@media (max-width: 780px) {
  .home-page .section { padding: 48px 0; }
  .home-page .nav-wrap { height: 60px; }
  .home-page .main-nav { top: 60px; }
  .home-page .search-panel { inset-block-start: 60px; }
  .home-page .hero { padding-top: 0; }
  .home-page .hero-content { display: block; min-height: 0; padding: 78px 0 18px; }
  .home-page .hero-copy { width: 100%; }
  .home-page .eyebrow { margin-bottom: 10px; }
  .home-page .hero h1 { font-size: clamp(36px, 9.5vw, 48px); line-height: 1; }
  .home-page .hero-intro { margin: 14px 0 8px; font-size: 14px; line-height: 1.58; }
  .home-page .primary-link { min-width: 178px; padding-block: 7px; }
  .home-page .hero-story { display: none; }
  .home-page .hero-footer { height: 39px; }
  .home-page .ticker-label { flex-basis: 105px; }
  .home-page .section-heading { display: block; margin-bottom: 22px; }
  .home-page .section-note { margin-top: 13px; }
  .home-page .filter { min-width: max-content; padding: 12px 14px; }
  .home-page .lead-card { grid-template-columns: 58px minmax(0,1fr); padding: 21px 18px; }
  .home-page .news-card { grid-template-columns: 58px minmax(0,1fr); padding: 21px 0; }
  .home-page .lead-card.has-image, .home-page .news-card.has-image { grid-template-columns: 58px minmax(0,1fr); }
  .home-page .story-thumbnail { grid-column: 2; width: auto; margin: 15px 0 0 16px; }
  .home-page .news-index { padding-right: 13px; }
  .home-page .news-index span { font-size: 23px; }
  .home-page .lead-body, .home-page .news-body { padding-left: 16px; }
  .home-page .lead-body h3 { font-size: 21px; }
  .home-page .news-body h3 { font-size: 18px; }
  .home-page .lead-body > p, .home-page .news-body > p { font-size: 14px; line-height: 1.68; }
  .home-page .card-bottom { align-items: flex-end; gap: 14px; }
  .home-page .card-actions { flex-wrap: wrap; justify-content: flex-end; }
  .home-page .ai-domain-grid, .home-page .region-grid { grid-template-columns: 1fr; }
  .home-page .ai-domain-card, .home-page .region-card { padding: 20px; }
  .home-page .library-promo-grid { grid-template-columns: 1fr; gap: 16px; }
  .home-page .library-promo-copy { grid-column: auto; }
  .home-page .newsletter-box, .home-page .about-grid { gap: 26px; }
  .article-share { align-items: flex-start; flex-direction: column; }
  .article-media { margin-top: 28px; }
  .article-media figcaption { flex-direction: column; gap: 4px; }
}

@media (max-width: 540px) {
  .home-page .shell { width: calc(100% - 28px); }
  .home-page .hero h1 { font-size: 36px; }
  .home-page .hero-intro { line-height: 1.65; }
  .home-page .ticker-track { padding-inline: 16px; }
  .home-page .latest { padding-top: 36px; }
  .home-page .lead-card, .home-page .news-card { grid-template-columns: 46px minmax(0,1fr); }
  .home-page .lead-card.has-image, .home-page .news-card.has-image { grid-template-columns: 46px minmax(0,1fr); }
  .home-page .lead-card { padding-inline: 14px; }
  .home-page .news-index { padding-right: 9px; }
  .home-page .news-index span { font-size: 19px; }
  .home-page .news-index em { writing-mode: vertical-rl; }
  .home-page .lead-body, .home-page .news-body { padding: 0 0 0 13px; }
  .home-page .card-meta { flex-wrap: wrap; font-size: 10px; }
  .home-page .card-bottom { align-items: flex-start; flex-direction: column; }
  .home-page .card-actions { width: 100%; justify-content: space-between; }
  .home-page .share-button, .home-page .read-link { font-size: 11px; }
  .home-page .source p { display: block; }
  .home-page .section-heading h2 { font-size: 30px; }
  .home-page .newsletter h2 { font-size: 34px; }
  .intelligence-page .article-hero { padding: 44px 0 40px; }
  .intelligence-page .article-hero h1 { font-size: 36px; }
}

/* Electronic strength competitor database */
.competitor-page { background: #efede5; }
.competitor-page .static-header { color: white; background: rgba(20,20,17,.96); }
.competitor-hero { padding: 150px 0 0; color: white; background: #161613; overflow: hidden; }
.competitor-hero-grid { display: grid; grid-template-columns: .38fr 1.4fr; gap: 70px; align-items: start; }
.competitor-hero-index { padding-top: 8px; color: rgba(255,255,255,.48); font: 600 10px/1.6 var(--cn); letter-spacing: .12em; text-transform: uppercase; }
.competitor-hero-index span { color: var(--acid); }
.competitor-hero-index p { margin: 12px 0 0; }
.competitor-hero h1 { max-width: 1000px; margin: 16px 0 30px; font: 700 clamp(52px,7.2vw,102px)/.98 var(--cn); letter-spacing: -.075em; }
.competitor-hero-grid > div:last-child > p:last-child { max-width: 820px; margin: 0 0 82px; color: rgba(255,255,255,.59); font: 400 15px/1.9 var(--cn); }
.competitor-stats { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(255,255,255,.18); }
.competitor-stats > div { padding: 30px 25px 34px; border-right: 1px solid rgba(255,255,255,.18); }
.competitor-stats > div:first-child { border-left: 1px solid rgba(255,255,255,.18); }
.competitor-stats strong { display: block; color: var(--acid); font: 700 42px/1 var(--sans); letter-spacing: -.06em; }
.competitor-stats span { display: block; margin-top: 9px; color: rgba(255,255,255,.53); font: 500 10px var(--cn); letter-spacing: .06em; text-transform: uppercase; }
.competitor-method { background: var(--acid); }
.competitor-method .policy-grid > div { border-color: rgba(25,25,22,.25); }
.competitor-explorer { background: #efede5; }
.competitor-explorer .section-heading { align-items: flex-end; }
.competitor-controls { display: grid; grid-template-columns: minmax(320px,1.3fr) 1fr; gap: 18px; align-items: end; margin-bottom: 24px; }
.competitor-search > span, .competitor-selects label { display: block; margin-bottom: 9px; color: var(--muted); font: 600 9px var(--cn); letter-spacing: .08em; text-transform: uppercase; }
.competitor-search input { width: 100%; height: 54px; padding: 0 18px; border: 1px solid var(--ink); border-radius: 0; outline: 0; color: var(--ink); background: var(--white); font: 500 15px var(--cn); }
.competitor-search input:focus { box-shadow: inset 0 -3px var(--orange); }
.competitor-selects { display: grid; grid-template-columns: 1fr 1fr auto; gap: 10px; align-items: end; }
.competitor-selects select, .competitor-selects button { height: 54px; border: 1px solid var(--line); border-radius: 0; background: var(--white); }
.competitor-selects select { width: 100%; padding: 0 35px 0 13px; color: var(--ink); }
.competitor-selects button { padding: 0 20px; color: white; background: var(--ink); cursor: pointer; }
.competitor-form-filters { display: flex; overflow-x: auto; border: 1px solid var(--line); background: var(--white); }
.competitor-form-filters button { flex: 0 0 auto; min-height: 48px; padding: 0 15px; border: 0; border-right: 1px solid var(--line); background: transparent; cursor: pointer; font: 500 11px var(--cn); white-space: nowrap; }
.competitor-form-filters button.active, .competitor-form-filters button:hover { color: white; background: var(--orange); }
.competitor-form-filters sup { margin-left: 4px; opacity: .6; }
.competitor-result-bar { display: flex; justify-content: space-between; gap: 20px; padding: 34px 0 15px; color: var(--muted); font: 500 10px var(--cn); letter-spacing: .04em; text-transform: uppercase; }
.competitor-result-bar p { margin: 0; }
.competitor-result-bar strong { color: var(--ink); font-size: 17px; }
.competitor-table-head, .competitor-row { display: grid; grid-template-columns: 1.65fr .9fr 1fr .8fr 118px; gap: 20px; align-items: center; }
.competitor-table-head { padding: 12px 22px; color: rgba(255,255,255,.54); background: var(--ink); font: 600 9px var(--cn); letter-spacing: .1em; text-transform: uppercase; }
.competitor-record { border: 1px solid var(--line); border-top: 0; background: var(--white); }
.competitor-row { min-height: 118px; padding: 18px 22px; }
.competitor-identity { display: flex; align-items: center; gap: 14px; min-width: 0; }
.competitor-identity > div { min-width: 0; }
.brand-tier { flex: 0 0 34px; width: 34px; height: 34px; display: grid; place-items: center; color: var(--acid); background: var(--ink); font: 700 12px var(--sans); }
.competitor-thumbnail { flex: 0 0 72px; width: 72px; height: 72px; display: grid; place-items: center; border: 1px solid #ddd9ce; background: #f4f2ec; overflow: hidden; }
.competitor-thumbnail img { width: 100%; height: 100%; object-fit: contain; }
.competitor-thumbnail.is-placeholder .form-graphic { transform: scale(1.15); }
.competitor-identity p, .competitor-identity h3, .competitor-identity small { overflow: hidden; margin: 0; text-overflow: ellipsis; white-space: nowrap; }
.competitor-identity p { color: var(--orange); font: 650 10px var(--cn); }
.competitor-identity h3 { margin: 4px 0 5px; font: 650 16px var(--cn); letter-spacing: -.02em; }
.competitor-identity small { display: block; color: var(--muted); font-size: 9px; text-transform: uppercase; }
.competitor-form { display: flex; align-items: center; gap: 12px; color: #4e4d47; font: 500 11px/1.45 var(--cn); }
.form-graphic { position: relative; flex: 0 0 45px; width: 45px; height: 38px; display: block; background: #e6e2d8; overflow: hidden; }
.form-graphic i { position: absolute; display: block; background: var(--ink); }
.form-graphic i:first-child { left: 8px; right: 8px; bottom: 7px; height: 5px; }
.form-graphic i:nth-child(2) { left: 10px; bottom: 12px; width: 3px; height: 19px; }
.form-graphic i:last-child { right: 10px; bottom: 12px; width: 3px; height: 19px; background: var(--orange); }
.form-wall-dual-arm i:first-child, .form-wall-single-arm i:first-child { left: 20px; right: auto; bottom: 5px; width: 7px; height: 28px; }
.form-wall-dual-arm i:nth-child(2) { left: 7px; bottom: 18px; width: 15px; height: 3px; transform: rotate(-25deg); }
.form-wall-dual-arm i:last-child { right: 7px; bottom: 18px; width: 15px; height: 3px; transform: rotate(25deg); }
.form-wall-single-arm i:nth-child(2) { left: 23px; bottom: 20px; width: 15px; height: 3px; transform: rotate(-22deg); }
.form-wall-single-arm i:last-child { display: none; }
.form-portable-module i:first-child, .form-rack-module i:first-child { left: 13px; right: 13px; bottom: 9px; height: 18px; border-radius: 3px; }
.form-portable-module i:nth-child(2), .form-rack-module i:nth-child(2) { left: 19px; bottom: 14px; width: 7px; height: 7px; border-radius: 50%; background: var(--acid); }
.form-portable-module i:last-child, .form-rack-module i:last-child { left: 28px; right: auto; bottom: 17px; width: 12px; height: 2px; }
.form-commercial-selectorized i:first-child { left: 8px; right: 8px; bottom: 5px; height: 4px; }
.form-commercial-selectorized i:nth-child(2) { left: 8px; bottom: 9px; width: 5px; height: 23px; }
.form-commercial-selectorized i:last-child { right: 8px; bottom: 9px; width: 20px; height: 4px; }
.competitor-resistance strong { display: block; font: 650 14px var(--sans); }
.competitor-resistance span { display: block; margin-top: 6px; color: var(--muted); font: 400 10px/1.45 var(--cn); }
.competitor-market > span { display: block; font: 600 11px var(--cn); }
.competitor-market small { display: block; margin-top: 7px; font: 600 8px var(--cn); letter-spacing: .03em; text-transform: uppercase; }
.competitor-market small.verified { color: #417149; }
.competitor-market small.review-pending { color: #a66a19; }
.competitor-expand { display: flex; align-items: center; justify-content: space-between; gap: 8px; min-height: 42px; padding: 0 12px; border: 1px solid var(--line); background: transparent; cursor: pointer; font: 600 10px var(--cn); }
.competitor-expand:hover { color: white; border-color: var(--orange); background: var(--orange); }
.competitor-expand b { color: var(--orange); font-size: 17px; font-weight: 400; }
.competitor-expand:hover b { color: white; }
.competitor-detail { display: grid; grid-template-columns: minmax(220px,.75fr) 1.5fr .72fr; gap: 28px; padding: 0 22px 28px; }
.competitor-visual-column { display: grid; gap: 12px; align-content: start; }
.competitor-product-image { min-height: 250px; margin: 0; border: 1px solid var(--line); background: #f4f2ec; }
.competitor-product-image a { display: grid; place-items: center; height: 220px; padding: 12px; }
.competitor-product-image img { width: 100%; height: 100%; object-fit: contain; }
.competitor-product-image figcaption { padding: 10px 12px; border-top: 1px solid var(--line); color: var(--muted); font: 500 8px/1.5 var(--cn); letter-spacing: .03em; }
.competitor-product-image figcaption strong, .competitor-product-image figcaption span { display: block; }
.competitor-product-image figcaption strong { margin-bottom: 5px; color: var(--ink); font-size: 10px; line-height: 1.55; letter-spacing: 0; }
.competitor-product-image.is-placeholder { display: grid; place-items: center; align-content: center; gap: 18px; color: var(--muted); font: 500 10px var(--cn); text-align: center; }
.competitor-product-image.is-placeholder .form-graphic { transform: scale(1.7); margin-bottom: 12px; }
.competitor-local-illustration { margin: 0; border: 1px solid var(--ink); color: white; background: var(--ink); }
.competitor-local-illustration > div { position: relative; min-height: 124px; display: grid; place-items: center; overflow: hidden; background: var(--acid); }
.competitor-local-illustration > div > span:first-child { position: absolute; top: 10px; left: 12px; color: rgba(22,22,19,.6); font: 700 8px var(--cn); letter-spacing: .08em; text-transform: uppercase; }
.competitor-local-illustration .form-graphic { transform: scale(1.75); background: rgba(255,255,255,.45); }
.competitor-local-illustration figcaption { display: grid; gap: 5px; padding: 12px; }
.competitor-local-illustration figcaption strong { color: var(--acid); font: 650 11px/1.45 var(--cn); }
.competitor-local-illustration figcaption span { color: rgba(255,255,255,.62); font: 400 9px/1.45 var(--cn); }
.competitor-specs { border-top: 1px solid var(--line); padding-top: 24px; }
.competitor-editorial { margin: -24px 0 28px; padding: 24px 0 26px; border-bottom: 1px solid var(--line); }
.competitor-editorial-label { margin: 0 0 10px; color: var(--orange); font: 700 8px var(--cn); letter-spacing: .1em; text-transform: uppercase; }
.competitor-editorial-summary { margin: 0; color: var(--ink); font: 600 15px/1.7 var(--cn); letter-spacing: -.01em; }
.competitor-editorial-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; margin-top: 22px; }
.competitor-editorial-grid > div { padding-left: 13px; border-left: 3px solid var(--acid); }
.competitor-editorial-grid h4 { color: var(--ink); }
.competitor-editorial-grid p { margin: 0; color: #55544e; font: 400 11px/1.7 var(--cn); }
.competitor-specs dl { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin: 0 0 28px; }
.competitor-specs dl div { min-width: 0; }
.competitor-specs dt, .competitor-specs h4, .competitor-source-block p { margin: 0 0 7px; color: var(--muted); font: 600 8px var(--cn); letter-spacing: .08em; text-transform: uppercase; }
.competitor-specs dd { margin: 0; font: 600 12px/1.45 var(--cn); }
.competitor-specs section { margin-top: 18px; }
.competitor-specs section p { margin: 0; color: #55544e; font: 400 11px/1.7 var(--cn); }
.competitor-source-block { padding: 24px; color: white; background: var(--ink); }
.competitor-source-block > a { display: block; padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.2); color: var(--acid); font: 600 11px var(--cn); }
.competitor-source-block > div { margin: 22px 0; }
.competitor-source-block p { color: rgba(255,255,255,.45); }
.competitor-source-block ol { margin: 0; padding-left: 17px; color: rgba(255,255,255,.7); font: 400 10px/1.8 var(--cn); }
.competitor-related-links ul { display: grid; gap: 8px; margin: 0; padding: 0; list-style: none; }
.competitor-related-links li a { display: block; padding: 9px 10px; color: white; background: rgba(255,255,255,.07); }
.competitor-related-links li a:hover { color: var(--ink); background: var(--acid); }
.competitor-related-links li span, .competitor-related-links li small { display: block; }
.competitor-related-links li span { font: 600 10px/1.45 var(--cn); }
.competitor-related-links li small { margin-top: 3px; color: rgba(255,255,255,.43); font: 600 7px var(--sans); letter-spacing: .08em; text-transform: uppercase; }
.competitor-related-links li a:hover small { color: rgba(22,22,19,.55); }
.competitor-source-block > span { color: rgba(255,255,255,.42); font: 600 8px var(--sans); letter-spacing: .08em; }
.competitor-loading, .competitor-error { margin: 0; padding: 60px 24px; text-align: center; border: 1px dashed var(--line); color: var(--muted); font: 500 13px var(--cn); }
.competitor-boundary { color: white; background: var(--orange); }
.competitor-boundary-grid { display: grid; grid-template-columns: 1.15fr .75fr; gap: 100px; align-items: end; }
.competitor-boundary h2 { margin: 0; font: 700 clamp(36px,4.8vw,68px)/1.1 var(--cn); letter-spacing: -.055em; }
.competitor-boundary-grid > div:last-child p { margin: 0 0 28px; color: rgba(255,255,255,.76); font: 400 14px/1.85 var(--cn); }
.competitor-boundary a { display: inline-block; padding-bottom: 5px; border-bottom: 1px solid rgba(255,255,255,.6); font: 600 12px var(--cn); }

@media (max-width: 1080px) {
  .competitor-table-head, .competitor-row { grid-template-columns: 1.55fr .9fr .9fr .75fr 48px; gap: 13px; }
  .competitor-expand span { display: none; }
  .competitor-expand { justify-content: center; padding: 0; }
  .competitor-detail { grid-template-columns: .8fr 1.3fr; padding-left: 22px; }
  .competitor-source-block { grid-column: 1 / -1; }
}

@media (max-width: 780px) {
  .competitor-page .shell { width: calc(100% - 34px); }
  .competitor-page .section { padding: 68px 0; }
  .competitor-hero { padding-top: 105px; }
  .competitor-hero-grid, .competitor-controls, .competitor-boundary-grid { grid-template-columns: 1fr; gap: 26px; }
  .competitor-hero-index { display: flex; justify-content: space-between; }
  .competitor-hero h1 { font-size: 50px; }
  .competitor-hero-grid > div:last-child > p:last-child { margin-bottom: 52px; }
  .competitor-stats { grid-template-columns: 1fr 1fr; }
  .competitor-stats > div { border-bottom: 1px solid rgba(255,255,255,.18); }
  .competitor-selects { grid-template-columns: 1fr 1fr; }
  .competitor-selects button { grid-column: 1 / -1; }
  .competitor-table-head { display: none; }
  .competitor-record { border-top: 1px solid var(--line); margin-top: 12px; }
  .competitor-row { grid-template-columns: 1fr auto; gap: 18px; padding: 20px; }
  .competitor-identity { grid-column: 1; }
  .competitor-form, .competitor-resistance, .competitor-market { grid-column: 1; padding-left: 48px; }
  .competitor-expand { grid-column: 2; grid-row: 1 / 5; width: 42px; align-self: stretch; }
  .competitor-detail { grid-template-columns: 1fr; gap: 22px; padding: 0 20px 20px; }
  .competitor-source-block { grid-column: auto; }
  .competitor-product-image { min-height: 230px; }
  .competitor-editorial-grid { grid-template-columns: 1fr; gap: 16px; }
  .competitor-specs dl { grid-template-columns: 1fr 1fr; }
  .competitor-boundary-grid { align-items: start; }
}

@media (max-width: 520px) {
  .competitor-hero h1 { font-size: 41px; }
  .competitor-stats > div { padding: 22px 16px; }
  .competitor-stats strong { font-size: 34px; }
  .competitor-result-bar { align-items: flex-start; flex-direction: column; }
  .competitor-selects { grid-template-columns: 1fr; }
  .competitor-selects button { grid-column: auto; }
  .competitor-specs dl { grid-template-columns: 1fr; }
}
