/* =================================================================
   EQUIPO AI — added sections (mission, explore, vica, impacts,
   security, integrations, developments, press, related, events, blog)
   Inherits all tokens from equipo.css
================================================================= */

/* =================================================================
   PARTNERS / CLIENTS MARQUEE  (reuses .trust .marquee from base)
================================================================= */
.trust .marquee + .marquee {
  margin-top: 26px;
}
.trust .marquee.rev .marquee-track {
  animation-direction: reverse;
  animation-duration: 50s;
}

/* =================================================================
   WHAT IS EQUIPO AI — mission / vision
================================================================= */
.mission-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
  gap: 72px;
  align-items: center;
}
.mission-lead {
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.2;
  letter-spacing: -0.026em;
  color: var(--ink);
  font-weight: 500;
  text-wrap: pretty;
  max-width: 18ch;
}
.mission-lead b {
  color: var(--blue-deep);
  font-weight: 600;
}
.mission-body {
  max-width: 520px;
}
.mission-body p {
  font-size: 16.5px;
  line-height: 1.62;
  color: var(--ink-60);
  text-wrap: pretty;
}
.mission-body p + p {
  margin-top: 18px;
}
.mv-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 30px;
}
.mv-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 22px;
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.mv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-line);
}
.mv-card .ic {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-line);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}
.mv-card .ic svg {
  width: 19px;
  height: 19px;
  color: var(--blue-deep);
}
.mv-card .k {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 8px;
}
.mv-card .t {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.018em;
  margin-bottom: 7px;
}
.mv-card .d {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-60);
}

/* =================================================================
   EXPLORE EQUIPO AI — product cards + plain/clinical toggle
================================================================= */
.explore-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}
.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 4px;
  box-shadow: var(--sh-xs);
}
.lang-toggle button {
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-60);
  padding: 8px 18px;
  border-radius: 100px;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.lang-toggle button .ti {
  width: 14px;
  height: 14px;
}
.lang-toggle button.active {
  background: linear-gradient(135deg, #3b78ff, #1d4ed8);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.explore-bar .hint {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-40);
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.xp {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  padding: 28px;
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
.xp::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    360px 180px at 90% 0%,
    var(--blue-tint),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}
.xp:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-line);
}
.xp:hover::after {
  opacity: 1;
}
.xp > * {
  position: relative;
  z-index: 1;
}
.xp-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.xp-ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-tint);
  border: 1px solid var(--blue-line);
  display: grid;
  place-items: center;
  transition: transform 0.3s var(--ease);
}
.xp:hover .xp-ico {
  transform: scale(1.06);
}
.xp-ico svg {
  width: 21px;
  height: 21px;
  color: var(--blue-deep);
}
.xp-badge {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-50);
  padding: 4px 9px;
  border: 1px solid var(--line-2);
  border-radius: 100px;
}
.xp-name {
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.xp-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-60);
  min-height: 66px;
}
.xp-desc.clinical {
  display: none;
}
.explore.is-clinical .xp-desc.plain {
  display: none;
}
.explore.is-clinical .xp-desc.clinical {
  display: block;
}
.xp-more {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  align-self: flex-start;
}
.xp-more .arr {
  transition: transform 0.3s var(--ease);
}
.xp:hover .xp-more .arr {
  transform: translateX(3px);
}

