/*
Theme Name: AttackSurfaceCheck
Theme URI: https://attacksurfacecheck.com
Author: AttackSurfaceCheck
Description: Custom lead-generation theme for AttackSurfaceCheck.com — External Attack Surface Check.
Version: 1.0
Text Domain: asc
*/

/* ============ DESIGN TOKENS ============ */
:root {
  --bg: #0A0C10;
  --surface: #12151B;
  --surface-2: #191D25;
  --surface-3: #20252F;
  --border: #262B35;
  --border-soft: #1D212A;

  --ink: #F5F7FA;
  --ink-muted: #A7AFBE;
  --ink-faint: #6B7280;

  --accent: #E3A64B;
  --accent-ink: #1A1204;
  --accent-soft: rgba(227, 166, 75, .12);
  --accent-border: rgba(227, 166, 75, .35);

  --line-tech: #333A48;

  --good: #4FA870;
  --warn: #E3A64B;
  --crit: #D9614F;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 20px 50px -20px rgba(0,0,0,.6);

  --font-body: "IBM Plex Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", Menlo, monospace;

  --max: 1180px;
  --max-wide: 1320px;
}

/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; }
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { padding-left: 0; list-style: none; margin: 0; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
h1, h2, h3, h4, h5 { margin: 0; font-weight: 600; text-wrap: balance; letter-spacing: -.01em; }
p { margin: 0; }

::selection { background: var(--accent); color: var(--accent-ink); }

a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible, summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 999;
  background: var(--accent); color: var(--accent-ink); padding: 12px 20px; font-weight: 600;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============ LAYOUT ============ */
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.wrap-wide { max-width: var(--max-wide); margin: 0 auto; padding: 0 24px; }
.wrap-narrow { max-width: 760px; margin: 0 auto; padding: 0 24px; }

section { padding: 96px 0; }
section.tight { padding: 64px 0; }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  section.tight { padding: 44px 0; }
}

.bg-surface { background: var(--surface); }
.bg-band { background: linear-gradient(180deg, var(--surface) 0%, var(--bg) 100%); border-top: 1px solid var(--border-soft); border-bottom: 1px solid var(--border-soft); }

.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 901px) and (max-width: 1100px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.split.reverse { grid-template-columns: .95fr 1.05fr; }
@media (max-width: 900px) { .split.reverse { grid-template-columns: 1fr; } }
.split.reverse > :first-child { order: 2; }
@media (max-width: 900px) { .split.reverse > :first-child { order: 0; } }

/* ============ TYPE ============ */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--accent); font-weight: 500;
}
.eyebrow::before { content: ""; width: 7px; height: 7px; background: var(--accent); border-radius: 1px; flex: none; }

h1.hero-h1 { font-size: clamp(2.4rem, 5vw, 4.1rem); line-height: 1.06; }
h2.h2 { font-size: clamp(1.8rem, 3.4vw, 2.7rem); line-height: 1.15; }
h3.h3 { font-size: 1.3rem; line-height: 1.3; }

.lead { font-size: 1.2rem; line-height: 1.6; color: var(--ink-muted); max-width: 62ch; }
.lead strong { color: var(--ink); font-weight: 600; }
.muted { color: var(--ink-muted); }
.body-copy { max-width: 68ch; color: var(--ink-muted); font-size: 1.02rem; }
.body-copy p + p { margin-top: 16px; }
.body-copy strong { color: var(--ink); font-weight: 600; }
.center { text-align: center; margin-left: auto; margin-right: auto; }

