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

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

body {
  font-family: 'Lora', Georgia, 'Times New Roman', serif;
  background: #000000;
  color: #f3eee7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.landing__video-wrap {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #000000;
}

.landing__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity 1.8s ease-in-out;
}

.landing__video.is-active {
  opacity: 1;
}

.landing__video-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 45%, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.2) 45%, rgba(0, 0, 0, 0.65) 100%);
  pointer-events: none;
}

.landing {
  position: relative;
  z-index: 1;
  min-height: 100dvh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 24px;
}

@media (max-width: 768px) {
  .landing {
    justify-content: center;
    padding-top: max(24px, env(safe-area-inset-top));
    padding-right: max(24px, env(safe-area-inset-right));
    padding-bottom: max(24px, env(safe-area-inset-bottom));
    padding-left: max(24px, env(safe-area-inset-left));
  }
}

.landing__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.landing__brand {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 14px;
  width: 100%;
  max-width: 520px;
  margin-bottom: -4px;
}

.landing__brand-side {
  display: flex;
  align-items: center;
  gap: 10px;
}

.landing__brand-side--left {
  justify-content: flex-end;
}

.landing__brand-side--right {
  justify-content: flex-start;
}

.landing__brand-side--left .landing__line {
  background: linear-gradient(90deg, transparent 0%, #c5a059 40%, #e8c878 100%);
}

.landing__brand-side--right .landing__line {
  background: linear-gradient(90deg, #e8c878 0%, #c5a059 60%, transparent 100%);
}

.landing__star {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  color: #e8c878;
}

.landing__line {
  width: 36px;
  height: 1px;
  flex-shrink: 0;
}

.landing__title {
  margin: 0;
  font-size: clamp(18px, 5vw, 24px);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
  color: #c5a059;
  text-align: center;
  margin-right: -0.22em;
}

.landing__description {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.6;
  text-align: center;
}

.landing__description-primary {
  margin: 0;
}

.landing__description-secondary {
  margin: 6px 0 0;
  color: #ffffff;
  opacity: 0.6;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.landing__description-break {
  display: none;
}

@media (max-width: 768px) {
  .landing__description-break {
    display: block;
  }
}

@media (min-width: 769px) {
  .landing__description {
    font-size: 18px;
  }

  .landing__description-secondary {
    font-size: 14px;
  }
}

.landing__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 280px);
  padding: 16px 32px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  text-decoration: none;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffffff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.08);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 8px 24px rgba(0, 0, 0, 0.25);
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .landing__button:hover {
    transform: scale(1.03);
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.16),
      0 10px 28px rgba(0, 0, 0, 0.3);
  }
}

.landing__button:active {
  transform: scale(0.98);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    inset 0 2px 6px rgba(0, 0, 0, 0.2),
    0 4px 12px rgba(0, 0, 0, 0.2);
}

@media (prefers-reduced-motion: reduce) {
  .landing__video-wrap {
    display: none;
  }

  .landing__button {
    transition: none;
  }

  .landing__button:hover,
  .landing__button:active {
    transform: none;
  }
}
