/* ==========================================================================
   DEXIN ASSETS — Deep Navy Business Professional Theme
   Production CSS | 2026
   ========================================================================== */

/* --------------------------------------------------------------------------
   0. GOOGLE FONTS
   -------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+SC:wght@400;500;600;700&family=Noto+Sans+SC:wght@300;400;500;600;700&family=IBM+Plex+Mono:wght@300;400;500;600;700&display=swap');

/* --------------------------------------------------------------------------
   1. CSS CUSTOM PROPERTIES
   -------------------------------------------------------------------------- */
:root {
  /* Backgrounds — deep navy instead of near-black */
  --bg-primary: #0f1724;
  --bg-card: #162033;
  --bg-card-hover: #1a2640;
  --bg-elevated: #1e2d45;
  --bg-nav: rgba(15, 23, 36, 0.92);

  /* Borders — warmer, less stark */
  --border-default: #243350;
  --border-subtle: #1a2840;
  --border-active: #2e4468;

  /* Accents — gold/copper primary, business blue secondary */
  --accent-orange: #c9a96e;
  --accent-orange-dim: rgba(201, 169, 110, 0.12);
  --accent-orange-glow: rgba(201, 169, 110, 0.20);
  --accent-cyan: #4a7fb5;
  --accent-cyan-dim: rgba(74, 127, 181, 0.10);

  /* Semantic — unchanged functionally */
  --color-positive: #4caf50;
  --color-negative: #ef5350;
  --color-positive-dim: rgba(76, 175, 80, 0.10);
  --color-negative-dim: rgba(239, 83, 80, 0.10);

  /* Text — slightly warmer whites */
  --text-primary: #e4e4e4;
  --text-secondary: #94a3b8;
  --text-muted: #5a7089;
  --text-inverse: #0f1724;

  /* Typography — serif display, keep body + mono */
  --font-display: 'Noto Serif SC', serif;
  --font-body: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'IBM Plex Mono', 'Consolas', monospace;

  /* Spacing */
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4rem;
  --space-4xl: 6rem;

  /* Sizing */
  --container-max: 1280px;
  --nav-height: 64px;
  --border-radius: 6px;
  --border-radius-lg: 10px;

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;
}

/* --------------------------------------------------------------------------
   2. RESET & BASE
   -------------------------------------------------------------------------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-primary);
  background-color: var(--bg-primary);
  overflow-x: hidden;
  position: relative;
  min-height: 100vh;
}

/* --- Subtle background texture --- */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.03;
  background: radial-gradient(ellipse at 50% 0%, rgba(74, 127, 181, 0.15) 0%, transparent 70%);
}

/* --- Scanline removed (business professional theme) --- */

/* Ensure main content sits above the grid overlay */
body > * {
  position: relative;
  z-index: 1;
}

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

a {
  color: var(--accent-orange);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: #d4b87a;
}

ul, ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input, textarea, select {
  font-family: inherit;
  color: inherit;
}

::selection {
  background: var(--accent-orange);
  color: var(--text-inverse);
}

/* --------------------------------------------------------------------------
   3. TYPOGRAPHY
   -------------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.08em; }

p {
  margin-bottom: var(--space-md);
  color: var(--text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

small {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

strong {
  font-weight: 600;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   4. LAYOUT CONTAINER
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

@media (min-width: 768px) {
  .container {
    padding-inline: var(--space-2xl);
  }
}

@media (min-width: 1200px) {
  .container {
    padding-inline: var(--space-xl);
  }
}

/* --------------------------------------------------------------------------
   5. NAVIGATION (.site-nav)
   -------------------------------------------------------------------------- */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  background: var(--bg-nav);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid var(--border-subtle);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-nav.scrolled {
  background: rgba(15, 23, 36, 0.96);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.4);
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-logo img {
  height: 32px;
  width: auto;
}

.nav-logo span {
  color: var(--accent-orange);
}

