/* ============================================================
   v2.css - distinct visual voice per section
   Loaded AFTER style.css so it overrides the tech-styled sections.
   ============================================================ */

/* Shared v2 primitives */
.v2-tick {
  display: inline-block;
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-secondary);
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(13, 92, 99, 0.2);
  border-radius: 4px;
  background: rgba(13, 92, 99, 0.05);
}

/* =========================================================
   Stats - editorial dark ribbon
   ========================================================= */
.v2-stats {
  padding: 3.5rem 0;
  background: #0a1e28;
  color: #eaf2f6;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.v2-stats-inner {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) 2.5fr;
  gap: 2.5rem;
  align-items: center;
}

.v2-stats-headline .v2-tick {
  color: var(--color-accent);
  background: rgba(55, 201, 200, 0.08);
  border-color: rgba(55, 201, 200, 0.3);
}

.v2-stats-headline h2 {
  margin: 0.6rem 0 0;
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  color: #ffffff;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.v2-stats-headline em {
  font-style: italic;
  color: var(--color-accent);
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
}

.v2-stats-strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.v2-stats-strip li {
  padding: 1.2rem 1rem;
  background: #0a1e28;
  display: grid;
  gap: 0.35rem;
}

.v2-stat-num {
  font-size: clamp(1.5rem, 2.6vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.v2-stat-lbl {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(234, 242, 246, 0.55);
}

@media (max-width: 900px) {
  .v2-stats-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .v2-stats-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* =========================================================
   Why Choose - asymmetric bento
   ========================================================= */
.v2-choose {
  padding: var(--space-2xl) 0;
  background: #f7faf9;
}

.v2-choose-head {
  max-width: 44rem;
  margin: 0 auto var(--space-xl);
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.v2-choose-head h2 {
  margin: 0.3rem 0 0;
  font-size: clamp(2rem, 3.2vw, 2.75rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.v2-choose-head em {
  font-style: italic;
  color: var(--color-primary);
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
}

.v2-choose-head p {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.v2-choose-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(180px, auto);
  gap: 1rem;
}

.v2-c-tile {
  position: relative;
  padding: 1.4rem;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid rgba(13, 92, 99, 0.09);
  display: grid;
  gap: 0.6rem;
  align-content: start;
  transition: transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.v2-c-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(13, 92, 99, 0.24);
  box-shadow: 0 20px 40px rgba(16, 42, 67, 0.08);
}

.v2-c-tile--wide { grid-column: span 2; }

.v2-c-tile--dark {
  background: linear-gradient(160deg, #0d5c63, #082028);
  border-color: transparent;
  color: #eaf2f6;
}

.v2-c-tile--dark h3 { color: #ffffff; }
.v2-c-tile--dark p { color: rgba(234, 242, 246, 0.75); }
.v2-c-tile--dark .v2-c-num { color: rgba(255, 255, 255, 0.4); }
.v2-c-tile--dark .v2-c-icon { background: rgba(255, 255, 255, 0.12); color: #ffffff; }

.v2-c-num {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  color: rgba(13, 92, 99, 0.5);
  position: absolute;
  top: 0.9rem;
  right: 1.1rem;
}

.v2-c-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: rgba(55, 201, 200, 0.14);
  color: var(--color-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.v2-c-icon svg { width: 1.35rem; height: 1.35rem; }

.v2-c-tile h3 { margin: 0.2rem 0 0; font-size: 1.05rem; }
.v2-c-tile p { margin: 0; color: var(--color-muted); font-size: 0.9rem; line-height: 1.5; }

@media (max-width: 900px) {
  .v2-choose-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-c-tile--wide { grid-column: span 2; }
}
@media (max-width: 520px) {
  .v2-choose-bento { grid-template-columns: 1fr; }
  .v2-c-tile--wide { grid-column: auto; }
}

/* =========================================================
   Quality - engineering blueprint
   ========================================================= */
.v2-qa {
  position: relative;
  padding: var(--space-2xl) 0;
  background: #f2f6f8;
  color: #0c2531;
  overflow: hidden;
}

.v2-qa-paper {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 92, 99, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 92, 99, 0.08) 1px, transparent 1px);
  background-size: 24px 24px, 24px 24px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 88%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 40%, transparent 88%);
  pointer-events: none;
}

.v2-qa-inner { position: relative; z-index: 1; }

.v2-qa-head {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: var(--space-xl);
}

.v2-qa-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: #0c2531;
}

.v2-qa-head p {
  margin: 0;
  color: rgba(12, 37, 49, 0.7);
  line-height: 1.6;
  border-left: 3px solid var(--color-primary);
  padding-left: 1rem;
}

/* Blueprint board */
.v2-qa-board {
  position: relative;
  padding: 2.5rem 2.5rem 2.2rem;
  background: #ffffff;
  border: 1px solid rgba(13, 92, 99, 0.25);
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(16, 42, 67, 0.08);
}

.v2-qa-board::before,
.v2-qa-board::after {
  content: '';
  position: absolute;
  width: 22px;
  height: 22px;
  border: 2px solid rgba(13, 92, 99, 0.35);
}
.v2-qa-board::before { top: 8px; left: 8px; border-right: none; border-bottom: none; }
.v2-qa-board::after { bottom: 8px; right: 8px; border-left: none; border-top: none; }

.v2-qa-ruler {
  position: absolute;
  display: flex;
  color: rgba(13, 92, 99, 0.55);
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
}

.v2-qa-ruler--top {
  top: 0.4rem;
  left: 2.5rem;
  right: 2.5rem;
  justify-content: space-between;
  border-top: 1px dashed rgba(13, 92, 99, 0.25);
  padding-top: 0.35rem;
}

.v2-qa-ruler--left {
  top: 2.5rem;
  bottom: 2.5rem;
  left: 0.4rem;
  flex-direction: column;
  justify-content: space-between;
  border-left: 1px dashed rgba(13, 92, 99, 0.25);
  padding-left: 0.35rem;
}

.v2-qa-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  position: relative;
}

.v2-qa-steps li {
  position: relative;
  padding: 1.1rem 1.15rem 1.2rem;
  border: 1.5px dashed rgba(13, 92, 99, 0.35);
  border-radius: 4px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(247, 250, 252, 0.9));
  display: grid;
  gap: 0.4rem;
}

.v2-qa-steps li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  top: -4px;
  left: -4px;
}
.v2-qa-steps li::after {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--color-primary);
  border-radius: 50%;
  bottom: -4px;
  right: -4px;
}

.v2-qa-tag {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  color: var(--color-primary);
  background: rgba(13, 92, 99, 0.08);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  width: fit-content;
}

.v2-qa-steps h3 { margin: 0.15rem 0 0; font-size: 1.02rem; color: #0c2531; }
.v2-qa-steps p { margin: 0; color: rgba(12, 37, 49, 0.68); font-size: 0.87rem; line-height: 1.5; }

.v2-qa-signoff {
  margin-top: 1.75rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(13, 92, 99, 0.3);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.75rem;
  color: rgba(12, 37, 49, 0.7);
}

.v2-qa-signoff > div span { display: block; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.65; }
.v2-qa-signoff > div strong { display: block; color: var(--color-primary); font-size: 0.95rem; margin-top: 0.1rem; }

.v2-qa-stamp {
  margin-left: auto;
  padding: 0.4rem 0.85rem;
  border: 2px solid var(--color-accent);
  color: var(--color-secondary);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 4px;
  transform: rotate(-3deg);
  background: rgba(55, 201, 200, 0.08);
}

@media (max-width: 900px) {
  .v2-qa-head { grid-template-columns: 1fr; }
  .v2-qa-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-qa-board { padding: 2rem 1.5rem 1.5rem; }
  .v2-qa-ruler { display: none; }
}
@media (max-width: 560px) {
  .v2-qa-steps { grid-template-columns: 1fr; }
}

/* =========================================================
   Research & Innovation - editorial vertical zigzag
   ========================================================= */
.v2-rd {
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(50% 40% at 100% 0%, rgba(55, 201, 200, 0.09), transparent 60%),
    linear-gradient(180deg, #fffdf9 0%, #f7f2eb 100%);
  color: #17222b;
}

.v2-rd-head {
  max-width: 46rem;
  margin: 0 auto var(--space-xl);
  text-align: center;
  display: grid;
  gap: 0.75rem;
  justify-items: center;
}

.v2-rd-head h2 {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 3.4vw, 2.9rem);
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.v2-rd-head em {
  font-style: italic;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--color-primary);
}

.v2-rd-head p { margin: 0; color: rgba(23, 34, 43, 0.7); line-height: 1.6; font-size: 1.05rem; }

.v2-rd-figures {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin: 0 auto 3rem;
  max-width: 800px;
  border-top: 1px solid rgba(23, 34, 43, 0.14);
  border-bottom: 1px solid rgba(23, 34, 43, 0.14);
}

.v2-rd-figures > div {
  padding: 1.15rem 1rem;
  display: grid;
  gap: 0.25rem;
  text-align: center;
  border-right: 1px solid rgba(23, 34, 43, 0.1);
}
.v2-rd-figures > div:last-child { border-right: none; }

.v2-rd-figures b {
  font-family: 'Poppins', 'Inter', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}
.v2-rd-figures span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(23, 34, 43, 0.6);
}

/* Vertical zigzag timeline */
.v2-rd-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  max-width: 940px;
  margin-inline: auto;
}

.v2-rd-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: repeating-linear-gradient(180deg, rgba(13, 92, 99, 0.45) 0, rgba(13, 92, 99, 0.45) 8px, transparent 8px, transparent 14px);
  transform: translateX(-50%);
}

