/* ============================================================
   COLUMN.BET - "The Bloomberg of Gambling"
   FinTech / Swiss high-contrast design system
   Fonts are loaded via <link rel="preconnect"> + <link rel="stylesheet"> in HTML for faster first paint - see optimize_meta.py.
   ============================================================ */

:root {
  --bg-base: #050B14;
  --surface-card: #0A192F;
  --surface-elevated: #112240;
  --border-subtle: rgba(45, 55, 72, 0.4);
  --border-strong: #2D3748;
  --primary: #10B981;
  --primary-hover: #059669;
  --primary-soft: rgba(16, 185, 129, 0.12);
  --warning: #F59E0B;
  --danger: #EF4444;
  --text-primary: #F8FAFC;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;

  --font-head: 'Chivo', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --container: 1200px;
  --radius-sm: 2px;
  --radius-md: 6px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(circle at 20% -10%, rgba(16,185,129,0.06), transparent 40%),
    radial-gradient(circle at 100% 0%, rgba(17,34,64,0.6), transparent 35%);
  background-attachment: fixed;
}

::selection { background: var(--primary); color: #fff; }

/* TYPOGRAPHY */
h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 700; letter-spacing: -0.02em; line-height: 1.15; color: var(--text-primary); }
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); margin-bottom: 0.75rem; }
h4 { font-size: 1.05rem; }
p { color: var(--text-secondary); margin-bottom: 1rem; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--primary-hover); }
.overline { font-family: var(--font-body); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }

ul, ol { color: var(--text-secondary); padding-left: 1.25rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

code, .mono { font-family: var(--font-mono); }

/* LAYOUT */
.container { max-width: var(--container); margin: 0 auto; padding: 0 1.25rem; }
@media (min-width: 768px) { .container { padding: 0 2rem; } }

section { padding: 4rem 0; border-top: 1px solid var(--border-subtle); }
@media (min-width: 768px) { section { padding: 6rem 0; } }
section:first-of-type { border-top: 0; }

/* ============================================================
   NAV / HEADER (Glassmorphism)
   ============================================================ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(5, 11, 20, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-strong);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 0.9rem 0; }

.brand { display: flex; align-items: center; gap: .65rem; font-family: var(--font-head); font-weight: 900; font-size: 1.15rem; letter-spacing: -.01em; color: var(--text-primary); }
.brand-mark {
  width: 28px; height: 28px; display: grid; place-items: center;
  border: 1px solid var(--primary); color: var(--primary);
  font-family: var(--font-mono); font-size: .75rem; font-weight: 700;
  border-radius: var(--radius-sm); background: var(--primary-soft);
}
.brand .dot { color: var(--primary); }

.nav-links { display: none; gap: 1.75rem; }
.nav-links a { color: var(--text-secondary); font-weight: 500; font-size: .9rem; position: relative; padding: .25rem 0; }
.nav-links a:hover { color: var(--text-primary); }
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -4px; width: 0; height: 1px; background: var(--primary); transition: width .25s ease; }
.nav-links a:hover::after { width: 100%; }

.nav-ticker {
  display: none; align-items: center; gap: 1rem; font-family: var(--font-mono);
  font-size: .72rem; color: var(--text-muted);
}
.ticker-item { display: flex; align-items: center; gap: .4rem; }
.ticker-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: .35; } }
.ticker-val { color: var(--text-primary); }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-ticker { display: flex; }
}

.mobile-toggle {
  display: inline-flex; flex-direction: column; gap: 4px;
  background: transparent; border: 1px solid var(--border-strong);
  width: 38px; height: 38px; align-items: center; justify-content: center;
  cursor: pointer; border-radius: var(--radius-sm);
}
.mobile-toggle span { width: 16px; height: 1.5px; background: var(--text-primary); display: block; transition: transform .2s; }
@media (min-width: 900px) { .mobile-toggle { display: none; } }

.mobile-panel {
  display: none; flex-direction: column; gap: .25rem;
  padding: 1rem 0 1.25rem; border-top: 1px solid var(--border-subtle);
}
.mobile-panel.open { display: flex; }
.mobile-panel a { color: var(--text-secondary); padding: .7rem 0; border-bottom: 1px solid var(--border-subtle); font-size: .95rem; }
.mobile-panel a:last-child { border-bottom: 0; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 5rem 0 4rem; overflow: hidden; border-top: 0; }
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    linear-gradient(110deg, rgba(5,11,20,.97) 0%, rgba(5,11,20,.70) 55%, rgba(5,11,20,.30) 100%),
    url('https://column.bet/images/column-bet.jpg') center/cover no-repeat;
}
.hero-grid { display: grid; grid-template-columns: 1fr; gap: 3rem; align-items: center; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 1.4fr 1fr; } }

.hero h1 { margin: 1rem 0 1.25rem; }
.hero h1 .accent { color: var(--primary); }
.hero-lede { font-size: 1.1rem; color: var(--text-secondary); max-width: 38rem; margin-bottom: 2rem; }

.hero-stats { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; max-width: 36rem; margin-top: 1.5rem; }
@media (min-width: 640px) { .hero-stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  padding: .9rem;
  border-radius: var(--radius-sm);
}
.stat-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.stat-value { font-family: var(--font-mono); color: var(--primary); font-size: 1.15rem; font-weight: 600; margin-top: .25rem; }
.stat-sub { font-family: var(--font-mono); font-size: .68rem; color: var(--text-muted); margin-top: .15rem; }

.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 2rem; }

/* HERO TERMINAL CARD */
.hero-card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  font-family: var(--font-mono);
  font-size: .85rem;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,.7);
}
.hero-card-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: .85rem; border-bottom: 1px solid var(--border-subtle); margin-bottom: 1rem; }
.hero-card-header .title { color: var(--text-secondary); font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; }
.hero-card-header .live { color: var(--primary); display: flex; align-items: center; gap: .4rem; font-size: .7rem; }
.hero-card-row { display: flex; justify-content: space-between; padding: .55rem 0; border-bottom: 1px dashed var(--border-subtle); color: var(--text-secondary); }
.hero-card-row:last-child { border-bottom: 0; }
.hero-card-row .v { color: var(--primary); }
.hero-card-row .v.warn { color: var(--warning); }
.hero-card-row .v.neutral { color: var(--text-primary); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn { display: inline-flex; align-items: center; gap: .5rem; font-weight: 600; font-size: .9rem; padding: .85rem 1.4rem; border-radius: var(--radius-sm); border: 1px solid transparent; cursor: pointer; transition: all .2s ease; text-decoration: none; font-family: var(--font-body); }
.btn-primary { background: var(--primary); color: #04141C; }
.btn-primary:hover { background: var(--primary-hover); color: #04141C; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--text-primary); border-color: var(--border-strong); }
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); }
.btn-arrow::after { content: '→'; transition: transform .2s; }
.btn-arrow:hover::after { transform: translateX(4px); }

/* ============================================================
   SECTION HEADERS
   ============================================================ */
.section-head { margin-bottom: 2.5rem; max-width: 48rem; }
.section-head .overline { color: var(--primary); margin-bottom: .8rem; display: inline-block; }
.section-head p { margin-top: .5rem; font-size: 1.05rem; }

.two-col { display: grid; grid-template-columns: 1fr; gap: 2rem; }
@media (min-width: 900px) { .two-col { grid-template-columns: 1fr 1fr; gap: 3rem; } }

/* ============================================================
   ROULETTE BOARD VISUAL (CSS only)
   ============================================================ */
.board-visual { background: var(--surface-card); border: 1px solid var(--border-strong); padding: 1.25rem; border-radius: var(--radius-md); }
.board-grid { display: grid; grid-template-columns: 40px repeat(12, 1fr) 40px; gap: 3px; }
.board-cell {
  font-family: var(--font-mono); font-size: .75rem; font-weight: 600;
  text-align: center; padding: .55rem 0;
  border-radius: 2px;
  color: #fff;
}
.b-red { background: #B7273A; }
.b-black { background: #1A1F2C; border: 1px solid #2D3748; }
.b-green { background: #0E6B4A; }
.b-label { background: transparent; color: var(--text-muted); font-size: .65rem; display: grid; place-items: center; }
.b-col2to1 { background: var(--primary-soft); color: var(--primary); border: 1px solid var(--primary); font-size: .65rem; }
.board-caption { color: var(--text-muted); font-family: var(--font-mono); font-size: .72rem; margin-top: .85rem; text-align: center; letter-spacing: .12em; text-transform: uppercase; }

/* ============================================================
   DATA TABLES
   ============================================================ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border-strong); border-radius: var(--radius-md); background: var(--surface-card); }
table.data { width: 100%; border-collapse: collapse; }
table.data th, table.data td { padding: .9rem 1rem; text-align: left; }
table.data thead th {
  background: var(--surface-elevated);
  color: var(--text-secondary);
  font-family: var(--font-body);
  font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; font-weight: 700;
  border-bottom: 1px solid var(--border-strong);
}
table.data tbody td { border-top: 1px solid var(--border-subtle); font-family: var(--font-mono); font-size: .88rem; color: var(--text-primary); }
table.data tbody tr:hover { background: rgba(17,34,64,.4); }
table.data .num { color: var(--primary); }
table.data .num-red { color: var(--danger); }
table.data .num-warn { color: var(--warning); }
table.data .label-col { color: var(--text-secondary); }
table.data .first-col { font-family: var(--font-body); font-weight: 600; color: var(--text-primary); }

/* ============================================================
   SEQUENCE BLOCKS (Terminal aesthetic)
   ============================================================ */
.sequence {
  background: #000;
  border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-sm);
  padding: 1rem 1.25rem;
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
  font-family: var(--font-mono);
  color: var(--primary);
  font-size: 1.05rem;
  overflow-x: auto;
  margin: 1.25rem 0;
}
.sequence::before { content: '>'; color: var(--text-muted); font-weight: 700; }
.sequence .step { color: var(--primary); }
.sequence .arrow { color: var(--text-muted); }

/* ============================================================
   PROBABILITY BADGES
   ============================================================ */
.badges { display: flex; flex-wrap: wrap; gap: .65rem; margin: 1rem 0; }
.badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem .85rem; border-radius: 999px;
  background: var(--surface-elevated); border: 1px solid var(--border-strong);
  font-family: var(--font-mono); font-size: .8rem; color: var(--text-primary);
}
.badge .b-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); }
.badge.warn .b-dot { background: var(--warning); }
.badge.red .b-dot { background: var(--danger); }