/* Nav Links */
.nav-links {
  display: none;
  align-items: center;
  gap: var(--space-xl);
}

.nav-links a {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-xs) 0;
  position: relative;
  transition: color var(--transition-fast);
  letter-spacing: 0.02em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--text-primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-orange);
}

/* Language switcher */
.nav-lang {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-xs) var(--space-sm);
  transition: border-color var(--transition-fast), color var(--transition-fast);
}

.nav-lang:hover {
  border-color: var(--accent-orange);
  color: var(--accent-orange);
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--text-secondary);
  border-radius: 1px;
  transition: transform var(--transition-base), opacity var(--transition-fast);
}

.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: rgba(15, 23, 36, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-default);
  padding: var(--space-lg);
  flex-direction: column;
  gap: var(--space-md);
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--border-subtle);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.nav-mobile a:hover,
.nav-mobile a.active {
  color: var(--accent-orange);
  padding-left: var(--space-sm);
}

/* Desktop: show full nav */
@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .nav-mobile {
    display: none !important;
  }
}

/* --------------------------------------------------------------------------
   6. HERO (.hero)
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  width: 100%;
  min-height: 520px;
  display: flex;
  align-items: center;
  padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  overflow: hidden;
  background: linear-gradient(180deg, var(--bg-elevated) 0%, var(--bg-primary) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 740px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  border: 1px solid var(--accent-orange-dim);
  border-radius: var(--border-radius);
  background: var(--accent-orange-dim);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 6vw, 4rem);
  font-weight: 700;
  line-height: 1.08;
  color: var(--text-primary);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.02em;
}

.hero-title .highlight {
  color: var(--accent-orange);
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

/* Hero subtle bottom border */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-active) 50%,
    transparent 100%
  );
  opacity: 0.6;
}

@media (min-width: 768px) {
  .hero {
    min-height: 600px;
    padding: calc(var(--nav-height) + var(--space-4xl)) 0 var(--space-4xl);
  }
}

/* --------------------------------------------------------------------------
   7. BUTTONS
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.75rem 1.75rem;
  border-radius: var(--border-radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent-orange);
  color: var(--text-inverse);
  border-color: var(--accent-orange);
}

.btn-primary:hover {
  background: #d4b87a;
  border-color: #d4b87a;
  color: var(--text-inverse);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-default);
}

.btn-outline:hover {
  color: var(--accent-orange);
  border-color: var(--accent-orange);
  background: var(--accent-orange-dim);
}

.btn-ghost {
  background: transparent;
  color: var(--accent-orange);
  padding: 0.5rem 1rem;
}

.btn-ghost:hover {
  background: var(--accent-orange-dim);
}

.btn-sm {
  font-size: 0.8125rem;
  padding: 0.5rem 1.25rem;
}

.btn-lg {
  font-size: 1rem;
  padding: 1rem 2.25rem;
}

/* --------------------------------------------------------------------------
   8. SECTIONS (.section)
   -------------------------------------------------------------------------- */
.section {
  padding: var(--space-3xl) 0;
  position: relative;
}

.section:nth-child(even) {
  background: linear-gradient(
    180deg,
    rgba(22, 32, 51, 0.3) 0%,
    rgba(15, 23, 36, 0) 100%
  );
}

.section:nth-child(odd) {
  background: transparent;
}

.section-dark {
  background: rgba(22, 32, 51, 0.5);
}

@media (min-width: 768px) {
  .section {
    padding: var(--space-4xl) 0;
  }
}

/* Section Title */
.section-title {
  position: relative;
  margin-bottom: var(--space-2xl);
  padding-left: var(--space-lg);
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-orange);
  border-radius: 2px;
}

.section-title .section-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-orange);
  margin-bottom: var(--space-xs);
}

.section-title h2 {
  margin-bottom: var(--space-sm);
}

.section-title p {
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 560px;
}

@media (min-width: 768px) {
  .section-title {
    margin-bottom: var(--space-3xl);
    padding-left: var(--space-xl);
  }
}

