* {
  box-sizing: border-box;
}

:root {
  --bg-dark: #070b17;
  --bg-dark-2: #0d1326;
  --card-bg: rgba(14, 20, 38, 0.88);
  --card-border: rgba(0, 255, 255, 0.18);
  --text-main: #ffffff;
  --text-soft: #b8c4e0;
  --neon-blue: #00e5ff;
  --neon-purple: #9b5cff;
  --neon-green: #39ff88;
  --input-bg: rgba(255, 255, 255, 0.06);
  --input-border: rgba(255, 255, 255, 0.14);
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  color: var(--text-main);
  background:
    radial-gradient(circle at top left, rgba(0, 229, 255, 0.16), transparent 28%),
    radial-gradient(circle at top right, rgba(155, 92, 255, 0.14), transparent 30%),
    radial-gradient(circle at bottom center, rgba(57, 255, 136, 0.10), transparent 28%),
    linear-gradient(180deg, #050816 0%, #0a1020 45%, #070b17 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

/* animated background glow */
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,0.9), rgba(0,0,0,0.4));
}

body::after {
  background:
    radial-gradient(circle at 20% 25%, rgba(0,229,255,0.12), transparent 18%),
    radial-gradient(circle at 80% 20%, rgba(155,92,255,0.14), transparent 20%),
    radial-gradient(circle at 50% 75%, rgba(57,255,136,0.10), transparent 18%);
  animation: floatGlow 10s ease-in-out infinite alternate;
}

@keyframes floatGlow {
  0% {
    transform: translateY(0) scale(1);
    filter: blur(0px);
  }
  100% {
    transform: translateY(-12px) scale(1.03);
    filter: blur(2px);
  }
}

.container {
  width: min(1150px, 92%);
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.hero {
  padding: 90px 0 40px;
  text-align: center;
  position: relative;
}

.logo {
  width: 130px;
  max-width: 70%;
  margin-bottom: 18px;
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.45));
}

.hero h1 {
  margin: 0;
  font-size: 54px;
  letter-spacing: 1px;
  color: #fff;
  text-shadow:
    0 0 10px rgba(0, 229, 255, 0.35),
    0 0 24px rgba(155, 92, 255, 0.22);
}

.subtitle {
  margin: 18px auto 28px;
  max-width: 760px;
  font-size: 20px;
  line-height: 1.8;
  color: var(--text-soft);
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  color: #06111f;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-green));
  box-shadow:
    0 0 10px rgba(0, 229, 255, 0.6),
    0 0 24px rgba(57, 255, 136, 0.35),
    0 0 40px rgba(0, 229, 255, 0.22);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: pulseBtn 2s infinite ease-in-out;
}

.cta:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.06);
  box-shadow:
    0 0 16px rgba(0, 229, 255, 0.75),
    0 0 30px rgba(57, 255, 136, 0.45),
    0 0 55px rgba(0, 229, 255, 0.28);
}

@keyframes pulseBtn {
  0%, 100% {
    box-shadow:
      0 0 10px rgba(0, 229, 255, 0.55),
      0 0 24px rgba(57, 255, 136, 0.32),
      0 0 40px rgba(0, 229, 255, 0.18);
  }
  50% {
    box-shadow:
      0 0 18px rgba(0, 229, 255, 0.9),
      0 0 36px rgba(57, 255, 136, 0.42),
      0 0 58px rgba(0, 229, 255, 0.28);
  }
}

.content {
  padding: 30px 0 80px;
}

.two-col {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: start;
}

.info-card,
.form-card {
  background: var(--card-bg);
  backdrop-filter: blur(14px);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.03) inset,
    0 18px 50px rgba(0,0,0,0.35),
    0 0 30px rgba(0, 229, 255, 0.08);
}

.info-card h2,
.form-card h2 {
  margin-top: 0;
  font-size: 28px;
  color: #fff;
  text-shadow: 0 0 10px rgba(0,229,255,0.18);
}

.info-card p,
.info-card li {
  color: var(--text-soft);
  line-height: 1.9;
  font-size: 16px;
}

.info-card strong {
  color: #fff;
}

.info-card h3 {
  margin-top: 22px;
  color: var(--neon-blue);
}

.info-card ul {
  margin: 0;
  padding-right: 22px;
}

form {
  display: grid;
  gap: 13px;
}