.v2-rd-item {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1.5rem;
  align-items: center;
  margin-bottom: 2rem;
}

.v2-rd-index {
  display: grid;
  justify-items: center;
  gap: 0.2rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid rgba(13, 92, 99, 0.35);
  border-radius: 999px;
  background: #ffffff;
  min-width: 5.5rem;
  box-shadow: 0 8px 20px rgba(16, 42, 67, 0.06);
}

.v2-rd-index span {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 34, 43, 0.55);
}

.v2-rd-index b {
  font-size: 1.4rem;
  color: var(--color-primary);
  font-weight: 800;
  line-height: 1;
}

.v2-rd-card {
  padding: 1.25rem 1.5rem;
  background: #ffffff;
  border: 1px solid rgba(13, 92, 99, 0.1);
  border-radius: 14px;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.06);
  position: relative;
}

.v2-rd-card h3 { margin: 0 0 0.35rem; font-size: 1.15rem; color: #17222b; }
.v2-rd-card p { margin: 0; color: rgba(23, 34, 43, 0.68); line-height: 1.6; font-size: 0.92rem; }

/* Alternating layout: index pill always sits on the center spine (column 2),
   card switches sides based on parity. */
.v2-rd-item .v2-rd-index { grid-column: 2; }
.v2-rd-item:nth-child(odd)  .v2-rd-card { grid-column: 3; }
.v2-rd-item:nth-child(even) .v2-rd-card { grid-column: 1; text-align: right; }

/* Connector notch on the card */
.v2-rd-item:nth-child(odd) .v2-rd-card::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-left: 1px solid rgba(13, 92, 99, 0.1);
  border-bottom: 1px solid rgba(13, 92, 99, 0.1);
  transform: rotate(45deg);
}
.v2-rd-item:nth-child(even) .v2-rd-card::before {
  content: '';
  position: absolute;
  right: -8px;
  top: 24px;
  width: 14px;
  height: 14px;
  background: #ffffff;
  border-right: 1px solid rgba(13, 92, 99, 0.1);
  border-top: 1px solid rgba(13, 92, 99, 0.1);
  transform: rotate(45deg);
}

