:root {
  --navy-950: #041225;
  --navy-900: #071c36;
  --navy-850: #0a2748;
  --navy-800: #0d3159;

  --blue: #1769ff;
  --blue-soft: #78a9ff;
  --cyan: #18d4ca;
  --green: #3ce29a;

  --ink: #102039;
  --text: #415269;
  --muted: #718096;

  --white: #ffffff;
  --offwhite: #f6f9fc;
  --line: #dfe8f1;

  --shadow:
    0 24px 70px rgba(4, 18, 37, 0.10);

  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --container: 1180px;
}


* {
  box-sizing: border-box;
}


html {
  scroll-behavior: smooth;
}


body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;

  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}


a {
  color: inherit;
  text-decoration: none;
}


button,
a {
  -webkit-tap-highlight-color: transparent;
}


.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}


.section {
  position: relative;
  padding: 120px 0;
}


h1,
h2,
h3,
p {
  margin-top: 0;
}


h1,
h2,
h3 {
  letter-spacing: -0.04em;
}


h1 {
  margin-bottom: 28px;
  font-size: clamp(3.3rem, 7vw, 6.9rem);
  line-height: 0.98;
  font-weight: 650;
}


h2 {
  margin-bottom: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.03;
  font-weight: 630;
}


h1 span,
h2 span {
  color: var(--blue);
}


.eyebrow {
  margin-bottom: 22px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}


.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;

  background:
    rgba(255, 255, 255, 0.86);

  border-bottom:
    1px solid rgba(223, 232, 241, 0.72);

  backdrop-filter: blur(18px);
}


.nav-wrap {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}


.brand {
  display: inline-flex;
  align-items: flex-start;
  gap: 5px;

  font-weight: 800;
  letter-spacing: -0.06em;
}


.brand-mark {
  font-size: 1.4rem;
  color: var(--navy-950);
}


.brand-dash {
  color: var(--cyan);
}


.brand-24 {
  margin-top: -2px;
  color: var(--blue);
  font-size: 0.82rem;
  letter-spacing: -0.03em;
}


.nav-links {
  display: flex;
  gap: 30px;
  align-items: center;

  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}


.nav-links a {
  transition: color 180ms ease;
}


.nav-links a:hover {
  color: var(--blue);
}


.nav-cta {
  padding: 11px 17px;
  border: 1px solid var(--line);
  border-radius: 999px;
}


.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 10px;
}


.nav-toggle span {
  display: block;
  width: 23px;
  height: 2px;
  margin: 5px 0;
  background: var(--navy-950);
}


.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;

  padding-top: 155px;

  overflow: hidden;

  background:
    linear-gradient(
      135deg,
      #ffffff 0%,
      #f7fbff 48%,
      #eff8ff 100%
    );
}


.hero-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 70px;
  align-items: center;
}


.hero-lead {
  max-width: 720px;

  margin-bottom: 38px;

  color: var(--text);
  font-size: clamp(1.08rem, 1.7vw, 1.34rem);
  line-height: 1.7;
}


.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;

  margin-bottom: 34px;
}


.button {
  min-height: 52px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  padding: 0 24px;

  border-radius: 999px;

  font-size: 0.92rem;
  font-weight: 750;

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}


.button:hover {
  transform: translateY(-2px);
}


.button-primary {
  color: var(--white);
  background: var(--blue);

  box-shadow:
    0 12px 28px rgba(23, 105, 255, 0.24);
}


.button-primary:hover {
  box-shadow:
    0 18px 34px rgba(23, 105, 255, 0.32);
}


.button-secondary {
  color: var(--navy-900);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}


.button-large {
  min-height: 60px;
  padding: 0 30px;
}


.hero-proof {
  display: flex;
  align-items: center;
  gap: 10px;

  color: var(--muted);
  font-size: 0.82rem;
}


.proof-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: var(--green);

  box-shadow:
    0 0 0 6px rgba(60, 226, 154, 0.13);
}


.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  pointer-events: none;
}


.hero-glow-one {
  width: 430px;
  height: 430px;
  top: 0;
  right: 9%;

  background:
    radial-gradient(
      circle,
      rgba(23, 105, 255, 0.18),
      transparent 67%
    );
}


