/* Trivara Medical Innovation Lab — Site Styles */
:root {
  --navy: #0D1B2A;
  --blue: #1E3A5F;
  --teal: #00A896;
  --green: #7BC67B;
  --gray: #E6E8EB;
  --gray-2: #F4F6F8;
  --white: #FFFFFF;
  --ink: #0D1B2A;
  --muted: #5A6573;
  --line: #E6E8EB;
  --grad: linear-gradient(135deg, #00A896 0%, #7BC67B 100%);
  --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.04);
  --shadow-md: 0 12px 40px rgba(13, 27, 42, 0.08);
  --shadow-lg: 0 24px 80px rgba(13, 27, 42, 0.12);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, .display {
  font-family: 'Sora', system-ui, sans-serif;
  margin: 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
h1 { font-weight: 700; font-size: clamp(40px, 6vw, 72px); line-height: 1.05; letter-spacing: -0.025em; }
h2 { font-weight: 600; font-size: clamp(28px, 3.6vw, 44px); line-height: 1.15; }
h3 { font-weight: 500; font-size: 22px; line-height: 1.3; }
p  { margin: 0; color: var(--muted); }

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

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 32px;
}
@media (max-width: 640px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--teal);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--blue);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-teal {
  background: var(--grad);
  color: var(--white);
}
.btn-teal:hover { transform: translateY(-1px); box-shadow: 0 12px 30px rgba(0,168,150,0.3); }
.btn-ghost {
  border: 1px solid var(--line);
  color: var(--navy);
  background: var(--white);
}
.btn-ghost:hover { border-color: var(--navy); }
.btn-link {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--teal); font-weight: 500; font-size: 15px;
  padding: 4px 0;
  border-bottom: 1px solid transparent;
  transition: gap .2s ease, border-color .2s ease;
}
.btn-link:hover { gap: 12px; border-bottom-color: var(--teal); }

.arrow { display: inline-block; transition: transform .2s ease; }
.btn:hover .arrow, .btn-link:hover .arrow { transform: translateX(2px); }