@media (max-width: 780px) {
  .v2-rd-timeline::before { left: 1.5rem; transform: none; }
  .v2-rd-item {
    grid-template-columns: 3rem 1fr;
    gap: 1rem;
    text-align: left !important;
  }
  .v2-rd-item .v2-rd-index { grid-column: 1 !important; padding: 0.4rem 0.4rem; min-width: 2.75rem; border-radius: 8px; }
  .v2-rd-item .v2-rd-index span { display: none; }
  .v2-rd-item .v2-rd-card { grid-column: 2 !important; text-align: left !important; }
  .v2-rd-item:nth-child(even) .v2-rd-card::before,
  .v2-rd-item:nth-child(odd) .v2-rd-card::before {
    left: -8px; right: auto; border-right: none; border-top: none;
    border-left: 1px solid rgba(13, 92, 99, 0.1);
    border-bottom: 1px solid rgba(13, 92, 99, 0.1);
  }
}

/* =========================================================
   About - editorial magazine
   ========================================================= */
.v2-about {
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(60% 60% at 100% 0%, rgba(255, 220, 180, 0.35), transparent 60%),
    linear-gradient(180deg, #fdf7ef 0%, #f6ede0 100%);
  color: #17222b;
}

.v2-about-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.v2-about-copy {
  display: grid;
  gap: 1rem;
}

.v2-about-copy .v2-tick {
  justify-self: start;
  background: rgba(13, 92, 99, 0.08);
}

.v2-about-copy h2 {
  margin: 0;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #17222b;
}

.v2-about-copy em {
  font-style: italic;
  color: var(--color-primary);
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  font-weight: 700;
}

.v2-about-lede {
  margin: 0.75rem 0 0;
  color: rgba(23, 34, 43, 0.78);
  line-height: 1.7;
  font-size: 1.05rem;
  max-width: 34rem;
}

.v2-drop {
  float: left;
  font-family: 'Poppins', 'Inter', serif;
  font-size: 3.4rem;
  line-height: 0.9;
  padding: 0.35rem 0.55rem 0 0;
  color: var(--color-primary);
  font-weight: 800;
}

.v2-about-signature {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(23, 34, 43, 0.14);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.v2-about-signature b {
  display: block;
  color: var(--color-primary);
  font-size: 1.05rem;
  font-weight: 700;
}

.v2-about-signature > div > span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(23, 34, 43, 0.55);
  margin-top: 0.15rem;
}

.v2-about-quick {
  display: flex;
  gap: 1.25rem;
}

.v2-about-quick span {
  display: flex;
  align-items: baseline;
  gap: 0.3rem;
  font-size: 0.85rem;
  color: rgba(23, 34, 43, 0.65);
}

.v2-about-quick b {
  color: var(--color-primary);
  font-size: 1.15rem;
  font-weight: 800;
}

.v2-about-visual {
  position: relative;
  padding: 1.5rem;
}

.v2-about-photo {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(16, 42, 67, 0.15);
  aspect-ratio: 3 / 2;
  transform: rotate(-1.2deg);
  position: relative;
  animation: v2-about-float 6s ease-in-out infinite;
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.v2-about-photo:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 50px 100px rgba(55, 201, 200, 0.35);
}

.v2-about-photo::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, rgba(55, 201, 200, 0.7), rgba(41, 128, 185, 0.2), rgba(55, 201, 200, 0.7));
  background-size: 200% 200%;
  animation: v2-about-border-shift 5s linear infinite;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}

