/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  --navy: #0A1628;
  --navy-mid: #0E1F38;
  --navy-light: #132B4A;
  --teal: #00C2D4;
  --green: #34D399;
  --amber: #FBBF24;
  --purple: #A78BFA;
  --white: #F8FAFC;
  --off-white: #EEF2F7;
  --gray-100: #E2E8F0;
  --gray-300: #94A3B8;
  --gray-500: #64748B;
  --gray-700: #334155;
  --text-light: #CBD5E1;
  --text-dim: #A8B8C8;
}

/* ===== RESET ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Outfit', sans-serif;
  background: var(--navy);
  color: var(--text-light);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
a { color: var(--teal); text-decoration: none; transition: all .25s; }
a:hover { opacity: .85; }
img { max-width: 100%; height: auto; }

/* ===== NAV ===== */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(10,22,40,.85);
  backdrop-filter: blur(12px);
  transition: background .3s, box-shadow .3s;
}
nav.scrolled {
  background: rgba(10,22,40,.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,194,212,.08);
}
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 16px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.nav-logo img { height: 44px; width: auto; display: block; }
.nav-links { display: flex; gap: 36px; align-items: center; }
.nav-links a {
  font-size: 15px; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; color: var(--gray-300); transition: color .25s;
}
.nav-links a:hover { color: var(--teal); opacity: 1; }
.nav-links a.active { color: var(--teal); font-weight: 500; }
.nav-cta {
  padding: 12px 28px; border: 1px solid rgba(0,194,212,.3);
  border-radius: 4px; color: var(--teal) !important; font-weight: 500;
}
.nav-cta:hover { background: rgba(0,194,212,.08); border-color: var(--teal); }
.nav-hamburger {
  display: none; background: none; border: none; cursor: pointer; padding: 8px;
}
.nav-hamburger span {
  display: block; width: 24px; height: 2px; background: var(--text-light);
  margin: 5px 0; transition: all .3s; border-radius: 2px;
}
.nav-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; }
.nav-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== SECTIONS ===== */
.fw { width: 100%; }
.fw-dark { background: var(--navy); }
.fw-darker { background: var(--navy-mid); }
.fw-light { background: var(--off-white); color: var(--gray-700); }
.fw-faded-bg { position: relative; }
.fw-faded-bg::before {
  content: ''; position: absolute; inset: 0;
  background: url('assets/Slide1.png') center center/cover no-repeat;
  opacity: .07; pointer-events: none;
}
.container { max-width: 1280px; margin: 0 auto; padding: 0 48px; position: relative; z-index: 1; }
.section-pad { padding: 120px 0; }
.section-pad-sm { padding: 80px 0; }

/* ===== TYPOGRAPHY ===== */
.label {
  font-size: 16px; font-weight: 500; letter-spacing: 4px;
  text-transform: uppercase; color: var(--teal); margin-bottom: 16px; display: block;
}
.fw-light .label { color: #0891B2; }
h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(40px, 5.5vw, 68px); font-weight: 500;
  color: var(--white); line-height: 1.1; margin-bottom: 28px; letter-spacing: -.5px;
}
h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(32px, 4vw, 48px); font-weight: 500;
  color: var(--white); line-height: 1.15; margin-bottom: 24px;
}
.fw-light h2 { color: var(--navy); }
h3 { font-family: 'Outfit', sans-serif; font-size: 20px; font-weight: 500; margin-bottom: 10px; }
.lead {
  font-size: 19px; font-weight: 300; line-height: 1.8;
  max-width: 680px; color: var(--text-light);
}
.fw-light .lead { color: var(--gray-500); }
.text-sm { font-size: 16px; line-height: 1.75; color: #B0BEC5; }
.fw-light .text-sm { color: var(--gray-500); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 80px;
  background: var(--navy) url('assets/Slide1.png') center center/cover no-repeat;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(10,22,40,.92) 0%, rgba(10,22,40,.7) 50%, rgba(10,22,40,.4) 100%);
  z-index: 1;
}
.hero-content { position: relative; z-index: 2; max-width: 720px; }
.hero-logo { display: block; width: 340px; height: auto; margin-bottom: 32px; }
.hero-content .lead { margin-bottom: 48px; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 36px; background: var(--teal); color: var(--navy);
  font-weight: 600; font-size: 17px; letter-spacing: .5px;
  border-radius: 4px; transition: all .3s;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(0,194,212,.2); opacity: 1; }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 18px 36px; border: 1px solid rgba(255,255,255,.15);
  color: var(--text-light); font-weight: 400; font-size: 17px;
  letter-spacing: .5px; border-radius: 4px; transition: all .3s;
}
.btn-ghost:hover { border-color: rgba(0,194,212,.3); color: var(--teal); opacity: 1; }

