:root {
  --doxa-wine: #700407;
  --doxa-red: #d1242a;
  --doxa-light: #e3e3e3;
  --doxa-mid: #999999;
  --doxa-black: #121212;
  --paper: #f5f2ec;
  --white: #ffffff;
  --ink: #161616;
  --muted: #6e6a67;
  --line: rgba(18,18,18,.14);
  --line-dark: rgba(255,255,255,.13);
  --max: 1220px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input { font: inherit; }
::selection { background: var(--doxa-red); color: #fff; }

.container { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.section { padding: 108px 0; }
.section-tight { padding: 78px 0; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--doxa-red);
}
.eyebrow::before { content:""; width: 26px; height: 2px; background: currentColor; }
.display {
  margin: 0;
  font-family: "Arial Narrow", "Liberation Sans Narrow", "Roboto Condensed", Impact, sans-serif;
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: .94;
}
.section-title { font-size: clamp(2.6rem, 6vw, 5.4rem); max-width: 920px; }
.section-copy { max-width: 690px; color: var(--muted); font-size: 1.08rem; line-height: 1.75; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: 84px;
  display: flex;
  align-items: center;
  transition: background .25s ease, border-color .25s ease, backdrop-filter .25s ease;
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(18,18,18,.87);
  backdrop-filter: blur(18px);
  border-color: rgba(255,255,255,.09);
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; min-width: 128px; }
.brand img { width: 116px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 30px; color: rgba(255,255,255,.74); font-size: .9rem; font-weight: 650; }
.nav-links a { transition: color .2s ease; }
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-cta { display: inline-flex; align-items: center; gap: 9px; color: #fff; border: 1px solid rgba(255,255,255,.25); padding: 11px 15px; border-radius: 999px; }
.menu-btn { display: none; width: 44px; height: 44px; border: 1px solid rgba(255,255,255,.2); background: transparent; color: #fff; border-radius: 50%; }

.hero {
  min-height: 100svh;
  background: var(--doxa-black);
  color: #fff;
  position: relative;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 128px 0 72px;
}
.hero::before {
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 76% 46%, rgba(209,36,42,.16), transparent 25%),
    radial-gradient(circle at 18% 10%, rgba(112,4,7,.20), transparent 34%),
    linear-gradient(115deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: auto, auto, 54px 54px, 54px 54px;
  pointer-events: none;
}
#signal-canvas { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .72; }
.hero-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 1.08fr .92fr; gap: 72px; align-items: center; }
.hero-copy .eyebrow { color: #ff4a50; }
.hero h1 { font-size: clamp(4.3rem, 8.5vw, 8.7rem); max-width: 760px; }
.hero-lede { max-width: 700px; margin: 26px 0 0; color: rgba(255,255,255,.68); font-size: clamp(1.05rem, 1.45vw, 1.24rem); line-height: 1.75; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }
.btn { display: inline-flex; justify-content: center; align-items: center; gap: 10px; border-radius: 999px; padding: 14px 20px; font-weight: 800; font-size: .91rem; transition: transform .18s ease, background .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--doxa-red); }
.btn-primary:hover { background: #e12a30; }
.btn-ghost { color: #fff; border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.04); }
.btn-dark { color:#fff; background:var(--doxa-black); }
.btn-light { color:var(--doxa-black); background:#fff; border:1px solid var(--line); }

.hero-report { position: relative; }
.report-card {
  width: min(100%, 525px);
  margin-left: auto;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 24px;
  padding: 14px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-3deg) rotateX(1deg);
  transition: transform .35s ease;
}
.report-card:hover { transform: perspective(1200px) rotateY(0) rotateX(0) translateY(-4px); }
.report-card img { border-radius: 14px; width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.report-meta { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; padding: 17px 6px 5px; }
.report-kicker { color: #ff4a50; font-size: .72rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
.report-title { margin: 6px 0 0; font-size: 1.08rem; font-weight: 800; line-height: 1.35; }
.report-arrow { width: 42px; height: 42px; display:grid; place-items:center; border:1px solid rgba(255,255,255,.18); border-radius:50%; }
.hero-note { position: absolute; right: 12px; bottom: -44px; font-size: .72rem; letter-spacing: .16em; text-transform: uppercase; color: rgba(255,255,255,.32); }

.topic-strip { background:#fff; border-bottom:1px solid var(--line); }
.topic-strip .container { display:flex; gap:12px 28px; flex-wrap:wrap; align-items:center; min-height:70px; }
.topic-label { color: var(--doxa-red); font-weight:900; text-transform:uppercase; letter-spacing:.12em; font-size:.7rem; }
.topic { color:#5a5754; font-size:.88rem; }

.intro-grid { display:grid; grid-template-columns: 1.08fr .92fr; gap:70px; align-items:end; }
.intro-aside { border-left:1px solid var(--line); padding-left:34px; color:var(--muted); line-height:1.8; }

.metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:56px; }
.metric-card { min-height:270px; background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px; display:flex; flex-direction:column; justify-content:space-between; position:relative; overflow:hidden; }
.metric-card::after { content:""; position:absolute; inset:auto -48px -58px auto; width:150px; height:150px; border-radius:50%; border:28px solid rgba(209,36,42,.06); }
.metric-n { font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(3.4rem,6vw,5.6rem); line-height:.9; letter-spacing:-.04em; font-weight:900; color:var(--doxa-red); }
.metric-card h3 { margin:22px 0 8px; font-size:1.05rem; }
.metric-card p { margin:0; color:var(--muted); line-height:1.55; font-size:.92rem; max-width:30ch; }
.metric-source { margin-top:20px; padding-top:16px; border-top:1px solid var(--line); font-size:.68rem; color:#98928d; text-transform:uppercase; letter-spacing:.1em; }

.dark-section { background:var(--doxa-black); color:#fff; position:relative; overflow:hidden; }
.dark-section::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 10% 10%,rgba(209,36,42,.12),transparent 30%); pointer-events:none; }
.dark-section .section-copy { color:rgba(255,255,255,.62); }
.section-head { display:flex; align-items:end; justify-content:space-between; gap:30px; margin-bottom:46px; }
.text-link { color:inherit; font-size:.86rem; font-weight:800; display:inline-flex; align-items:center; gap:9px; }
.text-link span { transition:transform .2s ease; }
.text-link:hover span { transform:translateX(4px); }

.research-feature { display:grid; grid-template-columns:1.03fr .97fr; min-height:540px; border:1px solid var(--line-dark); border-radius:24px; overflow:hidden; background:#171717; }
.research-image { min-height:460px; background:#0b0b0b; }
.research-image img { width:100%; height:100%; object-fit:cover; }
.research-copy { padding:48px; display:flex; flex-direction:column; justify-content:center; }
.tag { display:inline-flex; width:max-content; padding:7px 10px; border:1px solid rgba(255,255,255,.16); border-radius:999px; color:rgba(255,255,255,.72); font-size:.7rem; font-weight:800; letter-spacing:.09em; text-transform:uppercase; }
.research-copy h3 { font-size:clamp(2.35rem,4vw,4.4rem); margin:20px 0 18px; }
.research-copy p { color:rgba(255,255,255,.62); line-height:1.75; }
.research-details { display:flex; gap:22px; flex-wrap:wrap; color:rgba(255,255,255,.45); font-size:.8rem; margin:22px 0 32px; }

.agenda-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:42px; }
.agenda-card { border:1px solid var(--line); background:#fff; border-radius:var(--radius); padding:26px; min-height:240px; display:flex; flex-direction:column; justify-content:space-between; }
.agenda-card .status { color:var(--doxa-red); font-size:.7rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.agenda-card h3 { font-size:1.3rem; margin:20px 0 8px; }
.agenda-card p { color:var(--muted); font-size:.92rem; line-height:1.6; }
.agenda-card small { color:#999; }

.observatory { display:grid; grid-template-columns:.92fr 1.08fr; gap:64px; align-items:center; }
.dashboard-mock { background:#fff; border:1px solid var(--line); border-radius:24px; padding:18px; box-shadow:0 18px 50px rgba(0,0,0,.07); }
.dash-top { display:flex; justify-content:space-between; align-items:center; padding:8px 8px 18px; border-bottom:1px solid var(--line); }
.dash-top strong { font-size:.9rem; }
.live-pill { font-size:.68rem; font-weight:800; color:var(--doxa-red); background:rgba(209,36,42,.08); border-radius:999px; padding:7px 10px; text-transform:uppercase; letter-spacing:.08em; }
.chart-panel { position:relative; height:300px; margin-top:16px; border-radius:16px; overflow:hidden; background:linear-gradient(#faf9f7,#f5f2ec); }
.chart-grid { position:absolute; inset:0; background-image:linear-gradient(to right,rgba(18,18,18,.06) 1px,transparent 1px),linear-gradient(rgba(18,18,18,.06) 1px,transparent 1px); background-size:20% 100%,100% 25%; }
.chart-line { position:absolute; inset:0; }
.chart-line svg { width:100%; height:100%; }
.chart-caption { position:absolute; top:18px; left:20px; }
.chart-caption b { display:block; font-size:1.65rem; }
.chart-caption span { color:var(--muted); font-size:.75rem; }
.dash-bottom { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:10px; }
.mini-kpi { background:#f6f4f0; border-radius:12px; padding:14px; }
.mini-kpi span { color:var(--muted); font-size:.68rem; }
.mini-kpi b { display:block; margin-top:4px; font-size:1.1rem; }

.about-grid { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:start; }
.about-mark { aspect-ratio:1; max-width:420px; border-radius:30px; background:var(--doxa-black); display:grid; place-items:center; position:relative; overflow:hidden; }
.about-mark::after { content:""; position:absolute; width:330px; height:330px; border-radius:50%; border:1px solid rgba(255,255,255,.08); box-shadow:0 0 0 55px rgba(255,255,255,.025),0 0 0 110px rgba(255,255,255,.02); }
.about-mark img { width:48%; z-index:1; }
.about-copy h2 { font-size:clamp(3.2rem,6vw,6.2rem); }
.about-copy p { color:var(--muted); line-height:1.82; font-size:1.02rem; }
.principles { margin-top:30px; border-top:1px solid var(--line); }
.principle { display:grid; grid-template-columns:52px 1fr; gap:20px; padding:22px 0; border-bottom:1px solid var(--line); }
.principle span { color:var(--doxa-red); font-weight:900; }
.principle strong { display:block; margin-bottom:4px; }
.principle p { margin:0; font-size:.9rem; }

.cta-band { background:var(--doxa-red); color:#fff; padding:72px 0; }
.cta-inner { display:flex; align-items:center; justify-content:space-between; gap:40px; }
.cta-inner h2 { font-size:clamp(2.8rem,5vw,5.4rem); max-width:760px; }
.cta-actions { display:flex; flex-wrap:wrap; gap:12px; }
.cta-band .btn-light { border-color:transparent; }
.cta-band .btn-ghost { background:transparent; }

.footer { background:#0c0c0c; color:#fff; padding:58px 0 30px; }
.footer-grid { display:grid; grid-template-columns:1.3fr .7fr .7fr; gap:48px; }
.footer-logo { width:112px; }
.footer p { color:rgba(255,255,255,.48); max-width:440px; line-height:1.7; font-size:.9rem; }
.footer h4 { font-size:.75rem; letter-spacing:.12em; text-transform:uppercase; color:rgba(255,255,255,.48); }
.footer-links { display:grid; gap:10px; color:rgba(255,255,255,.72); font-size:.88rem; }
.footer-bottom { margin-top:46px; padding-top:20px; border-top:1px solid rgba(255,255,255,.1); display:flex; justify-content:space-between; gap:20px; color:rgba(255,255,255,.33); font-size:.75rem; }

/* Research detail */
.article-hero { background:var(--doxa-black); color:#fff; padding:156px 0 74px; position:relative; overflow:hidden; }
.article-hero::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 80% 30%,rgba(209,36,42,.15),transparent 30%); }
.article-hero .container { position:relative; z-index:1; }
.breadcrumb { display:flex; gap:10px; align-items:center; color:rgba(255,255,255,.48); font-size:.78rem; margin-bottom:34px; }
.article-hero h1 { font-size:clamp(4rem,8vw,8rem); max-width:1050px; }
.article-sub { max-width:780px; color:rgba(255,255,255,.65); font-size:1.16rem; line-height:1.7; margin-top:24px; }
.article-meta { display:flex; flex-wrap:wrap; gap:10px 24px; margin-top:32px; color:rgba(255,255,255,.45); font-size:.83rem; }
.article-actions { display:flex; gap:12px; flex-wrap:wrap; margin-top:34px; }
.article-cover { margin-top:60px; border-radius:22px; overflow:hidden; border:1px solid rgba(255,255,255,.12); box-shadow:var(--shadow); }
.article-cover img { width:100%; }

.article-shell { display:grid; grid-template-columns:250px minmax(0,1fr); gap:70px; align-items:start; }
.article-toc { position:sticky; top:110px; padding:20px 0; }
.article-toc b { display:block; font-size:.72rem; letter-spacing:.12em; text-transform:uppercase; color:#999; margin-bottom:16px; }
.article-toc a { display:block; padding:8px 0; color:#777; font-size:.86rem; border-left:2px solid transparent; padding-left:12px; }
.article-toc a:hover { color:var(--doxa-red); border-left-color:var(--doxa-red); }
.article-body { max-width:840px; }
.article-body section { scroll-margin-top:110px; padding:10px 0 56px; }
.article-body h2 { font-size:clamp(2.6rem,5vw,4.7rem); margin:0 0 24px; }
.article-body h3 { font-size:1.45rem; margin:34px 0 14px; }
.article-body p { color:#4f4b48; line-height:1.85; font-size:1.02rem; }
.lead { font-size:1.22rem !important; color:#2e2b29 !important; }
.callout { border-left:4px solid var(--doxa-red); background:#fff; padding:24px 28px; border-radius:0 16px 16px 0; margin:30px 0; }
.callout strong { font-size:1.08rem; }
.callout p { margin-bottom:0; }
.figure { margin:36px 0; background:#fff; border:1px solid var(--line); border-radius:18px; padding:10px; }
.figure img { width:100%; border-radius:10px; }
.figure figcaption { padding:12px 10px 8px; color:#8b8580; font-size:.76rem; line-height:1.5; }
.inline-metrics { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin:32px 0; }
.inline-metric { background:#fff; border:1px solid var(--line); border-radius:16px; padding:20px; }
.inline-metric b { display:block; color:var(--doxa-red); font-size:2.05rem; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; }
.inline-metric span { color:#706b67; font-size:.8rem; }
.source-list { display:grid; gap:12px; margin-top:24px; }
.source-item { display:grid; grid-template-columns:150px 1fr; gap:18px; padding:16px 0; border-bottom:1px solid var(--line); font-size:.88rem; }
.source-item b { color:#555; }
.source-item span { color:#777; }

.reveal { opacity:0; transform:translateY(18px); transition:opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity:1; transform:none; }

@media (max-width: 960px) {
  .site-header { height:74px; }
  .nav-links { position:fixed; top:74px; right:20px; left:20px; padding:20px; background:rgba(18,18,18,.97); border:1px solid rgba(255,255,255,.1); border-radius:18px; flex-direction:column; align-items:stretch; display:none; box-shadow:var(--shadow); }
  .nav-links.open { display:flex; }
  .menu-btn { display:grid; place-items:center; }
  .hero { padding-top:120px; }
  .hero-inner, .intro-grid, .research-feature, .observatory, .about-grid, .article-shell { grid-template-columns:1fr; }
  .hero-inner { gap:52px; }
  .report-card { margin:0; max-width:700px; }
  .hero-note { display:none; }
  .metrics, .agenda-grid { grid-template-columns:1fr; }
  .metric-card { min-height:210px; }
  .research-image { min-height:360px; }
  .observatory { gap:42px; }
  .about-mark { max-width:320px; }
  .footer-grid { grid-template-columns:1fr 1fr; }
  .footer-grid > div:first-child { grid-column:1/-1; }
  .article-toc { display:none; }
  .inline-metrics { grid-template-columns:1fr; }
}

@media (max-width: 640px) {
  .container { width:min(calc(100% - 28px), var(--max)); }
  .section { padding:82px 0; }
  .hero { min-height:auto; padding-bottom:70px; }
  .hero h1 { font-size:clamp(3.55rem,18vw,5.7rem); }
  .hero-lede { font-size:1rem; }
  .hero-actions .btn { width:100%; }
  .report-meta { grid-template-columns:1fr; }
  .report-arrow { display:none; }
  .section-head { align-items:start; flex-direction:column; }
  .research-copy { padding:30px 24px; }
  .research-image { min-height:260px; }
  .dash-bottom { grid-template-columns:1fr; }
  .cta-inner { flex-direction:column; align-items:flex-start; }
  .cta-actions { width:100%; }
  .cta-actions .btn { width:100%; }
  .footer-grid { grid-template-columns:1fr; }
  .footer-grid > div:first-child { grid-column:auto; }
  .footer-bottom { flex-direction:column; }
  .article-hero { padding-top:128px; }
  .article-hero h1 { font-size:clamp(3.2rem,16vw,5.5rem); }
  .source-item { grid-template-columns:1fr; gap:5px; }
}

/* Research library + multiple document formats */
.method-cards .metric-n { font-size:clamp(2.7rem,5vw,4.5rem); }
.document-actions { display:flex; gap:12px; flex-wrap:wrap; }
.document-grid { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:16px; }
.document-card { min-height:310px; background:#fff; border:1px solid var(--line); border-radius:22px; padding:30px; display:flex; flex-direction:column; transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease; }
.document-card:hover { transform:translateY(-4px); box-shadow:0 20px 55px rgba(0,0,0,.08); border-color:rgba(209,36,42,.35); }
.document-type { color:var(--doxa-red); font-size:.7rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.document-card strong { font-family:"Arial Narrow","Liberation Sans Narrow","Roboto Condensed",Impact,sans-serif; font-size:clamp(2rem,4vw,3.25rem); line-height:.96; letter-spacing:-.025em; margin:22px 0 16px; }
.document-card p { color:var(--muted); line-height:1.7; margin:0 0 28px; }
.document-link { margin-top:auto; font-size:.86rem; font-weight:900; }
.archive-hero h1 { max-width:none; }
.research-archive { min-height:650px; }
.light-actions .btn-light { border-color:var(--line); }

@media (max-width: 760px) {
  .document-grid { grid-template-columns:1fr; }
  .document-card { min-height:260px; }
}

/* =========================================================
   Citizen explainer — Research 001
   ========================================================= */
.citizen-page { background:#f6f2eb; }
.citizen-hero { padding-bottom:86px; }
.citizen-hero-grid { display:grid; grid-template-columns:minmax(0,1.18fr) minmax(310px,.72fr); gap:58px; align-items:end; }
.citizen-hero .article-sub strong { color:#fff; }
.reading-badges { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.reading-badges span { padding:8px 11px; border:1px solid rgba(255,255,255,.14); border-radius:999px; color:rgba(255,255,255,.66); font-size:.76rem; }
.citizen-hero-card { background:#fff; color:var(--ink); border-radius:24px; padding:30px; box-shadow:0 30px 90px rgba(0,0,0,.25); }
.citizen-hero-card .tiny-label { color:var(--doxa-red); }
.citizen-hero-card > p { font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(1.8rem,3vw,2.9rem); font-weight:800; letter-spacing:-.025em; line-height:1.02; margin:14px 0 26px; }
.citizen-hero-card small { display:block; margin-top:18px; color:#777; line-height:1.55; }
.hero-formula { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; }
.hero-formula div { min-width:0; background:#f4f0e9; border-radius:14px; padding:14px 12px; }
.hero-formula strong { display:block; color:var(--doxa-red); font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:2.25rem; line-height:.95; }
.hero-formula span { display:block; margin-top:8px; color:#6d6762; font-size:.72rem; line-height:1.3; }
.tiny-label { display:inline-block; font-size:.68rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; color:#8e8882; }

.quick-strip { padding:86px 0; background:#fff; border-bottom:1px solid var(--line); }
.quick-intro { display:flex; align-items:end; justify-content:space-between; gap:24px; margin-bottom:34px; }
.quick-intro h2 { font-size:clamp(3rem,6vw,5.8rem); }
.quick-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.quick-card { background:#f6f2eb; border:1px solid var(--line); border-radius:20px; padding:26px; min-height:250px; }
.quick-number { display:block; color:var(--doxa-red); font-size:.72rem; font-weight:900; letter-spacing:.12em; }
.quick-card h3 { margin:50px 0 12px; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:2rem; line-height:1; }
.quick-card p { margin:0; color:#625d58; line-height:1.65; }
.plain-conclusion { margin-top:18px; border-radius:20px; padding:26px 30px; background:var(--doxa-black); color:#fff; display:grid; grid-template-columns:180px 1fr; gap:28px; align-items:center; }
.plain-conclusion span { color:#ff4a50; font-weight:900; font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; }
.plain-conclusion p { margin:0; font-size:1.08rem; line-height:1.65; color:rgba(255,255,255,.78); }
.plain-conclusion strong { color:#fff; }

.story-explorer { display:grid; grid-template-columns:320px minmax(0,1fr); gap:18px; }
.story-tabs { display:grid; gap:8px; align-content:start; }
.story-tab { width:100%; border:1px solid var(--line); background:#fff; color:#625d58; border-radius:14px; padding:15px 16px; text-align:left; display:flex; align-items:center; gap:12px; cursor:pointer; font-weight:750; transition:.2s ease; }
.story-tab span { width:30px; height:30px; border-radius:50%; display:grid; place-items:center; flex:0 0 auto; background:#eee8df; color:#777; font-size:.78rem; font-weight:900; }
.story-tab.active { background:var(--doxa-black); color:#fff; border-color:var(--doxa-black); }
.story-tab.active span { background:var(--doxa-red); color:#fff; }
.story-stage { min-height:470px; background:#fff; border:1px solid var(--line); border-radius:24px; overflow:hidden; display:grid; grid-template-columns:minmax(250px,.88fr) minmax(0,1.12fr); }
.story-visual { min-height:470px; background:#111; padding:34px; display:grid; place-items:center; position:relative; overflow:hidden; }
.story-visual::before { content:""; position:absolute; inset:0; background:radial-gradient(circle at 30% 20%,rgba(209,36,42,.22),transparent 36%); }
.story-copy { padding:44px; align-self:center; }
.story-copy h3 { font-size:clamp(2.4rem,4vw,4.5rem); margin:12px 0 20px; }
.story-copy > p { color:#5f5a55; line-height:1.78; font-size:1.05rem; }
.story-takeaway { margin-top:28px; border-left:3px solid var(--doxa-red); padding:13px 0 13px 18px; color:#5f5a55; line-height:1.55; }
.story-takeaway strong { color:#1c1a19; }
.story-viz-card { position:relative; z-index:1; width:min(100%,360px); color:#fff; }
.story-viz-card .viz-kicker { color:#ff4a50; font-size:.68rem; font-weight:900; letter-spacing:.12em; text-transform:uppercase; }
.story-viz-card .viz-big { font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(4.6rem,8vw,7rem); line-height:.88; margin:14px 0 18px; letter-spacing:-.04em; }
.story-viz-card .viz-caption { color:rgba(255,255,255,.62); line-height:1.5; }
.story-viz-bars { display:grid; gap:16px; margin-top:26px; }
.story-viz-bar span { display:flex; justify-content:space-between; gap:16px; color:rgba(255,255,255,.65); font-size:.78rem; margin-bottom:7px; }
.story-viz-bar i { display:block; height:11px; background:rgba(255,255,255,.09); border-radius:999px; overflow:hidden; }
.story-viz-bar i::after { content:""; display:block; width:var(--w,50%); height:100%; background:#fff; border-radius:inherit; }
.story-viz-bar.red i::after { background:var(--doxa-red); }
.story-viz-arrow { font-size:5rem; line-height:1; color:var(--doxa-red); margin:20px 0; }
.story-viz-mini { display:grid; grid-template-columns:repeat(3,1fr); gap:8px; margin-top:24px; }
.story-viz-mini div { background:rgba(255,255,255,.07); border:1px solid rgba(255,255,255,.1); border-radius:12px; padding:12px 9px; }
.story-viz-mini strong { display:block; font-size:1.25rem; }
.story-viz-mini span { font-size:.63rem; color:rgba(255,255,255,.55); }

.price-lab { background:#efe8de; }
.price-comparator { border-radius:24px; overflow:hidden; border:1px solid var(--line); background:#fff; }
.price-switch { display:flex; gap:8px; padding:14px; border-bottom:1px solid var(--line); background:#f8f5f0; }
.price-switch button { border:1px solid var(--line); background:#fff; border-radius:999px; padding:11px 16px; cursor:pointer; font-weight:800; color:#6e6964; }
.price-switch button.active { background:var(--doxa-black); border-color:var(--doxa-black); color:#fff; }
.price-panel { display:grid; grid-template-columns:1.1fr .9fr; gap:50px; padding:42px; }
.price-bars { display:grid; gap:34px; align-content:center; }
.price-label { display:flex; justify-content:space-between; gap:18px; align-items:end; margin-bottom:10px; }
.price-label span { color:#6c6762; font-size:.86rem; }
.price-label strong { white-space:nowrap; font-size:1.2rem; }
.bar-track { height:30px; background:#eee9e2; border-radius:6px; overflow:hidden; }
.bar-fill { height:100%; transition:width .45s ease; }
.bar-fill.imported { background:#999; }
.bar-fill.local { background:var(--doxa-red); }
.price-explain { border-left:1px solid var(--line); padding-left:40px; }
.price-big { display:block; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(3.8rem,6vw,6.2rem); font-weight:900; line-height:.9; color:var(--doxa-red); }
.price-explain h3 { font-size:1.5rem; margin:18px 0 10px; }
.price-explain p { color:#5f5a55; line-height:1.7; }
.plain-note { margin-top:22px; background:#f3eee7; border-radius:12px; padding:14px 16px; color:#6b655f; font-size:.82rem; line-height:1.5; }
.micro-source { margin:0; padding:0 42px 30px; color:#918a84; font-size:.7rem; line-height:1.55; }

.scenario-section .section-title { max-width:1000px; }
.scenario-lab { border:1px solid rgba(255,255,255,.14); border-radius:26px; overflow:hidden; background:#171717; }
.scenario-controls { display:grid; grid-template-columns:repeat(3,1fr); border-bottom:1px solid rgba(255,255,255,.12); }
.scenario-controls button { min-height:104px; background:transparent; color:#fff; border:0; border-right:1px solid rgba(255,255,255,.11); cursor:pointer; text-align:left; padding:22px 26px; transition:.2s ease; }
.scenario-controls button:last-child { border-right:0; }
.scenario-controls button strong { display:block; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:2.6rem; line-height:.9; }
.scenario-controls button span { color:rgba(255,255,255,.45); font-size:.75rem; }
.scenario-controls button.active { background:var(--doxa-red); }
.scenario-controls button.active span { color:rgba(255,255,255,.78); }
.scenario-market { padding:34px 34px 20px; }
.market-bar { display:flex; height:58px; border-radius:12px; overflow:hidden; background:#222; }
.market-import, .market-local { min-width:0; display:grid; place-items:center; transition:width .4s ease; }
.market-import { background:var(--doxa-red); }
.market-local { background:#ededed; color:#1d1d1d; }
.market-import span, .market-local span { font-size:.73rem; font-weight:900; white-space:nowrap; padding:0 8px; overflow:hidden; text-overflow:ellipsis; }
.scenario-market p { margin:9px 0 0; color:rgba(255,255,255,.42); font-size:.75rem; }
.scenario-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.09); border-top:1px solid rgba(255,255,255,.09); border-bottom:1px solid rgba(255,255,255,.09); }
.scenario-stat { background:#171717; padding:30px; min-height:230px; }
.scenario-stat > span { display:block; color:rgba(255,255,255,.48); font-size:.78rem; line-height:1.4; min-height:44px; }
.scenario-stat strong { display:block; margin-top:18px; color:#fff; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(2.7rem,4vw,4.6rem); line-height:.9; }
.scenario-stat small { display:block; margin-top:14px; color:rgba(255,255,255,.42); line-height:1.5; }
.gauge { height:10px; margin-top:20px; background:#333; border-radius:999px; position:relative; }
.gauge-fill { height:100%; border-radius:inherit; background:var(--doxa-red); transition:width .4s ease; }
.gauge-limit { position:absolute; right:0; top:-4px; height:18px; border-right:1px dashed rgba(255,255,255,.55); }
.scenario-verdict { display:grid; grid-template-columns:.9fr 1.1fr; gap:36px; padding:32px 34px; align-items:center; }
.verdict-badge { display:inline-block; color:#fff; background:var(--doxa-red); border-radius:999px; padding:7px 10px; font-size:.67rem; font-weight:900; letter-spacing:.09em; text-transform:uppercase; }
.scenario-verdict h3 { margin:12px 0 0; font-size:1.55rem; }
.scenario-verdict p { color:rgba(255,255,255,.56); line-height:1.7; margin:0; }
.dark-source { color:rgba(255,255,255,.32); padding-bottom:28px; }

.reserve-explainer { background:#fff; }
.pantry-card { display:grid; grid-template-columns:.8fr 1.2fr; gap:0; border:1px solid var(--line); border-radius:24px; overflow:hidden; }
.pantry-visual { min-height:410px; background:#151515; padding:50px; display:grid; grid-template-columns:repeat(3,1fr); gap:14px; align-content:center; }
.sack { aspect-ratio:1/1.15; border:1px dashed rgba(255,255,255,.2); border-radius:40% 40% 18% 18%; display:grid; place-items:center; color:rgba(255,255,255,.25); font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:2rem; position:relative; overflow:hidden; }
.sack.active { border-style:solid; border-color:rgba(255,255,255,.25); color:#fff; background:linear-gradient(to top,#ede4d6 0 100%); color:#302c29; }
.sack.partial { background:linear-gradient(to top,#ede4d6 0 36%,transparent 36% 100%); color:#fff; }
.pantry-copy { padding:48px; align-self:center; }
.pantry-copy h3 { font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:clamp(2.5rem,4vw,4.6rem); line-height:.96; margin:14px 0 20px; }
.pantry-copy > p { color:#5f5a55; line-height:1.75; }
.pantry-cost { margin-top:28px; padding-top:24px; border-top:1px solid var(--line); }
.pantry-cost strong { display:block; color:var(--doxa-red); font-size:1.35rem; }
.pantry-cost span { display:block; margin-top:8px; color:#8a837d; font-size:.78rem; line-height:1.55; }

.myth-list { border-top:1px solid var(--line); }
.myth-item { border-bottom:1px solid var(--line); }
.myth-item button { width:100%; border:0; background:transparent; padding:25px 0; display:flex; align-items:center; justify-content:space-between; gap:20px; text-align:left; cursor:pointer; color:var(--ink); font-size:1.08rem; font-weight:800; }
.myth-item button i { width:36px; height:36px; flex:0 0 auto; border:1px solid var(--line); border-radius:50%; display:grid; place-items:center; font-style:normal; font-size:1.3rem; transition:transform .2s ease; }
.myth-item.open button i { transform:rotate(45deg); }
.myth-answer { max-height:0; overflow:hidden; transition:max-height .35s ease; }
.myth-answer p { margin:0; padding:0 58px 28px 0; max-width:860px; color:#615c57; line-height:1.75; }

.conclusion-section { background:#ece4d9; }
.conclusion-card { background:var(--doxa-black); color:#fff; border-radius:28px; padding:clamp(34px,6vw,72px); position:relative; overflow:hidden; }
.conclusion-card::after { content:""; position:absolute; width:420px; height:420px; right:-180px; top:-190px; border:70px solid rgba(209,36,42,.12); border-radius:50%; }
.conclusion-card > * { position:relative; z-index:1; }
.conclusion-card h2 { font-size:clamp(3.4rem,7vw,7rem); max-width:1000px; }
.conclusion-lede { max-width:720px; color:rgba(255,255,255,.6); font-size:1.1rem; line-height:1.7; margin:24px 0 0; }
.conclusion-formula { display:grid; grid-template-columns:repeat(3,1fr); gap:12px; margin-top:42px; }
.conclusion-formula > div { border:1px solid rgba(255,255,255,.12); background:rgba(255,255,255,.05); border-radius:18px; padding:24px; }
.conclusion-formula strong { display:block; color:#ff4148; font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:4.4rem; line-height:.85; }
.conclusion-formula span { display:block; margin-top:16px; color:rgba(255,255,255,.58); line-height:1.45; }
.conclusion-formula b { display:block; color:#fff; margin-bottom:5px; }
.decision-rule { margin-top:22px; display:grid; grid-template-columns:repeat(3,1fr); gap:1px; background:rgba(255,255,255,.1); border-radius:18px; overflow:hidden; }
.decision-rule div { background:#181818; padding:22px; }
.decision-rule span { display:block; color:#ff565c; font-size:.68rem; font-weight:900; text-transform:uppercase; letter-spacing:.1em; margin-bottom:9px; }
.decision-rule strong { font-size:.9rem; line-height:1.5; }

.depth-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; }
.depth-card { min-height:320px; background:#fff; border:1px solid var(--line); border-radius:20px; padding:28px; display:flex; flex-direction:column; transition:.2s ease; }
.depth-card:hover:not(.current) { transform:translateY(-4px); border-color:rgba(209,36,42,.4); }
.depth-card.current { background:#f0e8dd; border-color:rgba(209,36,42,.25); }
.depth-audience { color:var(--doxa-red); font-size:.68rem; font-weight:900; letter-spacing:.1em; text-transform:uppercase; }
.depth-card strong { font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif; font-size:2.3rem; line-height:1; margin:22px 0 14px; }
.depth-card p { margin:0; color:#67615c; line-height:1.65; }
.depth-link { margin-top:auto; padding-top:28px; font-size:.82rem; font-weight:900; }

.method-note { padding:70px 0; background:#fff; border-top:1px solid var(--line); }
.method-note-inner { display:grid; grid-template-columns:.8fr 1.2fr; gap:70px; align-items:center; }
.method-note h2 { font-size:clamp(2.5rem,4vw,4.6rem); }
.method-note-inner > p { color:#615c57; line-height:1.75; font-size:1.02rem; }

@media (max-width: 1000px) {
  .citizen-hero-grid, .story-explorer, .price-panel, .pantry-card, .method-note-inner { grid-template-columns:1fr; }
  .citizen-hero-card { max-width:720px; }
  .story-tabs { grid-template-columns:repeat(5,minmax(160px,1fr)); overflow-x:auto; padding-bottom:6px; }
  .story-tab { min-width:160px; }
  .story-stage { grid-template-columns:1fr; }
  .story-visual { min-height:340px; }
  .price-explain { border-left:0; border-top:1px solid var(--line); padding:28px 0 0; }
  .scenario-grid, .depth-grid { grid-template-columns:1fr; }
  .scenario-stat { min-height:auto; }
  .decision-rule { grid-template-columns:1fr; }
}

@media (max-width: 760px) {
  .quick-grid, .conclusion-formula { grid-template-columns:1fr; }
  .plain-conclusion { grid-template-columns:1fr; gap:8px; }
  .quick-card { min-height:auto; }
  .quick-card h3 { margin-top:26px; }
  .hero-formula { grid-template-columns:1fr; }
  .scenario-controls { grid-template-columns:1fr; }
  .scenario-controls button { border-right:0; border-bottom:1px solid rgba(255,255,255,.11); min-height:auto; }
  .scenario-controls button:last-child { border-bottom:0; }
  .scenario-verdict { grid-template-columns:1fr; }
  .market-bar { height:72px; }
  .market-import span, .market-local span { writing-mode:vertical-rl; transform:rotate(180deg); font-size:.62rem; }
  .pantry-visual { min-height:300px; padding:30px; }
  .pantry-copy { padding:30px; }
  .price-panel { padding:28px 22px; }
  .micro-source { padding:0 22px 24px; }
  .price-label { align-items:start; flex-direction:column; gap:5px; }
  .story-copy { padding:30px 24px; }
  .story-visual { min-height:300px; padding:26px; }
  .story-viz-mini { grid-template-columns:1fr; }
  .myth-answer p { padding-right:0; }
}

/* V4 — portada editorial: la identidad de DOXA, no la portada de un PDF */
.hero-system {
  width: min(100%, 560px);
  margin-left: auto;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 26px;
  background: linear-gradient(155deg, rgba(255,255,255,.075), rgba(255,255,255,.025));
  box-shadow: 0 32px 90px rgba(0,0,0,.28);
  backdrop-filter: blur(18px);
  overflow: hidden;
  position: relative;
}
.hero-system::before {
  content:"";
  position:absolute;
  width:240px;
  height:240px;
  border-radius:50%;
  right:-110px;
  top:-105px;
  background:radial-gradient(circle, rgba(209,36,42,.22), transparent 70%);
  pointer-events:none;
}
.system-topline {
  min-height:58px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 22px;
  border-bottom:1px solid rgba(255,255,255,.1);
  color:rgba(255,255,255,.48);
  font-size:.64rem;
  font-weight:850;
  letter-spacing:.13em;
  text-transform:uppercase;
}
.system-live { display:flex; align-items:center; gap:8px; color:rgba(255,255,255,.66); }
.system-live i { width:7px; height:7px; border-radius:50%; background:var(--doxa-red); box-shadow:0 0 0 5px rgba(209,36,42,.1); }
.system-question { padding:32px 28px 18px; min-height:164px; }
.system-label { display:block; color:#ff545a; font-size:.7rem; font-weight:900; letter-spacing:.13em; text-transform:uppercase; margin-bottom:11px; }
.system-question strong {
  display:block;
  font-family:"Arial Narrow","Liberation Sans Narrow",Impact,sans-serif;
  font-size:clamp(2.8rem,5vw,4.35rem);
  line-height:.92;
  letter-spacing:-.04em;
}
.system-question p { margin:13px 0 0; color:rgba(255,255,255,.64); font-size:1rem; line-height:1.55; min-height:3.1em; max-width:34ch; }
.system-visual { padding:4px 22px 16px; }
.system-visual svg { width:100%; height:auto; display:block; overflow:visible; }
.system-grid path { fill:none; stroke:rgba(255,255,255,.08); stroke-width:1; }
.system-line { fill:none; stroke:url(#doxaLine); stroke-width:4; stroke-linecap:round; }
.system-point { fill:var(--doxa-red); stroke:#fff; stroke-width:2; }
.system-axis { display:grid; grid-template-columns:repeat(4,1fr); gap:6px; margin-top:-4px; color:rgba(255,255,255,.35); font-size:.62rem; text-transform:uppercase; letter-spacing:.1em; }
.system-axis span:last-child { text-align:right; color:rgba(255,255,255,.72); }
.system-pipeline { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid rgba(255,255,255,.1); border-bottom:1px solid rgba(255,255,255,.1); }
.system-pipeline > div { padding:19px 20px 20px; min-width:0; }
.system-pipeline > div + div { border-left:1px solid rgba(255,255,255,.1); }
.system-pipeline span { display:block; color:#ff545a; font-size:.62rem; font-weight:900; letter-spacing:.1em; }
.system-pipeline b { display:block; margin-top:7px; font-size:.94rem; }
.system-pipeline small { display:block; margin-top:4px; color:rgba(255,255,255,.38); font-size:.68rem; line-height:1.35; }
.system-latest { display:grid; grid-template-columns:auto minmax(0,1fr) 38px; gap:18px; align-items:center; padding:20px 22px; transition:background .2s ease; }
.system-latest:hover { background:rgba(255,255,255,.055); }
.system-latest span b { display:block; color:#ff545a; font-size:.65rem; letter-spacing:.11em; }
.system-latest span small { display:block; color:rgba(255,255,255,.34); font-size:.66rem; margin-top:3px; }
.system-latest > strong { font-size:.89rem; line-height:1.35; }
.system-latest > i { width:38px; height:38px; border:1px solid rgba(255,255,255,.16); border-radius:50%; display:grid; place-items:center; font-style:normal; }

/* V4 — la imagen de cada investigación funciona como fotografía, no como captura de una diapositiva */
.research-image-clean { position:relative; overflow:hidden; }
.research-image-clean::after {
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,.04), transparent 55%), linear-gradient(0deg, rgba(0,0,0,.18), transparent 42%);
  pointer-events:none;
}
.research-image-clean img { transition:transform .55s ease; }
.research-image-clean:hover img { transform:scale(1.025); }

/* V4 — formatos definidos por profundidad, nunca por tipo de persona */
.depth-audience { letter-spacing:.11em; }

@media (max-width: 980px) {
  .hero-system { margin:0; width:100%; max-width:720px; }
}
@media (max-width: 620px) {
  .hero-system { border-radius:20px; }
  .system-topline { padding:0 16px; min-height:52px; }
  .system-topline > span:first-child { max-width:20ch; }
  .system-question { padding:26px 18px 12px; }
  .system-visual { padding:0 14px 12px; }
  .system-pipeline > div { padding:15px 12px 16px; }
  .system-pipeline small { display:none; }
  .system-latest { grid-template-columns:1fr 34px; padding:17px 16px; }
  .system-latest > span { display:none; }
  .system-latest > i { width:34px; height:34px; }
}

.repro-callout{margin-top:18px;display:flex;align-items:center;justify-content:space-between;gap:28px;padding:26px 28px;border-radius:18px;background:#121212;color:#fff;text-decoration:none;border:1px solid rgba(255,255,255,.08)}.repro-callout>div{max-width:760px}.repro-callout strong{display:block;font-size:1.35rem;margin:7px 0}.repro-callout p{margin:0;color:rgba(255,255,255,.62);line-height:1.6}.repro-callout .depth-link{white-space:nowrap;color:#fff}@media(max-width:700px){.repro-callout{align-items:flex-start;flex-direction:column}.repro-callout .depth-link{white-space:normal}}



.research-catalog{display:grid;gap:28px}.research-catalog .research-feature+ .research-feature{margin-top:0}

/* Premium location module */
.location-section { padding-top: 92px; padding-bottom: 118px; }
.location-shell {
  position: relative;
  display: grid;
  grid-template-columns: .93fr 1.07fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 30px;
  background: #101010;
  color: #fff;
  box-shadow: 0 30px 80px rgba(18,18,18,.16);
}
.location-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 12%, rgba(209,36,42,.13), transparent 30%),
    linear-gradient(120deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: auto, 52px 52px;
}
.location-copy {
  position: relative;
  z-index: 2;
  padding: 64px 58px 58px;
  border-right: 1px solid rgba(255,255,255,.10);
}
.location-copy .eyebrow { color: #ff4a50; }
.location-copy h2 { font-size: clamp(4rem, 7vw, 7rem); }
.location-lede {
  margin: 24px 0 0;
  max-width: 590px;
  color: rgba(255,255,255,.62);
  line-height: 1.78;
  font-size: 1rem;
}
.location-address {
  display: grid;
  gap: 7px;
  margin: 34px 0 0;
  padding: 4px 0 4px 22px;
  border-left: 2px solid var(--doxa-red);
  font-style: normal;
}
.location-address span:first-child { font-size: clamp(1.35rem, 2vw, 1.8rem); font-weight: 850; letter-spacing: -.02em; }
.location-address span:not(:first-child) { color: rgba(255,255,255,.58); font-size: .9rem; }
.location-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 30px; }
.location-outline {
  color: #fff;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.035);
}
.location-outline:hover { border-color: rgba(255,255,255,.44); background: rgba(255,255,255,.07); }
.location-copy-button {
  min-height: 44px;
  padding: 0 12px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.28);
  background: transparent;
  color: rgba(255,255,255,.62);
  font-size: .8rem;
  font-weight: 750;
  cursor: pointer;
}
.location-copy-button:hover { color: #fff; border-color: rgba(255,255,255,.7); }
.location-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(255,255,255,.10);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.location-facts > div { min-width: 0; padding: 18px 16px 18px 0; }
.location-facts > div + div { padding-left: 18px; border-left: 1px solid rgba(255,255,255,.10); }
.location-facts span { display: block; margin-bottom: 7px; color: rgba(255,255,255,.38); font-size: .64rem; font-weight: 850; letter-spacing: .12em; text-transform: uppercase; }
.location-facts strong { display: block; font-size: .86rem; line-height: 1.35; }

.location-visual {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 25px;
  background:
    radial-gradient(circle at 74% 24%, rgba(209,36,42,.12), transparent 26%),
    #151515;
}
.location-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 2px 4px 18px;
  color: rgba(255,255,255,.38);
  font-size: .62rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.location-signal { display: inline-flex; align-items: center; gap: 7px; }
.location-signal i { width: 6px; height: 6px; border-radius: 50%; background: #ff4a50; box-shadow: 0 0 0 5px rgba(209,36,42,.08); }
.location-gridmap {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 21px;
  background: #0c0c0c;
  isolation: isolate;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.location-live-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: #131313;
  filter: none;
  transform: none;
}
.location-live-map:focus-within iframe,
.location-live-map:hover iframe {
  filter: none;
}
.map-live-badge {
  position: absolute;
  z-index: 2;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  background: rgba(13,13,13,.94);
  color: rgba(255,255,255,.82);
  font-size: .61rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}
.map-live-badge span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #ff4a50;
  box-shadow: 0 0 0 5px rgba(209,36,42,.12);
}
.map-live-card {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 5px;
  max-width: min(330px, calc(100% - 36px));
  padding: 17px 18px 15px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  background: rgba(12,12,12,.95);
  box-shadow: 0 18px 55px rgba(0,0,0,.35);
}
.map-live-card small {
  color: #ff4a50;
  font-size: .58rem;
  font-weight: 900;
  letter-spacing: .12em;
}
.map-live-card strong {
  font-size: 1.05rem;
  letter-spacing: -.015em;
}
.map-live-card span {
  color: rgba(255,255,255,.60);
  font-size: .76rem;
}
.map-live-card a {
  width: fit-content;
  margin-top: 5px;
  color: #fff;
  font-size: .74rem;
  font-weight: 850;
  border-bottom: 1px solid rgba(255,255,255,.35);
}
.map-live-card a:hover { border-color: #fff; }
.map-live-tip {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  padding: 8px 10px;
  border-radius: 999px;
  background: rgba(10,10,10,.90);
  color: rgba(255,255,255,.48);
  font-size: .58rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  pointer-events: none;
}
.footer-address {
  display: inline-flex;
  max-width: 390px;
  margin-top: 10px;
  color: rgba(255,255,255,.66);
  font-size: .78rem;
  line-height: 1.55;
  border-bottom: 1px solid rgba(255,255,255,.15);
  padding-bottom: 2px;
}
.footer-address:hover { color: #fff; border-color: rgba(255,255,255,.45); }

@keyframes locationPulse {
  0% { opacity: .9; transform: scale(.52); }
  72%, 100% { opacity: 0; transform: scale(1.45); }
}

@media (prefers-reduced-motion: reduce) {
  .map-halo { animation: none; opacity: .45; }
}

@media (max-width: 980px) {
  .location-shell { grid-template-columns: 1fr; }
  .location-copy { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .location-gridmap { min-height: 430px; }
}

@media (max-width: 640px) {
  .location-section { padding-top: 72px; padding-bottom: 88px; }
  .location-shell { border-radius: 22px; }
  .location-copy { padding: 42px 24px 30px; }
  .location-copy h2 { font-size: clamp(3.4rem, 18vw, 5.4rem); }
  .location-actions { align-items: stretch; }
  .location-actions .btn, .location-copy-button { width: 100%; justify-content: center; }
  .location-copy-button { border: 1px solid rgba(255,255,255,.15); border-radius: 999px; }
  .location-facts { grid-template-columns: 1fr; }
  .location-facts > div { padding: 15px 0; }
  .location-facts > div + div { padding-left: 0; border-left: 0; border-top: 1px solid rgba(255,255,255,.10); }
  .location-visual { padding: 16px; }
  .location-gridmap { min-height: 390px; }
}


@media (max-width: 640px) {
  .map-live-card { left: 12px; bottom: 12px; max-width: calc(100% - 24px); }
  .map-live-tip { display: none; }
  .map-live-badge { top: 12px; left: 12px; }
}
