*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1F3C;
  --navy-dark: #071020;
  --cream: #F8F6F2;
  --border: #E2DED8;
  --muted: #666;
  --label: #999;
}

* { cursor: none; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #fff;
  color: #111;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

/* CURSOR */
.cursor-dot {
  display: none;
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  will-change: left, top;
}

.cursor-ring {
  display: none;
  width: 40px; height: 40px;
  border: 1.5px solid #fff;
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none; z-index: 9998;
  transform: translate(-50%,-50%);
  mix-blend-mode: difference;
  transition: width 0.38s cubic-bezier(0.34,1.56,0.64,1), height 0.38s cubic-bezier(0.34,1.56,0.64,1), opacity 0.3s;
  will-change: left, top;
}

.cursor-ring.hovering { width: 68px; height: 68px; opacity: 0.6; }


/* HEADER */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 30px 64px;
  display: flex; justify-content: space-between; align-items: center;
  transition: background 0.5s ease, padding 0.35s ease, border-bottom 0.5s ease;
}

.site-header.scrolled {
  background: rgba(6,13,26,0.94);
  backdrop-filter: blur(18px);
  padding: 17px 64px;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.site-header.light-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: #fff;
  border-bottom: 0.5px solid var(--border);
  padding: 22px 64px;
  z-index: 200;
}
.site-header.light-header ~ *:not(.cursor-dot):not(.cursor-ring):not(.page-transition) {
  padding-top: 72px;
}
.site-header.light-header .brand {
  color: var(--navy);
}
.site-header.light-header .nav a { color: var(--label); }
.site-header.light-header .nav a:hover { color: var(--navy); }
.site-header.light-header .nav a::after { background: var(--navy); }

.brand {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 30px;
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  letter-spacing: -0.01em;
}

.nav { display: flex; gap: 28px; align-items: center; }

.nav a {
  font-size: 11px; font-weight: 400; color: rgba(255,255,255,0.72);
  text-decoration: none; letter-spacing: 0.11em; text-transform: uppercase;
  position: relative; padding-bottom: 3px;
  transition: color 0.22s;
}

.nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0;
  width: 0; height: 0.5px;
  background: rgba(255,255,255,0.7);
  transition: width 0.35s ease;
}

.nav a:hover { color: rgba(255,255,255,0.9); }
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: #fff; }
.nav a[aria-current="page"]::after { width: 100%; }

.nav a.nav-access {
  border: 0.5px solid rgba(255,255,255,0.28);
  padding: 6px 14px;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.7);
  align-self: center;
  transition: border-color 0.22s, color 0.22s;
}
.nav a.nav-access::after { display: none; }
.nav a.nav-access:hover { border-color: rgba(255,255,255,0.7); color: #fff; }
.nav a.nav-access[aria-current="page"] { border-color: rgba(255,255,255,0.7); color: #fff; }

.site-header.light-header .nav a.nav-access {
  border-color: rgba(13,31,60,0.22);
  color: var(--label);
}
.site-header.light-header .nav a.nav-access:hover { border-color: var(--navy); color: var(--navy); }
.site-header.light-header .nav a.nav-access[aria-current="page"] { border-color: var(--navy); color: var(--navy); }

/* HERO WITH IMAGE */
.hero-wrap {
  position: relative;
  height: 100vh; min-height: 660px;
  overflow: clip;
}

.hero-wrap.hero-short { height: 60vh; min-height: 420px; }

.hero-img {
  position: absolute;
  top: -15%; left: -5%;
  width: 110%; height: 130%;
  object-fit: cover; object-position: center 30%;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(4,10,20,0.45) 0%, rgba(4,10,20,0.25) 40%, rgba(4,10,20,0.55) 100%);
}

.hero-overlay-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(5,12,24,0.88) 0%, rgba(5,12,24,0.55) 50%, rgba(5,12,24,0.18) 100%);
}

/* HERO CONTENT */
.hero-content {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 0 64px;
}

.hero-content-left {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0 64px 64px;
  max-width: 700px;
}

.hero-content-center-short {
  position: absolute; inset: 0; z-index: 2;
  display: flex; flex-direction: column;
  justify-content: center; align-items: center;
  text-align: center; padding: 80px 64px 0;
}