/* --------------------------------------------------------------------------
   9. STAT CARDS (.stat-grid, .stat-card)
   -------------------------------------------------------------------------- */
.stat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-xl);
  position: relative;
  overflow: hidden;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.stat-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  background: var(--accent-orange);
  opacity: 0.6;
  transition: opacity var(--transition-base);
}

.stat-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card .stat-value {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-card .stat-label {
  font-size: 0.8125rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
}

.stat-card .stat-change {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  margin-top: var(--space-sm);
}

.stat-card .stat-change.positive {
  color: var(--color-positive);
}

.stat-card .stat-change.negative {
  color: var(--color-negative);
}

/* Accent variants */
.stat-card.accent-cyan::before {
  background: var(--accent-cyan);
}

.stat-card.accent-green::before {
  background: var(--color-positive);
}

.stat-card.accent-red::before {
  background: var(--color-negative);
}

/* --------------------------------------------------------------------------
   10. TEAM CARDS (.team-grid, .team-card)
   -------------------------------------------------------------------------- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.team-card:hover {
  border-color: var(--border-active);
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.team-card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, var(--bg-elevated) 0%, #1a2540 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.team-card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card-photo .placeholder-icon {
  font-size: 3rem;
  color: var(--text-muted);
  opacity: 0.3;
}

.team-card-body {
  padding: var(--space-lg) var(--space-xl);
}

.team-card-name {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--space-xs);
}

.team-card-title {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-orange);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: var(--space-md);
}

.team-card-bio {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   11. REPORT CARDS (.report-card)
   -------------------------------------------------------------------------- */
.report-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .report-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .report-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.report-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-xl);
  cursor: pointer;
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
  text-decoration: none;
  color: inherit;
}

.report-card:hover {
  border-color: var(--accent-orange);
  background: var(--bg-card-hover);
  color: inherit;
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.report-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-md);
}

.report-card-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.report-card-badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  background: var(--accent-orange-dim);
  color: var(--accent-orange);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.report-card-badge.cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border-color: rgba(74, 127, 181, 0.2);
}

.report-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: var(--space-sm);
  line-height: 1.4;
  flex: 1;
}

.report-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-subtle);
}

.report-card-type {
  font-size: 0.8125rem;
  color: var(--text-muted);
}

.report-card-arrow {
  font-family: var(--font-mono);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: color var(--transition-fast), transform var(--transition-base);
}

.report-card:hover .report-card-arrow {
  color: var(--accent-orange);
  transform: translateX(4px);
}

/* --------------------------------------------------------------------------
   12. NEWS CARDS (.news-card)
   -------------------------------------------------------------------------- */
.news-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-lg) var(--space-xl);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.news-card:hover {
  border-color: var(--border-active);
  background: var(--bg-card-hover);
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 8px 32px rgba(0, 0, 0, 0.25);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.news-card-source {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
}

/* Source color variants */
.news-card-source.bloomberg {
  background: rgba(201, 169, 110, 0.12);
  color: var(--accent-orange);
}

.news-card-source.reuters {
  background: rgba(74, 127, 181, 0.10);
  color: var(--accent-cyan);
}

.news-card-source.ftse,
.news-card-source.ft {
  background: rgba(239, 154, 154, 0.12);
  color: #ef9a9a;
}

.news-card-source.wsj {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-secondary);
}

.news-card-source.internal {
  background: rgba(76, 175, 80, 0.12);
  color: var(--color-positive);
}

.news-card-source.caixin,
.news-card-source.xinhua {
  background: rgba(239, 83, 80, 0.12);
  color: var(--color-negative);
}

.news-card-date {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.news-card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
  margin-bottom: var(--space-sm);
}

.news-card-title a {
  color: inherit;
  transition: color var(--transition-fast);
}

.news-card-title a:hover {
  color: var(--accent-orange);
}

