/* schk health coming-soon page. Self-contained: no CDN, no shared platform CSS. */

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('./assets/fonts/inter-latin-400.woff2') format('woff2');
  unicode-range:
    U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329,
    U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --font-sans:
    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial,
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  background: #f8f4f1;
}

.cs-shell {
  position: relative;
  min-height: 100vh;
  padding: 14px;
  background: #f8f4f1;
  font-family: var(--font-sans);
}

.cs-plate {
  position: relative;
  min-height: calc(100vh - 28px);
  border-radius: 24px;
  overflow: hidden;
  background: #3a332e;
}

/* The plate tracks the shell, so a mobile browser's collapsing toolbar cannot
   push the plate past the shell and create a scrollbar. */
@supports (min-height: 100svh) {
  .cs-shell {
    min-height: 100svh;
  }
  .cs-plate,
  .cs-inner {
    min-height: calc(100svh - 28px);
  }
}

.cs-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  pointer-events: none;
  border: none;
  background: transparent;
  filter: brightness(1.18) saturate(0.16) sepia(0.28) contrast(1.02);
}

/* Until the film is bought the element holds only a comment, so it is :empty and
   never paints. Uncommenting its source in index.html brings it back on its own. */
.cs-video:empty {
  display: none;
}

.cs-scrim {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(40, 34, 30, 0.44) 0%,
    rgba(40, 34, 30, 0.22) 32%,
    rgba(40, 34, 30, 0.26) 62%,
    rgba(40, 34, 30, 0.5) 100%
  );
}

.cs-inner {
  position: relative;
  z-index: 2;
  min-height: calc(100vh - 28px);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 34px 46px 34px;
}

.cs-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cs-logo {
  width: 196px;
  height: 64px;
  display: block;
}

.cs-status {
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 1px 14px rgba(40, 34, 30, 0.6);
  white-space: nowrap;
}

.cs-hero {
  flex: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 216px 0 44px;
}

.cs-title {
  margin: 0;
  max-width: none;
  text-shadow: 0 2px 26px rgba(40, 34, 30, 0.42);
  font-size: clamp(32px, 4.2vw, 60px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.03em;
  color: #ffffff;
  text-wrap: balance;
}

.cs-sub {
  margin: 22px 0 0;
  max-width: 46ch;
  text-shadow: 0 1px 18px rgba(40, 34, 30, 0.5);
  font-size: clamp(14px, 1.15vw, 16.5px);
  font-weight: 200;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.82);
  text-wrap: pretty;
}

.cs-foot {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 100%;
}

.cs-areas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 22px;
  max-width: 760px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cs-areas li {
  font-size: 12.5px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.78);
  text-shadow: 0 1px 12px rgba(40, 34, 30, 0.55);
  white-space: nowrap;
}

.cs-legal {
  margin: 0;
  max-width: 420px;
  font-size: 11px;
  font-weight: 200;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.62);
  text-shadow: 0 1px 12px rgba(40, 34, 30, 0.55);
}

@media (max-width: 900px) {
  .cs-shell {
    padding: 10px;
  }
  .cs-plate {
    border-radius: 18px;
  }
  .cs-inner {
    padding: 26px 24px 26px;
  }
  .cs-areas {
    gap: 4px 14px;
  }
  .cs-legal {
    max-width: none;
  }
  .cs-foot {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}

@media (max-width: 560px) {
  .cs-status {
    display: none;
  }
}