.v2-about-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: v2-about-shine 4.5s ease-in-out infinite;
  z-index: 2;
  pointer-events: none;
}

.v2-about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.8s ease;
}

.v2-about-photo:hover img { transform: scale(1.04); }

@keyframes v2-about-float {
  0%, 100% { transform: rotate(-1.2deg) translateY(0); }
  50%      { transform: rotate(-1.2deg) translateY(-10px); }
}

@keyframes v2-about-border-shift {
  0%   { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

@keyframes v2-about-shine {
  0%   { left: -60%; }
  60%  { left: 120%; }
  100% { left: 120%; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-about-photo,
  .v2-about-photo::before,
  .v2-about-shine,
  .v2-about-photo img { animation: none; transition: none; }
}

.v2-about-chip {
  position: absolute;
  padding: 0.45rem 0.7rem;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(13, 92, 99, 0.14);
  box-shadow: 0 12px 28px rgba(16, 42, 67, 0.15);
  display: grid;
  gap: 0.05rem;
  min-width: 5.5rem;
  z-index: 4;
  transition: transform 0.35s cubic-bezier(.34,1.56,.64,1), box-shadow 0.35s ease;
}

.v2-about-chip::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(55, 201, 200, 0.55), rgba(41, 128, 185, 0));
  z-index: -1;
  filter: blur(6px);
  opacity: 0.7;
  animation: v2-chip-glow 3.6s ease-in-out infinite;
}

.v2-about-chip b {
  color: var(--color-primary);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.v2-about-chip span {
  font-size: 0.6rem;
  color: rgba(23, 34, 43, 0.6);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.v2-about-chip:hover {
  transform: scale(1.08) rotate(0deg);
  box-shadow: 0 18px 40px rgba(55, 201, 200, 0.3);
}

.v2-about-chip--gmp {
  top: 6%;
  left: -0.5rem;
  transform: rotate(-4deg);
  animation: v2-chip-float-a 5.5s ease-in-out infinite;
}

.v2-about-chip--iso {
  bottom: 8%;
  right: -0.5rem;
  transform: rotate(3deg);
  animation: v2-chip-float-b 6s ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes v2-chip-float-a {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50%      { transform: rotate(-4deg) translateY(-8px); }
}

@keyframes v2-chip-float-b {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(3deg) translateY(-8px); }
}

@keyframes v2-chip-glow {
  0%, 100% { opacity: 0.4; }
  50%      { opacity: 0.8; }
}

@media (prefers-reduced-motion: reduce) {
  .v2-about-chip,
  .v2-about-chip::before { animation: none; }
}

.v2-about-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  border: 1px solid rgba(23, 34, 43, 0.14);
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
}

.v2-about-pillars article {
  padding: 1.25rem 1.35rem;
  display: grid;
  gap: 0.4rem;
  border-right: 1px solid rgba(23, 34, 43, 0.1);
}
.v2-about-pillars article:last-child { border-right: none; }

.v2-about-pillars b {
  color: var(--color-primary);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.v2-about-pillars p {
  margin: 0;
  color: rgba(23, 34, 43, 0.72);
  line-height: 1.5;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .v2-about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .v2-about-pillars { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-about-pillars article:nth-child(2) { border-right: none; }
  .v2-about-pillars article:nth-child(-n+2) { border-bottom: 1px solid rgba(23, 34, 43, 0.1); }
}
@media (max-width: 520px) {
  .v2-about-pillars { grid-template-columns: 1fr; }
  .v2-about-pillars article { border-right: none; border-bottom: 1px solid rgba(23, 34, 43, 0.1); }
  .v2-about-pillars article:last-child { border-bottom: none; }
  .v2-about-signature { flex-direction: column; align-items: flex-start; }
}

/* =========================================================
   Therapy Areas - magazine bento
   ========================================================= */
.v2-therapy {
  padding: var(--space-2xl) 0;
  background:
    radial-gradient(1200px 400px at 90% -10%, rgba(54, 207, 201, 0.08), transparent 60%),
    radial-gradient(900px 500px at -10% 110%, rgba(13, 92, 99, 0.08), transparent 60%),
    #ffffff;
  position: relative;
  overflow: hidden;
}

.v2-therapy::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13, 92, 99, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 92, 99, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse at 50% 50%, #000 20%, transparent 70%);
  pointer-events: none;
}

.v2-therapy > .container { position: relative; z-index: 1; }

.v2-therapy-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(23, 34, 43, 0.12);
  flex-wrap: wrap;
}

.v2-therapy-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.8rem, 2.8vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.v2-therapy-head p {
  margin: 0;
  color: var(--color-muted);
  max-width: 26rem;
}

.v2-therapy-bento {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 1rem;
}

.v2-t {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(16, 42, 67, 0.08);
  transition:
    transform 0.5s cubic-bezier(.22,.9,.28,1),
    box-shadow 0.5s ease,
    border-radius 0.5s ease;
  isolation: isolate;
}

/* Gradient ring on hover */
.v2-t::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(135deg, #36cfc9, #0d5c63 45%, transparent 75%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 3;
  pointer-events: none;
}
.v2-t:hover::before { opacity: 1; }

.v2-t img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(.22,.9,.28,1), filter 0.6s ease;
  filter: saturate(0.9) contrast(0.95);
}

.v2-t::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 18, 26, 0) 25%, rgba(6, 18, 26, 0.55) 65%, rgba(6, 18, 26, 0.92) 100%),
    linear-gradient(135deg, rgba(13, 92, 99, 0.15), transparent 55%);
  transition: background 0.5s ease;
}

