/* ==========================================================
   DYCINE PHARMA — homepage styles  (v2)
   All sans-serif · gradients · realistic globe · webm video
   ========================================================== */

:root {
  --navy-900: #03045E;
  --navy-800: #023E8A;
  --navy-700: #0077B6;
  --cyan-500: #00B4D8;
  --cyan-300: #90E0EF;
  --ink:      #121212;
  --paper:    #FAFAFA;
  --paper-2:  #f0f3f8;
  --border:   rgba(18,18,18,0.08);
  --border-dark: rgba(250,250,250,0.16);
  --shadow-card: 0 1px 2px rgba(3,4,94,0.06), 0 12px 32px -8px rgba(3,4,94,0.18);
  --shadow-float: 0 2px 4px rgba(3,4,94,0.08), 0 20px 48px -12px rgba(3,4,94,0.32);
  --nav-clear: 72px;
}
@media (max-width: 820px) { :root { --nav-clear: 20px; } }

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  color: var(--ink);
  background: var(--paper);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; }

.display {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 0.92;
  text-wrap: balance;
  hyphens: none;
}

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* =========================
   Floating logo card  — original SVG, untouched
   ========================= */
.logo-card {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 60;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(18,18,18,0.08);
  border-radius: 16px;
  padding: 6px 8px;
  box-shadow: var(--shadow-float);
  text-decoration: none;
  display: flex;
  align-items: center;
  width: 196px;
  height: 48px;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .4s, border-color .4s, box-shadow .4s, backdrop-filter .4s;
}
.logo-card:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 4px 8px rgba(3,4,94,0.1), 0 28px 56px -12px rgba(3,4,94,0.4); }
.logo-card img { width: 100%; height: auto; display: block; }
.logo-card .logo-white {
  position: absolute; top: 50%; left: 0;
  transform: translateY(-50%) scale(0.92);
  width: 100%; height: auto;
  opacity: 0;
  transition: opacity .45s ease;
}
.logo-card .logo-color {
  opacity: 1;
  transition: opacity .45s ease;
}

/* Hero-mode: matches top-nav hero style */
.logo-card.is-hero {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-color: rgba(250,250,250,0.20);
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.logo-card.is-hero .logo-color { opacity: 0; }
.logo-card.is-hero .logo-white { opacity: 1; }

/* gentle drift / pulse on the floating card */
@keyframes logoFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-3px); }
}
.logo-card { animation: logoFloat 6s ease-in-out infinite; }
.logo-card:hover { animation-play-state: paused; }

img, svg, video { display: block; max-width: 100%; }

/* =========================
   Top navigation card
   ========================= */
.top-nav {
  position: fixed;
  top: 24px;
  right: 72px;
  z-index: 60;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(18,18,18,0.08);
  border-radius: 16px;
  padding: 6px 8px;
  box-shadow: var(--shadow-float);
  display: flex;
  align-items: center;
  height: 48px;
  transition: background .4s, border-color .4s, box-shadow .4s;
}
/* Transparent style when over hero */
.top-nav.is-hero {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(14px) saturate(1.5);
  -webkit-backdrop-filter: blur(14px) saturate(1.5);
  border-color: rgba(250,250,250,0.20);
  box-shadow: 0 2px 16px rgba(0,0,0,0.22);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 16px;
  border-radius: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: rgba(18,18,18,0.6);
  transition: background 0.3s cubic-bezier(.22,1,.36,1), color 0.25s;
  white-space: nowrap;
  cursor: pointer;
  border: none;
  background: transparent;
}
.nav-link:hover {
  background: rgba(18,18,18,0.06);
  color: var(--ink);
}
/* Light-on-dark when over hero */
.top-nav.is-hero .nav-link {
  color: rgba(255,255,255,0.95);
}
.top-nav.is-hero .nav-link:hover {
  background: rgba(255,255,255,0.20);
  color: #fff;
}
.nav-link i { font-size: 14px; opacity: 0.7; }
.nav-chevron { font-size: 10px !important; margin-left: 2px; opacity: 0.5 !important; transition: transform .3s; }

