:root {
  --bg: #050816;
  --bg-2: #0a1020;
  --card: rgba(10, 16, 32, 0.6);
  --card-strong: rgba(255, 255, 255, 0.06);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f4f7ff;
  --muted: #a9b4c8;
  --muted-2: #7f8aa3;
  --blue: #84a9ff;
  --cyan: #7ce7ff;
  --green: #8bf0c8;
  --shadow: 0 20px 80px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Inter, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(73, 110, 255, 0.16), transparent 28%),
    radial-gradient(circle at bottom right, rgba(82, 215, 184, 0.12), transparent 26%),
    linear-gradient(135deg, var(--bg) 0%, var(--bg-2) 100%);
  overflow-x: hidden;
  position: relative;
}

.logo-frame {
  padding: 10px 16px;
  border-radius: 16px;
  background: rgba(5,10,25,0.55);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
}

.bg-grid {
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 90%);
  pointer-events: none;
}

.bg-glow {
  position: fixed;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.9;
}

.glow-1 {
  width: 420px;
  height: 420px;
  top: 8%;
  left: 10%;
  background: rgba(88, 116, 255, 0.18);
  animation: floatOne 14s ease-in-out infinite alternate;
}

.glow-2 {
  width: 380px;
  height: 380px;
  right: 8%;
  bottom: 10%;
  background: rgba(83, 225, 193, 0.14);
  animation: floatTwo 16s ease-in-out infinite alternate;
}

.noise {
  position: fixed;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

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

.hero-card {
  width: min(1120px, 100%);
  border: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-radius: 32px;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(132, 169, 255, 0.1), transparent 24%),
    radial-gradient(circle at bottom right, rgba(139, 240, 200, 0.08), transparent 24%);
  pointer-events: none;
}

.hero-top {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.brand-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 700;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, rgba(132,169,255,0.26), rgba(124,231,255,0.18));
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
}

.brand-name {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.brand-logo-shell {
  padding: 8px 12px;
  border-radius: 14px;
  background: rgba(4, 10, 24, 0.5);
  border: 1px solid rgba(255,255,255,0.07);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter:
    brightness(1.18)
    contrast(1.1)
    drop-shadow(0 0 8px rgba(255,255,255,0.06));
}

.brand-sub {
  font-size: 13px;
  color: var(--muted-2);
  margin-top: 2px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  color: #dce5f8;
  font-size: 13px;
  white-space: nowrap;
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 12px rgba(139, 240, 200, 0.8);
}

.hero-content {
  padding: 60px 32px 34px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(44px, 7vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.05em;
  font-weight: 700;
}

h1 span {
  background: linear-gradient(90deg, #ffffff 0%, #a9c2ff 45%, #9ef0ff 75%, #b3f4d6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.lead {
  max-width: 760px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 19px;
  line-height: 1.8;
}

.countdown {
  margin-top: 38px;
  display: grid;
  grid-template-columns: repeat(4, minmax(130px, 1fr));
  gap: 16px;
  max-width: 760px;
}

.countdown-box {
  padding: 22px 18px;
  border-radius: 22px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.countdown-box span {
  display: block;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.04em;
  margin-bottom: 10px;
}

.countdown-box small {
  color: var(--muted-2);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
}

.contact-row {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-link {
  color: #f3f7ff;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(255,255,255,0.22);
  padding-bottom: 2px;
}

.primary-link:hover {
  color: var(--cyan);
  border-bottom-color: rgba(124, 231, 255, 0.65);
}

.divider {
  width: 1px;
  height: 18px;
  background: rgba(255,255,255,0.15);
}

.secondary-text {
  color: var(--muted-2);
  font-size: 14px;
}

.hero-footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-item {
  padding: 22px 32px 26px;
  border-right: 1px solid rgba(255,255,255,0.08);
}

.footer-item:last-child {
  border-right: none;
}

.footer-label {
  display: block;
  color: var(--muted-2);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.footer-value {
  display: block;
  color: #eef3ff;
  font-size: 16px;
  font-weight: 600;
}

@keyframes floatOne {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(24px, -18px, 0) scale(1.08);
  }
}

@keyframes floatTwo {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  100% {
    transform: translate3d(-18px, 16px, 0) scale(1.06);
  }
}

@media (max-width: 900px) {
  .hero-top {
    padding: 22px 22px;
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding: 42px 22px 28px;
  }

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

  .hero-footer {
    grid-template-columns: 1fr;
  }

  .footer-item {
    border-right: none;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  .footer-item:first-child {
    border-top: none;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 16px;
  }

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

  h1 {
    font-size: 42px;
    line-height: 1.02;
  }

  .lead {
    font-size: 16px;
    line-height: 1.75;
  }

  .countdown {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .countdown-box {
    padding: 18px 14px;
    border-radius: 18px;
  }

  .contact-row {
    gap: 10px;
  }

  .divider {
    display: none;
  }
}
