/* XCEL Scientific — clinical design system
   Navy (iVascular-adjacent trust) + CELT clinic green/amber accents */
:root {
  --ink: #12202e;            /* CELT ink */
  --navy: #0c2744;           /* deep clinical navy */
  --teal: #0f8a5f;           /* CELT primary green */
  --teal-deep: #0b6b4a;
  --lumen: #12a874;          /* CELT bright green */
  --mint: #3ddc97;           /* CELT mint highlight */
  --lumen-soft: rgba(15, 138, 95, 0.14);
  --ice: #f6f8fa;            /* CELT light bg */
  --paper: #ffffff;
  --mist: #eef2f6;
  --slate: #5c6b7a;
  --saffron: #e8a54b;        /* CELT amber */
  --saffron-deep: #b26b00;
  --ivasc-blue: #1a6bb5;     /* iVascular-like accent for partner line */
  --line: rgba(18, 32, 46, 0.12);
  --shadow: 0 18px 50px rgba(18, 32, 46, 0.12);
  --radius: 18px;
  --max: 1180px;
  --font-display: "Sora", system-ui, sans-serif;
  --font-body: "Figtree", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 90% -10%, rgba(18, 168, 116, 0.16), transparent 55%),
    radial-gradient(900px 500px at -10% 20%, rgba(26, 107, 181, 0.10), transparent 50%),
    linear-gradient(180deg, #eef5f2 0%, var(--ice) 38%, #ffffff 100%);
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--navy);
}

:focus-visible {
  outline: 2px solid var(--lumen);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: white;
  padding: 0.75rem 1rem;
  z-index: 1000;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.wrap {
  width: min(var(--max), calc(100% - 2.5rem));
  margin-inline: auto;
}

/* —— Header —— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  /* Avoid backdrop-filter here — it traps position:fixed children (mobile menu). */
  background: rgba(244, 248, 251, 0.94);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(7, 21, 37, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  height: 46px;
  width: auto;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-desktop a,
.mobile-nav-links a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.nav-desktop a:hover,
.nav-desktop a[aria-current="page"],
.mobile-nav-links a:hover,
.mobile-nav-links a[aria-current="page"] {
  background: var(--lumen-soft);
  color: var(--teal);
}

.nav-cta {
  margin-left: 0.35rem;
  background: var(--navy) !important;
  color: white !important;
}

.nav-cta:hover {
  background: var(--teal) !important;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: white;
  border-radius: 12px;
  width: 44px;
  height: 44px;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
  transition: transform 0.22s ease, opacity 0.2s ease;
}

/* Mobile drawer — outside header, hidden until opened */
.mobile-nav[hidden] {
  display: none !important;
}

.mobile-nav {
  display: none;
}

/* —— Hero —— */
.hero {
  position: relative;
  padding: clamp(3.5rem, 8vw, 6.5rem) 0 4rem;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  margin: 0 0 1rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: linear-gradient(90deg, var(--teal), var(--lumen));
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  line-height: 1.15;
  letter-spacing: -0.03em;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.35rem);
  font-weight: 700;
  color: var(--ink);
  max-width: 12ch;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, var(--teal), var(--lumen) 45%, var(--ivasc-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lead {
  margin: 1.35rem 0 0;
  max-width: 38rem;
  color: var(--slate);
  font-size: 1.12rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 999px;
  padding: 0.9rem 1.35rem;
  font-weight: 700;
  font-size: 0.98rem;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
  cursor: pointer;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--navy), #134066);
  color: white;
  box-shadow: 0 12px 28px rgba(12, 39, 68, 0.22);
}

.btn-primary:hover {
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.7);
  border-color: var(--line);
  color: var(--navy);
}

.btn-ghost:hover {
  color: var(--navy);
  background: white;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2.2rem;
}

.pill {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--navy);
}

.pill strong {
  color: var(--saffron);
  font-weight: 700;
}