.eyebrow {
  font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 28px;
  opacity: 0; animation: fadeUp 1s 0.35s ease forwards;
}

.hero-h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 68px; line-height: 1.04; font-weight: 400;
  color: #fff; margin-bottom: 30px; max-width: 860px;
  opacity: 0; animation: fadeUp 1.1s 0.6s ease forwards;
}

.hero-h1-lg { font-size: 56px; max-width: 720px; }
.hero-h1-sm { font-size: 46px; max-width: 640px; }

.hero-divider {
  width: 44px; height: 1px;
  background: rgba(255,255,255,0.28);
  margin: 0 auto 26px;
  opacity: 0; animation: fadeUp 0.8s 0.85s ease forwards;
}

.hero-divider-left { margin: 0 0 26px; }

.hero-sub {
  font-size: 16px; line-height: 1.78;
  color: rgba(255,255,255,0.75); margin-bottom: 42px;
  font-weight: 300; max-width: 560px;
  opacity: 0; animation: fadeUp 0.9s 1.05s ease forwards;
}

/* SCROLL HINT */
.scroll-hint {
  position: absolute; bottom: 38px; left: 50%;
  transform: translateX(-50%); z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  opacity: 0; animation: fadeIn 1s 1.7s forwards;
}

.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.32), transparent);
  animation: scrollDrop 2.2s 1.7s infinite;
}

.scroll-label {
  font-size: 9px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.26);
}

/* BUTTONS */
.cta-group { display: flex; gap: 12px; flex-wrap: wrap; }
.cta-group-center { justify-content: center; }
.cta-group { opacity: 0; animation: fadeUp 0.9s 1.25s ease forwards; }
.cta-group-no-anim { opacity: 1; animation: none; }

.btn-white {
  background: #fff; color: var(--navy);
  padding: 13px 32px; font-size: 13px; font-weight: 500;
  text-decoration: none; letter-spacing: 0.025em;
  display: inline-block; transition: opacity 0.22s;
  border: none;
}
.btn-white:hover { opacity: 0.86; }

.btn-white-sm {
  background: #fff; color: var(--navy);
  padding: 11px 26px; font-size: 12px; font-weight: 500;
  text-decoration: none; display: inline-block; transition: opacity 0.22s;
}
.btn-white-sm:hover { opacity: 0.86; }

.btn-ghost {
  color: rgba(255,255,255,0.68);
  padding: 13px 32px; font-size: 13px; font-weight: 400;
  text-decoration: none; letter-spacing: 0.025em;
  border: 0.5px solid rgba(255,255,255,0.26);
  display: inline-block; transition: color 0.22s, border-color 0.22s;
}
.btn-ghost:hover { color: #fff; border-color: rgba(255,255,255,0.6); }

.btn-dark {
  background: var(--navy); color: #fff;
  padding: 13px 30px; font-size: 13px; font-weight: 500;
  text-decoration: none; display: inline-block;
  transition: background 0.22s; border: none;
  font-family: 'Inter', system-ui, sans-serif;
}
.btn-dark:hover { background: #162d57; }

.btn-outline {
  color: var(--navy); padding: 13px 30px; font-size: 13px;
  text-decoration: none; border: 0.5px solid #C0BDB8;
  display: inline-block; transition: border-color 0.22s;
  background: transparent;
}
.btn-outline:hover { border-color: var(--navy); }

/* SECTORS STRIP */
.sectors-strip {
  background: var(--navy-dark);
  padding: 22px 64px; display: flex;
}

.sector-item {
  flex: 1; padding-right: 28px;
  border-right: 0.5px solid rgba(255,255,255,0.09); margin-right: 28px;
}

.sector-item:last-child { border-right: none; padding-right: 0; margin-right: 0; }

.sector-name {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 16px; color: rgba(255,255,255,0.9); margin-bottom: 3px;
}

.sector-label {
  font-size: 10px; color: rgba(255,255,255,0.27);
  letter-spacing: 0.08em; text-transform: uppercase;
}

/* SECTIONS */
.section { padding: 72px 64px; border-bottom: 0.5px solid var(--border); }
.section-sm { padding: 56px 64px; border-bottom: 0.5px solid var(--border); }

.section-label {
  font-size: 10px; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--label); margin-bottom: 44px;
}

/* SERVICES GRID */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border: 0.5px solid var(--border);
}

