:root {
  --bg: #03070a;
  --text: #f7f1e3;
  --muted: rgba(247, 241, 227, 0.72);
  --line: rgba(255, 255, 255, 0.16);
  --card: rgba(4, 13, 18, 0.4);
  --card-border: rgba(255, 255, 255, 0.12);
  --accent: #cda45e;
  --accent-soft: rgba(205, 164, 94, 0.22);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
}

body {
  font-family: "Manrope", sans-serif;
}

button {
  font: inherit;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background:
    radial-gradient(circle at top, rgba(205, 164, 94, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(2, 7, 10, 0.15), rgba(2, 7, 10, 0.82));
}

.background-video,
.video-tint,
.video-grid,
.vignette {
  position: absolute;
  inset: 0;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: scale(1);
  filter: saturate(1.08) contrast(1.04) brightness(1);
}

.video-tint {
  background:
    linear-gradient(135deg, rgba(7, 17, 22, 0.01), rgba(2, 8, 11, 0.08)),
    radial-gradient(circle at 20% 20%, rgba(205, 164, 94, 0.05), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(33, 76, 88, 0.04), transparent 30%);
}

.video-grid {
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.85) 18%, black);
}

.vignette {
  background:
    radial-gradient(circle at center, transparent 58%, rgba(0, 0, 0, 0.07) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.06));
}

.hero {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 28px 24px 24px;
}

.brand-mark {
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 16px;
  text-transform: uppercase;
  letter-spacing: 0.6rem;
  font-size: 0.72rem;
  color: rgba(247, 241, 227, 0.7);
}

.brand-mark__name {
  font-family: "Cinzel", serif;
  color: var(--text);
}

.brand-mark__line {
  width: min(18vw, 88px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
}

.content-card {
  width: min(900px, 100%);
  padding: clamp(40px, 7vh, 72px) clamp(16px, 3vw, 28px) clamp(16px, 2.5vh, 24px);
  text-align: center;
  animation: rise 1.1s ease-out both;
}

.reveal {
  opacity: 0;
  will-change: transform, opacity, filter;
}

.reveal-title {
  animation: revealUp 1.05s cubic-bezier(0.2, 0.8, 0.2, 1) 0.15s forwards;
}

.reveal-copy {
  animation: revealUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.38s forwards;
}

.reveal-soon {
  animation: revealUp 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.55s forwards;
}

.reveal-divider {
  animation: revealLine 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) 0.72s forwards;
  transform-origin: center;
}

.reveal-english {
  animation: revealUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.84s forwards;
}

.reveal-social {
  animation: revealUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 1s forwards;
}

h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(2.7rem, 7vw, 5rem);
  line-height: 0.9;
  letter-spacing: -0.04em;
  text-wrap: balance;
  max-width: 10ch;
  margin-inline: auto;
}

.lead {
  max-width: 22ch;
  margin: 18px auto 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.45;
  color: rgba(247, 241, 227, 0.9);
}

.soon {
  margin: 20px 0 0;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.divider {
  width: min(100%, 420px);
  height: 1px;
  margin: 22px auto 16px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  box-shadow: 0 0 24px var(--accent-soft);
}

.english-block {
  display: grid;
  gap: 6px;
  color: rgba(247, 241, 227, 0.92);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.45;
  max-width: 34ch;
  margin-inline: auto;
}

.english-block p {
  margin: 0;
}

.english-block__soon {
  margin-top: 4px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.social-link {
  position: relative;
  min-width: 210px;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 14px 22px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03)),
    rgba(5, 12, 16, 0.14);
  backdrop-filter: blur(10px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 30px rgba(0, 0, 0, 0.14);
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.social-link::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.06), transparent 40%, rgba(205, 164, 94, 0.12));
  opacity: 0.9;
  pointer-events: none;
}

.social-link:hover {
  transform: translateY(-3px) scale(1.01);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05)),
    rgba(5, 12, 16, 0.2);
  border-color: rgba(255, 255, 255, 0.38);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.social-link__label,
.social-link__accent {
  position: relative;
  z-index: 1;
}

.social-link__accent {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 30% 30%, #ffd48c, transparent 36%),
    linear-gradient(135deg, #f3b56b, #8b4cff 52%, #ff4f70 100%);
  box-shadow: 0 0 22px rgba(205, 164, 94, 0.24);
}

.sound-toggle,
.audio-gate {
  position: relative;
  z-index: 3;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(4, 10, 14, 0.18);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.sound-toggle {
  position: fixed;
  left: 4px;
  top: 4px;
  width: 52px;
  height: 52px;
  padding: 0;
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, background 180ms ease, opacity 180ms ease, box-shadow 180ms ease;
}

.sound-toggle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sound-toggle:hover {
  transform: translateY(-2px);
  background: rgba(9, 19, 24, 0.28);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
}

.audio-gate {
  position: fixed;
  inset: 0;
  width: 100%;
  padding: 0;
  background: transparent;
  cursor: pointer;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

@keyframes revealLine {
  from {
    opacity: 0;
    transform: scaleX(0.3);
    filter: blur(8px);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
    filter: blur(0);
  }
}

@media (max-width: 720px) {
  .hero {
    padding: 18px 16px 16px;
  }

  .brand-mark {
    top: 22px;
    gap: 8px;
    letter-spacing: 0.28rem;
    font-size: 0.58rem;
  }

  .content-card {
    width: min(100%, 420px);
    padding: 54px 8px 8px;
  }

  h1 {
    font-size: clamp(2.2rem, 14vw, 3.5rem);
    line-height: 0.94;
    max-width: 9ch;
  }

  .lead {
    max-width: 20ch;
    margin-top: 14px;
  }

  .lead,
  .english-block {
    font-size: 0.94rem;
  }

  .sound-toggle {
    left: 4px;
    top: 4px;
    width: 44px;
    height: 44px;
  }

  .social-links {
    gap: 10px;
    margin-top: 18px;
  }

  .social-link {
    width: min(100%, 220px);
    min-width: 0;
    padding: 13px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
  }

  .social-link__accent {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }
}

@media (max-height: 820px) {
  .brand-mark {
    top: 18px;
  }

  .content-card {
    padding-top: 44px;
  }

  h1 {
    font-size: clamp(2.4rem, 6.2vw, 4.4rem);
  }

  .lead {
    margin-top: 14px;
  }

  .soon {
    margin-top: 16px;
  }

  .divider {
    margin: 18px auto 14px;
  }

  .social-links {
    margin-top: 18px;
  }
}