/* Sign In dropdown */
.nav-dropdown {
  position: relative;
}
.nav-dropdown-trigger {
  font-family: 'Inter', sans-serif;
}
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px) saturate(1.8);
  -webkit-backdrop-filter: blur(18px) saturate(1.8);
  border: 1px solid rgba(18,18,18,0.08);
  border-radius: 14px;
  padding: 6px;
  box-shadow: var(--shadow-float);
  min-width: 180px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .25s, visibility .25s, transform .25s cubic-bezier(.22,1,.36,1);
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.is-open .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown:hover .nav-chevron,
.nav-dropdown.is-open .nav-chevron {
  transform: rotate(180deg);
}
.nav-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  color: rgba(18,18,18,0.7);
  transition: background .25s, color .25s;
}
.nav-dropdown-item:hover {
  background: rgba(18,18,18,0.06);
  color: var(--ink);
}
.nav-dropdown-item i {
  font-size: 14px;
  opacity: 0.6;
  width: 18px;
  text-align: center;
}

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  border-radius: 10px;
  transition: background 0.25s;
}
.nav-burger:hover { background: rgba(18,18,18,0.06); }
.top-nav.is-hero .nav-burger:hover { background: rgba(250,250,250,0.12); }
.nav-burger span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1), opacity 0.25s, background 0.3s;
  transform-origin: center;
}
.top-nav.is-hero .nav-burger span { background: var(--paper); }
.top-nav.is-open .nav-burger span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}
.top-nav.is-open .nav-burger span:nth-child(2) {
  opacity: 0;
}
.top-nav.is-open .nav-burger span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* =========================
   Side navigation — minimal tick marks flush-right
   ========================= */
.sidenav {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.sidenav a {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  text-decoration: none;
  color: currentColor;
  cursor: pointer;
  position: relative;
}
.sn-tick {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  opacity: 0.25;
  transition: width .45s cubic-bezier(.22,1,.36,1), opacity .35s, background .35s, box-shadow .35s;
  flex-shrink: 0;
}
.sidenav a:hover .sn-tick {
  width: 30px;
  opacity: 0.65;
}
.sidenav a.is-active .sn-tick {
  width: 40px;
  opacity: 1;
  background: var(--cyan-500);
  box-shadow: 0 0 12px rgba(0,180,216,0.55), 0 0 4px rgba(0,180,216,0.3);
}
.sn-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0;
  transform: translateX(8px);
  transition: opacity .35s cubic-bezier(.22,1,.36,1), transform .35s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
  pointer-events: none;
}
.sidenav a:hover .sn-label {
  opacity: 0.8;
  transform: translateX(0);
}
.sidenav a.is-active .sn-label {
  opacity: 1;
  transform: translateX(0);
}

/* =========================
   Section base
   ========================= */
section {
  position: relative;
  min-height: 100vh;
  padding: 120px 7vw 100px;
  padding-right: max(7vw, var(--nav-clear));
  overflow: hidden;
}

/* =========================
   HERO  (designed-cells inspired)
   ========================= */
.hero {
  color: var(--paper);
  background:
    radial-gradient(60% 70% at 18% 28%, rgba(0,180,216,0.20), transparent 60%),
    radial-gradient(50% 50% at 95% 75%, rgba(144,224,239,0.10), transparent 60%),
    radial-gradient(80% 80% at 80% 0%, rgba(0,119,182,0.30), transparent 50%),
    linear-gradient(135deg, #03045E 0%, #023E8A 60%, #0077B6 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0; padding-bottom: 0;
}

/* Soft animated noise / grain overlay */
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.04) 0, transparent 40%),
    radial-gradient(circle at 80% 90%, rgba(255,255,255,0.03) 0, transparent 40%);
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 140px 0 120px;
}

.hero-eyebrow-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.hero-eyebrow-row .eyebrow { opacity: 0.85; }
.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(250,250,250,0.25);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.pill .blink {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan-500); animation: blink 1.6s ease-in-out infinite;
}
@keyframes blink { 0%,100% {opacity:1} 50% {opacity:.2} }