.hero-glow-two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  left: 8%;

  background:
    radial-gradient(
      circle,
      rgba(24, 212, 202, 0.14),
      transparent 70%
    );
}


.care-visual {
  min-height: 600px;
  display: grid;
  place-items: center;
}


.care-orbit {
  position: relative;

  width: min(520px, 92vw);
  aspect-ratio: 1;

  border-radius: 50%;
}


.orbit-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(23, 105, 255, 0.18);
}


.orbit-ring-one {
  inset: 12%;
}


.orbit-ring-two {
  inset: 29%;
  border-style: dashed;

  animation:
    rotateRing 25s linear infinite;
}


.care-center {
  position: absolute;
  z-index: 4;

  width: 170px;
  height: 170px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: var(--white);

  background:
    radial-gradient(
      circle at 30% 20%,
      #1769ff,
      #071c36 80%
    );

  box-shadow:
    0 30px 70px rgba(7, 28, 54, 0.28);
}


.care-center strong {
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}


.care-center-small {
  color: rgba(255,255,255,0.65);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}


.care-node {
  position: absolute;
  z-index: 3;

  min-width: 110px;

  padding: 12px 14px;

  text-align: center;

  border:
    1px solid rgba(23, 105, 255, 0.13);

  border-radius: 14px;

  color: var(--navy-900);

  background:
    rgba(255, 255, 255, 0.90);

  box-shadow:
    0 12px 35px rgba(4,18,37,0.08);

  font-size: 0.78rem;
  font-weight: 750;

  backdrop-filter: blur(10px);
}


.care-node span {
  display: block;

  margin-bottom: 3px;

  color: var(--blue);

  font-size: 0.6rem;
  letter-spacing: 0.08em;
}


.node-consulta {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}


.node-estudios {
  top: 18%;
  right: 1%;
}


.node-resultados {
  right: -2%;
  bottom: 22%;
}


.node-revision {
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}


.node-tratamiento {
  left: 1%;
  bottom: 20%;
}


.node-seguimiento {
  top: 20%;
  left: -1%;
}


.node-especialista {
  top: 49%;
  right: -10%;
}


@keyframes rotateRing {
  to {
    transform: rotate(360deg);
  }
}


.section-heading {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  align-items: start;

  margin-bottom: 70px;
}


.section-index {
  margin-top: 12px;

  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}


.problem-section {
  background: var(--white);
}


.problem-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 90px;
  align-items: center;
}


.problem-copy {
  max-width: 560px;
}


.large-copy {
  color: var(--navy-950);

  font-size: clamp(1.6rem, 3vw, 2.45rem);
  line-height: 1.35;
  letter-spacing: -0.035em;
}


.problem-copy > p:not(.large-copy) {
  color: var(--text);
  font-size: 1.06rem;
}


blockquote {
  margin: 38px 0 0;
  padding: 24px 0 24px 28px;

  border-left: 3px solid var(--cyan);

  color: var(--navy-850);
  font-size: 1.12rem;
  font-weight: 650;
}


.fragment-card {
  padding: 42px;

  border:
    1px solid var(--line);

  border-radius: var(--radius-xl);

  background: var(--offwhite);

  box-shadow: var(--shadow);
}


.fragment-row {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: 14px;
  align-items: center;

  min-height: 64px;
}


.fragment-label {
  font-weight: 700;
}


.fragment-line {
  height: 2px;

  background:
    linear-gradient(
      90deg,
      var(--blue),
      var(--cyan)
    );
}


.fragment-line.broken {
  background:
    repeating-linear-gradient(
      90deg,
      #ff9f7f 0,
      #ff9f7f 8px,
      transparent 8px,
      transparent 15px
    );
}


.fragment-status {
  color: var(--muted);
  font-size: 0.78rem;
}


.fragment-status.warning {
  color: #bf5d3f;
  font-weight: 750;
}


.model-section {
  color: var(--white);
  background: var(--navy-950);
}


.model-section h2,
.tech-section h2,
.laredo-section h2 {
  color: var(--white);
}


.model-section h2 span,
.tech-section h2 span,
.laredo-section h2 span {
  color: var(--cyan);
}