/* ============================================================
   CARD GRID
   ============================================================ */
.card-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 700px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  transition: border-color .2s, transform .2s;
  display: flex; flex-direction: column;
}
.card:hover { border-color: var(--primary); transform: translateY(-2px); }
.card .tag { font-family: var(--font-mono); font-size: .7rem; color: var(--primary); letter-spacing: .1em; margin-bottom: .75rem; text-transform: uppercase; }
.card h3 { font-size: 1.15rem; margin-bottom: .65rem; color: var(--text-primary); }
.card p { font-size: .92rem; color: var(--text-secondary); margin-bottom: 1rem; flex: 1; }
.card .read { color: var(--primary); font-size: .82rem; font-weight: 600; display: inline-flex; gap: .35rem; }
.card .read::after { content: '→'; transition: transform .2s; }
.card:hover .read::after { transform: translateX(3px); }

/* SILO LINK ROWS */
.silo-links { display: grid; grid-template-columns: 1fr; gap: .5rem; margin-top: 1rem; }
@media (min-width: 700px) { .silo-links { grid-template-columns: repeat(2, 1fr); } }
.silo-link {
  display: flex; align-items: center; justify-content: space-between;
  padding: .9rem 1rem; background: var(--surface-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm); color: var(--text-primary);
  font-size: .92rem; font-weight: 500;
  transition: all .2s;
}
.silo-link:hover { border-color: var(--primary); color: var(--primary); }
.silo-link .arrow { color: var(--text-muted); font-family: var(--font-mono); }
.silo-link:hover .arrow { color: var(--primary); transform: translateX(3px); }

/* ============================================================
   CALCULATORS
   ============================================================ */
.calc {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.75rem;
}
.calc-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.25rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border-subtle); }
.calc-header h3 { margin-bottom: 0; }
.calc-tag { font-family: var(--font-mono); font-size: .68rem; color: var(--primary); letter-spacing: .15em; text-transform: uppercase; }
.calc-field { display: block; margin-bottom: 1rem; }
.calc-field label { display: block; font-size: .72rem; color: var(--text-secondary); letter-spacing: .12em; text-transform: uppercase; font-weight: 600; margin-bottom: .4rem; }
.calc-field input, .calc-field select {
  width: 100%; padding: .8rem .9rem;
  background: var(--bg-base); color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: .95rem;
  transition: border-color .2s, box-shadow .2s;
}
.calc-field input:focus, .calc-field select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary); }
.calc-actions { display: flex; gap: .65rem; margin-top: 1.25rem; }