.news-card-summary {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* --------------------------------------------------------------------------
   13. DATA TABLES (.data-table)
   -------------------------------------------------------------------------- */
.table-wrapper {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  background: var(--bg-card);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead {
  background: rgba(26, 42, 66, 0.5);
}

.data-table th {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: left;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 2px solid var(--border-default);
  white-space: nowrap;
}

.data-table td {
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  vertical-align: middle;
}

.data-table td.mono,
.data-table td[data-type="number"] {
  font-family: var(--font-mono);
  font-weight: 500;
  color: var(--text-primary);
  font-variant-numeric: tabular-nums;
}

.data-table tbody tr {
  transition: background var(--transition-fast);
}

.data-table tbody tr:hover {
  background: rgba(201, 169, 110, 0.03);
}

.data-table tbody tr:last-child td {
  border-bottom: none;
}

/* Right-align numeric columns */
.data-table th.text-right,
.data-table td.text-right {
  text-align: right;
}

.data-table th.text-center,
.data-table td.text-center {
  text-align: center;
}

/* --------------------------------------------------------------------------
   14. PROCESS STEPS (.process-steps)
   -------------------------------------------------------------------------- */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  position: relative;
  padding-left: var(--space-2xl);
}

/* Vertical connecting line (mobile) */
.process-steps::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: linear-gradient(
    180deg,
    var(--accent-orange) 0%,
    var(--border-default) 50%,
    var(--accent-cyan) 100%
  );
}

.process-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.process-step-number {
  position: absolute;
  left: calc(-1 * var(--space-2xl));
  top: 0;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-orange);
  z-index: 2;
  transition: background var(--transition-base), color var(--transition-base);
}

.process-step:hover .process-step-number {
  background: var(--accent-orange);
  color: var(--text-inverse);
}

.process-step-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
}

.process-step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* Desktop: horizontal layout */
@media (min-width: 768px) {
  .process-steps {
    flex-direction: row;
    padding-left: 0;
    padding-top: var(--space-3xl);
    gap: var(--space-lg);
  }

  /* Horizontal connecting line */
  .process-steps::before {
    left: 30px;
    right: 30px;
    top: 15px;
    bottom: auto;
    width: auto;
    height: 1px;
    background: linear-gradient(
      90deg,
      var(--accent-orange) 0%,
      var(--border-default) 50%,
      var(--accent-cyan) 100%
    );
  }

  .process-step {
    flex: 1;
    text-align: center;
    align-items: center;
  }

  .process-step-number {
    position: absolute;
    left: 50%;
    top: calc(-1 * var(--space-3xl));
    transform: translateX(-50%);
  }
}

/* --------------------------------------------------------------------------
   15. CONTACT CARDS (.contact-grid, .contact-card)
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

@media (min-width: 1200px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  display: flex;
  align-items: flex-start;
  gap: var(--space-lg);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.contact-card:hover {
  border-color: var(--border-active);
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.2);
}

.contact-card-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius);
  background: var(--accent-orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent-orange);
}

.contact-card-icon.cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
}

.contact-card-content {
  flex: 1;
  min-width: 0;
}

.contact-card-label {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.contact-card-value {
  font-size: 0.9375rem;
  color: var(--text-primary);
  word-break: break-word;
  line-height: 1.5;
}

.contact-card-value a {
  color: var(--accent-orange);
}

.contact-card-value a:hover {
  text-decoration: underline;
}

/* --------------------------------------------------------------------------
   16. FOOTER (.site-footer)
   -------------------------------------------------------------------------- */
.site-footer {
  background: #060911;
  border-top: 1px solid var(--border-subtle);
  padding: var(--space-3xl) 0 var(--space-xl);
  margin-top: var(--space-3xl);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-xl);
  }
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col-title {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-lg);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-secondary);
  transition: color var(--transition-fast), padding-left var(--transition-base);
}

.footer-links a:hover {
  color: var(--accent-orange);
  padding-left: var(--space-xs);
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-xl);
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
  }
}