.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { max-width: 680px; }
.section-head h2 { margin-top: 14px; }
.section-head .lead { margin-top: 16px; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 28px; border-radius: 999px; font-weight: 600; font-size: .98rem;
  border: 1px solid transparent; white-space: nowrap; transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { transform: translateY(-1px); background: #eeb463; }
.btn-ghost { border-color: var(--border); color: var(--ink); background: transparent; }
.btn-ghost:hover { border-color: var(--accent-border); background: var(--accent-soft); }
.btn-white { background: var(--ink); color: var(--bg); }
.btn-white:hover { transform: translateY(-1px); }
.btn-sm { padding: 10px 18px; font-size: .88rem; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.btn svg { width: 16px; height: 16px; flex: none; }

/* ============ HEADER / NAV ============ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,12,16,.88); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
}
.site-header .wrap-wide { display: flex; align-items: center; justify-content: space-between; height: 76px; gap: 24px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 700; font-size: 1.05rem; letter-spacing: -.01em; }
.brand .mark { width: 26px; height: 26px; flex: none; }
.brand .mark rect, .brand .mark circle, .brand .mark path { stroke: var(--accent); }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 14px; border-radius: 8px; font-size: .92rem; color: var(--ink-muted); font-weight: 500;
}
.main-nav a:hover, .main-nav a.is-active { color: var(--ink); background: var(--surface-2); }
.header-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; background: none; border: 1px solid var(--border); border-radius: 8px; padding: 8px 10px; color: var(--ink); }

@media (max-width: 980px) {
  .main-nav { position: fixed; inset: 76px 0 0 0; background: var(--bg); flex-direction: column; align-items: stretch; padding: 20px; gap: 4px; overflow-y: auto; transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .18s ease, transform .18s ease; }
  .main-nav.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .main-nav a { padding: 14px 12px; font-size: 1.05rem; border-bottom: 1px solid var(--border-soft); border-radius: 0; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn-ghost { display: none; }
}

.show-mobile { display: none; }
@media (max-width: 560px) {
  .wrap-wide { padding: 0 14px; }
  .site-header .wrap-wide { gap: 10px; }
  .brand span { display: none; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 9px 14px; font-size: .84rem; }
  .show-mobile { display: inline; }
  .hide-mobile { display: none; }
}

/* ============ FOOTER ============ */
.site-footer { border-top: 1px solid var(--border-soft); background: var(--surface); padding: 64px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-col h4 { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--ink-faint); margin-bottom: 16px; font-family: var(--font-mono); font-weight: 500; }
.footer-col ul { display: grid; gap: 10px; }
.footer-col a { color: var(--ink-muted); font-size: .93rem; }
.footer-col a:hover { color: var(--ink); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; padding-top: 28px; border-top: 1px solid var(--border-soft); font-size: .82rem; color: var(--ink-faint); }
.footer-bottom a { color: var(--ink-faint); }
.footer-bottom a:hover { color: var(--ink-muted); }

/* ============ CARDS ============ */
.card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px;
}
.card-hover { transition: border-color .15s ease, transform .15s ease; }
.card-hover:hover { border-color: var(--accent-border); transform: translateY(-2px); }
.icon-tile {
  width: 44px; height: 44px; border-radius: 10px; background: var(--accent-soft); border: 1px solid var(--accent-border);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.icon-tile svg { width: 22px; height: 22px; stroke: var(--accent); }

/* ============ STAT ROW ============ */
.stat-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; }
@media (max-width: 900px) { .stat-row { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .stat-row { grid-template-columns: repeat(2, 1fr); } }
.stat-cell { background: var(--surface); padding: 26px 18px; text-align: center; }
.stat-num { font-family: var(--font-mono); font-size: 2.1rem; font-weight: 500; color: var(--ink); line-height: 1; }
.stat-label { font-size: .78rem; color: var(--ink-muted); margin-top: 8px; line-height: 1.35; }

/* ============ PROCESS ============ */
.process-flow { display: flex; align-items: stretch; gap: 0; flex-wrap: wrap; }
.process-step { flex: 1 1 160px; padding: 22px 18px; border: 1px solid var(--border); background: var(--surface); position: relative; }
.process-step:not(:last-child) { border-right: none; }
.process-step:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.process-step:last-child { border-radius: 0 var(--radius) var(--radius) 0; }
@media (max-width: 780px) {
  .process-flow { flex-direction: column; }
  .process-step:not(:last-child) { border-right: 1px solid var(--border); border-bottom: none; }
  .process-step:first-child { border-radius: var(--radius) var(--radius) 0 0; }
  .process-step:last-child { border-radius: 0 0 var(--radius) var(--radius); }
}
.process-num { font-family: var(--font-mono); color: var(--accent); font-size: .8rem; margin-bottom: 8px; }
.process-step h4 { font-size: 1rem; margin-bottom: 6px; }
.process-step p { font-size: .86rem; color: var(--ink-muted); line-height: 1.5; }
.process-arrow { display: none; }

.stage-list { display: grid; gap: 0; border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); }
.stage {
  display: grid; grid-template-columns: 90px 1fr; gap: 24px; padding: 30px 28px;
}
.stage + .stage { border-top: 1px solid var(--border); }
.stage-num { font-family: var(--font-mono); font-size: 1.6rem; color: var(--accent); font-weight: 500; }
.stage h3 { margin-bottom: 8px; }
.stage p { color: var(--ink-muted); font-size: .95rem; max-width: 62ch; }
.stage ul.check-list { margin-top: 14px; }
@media (max-width: 640px) { .stage { grid-template-columns: 1fr; gap: 10px; } }

.check-list { display: grid; gap: 10px; }
.check-list li { display: flex; gap: 10px; align-items: flex-start; font-size: .92rem; color: var(--ink-muted); }
.check-list li svg { flex: none; width: 16px; height: 16px; margin-top: 3px; stroke: var(--accent); }
.check-list.two-col { grid-template-columns: 1fr 1fr; column-gap: 24px; }
@media (max-width: 640px) { .check-list.two-col { grid-template-columns: 1fr; } }

/* ============ SURFACE MAP DIAGRAM ============ */
.surface-map { border: 1px solid var(--border); border-radius: var(--radius); background:
  radial-gradient(circle at 20% 20%, rgba(227,166,75,.06), transparent 45%), var(--surface);
  padding: 40px; overflow: hidden; }
.surface-map svg { width: 100%; height: auto; }
.map-node-label { font-family: var(--font-mono); font-size: 11px; fill: var(--ink-muted); }
.map-node-core { fill: var(--surface-3); stroke: var(--accent); }
.map-node { fill: var(--surface-2); stroke: var(--line-tech); }
.map-node.unknown { stroke: var(--crit); stroke-dasharray: 3 3; }
.map-line { stroke: var(--line-tech); stroke-width: 1; }
.map-line.flagged { stroke: var(--accent); stroke-width: 1.4; }

/* ============ ATTACK PATH ============ */
.attack-path { display: grid; gap: 0; }
.ap-step {
  display: grid; grid-template-columns: 32px 1fr; gap: 18px; padding: 20px 0;
}
.ap-dot-col { display: flex; flex-direction: column; align-items: center; }
.ap-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--surface-3); border: 2px solid var(--accent); flex: none; }
.ap-line { width: 2px; flex: 1; background: var(--border); margin-top: 4px; }
.ap-step:last-child .ap-line { display: none; }
.ap-body { padding-bottom: 4px; }
.ap-tag { font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 4px; }
.ap-title { font-size: 1.05rem; font-weight: 600; }
.ap-desc { color: var(--ink-muted); font-size: .9rem; margin-top: 4px; max-width: 56ch; }

