/* ===================================
   HOME PAGE STYLES - UPDATED
   Capital Innovation Fund
   No Stats - Mobile Sidebar
   =================================== */

/* PREVENT HORIZONTAL SCROLL */
html, body {
  overflow-x: hidden;
  max-width: 100%;
  scroll-behavior: smooth;
}

/* COLOR VARIABLES */
:root {
  --blue: #00273d;
  --blue-dark: #001a29;
  --blue-light: #003d5c;
  --white: #ffffff;
  --grey: #f4f4f4;
  --grey-dark: #1a1a1a;
  --accent: #00a8e8;
  --success: #00ff88;
  --warning: #ffaa00;
}

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

body, html {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  color: var(--grey-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ==================================
   NAVIGATION WITH MOBILE SIDEBAR
   ================================== */
nav {
  width: 100%;
  background: var(--blue);
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
  background: rgba(0, 39, 61, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  padding: 12px 40px;
}

nav .logo img {
  height: 100px;
  transition: height 0.3s ease;
}

nav.scrolled .logo img {
  height: 38px;
}

/* Desktop Menu */
.desktop-menu {
  list-style: none;
  display: flex;
  gap: 35px;
  padding: 0;
  margin: 0;
}

.desktop-menu li {
  position: relative;
}

.desktop-menu li a {
  color: var(--white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: opacity 0.3s ease;
  position: relative;
}

.desktop-menu li a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.desktop-menu li a:hover::after,
.desktop-menu li a.active::after {
  width: 100%;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger-line {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Sidebar */
.mobile-sidebar {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  z-index: 999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar.active {
  right: 0;
}

.sidebar-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-sidebar.active .sidebar-overlay {
  opacity: 1;
}

.sidebar-content {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px;
  height: 100%;
  background: rgba(0, 39, 61, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.3);
  padding: 80px 30px 40px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-sidebar.active .sidebar-content {
  transform: translateX(0);
}

.sidebar-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 36px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.sidebar-close:hover {
  transform: rotate(90deg);
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-menu li a {
  display: block;
  color: var(--white);
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  letter-spacing: 0.3px;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
  background: rgba(0, 168, 232, 0.2);
  border-left: 3px solid var(--accent);
  padding-left: 17px;
}

/* ==================================
   HERO SECTION WITH IMAGE
   ================================== */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-dark);
  overflow: hidden;
  margin-top: 60px;
}

/* Hero Background Video */
.hero-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 39, 61, 0.2) 0%, rgba(0, 39, 61, 0.4) 100%);
  z-index: 3;
}

/* Network Canvas Overlay */
.network-canvas-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

#networkCanvas {
  width: 100%;
  height: 100%;
  display: block;
}



/* Scanning Line Animation */
.scanning-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 168, 232, 0.1) 45%, 
    rgba(0, 168, 232, 0.3) 50%, 
    rgba(0, 168, 232, 0.1) 55%, 
    transparent 100%);
  z-index: 4;
  animation: scanning 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
  pointer-events: none;
}

@keyframes scanning {
  0% {
    left: -100%;
  }
  50% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

/* Hero Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 900px;
  padding: 0 40px;
  color: var(--white);
}

.hero-title {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-title .line:nth-child(1) {
  animation-delay: 0.2s;
}

.hero-title .line:nth-child(2) {
  animation-delay: 0.4s;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  line-height: 1.6;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.6s;
}

.btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards 0.8s;
}

.btn {
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  letter-spacing: 0.3px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
  box-shadow: 0 8px 24px rgba(0, 168, 232, 0.3);
}

.btn-primary:hover {
  background: #0096d1;
  box-shadow: 0 12px 32px rgba(0, 168, 232, 0.4);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* ==================================
   SOLUTIONS - INTERACTIVE SELECTOR
   ================================== */
.solutions-interactive {
  padding: 120px 60px;
  background: var(--white);
}

.solutions-header {
  text-align: center;
  margin-bottom: 80px;
}

.solutions-header h2 {
  font-size: 48px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.solutions-header p {
  font-size: 18px;
  color: var(--grey-dark);
  opacity: 0.8;
  max-width: 600px;
  margin: 0 auto;
}

.sector-selector {
  max-width: 1200px;
  margin: 0 auto;
}

/* Sector Tabs */
.sector-tabs {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.sector-tab {
  padding: 14px 32px;
  background: var(--grey);
  border: 2px solid transparent;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  color: var(--grey-dark);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.3px;
}

.sector-tab:hover {
  background: rgba(0, 39, 61, 0.05);
  border-color: var(--blue);
}

.sector-tab.active {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(0, 39, 61, 0.2);
  transform: translateY(-2px);
}

/* Sector Display */
.sector-display {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.sector-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  aspect-ratio: 4/3;
}

.sector-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
}

.sector-image:hover img {
  transform: scale(1.05);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 39, 61, 0.4) 100%);
  pointer-events: none;
}