/* Designed-cells style giant headline + rotating phrase */
.hero h1.display {
  font-size: clamp(38px, 6.5vw, 110px);
  letter-spacing: -0.035em;
  line-height: 0.98;
  font-weight: 700;
  margin: 0;
  max-width: 1100px;
  overflow-wrap: normal;
}
.hero h1.display em {
  font-style: normal;
  font-weight: 300;
  font-family: 'Inter', sans-serif;
  background: linear-gradient(120deg, var(--cyan-300) 0%, var(--cyan-500) 60%, var(--paper) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  letter-spacing: -0.04em;
}
.hero h1.display .pad-l { padding-left: 0.4em; }

.hero .rotator {
  display: inline-block;
  position: relative;
  vertical-align: baseline;
  overflow: visible;
  clip-path: inset(-5% 0 -10% 0);
}
.hero .rotator .rotator-ghost {
  visibility: hidden;
  display: inline-block;
  font-weight: 700;
  line-height: inherit;
  white-space: nowrap;
}
.hero .rotator span:not(.rotator-ghost) {
  position: absolute; left: 0; top: 0;
  line-height: inherit;
  font-weight: 700;
  background: linear-gradient(120deg, var(--cyan-300) 0%, var(--cyan-500) 60%, var(--paper) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  opacity: 0;
  transform: translateY(120%);
  white-space: nowrap;
  will-change: transform, opacity;
}

/* lower row of meta */
.hero-bottom {
  margin-top: 56px;
  max-width: 640px;
}
.hero-bottom .lede {
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.55;
  opacity: 0.85;
  max-width: 480px;
  margin: 0 0 24px;
}
.cta-row { display: flex; gap: 12px; flex-wrap: wrap; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid currentColor;
  cursor: pointer;
  transition: transform .25s, background .25s, color .25s;
  background: transparent;
  color: inherit;
}
.btn-primary {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  color: var(--navy-900);
  box-shadow: 0 0 24px rgba(0,180,216,0.25), 0 4px 14px rgba(0,180,216,0.15);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary:hover { background: var(--paper); border-color: var(--paper); }
.btn .arr { transition: transform .25s; }
.btn:hover .arr { transform: translateX(4px); }

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(250,250,250,0.18);
  padding-top: 28px;
  margin-top: 48px;
}
.hero-stats .s .num {
  font-weight: 600;
  font-size: clamp(32px, 3.5vw, 52px);
  letter-spacing: -0.025em;
  line-height: 1;
}
.hero-stats .s .lbl {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* DNA video — right of hero, full-height prominent */
.hero-video-wrap {
  position: absolute;
  top: 0; right: -6vw;
  width: 78vw;
  max-width: 1200px;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  will-change: transform;
}

/* Concentric rings — centered on the video */
.hero-video-wrap .ring {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -42%);
  border-radius: 50%;
  aspect-ratio: 1;
}
.hero-video-wrap .ring.r1 {
  width: 88%;
  border: 1px solid rgba(250,250,250,0.10);
}
.hero-video-wrap .ring.r2 {
  width: 70%;
  border: 1px dashed rgba(0,180,216,0.28);
  animation: spinRing 80s linear infinite;
}
.hero-video-wrap .ring.r3 {
  width: 105%;
  border: 1px solid rgba(250,250,250,0.05);
}
.hero-video-wrap .ring.r4 {
  width: 52%;
  border: 1px solid rgba(0,180,216,0.18);
  box-shadow: 0 0 40px 0 rgba(0,180,216,0.06);
}
.hero-video-wrap .ring.r5 {
  width: 124%;
  border: 1px solid rgba(250,250,250,0.03);
  animation: spinRingReverse 120s linear infinite;
}
@keyframes spinRing {
  from { transform: translate(-50%, -42%) rotate(0deg); }
  to { transform: translate(-50%, -42%) rotate(360deg); }
}
@keyframes spinRingReverse {
  from { transform: translate(-50%, -42%) rotate(0deg); }
  to { transform: translate(-50%, -42%) rotate(-360deg); }
}
.hero-video {
  position: absolute;
  top: 50%; left: 55%;
  transform: translate(-50%, -42%) rotate(30deg) scale(1.3);
  width: 110%;
  max-width: 1100px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  filter: drop-shadow(0 24px 80px rgba(0,180,216,0.45));
}

/* meta strip at bottom of hero */
.hero-meta-strip {
  position: relative;
  z-index: 2;
  max-width: 1500px;
  margin: 0 auto;
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
  color: var(--paper);
  border-top: 1px solid rgba(250,250,250,0.12);
}

/* =========================
   ABOUT
   ========================= */
.about {
  min-height: auto;
  padding-top: 80px;
  padding-bottom: 70px;
  color: var(--ink);
  background:
    radial-gradient(42% 42% at 28% 50%, rgba(0,180,216,0.09), transparent 70%),
    radial-gradient(60% 50% at 100% 0%, rgba(0,180,216,0.10), transparent 60%),
    radial-gradient(40% 40% at 0% 100%, rgba(2,62,138,0.06), transparent 60%),
    linear-gradient(180deg, #FAFAFA 0%, #f0f3f8 100%);
}
@media (max-width: 820px) {
  .about { padding-top: 60px; padding-bottom: 50px; }
}
.about-grid {
  position: relative; z-index: 1;
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}
.globe-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 640px;
  margin: 0 auto;
}
.globe-wrap canvas { display: block; width: 100% !important; height: 100% !important; cursor: grab; position: relative; z-index: 1; }
.globe-wrap::before {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 115%; height: 115%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0,180,216,0.13) 0%, rgba(2,62,138,0.06) 35%, transparent 62%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.globe-wrap.is-dragging canvas { cursor: grabbing; }
.globe-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(18,18,18,0.4);
}
.about h2, .products h2, .contact h2, .partners h2 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 5vw, 80px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin: 20px 0 64px;
  text-wrap: balance;
  hyphens: none;
}
.about h2 em, .products h2 em, .contact h2 em {
  font-style: normal;
  font-weight: 300;
  letter-spacing: -0.035em;
}
.about p.lede {
  font-size: 17px;
  line-height: 1.6;
  color: rgba(18,18,18,0.7);
  max-width: 540px;
  margin: 0 0 44px;
}