label {
  font-weight: 700;
  color: #fff;
  margin-top: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 15px 16px;
  border-radius: 14px;
  border: 1px solid var(--input-border);
  background: var(--input-bg);
  color: #fff;
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

input::placeholder,
textarea::placeholder {
  color: #9ba9c8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(0, 229, 255, 0.6);
  box-shadow:
    0 0 0 3px rgba(0, 229, 255, 0.14),
    0 0 18px rgba(0, 229, 255, 0.12);
  transform: translateY(-1px);
}

select option {
  color: #111;
}

button {
  width: 100%;
  padding: 16px 20px;
  margin-top: 10px;
  border: none;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 800;
  color: #06111f;
  background: linear-gradient(90deg, var(--neon-blue), var(--neon-purple), var(--neon-green));
  background-size: 200% 200%;
  cursor: pointer;
  box-shadow:
    0 0 12px rgba(0, 229, 255, 0.55),
    0 0 24px rgba(155, 92, 255, 0.28),
    0 0 38px rgba(57, 255, 136, 0.20);
  transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
  animation: glowMove 3s ease infinite;
}

button:hover {
  transform: translateY(-2px) scale(1.01);
  filter: brightness(1.08);
  box-shadow:
    0 0 18px rgba(0, 229, 255, 0.75),
    0 0 34px rgba(155, 92, 255, 0.4),
    0 0 52px rgba(57, 255, 136, 0.28);
}

@keyframes glowMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

#message {
  margin-top: 14px;
  min-height: 26px;
  font-weight: 700;
  color: #fff;
}

.form-card {
  position: sticky;
  top: 24px;
}

@media (max-width: 900px) {
  .two-col {
    grid-template-columns: 1fr;
  }

  .form-card {
    position: static;
  }

  .hero {
    padding-top: 70px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .subtitle {
    font-size: 17px;
  }

  .info-card,
  .form-card {
    padding: 22px;
  }
}
.hide-launch {
  padding: 70px 0 40px;
}

.hide-panel {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  padding: 56px 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(13, 18, 34, 0.94), rgba(9, 13, 28, 0.96));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.32),
    0 0 40px rgba(0, 229, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.hide-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 77, 109, 0.14), transparent 24%),
    radial-gradient(circle at 80% 30%, rgba(0, 229, 255, 0.12), transparent 28%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, auto, 42px 42px, 42px 42px;
  pointer-events: none;
}

.hide-panel > * {
  position: relative;
  z-index: 1;
}

.hide-badge {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: #ff8da1;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 18px;
}

.hide-title {
  margin: 0;
  font-size: 84px;
  line-height: 1;
  letter-spacing: 8px;
  color: #ffffff;
  text-transform: uppercase;
  text-shadow:
    0 0 12px rgba(255,255,255,0.16),
    0 0 28px rgba(255, 77, 109, 0.16);
}

.hide-subtitle {
  margin: 18px 0 10px;
  font-size: 26px;
  font-weight: 700;
  color: #ffffff;
}

.hide-teaser {
  max-width: 720px;
  margin: 0 auto 34px;
  font-size: 21px;
  line-height: 1.9;
  color: #d7e3ff;
}

.hide-teaser span {
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 2px;
}

.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 34px;
}

.countdown-box {
  min-width: 130px;
  padding: 22px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  box-shadow:
    0 8px 24px rgba(0,0,0,0.18),
    0 0 18px rgba(0,229,255,0.06);
}

.countdown-box span {
  display: block;
  font-size: 42px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 8px;
}

.countdown-box small {
  color: #b8c4e0;
  font-size: 14px;
}

.hide-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 17px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(90deg, #ff4d6d, #ff7b54, #ffd166);
  background-size: 200% 200%;
  box-shadow:
    0 0 14px rgba(255, 123, 84, 0.4),
    0 0 28px rgba(255, 77, 109, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: hideGlow 3s ease infinite;
}

.hide-btn:hover {
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 0 18px rgba(255, 123, 84, 0.56),
    0 0 36px rgba(255, 77, 109, 0.26);
}

@keyframes hideGlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@media (max-width: 900px) {
  .hide-panel {
    padding: 42px 20px;
  }

  .hide-title {
    font-size: 56px;
    letter-spacing: 5px;
  }

  .hide-subtitle {
    font-size: 20px;
  }

  .hide-teaser {
    font-size: 17px;
  }

  .countdown-box {
    min-width: 95px;
    padding: 16px 12px;
  }

  .countdown-box span {
    font-size: 30px;
  }
}
.countdown {
  direction: ltr;
  display: flex;
  justify-content: center;
  gap: 16px;
}