.status-pill { display: inline-flex; align-items: center; gap: 7px; padding: 6px 13px; border-radius: 999px; font-size: .78rem; font-weight: 600; font-family: var(--font-mono); text-transform: uppercase; letter-spacing: .04em; }
.status-pill::before { content: ""; width: 6px; height: 6px; border-radius: 50%; }
.status-validated { background: rgba(217,97,79,.12); color: #E88E7D; border: 1px solid rgba(217,97,79,.3); }
.status-validated::before { background: #D9614F; }
.status-notvalidated { background: rgba(79,168,112,.12); color: #8FD1A6; border: 1px solid rgba(79,168,112,.3); }
.status-notvalidated::before { background: #4FA870; }
.status-reviewed { background: var(--accent-soft); color: var(--accent); border: 1px solid var(--accent-border); }
.status-reviewed::before { background: var(--accent); }
.status-fictional { background: var(--surface-3); color: var(--ink-muted); border: 1px solid var(--border); font-style: italic; }

.evidence-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; margin-top: 20px; }
@media (max-width: 760px) { .evidence-grid { grid-template-columns: 1fr 1fr; } }
.evidence-cell { background: var(--surface); padding: 16px 18px; }
.evidence-cell h5 { font-family: var(--font-mono); font-size: 10.5px; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); margin-bottom: 6px; font-weight: 500; }
.evidence-cell p, .evidence-cell li { font-size: .87rem; color: var(--ink-muted); }
.evidence-cell ul { display: grid; gap: 4px; }
.evidence-cell li::before { content: "– "; color: var(--ink-faint); }

/* ============ TABLE (asset inventory) ============ */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
table.asset-table { width: 100%; border-collapse: collapse; min-width: 640px; font-size: .89rem; }
table.asset-table th {
  text-align: left; font-family: var(--font-mono); font-size: 11px; text-transform: uppercase; letter-spacing: .07em;
  color: var(--ink-faint); font-weight: 500; padding: 14px 18px; border-bottom: 1px solid var(--border); white-space: nowrap;
}
table.asset-table td { padding: 14px 18px; border-bottom: 1px solid var(--border-soft); color: var(--ink-muted); vertical-align: middle; }
table.asset-table tr:last-child td { border-bottom: none; }
table.asset-table td.asset-name { color: var(--ink); font-family: var(--font-mono); font-size: .86rem; }
.tag { display: inline-block; padding: 3px 10px; border-radius: 999px; font-size: .74rem; background: var(--surface-3); color: var(--ink-muted); border: 1px solid var(--border); }

/* ============ FAQ ============ */
.faq-item { border-bottom: 1px solid var(--border-soft); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 22px 0; display: flex; justify-content: space-between; align-items: center;
  font-weight: 600; font-size: 1.02rem; gap: 20px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex: none; width: 22px; height: 22px; position: relative; }
.faq-item summary .plus::before, .faq-item summary .plus::after { content: ""; position: absolute; background: var(--ink-muted); transition: transform .2s ease; }
.faq-item summary .plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-item summary .plus::after { top: 0; left: 50%; width: 1.5px; height: 100%; transform: translateX(-50%); }
.faq-item[open] summary .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-item .faq-a { padding: 0 0 24px; color: var(--ink-muted); max-width: 68ch; font-size: .96rem; }

/* ============ CTA BANNER ============ */
.cta-banner {
  border-radius: 20px; padding: 64px 48px; text-align: center;
  background: linear-gradient(160deg, var(--surface-2) 0%, var(--surface) 70%);
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 0%, rgba(227,166,75,.1), transparent 50%);
}
.cta-banner > * { position: relative; }
.cta-banner h2 { max-width: 640px; margin: 14px auto 18px; }
.cta-banner .lead { margin: 0 auto 32px; }
@media (max-width: 640px) { .cta-banner { padding: 44px 24px; } }

/* ============ FORM ============ */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: .85rem; font-weight: 600; color: var(--ink); }
.field .hint { font-size: .78rem; color: var(--ink-faint); font-weight: 400; }
.field input, .field select, .field textarea {
  background: var(--surface-2); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 13px 14px; color: var(--ink); width: 100%;
}
.field input::placeholder, .field textarea::placeholder { color: var(--ink-faint); }
.field textarea { resize: vertical; min-height: 100px; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 2px solid var(--accent); outline-offset: 1px; border-color: var(--accent); }
.radio-group { display: grid; gap: 10px; }
.radio-option { display: flex; align-items: flex-start; gap: 10px; padding: 12px 14px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-2); cursor: pointer; }
.radio-option:has(input:checked) { border-color: var(--accent-border); background: var(--accent-soft); }
.radio-option input { margin-top: 3px; }
.radio-option span { font-size: .92rem; }
.form-note { font-size: .8rem; color: var(--ink-faint); border-top: 1px solid var(--border-soft); padding-top: 20px; margin-top: 8px; }
.form-status { padding: 14px 16px; border-radius: var(--radius-sm); font-size: .92rem; margin-top: 16px; display: none; }
.form-status.show { display: block; }
.form-status.ok { background: rgba(79,168,112,.12); border: 1px solid rgba(79,168,112,.3); color: #8FD1A6; }
.form-status.err { background: rgba(217,97,79,.12); border: 1px solid rgba(217,97,79,.3); color: #E88E7D; }
.hp-field { position: absolute; left: -9999px; opacity: 0; }

/* ============ BREADCRUMB ============ */
.breadcrumb { font-size: .82rem; color: var(--ink-faint); margin-bottom: 20px; }
.breadcrumb a { color: var(--ink-faint); }
.breadcrumb a:hover { color: var(--ink-muted); }
.breadcrumb .sep { margin: 0 8px; }

/* ============ PAGE HERO (inner pages) ============ */
.page-hero { padding: 68px 0 56px; border-bottom: 1px solid var(--border-soft); }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); margin-top: 14px; }
.page-hero .lead { margin-top: 18px; }

