@import url('https://fonts.googleapis.com/css2?family=Be+Vietnam+Pro:wght@500;600;700;800&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  --navy: #0B1F63;
  --ink: #12142B;
  --blue: #4966FF;
  --blue-2: #7C8FFF;
  --mist: #F5F7FF;
  --mist-2: #EBEEFF;
  --amber: #FFB020;
  --teal: #1FAA76;
  --coral: #E85C4A;
  --grey: #8891A8;
  --line: #DDE1F0;
  --white: #FFFFFF;
  
  --font-display: 'Be Vietnam Pro', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
  --radius: 16px;
  --radius-sm: 8px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--blue);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.3;
}

h1 {
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

h2 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 20px;
  font-weight: 700;
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

.mono-eyebrow {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue);
  font-weight: 600;
}

/* FOLD TAB MOTIF (SIGNATURE BRAND PATTERN) */
.fold-tab {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.fold-tab::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 42px;
  height: 8px;
  background: var(--blue);
  border-radius: 0 0 4px 4px;
}

.fold-tab:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(73, 102, 255, 0.08);
  border-color: var(--blue-2);
}

.fold-tab.amber::before {
  background: var(--amber);
}

.fold-tab.teal::before {
  background: var(--teal);
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: #3451e6;
  box-shadow: 0 6px 20px rgba(73, 102, 255, 0.3);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: #142a78;
  box-shadow: 0 6px 20px rgba(11, 31, 99, 0.3);
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
  border-color: var(--amber);
}

.btn-amber:hover {
  background: #e69d19;
}

.btn-secondary {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}

.btn-secondary:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}

.btn-block {
  width: 100%;
}

/* CHIPS / BADGES */
.chip {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 12px;
  border-radius: 999px;
  background: var(--mist-2);
  color: var(--blue);
  border: 1px solid var(--line);
}

.chip.amber {
  background: #fff8e6;
  color: #b37800;
  border-color: #ffe699;
}

.chip.navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.chip.gated {
  background: #fdeceb;
  color: var(--coral);
  border-color: #f7c5c0;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 12px rgba(11, 31, 99, 0.03);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 20px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo img {
  height: 38px;
  width: auto;
}

.logo-fallback {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--amber);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  box-shadow: 0 4px 12px rgba(11, 31, 99, 0.2);
}

.logo-text-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--navy);
  line-height: 1;
}

.logo-text-sub {
  font-family: var(--font-mono);
  font-size: 9.5px;
  color: var(--grey);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  padding: 8px 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--blue);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
}

/* HERO BANNER HOMEPAGE */
.hero-section {
  background: linear-gradient(155deg, var(--navy) 0%, #152a7a 55%, var(--blue) 130%);
  color: var(--white);
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: "";
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 143, 255, 0.25), transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  font-size: 42px;
  line-height: 1.15;
  margin: 16px 0 20px;
}

.hero-content p {
  color: #c7cfff;
  font-size: 16px;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 28px;
}

/* DATA TICKER BAR */
.hero-ticker {
  display: flex;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-sm);
  margin-top: 32px;
  overflow: hidden;
}

.ticker-item {
  flex: 1;
  padding: 14px 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.ticker-item:last-child {
  border-right: none;
}

.ticker-num {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--amber);
}

.ticker-label {
  font-size: 11px;
  color: #aab4e6;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* GATED REPORT BANNER CARD */
.gated-card-hero {
  background: var(--white);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 32px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
  border: 1px solid var(--line);
  position: relative;
}

.gated-card-hero::before {
  content: "FEATURING REPORT";
  position: absolute;
  top: -10px;
  right: 28px;
  background: var(--amber);
  color: var(--navy);
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
}

.gated-card-hero h3 {
  font-size: 22px;
  margin: 12px 0;
  line-height: 1.35;
}

.gated-card-hero p {
  font-size: 14px;
  color: var(--grey);
  margin-bottom: 20px;
  line-height: 1.6;
}

/* INNER PAGE BANNER */
.page-banner-alt {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 48px 0 36px;
}

.page-banner-alt h1 {
  font-size: 32px;
  margin: 12px 0;
}

.page-banner-alt p {
  font-size: 15px;
  color: var(--grey);
  max-width: 720px;
}

.article-meta-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--grey);
  margin-top: 14px;
  font-family: var(--font-body);
}