/* Shine sweep */
.v2-t .v2-t-shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.35) 50%, transparent 70%);
  transform: skewX(-18deg);
  z-index: 2;
  pointer-events: none;
  transition: left 0.9s cubic-bezier(.22,.9,.28,1);
}
.v2-t:hover .v2-t-shine { left: 130%; }

.v2-t-body {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.15rem 1.15rem;
  z-index: 2;
  color: #ffffff;
  display: grid;
  gap: 0.4rem;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(.22,.9,.28,1);
}

.v2-t-body h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}

.v2-t-body p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(6px);
  transition: max-height 0.5s ease, opacity 0.4s ease 0.05s, transform 0.5s ease;
}

/* CTA arrow that appears on hover */
.v2-t-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #36cfc9;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
  margin-top: 0.35rem;
}
.v2-t-cta svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s ease;
}

/* Hover state */
.v2-t:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 60px rgba(13, 92, 99, 0.28);
}
.v2-t:hover img {
  transform: scale(1.12);
  filter: saturate(1.15) contrast(1.05);
}
.v2-t:hover .v2-t-body p {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}
.v2-t:hover .v2-t-body h3 { color: #7ee8e2; }
.v2-t:hover .v2-t-cta { opacity: 1; transform: translateY(0); }
.v2-t:hover .v2-t-cta svg { transform: translateX(4px); }

/* Corner accent number */
.v2-t-num {
  position: absolute;
  top: 0.8rem;
  right: 1rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.65);
  z-index: 2;
  transition: color 0.3s ease, transform 0.4s ease;
}
.v2-t:hover .v2-t-num { color: #36cfc9; transform: scale(1.15); }

.v2-t--hero {
  grid-column: span 2;
  grid-row: span 2;
}
.v2-t--hero .v2-t-body h3 { font-size: 1.9rem; }
.v2-t--hero .v2-t-body p { font-size: 0.95rem; max-width: 32rem; }
.v2-t--hero .v2-t-body p {
  max-height: 8rem;
  opacity: 1;
  transform: translateY(0);
}

.v2-t--wide {
  grid-column: span 2;
}

@keyframes tag-shimmer {
  0%,100% { box-shadow: 0 0 0 0 rgba(54, 207, 201, 0.5); }
  50%     { box-shadow: 0 0 0 8px rgba(54, 207, 201, 0); }
}

.v2-t-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  background: linear-gradient(135deg, #36cfc9, #0d5c63);
  color: #ffffff;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  width: fit-content;
  margin-bottom: 0.35rem;
  animation: tag-shimmer 2.4s ease-in-out infinite;
}
.v2-t-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 0 8px #ffffff;
}