.service-card {
  padding: 36px 30px; border-right: 0.5px solid var(--border);
  position: relative; overflow: clip;
  transition: background 0.3s;
}

.service-card::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: var(--navy);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.77,0,0.18,1);
}

.service-card:hover { background: #FAFAF8; }
.service-card:hover::before { transform: scaleX(1); }
.service-card:last-child { border-right: none; }

.service-num {
  font-size: 11px; color: #D8D8D8; letter-spacing: 0.06em; margin-bottom: 18px;
  transition: color 0.3s;
}

.service-card:hover .service-num { color: var(--navy); }

.service-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px; color: var(--navy); font-weight: 500;
  margin-bottom: 12px; line-height: 1.2;
}

.service-body {
  font-size: 13px; line-height: 1.78; color: var(--muted); font-weight: 300;
}

/* IMAGE SECTION (forest/tundra bands) */
.image-section {
  position: relative; height: 500px; overflow: clip;
}

.image-section-sm { height: 380px; }

.image-section-img {
  position: absolute;
  top: -15%; left: 0;
  width: 100%; height: 130%;
  object-fit: cover; object-position: center;
}

.image-overlay-left {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(110deg, rgba(5,12,24,0.92) 0%, rgba(5,12,24,0.65) 45%, rgba(5,12,24,0.18) 100%);
}

.image-overlay-right {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to left, rgba(5,12,24,0.92) 0%, rgba(5,12,24,0.65) 45%, rgba(5,12,24,0.18) 100%);
}

.image-content-left {
  position: absolute; bottom: 0; left: 0;
  z-index: 2; padding: 0 64px 60px; max-width: 640px;
}

.image-content-right {
  position: absolute; bottom: 0; right: 0;
  z-index: 2; padding: 0 64px 60px; max-width: 640px; text-align: right;
}

.image-eyebrow {
  font-size: 10px; letter-spacing: 0.2em;
  text-transform: uppercase; color: rgba(255,255,255,0.32); margin-bottom: 16px;
}

.image-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 42px; line-height: 1.1; font-weight: 400;
  color: #fff; margin-bottom: 18px;
}

.image-body {
  font-size: 15px; line-height: 1.78;
  color: rgba(255,255,255,0.55); margin-bottom: 28px; font-weight: 300;
}

.image-plans { display: flex; gap: 32px; margin-bottom: 28px; }
.image-plans-right { justify-content: flex-end; }

.image-plan-name {
  font-size: 10px; color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 4px;
}

.image-plan-price {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px; color: rgba(255,255,255,0.85); font-weight: 400;
}

/* TWO COLUMN LOWER GRID */
.lower-grid { display: grid; grid-template-columns: 1fr 1fr; }

.lower-cell {
  padding: 68px 64px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.lower-cell:nth-child(even) { border-right: none; }
.lower-cell.cream { background: var(--cream); }

/* CELL CONTENT */
.cell-label {
  font-size: 10px; letter-spacing: 0.17em;
  text-transform: uppercase; color: var(--label); margin-bottom: 20px;
}

.cell-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 32px; color: var(--navy); font-weight: 500;
  margin-bottom: 16px; line-height: 1.15;
}

.cell-body {
  font-size: 14px; line-height: 1.82; color: var(--muted);
  font-weight: 300; margin-bottom: 30px;
}

/* PLANS LIST */
.plans-list { margin-top: 28px; border-top: 0.5px solid var(--border); }

.plan-row {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 14px 0; border-bottom: 0.5px solid var(--border);
}

.plan-name { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.08em; }

.plan-price {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px; color: var(--navy); font-weight: 400;
}

/* PRICING GRID */
.pricing-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  border: 0.5px solid var(--border); max-width: 760px;
}

.pricing-card {
  padding: 44px 40px;
  border-right: 0.5px solid var(--border);
}

.pricing-card:last-child { border-right: none; background: var(--cream); }

.pricing-plan-name {
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--label); margin-bottom: 12px;
}

.pricing-price {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 44px; color: var(--navy); font-weight: 400;
  margin-bottom: 4px; line-height: 1;
}