.meta-dot {
  color: var(--line);
}

/* LAYOUT 2 COLUMN */
.layout-2col {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
}

/* ARTICLE / REPORT CARDS */
.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.card-report {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
  position: relative;
}

.card-report:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(11, 31, 99, 0.08);
  border-color: var(--blue-2);
}

.card-report .card-img {
  height: 180px;
  object-fit: cover;
  width: 100%;
  background: var(--mist-2);
}

.card-report .card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-report .card-title {
  font-size: 17px;
  font-weight: 700;
  margin: 10px 0;
  line-height: 1.4;
  color: var(--navy);
}

.card-report .card-excerpt {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}

/* ARTICLE CONTENT & TYPOGRAPHY */
.article-content {
  font-size: 16px;
  line-height: 1.85;
  color: #24292f;
}

.article-content p {
  margin-bottom: 22px;
  line-height: 1.85;
  color: #2b3648;
}

.article-content h2 {
  font-size: 24px;
  font-weight: 800;
  margin-top: 44px;
  margin-bottom: 18px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.article-content h3 {
  font-size: 19px;
  font-weight: 700;
  margin-top: 34px;
  margin-bottom: 14px;
  color: var(--blue);
}

.article-content ul, .article-content ol {
  margin: 12px 0 24px;
  padding-left: 28px;
  line-height: 1.85;
}

.article-content li {
  margin-bottom: 10px;
}

.article-content blockquote {
  margin: 32px 0;
  padding: 20px 24px;
  background: var(--mist-2);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--navy);
}

/* MODERN TABLES */
.article-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 32px 0;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
}

.article-content th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  padding: 14px 18px;
  text-align: left;
  border-bottom: 2px solid var(--blue);
}

.article-content td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  line-height: 1.6;
}

.article-content tr:last-child td {
  border-bottom: none;
}

.article-content tr:nth-child(even) td {
  background: rgba(73, 102, 255, 0.03);
}

/* LEAD CAPTURE FORM SIDEBAR */
.lead-form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: 0 10px 30px rgba(11, 31, 99, 0.04);
}

.lead-form-card .form-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}

.lead-form-card .form-sub {
  font-size: 13px;
  color: var(--grey);
  margin-bottom: 24px;
  line-height: 1.5;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}

.form-group label .req {
  color: var(--coral);
}

.form-control {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--mist);
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.form-control:focus {
  border-color: var(--blue);
  background: var(--white);
}

textarea.form-control {
  min-height: 90px;
  resize: vertical;
}

.consent-box {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--grey);
  margin: 18px 0;
  line-height: 1.5;
}

.consent-box input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  accent-color: var(--blue);
}

/* FOOTER */
.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.85);
  padding: 64px 0 32px;
  margin-top: 80px;
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--amber);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: var(--amber);
}

.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  font-family: var(--font-mono);
  color: rgba(255, 255, 255, 0.5);
}

/* COOKIE CONSENT POPUP */
.cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 880px;
  margin: 0 auto;
  z-index: 9999;
  background: var(--navy);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-popup p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  line-height: 1.5;
}

.cookie-popup .cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

/* ============================================
   PHP TEMPLATE STYLES
   ============================================ */

/* LAYOUT — .wrap replaces .container in PHP templates */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.wrap-narrow {
  max-width: 800px;
}

/* ALIAS: btn-accent = btn-primary, btn-outline = btn-secondary */
.btn-accent {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-accent:hover {
  background: #3451e6;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(73, 102, 255, 0.3);
}
.btn-outline {
  background: transparent;
  border-color: var(--line);
  color: var(--navy);
}
.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--white);
}
.btn-lg {
  padding: 14px 32px;
  font-size: 13px;
}