/* mini workflow animation strip */
.xp-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.xp-flow .fn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.xp-flow .fn .nd {
  width: 30px;
  height: 30px;
  border-radius: 9px;
  background: var(--paper-2);
  border: 1px solid var(--line-2);
  display: grid;
  place-items: center;
  transition:
    background 0.3s var(--ease),
    border-color 0.3s var(--ease),
    transform 0.3s var(--ease);
}
.xp-flow .fn .nd svg {
  width: 14px;
  height: 14px;
  color: var(--ink-50);
  transition: color 0.3s var(--ease);
}
.xp-flow .fn .fl {
  font-size: 10px;
  color: var(--ink-50);
  letter-spacing: 0.01em;
}
.xp-flow .fc {
  flex: 1;
  height: 2px;
  position: relative;
  background: var(--line-2);
  margin: 0 6px;
  margin-bottom: 22px;
  border-radius: 2px;
  overflow: hidden;
}
.xp-flow .fc::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 40%;
  border-radius: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: translateX(-120%);
  animation: xpFlow 2.6s var(--ease) infinite;
}
.xp:hover .xp-flow .fn:nth-child(1) .nd,
.xp:hover .xp-flow .fn:nth-child(3) .nd,
.xp:hover .xp-flow .fn:nth-child(5) .nd {
  border-color: var(--blue-line);
}
.xp-flow .fn .nd.lit {
  background: linear-gradient(135deg, #3b78ff, #1d4ed8);
  border-color: transparent;
}
.xp-flow .fn .nd.lit svg {
  color: #fff;
}
@keyframes xpFlow {
  0% {
    transform: translateX(-120%);
  }
  60%,
  100% {
    transform: translateX(320%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .xp-flow .fc::after {
    animation: none;
    transform: translateX(120%);
  }
}

/* =================================================================
   VICA — command-center results (insight + model row)
================================================================= */
.cmd-results {
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
}
.cmd-results:empty {
  display: none;
}
.vresp {
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out);
  margin-top: 32px;
}
.vresp.in {
  opacity: 1;
  transform: none;
}

.vthinking {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--ink-50);
  letter-spacing: -0.005em;
}
.vdots {
  display: inline-flex;
  gap: 5px;
}
.vdots i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.5;
  animation: vdot 1.1s var(--ease) infinite;
}
.vdots i:nth-child(2) {
  animation-delay: 0.18s;
}
.vdots i:nth-child(3) {
  animation-delay: 0.36s;
}
@keyframes vdot {
  0%,
  60%,
  100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  30% {
    transform: translateY(-4px);
    opacity: 1;
  }
}

.vinsight {
  display: inline-flex;
  align-items: flex-start;
  gap: 11px;
  text-align: left;
  max-width: 660px;
  margin: 0 auto;
}
.vi-spark {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  flex-shrink: 0;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  margin-top: 3px;
}
.vi-spark svg {
  width: 15px;
  height: 15px;
  color: var(--blue-deep);
}
.vinsight > span:last-child {
  font-size: 18px;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--ink-90);
  font-weight: 450;
  text-wrap: pretty;
}

.vmodels-lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-40);
  margin: 26px 0 13px;
}
.vmodels {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.vmodel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  padding: 20px 20px 18px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: 0 1px 2px rgba(13, 31, 71, 0.04);
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 0.4s var(--ease-out),
    transform 0.4s var(--ease-out),
    box-shadow 0.25s var(--ease),
    border-color 0.25s var(--ease);
}
.vmodel.in {
  opacity: 1;
  transform: none;
}
.vmodel:hover {
  border-color: var(--blue-line);
  box-shadow: 0 10px 30px rgba(13, 31, 71, 0.09);
}
.vmodel-ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: var(--blue-tint);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.vmodel-ic svg {
  width: 19px;
  height: 19px;
  color: var(--blue-deep);
}
.vmodel-t {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: -0.014em;
  color: var(--ink);
  line-height: 1.2;
}
.vmodel-go {
  display: inline-grid;
  place-items: center;
  color: var(--ink-30);
  transition:
    color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.vmodel-go svg {
  width: 15px;
  height: 15px;
}
.vmodel:hover .vmodel-go {
  color: var(--blue-deep);
  transform: translateX(3px);
}
.vmodel-d {
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--ink-60);
  margin-top: 7px;
  text-wrap: pretty;
}
@media (prefers-reduced-motion: reduce) {
  .vresp,
  .vmodel {
    transition: none;
  }
}
@media (max-width: 760px) {
  .vmodels {
    grid-template-columns: 1fr;
  }
}

/* =================================================================
   IMPACTS  (reuses .metrics-grid + .count from base)
================================================================= */
.impacts-note {
  display: flex;
  align-items: center;
  gap: 9px;
  justify-content: center;
  margin-top: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-40);
}
.impacts-note i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--live);
  box-shadow: 0 0 0 3px rgba(27, 191, 115, 0.16);
  animation: pulse 2s var(--ease) infinite;
}