/* Flag grid (About section) */
.flag-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 40px;
  margin-top: 28px;
}
.flag-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.flag-img-lg {
  width: 56px;
  height: 38px;
  object-fit: cover;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
  border: 1px solid rgba(0,0,0,0.08);
}
.flag-name {
  font-size: 13px;
  font-weight: 500;
  color: rgba(18,18,18,0.7);
  letter-spacing: 0.02em;
  text-align: center;
}
.about-stats {
  margin-top: 32px;
}

/* Hero pill repositioned */
.hero-pill {
  margin-top: 32px;
}
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
}
.stat-row .num {
  font-weight: 600;
  font-size: 36px;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
.stat-row .lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.55);
  margin-top: 6px;
}

/* =========================
   About — Tabbed panels
   ========================= */
.about-section-header {
  max-width: 1500px;
  margin: 0 auto 28px;
}

.about-tab-container {
  max-width: 1500px;
  margin: 0 auto;
  position: relative;
  transition: height 0.55s cubic-bezier(.22,1,.36,1);
}

.about-panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(60px);
  transition: opacity 0.5s cubic-bezier(.22,1,.36,1), transform 0.55s cubic-bezier(.22,1,.36,1), visibility 0.55s;
  pointer-events: none;
}
.about-panel.is-leaving {
  opacity: 0;
  visibility: visible;
  transform: translateX(-60px);
  pointer-events: none;
}
.about-panel.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
  z-index: 1;
}

/* Tab bar */
.about-tabs-row {
  display: flex;
  justify-content: center;
  gap: 6px;
  padding-top: 48px;
  position: relative;
  z-index: 2;
}
.about-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(18,18,18,0.5);
  background: rgba(18,18,18,0.04);
  border: 1px solid rgba(18,18,18,0.1);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  white-space: nowrap;
}
.about-tab:hover {
  color: rgba(18,18,18,0.8);
  background: rgba(18,18,18,0.08);
  border-color: rgba(18,18,18,0.16);
}
.about-tab.is-active {
  color: var(--navy-900);
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  box-shadow: 0 0 20px rgba(0,180,216,0.2);
}
.about-tab i { font-size: 14px; opacity: 0.7; }
.about-tab.is-active i { opacity: 1; }

/* =========================
   Mission & Vision panel
   ========================= */
.mv-heading {
  text-align: center;
  margin-bottom: 56px !important;
}

.mission-vision-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.mv-card {
  text-align: center;
  padding: 36px 28px;
  border-radius: 20px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,180,216,0.1);
  backdrop-filter: blur(8px);
}

.mv-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(0,180,216,0.14), rgba(2,62,138,0.07));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 20px;
  color: var(--cyan-500);
}