/* ===== STAT BAR ===== */
.stat-bar {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(0,194,212,.08);
  border-bottom: 1px solid rgba(0,194,212,.08);
}
.stat-item { padding: 40px 32px; text-align: center; border-right: 1px solid rgba(0,194,212,.06); }
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif; font-size: 42px;
  font-weight: 500; color: var(--teal); line-height: 1; margin-bottom: 8px;
}
.stat-label {
  font-size: 14px; font-weight: 400; letter-spacing: 1px;
  text-transform: uppercase; color: var(--text-dim);
}

/* ===== CARDS ===== */
.card-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.card { border-radius: 8px; padding: 36px; transition: transform .3s, box-shadow .3s; }
.card-dark {
  background: var(--navy-light);
  border: 1px solid rgba(0,194,212,.05);
}
.card-dark:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,.3); border-color: rgba(0,194,212,.12); }
.card-white {
  background: white; border: 1px solid var(--gray-100);
  box-shadow: 0 1px 3px rgba(0,0,0,.04);
}
.card-white:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.card-white h3 { color: var(--navy); }
.card-white p { color: var(--gray-500); }
.card-accent { width: 100%; height: 3px; border-radius: 2px; margin-bottom: 24px; }

/* ===== TISSUE GRID ===== */
.tissue-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 48px; }
.tissue-cell {
  background: white; border-radius: 8px; padding: 28px 16px; text-align: center;
  border: 1px solid var(--gray-100); border-top: 3px solid var(--teal);
  transition: transform .2s, box-shadow .2s;
}
.tissue-cell:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.06); }
.tissue-name { font-size: 16px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.tissue-val { font-family: 'Playfair Display', serif; font-size: 28px; color: #0891B2; font-weight: 500; line-height: 1.2; }
.tissue-sp { font-size: 14px; color: var(--gray-300); margin-top: 6px; }

/* ===== DATA TABS ===== */
.data-tabs {
  display: flex; gap: 0; border-bottom: 2px solid var(--gray-100);
  margin-bottom: 48px; overflow-x: auto;
}
.data-tab {
  padding: 16px 28px; font-size: 17px; font-weight: 500;
  color: var(--gray-500); cursor: pointer; border: none; background: none;
  border-bottom: 3px solid transparent; margin-bottom: -2px;
  transition: all .25s; white-space: nowrap; letter-spacing: .3px;
}
.data-tab:hover { color: #0891B2; }
.data-tab.active { color: #0891B2; border-bottom-color: #0891B2; font-weight: 600; }
.data-panel { display: none; }
.data-panel.active { display: block; }
.data-figure-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 28px; margin: 32px 0;
}
.data-figure-grid.two-col {
  grid-template-columns: repeat(2, 1fr);
}
.data-figure img {
  object-fit: contain;
  background: #fafbfc;
}
.data-figure {
  background: white; border-radius: 8px; overflow: hidden;
  border: 1px solid var(--gray-100); box-shadow: 0 1px 3px rgba(0,0,0,.04);
  transition: transform .2s, box-shadow .2s; cursor: pointer;
}
.data-figure:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,.08); }
.data-figure img {
  width: 100%; display: block; border-bottom: 1px solid var(--gray-100);
}
.data-figure figcaption {
  padding: 24px 28px; font-size: 18px; color: var(--gray-700); line-height: 1.75;
}
.data-callout {
  border-left: 4px solid #0891B2; padding: 24px 28px;
  background: rgba(0,194,212,.04); border-radius: 0 8px 8px 0;
  margin-top: 24px; font-size: 18px; color: var(--gray-700); line-height: 1.7;
}
.data-study-design {
  font-size: 17px; color: var(--gray-500); line-height: 1.7;
  margin-bottom: 8px; padding: 20px 24px;
  background: rgba(0,194,212,.03); border-radius: 6px; border: 1px solid var(--gray-100);
}
.data-study-design strong { color: var(--navy); }
.data-placeholder {
  background: var(--off-white); border: 2px dashed var(--gray-100);
  border-radius: 8px; padding: 48px 32px; text-align: center;
  color: var(--gray-300); font-size: 14px; min-height: 200px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}

/* Safety table */
.safety-table {
  width: 100%; border-collapse: collapse; margin-top: 32px;
  font-size: 16px; background: white; border-radius: 8px;
  overflow: hidden; border: 1px solid var(--gray-100);
}
.safety-table thead th {
  background: var(--navy); color: var(--text-light);
  padding: 14px 16px; text-align: left; font-weight: 500;
  font-size: 11px; letter-spacing: 1px; text-transform: uppercase;
}
.safety-table tbody td {
  padding: 14px 16px; border-bottom: 1px solid var(--gray-100);
  color: var(--gray-700); line-height: 1.5;
}
.safety-table tbody tr:last-child td { border-bottom: none; }
.safety-table tbody tr:nth-child(even) { background: rgba(0,194,212,.02); }

/* ===== PIPELINE ===== */
.pipeline-chart { margin-top: 48px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.pipeline-header {
  display: grid; grid-template-columns: 140px 200px 1fr; gap: 0; margin-bottom: 2px;
  min-width: 900px;
}
.pipeline-header-cell {
  padding: 14px 16px; font-size: 17px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; color: var(--text-dim);
}
.pipeline-stages { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
.pipeline-stages div {
  padding: 14px 8px; font-size: 17px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-dim);
  text-align: center; border-bottom: 1px solid rgba(255,255,255,.04);
  white-space: nowrap;
}
.pipeline-row {
  display: grid; grid-template-columns: 140px 200px 1fr; gap: 0;
  margin-bottom: 3px; align-items: stretch;
  min-width: 900px;
}
.pipeline-target {
  padding: 18px; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 20px; color: white; text-align: center;
  border-radius: 6px 0 0 6px;
}
.pipeline-indication {
  padding: 18px; background: var(--navy-light);
  display: flex; align-items: center;
  font-size: 20px; color: var(--text-light);
  border-left: 1px solid rgba(255,255,255,.03);
}
.pipeline-bar-container {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; position: relative;
}
.pipeline-bar-bg {
  background: rgba(255,255,255,.04);
  border-right: 1px solid rgba(255,255,255,.06); padding: 16px 0;
}
.pipeline-bar {
  position: absolute; top: 4px; bottom: 4px; border-radius: 4px;
  display: flex; align-items: center; justify-content: flex-end; padding-right: 12px;
}
/* Desktop pipeline bar widths */
.pipeline-bar.dw-56 { width: 56%; }
.pipeline-bar.dw-52 { width: 52%; }
.pipeline-bar.dw-38 { width: 38%; }
.pipeline-bar.dw-20 { width: 20%; }
.pipeline-bar-label {
  font-size: 19px; font-weight: 500; color: white;
  letter-spacing: .5px; white-space: nowrap;
}
.pipeline-footnote {
  margin-top: 24px; font-size: 21px; color: var(--text-dim);
  line-height: 1.8; max-width: 1060px;
}

/* ===== PRECEDENT ===== */
.prec-val {
  font-family: 'Playfair Display', serif; font-size: 32px;
  color: var(--teal); font-weight: 500; margin-bottom: 4px;
}
.prec-company {
  font-size: 17px; color: var(--text-dim);
  letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px;
}

/* ===== TEAM ===== */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px;
}
.team-card {
  background: var(--navy-light); border-radius: 8px; padding: 28px;
  border: 1px solid rgba(0,194,212,.05); transition: transform .2s, box-shadow .2s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.3); }