/* =================================================================
   INTEGRATIONS — EHR / data systems
================================================================= */
.intg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 8px;
}
.intg {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-m);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.intg:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-sm);
  border-color: var(--blue-line);
}
.intg .mk {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-tint);
  border: 1px solid var(--blue-line);
  font-size: 15px;
  font-weight: 700;
  color: var(--blue-deep);
  flex-shrink: 0;
}
.intg .nm {
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: -0.012em;
}
.intg .sub {
  font-size: 11.5px;
  color: var(--ink-50);
  margin-top: 1px;
}
.intg-foot {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  color: var(--ink-60);
}
.intg-foot svg {
  width: 16px;
  height: 16px;
  color: var(--blue-deep);
}

/* =================================================================
   LATEST DEVELOPMENTS — release timeline
================================================================= */
.dev-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.dev {
  display: grid;
  grid-template-columns: 160px 1fr auto;
  gap: 28px;
  align-items: center;
  padding: 24px 6px;
  border-bottom: 1px solid var(--line);
  transition: background 0.25s var(--ease);
}
.dev:hover {
  background: var(--paper-2);
}
.dev .when {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.03em;
  color: var(--ink-50);
  display: flex;
  align-items: center;
  gap: 10px;
}
.dev .when .tag {
  font-size: 9.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue-deep);
  background: var(--blue-tint);
  border: 1px solid var(--blue-line);
  padding: 3px 8px;
  border-radius: 100px;
}
.dev .when .tag.new {
  color: var(--pos);
  background: rgba(15, 157, 107, 0.08);
  border-color: rgba(15, 157, 107, 0.25);
}
.dev .main .t {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.016em;
}
.dev .main .d {
  font-size: 13.5px;
  color: var(--ink-60);
  margin-top: 4px;
  line-height: 1.5;
  max-width: 560px;
}
.dev .go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  white-space: nowrap;
}
.dev .go .arr {
  transition: transform 0.3s var(--ease);
}
.dev:hover .go .arr {
  transform: translateX(3px);
}

/* =================================================================
   NEWS / FEATURED IN — press
================================================================= */
.press-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.press-logos .pl {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink-40);
  padding: 8px 18px;
  border-radius: 10px;
  transition: color 0.25s var(--ease);
}
.press-logos .pl:hover {
  color: var(--ink-80);
}
.press-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 20px;
}
.press {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.press:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-line);
}
.press.feat {
  grid-row: span 1;
}
.press .src {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.press .src .pm {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
}
.press .src .nm {
  font-size: 13px;
  font-weight: 600;
}
.press .src .dt {
  font-family: var(--font-mono);
  font-size: 10.5px;
  color: var(--ink-40);
  margin-left: auto;
}
.press .hl {
  font-size: 18px;
  line-height: 1.32;
  letter-spacing: -0.016em;
  color: var(--ink-90);
  font-weight: 600;
  text-wrap: pretty;
  flex: 1;
}
.press.feat .hl {
  font-size: 23px;
  line-height: 1.25;
}
.press .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-top: 18px;
}
.press .more .arr {
  transition: transform 0.3s var(--ease);
}
.press:hover .more .arr {
  transform: translateX(3px);
}

/* =================================================================
   RELATED SOLUTIONS
================================================================= */
.sol-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.sol {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  background: var(--surface);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  min-height: 210px;
}
.sol:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-line);
}
.sol .se {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 12px;
}
.sol .st {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  margin-bottom: 9px;
}
.sol .sd {
  font-size: 14px;
  line-height: 1.55;
  color: var(--ink-60);
  flex: 1;
}
.sol .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 18px;
}
.sol .tags span {
  font-size: 11.5px;
  color: var(--ink-60);
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--paper-2);
  border: 1px solid var(--line);
}
.sol .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-top: 18px;
}
.sol .more .arr {
  transition: transform 0.3s var(--ease);
}
.sol:hover .more .arr {
  transform: translateX(3px);
}

