/* ─── Coming Soon (prod landing) ─── */
:root {
  --cyan: #9af8ff;
  --white: #ffffff;
  --header-h: 69px;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-sans: 'Oxygen', 'DM Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

body {
  min-height: 100%;
  font-family: var(--font-sans);
  background: #000;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

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

/* ─── Header ─── */
.cs-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--white);
  padding: 6px clamp(16px, 5vw, 80px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cs-header__inner {
  display: flex;
  align-items: center;
  max-width: 1408px;
  margin: 0 auto;
}

.cs-header__logo img {
  height: 57px;
  width: auto;
}

/* ─── Hero ─── */
.cs-hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--header-h) + 48px) clamp(16px, 5vw, 80px) 48px;
  overflow: hidden;
}

.cs-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.cs-hero__bg picture {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
}

.cs-hero__bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% top;
  transform-origin: 76% 42%;
  will-change: transform;
  animation: cs-heart-beat 2.6s ease-in-out infinite;
}

@keyframes cs-heart-beat {
  0%,
  100% {
    transform: scale(1);
  }
  12% {
    transform: scale(1.02);
  }
  24% {
    transform: scale(1);
  }
  36% {
    transform: scale(1.012);
  }
  48% {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .cs-hero__bg-image {
    animation: none;
  }
}

.cs-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 30%, rgba(0, 0, 0, 0.1) 44%, transparent 52%),
    linear-gradient(64.28deg, rgba(253, 41, 27, 0.55) 6%, rgba(253, 41, 27, 0.18) 36%, rgba(253, 41, 27, 0) 54%);
}

.cs-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 640px;
}

.cs-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  margin-bottom: 28px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cyan);
}

.cs-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 400;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 12px;
}

.cs-hero__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 400;
  line-height: 1.35;
  color: var(--white);
  margin-bottom: 36px;
}

/* ─── Services strip ─── */
.cs-services {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 22px;
  align-items: center;
  max-width: fit-content;
}

.cs-service {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cs-service__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cs-service__icon img {
  width: 26px;
  height: 26px;
}

.cs-service__icon--blood { background: #ffe1e1; border-color: #fdb9b9; }
.cs-service__icon--genetic { background: #e8d9ff; border-color: #d3b9fc; }
.cs-service__icon--genetic img { transform: rotate(45deg); }
.cs-service__icon--ct { background: #c2f9fb; border-color: #79eaed; }
.cs-service__icon--doctor { background: #ffe7cd; border-color: #f1c495; }

.cs-service__label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--white);
}

.cs-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 28px;
  font-size: 15px;
  color: var(--white);
}

.cs-location img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.cs-location strong {
  color: var(--cyan);
  font-weight: 700;
}

/* ─── Mobile ─── */
@media (max-width: 768px) {
  :root { --header-h: 67px; }

  .cs-header__logo img { height: 47px; }

  .cs-hero {
    padding: calc(var(--header-h) + 24px) 16px 32px;
    align-items: flex-start;
  }

  .cs-hero__bg-image {
    object-position: 24% top;
    transform-origin: 58% 40%;
  }

  .cs-hero__overlay {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 100%),
      linear-gradient(106.95deg, rgba(253, 41, 27, 0.6) 3.25%, rgba(253, 41, 27, 0.195) 39.88%, rgba(253, 41, 27, 0) 57.56%);
  }

  .cs-hero__eyebrow {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 20px;
  }

  .cs-hero__subtitle {
    font-size: 20px;
    margin-bottom: 28px;
  }

  .cs-services {
    gap: 8px;
    width: 100%;
    max-width: 100%;
    justify-content: space-between;
  }

  .cs-service {
    flex: 1;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .cs-service__icon {
    width: 36px;
    height: 36px;
  }

  .cs-service__icon img { width: 20px; height: 20px; }

  .cs-service__label { font-size: 10px; }
}