.team-photo-wrap {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden;
  margin-bottom: 16px; background: var(--navy-mid);
  display: flex; align-items: center; justify-content: center;
  border: 2px solid rgba(0,194,212,.15);
}
.team-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.team-initials {
  font-family: 'Playfair Display', serif; font-size: 28px;
  color: var(--teal); font-weight: 500;
}
.team-name {
  font-family: 'Playfair Display', serif; font-size: 18px;
  color: var(--white); margin-bottom: 4px;
}
.team-title {
  font-size: 15px; font-weight: 500; letter-spacing: .5px; margin-bottom: 12px;
}
.team-sidebar-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.team-sidebar-card {
  background: var(--navy-light); border-radius: 8px; padding: 28px;
  border: 1px solid rgba(0,194,212,.05);
}
.team-sidebar-card h4 {
  font-size: 18px; font-weight: 600; color: var(--teal);
  margin-bottom: 10px; letter-spacing: .5px;
}

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-email {
  font-size: 22px; font-weight: 500; color: #0891B2;
  display: block; margin-top: 16px;
}
.contact-address {
  margin-top: 24px; font-size: 17px; color: var(--gray-500); line-height: 1.8;
}

/* ===== FOOTER ===== */
footer { border-top: 1px solid rgba(0,194,212,.06); }
.footer-inner {
  max-width: 1280px; margin: 0 auto; padding: 40px 48px;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-logo img { height: 28px; width: auto; display: block; }
.footer-copy { font-size: 14px; color: var(--gray-500); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 14px; color: var(--gray-500); }

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(10,22,40,.95); backdrop-filter: blur(12px);
  align-items: center; justify-content: center; padding: 40px;
  cursor: zoom-out;
}
.lightbox.active { display: flex; }
.lightbox img {
  max-width: 95vw; max-height: 90vh; object-fit: contain;
  border-radius: 8px; box-shadow: 0 24px 80px rgba(0,0,0,.5);
}
.lightbox-close {
  position: absolute; top: 24px; right: 32px; background: none;
  border: none; color: var(--text-light); font-size: 32px;
  cursor: pointer; width: 48px; height: 48px; display: flex;
  align-items: center; justify-content: center; border-radius: 50%;
  transition: background .2s;
}
.lightbox-close:hover { background: rgba(255,255,255,.1); }