.footer-copyright {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: var(--space-lg);
}

.footer-legal a {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.footer-legal a:hover {
  color: var(--text-secondary);
}

/* --------------------------------------------------------------------------
   17. KEYFRAME ANIMATIONS
   -------------------------------------------------------------------------- */

/* Scanline + borderGlow removed (business professional theme) */

/* Fade in up — slide up + fade */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Fade in — simple opacity */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Pulse glow for active indicators */
@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(201, 169, 110, 0.4);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(201, 169, 110, 0);
  }
}

/* Shimmer for loading states */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

/* --------------------------------------------------------------------------
   18. FADE-IN SCROLL ANIMATION
   -------------------------------------------------------------------------- */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children delays */
.fade-in.delay-1 { transition-delay: 100ms; }
.fade-in.delay-2 { transition-delay: 200ms; }
.fade-in.delay-3 { transition-delay: 300ms; }
.fade-in.delay-4 { transition-delay: 400ms; }
.fade-in.delay-5 { transition-delay: 500ms; }
.fade-in.delay-6 { transition-delay: 600ms; }

/* Respect reduced motion preference */
@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero::after {
    animation: none;
  }
}

/* --------------------------------------------------------------------------
   19. UTILITY CLASSES
   -------------------------------------------------------------------------- */

/* Badge pill */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
  line-height: 1.5;
}

.badge-orange {
  background: var(--accent-orange-dim);
  color: var(--accent-orange);
  border: 1px solid rgba(201, 169, 110, 0.2);
}

.badge-cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
  border: 1px solid rgba(74, 127, 181, 0.2);
}

.badge-green {
  background: var(--color-positive-dim);
  color: var(--color-positive);
  border: 1px solid rgba(76, 175, 80, 0.2);
}

.badge-red {
  background: var(--color-negative-dim);
  color: var(--color-negative);
  border: 1px solid rgba(239, 83, 80, 0.2);
}

.badge-muted {
  background: rgba(74, 106, 138, 0.1);
  color: var(--text-muted);
  border: 1px solid rgba(74, 106, 138, 0.15);
}

/* Monospace */
.mono {
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
}

/* Color text */
.text-orange { color: var(--accent-orange); }
.text-cyan   { color: var(--accent-cyan); }
.text-green  { color: var(--color-positive); }
.text-red    { color: var(--color-negative); }
.text-muted  { color: var(--text-muted); }
.text-primary { color: var(--text-primary); }
.text-secondary { color: var(--text-secondary); }

/* Font weight */
.fw-300 { font-weight: 300; }
.fw-400 { font-weight: 400; }
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* Text alignment */
.text-left   { text-align: left; }
.text-center { text-align: center; }
.text-right  { text-align: right; }

/* Display font */
.display-font {
  font-family: var(--font-display);
}

/* Spacing utilities */
.mt-0  { margin-top: 0; }
.mt-1  { margin-top: var(--space-sm); }
.mt-2  { margin-top: var(--space-md); }
.mt-3  { margin-top: var(--space-lg); }
.mt-4  { margin-top: var(--space-xl); }
.mt-5  { margin-top: var(--space-2xl); }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: var(--space-sm); }
.mb-2  { margin-bottom: var(--space-md); }
.mb-3  { margin-bottom: var(--space-lg); }
.mb-4  { margin-bottom: var(--space-xl); }
.mb-5  { margin-bottom: var(--space-2xl); }
.py-1  { padding-top: var(--space-sm); padding-bottom: var(--space-sm); }
.py-2  { padding-top: var(--space-md); padding-bottom: var(--space-md); }
.py-3  { padding-top: var(--space-lg); padding-bottom: var(--space-lg); }
.py-4  { padding-top: var(--space-xl); padding-bottom: var(--space-xl); }
.py-5  { padding-top: var(--space-2xl); padding-bottom: var(--space-2xl); }
.px-1  { padding-left: var(--space-sm); padding-right: var(--space-sm); }
.px-2  { padding-left: var(--space-md); padding-right: var(--space-md); }
.px-3  { padding-left: var(--space-lg); padding-right: var(--space-lg); }