.pricing-price span {
  font-size: 16px; color: var(--label); font-weight: 300;
}

.pricing-desc {
  font-size: 13px; line-height: 1.7; color: var(--muted);
  font-weight: 300; margin-bottom: 28px; margin-top: 16px;
}

.pricing-features {
  list-style: none; margin-bottom: 32px;
  border-top: 0.5px solid var(--border);
}

.pricing-features li {
  font-size: 13px; color: var(--muted); font-weight: 300;
  padding: 11px 0; border-bottom: 0.5px solid var(--border);
  line-height: 1.5;
}

/* FORMS */
form label {
  display: block; font-size: 12px; font-weight: 400;
  color: #555; margin-bottom: 6px; letter-spacing: 0.02em;
}

form input, form select, form textarea {
  width: 100%; max-width: 560px;
  padding: 11px 14px;
  border: 0.5px solid var(--border);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 14px; color: #111;
  background: #fff; outline: none;
  transition: border-color 0.2s;
  margin-bottom: 22px; display: block;
  -webkit-appearance: none; appearance: none;
}

form input:focus, form select:focus, form textarea:focus {
  border-color: var(--navy);
}

button.btn-dark {
  cursor: pointer;
}

.lower-grid form input,
.lower-grid form select,
.lower-grid form textarea {
  max-width: 100%;
}

/* STATUS PAGES */
.status-hero {
  padding: 140px 64px 80px;
  border-bottom: 0.5px solid var(--border);
  text-align: center;
}

.status-h1 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 52px; line-height: 1.1; font-weight: 400;
  color: var(--navy); margin-bottom: 20px; max-width: 640px; margin-left: auto; margin-right: auto;
}

.status-sub {
  font-size: 16px; line-height: 1.75; color: var(--muted);
  font-weight: 300; max-width: 480px; margin: 0 auto 36px;
}

/* THREE COLUMN INFO */
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  border-top: 0.5px solid var(--border);
}

.info-cell {
  padding: 44px 40px;
  border-right: 0.5px solid var(--border);
  border-bottom: 0.5px solid var(--border);
}

.info-cell:last-child { border-right: none; }

.info-title {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 20px; color: var(--navy); font-weight: 500;
  margin-bottom: 10px; line-height: 1.2;
}

.info-body {
  font-size: 13px; line-height: 1.75; color: var(--muted); font-weight: 300;
}

/* ABOUT TEXT SECTION */
.text-section { padding: 72px 64px; border-bottom: 0.5px solid var(--border); max-width: 860px; }

.text-section p {
  font-size: 16px; line-height: 1.9; color: #333; font-weight: 300; margin-bottom: 20px;
}

.text-section p:last-child { margin-bottom: 0; }

/* ARCHIVE */
.archive-bar {
  display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px;
}