/* Sector Description */
.sector-description {
  opacity: 1;
  transition: opacity 0.3s ease;
}

.sector-description h3 {
  font-size: 32px;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.sector-description p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--grey-dark);
  margin-bottom: 30px;
  opacity: 0.9;
}

.sector-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px;
  background: var(--grey);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: rgba(0, 168, 232, 0.1);
  transform: translateX(4px);
}

/* Feature icon as image */
.feature-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 6px;
}

.feature-item span {
  font-size: 14px;
  font-weight: 600;
  color: var(--blue);
}

/* ==================================
   WHY IT MATTERS - TIMELINE
   ================================== */
.why-timeline {
  padding: 120px 60px;
  background: var(--blue-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.timeline-title {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.timeline-subtitle {
  font-size: 18px;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.timeline-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

/* Africa Map Background */
.africa-map {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80%;
  height: 80%;
  opacity: 0.1;
  z-index: 1;
}

.map-svg {
  width: 100%;
  height: 100%;
}

.timeline-path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.2);
  stroke-width: 3;
}

.timeline-path-fill {
  fill: none;
  stroke: var(--accent);
  stroke-width: 3;
  stroke-dasharray: 2000;
  stroke-dashoffset: 2000;
  transition: stroke-dashoffset 2s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-path-fill.active {
  stroke-dashoffset: 0;
}

/* Timeline Steps */
.timeline-steps {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 80px;
}

.timeline-step {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.visible {
  opacity: 1;
  transform: translateY(0);
}

.step-number {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.step-content h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}

.step-content p {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
}

/* ==================================
   CTA SECTION
   ================================== */
.cta-section {
  padding: 100px 60px;
  background: linear-gradient(135deg, var(--blue) 0%, var(--blue-light) 100%);
  text-align: center;
  color: var(--white);
}

.cta-content h2 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.cta-content p {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ==================================
   FOOTER
   ================================== */
footer {
  background: var(--white);
  padding: 60px 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

footer img {
  height: 50px;
}

footer .social img {
  height: 28px;
  cursor: pointer;
  transition: all 0.3s ease;
}

footer .social img:hover {
  transform: scale(1.15);
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */
@media (max-width: 968px) {
  /* Show mobile menu toggle */
  .desktop-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  nav {
    padding: 15px 25px;
  }
  
  .hero-title {
    font-size: 48px;
  }
  
  .sector-display {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .timeline-steps {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .solutions-interactive,
  .why-timeline,
  .cta-section {
    padding: 80px 40px;
  }
  
  .sector-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  nav {
    padding: 12px 20px;
  }
  
  nav .logo img {
    height: 35px;
  }
  
  .sidebar-content {
    width: 240px;
  }
  
  .hero {
    margin-top: 50px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .solutions-header h2,
  .timeline-title,
  .cta-content h2 {
    font-size: 32px;
  }
  
  .sector-tabs {
    gap: 8px;
  }
  
  .sector-tab {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .sector-description h3 {
    font-size: 26px;
  }
  
  .solutions-interactive,
  .why-timeline,
  .cta-section {
    padding: 60px 25px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 25px;
  }
}


/* ===================================
   INDEX.CSS ADDITIONS
   Append these styles to the bottom of css/index.css
   Covers:
   1. Video fallback hidden text
   2. Enhanced capabilities feature grid
   3. Intelligence mockup card (Step 03)
   =================================== */

/* ==================================
   1. VIDEO FALLBACK — hide raw text
   ================================== */
.video-fallback-hidden {
  display: none;
}

/* ==================================
   2. ENHANCED CAPABILITIES GRID
   Replaces the simple 2-col feature grid
   ================================== */
.capabilities-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 14px;
  margin-top: 10px;
}

/* Override existing .sector-features to use a richer card layout */
.sector-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--grey);
  border-radius: 10px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #fff;
  border-color: rgba(0, 168, 232, 0.25);
  box-shadow: 0 4px 16px rgba(0, 168, 232, 0.1);
  transform: translateY(-2px);
}

.feature-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  flex-shrink: 0;
  border-radius: 8px;
  background: rgba(0, 168, 232, 0.08);
  padding: 4px;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.feature-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}

.feature-desc {
  font-size: 11px;
  color: #888;
  font-weight: 500;
}

/* ==================================
   3. INTELLIGENCE MOCKUP — Step 03
   ================================== */

/* Make the intelligence step span full width on the 2-col grid */
.intelligence-step {
  grid-column: 1 / -1;
}

.intelligence-mockup {
  margin-top: 28px;
  background: rgba(0, 168, 232, 0.06);
  border: 1px solid rgba(0, 168, 232, 0.2);
  border-radius: 14px;
  overflow: hidden;
  font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace;
}

.mockup-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background: rgba(0, 168, 232, 0.12);
  border-bottom: 1px solid rgba(0, 168, 232, 0.15);
}

.mockup-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  text-transform: uppercase;
}

.mockup-timestamp {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.4);
}

.mockup-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ---- Risk Score Panel ---- */
.mockup-risk {
  padding: 24px;
  border-right: 1px solid rgba(0, 168, 232, 0.15);
}

.risk-label,
.rec-label {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 6px;
}

.risk-project {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
  font-family: -apple-system, sans-serif;
}

/* Risk gauge bar */
.risk-gauge {
  margin-bottom: 16px;
}

.gauge-track {
  position: relative;
  height: 8px;
  background: linear-gradient(90deg,
    rgba(0, 255, 136, 0.5) 0%,
    rgba(255, 200, 0, 0.5) 50%,
    rgba(255, 60, 60, 0.5) 100%
  );
  border-radius: 999px;
  margin-bottom: 24px;
}

.gauge-fill {
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: rgba(255,255,255,0.15);
  border-radius: 999px;
}

.gauge-marker {
  position: absolute;
  top: -4px;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.gauge-value {
  background: #fff;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 6px;
  white-space: nowrap;
  margin-bottom: 4px;
}

.gauge-marker::after {
  content: '';
  width: 2px;
  height: 16px;
  background: #fff;
  border-radius: 2px;
  display: block;
}

.gauge-labels {
  display: flex;
  justify-content: space-between;
}

.gauge-labels span {
  font-size: 9px;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Risk factors list */
.risk-factors {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.factor {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.75);
  font-family: -apple-system, sans-serif;
}

.factor-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00ff88;
  flex-shrink: 0;
}

.factor-dot.warn {
  background: #ffaa00;
}

/* ---- Recommendation Panel ---- */
.mockup-recommendation {
  padding: 24px;
}

.rec-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 14px;
  border-radius: 6px;
  margin-bottom: 14px;
}

.rec-badge.buy {
  background: rgba(0, 255, 136, 0.15);
  color: #00ff88;
  border: 1px solid rgba(0, 255, 136, 0.3);
}

.rec-text {
  font-size: 12px;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  font-family: -apple-system, sans-serif;
  margin-bottom: 18px;
}

.rec-text strong {
  color: #fff;
}

.rec-metrics {
  display: flex;
  gap: 0;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
}

.rec-metric {
  flex: 1;
  text-align: center;
  padding: 10px 6px;
  border-right: 1px solid rgba(255,255,255,0.1);
}

.rec-metric:last-child {
  border-right: none;
}

.metric-val {
  display: block;
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 4px;
}

.metric-lbl {
  display: block;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  font-family: -apple-system, sans-serif;
}

/* ==================================
   RESPONSIVE — mockup
   ================================== */
@media (max-width: 768px) {
  .mockup-body {
    grid-template-columns: 1fr;
  }

  .mockup-risk {
    border-right: none;
    border-bottom: 1px solid rgba(0, 168, 232, 0.15);
  }

  .sector-features {
    grid-template-columns: 1fr;
  }
}