.calc-result {
  margin-top: 1.5rem; padding: 1rem 1.25rem;
  background: var(--bg-base); border: 1px solid var(--border-subtle);
  border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  display: none;
}
.calc-result.show { display: block; }
.calc-result .row { display: flex; justify-content: space-between; padding: .35rem 0; }
.calc-result .row:not(:last-child) { border-bottom: 1px dashed var(--border-subtle); }
.calc-result .k { color: var(--text-muted); font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; }
.calc-result .v { color: var(--primary); font-weight: 600; }

.calc-grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .calc-grid { grid-template-columns: 1fr 1fr; gap: 1.25rem; } }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq { border-top: 1px solid var(--border-strong); margin-top: 1rem; }
.faq-item { border-bottom: 1px solid var(--border-strong); }
.faq-q {
  width: 100%; background: transparent; border: 0;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.35rem 0; cursor: pointer;
  font-family: var(--font-head); font-weight: 700; font-size: 1.05rem; color: var(--text-primary);
  text-align: left;
  transition: color .2s;
}
.faq-q:hover { color: var(--primary); }
.faq-icon {
  width: 24px; height: 24px; display: grid; place-items: center;
  color: var(--primary); font-family: var(--font-mono); font-size: 1.1rem;
  transition: transform .25s;
  flex-shrink: 0; margin-left: 1rem;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s ease; }
.faq-item.open .faq-a { max-height: 500px; padding-bottom: 1.35rem; }
.faq-a p { color: var(--text-secondary); }

/* ============================================================
   AUTHOR BOX
   ============================================================ */
.author-box {
  display: grid; grid-template-columns: auto 1fr; gap: 1.25rem;
  background: var(--surface-card); border: 1px solid var(--border-strong);
  border-radius: var(--radius-md); padding: 1.5rem;
}
.author-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: linear-gradient(135deg, #112240 0%, #1d375a 100%);
  display: grid; place-items: center;
  font-family: var(--font-head); font-weight: 900; color: var(--primary); font-size: 1.3rem;
  border: 1px solid var(--border-strong);
}
.author-meta .name { font-family: var(--font-head); font-weight: 700; color: var(--text-primary); font-size: 1rem; }
.author-meta .role { font-family: var(--font-mono); font-size: .75rem; color: var(--primary); letter-spacing: .1em; margin: .15rem 0 .5rem; text-transform: uppercase; }
.author-meta p { font-size: .9rem; }

/* ============================================================
   RESPONSIBLE GAMING CALLOUT
   ============================================================ */
.responsible {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--warning);
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-md);
  display: flex; gap: 1rem; flex-wrap: wrap; align-items: center;
}
.responsible h4 { font-size: .95rem; margin: 0 0 .35rem; }
.responsible p { font-size: .85rem; color: var(--text-secondary); margin: 0; }
.responsible a { font-family: var(--font-mono); color: var(--primary); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  border-top: 1px solid var(--border-strong);
  padding: 3.5rem 0 2rem;
  background: linear-gradient(180deg, transparent 0%, rgba(10,25,47,.5) 100%);
  margin-top: 4rem;
}
.footer-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-bottom: 2.5rem; }
@media (min-width: 700px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr 1fr; } }
.footer-grid h5 { font-family: var(--font-head); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--text-primary); margin-bottom: 1rem; }
.footer-grid a { display: block; color: var(--text-secondary); font-size: .88rem; padding: .25rem 0; }
.footer-grid a:hover { color: var(--primary); }
.footer-bottom {
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between;
  padding-top: 2rem; border-top: 1px solid var(--border-strong);
  color: var(--text-muted); font-family: var(--font-mono); font-size: .75rem;
}
.footer-bottom .geo { color: var(--text-secondary); }

/* ============================================================
   ARTICLE / STUB PAGES
   ============================================================ */
.crumbs { font-family: var(--font-mono); font-size: .75rem; color: var(--text-muted); margin: 1rem 0 1.5rem; letter-spacing: .08em; }
.crumbs a { color: var(--text-secondary); }
.crumbs a:hover { color: var(--primary); }
.crumbs .sep { margin: 0 .5rem; color: var(--text-muted); }

