: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;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
  color: var(--text);
}

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

button {
  font: inherit;
}

.page-shell {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  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 {
  left: -3%;
  right: auto;
  width: 104%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
  transform: none;
  filter: saturate(1.22) contrast(1.18) brightness(1.08);
}

.video-tint {
  background:
    linear-gradient(90deg, rgba(2, 7, 10, 0.18), rgba(2, 7, 10, 0.06) 34%, rgba(2, 7, 10, 0.08) 66%, rgba(2, 7, 10, 0.2)),
    linear-gradient(180deg, rgba(2, 7, 10, 0.1), rgba(2, 7, 10, 0) 40%, rgba(2, 7, 10, 0.14)),
    radial-gradient(ellipse at center, rgba(2, 7, 10, 0.22), rgba(2, 7, 10, 0.06) 44%, rgba(2, 7, 10, 0.28) 100%);
}

.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 54%, rgba(0, 0, 0, 0.22) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.16));
}

.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  height: 100svh;
  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 {
  position: relative;
  isolation: isolate;
  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;
}

.content-card::before {
  content: "";
  position: absolute;
  inset: clamp(24px, 4vw, 48px) max(0px, calc(50% - 340px)) 0;
  z-index: -1;
  border-radius: 28px;
  background:
    radial-gradient(ellipse at center, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.2) 50%, transparent 74%);
  pointer-events: none;
}

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

.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-shop {
  animation: revealUp 0.95s cubic-bezier(0.2, 0.8, 0.2, 1) 0.68s forwards;
}

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

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

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

h1 {
  margin: 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.7rem, 3.8vw, 3rem);
  line-height: 0.96;
  letter-spacing: 0;
  margin-inline: auto;
  text-shadow:
    0 3px 8px rgba(0, 0, 0, 0.55),
    0 16px 34px rgba(0, 0, 0, 0.48);
}

h1 span {
  display: block;
}

.lead {
  max-width: 29ch;
  margin: 14px auto 0;
  font-size: clamp(0.88rem, 1.18vw, 1rem);
  line-height: 1.42;
  color: rgba(255, 250, 238, 0.96);
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.72);
}

.soon {
  margin: 16px 0 0;
  font-size: clamp(0.96rem, 1.45vw, 1.28rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.72),
    0 0 24px rgba(0, 0, 0, 0.55);
}

.shop-callout {
  width: min(100%, 520px);
  margin: 18px auto 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.shop-callout__text {
  width: min(100%, 38ch);
  margin: 0;
  color: rgba(255, 250, 238, 0.94);
  font-size: clamp(0.8rem, 0.95vw, 0.9rem);
  line-height: 1.44;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.72);
}

.shop-button {
  position: relative;
  isolation: isolate;
  min-height: 52px;
  width: min(100%, 500px);
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #180f05;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 14px 18px;
  border: 1px solid rgba(255, 223, 160, 0.92);
  border-radius: 999px;
  background:
    linear-gradient(135deg, #fff1c6 0%, #e5b665 42%, #b98233 100%);
  box-shadow:
    0 0 0 8px rgba(205, 164, 94, 0.1),
    0 16px 42px rgba(205, 164, 94, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.shop-button::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.5), transparent 42%, rgba(255, 255, 255, 0.28));
  transform: translateX(-58%);
  transition: transform 420ms ease;
}

.shop-button:hover {
  transform: translateY(-3px) scale(1.01);
  filter: saturate(1.08);
  box-shadow:
    0 0 0 10px rgba(205, 164, 94, 0.13),
    0 22px 52px rgba(205, 164, 94, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.shop-button:hover::before {
  transform: translateX(54%);
}

.shop-button__label,
.shop-button__arrow {
  position: relative;
  z-index: 1;
}

.shop-button__arrow {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: rgba(24, 15, 5, 0.14);
  font-size: 1.05rem;
  line-height: 1;
}

.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(255, 250, 238, 0.92);
  font-size: clamp(0.92rem, 1.2vw, 1rem);
  line-height: 1.45;
  max-width: 34ch;
  margin-inline: auto;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.74);
}

.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 {
  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);
}

.audio-gate {
  position: relative;
  z-index: 3;
  border: 0;
  background: transparent;
  color: var(--text);
}

.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(24px);
  }

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

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

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

@keyframes revealLine {
  from {
    opacity: 0;
    transform: scaleX(0.3);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@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: 28px 8px 8px;
  }

  h1 {
    font-size: clamp(1.6rem, 8.5vw, 2.3rem);
    line-height: 0.98;
  }

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

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

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

  .shop-callout {
    margin-top: 20px;
    gap: 12px;
  }

  .shop-callout__text {
    max-width: 30ch;
    font-size: 0.78rem;
  }

  .shop-button {
    min-height: 50px;
    width: min(100%, 350px);
    padding: 13px 14px;
    font-size: 0.62rem;
    letter-spacing: 0.03em;
  }

  .shop-button__arrow {
    width: 24px;
    height: 24px;
  }

  .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: 28px;
  }

  h1 {
    font-size: clamp(1.65rem, 3.5vw, 2.8rem);
  }

  .lead {
    margin-top: 14px;
  }

  .soon {
    margin-top: 16px;
  }

  .shop-callout {
    margin-top: 18px;
  }

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

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