.mv-label {
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin: 0 0 14px;
}

.mv-statement {
  font-family: 'Inter', sans-serif;
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--navy-900);
  margin: 0;
  text-wrap: balance;
}

.mv-video-wrap {
  width: clamp(220px, 26vw, 360px);
  flex-shrink: 0;
}
.mv-video-wrap video {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 12px 40px rgba(0,180,216,0.22));
}

/* =========================
   Our Team panel
   ========================= */
.team-heading {
  text-align: center;
  margin-bottom: 56px !important;
}

.team-section {
  position: relative;
  padding: 20px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.team-member { text-align: center; }

.team-img-wrap {
  width: 170px;
  height: 170px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  border: 3px solid rgba(0,180,216,0.25);
  box-shadow: 0 8px 28px rgba(0,180,216,0.12), 0 2px 8px rgba(3,4,94,0.06);
  transition: transform 0.4s cubic-bezier(.22,1,.36,1), box-shadow 0.4s;
}
.team-member:hover .team-img-wrap {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 14px 40px rgba(0,180,216,0.2), 0 4px 12px rgba(3,4,94,0.08);
}
.team-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.team-member h4 {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 4px;
  color: var(--navy-900);
}
.team-member p {
  font-size: 12px;
  font-weight: 500;
  color: rgba(18,18,18,0.5);
  margin: 0;
  letter-spacing: 0.03em;
}

/* =========================
   Floating molecules (team bg)
   ========================= */
.team-molecules {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
.team-molecules .mol {
  position: absolute;
  opacity: 0.7;
}

.mol-1 { top: 2%;  left: 2%;  animation: molFloat1 15s ease-in-out infinite; }
.mol-2 { top: 12%; right: 4%; animation: molFloat2 18s ease-in-out infinite; }
.mol-3 { bottom: 8%;  left: 6%;  animation: molFloat3 13s ease-in-out infinite; }
.mol-4 { bottom: 15%; right: 8%; animation: molFloat4 20s ease-in-out infinite; }
.mol-5 { top: 45%; left: 12%;  animation: molFloat2 14s ease-in-out infinite 2s; }
.mol-6 { top: 28%; right: 14%; animation: molFloat1 16s ease-in-out infinite 3s; }
.mol-7 { bottom: 30%; left: 22%;  animation: molFloat3 22s ease-in-out infinite 1s; }
.mol-8 { top: 6%;  left: 42%; animation: molFloat4 17s ease-in-out infinite 4s; }

@keyframes molFloat1 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33%      { transform: translate(25px, -20px) rotate(12deg); }
  66%      { transform: translate(-15px, 15px) rotate(-8deg); }
}
@keyframes molFloat2 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25%      { transform: translate(-20px, -25px) rotate(-15deg); }
  75%      { transform: translate(18px, 12px) rotate(10deg); }
}
@keyframes molFloat3 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50%      { transform: translate(30px, -10px) rotate(20deg); }
}
@keyframes molFloat4 {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  40%      { transform: translate(-22px, 18px) rotate(-12deg); }
  80%      { transform: translate(12px, -22px) rotate(8deg); }
}

/* About tabs responsive */
@media (max-width: 820px) {
  .mission-vision-layout {
    grid-template-columns: 1fr;
    gap: 28px;
    max-width: 480px;
  }
  .mv-video-wrap {
    width: 220px;
    margin: 0 auto;
    order: -1;
  }
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 500px;
  }
  .team-img-wrap { width: 130px; height: 130px; }
  .about-tabs-row { flex-wrap: wrap; gap: 8px; padding-top: 32px; }
  .about-tab { padding: 10px 18px; font-size: 12px; }
}
@media (max-width: 480px) {
  .about-tab i { display: none; }
  .about-tab { gap: 0; }
}

/* =========================
   PRODUCTS
   ========================= */
.products {
  color: var(--paper);
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(0,180,216,0.18), transparent 60%),
    radial-gradient(40% 40% at 0% 0%, rgba(0,119,182,0.22), transparent 60%),
    linear-gradient(180deg, #03045E 0%, #022b5e 50%, #03045E 100%);
}
.products-head {
  max-width: 1500px;
  margin: 0 auto 72px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
}
.products-head h2 { max-width: 760px; margin: 16px 0 0; }
.products-head .nav { display: flex; gap: 12px; }
.car-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(250,250,250,0.25);
  background: transparent;
  color: var(--paper);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s, border-color .25s;
  font-size: 16px;
}
.car-btn:hover { background: var(--cyan-500); color: var(--navy-900); border-color: var(--cyan-500); }