/* =================================================================
   EVENTS — abstract gallery mosaic + testimonials
================================================================= */
.evt-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}
.evt {
  position: relative;
  overflow: hidden;
  border-radius: var(--r-l);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  color: #fff;
  box-shadow: var(--sh-sm);
  transition:
    transform 0.4s var(--ease),
    box-shadow 0.4s var(--ease);
}
.evt:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-lg);
}
.evt::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 30%,
    rgba(8, 18, 46, 0.62) 100%
  );
  z-index: 1;
}
.evt > * {
  position: relative;
  z-index: 2;
}
.evt.wide {
  grid-column: span 2;
}
.evt.tall {
  grid-row: span 2;
}
.evt .ek {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 7px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(6px);
  padding: 4px 9px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.evt .et {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.014em;
  line-height: 1.22;
  text-wrap: pretty;
}
.evt .em {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 5px;
}
.evt .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: 0 8px 24px rgba(8, 18, 46, 0.3);
  transition: transform 0.3s var(--ease);
}
.evt:hover .play {
  transform: translate(-50%, -50%) scale(1.08);
}
.evt .play svg {
  width: 20px;
  height: 20px;
  color: var(--blue-deep);
  margin-left: 2px;
}
.evt.testi {
  color: var(--ink);
  background: var(--surface);
}
.evt.testi::before {
  display: none;
}
.evt.testi .q {
  font-size: 14.5px;
  line-height: 1.4;
  font-weight: 500;
  letter-spacing: -0.012em;
  color: var(--ink-90);
  text-wrap: pretty;
}
.evt.testi .who {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.03em;
  color: var(--ink-40);
  margin-top: 12px;
}
/* abstract gradient fills */
.g1 {
  background: linear-gradient(150deg, #2f6bf6, #1640c4);
}
.g2 {
  background: linear-gradient(150deg, #0e2a6b, #3b78ff);
}
.g3 {
  background: linear-gradient(150deg, #123a8f, #5b8cff);
}
.g4 {
  background: linear-gradient(150deg, #1d4ed8, #0d1f47);
}
.g5 {
  background: linear-gradient(150deg, #3b78ff, #0e2a6b);
}
.evt-grain::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
}

/* =================================================================
   BLOG / CONTENT
================================================================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.post {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-l);
  overflow: hidden;
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease),
    border-color 0.35s var(--ease);
}
.post:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
  border-color: var(--blue-line);
}
.post .cover {
  height: 148px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}
.post .cover .cat {
  position: relative;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}
.post .cover::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 26px 26px;
}
.post .pbody {
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.post .pt {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.016em;
  line-height: 1.28;
  text-wrap: pretty;
}
.post .pd {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-60);
  margin-top: 9px;
  flex: 1;
}
.post .pmeta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-40);
}
.post .pmeta .dotb {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--ink-30);
}
.blog-foot {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}

/* =================================================================
   GALLERY — photos · achievements · news bento
================================================================= */
.gal-mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 16px;
}
.gal-tile {
  position: relative;
  border-radius: var(--r-l);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}
.gal-tile:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
.gal-tile.col2 {
  grid-column: span 2;
}
.gal-tile.row2 {
  grid-row: span 2;
}
.gal-tile image-slot {
  width: 100%;
  height: 100%;
  display: block;
}

/* photo tiles */
.gal-photo {
  background: var(--paper-3);
}
.gal-photo .cap {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 24px 16px 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: linear-gradient(180deg, transparent, rgba(8, 18, 46, 0.7));
  pointer-events: none;
}
.gal-photo .cap svg {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
}

/* achievement tiles */
.gal-ach {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  color: #fff;
}
.gal-ach > * {
  position: relative;
  z-index: 2;
}
.gal-ach .ico {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.16);
  display: grid;
  place-items: center;
}
.gal-ach .ico svg {
  width: 21px;
  height: 21px;
  color: #fff;
}
.gal-ach .ak {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.82);
  margin-bottom: 6px;
}
.gal-ach .at {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.018em;
  line-height: 1.2;
  text-wrap: pretty;
}

/* news tiles */
.gal-news {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  padding: 22px 24px;
}
.gal-news:hover {
  border-color: var(--blue-line);
}
.gal-news .src {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
}
.gal-news .pm {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: var(--ink);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}
.gal-news .nm {
  font-size: 12.5px;
  font-weight: 600;
}
.gal-news .dt {
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--ink-40);
  margin-left: auto;
}
.gal-news .hl {
  font-size: 15px;
  line-height: 1.32;
  font-weight: 600;
  letter-spacing: -0.014em;
  color: var(--ink-90);
  flex: 1;
  text-wrap: pretty;
}
.gal-news .more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--blue-deep);
  margin-top: 14px;
}
.gal-news .more .arr {
  transition: transform 0.3s var(--ease);
}
.gal-news:hover .more .arr {
  transform: translateX(3px);
}

