:root {
  --bg-dark: #060b17;
  --card-bg: rgba(7, 14, 30, 0.72);
  --card-border: rgba(255, 255, 255, 0.18);
  --text-main: #f4f6fb;
  --text-soft: #c5cde4;
  --accent: #ef454d;
  --accent-soft: #3f7bd5;
  --icon-bg: rgba(255, 255, 255, 0.1);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

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

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

body {
  background: var(--bg-dark);
  color: var(--text-main);
  font-family: "Manrope", "Segoe UI", Tahoma, sans-serif;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.background-slider {
  position: fixed;
  inset: 0;
  z-index: -3;
  overflow: hidden;
}

.bg-slide {
  position: absolute;
  inset: -2%;
  background-color: #090f1f;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.04);
  transition: opacity 1.4s ease, transform 7.5s ease;
  animation: bgSlideCycle 19.2s infinite;
}

.bg-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.bg-slide:nth-of-type(1) {
  animation-delay: 0s;
}

.bg-slide:nth-of-type(2) {
  animation-delay: 6.4s;
}

.bg-slide:nth-of-type(3) {
  animation-delay: 12.8s;
}

.bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.7;
}

.bg-glow-a {
  width: min(58vw, 700px);
  height: min(58vw, 700px);
  top: -20vh;
  left: -14vw;
  background: radial-gradient(circle, rgba(61, 106, 190, 0.48), rgba(61, 106, 190, 0) 72%);
  animation: pulseA 8s ease-in-out infinite;
}

.bg-glow-b {
  width: min(45vw, 540px);
  height: min(45vw, 540px);
  right: -10vw;
  bottom: -22vh;
  background: radial-gradient(circle, rgba(241, 79, 85, 0.42), rgba(241, 79, 85, 0) 74%);
  animation: pulseB 9s ease-in-out infinite;
}

.bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(130deg, rgba(2, 5, 13, 0.74), rgba(4, 10, 24, 0.55) 42%, rgba(6, 15, 31, 0.82)),
    radial-gradient(circle at 18% 30%, rgba(55, 103, 190, 0.22), rgba(55, 103, 190, 0) 55%),
    radial-gradient(circle at 85% 76%, rgba(229, 78, 95, 0.15), rgba(229, 78, 95, 0) 58%);
}

.page-shell {
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 38px);
}

.coming-soon-card {
  width: min(1220px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: clamp(18px, 2.2vw, 30px);
  padding: clamp(18px, 2.2vw, 30px);
  border-radius: 34px;
  border: 1px solid var(--card-border);
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-panel {
  position: relative;
}

.video-frame {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  height: 100%;
  min-height: clamp(270px, 38vw, 540px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4);
}

.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 28px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0));
  z-index: 1;
}

.video-frame video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

.content-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6px, 1vw, 12px);
}

.brand-logo {
  width: min(100%, 440px);
  margin: 0 0 4px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.eyebrow {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  font-size: 0.76rem;
  color: #f3bbc1;
}

h1 {
  margin: 0 0 10px;
  font-family: "Rajdhani", "Trebuchet MS", sans-serif;
  font-size: clamp(2rem, 5.2vw, 3.55rem);
  line-height: 0.94;
  letter-spacing: 0.01em;
  text-wrap: balance;
}

.lead {
  margin: 0 0 clamp(14px, 2vw, 24px);
  color: var(--text-soft);
  font-size: clamp(0.95rem, 1.25vw, 1.1rem);
  max-width: 54ch;
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.contact-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 10px 12px;
  border-radius: 16px;
  color: #e9eeff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(8, 16, 35, 0.45);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-list a:hover {
  transform: translateY(-1px);
  border-color: rgba(234, 85, 95, 0.55);
  background: rgba(15, 28, 58, 0.72);
}

.icon-wrap {
  width: 40px;
  height: 40px;
  min-width: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(150deg, rgba(237, 72, 82, 0.31), rgba(45, 109, 201, 0.34));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.icon-wrap svg {
  width: 21px;
  height: 21px;
  stroke: #ffffff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.reveal {
  opacity: 0;
  transform: translateY(16px);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.delay-1.is-visible {
  transition-delay: 0.13s;
}

@media (max-width: 980px) {
  .coming-soon-card {
    grid-template-columns: 1fr;
  }

  .video-frame {
    min-height: min(58vh, 390px);
  }

  .content-panel {
    padding-inline: clamp(2px, 0.5vw, 8px);
  }
}

@media (max-width: 640px) {
  .coming-soon-card {
    border-radius: 24px;
    padding: 14px;
  }

  .video-frame {
    border-radius: 18px;
    min-height: min(44vh, 290px);
  }

  .brand-logo {
    width: min(86vw, 320px);
  }

  .contact-list a {
    align-items: flex-start;
    min-height: 56px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bg-slide,
  .reveal,
  .reveal.is-visible {
    transition: none !important;
    transform: none !important;
  }

  .bg-glow-a,
  .bg-glow-b {
    animation: none !important;
  }
}

@keyframes pulseA {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(3%, 5%) scale(1.04);
  }
}

@keyframes pulseB {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(-4%, -5%) scale(1.06);
  }
}

@keyframes bgSlideCycle {
  0%,
  30% {
    opacity: 1;
    transform: scale(1);
  }
  33%,
  100% {
    opacity: 0;
    transform: scale(1.04);
  }
}
