@font-face {
  font-family: "Manrope";
  src: url("../assets/fonts/manrope-v20-cyrillic_latin-500.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #edf0e8;
  --ink: #171311;
  --accent: #536451;
}

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

html,
body {
  min-height: 100%;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.placeholder {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.placeholder-media,
.placeholder-video,
.placeholder-fallback,
.placeholder-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.placeholder-video {
  object-fit: cover;
  z-index: 1;
}

.placeholder-video.is-ready + .placeholder-fallback {
  opacity: 0;
}

.placeholder-fallback {
  z-index: 0;
  background:
    linear-gradient(rgba(21, 17, 15, 0.12), rgba(21, 17, 15, 0.12)),
    url("../assets/images/hero-poster.svg") center/cover no-repeat;
  transition: opacity 320ms ease;
}

.placeholder-overlay {
  z-index: 2;
  background:
    linear-gradient(180deg, rgba(18, 22, 18, 0.46) 0%, rgba(18, 22, 18, 0.2) 24%, rgba(235, 240, 233, 0.18) 58%, rgba(235, 240, 233, 0.82) 100%),
    linear-gradient(90deg, rgba(235, 240, 233, 0.18) 0%, rgba(235, 240, 233, 0.06) 40%, rgba(235, 240, 233, 0.18) 100%);
}

.placeholder-content {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  justify-items: center;
  gap: 18px;
  padding: 32px;
  text-align: center;
}

.placeholder-logo-shell {
  padding: 18px 48px;
  border-radius: 999px;
  background: rgba(247, 249, 245, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px);
  box-shadow:
    0 20px 48px rgba(14, 18, 15, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.placeholder-logo {
  display: block;
  width: min(68vw, 260px);
  height: auto;
}

.placeholder-status {
  margin: 0;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(242, 246, 239, 0.72);
  border: 1px solid rgba(83, 100, 81, 0.14);
  color: rgba(23, 19, 17, 0.84);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

@media (max-width: 640px) {
  .placeholder-logo-shell {
    padding: 16px 34px;
  }

  .placeholder-logo {
    width: min(64vw, 210px);
  }
}