/* ============ PRICING ============ */
.price-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 40px; }
.price-figure { font-family: var(--font-mono); font-size: 2.6rem; color: var(--ink); margin: 10px 0 4px; }
.price-figure span { font-size: 1rem; color: var(--ink-muted); font-weight: 400; }
.factor-list { display: grid; gap: 12px; margin-top: 24px; }
.factor-list li { display: flex; gap: 10px; font-size: .92rem; color: var(--ink-muted); }
.factor-list li svg { flex: none; width: 16px; height: 16px; stroke: var(--accent); margin-top: 3px; }

/* ============ SAMPLE BADGE ============ */
.fictional-banner {
  display: flex; align-items: center; gap: 10px; background: var(--surface-3); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 12px 18px; font-size: .85rem; color: var(--ink-muted); margin-bottom: 32px;
}
.fictional-banner strong { color: var(--accent); font-family: var(--font-mono); font-size: .78rem; text-transform: uppercase; letter-spacing: .06em; }

/* ============ PERSONA / LOGO-FREE TRUST ============ */
.trust-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
@media (max-width: 760px) { .trust-list { grid-template-columns: 1fr; } }
.trust-item { padding: 22px; border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface); font-size: .92rem; color: var(--ink-muted); }
.trust-item strong { display: block; color: var(--ink); margin-bottom: 6px; }