.archive-bar p { font-size: 13px; color: #888; }

.pub-card {
  background: #fff; border: 0.5px solid var(--border);
  padding: 32px; margin-bottom: 16px;
}

.pub-meta {
  font-size: 10px; color: var(--label);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 10px;
}

.pub-card h2 {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 22px; font-weight: 500; margin-bottom: 16px; color: var(--navy);
}

.pub-body { font-size: 14px; line-height: 1.8; color: #444; }
.pub-body p { margin-bottom: 12px; }
.pub-body h1, .pub-body h2, .pub-body h3 {
  font-family: 'EB Garamond', Georgia, serif;
  font-weight: 500; margin: 20px 0 8px; color: var(--navy);
}

/* FOOTER */
.site-footer {
  padding: 26px 64px; display: flex;
  justify-content: space-between; align-items: center;
  border-top: 0.5px solid var(--border);
}

.footer-brand {
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 15px;
  color: #BBB;
  letter-spacing: -0.01em;
}

.footer-right { font-size: 11px; color: #C0BDB8; }

/* SCROLL REVEAL */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay { transition-delay: 0.15s; }

/* PAGE TRANSITION */
.page-transition {
  position: fixed; inset: 0;
  background: #fff;
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
}

/* ANIMATIONS */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn { to { opacity: 1; } }

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  30%  { opacity: 1; }
  100% { transform: scaleY(1); transform-origin: top; opacity: 0.3; }
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .site-header, .site-header.scrolled, .site-header.light-header { padding: 20px 32px; }
  .hero-content, .hero-content-left { padding: 0 32px; }
  .hero-content-left { padding-bottom: 48px; }
  .hero-h1 { font-size: 44px; }
  .hero-h1-lg { font-size: 38px; }
  .hero-h1-sm { font-size: 34px; }
  .section, .section-sm { padding: 52px 32px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { border-right: none; border-bottom: 0.5px solid var(--border); }
  .lower-grid { grid-template-columns: 1fr; }
  .lower-cell { border-right: none; }
  .sectors-strip { padding: 18px 32px; flex-wrap: wrap; gap: 16px; }
  .sector-item { border-right: none; flex: 0 0 45%; padding-right: 0; margin-right: 0; }
  .image-section { height: 420px; }
  .image-content-left, .image-content-right { padding: 0 32px 40px; max-width: 100%; text-align: left; }
  .image-title { font-size: 32px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { border-right: none; border-bottom: 0.5px solid var(--border); }
  .info-grid { grid-template-columns: 1fr; }
  .info-cell { border-right: none; }
  .status-hero { padding: 120px 32px 56px; }
  .status-h1 { font-size: 36px; }
  .site-footer { padding: 22px 32px; }
  .lower-cell { padding: 48px 32px; }
  .text-section { padding: 52px 32px; }
  .cell-title { font-size: 26px; }
}

@media (max-width: 600px) {
  .hero-h1 { font-size: 34px; line-height: 1.15; }
  .hero-h1-lg { font-size: 30px; }
  .nav { gap: 16px; }
  .nav a { font-size: 10px; }
  .cta-group { flex-direction: column; }
  .btn-white, .btn-ghost, .btn-dark, .btn-outline { text-align: center; }
  .pricing-price { font-size: 36px; }
  form input, form select, form textarea { font-size: 16px; max-width: 100%; }
}

/* ── Publication content — Weekly & Monthly ───────────────────────────────── */

.pub-content { font-family: 'Inter', sans-serif; color: var(--navy); }
.pub-content p { margin: 0 0 0.75rem; }
.pub-content p:last-child { margin: 0; }
.pub-content a { color: var(--navy); text-decoration: none; border-bottom: 0.5px solid var(--border); }
.pub-content a:hover { opacity: 0.7; }
.pub-content strong { font-weight: 500; color: var(--navy); }

/* Header */
.pub-header-new { padding-bottom: 1.5rem; margin-bottom: 1.5rem; border-bottom: 0.5px solid var(--border); }
.pub-brand-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 0.75rem; }
.pub-brand-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); }
.pub-brand-num { font-size: 11px; color: var(--label); }
.pub-title-new { font-family: 'EB Garamond', Georgia, serif; font-size: 30px; font-weight: 400; color: var(--navy); line-height: 1.2; margin-bottom: 0.4rem; }
.pub-period-new { font-size: 12px; color: var(--label); }

/* Section label */
.pub-sec-label { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--label); margin-bottom: 1rem; padding-bottom: 0.5rem; border-bottom: 0.5px solid var(--border); }