/* Flex utilities */
.flex          { display: flex; }
.flex-col      { flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.items-center  { align-items: center; }
.items-start   { align-items: flex-start; }
.items-end     { align-items: flex-end; }
.justify-center   { justify-content: center; }
.justify-between  { justify-content: space-between; }
.justify-end      { justify-content: flex-end; }
.gap-1 { gap: var(--space-sm); }
.gap-2 { gap: var(--space-md); }
.gap-3 { gap: var(--space-lg); }
.gap-4 { gap: var(--space-xl); }

/* Grid utilities */
.grid { display: grid; }

/* Width */
.w-full { width: 100%; }
.max-w-prose { max-width: 65ch; }
.max-w-lg { max-width: 720px; }
.max-w-xl { max-width: 960px; }

/* Visibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* Truncation */
.truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.line-clamp-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Dividers */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-default);
  margin: var(--space-xl) 0;
}

.divider-gradient {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--border-default) 20%,
    var(--accent-orange-dim) 50%,
    var(--border-default) 80%,
    transparent 100%
  );
  margin: var(--space-xl) 0;
}

/* Loading shimmer placeholder */
.skeleton {
  background: linear-gradient(
    90deg,
    var(--bg-card) 0%,
    var(--bg-elevated) 50%,
    var(--bg-card) 100%
  );
  background-size: 400% 100%;
  animation: shimmer 1.5s ease infinite;
  border-radius: var(--border-radius);
}

/* Active / live indicator dot */
.live-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-positive);
  animation: pulseGlow 2s ease-in-out infinite;
  vertical-align: middle;
  margin-right: var(--space-xs);
}

/* --------------------------------------------------------------------------
   20. SCROLLBAR STYLING
   -------------------------------------------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
  background: var(--border-default);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--border-active);
}

/* Firefox scrollbar */
* {
  scrollbar-width: thin;
  scrollbar-color: var(--border-default) var(--bg-primary);
}

/* --------------------------------------------------------------------------
   21. FORM ELEMENTS
   -------------------------------------------------------------------------- */
.form-group {
  margin-bottom: var(--space-lg);
}

.form-label {
  display: block;
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  color: var(--text-primary);
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: 0.75rem 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  outline: none;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px var(--accent-orange-dim);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1.5l5 5 5-5' stroke='%234a6a8a' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

/* --------------------------------------------------------------------------
   22. CARD BASE (shared card pattern)
   -------------------------------------------------------------------------- */
.card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-xl);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background var(--transition-base);
}

.card:hover {
  border-color: var(--border-active);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--border-subtle);
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--text-primary);
}

/* --------------------------------------------------------------------------
   23. CONTENT PROSE
   -------------------------------------------------------------------------- */
.prose {
  max-width: 65ch;
  color: var(--text-secondary);
  line-height: 1.8;
}

.prose h2 {
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.prose h3 {
  margin-top: var(--space-xl);
  margin-bottom: var(--space-sm);
}

.prose p {
  margin-bottom: var(--space-md);
}

.prose ul, .prose ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-xl);
}

.prose ul {
  list-style: disc;
}

.prose ol {
  list-style: decimal;
}

.prose li {
  margin-bottom: var(--space-xs);
}

.prose li::marker {
  color: var(--accent-orange);
}

.prose blockquote {
  border-left: 3px solid var(--accent-orange);
  padding-left: var(--space-lg);
  margin: var(--space-lg) 0;
  color: var(--text-muted);
  font-style: italic;
}

.prose code {
  font-family: var(--font-mono);
  font-size: 0.875em;
  background: rgba(26, 42, 66, 0.5);
  padding: 2px 6px;
  border-radius: 3px;
  color: var(--accent-cyan);
}