/* anchor scroll offset for the fixed nav */
section[id],
header[id] {
  scroll-margin-top: 92px;
}
/* =================================================================
   GALLERY PHOTOS
================================================================= */
.gal-tile.gal-photo:has(.achievement-img) {
  position: relative !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: #1446a4;
}

.gal-tile.gal-photo .achievement-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.gal-tile.gal-photo .achievement-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  background: linear-gradient(
    to top,
    rgba(43, 80, 182, 0.92) 0%,
    rgba(0, 0, 0, 0.55) 35%,
    rgba(227, 218, 218, 0.08) 75%,
    transparent 100%
  );
  color: #fff;
  z-index: 2;
}
/* =================================================================
   ECOSYSTEM — family tabs + product cards (home)
================================================================= */
.eco-toggle {
  display: flex;
  width: max-content;
  margin: 0 auto 18px;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 4px;
  box-shadow: var(--sh-xs);
}
.eco-toggle button {
  font-size: 13px;
  font-weight: 550;
  color: var(--ink-60);
  padding: 8px 18px;
  border-radius: 100px;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}
.eco-toggle button:hover {
  color: var(--ink);
}
.eco-toggle button.active {
  background: linear-gradient(135deg, #3b78ff, #1d4ed8);
  color: #fff;
  box-shadow: var(--sh-blue);
}
.eco-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 16px;
}
.eco-tab {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 18px;
  border-radius: 100px;
  background: var(--surface);
  border: 1px solid var(--line-2);
  color: var(--ink-60);
  font-size: 14px;
  font-weight: 550;
  letter-spacing: -0.01em;
  cursor: pointer;
  transition:
    color 0.25s var(--ease),
    background 0.25s var(--ease),
    border-color 0.25s var(--ease),
    box-shadow 0.25s var(--ease);
}
.eco-tab .et-ic {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--eco);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: background 0.25s var(--ease);
}
.eco-tab .et-ic svg {
  width: 13px;
  height: 13px;
  color: #fff;
}
.eco-tab .et-n {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-40);
}
.eco-tab:hover {
  border-color: var(--eco);
  color: var(--ink);
  transform: translateY(-1px);
}
.eco-tab.active {
  background: var(--eco);
  border-color: var(--eco);
  color: #fff;
  box-shadow: 0 10px 24px rgba(8, 20, 60, 0.16);
}
.eco-tab.active .et-ic {
  background: rgba(255, 255, 255, 0.24);
}
.eco-tab.active .et-n {
  color: rgba(255, 255, 255, 0.82);
}