/* Product name tabs */
.product-tabs {
  display: flex;
  justify-content: center;
  gap: 4px;
  max-width: 1500px;
  margin: 24px auto 0;
}
.product-tab {
  padding: 10px 22px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: rgba(250,250,250,0.5);
  background: rgba(250,250,250,0.06);
  border: 1px solid rgba(250,250,250,0.1);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(.22,1,.36,1);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}
.product-tab:hover {
  color: rgba(250,250,250,0.85);
  background: rgba(250,250,250,0.1);
  border-color: rgba(250,250,250,0.2);
}
.product-tab.is-active {
  color: var(--navy-900);
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  box-shadow: 0 0 20px rgba(0,180,216,0.3);
}
.product-tab i { font-size: 16px; }

.carousel {
  max-width: 1500px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid rgba(250,250,250,0.1);
  box-shadow: var(--shadow-float);
}
.product-stage {
  display: flex;
  min-height: 580px;
  transition: transform 0.7s cubic-bezier(.22,1,.36,1);
  will-change: transform;
}
.slide {
  position: relative;
  min-width: 100%;
  flex-shrink: 0;
  overflow: hidden;
}
.slide .img {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.08);
}
video.img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.slide.is-active .img { animation: slowZoom 12s linear forwards; }
@keyframes slowZoom { from { transform: scale(1.08); } to { transform: scale(1.18); } }
.slide .grad {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(3,4,94,0.10) 0%, rgba(3,4,94,0.55) 55%, rgba(3,4,94,0.92) 100%),
    linear-gradient(90deg, rgba(3,4,94,0.55) 0%, transparent 50%);
}
.slide .copy {
  position: absolute; bottom: 36px; left: 36px; right: 36px;
}
.slide .num {
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--paper);
  opacity: 0.35;
  margin-bottom: 12px;
  display: block;
}
.slide .tag {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 8px;
}
.slide h3 {
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  max-width: 600px;
}
.slide .desc {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.86;
  max-width: 520px;
  margin: 0 0 22px;
}
.slide .specs {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.7;
}
.slide .specs span strong {
  display: block;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
  margin-top: 4px;
}

/* Thumb column */
.thumbs {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.thumb {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  cursor: pointer;
  border: 1px solid rgba(250,250,250,0.1);
  background: rgba(250,250,250,0.04);
  transition: border-color .25s, transform .25s;
  min-height: 180px;
}
.thumb:hover { transform: translateX(-4px); border-color: rgba(0,180,216,0.45); }
.thumb .timg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.55) saturate(1.1);
  transition: filter .35s;
}
.thumb.is-active .timg { filter: brightness(0.75) saturate(1.15); }
.thumb .tcopy {
  position: relative;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  z-index: 1;
}
.thumb .tnum {
  font-weight: 600;
  font-size: 22px;
  opacity: 0.85;
  letter-spacing: -0.02em;
}
.thumb .tname {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.thumb.is-active { border-color: var(--cyan-500); }
.thumb.is-active .tname { color: var(--paper); }
.thumb .progress {
  position: absolute; left: 0; bottom: 0; height: 2px;
  background: var(--cyan-500); width: 0;
}
.thumb.is-active .progress { animation: prog 7s linear forwards; }
@keyframes prog { from { width: 0; } to { width: 100%; } }

/* Mobile carousel dot indicators */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
  padding-bottom: 48px;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
}
.carousel-dots .cdot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(250,250,250,0.2);
  border: 1px solid rgba(250,250,250,0.25);
  cursor: pointer;
  transition: background .3s, transform .3s, border-color .3s;
}
.carousel-dots .cdot.is-active {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  transform: scale(1.3);
}

/* Explore Full Catalogue button */
.catalogue-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  border: 1px solid rgba(250,250,250,0.3);
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, border-color .3s, color .3s;
}
.catalogue-btn:hover {
  background: var(--cyan-500);
  border-color: var(--cyan-500);
  color: var(--navy-900);
}
.catalogue-btn i {
  font-size: 13px;
  transition: transform .3s;
}
.catalogue-btn:hover i {
  transform: translateX(4px);
}