.article-head { padding: 4rem 0 2rem; border-bottom: 1px solid var(--border-subtle); }
.article-head h1 { max-width: 50rem; margin-top: .5rem; }
.article-meta { font-family: var(--font-mono); font-size: .8rem; color: var(--text-muted); margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* Editor / E-E-A-T credit block */
.editor-card {
  display: flex; align-items: center; gap: .9rem;
  margin-top: 1.25rem; padding: .7rem .9rem;
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  max-width: 40rem;
}
.editor-card img.editor-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--border-strong);
  background: var(--surface-elevated);
}
.editor-card .editor-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.editor-card .editor-line1 { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.editor-card .editor-overline {
  font-family: var(--font-body); font-size: .65rem; letter-spacing: .15em;
  text-transform: uppercase; color: var(--text-muted); font-weight: 700;
}
.editor-card .editor-name { font-family: var(--font-head); font-weight: 700; font-size: .95rem; color: var(--text-primary); }
.editor-card .editor-role { font-family: var(--font-mono); font-size: .7rem; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; }
.editor-card .editor-bio { font-size: .82rem; color: var(--text-secondary); line-height: 1.45; margin: 0; }

/* ============================================================
   CONTACT-PAGE LISTS (allow / deny)
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: 1fr 1fr; gap: 2rem; } }

.contact-list {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  list-style: none;
  margin: 0;
}
.contact-list.allow { border-left: 3px solid var(--primary); }
.contact-list.deny  { border-left: 3px solid var(--warning); }
.contact-list h3 { display: flex; align-items: center; gap: .6rem; font-size: 1.15rem; margin: 0 0 1rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border-subtle); }
.contact-list h3 .mark {
  display: inline-grid; place-items: center;
  width: 22px; height: 22px; border-radius: 4px;
  font-family: var(--font-mono); font-size: .9rem; font-weight: 700;
  background: var(--primary-soft); color: var(--primary);
  border: 1px solid var(--primary);
}
.contact-list.deny h3 .mark { background: rgba(245,158,11,.12); color: var(--warning); border-color: var(--warning); }
.contact-list li {
  display: flex; align-items: flex-start; gap: .7rem;
  padding: .6rem 0; border-bottom: 1px dashed var(--border-subtle);
  color: var(--text-secondary); font-size: .95rem; line-height: 1.55;
}
.contact-list li:last-child { border-bottom: 0; }
.contact-list li::before {
  flex-shrink: 0;
  width: 14px; text-align: center;
  font-family: var(--font-mono); font-weight: 700;
  font-size: 1rem; line-height: 1.55;
}
.contact-list li:first-child { display: block; padding: 0; border-bottom: 1px solid var(--border-subtle); margin-bottom: .5rem; }
.contact-list.allow li:first-child::before,
.contact-list.deny  li:first-child::before { content: none; }
.contact-list.allow li::before { content: '+'; color: var(--primary); }
.contact-list.deny  li::before { content: '-'; color: var(--warning); }
.contact-list li strong { color: var(--text-primary); font-weight: 600; }

/* ============================================================
   CONTACT CHANNELS BLOCK
   ============================================================ */
.contact-channels {
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.contact-channels .row {
  display: grid; grid-template-columns: 1fr; gap: .25rem;
  padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-subtle);
}
@media (min-width: 700px) { .contact-channels .row { grid-template-columns: 1fr 2fr 1fr; gap: 1.5rem; align-items: center; } }
.contact-channels .row:last-child { border-bottom: 0; }
.contact-channels .label { font-family: var(--font-body); font-size: .68rem; letter-spacing: .15em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.contact-channels .email { font-family: var(--font-mono); color: var(--primary); font-size: 1rem; font-weight: 500; word-break: break-all; }
.contact-channels .hint { font-size: .85rem; color: var(--text-secondary); }

/* ============================================================
   ANALYSIS / SIGNED DECONSTRUCTION PAGES
   ============================================================ */
.analysis-kicker {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--primary); font-weight: 600;
  padding: .3rem .65rem;
  background: var(--primary-soft); border: 1px solid var(--primary);
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.analysis-kicker .pulse { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); box-shadow: 0 0 8px var(--primary); animation: pulse 2s infinite; }

.analysis-byline {
  display: flex; gap: 1.1rem; align-items: center;
  margin: 1.5rem 0 0;
  padding: 1rem 1.25rem;
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  max-width: 48rem;
}
.analysis-byline img.byline-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 1px solid var(--primary);
  background: var(--surface-elevated);
  box-shadow: 0 0 0 4px rgba(16,185,129,.08);
}
.analysis-byline .byline-text { display: flex; flex-direction: column; gap: .15rem; min-width: 0; }
.analysis-byline .byline-overline { font-family: var(--font-body); font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--text-muted); font-weight: 700; }
.analysis-byline .byline-name { font-family: var(--font-head); font-weight: 900; font-size: 1.2rem; color: var(--text-primary); }
.analysis-byline .byline-role { font-family: var(--font-mono); font-size: .75rem; color: var(--primary); letter-spacing: .08em; text-transform: uppercase; }
.analysis-byline .byline-meta { font-family: var(--font-mono); font-size: .72rem; color: var(--text-muted); margin-top: .35rem; }
.analysis-byline .byline-meta .sep { margin: 0 .4rem; }