.eco-panel {
  display: grid;
  grid-template-columns: 296px 1fr;
  gap: 22px;
  align-items: start;
}
.eco-feature {
  position: sticky;
  top: 90px;
  overflow: hidden;
  border-radius: var(--r-l);
  padding: 28px;
  color: #fff;
  background: var(--eco);
  box-shadow: var(--sh-md);
  display: flex;
  flex-direction: column;
}
.eco-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(
    420px 240px at 80% 0%,
    rgba(255, 255, 255, 0.22),
    transparent 60%
  );
}
.eco-feature > * {
  position: relative;
  z-index: 1;
}
.ef-ic {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.2);
  display: grid;
  place-items: center;
}
.ef-ic svg {
  width: 27px;
  height: 27px;
  color: #fff;
}
.ef-kicker {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 20px;
}
.ef-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-top: 10px;
  text-wrap: pretty;
}
.ef-cta {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 22px;
  font-size: 13.5px;
  font-weight: 600;
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 10px 16px;
  border-radius: 100px;
  align-self: flex-start;
  transition: background 0.2s var(--ease);
}
.ef-cta:hover {
  background: rgba(255, 255, 255, 0.26);
}
.ef-cta .arr {
  transition: transform 0.2s var(--ease);
}
.ef-cta:hover .arr {
  transform: translateX(3px);
}
.eco-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(228px, 1fr));
  gap: 14px;
}
@media (max-width: 920px) {
  .eco-panel {
    grid-template-columns: 1fr;
  }
  .eco-feature {
    position: static;
  }
}
.eco-card {
  display: flex;
  flex-direction: column;
  padding: 20px 20px 16px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-top: 3px solid var(--eco);
  border-radius: var(--r-m);
  box-shadow: var(--sh-xs);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
  animation: ecoIn 0.5s var(--ease-out) both;
}
.eco-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-md);
}
@keyframes ecoIn {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.ec-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 15px;
}
.ec-ic {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}
.ec-ic svg {
  width: 21px;
  height: 21px;
  color: var(--eco);
}
.eco-card:hover .ec-ic {
  transform: scale(1.08) rotate(-3deg);
}
.ec-stat {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--eco);
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 5px 11px;
  white-space: nowrap;
}
.ec-head {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.ec-name {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-50);
  margin-top: 8px;
  line-height: 1.35;
}
.ec-go {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--eco);
  margin-top: auto;
  padding-top: 16px;
  transition: gap 0.2s var(--ease);
}
.ec-go .arr {
  transition: transform 0.2s var(--ease);
}
.eco-card:hover .ec-go .arr {
  transform: translateX(3px);
}
@media (prefers-reduced-motion: reduce) {
  .eco-card {
    animation: none;
  }
}

/* =================================================================
   AI COMMAND CENTER HERO — prompt-first, centered
================================================================= */
.hero-vica .hero-inner {
  padding: 54px 0 86px;
}
.hv-shell {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 1;
}
.hv-shell .hero-chip {
  margin-bottom: 20px;
}
.hero-vica .vica-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 15px;
}
.hero-vica .vica-eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-tint);
}
.hv-shell h1 {
  text-align: center;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
.hv-shell .lede {
  margin: 18px auto 0;
  color: var(--ink-60);
  max-width: 560px;
}

/* command bar */
.cmd-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  max-width: 620px;
  margin: 36px auto 0;
  padding: 15px 16px 15px 17px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow:
    0 6px 28px rgba(13, 31, 71, 0.08),
    0 1px 2px rgba(13, 31, 71, 0.05);
  text-align: left;
}
.cmd-spark {
  width: 36px;
  height: 36px;
  border-radius: 11px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #3b78ff, #1d4ed8);
  display: grid;
  place-items: center;
  box-shadow: 0 5px 14px rgba(47, 107, 246, 0.34);
}
.cmd-spark svg {
  width: 19px;
  height: 19px;
  color: #fff;
}
.cmd-text {
  flex: 1;
  min-width: 0;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--ink-40);
  font-weight: 450;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s var(--ease);
}
.cmd-text.filled {
  color: var(--ink);
  font-weight: 500;
}
.cmd-caret {
  display: inline-block;
  width: 2px;
  height: 18px;
  vertical-align: -3px;
  margin-left: 2px;
  background: var(--blue);
  animation: cmdblink 1.1s steps(1) infinite;
}
.cmd-text.filled .cmd-caret {
  display: none;
}
@keyframes cmdblink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}
.cmd-ask {
  flex-shrink: 0;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: var(--blue-deep);
  background: var(--blue-tint);
  border-radius: 11px;
  padding: 9px 15px;
}