/* Scroll-driven animation utility */
.anim-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
}
.anim-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.anim-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity .8s cubic-bezier(.22,1,.36,1), transform .8s cubic-bezier(.22,1,.36,1);
}
.anim-scale.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* =========================
   CONTACT
   ========================= */
.contact {
  color: var(--ink);
  background:
    radial-gradient(40% 40% at 100% 100%, rgba(0,180,216,0.10), transparent 60%),
    radial-gradient(50% 40% at 0% 0%, rgba(2,62,138,0.06), transparent 60%),
    linear-gradient(180deg, #f0f3f8 0%, #e6ecf5 100%);
}
.contact-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: stretch;
}
.contact-info h2 { margin-top: 18px; }
.contact-info p.lede {
  font-size: 17px; line-height: 1.6; color: rgba(18,18,18,0.7);
  max-width: 480px;
  margin: 0 0 44px;
}
.contact-block {
  border-top: 1px solid var(--border);
  padding: 22px 0 18px;
}
.contact-block .ckey {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(18,18,18,0.5);
  margin-bottom: 8px;
}
.contact-block .cval {
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
}
.contact-block a {
  color: var(--navy-700); text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 1px;
}
.contact-block a:hover { color: var(--cyan-500); }

.map-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  background: var(--paper);
  min-height: 580px;
}
.map-card iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
  filter: grayscale(0.4) contrast(0.95);
}
.map-card .map-pin {
  position: absolute;
  top: 24px; left: 24px;
  background: var(--paper);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 12px;
  align-items: center;
  max-width: 280px;
}
.map-card .map-pin .pdot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--cyan-500);
  box-shadow: 0 0 0 4px rgba(0,180,216,0.25);
  flex-shrink: 0;
}
.map-card .map-pin .pcopy { font-size: 12px; line-height: 1.4; color: var(--ink); }
.map-card .map-pin .pcopy strong {
  display: block; font-weight: 600; margin-bottom: 2px;
}

/* =========================
   COLLABORATORS & PARTNERS
   ========================= */