/* ===== FADE ===== */
.fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE TOP PADDING ===== */
.page-top { padding-top: 100px; }

/* ===== RESPONSIVE ===== */

/* -- Tablet (601-1024px) -- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 14px 32px; }
  .card-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .card-grid-3 { grid-template-columns: 1fr; }
  .tissue-grid { grid-template-columns: repeat(3, 1fr); }
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .team-sidebar-grid { grid-template-columns: 1fr; }
  .pipeline-row { grid-template-columns: 120px 160px 1fr; }
  .pipeline-header { grid-template-columns: 120px 160px 1fr; }
  .data-figure-grid { grid-template-columns: 1fr; }
  .data-figure-grid.two-col { grid-template-columns: 1fr; }
}

/* -- Mobile (<=768px) -- */
@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-links.mobile-open {
    display: flex; flex-direction: column; position: absolute;
    top: 100%; left: 0; right: 0; background: rgba(10,22,40,.98);
    padding: 28px 24px; gap: 24px; border-bottom: 1px solid rgba(0,194,212,.08);
    backdrop-filter: blur(20px);
  }
  .nav-links.mobile-open a { font-size: 18px; }
  .nav-hamburger { display: block; }
  .nav-inner { padding: 12px 20px; }
  .nav-logo img { height: 36px; }

  /* Layout */
  .container { padding-left: 20px; padding-right: 20px; }
  .section-pad { padding: 64px 0; }
  .section-pad-sm { padding: 48px 0; }

  /* Typography */
  h1 { font-size: clamp(28px, 8vw, 44px); margin-bottom: 20px; }
  h2 { font-size: clamp(26px, 6vw, 36px); margin-bottom: 18px; }
  h3 { font-size: 18px; }
  .label { font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
  .lead { font-size: 17px; line-height: 1.7; }
  .text-sm { font-size: 15px; }

  /* Hero */
  .hero { min-height: auto; padding: 120px 0 80px; }
  .hero-logo { width: 220px; margin-bottom: 24px; }
  .hero-content .lead { margin-bottom: 32px; font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 12px; width: 100%; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; padding: 16px 28px; font-size: 16px; }

  /* Stat bar */
  .stat-bar { grid-template-columns: repeat(2, 1fr); }
  .stat-item { padding: 24px 16px; }
  .stat-num { font-size: 32px; }
  .stat-label { font-size: 12px; }

  /* Cards */
  .card-grid-4 { grid-template-columns: 1fr; gap: 16px; }
  .card-grid-3 { grid-template-columns: 1fr; gap: 16px; }
  .card { padding: 28px 24px; }

  /* Data section */
  .data-tabs { gap: 0; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .data-tab { padding: 14px 18px; font-size: 15px; flex-shrink: 0; }
  .data-study-design { font-size: 15px; padding: 16px 18px; }
  .data-figure figcaption { padding: 18px 20px; font-size: 16px; }
  .data-figure[data-lightbox] { cursor: pointer; }
  .data-figure[data-lightbox]::after {
    content: 'Tap to enlarge';
    display: block; text-align: center;
    font-size: 12px; color: #5EADB0; letter-spacing: 1px; text-transform: uppercase;
    padding: 8px 0 4px; opacity: 0.7;
  }
  .data-callout { font-size: 16px; padding: 20px 22px; }
  .data-figure-grid.two-col { grid-template-columns: 1fr; }

  /* Safety table */
  .safety-table { font-size: 13px; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .safety-table thead th { padding: 10px 12px; font-size: 10px; white-space: nowrap; }
  .safety-table tbody td { padding: 10px 12px; white-space: nowrap; }

  /* Tissue grid */
  .tissue-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .tissue-cell { padding: 20px 14px; }
  .tissue-name { font-size: 14px; }
  .tissue-val { font-size: 24px; }
  .tissue-sp { font-size: 13px; }

  /* Pipeline -- stacked card layout */
  .pipeline-chart { margin-top: 32px; overflow-x: hidden !important; }
  .pipeline-header { display: none; }
  .pipeline-row {
    grid-template-columns: 1fr; margin-bottom: 16px;
    border-radius: 8px; overflow: hidden;
    border: 1px solid rgba(255,255,255,.06);
    max-width: 100%; box-sizing: border-box;
  }
  html, body { overflow-x: hidden !important; }
  .pipeline-chart { overflow: hidden !important; max-width: 100vw; }
  .pipeline-target {
    border-radius: 0; padding: 14px 20px; font-size: 17px;
    justify-content: flex-start; text-align: left;
  }
  .pipeline-indication {
    padding: 12px 20px; font-size: 16px;
    border-radius: 0; border-left: none; border-top: 1px solid rgba(255,255,255,.04);
  }
  .pipeline-bar-container {
    display: block !important; position: relative;
    background: rgba(255,255,255,.03);
    border-radius: 0 0 8px 8px; overflow: hidden;
    grid-template-columns: none !important;
  }
  .pipeline-bar-bg { display: none !important; }
  .pipeline-bar {
    position: relative !important; top: auto !important; bottom: auto !important;
    left: auto !important; right: auto !important;
    min-height: 44px; border-radius: 0 !important;
    justify-content: flex-start; padding: 12px 16px;
    display: flex; box-sizing: border-box;
    width: auto !important;
  }
  .pipeline-bar.mw-85 { width: 85% !important; }
  .pipeline-bar.mw-75 { width: 75% !important; }
  .pipeline-bar.mw-50 { width: 50% !important; }
  .pipeline-bar.mw-35 { width: 35% !important; }
  .pipeline-bar-label { font-size: 15px; white-space: nowrap; }
  .pipeline-footnote { font-size: 16px; line-height: 1.7; }

  /* Landscape & Bottleneck */
  .landscape-grid { grid-template-columns: 1fr !important; }
  .bottleneck-grid { grid-template-columns: 1fr !important; }

  /* Precedent */
  .prec-company { font-size: 14px; }
  .prec-val { font-size: 26px; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; gap: 16px; }
  .team-card { padding: 24px 20px; text-align: center; }
  .team-photo-wrap { width: 120px; height: 120px; margin: 0 auto 14px; }
  .team-name { font-size: 17px; }
  .team-title { font-size: 14px; }
  .team-bio { font-size: 14px; }
  .team-sidebar-grid { grid-template-columns: 1fr; gap: 16px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .contact-email { font-size: 19px; }
  .contact-address { font-size: 15px; }

  /* Footer */
  .footer-inner { flex-direction: column; gap: 16px; text-align: center; padding: 32px 20px; }
  .footer-links { gap: 16px; }
}

/* -- Small phones (<=480px) -- */
@media (max-width: 480px) {
  h1 { font-size: clamp(24px, 7vw, 36px); }
  h2 { font-size: clamp(22px, 6vw, 30px); }
  .hero { padding: 100px 0 60px; }
  .hero-logo { width: 180px; }
  .stat-bar { grid-template-columns: 1fr; }
  .stat-item { padding: 20px 16px; border-right: none; border-bottom: 1px solid rgba(0,194,212,.06); }
  .tissue-grid { grid-template-columns: 1fr; }
  .card-grid-3 { gap: 12px; }
  .team-photo-wrap { width: 110px; height: 110px; }
}