/* Apertura */
.pub-apertura-new { font-family: 'EB Garamond', Georgia, serif; font-size: 16px; line-height: 1.85; color: var(--navy); background: #F8F6F2; padding: 1.5rem 1.75rem; border-left: 2px solid #185FA5; border-radius: 0; }

/* Signals */
.pub-signal-new { border: 0.5px solid var(--border); background: #fff; margin-bottom: 1rem; }
.pub-signal-head { padding: 0.7rem 1.25rem; background: #F8F6F2; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.pub-signal-title { font-size: 14px; font-weight: 500; color: var(--navy); }
.pub-time-tag { font-size: 10px; color: var(--label); border: 0.5px solid var(--border); padding: 2px 8px; border-radius: 2px; margin-left: auto; }
.pub-signal-body { padding: 1rem 1.25rem; }
.pub-signal-fact { font-size: 14px; line-height: 1.7; color: var(--navy); margin-bottom: 0.75rem; }
.pub-signal-rows { border-top: 0.5px solid var(--border); margin-top: 0.75rem; }
.pub-signal-row { display: flex; gap: 10px; padding: 0.55rem 0; border-bottom: 0.5px solid var(--border); align-items: flex-start; }
.pub-signal-row:last-child { border-bottom: none; }
.pub-signal-row-label { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); min-width: 76px; padding-top: 2px; flex-shrink: 0; }
.pub-signal-row-text { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* Badges */
.pub-badge-new { font-size: 10px; font-weight: 500; padding: 3px 10px; letter-spacing: 0.04em; border-radius: 2px; }
.pub-badge-ma       { background: #E6F1FB; color: #0C447C; }
.pub-badge-buyout   { background: #EEEDFE; color: #3C3489; }
.pub-badge-growth   { background: #EAF3DE; color: #27500A; }
.pub-badge-salida   { background: #FEF3C7; color: #633806; }
.pub-badge-fund     { background: #FAECE7; color: #712B13; }
.pub-badge-deuda    { background: #E1F5EE; color: #085041; }
.pub-badge-lmm      { background: #F3F4F6; color: #374151; }
.pub-badge-opa      { background: #FEE2E2; color: #991B1B; }
.pub-badge-deeptech { background: #EEF2FF; color: #3730A3; }

/* Operations table */
.pub-ops-table { width: 100%; border-collapse: collapse; border: 0.5px solid var(--border); font-size: 12px; table-layout: fixed; }
.pub-ops-table th { background: #F8F6F2; padding: 0.5rem 0.75rem; text-align: left; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); font-weight: 500; border-bottom: 0.5px solid var(--border); font-family: 'Inter', sans-serif; }
.pub-ops-table td { padding: 0.5rem 0.75rem; border-bottom: 0.5px solid var(--border); color: var(--muted); vertical-align: top; line-height: 1.4; }
.pub-ops-table tr:last-child td { border-bottom: none; }
.pub-ops-table td:first-child { color: var(--navy); font-weight: 500; }

/* Vigilar grid */
.pub-vigilar-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pub-vigilar-card { border: 0.5px solid var(--border); padding: 1rem 1.25rem; background: #fff; border-top: 2px solid var(--border); }
.pub-vigilar-num { font-size: 11px; font-weight: 500; color: var(--label); margin-bottom: 6px; }
.pub-vigilar-title-new { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 6px; line-height: 1.3; }
.pub-vigilar-sub-new { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* Investment read-through */
.pub-readthrough { border: 0.5px solid var(--border); }
.pub-readthrough-header { background: #F8F6F2; padding: 0.6rem 1rem; border-bottom: 0.5px solid var(--border); display: flex; align-items: center; gap: 6px; }
.pub-readthrough-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); font-weight: 500; }
.pub-readthrough-body { display: grid; grid-template-columns: 1fr 1fr 1fr; }
.pub-rt-item { padding: 1rem 1.25rem; border-right: 0.5px solid var(--border); }
.pub-rt-item:last-child { border-right: none; }
.pub-rt-cat { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); margin-bottom: 6px; font-weight: 500; }
.pub-rt-text { font-size: 13px; line-height: 1.65; color: var(--muted); }

/* Dato de contexto */
.pub-dato-new { display: flex; gap: 1.25rem; align-items: flex-start; border: 0.5px solid var(--border); padding: 1.25rem 1.5rem; background: #F8F6F2; border-left: 3px solid var(--navy); }
.pub-dato-num { font-family: 'EB Garamond', Georgia, serif; font-size: 38px; font-weight: 400; color: var(--navy); line-height: 1; min-width: fit-content; }
.pub-dato-text { font-size: 13.5px; line-height: 1.7; color: var(--muted); }

/* Monthly extras — Tesis */
.pub-tesis { font-family: 'EB Garamond', Georgia, serif; font-size: 15px; line-height: 1.8; color: var(--navy); background: #F8F6F2; padding: 1.25rem 1.5rem; border-left: 2px solid var(--navy); border-radius: 0; }

/* Monthly extras — Sector cards */
.pub-sector-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.pub-sector-card { border: 0.5px solid var(--border); padding: 1rem 1.25rem; background: #fff; }
.pub-sector-name { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 0.4rem; }
.pub-sector-body { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* Monthly extras — Capital map */
.pub-mapa { width: 100%; border-collapse: collapse; border: 0.5px solid var(--border); font-size: 12px; }
.pub-mapa th { background: #F8F6F2; padding: 0.5rem 0.75rem; text-align: left; font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--label); font-weight: 500; border-bottom: 0.5px solid var(--border); font-family: 'Inter', sans-serif; }
.pub-mapa td { padding: 0.6rem 0.75rem; border-bottom: 0.5px solid var(--border); color: var(--muted); vertical-align: top; line-height: 1.4; }
.pub-mapa tr:last-child td { border-bottom: none; }
.pub-mapa td:first-child { color: var(--navy); font-weight: 500; }

/* Monthly extras — Operación del mes */
.pub-operacion { border: 0.5px solid var(--border); padding: 1.25rem; background: #fff; }
.pub-op-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.pub-op-title { font-size: 15px; font-weight: 500; color: var(--navy); }
.pub-op-kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 1rem; }
.pub-op-kpi { background: #F8F6F2; padding: 0.6rem 0.75rem; }
.pub-op-kpi-val { font-size: 16px; font-weight: 500; color: var(--navy); }
.pub-op-kpi-label { font-size: 11px; color: var(--label); }
.pub-op-body { font-size: 13.5px; line-height: 1.65; color: var(--muted); }

/* Monthly extras — Deep dive */
.pub-deepdive { border: 0.5px solid var(--border); }
.pub-dd-header { background: #F8F6F2; padding: 1rem 1.25rem; border-bottom: 0.5px solid var(--border); }
.pub-dd-label { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--label); margin-bottom: 4px; }
.pub-dd-title { font-size: 15px; font-weight: 500; color: var(--navy); }
.pub-dd-body { padding: 1.25rem; font-size: 13.5px; line-height: 1.7; color: var(--muted); }
.pub-dd-body p { margin: 0 0 0.75rem; }
.pub-dd-body p:last-child { margin: 0; }

/* Monthly extras — Perspectiva */
.pub-persp-item { display: flex; gap: 12px; padding: 0.75rem 0; border-bottom: 0.5px solid var(--border); align-items: flex-start; }
.pub-persp-item:last-child { border-bottom: none; }
.pub-persp-label { font-size: 14px; font-weight: 500; color: var(--navy); margin-bottom: 2px; }
.pub-persp-body { font-size: 13px; line-height: 1.6; color: var(--muted); }

/* Stats bar (monthly cover) */
.pub-stats-bar { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-top: 1.25rem; }
.pub-stat { background: #F8F6F2; padding: 0.75rem 1rem; }
.pub-stat-val { font-size: 20px; font-weight: 500; color: var(--navy); line-height: 1.2; }
.pub-stat-label { font-size: 11px; color: var(--label); margin-top: 2px; }

/* Sources */
.pub-sources-new { border-top: 0.5px solid var(--border); padding-top: 1rem; }
.pub-source-row { display: flex; gap: 8px; padding: 0.3rem 0; border-bottom: 0.5px solid var(--border); align-items: baseline; }
.pub-source-row:last-child { border-bottom: none; }
.pub-source-medio { font-size: 11px; font-weight: 500; color: var(--navy); min-width: 140px; flex-shrink: 0; }
.pub-source-titulo { font-size: 11px; color: var(--label); line-height: 1.4; font-style: italic; }

/* Footer */
.pub-footer-new { display: flex; justify-content: space-between; padding-top: 1rem; border-top: 0.5px solid var(--border); margin-top: 1.5rem; }
.pub-footer-text { font-size: 11px; color: var(--label); }

/* Section spacing */
.pub-section-new { margin-bottom: 2.25rem; }

@media (max-width: 600px) {
  .pub-vigilar-grid { grid-template-columns: 1fr; }
  .pub-readthrough-body { grid-template-columns: 1fr; }
  .pub-rt-item { border-right: none; border-bottom: 0.5px solid var(--border); }
  .pub-rt-item:last-child { border-bottom: none; }
  .pub-sector-grid { grid-template-columns: 1fr; }
  .pub-stats-bar { grid-template-columns: 1fr 1fr; }
}