.partners {
  color: var(--paper);
  background:
    radial-gradient(50% 50% at 50% 50%, rgba(0,180,216,0.08), transparent 70%),
    linear-gradient(180deg, #03045E 0%, #021b4a 100%);
  min-height: auto;
  padding-top: 100px;
  padding-bottom: 100px;
  overflow: hidden;
  position: relative;
  z-index: 2;
}
.partners-head {
  max-width: 1500px;
  margin: 0 auto 56px;
  text-align: center;
}
.partners-head .eyebrow { justify-content: center; }
.partners-head h2 {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(22px, 3.2vw, 42px);
}

.marquee-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.marquee-fade {
  position: absolute;
  top: 0; bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}
.marquee-fade-l {
  left: 0;
  background: linear-gradient(90deg, #03045E 0%, transparent 100%);
}
.marquee-fade-r {
  right: 0;
  background: linear-gradient(-90deg, #021b4a 0%, transparent 100%);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 30s linear infinite;
  will-change: transform;
}
.marquee-set {
  display: flex;
  align-items: center;
  gap: 80px;
  padding: 0 40px;
  flex-shrink: 0;
}
.marquee-set img {
  height: 48px;
  min-width: 100px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.55;
  transition: opacity 0.35s;
  content-visibility: auto;
}
.marquee-set img:hover {
  opacity: 0.9;
}
@keyframes marqueeScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 820px) {
  .marquee-set { gap: 48px; }
  .marquee-set img { height: 36px; }
  .marquee-fade { width: 60px; }
}

/* =========================
   FOOTER
   ========================= */
.footer {
  color: var(--paper);
  background:
    radial-gradient(60% 50% at 100% 100%, rgba(0,180,216,0.10), transparent 60%),
    radial-gradient(40% 60% at 0% 0%, rgba(0,119,182,0.18), transparent 60%),
    linear-gradient(180deg, #021b4a 0%, #010234 100%);
  padding: 100px 7vw 40px;
  position: relative;
  z-index: 1;
  overflow: visible;
  margin-top: -2px;
}
.footer-grid {
  max-width: 1500px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 64px;
  border-bottom: 1px solid var(--border-dark);
}
.footer .flogo-wrap {
  display: inline-block;
  width: 220px;
  margin-bottom: 24px;
}
.footer .flogo-wrap img { width: 100%; height: auto; display: block; }
.footer .ftag {
  font-size: 15px;
  line-height: 1.55;
  opacity: 0.7;
  max-width: 340px;
}
.footer h4 {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  opacity: 0.55;
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  color: var(--paper);
  text-decoration: none;
  font-size: 15px;
  opacity: 0.85;
  transition: opacity .2s, color .2s;
}
.footer ul a:hover { color: var(--cyan-500); opacity: 1; }
.footer-bottom {
  max-width: 1500px;
  margin: 32px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  letter-spacing: 0.06em;
  opacity: 0.55;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-massive {
  margin: 80px 0 0;
  padding: 0 2vw;
  font-weight: 700;
  font-size: clamp(36px, 10.5vw, 200px);
  line-height: 0.9;
  letter-spacing: -0.05em;
  background: linear-gradient(180deg, rgba(0,180,216,0.32) 0%, rgba(2,62,138,0.0) 100%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  text-align: center;
}

/* Ensure seamless dark-on-dark join between partners → footer */
.partners + .footer {
  border-top: none;
}

/* Icon spacing in labels */
.hero-stats .s .lbl i {
  margin-right: 5px;
  font-size: 16px;
  opacity: 0.75;
}
.contact-block .ckey i {
  margin-right: 6px;
  font-size: 16px;
  opacity: 0.75;
}
.hero-meta-strip i {
  margin-right: 5px;
  font-size: 16px;
  opacity: 0.75;
}
.eyebrow i {
  margin-right: 5px;
  font-size: 16px;
  opacity: 0.75;
}
.footer ul a i { margin-right: 8px; font-size: 16px; opacity: 0.75; }

/* =========================
   Scroll-driven vector graphics
   ========================= */
.scroll-vectors {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

/* =========================
   Responsive
   ========================= */
@media (max-width: 820px) {
  section { padding: 100px 6vw 80px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-bottom { max-width: none; }
  /* Top nav mobile */
  .top-nav {
    right: 16px;
    top: 16px;
    padding: 4px;
  }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .top-nav.is-open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(18px) saturate(1.8);
    -webkit-backdrop-filter: blur(18px) saturate(1.8);
    border: 1px solid rgba(18,18,18,0.08);
    border-radius: 16px;
    padding: 8px;
    box-shadow: var(--shadow-float);
    min-width: 200px;
  }
  .top-nav.is-open .nav-link { padding: 12px 16px; color: rgba(18,18,18,0.7); }
  .top-nav.is-open .nav-link:hover { color: var(--ink); background: rgba(18,18,18,0.06); }
  .top-nav.is-open .nav-dropdown-menu {
    position: static;
    box-shadow: none;
    border: none;
    padding: 0 0 0 24px;
    backdrop-filter: none;
    background: transparent;
  }
  /* Mobile: dark translucent gradient for readability — ABOVE the video */
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
      rgba(1,2,52,0.92) 0%,
      rgba(2,40,90,0.80) 35%,
      rgba(3,4,94,0.68) 60%,
      rgba(1,2,52,0.90) 100%);
    z-index: 2;
    pointer-events: none;
  }
  /* Mobile: DNA video stays BEHIND the darkening screen */
  .hero-video-wrap {
    position: absolute;
    top: 0; right: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    opacity: 0.35;
    z-index: 1;
  }
  .hero-inner { z-index: 3; padding: 80px 0 48px; }
  .hero-meta-strip { z-index: 3; padding: 12px 0 16px; }
  .hero { min-height: auto; }
  .hero-video { width: 120%; max-width: 600px; }
  .products-head { flex-direction: column; align-items: flex-start; }
  .product-stage { min-height: 420px; }
  .carousel-controls { gap: 16px; margin-top: 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidenav { gap: 16px; }
  .sn-label { display: none; }
  .sn-tick { width: 12px; }
  .sidenav a.is-active .sn-tick { width: 28px; }
  .logo-card { width: 156px; padding: 5px 7px; top: 16px; left: 16px; }
  .hero-eyebrow-row { margin-bottom: 36px; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
}