.model-section .eyebrow,
.tech-section .eyebrow,
.laredo-section .eyebrow {
  color: var(--cyan);
}


.model-section .section-index {
  color: var(--cyan);
}


.section-intro {
  max-width: 760px;

  margin:
    -25px 0 70px 98px;

  color: rgba(255,255,255,0.66);

  font-size: 1.12rem;
}


.journey {
  display: grid;

  grid-template-columns:
    1fr auto
    1fr auto
    1fr auto
    1fr auto
    1fr;

  gap: 14px;
  align-items: stretch;
}


.journey-step {
  min-height: 230px;

  padding: 24px;

  display: flex;
  flex-direction: column;

  border:
    1px solid rgba(255,255,255,0.11);

  border-radius: 20px;

  background:
    rgba(255,255,255,0.045);
}


.journey-number {
  margin-bottom: 55px;

  color: var(--cyan);

  font-size: 0.65rem;
  letter-spacing: 0.15em;
}


.journey-step strong {
  margin-bottom: 12px;
  font-size: 1.15rem;
}


.journey-step p {
  margin-bottom: 0;

  color: rgba(255,255,255,0.6);
  font-size: 0.86rem;
}


.highlight-step {
  background:
    linear-gradient(
      145deg,
      rgba(23,105,255,0.28),
      rgba(24,212,202,0.11)
    );
}


.journey-arrow {
  display: grid;
  place-items: center;

  color: rgba(255,255,255,0.26);

  font-size: 1.25rem;
}


.north-star {
  margin-top: 50px;

  display: flex;
  gap: 30px;
  align-items: center;

  padding-top: 28px;

  border-top:
    1px solid rgba(255,255,255,0.12);
}


.north-star > span {
  color: var(--cyan);
  font-size: 0.65rem;
  font-weight: 850;
  letter-spacing: 0.16em;
}


.north-star p {
  margin: 0;

  font-size: clamp(1.4rem, 2.4vw, 2.1rem);
  letter-spacing: -0.03em;
}


.audiences-section {
  background: var(--offwhite);
}


.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}


.audience-card {
  min-height: 600px;

  padding: 42px;

  display: flex;
  flex-direction: column;

  border:
    1px solid var(--line);

  border-radius: var(--radius-xl);

  background: var(--white);

  box-shadow:
    0 14px 50px rgba(4,18,37,0.06);
}


.audience-business {
  color: var(--white);

  background:
    linear-gradient(
      145deg,
      var(--navy-900),
      #0d3f73
    );

  border-color: transparent;
}


.audience-top {
  display: flex;
  justify-content: space-between;
  align-items: center;

  margin-bottom: 90px;
}


.audience-code {
  font-size: 0.68rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}


.audience-icon {
  width: 42px;
  height: 42px;

  display: grid;
  place-items: center;

  border-radius: 50%;

  color: var(--blue);
  background: var(--offwhite);

  font-size: 1.25rem;
}


.audience-business .audience-icon {
  color: var(--navy-900);
  background: var(--cyan);
}


.audience-card h3 {
  margin-bottom: 15px;

  font-size: 2.3rem;
}


.audience-lead {
  color: var(--text);
  font-size: 1.08rem;
}


.audience-business .audience-lead {
  color: rgba(255,255,255,0.65);
}


.audience-card ul {
  margin: 25px 0 45px;
  padding: 0;
  list-style: none;
}


.audience-card li {
  padding: 12px 0;

  border-bottom:
    1px solid var(--line);

  font-size: 0.92rem;
}


.audience-business li {
  border-bottom-color:
    rgba(255,255,255,0.10);
}


.audience-quote {
  margin-top: auto;
  margin-bottom: 0;

  color: var(--blue);
  font-size: 1.04rem;
  font-weight: 650;
}


.audience-business .audience-quote {
  color: var(--cyan);
}


.network-section {
  overflow: hidden;
}


.network-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 100px;
  align-items: center;
}


.network-copy h2 {
  margin-bottom: 30px;
}


.network-copy > p {
  max-width: 590px;

  color: var(--text);
  font-size: 1.08rem;
}