.prose pre {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-lg);
  overflow-x: auto;
  margin: var(--space-lg) 0;
}

.prose pre code {
  background: none;
  padding: 0;
  font-size: 0.8125rem;
  line-height: 1.7;
}

.prose a {
  color: var(--accent-orange);
  text-decoration: underline;
  text-decoration-color: rgba(201, 169, 110, 0.3);
  text-underline-offset: 2px;
  transition: text-decoration-color var(--transition-fast);
}

.prose a:hover {
  text-decoration-color: var(--accent-orange);
}

/* --------------------------------------------------------------------------
   24. FEATURE / HIGHLIGHT CARDS
   -------------------------------------------------------------------------- */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1200px) {
  .feature-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border-default);
  border-radius: var(--border-radius);
  padding: var(--space-xl) var(--space-xl) var(--space-lg);
  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.feature-card:hover {
  border-color: var(--border-active);
  box-shadow:
    0 -2px 20px rgba(201, 169, 110, 0.12),
    0 12px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius);
  background: var(--accent-orange-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-lg);
  color: var(--accent-orange);
}

.feature-card-icon.cyan {
  background: var(--accent-cyan-dim);
  color: var(--accent-cyan);
}

.feature-card h3 {
  font-size: 1.0625rem;
  margin-bottom: var(--space-sm);
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* --------------------------------------------------------------------------
   25. CTA / BANNER
   -------------------------------------------------------------------------- */
.cta-banner {
  position: relative;
  background: linear-gradient(
    135deg,
    rgba(201, 169, 110, 0.06) 0%,
    rgba(74, 127, 181, 0.04) 100%
  );
  border: 1px solid var(--accent-orange-dim);
  border-radius: var(--border-radius-lg);
  padding: var(--space-3xl) var(--space-xl);
  text-align: center;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(201, 169, 110, 0.02) 39px,
      rgba(201, 169, 110, 0.02) 40px
    );
}

.cta-banner h2 {
  margin-bottom: var(--space-md);
  position: relative;
}

.cta-banner p {
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
  position: relative;
}

.cta-banner .btn {
  position: relative;
}

@media (min-width: 768px) {
  .cta-banner {
    padding: var(--space-4xl) var(--space-2xl);
  }
}

/* --------------------------------------------------------------------------
   26. RESPONSIVE BREAKPOINTS — ADDITIONAL
   -------------------------------------------------------------------------- */

/* Mobile-only visibility */
.show-mobile {
  display: block;
}

.hide-mobile {
  display: none;
}

@media (min-width: 768px) {
  .show-mobile {
    display: none;
  }

  .hide-mobile {
    display: block;
  }
}

/* Tablet+ adjustments */
@media (min-width: 768px) {
  .section-title.text-center {
    text-align: center;
    padding-left: 0;
  }

  .section-title.text-center::before {
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 3px;
    top: auto;
    bottom: -12px;
    border-radius: 2px;
  }
}

/* Large screens */
@media (min-width: 1200px) {
  .stat-grid.cols-5 {
    grid-template-columns: repeat(5, 1fr);
  }

  .stat-grid.cols-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* --------------------------------------------------------------------------
   27. PRINT STYLES
   -------------------------------------------------------------------------- */
@media print {
  body::before,
  body::after,
  .site-nav,
  .nav-mobile {
    display: none !important;
  }

  body {
    background: #fff;
    color: #111;
  }

  .section {
    background: none !important;
    page-break-inside: avoid;
  }

  .card,
  .stat-card,
  .team-card,
  .report-card,
  .news-card,
  .contact-card,
  .feature-card {
    background: #fff;
    border: 1px solid #ddd;
    box-shadow: none;
    break-inside: avoid;
  }

  a {
    color: #111;
    text-decoration: underline;
  }

  .btn {
    border: 1px solid #111;
    background: none;
    color: #111;
  }
}