.tldr-box {
  margin: 2rem 0;
  padding: 1.25rem 1.5rem;
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-left: 3px solid var(--warning);
  border-radius: var(--radius-md);
}
.tldr-box .tldr-label {
  display: inline-block;
  font-family: var(--font-mono); font-size: .7rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--warning); font-weight: 700;
  margin-bottom: .5rem;
}
.tldr-box p { font-size: 1rem; color: var(--text-primary); margin: 0; line-height: 1.55; }
.tldr-box p strong { color: var(--primary); }

.method-block {
  margin: 1.5rem 0; padding: 1.25rem 1.5rem;
  background: #000; border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono); font-size: .85rem;
  color: var(--text-secondary); line-height: 1.7;
}
.method-block .method-label { color: var(--primary); display: block; font-size: .7rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 600; margin-bottom: .65rem; }
.method-block .k { color: var(--text-muted); }
.method-block .v { color: var(--primary); }

.section-marker { font-family: var(--font-mono); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--primary); font-weight: 600; }

/* ============================================================
   TRUST STRIP (hero positioning claim)
   ============================================================ */
.trust-strip {
  display: inline-flex; flex-wrap: wrap; align-items: center;
  gap: .65rem;
  margin: 0 0 1.5rem;
  padding: .5rem .85rem;
  background: var(--surface-card);
  border: 1px solid var(--border-strong);
  border-left: 2px solid var(--primary);
  border-radius: var(--radius-sm);
  max-width: 100%;
}
.trust-strip .trust-mark {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 8px var(--primary);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.trust-strip .trust-claim {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .02em;
  color: var(--text-primary);
  font-weight: 500;
  white-space: nowrap;
}
.trust-strip .trust-sep { color: var(--text-muted); font-family: var(--font-mono); font-size: .75rem; }
.trust-strip .trust-link {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: var(--primary);
  text-transform: uppercase;
  padding-left: .65rem;
  border-left: 1px solid var(--border-subtle);
  margin-left: .25rem;
  font-weight: 600;
  transition: color .2s;
}
.trust-strip .trust-link:hover { color: var(--primary-hover); }

.article-body { padding: 3rem 0 4rem; max-width: 48rem; }
.article-body h2 { margin-top: 2.5rem; }
.article-body h3 { margin-top: 1.75rem; }
.article-body p { font-size: 1.02rem; line-height: 1.75; }
.article-body ul, .article-body ol { font-size: 1rem; line-height: 1.8; }

.callout {
  margin: 1.5rem 0; padding: 1.1rem 1.25rem;
  background: var(--surface-card); border-left: 3px solid var(--primary);
  border: 1px solid var(--border-strong); border-left: 3px solid var(--primary);
  border-radius: var(--radius-sm);
}
.callout strong { color: var(--text-primary); }

.stub-note {
  margin: 2rem 0; padding: 1.25rem 1.5rem;
  border: 1px dashed var(--border-strong); border-radius: var(--radius-md);
  font-family: var(--font-mono); color: var(--text-muted); font-size: .85rem;
}
.stub-note strong { color: var(--warning); font-weight: 600; }

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center { text-align: center; }
.muted { color: var(--text-muted); }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; } .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; }
.mono-num { font-family: var(--font-mono); color: var(--primary); }

hr.divider { border: 0; border-top: 1px solid var(--border-subtle); margin: 2rem 0; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}