/* Lumen stage — signature visual */
.lumen-stage {
  position: relative;
  aspect-ratio: 1 / 1.05;
  border-radius: 32px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.9), rgba(228, 238, 244, 0.55)),
    radial-gradient(circle at 30% 20%, rgba(62, 196, 200, 0.25), transparent 40%);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
  overflow: hidden;
  isolation: isolate;
}

.lumen-stage svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.lumen-path {
  fill: none;
  stroke: url(#heroFlow);
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  animation: drawPath 2.8s var(--ease) forwards;
}

.lumen-path.delayed {
  animation-delay: 0.35s;
  opacity: 0.7;
}

@keyframes drawPath {
  to {
    stroke-dashoffset: 0;
  }
}

.lumen-pulse {
  fill: var(--lumen);
  transform-origin: center;
  animation: pulse 2.4s ease-in-out infinite;
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.35;
    r: 8;
  }
  50% {
    opacity: 1;
    r: 11;
  }
}

.stage-card {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8%;
  background: rgba(7, 21, 37, 0.88);
  color: white;
  border-radius: 18px;
  padding: 1.1rem 1.25rem;
  backdrop-filter: blur(10px);
  transform: translateY(12px);
  opacity: 0;
  animation: riseIn 0.9s var(--ease) 0.9s forwards;
}

.stage-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.stage-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

@keyframes riseIn {
  to {
    opacity: 1;
    transform: none;
  }
}

/* —— Sections —— */
section {
  padding: clamp(3.5rem, 7vw, 5.5rem) 0;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.4rem;
}

.section-head h2 {
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  color: var(--ink);
}

.section-head p {
  color: var(--slate);
  margin: 0.9rem 0 0;
}

.panel {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 10px 40px rgba(7, 21, 37, 0.05);
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.activity-card {
  padding: 1.35rem;
  border-radius: var(--radius);
  background: white;
  border: 1px solid var(--line);
  min-height: 100%;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.activity-card:hover {
  transform: translateY(-4px);
  border-color: rgba(15, 122, 138, 0.35);
}

.activity-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--lumen-soft);
  color: var(--teal);
  margin-bottom: 1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.85rem;
}

.activity-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.45rem;
}

.activity-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.portfolio-bands {
  display: grid;
  gap: 1.25rem;
}

.portfolio-cta {
  margin-top: 2rem;
  padding: clamp(1.35rem, 3vw, 1.85rem) clamp(1.35rem, 3vw, 2rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  background: linear-gradient(160deg, var(--navy), #123557);
  color: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.portfolio-cta h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
}

.portfolio-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 36rem;
  font-size: 0.98rem;
}

.portfolio-cta .btn-ghost {
  color: white;
  border-color: rgba(255, 255, 255, 0.35);
}

.portfolio-cta .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.catalog-block {
  scroll-margin-top: 5.5rem;
}


.band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  overflow: hidden;
}

.band-copy {
  padding: clamp(1.5rem, 3vw, 2.4rem);
  background: linear-gradient(160deg, var(--navy), #123557);
  color: white;
}

.band-copy .eyebrow {
  color: var(--lumen);
}

.band-copy .eyebrow::before {
  background: var(--lumen);
}

.band-copy h2 {
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  margin-bottom: 0.75rem;
}

.band-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.band-products {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  background: white;
}

.product-chip {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.05rem;
  background: var(--ice);
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.product-chip:hover {
  background: white;
  border-color: rgba(15, 122, 138, 0.4);
  transform: translateY(-2px);
  color: inherit;
}

.product-chip .kind {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.3rem;
}

.product-chip strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.make-india {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.5rem;
  align-items: stretch;
}

.make-india .copy,
.make-india .stats {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.make-india .copy {
  background: white;
}

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  height: 100%;
  background: linear-gradient(145deg, var(--teal), var(--navy));
  color: white;
}

.stat {
  padding: 0.25rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  letter-spacing: -0.03em;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
}

/* Product pages */
.page-hero {
  padding: 3.5rem 0 1.5rem;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  max-width: 16ch;
}

.catalog {
  display: grid;
  gap: 2.5rem;
}

.catalog-block .grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.product-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 220px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}

.product-card .kind {
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0.55rem 0;
  font-size: 1.3rem;
}

.product-card p {
  margin: 0;
  color: var(--slate);
  flex: 1;
}

.product-card .more {
  margin-top: 1.1rem;
  font-weight: 700;
  color: var(--navy);
}

.variants {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.85rem;
}

.variants span {
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--mist);
  color: var(--navy);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.5rem;
}