/* ============ ARTICLE / INSIGHTS ============ */
.article-card { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); padding: 26px; }
.article-meta { font-family: var(--font-mono); font-size: 11px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 10px; }
.article-card h3 { font-size: 1.08rem; margin-bottom: 8px; }
.article-card p { font-size: .9rem; color: var(--ink-muted); }
.article-body { max-width: 68ch; margin: 0 auto; color: var(--ink-muted); font-size: 1.03rem; }
.article-body h2 { color: var(--ink); font-size: 1.6rem; margin-top: 44px; margin-bottom: 16px; }
.article-body h3 { color: var(--ink); font-size: 1.25rem; margin-top: 32px; margin-bottom: 12px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px; padding-left: 22px; list-style: disc; }
.article-body ol { list-style: decimal; }
.article-body li { margin-bottom: 8px; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.article-body blockquote { border-left: 3px solid var(--accent); padding: 4px 0 4px 20px; margin: 24px 0; color: var(--ink); font-style: italic; }
.article-cta { margin-top: 48px; padding: 32px; border: 1px solid var(--accent-border); background: var(--accent-soft); border-radius: var(--radius); }
.article-cta h3 { color: var(--ink); margin-bottom: 10px; }

/* ============ STANDARD WP CONTENT (legal pages) ============ */
.wp-content-basic { max-width: 760px; margin: 0 auto; color: var(--ink-muted); }
.wp-content-basic h2 { color: var(--ink); font-size: 1.4rem; margin: 40px 0 14px; }
.wp-content-basic h3 { color: var(--ink); font-size: 1.1rem; margin: 28px 0 10px; }
.wp-content-basic p { margin-bottom: 16px; }
.wp-content-basic ul { list-style: disc; padding-left: 22px; margin-bottom: 16px; }
.wp-content-basic li { margin-bottom: 6px; }
.wp-content-basic a { color: var(--accent); text-decoration: underline; }

/* ============ UTIL ============ */
.mt-8 { margin-top: 8px; } .mt-16 { margin-top: 16px; } .mt-24 { margin-top: 24px; } .mt-32 { margin-top: 32px; } .mt-48 { margin-top: 48px; }
.mb-16 { margin-bottom: 16px; } .mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.hide-mobile { }
@media (max-width: 640px) { .hide-mobile { display: none; } }