@media (max-width: 900px) {
  .v2-therapy-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .v2-t--hero { grid-column: span 2; grid-row: span 2; }
  .v2-t--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .v2-therapy-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .v2-t--hero, .v2-t--wide { grid-column: auto; grid-row: auto; }
  /* On touch devices, always show description */
  .v2-t .v2-t-body p { max-height: 8rem; opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  .v2-therapy-bento { grid-template-columns: repeat(2, minmax(0, 1fr)); grid-auto-rows: 180px; }
  .v2-t--hero { grid-column: span 2; grid-row: span 2; }
  .v2-t--wide { grid-column: span 2; }
}
@media (max-width: 480px) {
  .v2-therapy-bento { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .v2-t--hero, .v2-t--wide { grid-column: auto; grid-row: auto; }
}

/* =========================================================
   Featured Products - magazine showcase
   ========================================================= */
.v2-fp {
  padding: var(--space-2xl) 0;
  background: linear-gradient(180deg, #f7faf9 0%, #eef4f5 100%);
}

.v2-fp-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(23, 34, 43, 0.14);
  flex-wrap: wrap;
}

.v2-fp-head h2 {
  margin: 0.5rem 0 0;
  font-size: clamp(2rem, 3vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
}

.v2-fp-head em {
  font-style: italic;
  font-family: 'Poppins', 'Inter', system-ui, sans-serif;
  color: var(--color-primary);
}

.v2-fp-link {
  color: var(--color-primary);
  font-weight: 600;
  border-bottom: 2px solid var(--color-primary);
  padding-bottom: 2px;
}

.v2-fp-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  gap: 1.25rem;
}

.v2-fp-cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

.v2-fp-loading {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1rem;
  color: rgba(23, 34, 43, 0.55);
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
}

.v2-fp-card {
  position: relative;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid rgba(23, 34, 43, 0.08);
  overflow: hidden;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  display: flex;
  flex-direction: column;
}

.v2-fp-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(16, 42, 67, 0.12);
}

.v2-fp-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  z-index: 2;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 4px;
  background: var(--color-primary);
  color: #ffffff;
}