/* ---------- Nav ---------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 18px 0;
  transition: background .25s ease, box-shadow .25s ease, padding .25s ease;
  background: rgba(255,255,255,0);
}
.nav.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(13,27,42,0.06);
  padding: 12px 0;
}
.nav-row {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
}
.nav-links {
  flex: 1 1 auto;
  display: flex; gap: 28px; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 500; color: var(--navy);
}
.nav-links a { white-space: nowrap; }
@media (max-width: 1180px) { .nav-links { gap: 20px; font-size: 13px; } .nav-row { gap: 20px; } }
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--navy);
  opacity: .75;
  transition: opacity .2s ease;
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links a.active::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: var(--grad);
  border-radius: 2px;
}
.nav-cta { display: flex; align-items: center; gap: 12px; }
.menu-btn {
  display: none;
  width: 40px; height: 40px;
  border-radius: 8px;
  align-items: center; justify-content: center;
}
.menu-btn span {
  display: block; width: 18px; height: 1.5px;
  background: var(--navy); position: relative;
}
.menu-btn span::before, .menu-btn span::after {
  content: ''; position: absolute; left: 0; width: 18px; height: 1.5px;
  background: var(--navy); transition: transform .25s ease;
}
.menu-btn span::before { top: -6px; }
.menu-btn span::after  { top:  6px; }
.menu-btn.open span { background: transparent; }
.menu-btn.open span::before { transform: translateY(6px) rotate(45deg); }
.menu-btn.open span::after  { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 1060px) {
  .nav-links { display: none; }
  .nav-cta .btn-primary { display: none; }
  .menu-btn { display: flex; }
}

.mobile-menu {
  position: fixed; top: 64px; left: 0; right: 0;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 24px 0 32px;
  z-index: 49;
  transform: translateY(-12px);
  opacity: 0; pointer-events: none;
  transition: transform .25s ease, opacity .25s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 14px 0;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 22px;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .btn { margin-top: 16px; align-self: flex-start; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 56px;
  overflow: hidden;
  background: var(--white);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero { padding: 96px 0 60px; }
}
.hero h1 .accent { color: var(--teal); font-style: italic; font-weight: 600; }
.hero .lead {
  margin-top: 24px;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 520px;
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.hero-stats {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 540px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.stat-num {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 36px;
  color: var(--navy);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-num .unit { color: var(--teal); margin-left: 2px; }
.stat-label {
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  background: linear-gradient(135deg, #0D1B2A 0%, #1E3A5F 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual .photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-visual .tint {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,42,0.55) 0%, rgba(30,58,95,0.4) 50%, rgba(0,168,150,0.25) 100%);
  mix-blend-mode: multiply;
}
.hero-visual .vignette {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 30%, transparent 30%, rgba(13,27,42,0.4) 100%);
}
.hero-visual .grid-bg {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 30%, transparent 80%);
}
.hero-visual .glow {
  position: absolute;
  width: 60%; height: 60%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.5) 0%, transparent 70%);
  filter: blur(40px);
  top: 20%; left: 20%;
  animation: pulse 6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-visual svg.molecule { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero-visual .badge {
  position: absolute;
  bottom: 24px; left: 24px;
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
}
.hero-visual .badge .dot {
  width: 8px; height: 8px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--green);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
.hero-visual .float-card {
  position: absolute;
  background: var(--white);
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 500; color: var(--navy);
}
.hero-visual .chips { position: absolute; inset: 0; pointer-events: none; }
.hero-visual .chip {
  position: absolute;
  display: inline-flex; align-items: center; gap: 7px;
  padding: 7px 13px; border-radius: 999px;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(6px);
  box-shadow: 0 6px 20px rgba(13,27,42,0.18);
  font-size: 12px; font-weight: 600; color: var(--navy);
  white-space: nowrap;
  animation: chipDrift 7s ease-in-out infinite;
}
.hero-visual .chip .cd { width: 6px; height: 6px; border-radius: 50%; background: var(--green); flex: none; }
.hero-visual .chip .cd.teal { background: var(--teal); }
.hero-visual .chip.c1 { top: 8%;  left: 6%;  animation-delay: 0s; }
.hero-visual .chip.c2 { top: 24%; right: 5%; animation-delay: -1.1s; animation-duration: 8s; }
.hero-visual .chip.c3 { top: 45%; left: 3%;  animation-delay: -2.4s; animation-duration: 9s; }
.hero-visual .chip.c4 { top: 60%; right: 8%; animation-delay: -3.5s; animation-duration: 7.5s; }
.hero-visual .chip.c5 { bottom: 16%; left: 9%; animation-delay: -4.6s; animation-duration: 8.5s; }
.hero-visual .chip.c6 { bottom: 5%; right: 6%; animation-delay: -5.8s; animation-duration: 9.5s; }
@keyframes chipDrift {
  0%, 100% { transform: translate3d(0, 0, 0); }
  33% { transform: translate3d(6px, -9px, 0); }
  66% { transform: translate3d(-5px, 7px, 0); }
}
@media (prefers-reduced-motion: reduce) { .hero-visual .chip { animation: none; } }
@media (max-width: 520px) { .hero-visual .chip { font-size: 11px; padding: 6px 10px; } .hero-visual .chip.c3, .hero-visual .chip.c4 { display: none; } }
.hero-visual .float-card .ico {
  width: 28px; height: 28px;
  background: var(--gray-2);
  border-radius: 6px;
  display: grid; place-items: center;
  color: var(--teal);
}
.hero-visual .float-card .ico.green { color: var(--green); }

/* ---------- Section base ---------- */
section { position: relative; }
.section { padding: 72px 0; }
.section.tight { padding: 56px 0; }
.section.dark { background: var(--navy); color: var(--white); }
.section.dark h1, .section.dark h2, .section.dark h3 { color: var(--white); }
.section.dark p { color: rgba(255,255,255,0.7); }
.section.gray { background: var(--gray-2); }

.section-head {
  max-width: 720px;
  margin-bottom: 40px;
}
.section-head h2 { margin-top: 14px; }
.section-head p { margin-top: 16px; font-size: 17px; }

@media (max-width: 720px) { .section { padding: 56px 0; } }

/* ---------- Mission / Three Doctors ---------- */
.mission {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
@media (max-width: 980px) {
  .mission { grid-template-columns: 1fr; gap: 48px; }
}
.mission-quote {
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.35;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.mission-quote .em { color: var(--teal); font-weight: 500; }
.mission-meta {
  margin-top: 32px;
  display: flex; align-items: center; gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.doctor-stack {
  display: flex;
}
.doctor-stack .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -10px;
  background: var(--gray);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--white);
}
.doctor-stack .avatar:first-child { margin-left: 0; }
.doctor-stack .avatar:nth-child(1) { background: var(--navy); }
.doctor-stack .avatar:nth-child(2) { background: var(--teal); }
.doctor-stack .avatar:nth-child(3) { background: var(--blue); }
.mission-meta .meta-text {
  font-size: 14px;
  color: var(--muted);
}
.mission-meta .meta-text strong {
  color: var(--navy); font-weight: 600;
}

.three-vision {
  position: relative;
  background: var(--gray-2);
  border-radius: 20px;
  padding: 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.vision-photo.mission-photo { grid-column: auto; margin-top: 32px; }
.vision-photo {
  grid-column: 1 / -1;
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.vision-photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.05);
}
.vision-photo .photo-label {
  position: absolute;
  left: 20px; bottom: 16px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.04em;
  z-index: 2;
}
.vision-photo::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(13,27,42,0.7) 100%);
  z-index: 1;
}
.vision-card {
  background: var(--white);
  border-radius: 12px;
  padding: 28px;
}
.vision-card.span2 { grid-column: 1 / -1; }
.vision-steps { grid-column: 1 / -1; display: grid; gap: 8px; }
.vision-steps .vision-card { display: grid; grid-template-columns: minmax(150px, max-content) 1fr; column-gap: 20px; padding: 14px 20px; }
.vision-steps .vision-card .num { white-space: nowrap; }
.vision-steps .vision-card .num { grid-row: 1 / span 2; align-self: start; padding-top: 4px; }
.vision-steps .vision-card h3 { margin-top: 0; font-size: 17px; }
.vision-steps .vision-card p { margin-top: 4px; }
@media (max-width: 720px) { .vision-steps .vision-card { grid-template-columns: 1fr; } .vision-steps .vision-card .num { grid-row: auto; padding-top: 0; } }
.vision-card .num {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.1em;
}
.vision-card h3 {
  margin-top: 8px;
  font-size: 20px;
  font-weight: 600;
  color: var(--navy);
}
.vision-card p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
}