/* NAV — PHP header structure */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  gap: 16px;
}
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 26px;
  max-height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: nowrap;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--grey);
  padding: 6px 10px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
  line-height: 1.2;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--mist-2);
  font-weight: 600;
}
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--navy);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f7a 50%, var(--blue) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 16px;
}
.hero-sub {
  font-size: 17px;
  color: rgba(255,255,255,.75);
  max-width: 620px;
  margin: 0 auto 32px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-actions .btn-outline {
  border-color: rgba(255,255,255,.3);
  color: var(--white);
}
.hero-actions .btn-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.1);
  color: var(--white);
}

/* STATS BAR */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-number {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  color: var(--blue);
}
.stat-label {
  font-size: 13px;
  color: var(--grey);
  margin-top: 4px;
}

/* SECTION */
.section {
  padding: 64px 0;
}
.section-alt {
  background: var(--white);
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  margin-bottom: 8px;
}
.section-header p {
  color: var(--grey);
  font-size: 15px;
  max-width: 540px;
  margin: 0 auto;
}
.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ARTICLES GRID */
.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.articles-grid.listing {
  grid-template-columns: repeat(3, 1fr);
}
.article-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  position: relative;
}
.article-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 42px;
  height: 6px;
  background: var(--blue);
  border-radius: 0 0 3px 3px;
  z-index: 2;
}
.article-card:nth-child(2)::before { background: var(--amber); }
.article-card:nth-child(3)::before { background: var(--teal); }
.article-card:nth-child(4)::before { background: var(--coral); }
.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(11, 31, 99, 0.08);
}
.article-card.featured {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
}
.card-image {
  display: block;
  overflow: hidden;
  position: relative;
}
.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.4s;
}
.article-card.featured .card-image img {
  height: 320px;
}
.article-card:hover .card-image img {
  transform: scale(1.04);
}
.card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-family: var(--font-mono);
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--navy);
  color: var(--white);
}
.card-body {
  padding: 20px;
}
.card-meta {
  display: flex;
  gap: 12px;
  font-size: 12px;
  color: var(--grey);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}
.card-body h3 {
  font-size: 17px;
  margin-bottom: 8px;
  line-height: 1.4;
}
.card-body h3 a:hover {
  color: var(--blue);
}
.card-body p {
  font-size: 13.5px;
  color: var(--grey);
  line-height: 1.6;
}

/* CATEGORIES GRID */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
  position: relative;
  transition: transform 0.25s, box-shadow 0.25s;
}
.category-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 24px;
  width: 36px;
  height: 6px;
  background: var(--blue);
  border-radius: 0 0 3px 3px;
}
.category-card:nth-child(2)::before { background: var(--amber); }
.category-card:nth-child(3)::before { background: var(--teal); }
.category-card:nth-child(4)::before { background: var(--coral); }
.category-card:nth-child(5)::before { background: #8B5CF6; }
.category-card:nth-child(6)::before { background: #F472B6; }
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(11, 31, 99, 0.06);
}
.category-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}
.category-card p {
  font-size: 13px;
  color: var(--grey);
  line-height: 1.6;
  margin-bottom: 12px;
}
.cat-count {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--blue);
  margin-bottom: 8px;
}
.cat-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA SECTION */
.cta-section {
  background: linear-gradient(135deg, var(--navy) 0%, #1a2f7a 100%);
  color: var(--white);
  padding: 56px 0;
}
.cta-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.cta-box h2 {
  color: var(--white);
  margin-bottom: 12px;
}
.cta-box p {
  color: rgba(255,255,255,.7);
  margin-bottom: 24px;
}
.cta-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 12px;
}
.cta-form .btn-accent {
  margin-top: 8px;
}

/* PAGE HERO */
.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0 40px;
}
.page-hero h1 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 8px;
}
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 15px;
}

/* BREADCRUMB */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  margin-bottom: 16px;
  font-family: var(--font-mono);
}
.page-hero .breadcrumb { color: rgba(255,255,255,.5); }
.page-hero .breadcrumb a { color: rgba(255,255,255,.6); }
.page-hero .breadcrumb a:hover { color: var(--white); }
.breadcrumb span { color: inherit; }

