:root {
  --bg: #07111f;
  --card: rgba(9, 22, 39, 0.72);
  --card-border: rgba(255, 255, 255, 0.16);
  --text: #f6fbff;
  --muted: rgba(246, 251, 255, 0.72);
  --cyan: #4de7ff;
  --blue: #4d7dff;
  --violet: #a66cff;
  --green: #58f2b2;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 18%, rgba(77, 231, 255, 0.2), transparent 28%),
    radial-gradient(circle at 82% 12%, rgba(166, 108, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #07111f 0%, #0b1830 48%, #050914 100%);
  font-family: Inter, Arial, sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  pointer-events: none;
  content: '';
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle, #000 0%, transparent 78%);
}

.page-shell {
  position: relative;
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 32px;
}

.construction-card {
  position: relative;
  z-index: 1;
  width: min(1080px, 100%);
  padding: clamp(24px, 4vw, 56px);
  overflow: hidden;
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background: var(--card);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(24px);
  animation: cardReveal 900ms ease both;
}

.construction-card::before {
  position: absolute;
  inset: -2px;
  z-index: -1;
  content: '';
  background: linear-gradient(120deg, transparent 0%, rgba(77, 231, 255, 0.22) 35%, rgba(166, 108, 255, 0.22) 65%, transparent 100%);
  transform: translateX(-65%);
  animation: shine 6s ease-in-out infinite;
}

.brand-row,
.footer-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand img {
  display: block;
  width: auto;
  height: clamp(48px, 6vw, 82px);
  max-width: min(260px, 52vw);
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.32));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.06);
  font-size: 14px;
  font-weight: 600;
}

.status-pill span {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(88, 242, 178, 0.72);
  animation: pulse 1.7s infinite;
}

.hero-content {
  max-width: 820px;
  padding: clamp(54px, 8vw, 100px) 0 42px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(42px, 8vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.07em;
}

.lead {
  max-width: 720px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}

.time-box {
  position: relative;
  min-height: 150px;
  padding: 26px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.075);
}

.time-box::after {
  position: absolute;
  right: -34px;
  bottom: -44px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  content: '';
  background: radial-gradient(circle, rgba(77, 231, 255, 0.24), transparent 68%);
}

.time-box strong {
  display: block;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.time-box span {
  display: block;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.progress-wrap {
  height: 8px;
  margin: 28px 0 34px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-bar {
  width: 48%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--cyan), var(--violet), var(--green));
  animation: progressGlow 2.6s ease-in-out infinite alternate;
}

.footer-row {
  color: var(--muted);
}

.footer-row p {
  margin: 0;
}

.contact-link {
  flex: 0 0 auto;
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
}

.contact-link:hover {
  color: var(--cyan);
}

.orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(4px);
  opacity: 0.72;
  pointer-events: none;
}

.orb-one {
  top: 12%;
  left: 8%;
  width: 190px;
  height: 190px;
  background: radial-gradient(circle, rgba(77, 231, 255, 0.42), transparent 70%);
  animation: floatOne 10s ease-in-out infinite;
}

.orb-two {
  right: 7%;
  bottom: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(166, 108, 255, 0.42), transparent 70%);
  animation: floatTwo 12s ease-in-out infinite;
}

.orb-three {
  right: 26%;
  top: 9%;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(88, 242, 178, 0.34), transparent 70%);
  animation: floatThree 9s ease-in-out infinite;
}

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

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

@keyframes shine {
  0%, 45% {
    transform: translateX(-72%);
  }

  70%, 100% {
    transform: translateX(72%);
  }
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(88, 242, 178, 0.72);
  }

  70% {
    box-shadow: 0 0 0 12px rgba(88, 242, 178, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(88, 242, 178, 0);
  }
}

@keyframes progressGlow {
  from {
    width: 36%;
    filter: saturate(1);
  }

  to {
    width: 76%;
    filter: saturate(1.8);
  }
}

@keyframes floatOne {
  50% {
    transform: translate(38px, 46px) scale(1.12);
  }
}

@keyframes floatTwo {
  50% {
    transform: translate(-42px, -30px) scale(0.92);
  }
}

@keyframes floatThree {
  50% {
    transform: translate(28px, 54px) scale(1.22);
  }
}

@media (max-width: 760px) {
  .page-shell {
    padding: 18px;
  }

  .construction-card {
    border-radius: 24px;
  }

  .brand-row,
  .footer-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .countdown {
    grid-template-columns: repeat(2, 1fr);
  }

  .time-box {
    min-height: 122px;
  }
}

@media (max-width: 440px) {
  .countdown {
    grid-template-columns: 1fr;
  }
}