.detail-main,
.detail-side {
  padding: clamp(1.4rem, 3vw, 2.2rem);
}

.detail-side {
  background: linear-gradient(160deg, var(--navy), #123557);
  color: white;
}

.detail-side h2 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
}

.detail-side ul {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
}

.detail-side li + li {
  margin-top: 0.45rem;
}

/* Documents */
.doc-groups {
  display: grid;
  gap: 2rem;
}

.doc-group h2 {
  font-size: 1.45rem;
  margin-bottom: 0.35rem;
}

.doc-group > p {
  color: var(--slate);
  margin: 0 0 1rem;
}

.doc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.9rem;
}

.doc-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.9rem;
  align-items: center;
  padding: 1rem 1.1rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease);
}

.doc-card:hover {
  transform: translateY(-3px);
  border-color: rgba(15, 122, 138, 0.4);
  color: inherit;
}

.doc-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: white;
}

.doc-icon.pdf { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.doc-icon.doc { background: linear-gradient(135deg, #1f4e79, #2e75b6); }
.doc-icon.xls { background: linear-gradient(135deg, #1e7a46, #2ea86a); }
.doc-icon.ppt { background: linear-gradient(135deg, #c45c14, #e67e22); }
.doc-icon.img { background: linear-gradient(135deg, #0f7a8a, #3ec4c8); }
.doc-icon.zip { background: linear-gradient(135deg, #5c6f82, #8496a8); }
.doc-icon.file { background: linear-gradient(135deg, #0c2744, #1a446e); }

.doc-meta strong {
  display: block;
  font-size: 0.98rem;
}

.doc-meta span {
  color: var(--slate);
  font-size: 0.85rem;
}

.doc-open {
  font-weight: 700;
  color: var(--teal);
  font-size: 0.88rem;
}

.empty-docs {
  padding: 1.2rem 1.3rem;
  border-radius: 16px;
  background: var(--ice);
  border: 1px dashed rgba(15, 122, 138, 0.35);
  color: var(--slate);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  padding: clamp(1.5rem, 3vw, 2.3rem);
}

.contact-card h2 {
  font-size: 1.4rem;
  margin-bottom: 0.7rem;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
}

.contact-list li {
  padding: 0.85rem 0;
  border-top: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}

.form {
  display: grid;
  gap: 0.9rem;
}

.form label {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form input,
.form select,
.form textarea {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.8rem 0.95rem;
  background: var(--ice);
  color: var(--ink);
}

.form textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.88rem;
  color: var(--slate);
  margin: 0;
}

/* About */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
}

.timeline {
  display: grid;
  gap: 1rem;
}

.timeline-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.timeline-item b {
  font-family: var(--font-display);
  color: var(--teal);
}

/* Footer */
.site-footer {
  margin-top: 2rem;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--lumen);
}

.site-footer h3 {
  color: white;
  font-size: 1rem;
  margin-bottom: 0.85rem;
}

.site-footer ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer li + li {
  margin-top: 0.45rem;
}

.footer-brand {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
}

.footer-brand img {
  width: 48px;
  height: 48px;
}

.footer-brand p {
  margin: 0.55rem 0 0;
  max-width: 28ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.2rem;
  font-size: 0.9rem;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .lumen-path,
  .lumen-pulse,
  .stage-card,
  .reveal {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .band,
  .make-india,
  .detail-layout,
  .contact-grid,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .activity-grid,
  .catalog-block .grid,
  .doc-grid,
  .band-products {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  /* Full mobile nav + tab bar rules live in the app-shell block below */
  .hero h1 {
    max-width: none;
  }

  .timeline-item {
    grid-template-columns: 1fr;
  }
}

/* —— Product detail —— */
.brand-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.35rem 0.75rem;
  margin-bottom: 0.85rem;
}

.brand-badge.ivascular {
  background: rgba(26, 107, 181, 0.12);
  color: var(--ivasc-blue);
}

.brand-badge.xcel {
  background: var(--lumen-soft);
  color: var(--teal-deep);
}

.product-tagline {
  margin: 0.55rem 0 0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 600;
}

.detail-stack {
  display: grid;
  gap: 1.25rem;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
  margin: 1.25rem 0;
}

.highlight-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1rem 1.05rem;
  text-align: center;
}

.highlight-card b {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.highlight-card span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.82rem;
  color: var(--slate);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.feature-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.15rem 1.2rem;
}

.feature-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}

.feature-card p {
  margin: 0;
  color: var(--slate);
  font-size: 0.95rem;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.specs-table th,
.specs-table td {
  text-align: left;
  padding: 0.85rem 1.1rem;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.specs-table tr:last-child th,
.specs-table tr:last-child td {
  border-bottom: none;
}

.specs-table th {
  width: 38%;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(15, 138, 95, 0.06);
  font-weight: 700;
}

.specs-table td {
  color: var(--ink);
}

.manual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.manual-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 1rem 1.05rem;
  border-radius: 16px;
  border: 1px solid var(--line);
  background: white;
  text-decoration: none;
  color: inherit;
}

a.manual-card:hover {
  border-color: rgba(15, 138, 95, 0.45);
  transform: translateY(-2px);
  color: inherit;
}

.manual-card.is-pending {
  opacity: 0.78;
  background: var(--ice);
}

.manual-kind {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: white;
  background: linear-gradient(135deg, var(--teal), var(--navy));
}

.manual-kind.IFU { background: linear-gradient(135deg, #c0392b, #e74c3c); }
.manual-kind.Brochure { background: linear-gradient(135deg, var(--ivasc-blue), #3d8fd4); }
.manual-kind.Clinical { background: linear-gradient(135deg, var(--teal), var(--lumen)); }
.manual-kind.Matrix { background: linear-gradient(135deg, var(--saffron-deep), var(--saffron)); }
.manual-kind.Sheet { background: linear-gradient(135deg, #1f4e79, #2e75b6); }

.manual-meta strong {
  display: block;
  font-size: 0.95rem;
}

.manual-meta span {
  color: var(--slate);
  font-size: 0.82rem;
}

.manual-status {
  font-size: 0.8rem;
  font-weight: 700;
  white-space: nowrap;
}

.manual-status.ready { color: var(--teal); }
.manual-status.pending { color: var(--saffron-deep); }

.disclaimer {
  margin-top: 1rem;
  font-size: 0.88rem;
  color: var(--slate);
  border-left: 3px solid var(--saffron);
  padding-left: 0.85rem;
}

.indications-list {
  margin: 0;
  padding-left: 1.15rem;
  color: var(--slate);
}

.indications-list li + li {
  margin-top: 0.45rem;
}

.section-label {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.9rem;
}

.jump-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.jump-row a {
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.45rem 0.85rem;
}

.jump-row a:hover {
  border-color: rgba(15, 138, 95, 0.45);
  color: var(--teal);
}

@media (max-width: 980px) {
  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-grid,
  .manual-grid {
    grid-template-columns: 1fr;
  }
}

/* �� Finder + matrix �� */
.product-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.5rem;
  align-items: center;
}
.product-visual {
  overflow: hidden;
  padding: 0;
  margin: 0;
}
.product-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}
.product-visual figcaption {
  padding: 0.7rem 1rem 1rem;
  font-size: 0.85rem;
  color: var(--slate);
}
.finder-panel { padding: 1.25rem 1.35rem 1rem; }
.finder-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(4, 1fr) auto;
  gap: 0.75rem;
  align-items: end;
}
.finder-field { display: grid; gap: 0.35rem; font-weight: 600; font-size: 0.88rem; }
.finder-field input,
.finder-field select {
  font: inherit;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.75rem 0.85rem;
  background: var(--ice);
}
.finder-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.example-chip {
  border: 1px solid var(--line);
  background: white;
  border-radius: 999px;
  padding: 0.3rem 0.7rem;
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  margin: 0.15rem 0.2rem 0 0;
}
.example-chip:hover { border-color: rgba(15,138,95,0.45); color: var(--teal); }
.finder-status { margin: 1.25rem 0 0.85rem; font-weight: 600; color: var(--navy); }
.finder-results { display: grid; gap: 1rem; }
.finder-card { padding: 1.2rem 1.3rem; }
.finder-card-head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  flex-wrap: wrap;
}
.finder-card h2 { font-size: 1.35rem; margin: 0.2rem 0; }
.finder-card h2 a { color: inherit; text-decoration: none; }
.finder-card h2 a:hover { color: var(--teal); }
.size-hit-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.35rem 0.75rem;
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  font-size: 0.92rem;
  color: var(--slate);
}
.size-hit-list em { color: var(--teal); font-style: normal; font-weight: 700; }
.matrix-block { padding: 1.2rem 1.3rem; margin-bottom: 1rem; }
.matrix-block h3 { margin: 0 0 0.55rem; font-size: 1.15rem; }
.matrix-note { color: var(--slate); margin: 0 0 0.9rem; }
.matrix-scroll { overflow-x: auto; }
.matrix-table {
  border-collapse: collapse;
  min-width: 100%;
  background: white;
  font-size: 0.85rem;
}
.matrix-table th,
.matrix-table td {
  border: 1px solid var(--line);
  padding: 0.45rem 0.55rem;
  text-align: center;
  white-space: nowrap;
}
.matrix-table thead th,
.matrix-table tbody th {
  background: rgba(15, 138, 95, 0.08);
  color: var(--navy);
  font-weight: 700;
}
.matrix-dot {
  color: var(--teal);
  text-decoration: none;
  font-size: 1.1rem;
  line-height: 1;
}
.matrix-dot:hover { color: var(--saffron-deep); }
.matrix-empty { color: #c5d0da; }
@media (max-width: 980px) {
  .product-hero-grid,
  .finder-grid { grid-template-columns: 1fr; }
}

/* �� Cinematic hero (R-Vascular inspired) �� */
.cinema-hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: end;
  color: #f6f8fa;
  overflow: hidden;
  margin-top: -78px;
  padding-top: 78px;
}
.cinema-stage {
  position: absolute;
  inset: 0;
  background: #071525;
}
.cinema-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 1.4s var(--ease), transform 6s linear;
}
.cinema-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.cinema-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(7,21,37,0.92) 0%, rgba(7,21,37,0.72) 42%, rgba(7,21,37,0.28) 100%),
    linear-gradient(180deg, rgba(7,21,37,0.25) 0%, rgba(7,21,37,0.82) 100%);
}
.cinema-copy {
  position: relative;
  z-index: 2;
  padding: clamp(3rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 4.5rem);
  max-width: 720px;
  margin-left: max(calc((100% - var(--max)) / 2), 1.25rem);
  margin-right: auto;
  width: min(var(--max), calc(100% - 2.5rem));
}
.cinema-eyebrow { color: #9fd9c1; }
.cinema-eyebrow::before { background: linear-gradient(90deg, #12a874, #e8a54b); }
.cinema-hero h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  max-width: 12ch;
  color: #fff;
  letter-spacing: -0.035em;
}
.cinema-hero h1 em {
  font-style: normal;
  background: linear-gradient(120deg, #9fd9c1, #12a874 40%, #e8a54b);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cinema-lead { color: rgba(246,248,250,0.82); max-width: 36rem; }
.cinema-ghost {
  background: rgba(255,255,255,0.08) !important;
  border-color: rgba(255,255,255,0.28) !important;
  color: #fff !important;
}
.cinema-ghost:hover { background: rgba(255,255,255,0.16) !important; color: #fff !important; }
.cinema-trust .pill {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.18);
  color: #fff;
}
.cinema-caption {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,248,250,0.55);
  font-weight: 600;
}

.device-strip { padding-top: 3.5rem; }
.device-gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.device-tile {
  display: grid;
  grid-template-rows: 160px auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.device-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  color: inherit;
}
.device-tile img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}
.device-tile > div { padding: 1rem 1.05rem 1.15rem; }
.device-tile .kind {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.25rem;
}
.device-tile strong {
  font-family: var(--font-display);
  font-size: 1.05rem;
}
.device-tile p {
  margin: 0.35rem 0 0;
  color: var(--slate);
  font-size: 0.92rem;
}

.product-chip-media {
  display: grid !important;
  grid-template-columns: 64px 1fr;
  gap: 0.75rem;
  align-items: center;
}
.product-chip-media img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 12px;
}
.product-card-media { padding-top: 0 !important; overflow: hidden; }
.product-card-media-frame {
  margin: 0 -1.35rem 1rem;
  height: 150px;
  overflow: hidden;
  background: #0c2744;
}
.product-card-media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.product-card-media:hover .product-card-media-frame img { transform: scale(1.05); }

.product-visual img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

body.has-cinema .site-header {
  background: rgba(7, 21, 37, 0.88);
}
body.has-cinema .site-header .nav-desktop a { color: #f6f8fa; }
body.has-cinema .site-header .nav-desktop a:hover,
body.has-cinema .site-header .nav-desktop a[aria-current="page"] {
  background: rgba(255,255,255,0.12);
  color: #fff;
}
body.has-cinema .site-header .brand img { filter: brightness(0) invert(1); }
body.has-cinema .site-header .nav-toggle {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.28);
}
body.has-cinema .site-header .nav-toggle span { background: #fff; }
body.has-cinema .site-header.is-scrolled {
  background: rgba(244, 248, 251, 0.92);
}
body.has-cinema .site-header.is-scrolled .nav-desktop a { color: var(--navy); }
body.has-cinema .site-header.is-scrolled .nav-desktop a:hover,
body.has-cinema .site-header.is-scrolled .nav-desktop a[aria-current="page"] {
  background: var(--lumen-soft);
  color: var(--teal);
}
body.has-cinema .site-header.is-scrolled .brand img { filter: none; }
body.has-cinema .site-header.is-scrolled .nav-toggle {
  background: white;
  border-color: var(--line);
}
body.has-cinema .site-header.is-scrolled .nav-toggle span { background: var(--navy); }
body.has-cinema .site-header .nav-cta {
  background: rgba(255,255,255,0.14) !important;
  color: #fff !important;
}
body.has-cinema .site-header.is-scrolled .nav-cta {
  background: var(--navy) !important;
  color: #fff !important;
}

@media (prefers-reduced-motion: reduce) {
  .cinema-slide { animation: none !important; transition: none !important; }
  .cinema-slide { transform: none; }
  .cinema-slide.is-active { opacity: 1; }
}
@media (max-width: 980px) {
  .device-gallery { grid-template-columns: 1fr 1fr; }
  .cinema-copy { max-width: none; }
}
@media (max-width: 640px) {
  .device-gallery { grid-template-columns: 1fr; }
  .cinema-hero { min-height: 86vh; }
}

/* �� App shell + responsive hardening �� */
:root {
  --header-h: 78px;
  --tabbar-h: 0px;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --safe-left: env(safe-area-inset-left, 0px);
  --safe-right: env(safe-area-inset-right, 0px);
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body.app-shell {
  overflow-x: hidden;
  padding-left: var(--safe-left);
  padding-right: var(--safe-right);
}

img, video, iframe, svg {
  max-width: 100%;
  height: auto;
}

.wrap {
  width: min(var(--max), calc(100% - 2rem));
  padding-left: 0;
  padding-right: 0;
}

.site-header {
  padding-top: var(--safe-top);
}

.header-inner {
  min-height: var(--header-h);
  gap: 0.75rem;
}

.brand img {
  height: clamp(36px, 8vw, 46px);
  width: auto;
}

.btn, .nav-desktop a, .nav-cta, .app-tabbar a, .doc-card, .product-card, .device-tile, .mobile-nav-links a {
  min-height: 44px;
}

.btn {
  min-height: 48px;
  padding-inline: 1.2rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

input, select, textarea, button {
  font-size: 16px; /* prevent iOS zoom on focus */
  max-width: 100%;
}

.matrix-scroll,
.admin-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.specs-table,
.matrix-table,
.admin-table {
  min-width: 0;
}

/* Mobile bottom tab bar � app-ready shell */
.app-tabbar {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: rgba(246, 248, 250, 0.94);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--line);
  padding: 0.35rem 0.35rem calc(0.35rem + var(--safe-bottom));
  box-shadow: 0 -8px 30px rgba(18, 32, 46, 0.08);
}

.app-tabbar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  text-decoration: none;
  color: var(--slate);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: 12px;
  padding: 0.35rem 0.25rem;
  -webkit-tap-highlight-color: transparent;
}

.app-tabbar a.is-active,
.app-tabbar a:hover {
  color: var(--teal);
  background: var(--lumen-soft);
}

.app-tabbar .tab-ico {
  font-size: 1.05rem;
  line-height: 1;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .nav-desktop a {
    font-size: 0.88rem;
    padding: 0.5rem 0.65rem;
  }
}

@media (max-width: 980px) {
  .activity-grid,
  .catalog-block .grid,
  .doc-grid,
  .band-products,
  .highlight-grid,
  .device-gallery,
  .finder-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .band,
  .make-india,
  .detail-layout,
  .contact-grid,
  .split,
  .footer-grid,
  .product-hero-grid {
    grid-template-columns: 1fr;
  }

  .cinema-copy {
    max-width: none;
    margin-left: 1rem;
    margin-right: 1rem;
    width: auto;
  }
}

@media (max-width: 760px) {
  :root { --tabbar-h: 64px; }

  .app-tabbar { display: grid; }

  main#main {
    padding-bottom: calc(var(--tabbar-h) + var(--safe-bottom) + 1rem);
  }

  .site-footer {
    padding-bottom: calc(2rem + var(--tabbar-h) + var(--safe-bottom));
  }

  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    min-width: 44px;
    min-height: 44px;
  }

  .nav-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  .mobile-nav:not([hidden]) {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 300;
  }

  .mobile-nav-scrim {
    position: absolute;
    inset: 0;
    border: 0;
    padding: 0;
    margin: 0;
    background: rgba(7, 21, 37, 0.58);
    cursor: pointer;
  }

  .mobile-nav-sheet {
    position: absolute;
    left: 50%;
    bottom: calc(0.75rem + var(--tabbar-h) + var(--safe-bottom));
    transform: translateX(-50%) translateY(12px);
    width: min(420px, calc(100% - 1.5rem));
    max-height: min(70svh, 560px);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    background: #f4f7fa;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.35);
    padding: 0.75rem 0.85rem 1rem;
    animation: mobileNavIn 0.28s var(--ease) forwards;
  }

  @keyframes mobileNavIn {
    from { opacity: 0; transform: translateX(-50%) translateY(20px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
  }

  .mobile-nav-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.25rem 0.25rem 0.75rem;
    margin-bottom: 0.35rem;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    letter-spacing: 0.04em;
    color: var(--navy);
  }

  .mobile-nav-close {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--navy);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
  }

  .mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
  }

  .mobile-nav-links a,
  .mobile-nav-links .nav-cta {
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 48px;
    margin-left: 0;
    border-radius: 14px;
    padding: 0.85rem 1rem;
    text-align: left;
  }

  .activity-grid,
  .catalog-block .grid,
  .doc-grid,
  .band-products,
  .stat-grid,
  .highlight-grid,
  .feature-grid,
  .manual-grid,
  .device-gallery,
  .finder-grid,
  .size-hit-list {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 2rem 0 1rem;
  }

  .page-hero h1,
  .cinema-hero h1 {
    max-width: none;
    font-size: clamp(1.9rem, 9vw, 2.8rem);
  }

  .hero-actions {
    width: 100%;
  }

  .hero-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .trust-row,
  .jump-row {
    gap: 0.45rem;
  }

  .pill,
  .jump-row a {
    font-size: 0.8rem;
  }

  .product-card-media-frame { height: 170px; }

  .finder-panel { padding: 1rem; }

  .finder-card-head {
    flex-direction: column;
  }

  .finder-card-head .btn {
    width: 100%;
  }

  .cinema-hero {
    min-height: min(88svh, 760px);
  }

  .cinema-copy {
    padding-bottom: 2rem;
  }

  .device-tile {
    grid-template-rows: 140px auto;
  }

  .device-tile img { height: 140px; }

  .contact-grid,
  .split {
    gap: 0.85rem;
  }

  .footer-grid {
    gap: 1.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .wrap {
    width: min(var(--max), calc(100% - 1.25rem));
  }

  body {
    font-size: 1rem;
  }

  .brand img { height: 34px; }

  .header-inner { min-height: 64px; }
  :root { --header-h: 64px; }

  .cinema-hero {
    margin-top: -64px;
    padding-top: 64px;
    min-height: 84svh;
  }

  .cinema-caption { font-size: 0.75rem; }

  .highlight-grid {
    grid-template-columns: 1fr 1fr;
  }

  .matrix-table th,
  .matrix-table td {
    padding: 0.35rem 0.4rem;
    font-size: 0.75rem;
  }
}

/* Large phones landscape / small tablets */
@media (min-width: 761px) and (max-width: 980px) {
  .app-tabbar { display: none; }
}

/* Standalone PWA (installed) � tighter chrome */
@media (display-mode: standalone), (display-mode: fullscreen) {
  .site-header {
    padding-top: max(var(--safe-top), 0.25rem);
  }
  .app-tabbar {
    display: grid;
  }
  :root { --tabbar-h: 64px; }
  main#main {
    padding-bottom: calc(var(--tabbar-h) + var(--safe-bottom) + 1rem);
  }
}

body.has-cinema .app-tabbar {
  background: rgba(7, 21, 37, 0.92);
  border-top-color: rgba(255,255,255,0.12);
}
body.has-cinema .app-tabbar a { color: rgba(246,248,250,0.72); }
body.has-cinema .app-tabbar a.is-active,
body.has-cinema .app-tabbar a:hover {
  color: #9fd9c1;
  background: rgba(255,255,255,0.08);
}
body.has-cinema.site-scrolled .app-tabbar {
  background: rgba(246, 248, 250, 0.94);
  border-top-color: var(--line);
}
body.has-cinema.site-scrolled .app-tabbar a { color: var(--slate); }
body.has-cinema.site-scrolled .app-tabbar a.is-active,
body.has-cinema.site-scrolled .app-tabbar a:hover {
  color: var(--teal);
  background: var(--lumen-soft);
}