.v2-fp-badge--new { background: #b56f2a; }

.v2-fp-media {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f2f6f8;
}

.v2-fp-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.v2-fp-card:hover .v2-fp-media img { transform: scale(1.04); }

.v2-fp-body {
  padding: 1rem 1.15rem 1.15rem;
  display: grid;
  gap: 0.3rem;
  position: relative;
  flex: 1;
}

.v2-fp-eyebrow {
  font-family: 'JetBrains Mono', 'SF Mono', ui-monospace, Menlo, monospace;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-secondary);
}

.v2-fp-body h3 { margin: 0.1rem 0 0; font-size: 1.1rem; color: #17222b; }

.v2-fp-generic {
  margin: 0;
  color: rgba(23, 34, 43, 0.6);
  font-size: 0.85rem;
}

.v2-fp-arrow {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(13, 92, 99, 0.08);
  color: var(--color-primary);
  font-size: 1.1rem;
  font-weight: 600;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.v2-fp-arrow:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateX(3px);
}

/* Feature card spans 2 columns and 2 rows */
.v2-fp-card--feature {
  grid-column: span 2;
  grid-row: span 2;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}

.v2-fp-card--feature .v2-fp-media {
  aspect-ratio: auto;
  height: 100%;
  min-height: 24rem;
}

.v2-fp-card--feature .v2-fp-body {
  padding: 2rem 1.75rem;
  align-content: center;
}

.v2-fp-card--feature h3 { font-size: 1.9rem; }

.v2-fp-desc {
  margin: 0.6rem 0 1rem;
  color: rgba(23, 34, 43, 0.72);
  line-height: 1.6;
  font-size: 0.95rem;
}

.v2-fp-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.v2-fp-meta span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.6rem;
  border: 1px solid rgba(13, 92, 99, 0.18);
  border-radius: 999px;
  color: var(--color-primary);
  background: rgba(13, 92, 99, 0.04);
}

@media (max-width: 900px) {
  .v2-fp-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .v2-fp-card--feature { grid-column: span 2; grid-row: auto; grid-template-columns: 1fr 1fr; }
  .v2-fp-card--feature .v2-fp-media { min-height: 16rem; }
}
@media (max-width: 620px) {
  .v2-fp-grid { grid-template-columns: 1fr; }
  .v2-fp-card--feature { grid-column: auto; grid-template-columns: 1fr; }
  .v2-fp-card--feature .v2-fp-body { padding: 1.25rem; }
  .v2-fp-card--feature h3 { font-size: 1.4rem; }
}