/* CATEGORY FILTER */
.category-filter {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.filter-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-tag {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--grey);
  transition: all 0.2s;
}
.filter-tag:hover,
.filter-tag.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* PAGINATION */
.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
}
.page-btn {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--grey);
  transition: all 0.2s;
}
.page-btn:hover,
.page-btn.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* ARTICLE DETAIL */
.article-detail {
  padding: 40px 0 0;
}
.article-header {
  margin-bottom: 32px;
}
.article-category {
  font-family: var(--font-mono);
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--blue);
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 12px;
  background: var(--mist-2);
  border-radius: 6px;
}
.article-header h1 {
  font-size: 36px;
  margin-bottom: 16px;
}
.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  color: var(--grey);
  font-family: var(--font-mono);
}
.meta-sep { color: var(--line); }
.article-featured-img {
  margin-bottom: 32px;
  border-radius: var(--radius);
  overflow: hidden;
}
.article-featured-img img {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
}

/* ARTICLE CONTENT — prose */
.prose {
  font-size: 15.5px;
  line-height: 1.8;
  color: #2a2d3a;
}
.prose h2 {
  font-size: 24px;
  margin: 40px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.prose h3 {
  font-size: 19px;
  margin: 32px 0 12px;
}
.prose h4 {
  font-size: 16px;
  margin: 24px 0 8px;
}
.prose p {
  margin-bottom: 16px;
}
.prose ul, .prose ol {
  margin: 0 0 16px 24px;
}
.prose li {
  margin-bottom: 6px;
}
.prose table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 32px;
  font-size: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(11, 31, 99, 0.04);
}
.prose table th {
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 13.5px;
  font-weight: 700;
  padding: 12px 16px;
  text-align: left;
  border-bottom: 2px solid var(--blue);
}
.prose table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line);
  color: var(--navy);
  font-size: 13.5px;
  line-height: 1.6;
}
.prose table td:last-child {
  border-right: none;
}
.prose table tr:last-child td {
  border-bottom: none;
}
.prose table tr:nth-child(even) {
  background: var(--mist);
}
.prose img {
  border-radius: var(--radius-sm);
  margin: 16px 0;
}
.prose blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 20px;
  background: var(--mist);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 16px 0;
  color: var(--grey);
  font-style: italic;
}
.prose a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ARTICLE TAGS */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.tag {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  color: var(--blue);
  background: var(--mist-2);
  padding: 4px 12px;
  border-radius: 6px;
}

/* ARTICLE SHARE */
.article-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.article-share span {
  font-size: 13px;
  font-weight: 600;
  color: var(--grey);
}
.share-btn {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 14px;
  border-radius: 6px;
  background: var(--mist);
  color: var(--navy);
  border: 1px solid var(--line);
  transition: all 0.2s;
}
.share-btn:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

/* CONTACT PAGE */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}
.contact-info h2 {
  font-size: 22px;
  margin-bottom: 24px;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item h4 {
  font-size: 13px;
  color: var(--grey);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}
.contact-item p {
  font-size: 15px;
  color: var(--navy);
}
.contact-note {
  margin-top: 32px;
  padding: 16px;
  background: var(--mist);
  border-radius: var(--radius-sm);
}
.contact-note p {
  font-size: 13px;
  color: var(--grey);
}
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-form-wrap h2 {
  font-size: 20px;
  margin-bottom: 24px;
}

/* FORMS */
.form-input {
  width: 100%;
  padding: 10px 14px;
  font-family: var(--font-body);
  font-size: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--ink);
  transition: border-color 0.2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(73, 102, 255, 0.1);
}
textarea.form-input {
  resize: vertical;
  min-height: 100px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  cursor: pointer;
  margin: 16px 0;
}
.form-checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--blue);
  flex-shrink: 0;
}
.form-checkbox a {
  color: var(--blue);
  text-decoration: underline;
}