/* ---------- Pillars (Innovation areas) ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 920px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .pillars { grid-template-columns: 1fr; } }
.pillar {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  overflow: hidden;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.pillar:hover::before { transform: scaleX(1); }
.pillar .icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: var(--gray-2);
  display: grid; place-items: center;
  color: var(--teal);
  transition: background .25s ease;
}
.pillar:hover .icon {
  background: var(--grad);
  color: var(--white);
}
.pillar h3 { margin-top: 24px; font-size: 22px; font-weight: 600; }
.pillar p { margin-top: 10px; font-size: 15px; }
.pillar .pillar-tag {
  display: inline-block;
  margin-top: 20px;
  padding: 4px 10px;
  background: var(--gray-2);
  border-radius: 6px;
  font-family: 'Inter', monospace;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Featured Product ---------- */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .product { grid-template-columns: 1fr; gap: 48px; } }
.product-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 20px;
  background: linear-gradient(135deg, #F4F6F8 0%, #E6E8EB 100%);
  overflow: hidden;
  display: grid; place-items: center;
  box-shadow: var(--shadow-md);
}
.product-visual .bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.55;
  filter: saturate(1.1);
}
.product-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(244,246,248,0.4) 0%, rgba(0,168,150,0.08) 100%);
}
.product-visual .pkg { position: relative; z-index: 2; }
.product-visual .product-badge { z-index: 3; }
.product-visual .pkg {
  width: 60%;
  aspect-ratio: 3/4;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 30px 60px rgba(13,27,42,0.18), 0 0 0 1px rgba(13,27,42,0.04);
  position: relative;
  padding: 32px 28px;
  transform: rotate(-3deg);
  transition: transform .4s ease;
}
.product-visual:hover .pkg { transform: rotate(0deg) translateY(-4px); }
.pkg-logo {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  letter-spacing: 0.06em;
}
.pkg-product {
  margin-top: 16px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: var(--navy);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.pkg-tag {
  margin-top: 4px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}
.pkg-illustration {
  margin-top: 28px;
  height: 120px;
  background: linear-gradient(180deg, var(--gray-2) 0%, transparent 100%);
  border-radius: 6px;
  position: relative;
  display: grid; place-items: center;
}
.pkg-illustration .vial {
  width: 28px; height: 90px;
  background: linear-gradient(180deg, transparent 30%, var(--teal) 35%, var(--teal) 70%, transparent 75%);
  border: 1.5px solid var(--navy);
  border-radius: 4px 4px 14px 14px;
  position: relative;
}
.pkg-illustration .vial::before {
  content: '';
  position: absolute; top: -5px; left: 50%; transform: translateX(-50%);
  width: 36px; height: 8px;
  background: var(--navy);
  border-radius: 2px;
}
.pkg-footer {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px;
  color: var(--muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pkg-footer .barcode {
  width: 50px; height: 16px;
  background-image: repeating-linear-gradient(90deg, var(--navy) 0 1px, transparent 1px 3px);
}
.product-badge {
  position: absolute;
  top: 24px; right: 24px;
  background: var(--navy);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.product-meta {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.meta-item .k {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.meta-item .v {
  margin-top: 6px;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--navy);
}

/* ---------- Featured Product — new layout ---------- */
.product-hero {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 980px) { .product-hero { grid-template-columns: 1fr; gap: 48px; } }

.device-stage {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.9) 0%, transparent 60%),
    linear-gradient(140deg, #EEF2F4 0%, #DCE3E8 100%);
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.device-stage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.device-stage::after {
  content: '';
  position: absolute;
  bottom: 8%;
  left: 18%; right: 18%;
  height: 36px;
  background: radial-gradient(ellipse at center, rgba(13,27,42,0.22) 0%, transparent 70%);
  filter: blur(6px);
  z-index: 1;
}
.device-stage .hero-img {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 78%;
  object-fit: contain;
  filter: drop-shadow(0 30px 40px rgba(13,27,42,0.18));
}
.device-stage svg.hero-img {
  display: block;
}
.device-stage .stage-badge {
  position: absolute;
  z-index: 3;
  top: 24px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 10px;
  background: var(--navy);
  color: var(--white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.device-stage .stage-badge .dot {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--green);
}
.device-stage .float-spec {
  position: absolute;
  z-index: 3;
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  font-size: 12px;
  display: flex; align-items: center; gap: 12px;
  color: var(--navy);
}
.device-stage .float-spec .lbl { color: var(--muted); font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; }
.device-stage .float-spec .val { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 16px; color: var(--navy); margin-top: 2px; }
.device-stage .float-spec.tr { top: 32px; right: 24px; }
.device-stage .float-spec.bl { bottom: 28px; left: 24px; }
.device-stage .float-spec .ic {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: var(--gray-2);
  display: grid; place-items: center;
  color: var(--teal);
  flex-shrink: 0;
}

.product-copy h2 { margin-top: 14px; }
.product-copy .lead {
  margin-top: 18px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--muted);
}
.product-copy .ip-row {
  margin-top: 24px;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.ip-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  background: var(--white);
}
.ip-tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.ip-tag.green .dot { background: var(--green); }
.ip-tag.warn .dot { background: #E5A52A; }

.spec-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: var(--white);
}
.spec-grid .cell {
  padding: 20px 22px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.spec-grid .cell:nth-child(2n) { border-right: none; }
.spec-grid .cell:nth-last-child(-n+2) { border-bottom: none; }
.spec-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.spec-grid.cols-3 .cell:nth-child(2n) { border-right: 1px solid var(--line); }
.spec-grid.cols-3 .cell:nth-child(3n) { border-right: none; }
.spec-grid.cols-3 .cell:nth-last-child(-n+2) { border-bottom: 1px solid var(--line); }
.spec-grid.cols-3 .cell:nth-last-child(-n+3) { border-bottom: none; }
@media (max-width: 720px) {
  .spec-grid.cols-3 { grid-template-columns: 1fr 1fr; }
  .spec-grid.cols-3 .cell:nth-child(2n) { border-right: none; }
  .spec-grid.cols-3 .cell:nth-child(3n) { border-right: 1px solid var(--line); }
}
.spec-grid .k {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.spec-grid .v {
  margin-top: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.spec-grid .v .unit {
  color: var(--teal);
  font-size: 13px;
  font-weight: 500;
  margin-left: 2px;
}

/* Award strip */
.award-strip {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}
@media (max-width: 800px) { .award-strip { grid-template-columns: 1fr; } }
.award-strip .award {
  padding: 28px 32px;
  display: flex; align-items: center; gap: 20px;
  border-right: 1px solid var(--line);
}
@media (max-width: 800px) {
  .award-strip .award { border-right: none; border-bottom: 1px solid var(--line); }
  .award-strip .award:last-child { border-bottom: none; }
}
.award-strip .award:last-child { border-right: none; }
.award-strip .award-medal {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #F6D86B 0%, #C99A2A 100%);
  display: grid; place-items: center;
  color: #4A3000;
  flex-shrink: 0;
  box-shadow: 0 6px 16px rgba(201,154,42,0.3);
}
.award-strip .award-medal.royal {
  background: linear-gradient(135deg, #6E4DBE 0%, #2A1B6B 100%);
  color: #F4EDFF;
  box-shadow: 0 6px 16px rgba(42,27,107,0.3);
}
.award-strip .award-text .k {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}
.award-strip .award-text h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: var(--navy);
  margin-top: 6px;
  line-height: 1.3;
}
.award-strip .award-text p {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
}

/* How it works */
.howitworks {
  margin-top: 72px;
}
.howitworks-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.howitworks-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1.2;
}
.howitworks-head p {
  font-size: 15px;
  max-width: 440px;
  color: var(--muted);
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 980px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  position: relative;
  display: flex; flex-direction: column;
}
.step-num {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--teal);
  letter-spacing: 0.14em;
}
.step h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  margin-top: 8px;
  line-height: 1.3;
}
.step p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}
.step .step-ic {
  margin-top: 18px;
  height: 110px;
  border-radius: 10px;
  background:
    radial-gradient(ellipse at center, rgba(0,168,150,0.06) 0%, transparent 70%),
    var(--gray-2);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
  color: var(--blue);
}
.step .step-ic svg { width: 70%; height: 70%; }

/* Components / anatomy block */
.anatomy {
  margin-top: 72px;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 980px) { .anatomy { grid-template-columns: 1fr; gap: 32px; padding: 32px; } }
.anatomy-visual {
  background: linear-gradient(180deg, #F7F9FA 0%, #E9EDF0 100%);
  border-radius: 14px;
  padding: 24px;
  display: grid; place-items: center;
  position: relative;
  min-height: 360px;
}
.anatomy-visual img {
  max-width: 100%;
  max-height: 420px;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(13,27,42,0.12));
}
.anatomy-visual .anatomy-svg {
  display: block;
  max-width: 100%;
  max-height: 420px;
  width: auto;
  filter: drop-shadow(0 20px 30px rgba(13,27,42,0.12));
}
.anatomy-visual .anatomy-label {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 500;
}
.mask-anatomy-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}
.mask-anatomy-wrap .mask-anatomy-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 20px 30px rgba(13,27,42,0.12));
  display: block;
}
.mask-anatomy-callouts {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.mask-anatomy-callouts .cnum {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 28px; height: 28px;
  border-radius: 50%;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: var(--white);
  display: grid; place-items: center;
  box-shadow: 0 4px 12px rgba(13,27,42,0.25), 0 0 0 3px rgba(255,255,255,0.95);
  letter-spacing: 0;
}
.mask-anatomy-callouts .c-teal  { background: var(--teal); }
.mask-anatomy-callouts .c-navy  { background: var(--navy); }
.mask-anatomy-callouts .c-green { background: var(--green); color: var(--navy); }
.mask-anatomy-callouts .c-ink   { background: var(--ink, #0D1B2A); }
.parts-list { display: flex; flex-direction: column; gap: 14px; }
.parts-list h3 { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 22px; color: var(--navy); margin-bottom: 4px; }
.parts-list .sub { font-size: 14px; color: var(--muted); margin-bottom: 12px; }
.part {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}
.part:first-of-type { border-top: none; padding-top: 6px; }
.part .pnum {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--gray-2);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: var(--navy);
}
.part .pname {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.part .pdesc {
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--muted);
}

/* Difference cards */
.diffs {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .diffs { grid-template-columns: 1fr; } }
.diff {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
}
.diff .diff-ic {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--grad);
  color: var(--white);
  display: grid; place-items: center;
}
.diff h4 {
  margin-top: 20px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: var(--navy);
  line-height: 1.3;
}
.diff p {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--muted);
}

/* CTA row at bottom of product section */
.product-cta-row {
  margin-top: 56px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---------- Mask gallery ---------- */
.mask-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px) { .mask-gallery { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .mask-gallery { grid-template-columns: 1fr; } }
.mask-shot {
  margin: 0;
  background: linear-gradient(180deg, #F7F9FA 0%, #E9EDF0 100%);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  display: flex; flex-direction: column;
}
.mask-shot img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  display: block;
  background: linear-gradient(180deg, #F7F9FA 0%, #E9EDF0 100%);
  padding: 12px;
}
.mask-shot .mask-shot-svg {
  width: 100%;
  height: 260px;
  display: block;
  background: linear-gradient(180deg, #F7F9FA 0%, #E9EDF0 100%);
}
.mask-shot figcaption {
  padding: 14px 18px;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  border-top: 1px solid var(--line);
  background: var(--white);
}

/* Disclaimer banner */
.disclaimer {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 20px;
  align-items: start;
  padding: 24px 28px;
  background: linear-gradient(180deg, #FFFBF3 0%, #FFF7EA 100%);
  border: 1px solid #F0DCB0;
  border-radius: 14px;
  color: #6B4A12;
  font-size: 14px;
  line-height: 1.6;
}
.disclaimer strong { color: #4A3000; }
.disclaimer em { font-style: italic; color: #4A3000; }
.disclaimer-ic {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: linear-gradient(135deg, #E5A52A 0%, #C28415 100%);
  color: #FFFBF0;
  display: grid; place-items: center;
  flex-shrink: 0;
}

/* Exploded view */
.exploded {
  margin-top: 56px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
}
@media (max-width: 720px) { .exploded { padding: 28px; } }
.exploded-head {
  max-width: 720px;
  margin-bottom: 28px;
}
.exploded-head h3 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-top: 12px;
  line-height: 1.2;
}
.exploded-head p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
  max-width: 640px;
}
.exploded-frame {
  position: relative;
  border-radius: 14px;
  background: linear-gradient(180deg, #F7F9FA 0%, #EEF1F3 100%);
  padding: 32px 24px;
  overflow: hidden;
}
.exploded-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,27,42,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,27,42,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
  pointer-events: none;
}
.exploded-frame img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  filter: drop-shadow(0 16px 24px rgba(13,27,42,0.08));
}

/* Patents / Stats strip */
.dna-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.dna-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  mask-image: radial-gradient(ellipse at center, black 0%, transparent 85%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 85%);
}
.lab-band {
  position: relative;
  height: clamp(280px, 36vw, 420px);
  overflow: hidden;
  background: var(--navy);
}
.lab-band img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
}
.lab-band::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,27,42,0.85) 0%, rgba(13,27,42,0.4) 50%, rgba(0,168,150,0.25) 100%);
}
.lab-band .lab-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center;
  z-index: 2;
}
.lab-band .lab-overlay .container {
  display: flex; align-items: center; justify-content: space-between;
  gap: 32px; flex-wrap: wrap;
}
.lab-band .lab-eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--green); font-weight: 500;
}
.lab-band h2 {
  margin-top: 12px; color: var(--white);
  font-size: clamp(28px, 3.4vw, 40px); max-width: 640px; letter-spacing: -0.01em;
}
.lab-band .lab-meta {
  display: flex; gap: 32px; color: rgba(255,255,255,0.85);
  font-family: 'Sora', sans-serif; font-weight: 500;
}
.lab-band .lab-meta div { display: flex; flex-direction: column; gap: 4px; }
.lab-band .lab-meta .k {
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.55); font-weight: 500;
}
.lab-band .lab-meta .v { font-size: 22px; }