/* goal chips */
.cmd-goals {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 9px;
  margin-top: 16px;
  max-width: 660px;
}
.cmd-goal {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-80);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 100px;
  padding: 9px 16px;
  cursor: pointer;
  transition:
    color 0.2s var(--ease),
    background 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.cmd-goal:hover {
  border-color: var(--blue-line);
  color: var(--blue-deep);
  background: var(--blue-tint);
  transform: translateY(-1px);
}
.cmd-goal.active {
  background: linear-gradient(135deg, #3b78ff, #1d4ed8);
  color: #fff;
  border-color: transparent;
  box-shadow: var(--sh-blue);
}

.hv-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 38px;
}
@media (max-width: 760px) {
  .cmd-ask {
    display: none;
  }
  .hv-cta {
    margin-top: 32px;
  }
}

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1080px) {
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .explore-grid {
    grid-template-columns: 1fr 1fr;
  }
  .vica-shell {
    grid-template-columns: 1fr;
  }
  .intg-grid {
    grid-template-columns: 1fr 1fr;
  }
  .press-grid {
    grid-template-columns: 1fr 1fr;
  }
  .sol-grid {
    grid-template-columns: 1fr 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr 1fr;
  }
  .evt-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
  .gal-mosaic {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 860px) {
  .dev {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: flex-start;
  }
  .dev .go {
    margin-top: 4px;
  }
}
@media (max-width: 600px) {
  .mv-cards {
    grid-template-columns: 1fr;
  }
  .explore-grid {
    grid-template-columns: 1fr;
  }
  .intg-grid {
    grid-template-columns: 1fr;
  }
  .press-grid {
    grid-template-columns: 1fr;
  }
  .sol-grid {
    grid-template-columns: 1fr;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .evt-mosaic {
    grid-template-columns: 1fr;
  }
  .evt.wide {
    grid-column: span 1;
  }
  .gal-mosaic {
    grid-template-columns: 1fr;
  }
  .gal-tile.col2 {
    grid-column: span 1;
  }
  .gal-tile.row2 {
    grid-row: span 1;
  }
  .vica-left,
  .vica-right {
    padding: 28px 22px;
  }
}
/* ================================================================
   PRODUCT DEMO VIDEO
================================================================ */

.pd-demo-wrap {
  margin-top: 24px;
}

.pd-demo-inner {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
}

.pd-demo-video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: fill;
  /* background: #000; */
}

/* Optional: nicer video controls on hover */
.pd-demo-video:hover {
  cursor: pointer;
}
/* Nav — clean white */
nav {
  background: rgba(255, 255, 255, 0.045) !important;
  backdrop-filter: blur(18px) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}
a.nav-active {
  color: #1e58c3 !important;
}
.hero-heading {
  position: relative;
  top: -40px;
  text-align: center;
  margin-bottom: -29px;
}

.hero-challenge-title {
  margin: 0;
  /* font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif; */
  font-size: clamp(2.5rem, 3.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.04em;

  color: #ffffff;
}

.hero-challenge-subtitle {
  margin-top: 10px;
  /* font-family: 'General Sans', -apple-system, BlinkMacSystemFont, sans-serif; */
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.35);

  letter-spacing: -0.01em;
}
/* ===== Mobile ===== */
@media (max-width: 768px) {
  .hero-heading {
    top: 0;
    margin: 0 0 28px;
    padding: 0 20px;
    transform: none;
  }

  .hero-challenge-title {
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
  }

  .hero-challenge-subtitle {
    margin-top: 10px;
    font-size: 1rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.78);
  }

  .hero-voice-layout {
    gap: 24px;
  }

  .hv-voice-side {
    padding-left: 0;
  }
}
.yt-thumb-link {
  position: absolute;
  inset: 0;
  display: block;
  cursor: pointer;
}
.yt-play-badge {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.15s ease;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.4));
}
.yt-thumb-link:hover .yt-play-badge {
  transform: translate(-50%, -50%) scale(1.08);
}
.yt-thumb-link .yt-caption {
  position: absolute;
  left: 14px;
  bottom: 12px;
  right: 14px;
  z-index: 3;
  background: rgba(5, 12, 28, 0.75);
  padding: 6px 12px;
  border-radius: 8px;
  backdrop-filter: blur(4px);
  font-size: 0.85rem;
  line-height: 1.3;
  color: #fff;
  font-weight: 500;
  margin: 0;
}