.network-principle {
  margin-top: 36px;

  display: flex;
  gap: 16px;

  padding: 22px;

  border:
    1px solid var(--line);

  border-radius: var(--radius-md);

  background: var(--offwhite);
}


.principle-dot {
  flex: 0 0 auto;

  width: 10px;
  height: 10px;

  margin-top: 7px;

  border-radius: 50%;
  background: var(--green);
}


.network-principle p {
  margin: 0;

  color: var(--text);
  font-size: 0.9rem;
}


.network-map {
  position: relative;

  min-height: 590px;
}


.network-center {
  position: absolute;
  z-index: 4;

  width: 180px;
  height: 180px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  display: grid;
  place-content: center;
  text-align: center;

  border-radius: 50%;

  color: var(--white);

  background:
    linear-gradient(
      145deg,
      var(--blue),
      var(--navy-900)
    );

  box-shadow:
    0 28px 70px rgba(23,105,255,0.25);
}


.network-center span {
  font-weight: 850;
  letter-spacing: -0.04em;
}


.network-center small {
  margin-top: 3px;

  opacity: 0.65;

  font-size: 0.56rem;
  letter-spacing: 0.15em;
}


.network-map::before,
.network-map::after {
  content: "";

  position: absolute;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  border-radius: 50%;

  border:
    1px solid var(--line);
}


.network-map::before {
  width: 430px;
  height: 430px;
}


.network-map::after {
  width: 300px;
  height: 300px;

  border-style: dashed;
}


.network-item {
  position: absolute;
  z-index: 3;

  min-width: 120px;

  padding: 13px 18px;

  text-align: center;

  border:
    1px solid var(--line);

  border-radius: 999px;

  background: var(--white);

  box-shadow:
    0 12px 30px rgba(4,18,37,0.07);

  font-size: 0.82rem;
  font-weight: 700;
}


.network-doctor {
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}


.network-nurse {
  top: 23%;
  right: 3%;
}


.network-lab {
  bottom: 20%;
  right: 1%;
}


.network-pharmacy {
  bottom: 4%;
  left: 50%;
  transform: translateX(-50%);
}


.network-specialist {
  bottom: 20%;
  left: 0;
}


.network-imaging {
  top: 23%;
  left: 4%;
}


.tech-section {
  background: var(--navy-950);
}


.tech-panel {
  padding: 72px;

  border:
    1px solid rgba(255,255,255,0.10);

  border-radius: var(--radius-xl);

  background:
    linear-gradient(
      140deg,
      rgba(255,255,255,0.045),
      rgba(23,105,255,0.10)
    );
}


.tech-copy {
  max-width: 850px;
}


.tech-copy p {
  max-width: 700px;

  margin-top: 30px;

  color: rgba(255,255,255,0.64);
  font-size: 1.08rem;
}


.roles-grid {
  margin-top: 70px;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 26px;
  align-items: stretch;
}


.role-card {
  min-height: 270px;

  padding: 35px;

  border-radius: var(--radius-lg);
}


.robbie-card {
  color: var(--navy-950);
  background: var(--cyan);
}


.human-card {
  color: var(--white);

  border:
    1px solid rgba(255,255,255,0.14);

  background:
    rgba(255,255,255,0.055);
}


.role-kicker {
  margin-bottom: 58px;

  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}


.role-card h3 {
  margin-bottom: 12px;

  font-size: 2rem;
}


.role-card p {
  margin-bottom: 0;
  opacity: 0.75;
}


.role-divider {
  display: grid;
  place-items: center;

  color: var(--cyan);

  font-size: 2rem;
}


.laredo-section {
  color: var(--white);

  background:
    radial-gradient(
      circle at 85% 0%,
      #164e87 0,
      transparent 35%
    ),
    var(--navy-900);
}


.laredo-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 90px;
  align-items: center;
}


.laredo-copy p {
  max-width: 650px;

  color: rgba(255,255,255,0.67);
  font-size: 1.07rem;
}


.validation-panel {
  padding: 34px;

  border:
    1px solid rgba(255,255,255,0.12);

  border-radius: var(--radius-xl);

  background:
    rgba(255,255,255,0.055);

  backdrop-filter: blur(12px);
}


