@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800;900&family=Orbitron:wght@500;700;900&display=swap");

:root {
  --bg: #06101f;
  --panel: #0b1628;
  --panel-2: #0e1a2e;
  --line: rgba(75, 169, 223, 0.18);
  --text: #f4f8ff;
  --muted: #9bb7d8;
  --cyan: #08a9d6;
  --green: #00d664;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 50% 8%, rgba(0, 166, 216, 0.16), transparent 34rem),
    linear-gradient(180deg, #07101f 0%, #04101f 44%, #06101f 100%);
  font-family: Inter, Arial, sans-serif;
}

body:has(.startup-splash:not(.is-hidden)) {
  overflow: hidden;
}

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

.startup-splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #020a15;
  opacity: 1;
  transition: opacity 0.7s ease, visibility 0.7s ease;
}

.startup-splash.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.startup-splash img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.splash-timer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14px;
  background: rgba(0, 10, 22, 0.72);
  box-shadow: 0 -10px 34px rgba(0, 174, 220, 0.22);
}

.splash-timer span {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, #00d664, #08a9d6, #59e8ff);
  animation: splashProgress 5s linear forwards;
}

@keyframes splashProgress {
  to {
    width: 100%;
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 102px;
  padding: 18px 38px;
  border-bottom: 1px solid var(--line);
  background: rgba(5, 14, 28, 0.94);
  backdrop-filter: blur(16px);
}

.brand {
  font-family: Orbitron, Arial Black, sans-serif;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.05;
}

.brand strong {
  display: block;
  font-size: 23px;
}

.brand span {
  display: block;
  margin-top: 6px;
  color: var(--green);
  font-size: 15px;
  letter-spacing: 0.42em;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 30px;
  color: #8da4bd;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 34px;
  border: 1px solid rgba(0, 174, 220, 0.55);
  border-radius: 999px;
  background: var(--cyan);
  color: #00121c;
  font-weight: 900;
}

.button.secondary {
  background: transparent;
  color: var(--cyan);
}

.button:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 30px rgba(0, 172, 220, 0.28);
}

.section {
  max-width: 1520px;
  margin: 0 auto;
  padding: 86px 34px;
}

.hero-image-card {
  overflow: hidden;
  max-width: 1360px;
  margin: 0 auto;
  border: 1px solid rgba(0, 174, 220, 0.14);
  border-radius: 28px;
  background: #071427;
  box-shadow: 0 26px 90px rgba(0, 0, 0, 0.36);
}

.hero-image-card img {
  display: block;
  width: 100%;
}

.top-network-panel {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 174, 220, 0.18);
  background: #06101f;
}

.top-network-panel img {
  display: block;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
}

.welcome-image-panel {
  padding-top: 28px;
  padding-bottom: 34px;
}

.welcome-image-panel .hero-image-card {
  max-width: 1292px;
}

.hero-copy {
  text-align: center;
}

.hero-copy h1 {
  font-size: clamp(40px, 5.44vw, 93px);
}

.eyebrow {
  margin: 0 0 28px;
  color: var(--cyan);
  font-family: Orbitron, Arial Black, sans-serif;
  font-size: 17px;
  letter-spacing: 0.5em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Orbitron, Arial Black, sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(50px, 6.8vw, 116px);
  font-weight: 900;
}

h2 {
  font-size: clamp(38px, 4.4vw, 72px);
}

h3 {
  font-size: 21px;
}

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

.green {
  color: var(--green);
}

.hero-copy p,
.section-intro {
  max-width: 850px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 25px;
  line-height: 1.45;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin: 44px 0 36px;
}

.chip {
  min-width: 150px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(13, 29, 51, 0.9);
  font-weight: 900;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 42px;
}

.network-map {
  margin-top: 22px;
}

.services {
  background: linear-gradient(180deg, rgba(3, 14, 28, 0.1), rgba(4, 15, 30, 0.72));
}

.section-title {
  margin-bottom: 70px;
  text-align: center;
}

.medical-app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.medical-app-grid img {
  display: block;
  width: 100%;
  height: auto;
  border: 2px solid rgba(59, 159, 255, 0.42);
  border-radius: 28px;
  background: var(--panel);
  box-shadow:
    0 16px 46px rgba(0, 0, 0, 0.32),
    0 0 0 1px rgba(8, 169, 214, 0.14),
    inset 0 0 28px rgba(8, 169, 214, 0.16);
}

.medical-app-link:nth-child(-n + 22) img {
  border-color: transparent;
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.32);
}

.medical-app-link {
  display: block;
  position: relative;
  border-radius: 28px;
  isolation: isolate;
}

.medical-app-link::after {
  content: "";
  position: absolute;
  inset: -5px;
  z-index: 1;
  pointer-events: none;
  border: 2px solid rgba(0, 214, 100, 0);
  border-radius: 32px;
  opacity: 0;
  box-shadow: 0 0 0 rgba(0, 214, 100, 0);
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.medical-app-link:hover::after,
.medical-app-link:focus-visible::after {
  opacity: 1;
  border-color: rgba(0, 255, 132, 0.9);
  box-shadow:
    0 0 18px rgba(0, 255, 132, 0.72),
    0 0 42px rgba(0, 214, 100, 0.46),
    0 0 78px rgba(0, 214, 100, 0.28);
}

.medical-app-link:hover img,
.medical-app-link:focus-visible img {
  border-color: rgba(0, 255, 132, 0.84);
  filter: brightness(1.08);
  transform: translateY(-4px);
  box-shadow:
    0 20px 58px rgba(0, 0, 0, 0.38),
    0 0 22px rgba(0, 255, 132, 0.48),
    0 0 54px rgba(0, 214, 100, 0.28);
}

.medical-app-link img {
  transition: transform 0.2s ease, filter 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.service-card {
  overflow: hidden;
  min-height: 410px;
  border: 1px solid rgba(89, 157, 221, 0.16);
  border-radius: 18px;
  background: var(--panel);
  box-shadow: 0 12px 42px rgba(0, 0, 0, 0.18);
}

.service-card .visual {
  position: relative;
  height: 190px;
  overflow: hidden;
}

.service-card .visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 32%, rgba(8, 18, 33, 0.94) 100%);
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.launch {
  position: absolute;
  left: 50%;
  bottom: 24px;
  z-index: 2;
  transform: translateX(-50%);
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--cyan);
  color: #00121c;
  font-family: Orbitron, Arial Black, sans-serif;
  font-size: 13px;
  font-weight: 900;
}