/* FORM STATES */
.form-success {
  padding: 48px 32px;
  text-align: center;
  background: #f0fdf4;
  border-radius: var(--radius);
  border: 1px solid #bbf7d0;
}
.form-success h3 {
  color: #166534;
  margin-bottom: 8px;
}
.form-success p {
  color: #15803d;
  margin-bottom: 20px;
}
.form-error {
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: var(--radius-sm);
  color: #991b1b;
  font-size: 13px;
  margin-bottom: 16px;
}
.form-info {
  padding: 48px 32px;
  background: var(--mist);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.form-info h3 { color: var(--navy); margin-bottom: 8px; }
.form-info p { color: var(--grey); margin-bottom: 20px; }
.form-warning {
  padding: 48px 32px;
  background: #fffbeb;
  border-radius: var(--radius);
  border: 1px solid #fde68a;
}
.form-warning h3 { color: #92400e; margin-bottom: 8px; }
.form-warning p { color: #a16207; margin-bottom: 20px; }
.form-msg {
  font-size: 13px;
  margin-top: 8px;
  min-height: 20px;
}

/* SUBSCRIBE FORM (AJAX) */
.subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* UNSUBSCRIBE */
.unsubscribe-form {
  max-width: 480px;
  margin: 0 auto;
}
.unsub-note {
  margin-top: 24px;
  padding: 16px;
  background: var(--mist);
  border-radius: var(--radius-sm);
}
.unsub-note p {
  font-size: 12.5px;
  color: var(--grey);
}
.unsub-note a {
  color: var(--blue);
  text-decoration: underline;
}

/* POLICY PAGE */
.policy-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}
.policy-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: sticky;
  top: 80px;
  align-self: start;
}
.policy-tab {
  font-size: 13.5px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  color: var(--grey);
  transition: all 0.2s;
}
.policy-tab:hover { background: var(--mist); color: var(--navy); }
.policy-tab.active {
  background: var(--navy);
  color: var(--white);
}

/* ERROR PAGE */
.error-page .error-code {
  font-family: var(--font-display);
  font-size: 120px;
  font-weight: 800;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
}

/* FOOTER */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-col h4 {
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}
.footer-col a {
  display: block;
  font-size: 13.5px;
  color: rgba(255,255,255,.6);
  padding: 3px 0;
  transition: color 0.2s;
}
.footer-col a:hover {
  color: var(--white);
}
.logo-footer img {
  height: 28px;
  margin-bottom: 12px;
  filter: brightness(10);
}
.footer-col .desc {
  font-size: 13px;
  line-height: 1.6;
}
.footer-newsletter .form-input {
  background: rgba(255,255,255,.08);
  border-color: rgba(255,255,255,.15);
  color: var(--white);
  font-size: 13px;
  padding: 8px 12px;
}
.footer-newsletter .form-input::placeholder {
  color: rgba(255,255,255,.4);
}
.footer-newsletter .form-input:focus {
  border-color: var(--blue);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
}

/* EMPTY STATE */
.empty-state {
  text-align: center;
  padding: 64px 20px;
  color: var(--grey);
}
.empty-state h1 {
  margin-bottom: 12px;
}
.empty-state p {
  margin-bottom: 24px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 992px) {
  .hero-grid, .layout-2col {
    grid-template-columns: 1fr;
  }
  .report-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-cols, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .articles-grid, .articles-grid.listing {
    grid-template-columns: repeat(2, 1fr);
  }
  .article-card.featured {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
  }
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .policy-layout {
    grid-template-columns: 1fr;
  }
  .policy-nav {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inputs {
    grid-template-columns: 1fr;
  }
  .nav-links {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
}

@media (max-width: 600px) {
  .report-grid,
  .articles-grid,
  .articles-grid.listing,
  .categories-grid {
    grid-template-columns: 1fr;
  }
  .header-row {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
  }
  .nav-menu {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 8px;
  }
  .hero h1, .hero-content h1 {
    font-size: 28px;
  }
  .article-header h1 {
    font-size: 26px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .stat-number {
    font-size: 24px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .cookie-popup {
    flex-direction: column;
    align-items: flex-start;
  }
  .page-hero h1 {
    font-size: 24px;
  }
}