.validation-label {
  display: block;

  margin-bottom: 25px;

  color: var(--cyan);

  font-size: 0.63rem;
  font-weight: 850;
  letter-spacing: 0.15em;
}


.validation-item {
  display: flex;
  align-items: center;
  gap: 20px;

  padding: 16px 0;

  border-bottom:
    1px solid rgba(255,255,255,0.10);

  font-size: 0.94rem;
}


.validation-item:last-child {
  border-bottom: 0;
}


.validation-item span {
  color: rgba(255,255,255,0.35);
  font-size: 0.66rem;
}


.final-cta {
  margin-top: 120px;

  padding-top: 90px;

  text-align: center;

  border-top:
    1px solid rgba(255,255,255,0.12);
}


.final-cta h2 {
  max-width: 900px;

  margin:
    0 auto 25px;
}


.final-cta p {
  margin-bottom: 34px;

  color: rgba(255,255,255,0.60);
}


.site-footer {
  padding: 45px 0;

  color: rgba(255,255,255,0.55);
  background: var(--navy-950);

  border-top:
    1px solid rgba(255,255,255,0.08);
}


.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: end;
}


.footer-brand .brand-mark {
  color: var(--white);
}


.site-footer p {
  margin: 9px 0 0;
  font-size: 0.76rem;
}


.footer-note {
  text-align: right;
}


.footer-note p {
  max-width: 520px;
  margin-left: auto;
}


.reveal {
  opacity: 0;
  transform: translateY(18px);

  transition:
    opacity 700ms ease,
    transform 700ms ease;
}


.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .orbit-ring-two {
    animation: none;
  }
}


@media (max-width: 1020px) {

  .hero-grid,
  .problem-layout,
  .network-grid,
  .laredo-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 20px;
  }

  .care-visual {
    min-height: 560px;
  }

  .problem-layout,
  .network-grid,
  .laredo-grid {
    gap: 55px;
  }

  .journey {
    grid-template-columns: 1fr;
  }

  .journey-arrow {
    transform: rotate(90deg);
  }

  .section-intro {
    margin-left: 0;
  }

}


@media (max-width: 780px) {

  .section {
    padding: 90px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;

    top: 78px;
    left: 20px;
    right: 20px;

    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 5px;

    padding: 18px;

    border:
      1px solid var(--line);

    border-radius: 18px;

    background: rgba(255,255,255,0.97);

    box-shadow:
      0 20px 50px rgba(4,18,37,0.12);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 11px 10px;
  }

  .nav-cta {
    border-radius: 10px;
  }

  .hero {
    min-height: auto;
    padding-top: 130px;
  }

  h1 {
    font-size: clamp(3.1rem, 15vw, 5.3rem);
  }

  .care-visual {
    min-height: 490px;
  }

  .care-orbit {
    width: min(410px, 96vw);
  }

  .care-center {
    width: 135px;
    height: 135px;
  }

  .care-node {
    min-width: 90px;
    padding: 9px 10px;
    font-size: 0.68rem;
  }

  .node-especialista {
    right: -2%;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .section-index {
    margin: 0;
  }

  .audience-grid,
  .roles-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
    padding: 30px;
  }

  .audience-top {
    margin-bottom: 55px;
  }

  .tech-panel {
    padding: 38px 26px;
  }

  .role-divider {
    min-height: 45px;
  }

  .network-map {
    min-height: 500px;
  }

  .network-map::before {
    width: 340px;
    height: 340px;
  }

  .network-map::after {
    width: 230px;
    height: 230px;
  }

  .network-item {
    min-width: 98px;
    padding: 10px 12px;
    font-size: 0.72rem;
  }

  .footer-note {
    text-align: left;
  }

  .footer-note p {
    margin-left: 0;
  }

}


@media (max-width: 520px) {

  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .hero-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .care-visual {
    min-height: 430px;
  }

  .care-orbit {
    transform: scale(0.92);
  }

  .fragment-card {
    padding: 25px 20px;
  }

  .fragment-row {
    grid-template-columns: 95px 1fr;
  }

  .fragment-status {
    grid-column: 2;
  }

  .network-map {
    transform: scale(0.92);
  }

}