.service-card .body {
  padding: 28px 24px 30px;
}

.service-card p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.about-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}

.about-copy p {
  color: var(--muted);
  font-size: 24px;
  line-height: 1.55;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 42px;
}

.stat strong {
  display: block;
  color: var(--cyan);
  font-family: Orbitron, Arial Black, sans-serif;
  font-size: 38px;
}

.stat span {
  color: var(--muted);
}

.value-list {
  display: grid;
  gap: 20px;
}

.value-item {
  padding: 22px 28px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(11, 27, 48, 0.78);
}

.value-item h3 {
  margin-bottom: 8px;
}

.value-item p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-card,
.contact-note {
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(13, 27, 48, 0.92);
}

.contact-info {
  display: grid;
  gap: 34px;
}

.contact-row span {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-family: Orbitron, Arial Black, sans-serif;
}

.contact-row strong {
  font-size: 21px;
}

.contact-note {
  max-width: 570px;
  margin-top: 52px;
  padding: 34px 30px;
}

.contact-note p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-card {
  padding: 40px;
}

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

label {
  display: grid;
  gap: 12px;
  color: var(--muted);
  font-size: 18px;
}

input,
textarea {
  width: 100%;
  border: 1px solid rgba(116, 165, 220, 0.13);
  border-radius: 10px;
  background: #111d32;
  color: var(--text);
  font: inherit;
  padding: 18px;
}

textarea,
.wide {
  grid-column: 1 / -1;
}

textarea {
  min-height: 126px;
  resize: vertical;
}

.contact-card .button {
  width: 100%;
  margin-top: 24px;
}

.stitched {
  padding-top: 30px;
}

.stitched-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--panel);
}

.stitched-panel img {
  display: block;
  width: 100%;
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1520px;
  margin: 0 auto;
  padding: 56px 34px 72px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  font-family: Orbitron, Arial Black, sans-serif;
  color: var(--text);
  font-weight: 900;
}

.footer-links {
  display: flex;
  gap: 34px;
}

@media (max-width: 1100px) {
  .medical-app-grid,
  .cards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
  }

  .nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-left: auto;
  gap: 30px;
  color: #8da4bd;
  font-weight: 700;
}

  .section {
    padding: 58px 20px;
  }

  .cards-grid,
  .medical-app-grid,
  .stats,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .footer {
    align-items: stretch;
    flex-direction: column;
  }
}
.welcome-image-panel .hero-image-card {
  position: relative;
  isolation: isolate;
  max-width: 1292px;
}

.welcome-image-panel .hero-image-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background-image: inherit;
  background: radial-gradient(circle at 18% 24%, rgba(89, 232, 255, 0.34), transparent 12%), radial-gradient(circle at 72% 38%, rgba(0, 214, 100, 0.24), transparent 16%), radial-gradient(circle at 52% 72%, rgba(8, 169, 214, 0.28), transparent 18%);
  mix-blend-mode: screen;
  animation: welcomeDissolveGlow 2s ease-out forwards;
}

.welcome-image-panel .hero-image-card img {
  margin-top: -0.5in;
  margin-bottom: -0.5in;
  animation: welcomeImageAssemble 2s cubic-bezier(0.18, 0.84, 0.24, 1) both;
  transform-origin: center;
  will-change: opacity, filter, transform, clip-path;
}

@keyframes welcomeImageAssemble {
  0% {
    opacity: 0;
    filter: blur(22px) saturate(1.8) brightness(1.28);
    transform: scale(1.045) translate3d(0, 18px, 0);
    clip-path: polygon(0 0, 14% 0, 14% 18%, 28% 18%, 28% 0, 48% 0, 48% 22%, 67% 22%, 67% 0, 100% 0, 100% 100%, 80% 100%, 80% 78%, 62% 78%, 62% 100%, 38% 100%, 38% 76%, 18% 76%, 18% 100%, 0 100%);
  }

  38% {
    opacity: 0.58;
    filter: blur(12px) saturate(1.55) brightness(1.18);
    transform: scale(1.028) translate3d(0, 10px, 0);
  }

  72% {
    opacity: 0.88;
    filter: blur(4px) saturate(1.22) brightness(1.08);
    transform: scale(1.01) translate3d(0, 3px, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  100% {
    opacity: 1;
    filter: blur(0) saturate(1) brightness(1);
    transform: scale(1) translate3d(0, 0, 0);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}

@keyframes welcomeDissolveGlow {
  0% {
    opacity: 1;
    filter: blur(20px);
    transform: scale(1.08);
  }

  65% {
    opacity: 0.58;
  }

  100% {
    opacity: 0;
    filter: blur(2px);
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .welcome-image-panel .hero-image-card::before,
  .welcome-image-panel .hero-image-card img {
    animation: none;
  }
}