.lab-band .lab-process {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.lab-band .lab-process > div {
  padding: 6px 28px;
  border-left: 1px solid rgba(255,255,255,0.22);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lab-band .lab-process > div:first-child { padding-left: 0; border-left: none; }
.lab-band .lab-process .num {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  letter-spacing: 0.16em;
  color: var(--green);
  font-weight: 600;
}
.lab-band .lab-process .lbl {
  font-family: 'Sora', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.95);
  white-space: nowrap;
  letter-spacing: -0.005em;
}
@media (max-width: 880px) {
  .lab-band .lab-process > div { padding: 6px 18px; }
}
@media (max-width: 720px) {
  .lab-band .lab-process { gap: 14px 0; }
  .lab-band .lab-process > div {
    padding: 0 14px;
    flex-basis: 48%;
  }
  .lab-band .lab-process > div:nth-child(odd) { padding-left: 0; border-left: none; }
  .lab-band .lab-process .lbl { font-size: 14px; white-space: normal; }
}
.section.dark { position: relative; overflow: hidden; }
.patents-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.patents-strip .item {
  padding: 40px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
  text-align: left;
}
.patents-strip .item:last-child { border-right: none; }
.patents-strip .big {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 56px;
  line-height: 1;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.patents-strip .big .unit {
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-left: 2px;
}
.patents-strip .lbl {
  margin-top: 12px;
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
@media (max-width: 720px) {
  .patents-strip { grid-template-columns: 1fr 1fr; }
  .patents-strip .item:nth-child(2n) { border-right: none; }
  .patents-strip .item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
}

/* ---------- Team ---------- */
.team {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .team { grid-template-columns: 1fr; } }
.doctor {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  transition: transform .25s ease, box-shadow .25s ease;
}
.doctor:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.doctor-portrait {
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
  display: grid; place-items: center;
}
.doctor-portrait .portrait-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 1;
}
.doctor-portrait .initials {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 80px;
  color: rgba(255,255,255,0.95);
  letter-spacing: -0.02em;
}
.doctor-portrait .accent-shape {
  position: absolute;
  width: 150%; aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.3) 0%, transparent 60%);
  bottom: -50%; right: -50%;
}
.doctor-portrait .glyph {
  position: absolute;
  bottom: 16px; left: 16px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  display: grid; place-items: center;
  color: var(--green);
}
.doctor-info {
  padding: 24px;
}
.doctor-info .role {
  font-size: 12px;
  color: var(--teal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
}
.doctor-info h3 {
  margin-top: 8px;
  font-size: 22px;
  font-weight: 600;
}
.doctor-info p { margin-top: 8px; font-size: 14px; line-height: 1.55; }
.doctor-info .creds {
  margin-top: 16px;
  display: flex; gap: 6px; flex-wrap: wrap;
}
.doctor-info .creds span {
  padding: 4px 10px;
  background: var(--gray-2);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  color: var(--blue);
}

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-q {
  width: 100%;
  display: flex; justify-content: space-between; align-items: center;
  padding: 28px 0;
  text-align: left;
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 19px;
  color: var(--navy);
  cursor: pointer;
}
.faq-q .plus {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  position: relative;
  transition: background .2s ease, border-color .2s ease, transform .25s ease;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute;
  background: var(--navy);
  transition: transform .25s ease, background .25s ease;
}
.faq-q .plus::before { width: 12px; height: 1.5px; }
.faq-q .plus::after  { width: 1.5px; height: 12px; }
.faq-item.open .faq-q .plus { background: var(--navy); border-color: var(--navy); transform: rotate(45deg); }
.faq-item.open .faq-q .plus::before, .faq-item.open .faq-q .plus::after { background: var(--white); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-a-inner {
  overflow: hidden;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a p {
  padding-bottom: 28px;
  padding-right: 64px;
  font-size: 16px;
  line-height: 1.65;
  color: var(--muted);
}

/* ---------- Contact ---------- */
.contact {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
}
@media (max-width: 980px) { .contact { grid-template-columns: 1fr; gap: 40px; } }
.contact-info h2 { margin-top: 14px; }
.contact-info .lead { margin-top: 16px; font-size: 17px; max-width: 460px; }
.contact-channels {
  margin-top: 36px;
  display: flex; flex-direction: column; gap: 20px;
}
.channel {
  display: flex; align-items: center; gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.channel .ic {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--gray-2);
  display: grid; place-items: center;
  color: var(--teal);
}
.channel .lbl {
  font-size: 12px; color: var(--muted); letter-spacing: 0.08em; text-transform: uppercase;
}
.channel .val {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  color: var(--navy);
  font-weight: 500;
  margin-top: 2px;
}

.form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
@media (max-width: 600px) { .form { padding: 28px; } }
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-grid .full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; }
.field label {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 8px;
}
.field input, .field textarea, .field select {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,168,150,0.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field.error input, .field.error textarea, .field.error select { border-color: #DC2626; }
.field .err {
  margin-top: 6px;
  font-size: 12px;
  color: #DC2626;
}
.form .submit-row {
  margin-top: 20px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  flex-wrap: wrap;
}
.form .submit-row .fineprint {
  font-size: 12px;
  color: var(--muted);
  max-width: 320px;
  line-height: 1.5;
}
.form-success {
  text-align: center;
  padding: 24px 0;
}
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--grad);
  display: grid; place-items: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.form-success h3 { font-size: 24px; }
.form-success p { margin-top: 8px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  position: relative;
  border-radius: 24px;
  background: var(--navy);
  padding: 64px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: center;
}
.cta-banner .bg-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.18;
  mix-blend-mode: screen;
  z-index: 0;
}
.cta-banner > * { position: relative; z-index: 1; }
@media (max-width: 800px) {
  .cta-banner { grid-template-columns: 1fr; padding: 40px; }
}
.cta-banner h2 { color: var(--white); max-width: 600px; }
.cta-banner p { color: rgba(255,255,255,0.7); margin-top: 14px; max-width: 540px; font-size: 16px; }
.cta-banner .deco {
  position: absolute;
  right: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,168,150,0.4) 0%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.footer h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer ul a { color: rgba(255,255,255,0.65); font-size: 14px; transition: color .2s ease; }
.footer ul a:hover { color: var(--green); }
.footer-brand p { margin-top: 16px; max-width: 320px; font-size: 14px; }
.footer-brand .tagline {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-family: 'Sora', sans-serif;
  font-style: italic;
  color: var(--green);
  font-size: 14px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  flex-wrap: wrap;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom .legal { display: flex; gap: 24px; }
.footer-bottom .legal a { color: rgba(255,255,255,0.5); }
.footer-bottom .legal a:hover { color: var(--white); }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

/* ---------- Logo SVG sizing ---------- */
.logo { display: inline-flex; align-items: center; gap: 0; }
.logo svg { display: block; }
.aster {
  font-size: 0.7em;
  vertical-align: super;
  line-height: 0;
  color: var(--teal);
  margin-left: 1px;
  font-weight: 500;
  letter-spacing: 0;
}

/* ---------- Outreach (Guinness World Record / Cancer awareness) ---------- */
.outreach-hero {
  margin-top: 56px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 980px) { .outreach-hero { grid-template-columns: 1fr; } }

.record-card {
  position: relative;
  background: var(--navy);
  color: var(--white);
  border-radius: 24px;
  padding: 40px 44px 44px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  isolation: isolate;
}
.record-card::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 85% -10%, rgba(247,184,1,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at -10% 110%, rgba(0,168,150,0.18) 0%, transparent 55%);
  z-index: -1;
}
.record-card::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1.4px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
          mask-image: radial-gradient(ellipse at 50% 0%, black 0%, transparent 75%);
  z-index: -1;
}
.record-card .gwr-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 10px 16px 10px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  backdrop-filter: blur(8px);
}
.record-card .gwr-mark {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F7B801 0%, #D97706 100%);
  color: #1F1300;
  display: grid; place-items: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.04em;
  box-shadow: 0 4px 12px rgba(247,184,1,0.4), inset 0 1px 0 rgba(255,255,255,0.4);
}
.record-card .gwr-text .gwr-title {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 13px;
  color: #F7B801;
  letter-spacing: 0.02em;
}
.record-card .gwr-text .gwr-title sup { font-size: 9px; margin-left: 1px; }
.record-card .gwr-text .gwr-sub {
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.record-card .record-figure {
  margin-top: 36px;
  display: flex;
  align-items: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}
.record-card .record-figure .huge {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(72px, 11vw, 132px);
  line-height: 0.9;
  letter-spacing: -0.04em;
  color: var(--white);
  background: linear-gradient(180deg, #FFFFFF 0%, #C8D4E2 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.record-card .record-figure .figure-cap {
  display: flex; flex-direction: column;
  padding-bottom: 14px;
  border-left: 1px solid rgba(255,255,255,0.18);
  padding-left: 20px;
  max-width: 220px;
}
.record-card .record-figure .figure-cap .lbl {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  letter-spacing: -0.005em;
}
.record-card .record-figure .figure-cap .sub {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}
.record-card .record-quote {
  margin-top: 30px;
  font-family: 'Sora', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.55;
  color: rgba(255,255,255,0.88);
  border-left: 2px solid #F7B801;
  padding-left: 18px;
  max-width: 520px;
}
.record-card .record-meta {
  margin-top: 36px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 28px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.record-card .record-meta .k {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}
.record-card .record-meta .v {
  margin-top: 4px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: var(--white);
}
.record-card .btn-link {
  color: #F7B801;
}
.record-card .btn-link:hover { border-bottom-color: #F7B801; }
@media (max-width: 560px) {
  .record-card { padding: 32px 26px; }
  .record-card .record-meta { grid-template-columns: 1fr 1fr; gap: 18px; }
}

.record-visual {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
}
.record-visual .visual-label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 24px;
}
.record-visual .ribbon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(112px, 1fr));
  gap: 14px 12px;
  flex: 1;
}
@media (max-width: 420px) { .record-visual .ribbon-grid { grid-template-columns: repeat(2, 1fr); } }
.record-visual .ribbon-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 10px 14px;
  border-radius: 12px;
  background: var(--gray-2);
  border: 1px solid transparent;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.record-visual .ribbon-tile:hover {
  transform: translateY(-2px);
  border-color: var(--line);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.record-visual .ribbon-tile svg { display: block; }
.record-visual .ribbon-name {
  font-size: 12px;
  font-weight: 500;
  color: var(--navy);
  text-align: center;
  line-height: 1.2;
}
.record-visual .visual-caption {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
}

.outreach-numbers {
  margin-top: 56px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 880px) { .outreach-numbers { grid-template-columns: repeat(2, 1fr); } }
.outreach-numbers .onum {
  padding: 32px 28px;
  border-right: 1px solid var(--line);
}
.outreach-numbers .onum:last-child { border-right: none; }
@media (max-width: 880px) {
  .outreach-numbers .onum { border-bottom: 1px solid var(--line); }
  .outreach-numbers .onum:nth-child(2n) { border-right: none; }
  .outreach-numbers .onum:nth-last-child(-n+2) { border-bottom: none; }
}
.outreach-numbers .big {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.outreach-numbers .big .unit {
  font-size: 0.55em;
  color: var(--teal);
  margin-left: 2px;
}
.outreach-numbers .lbl {
  margin-top: 14px;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.outreach-numbers .sub {
  margin-top: 4px;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.45;
}

.outreach-pillars {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 880px) { .outreach-pillars { grid-template-columns: 1fr; } }
.outreach-pillars .opillar {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 26px;
}
.outreach-pillars .opillar-ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gray-2);
  color: var(--teal);
  display: grid; place-items: center;
  margin-bottom: 18px;
}
.outreach-pillars .opillar h4 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.outreach-pillars .opillar p {
  margin-top: 8px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

/* ---------- Background graphic accents ---------- */
.bg-dots {
  position: absolute;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(0,168,150,0.18) 1px, transparent 1.5px);
  background-size: 16px 16px;
  opacity: 0.6;
}

.outreach-photo-single { height: 420px; border-radius: 16px; overflow: hidden; margin: 40px 0; }
@media (max-width: 720px) { .outreach-photo-single { height: 260px; } }
.outreach-photos { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 16px; margin-bottom: 40px; }
.outreach-photos .oph { position: relative; height: 260px; border-radius: 14px; overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm, 0 2px 10px rgba(13,27,42,0.06)); }
@media (max-width: 860px) { .outreach-photos { grid-template-columns: 1fr 1fr; } .outreach-photos .oph.tall { grid-column: 1 / -1; } .outreach-photos .oph { height: 200px; } }
@media (max-width: 520px) { .outreach-photos { grid-template-columns: 1fr; } }

.gwr-logo { width: 104px; height: 104px; flex: none; border-radius: 8px; overflow: hidden; padding: 5px; box-sizing: border-box; }
.gwr-logo image-slot { --slot-frame-bg: transparent; color: rgba(255,255,255,0.72); }
