* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background: #02142f;
  color: white;
  min-height: 100vh;
  overflow-y: auto;
  position: static;
}

.background-grid {
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(41, 91, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(41, 91, 255, 0.12) 1px, transparent 1px);
  background-size: 80px 80px;
  opacity: 0.5;
  pointer-events: none;
}

.background-grid::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 20%, rgba(0, 0, 0, 0.45) 100%);
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: flex-end;
  padding: 20px 60px;
  background: linear-gradient(to bottom, rgba(2, 20, 47, 0.95) 0%, transparent 100%);
}

.services-btn {
  text-decoration: none;
  color: white;
  border: 1px solid rgba(44, 110, 255, .6);
  padding: 12px 24px;
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
  font-size: 15px;
  transition: .3s;
  white-space: nowrap;
}

.services-btn:hover {
  background: #2367ff;
  border-color: #2367ff;
  transform: translateY(-2px);
}

.container {
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 140px 40px 60px;
}

.content {
  width: 100%;
  max-width: 760px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.logo-area {
  width: min(420px, 80%);
  height: 150px;
  margin: 0 auto 30px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse-border {
  0%, 100% { border-color: rgba(44, 110, 255, 0.4); }
  50%       { border-color: rgba(44, 110, 255, 0.85); }
}

@keyframes divider-grow {
  from { width: 0; }
  to   { width: 100%; }
}

.animate-in {
  opacity: 0;
  animation: fadeUp 0.7s ease forwards;
}

h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(40px, 9vw, 72px);
  line-height: 1.05;
  font-weight: 400;
  letter-spacing: 2px;
  margin-bottom: 24px;
}

.blue {
  color: #1f66ff;
}

p {
  max-width: 650px;
  color: #8d9cb9;
  font-size: 15px;
  line-height: 1.75;
  margin: 0 auto 32px;
}

.divider {
  height: 1px;
  background: #174ebf;
  margin: 0 auto 32px;
  animation: fadeUp 0.7s ease forwards, divider-grow 0.9s ease forwards;
  animation-delay: 0.35s, 0.35s;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.time-box {
  width: 88px;
  height: 88px;
  border: 1px solid rgba(44, 110, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(20, 45, 95, 0.4);
  animation: pulse-border 3s ease-in-out infinite;
  transition: transform 0.15s ease, background 0.3s ease;
}

.time-box:hover {
  transform: translateY(-3px);
  background: rgba(20, 45, 95, 0.65);
}

.time-box span {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 38px;
  font-weight: 400;
  letter-spacing: 2px;
  transition: color 0.2s ease;
}

.time-box:hover span {
  color: #4d8fff;
}

.time-box small {
  margin-top: 4px;
  font-size: 9px;
  letter-spacing: 3px;
  color: #8191b3;
}

.separator {
  margin-top: 20px;
  color: #2766ff;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  font-weight: 400;
}

h4 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 3px;
  color: #d9e3ff;
  margin-bottom: 16px;
}

.notify-form {
  display: flex;
  width: 100%;
  max-width: 520px;
  margin: 0 auto 14px;
}

.notify-form input {
  flex: 1;
  height: 50px;
  border: 1px solid #204ea8;
  background: transparent;
  color: white;
  padding: 0 18px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s ease;
  min-width: 0;
}

.notify-form input::placeholder {
  color: #4a5f82;
}

.notify-form input:focus {
  border-color: #2766ff;
}

.notify-form button {
  width: 150px;
  flex-shrink: 0;
  border: none;
  background: #2367ff;
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.15s ease;
}

.notify-form button:hover {
  background: #3d7cff;
  transform: translateX(2px);
}

.notify-form button:active {
  transform: scale(0.98);
}

.success-msg {
  font-size: 13px;
  color: #4d8fff;
  margin-bottom: 28px;
  height: 18px;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.success-msg.visible {
  opacity: 1;
  transform: translateY(0);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 22px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #6d84b3;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.25s ease;
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: #2766ff;
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer-links a:hover::after {
  width: 100%;
}

.copyright {
  color: #566886;
  text-align: center;
  font-size: 12px;
}

/* ── Tablet ── */
@media (max-width: 768px) {
  .top-nav {
    position: static;
    display: flex;
    justify-content: center;
    padding: 16px 24px;
  }

  .services-btn {
    font-size: 12px;
    padding: 10px 16px;
    letter-spacing: 1.5px;
  }

  .container {
    padding: 100px 24px 60px;
    align-items: flex-start;
  }

  .logo-area {
    width: min(280px, 75%);
    height: 100px;
    margin-bottom: 24px;
  }

  p {
    font-size: 14px;
    padding: 0 4px;
  }

  .countdown {
    gap: 10px;
    margin-bottom: 36px;
  }

  .time-box {
    width: 76px;
    height: 76px;
  }

  .time-box span {
    font-size: 30px;
  }

  .separator {
    font-size: 22px;
    margin-top: 16px;
  }

  @media (max-width: 768px) {
  .notify-form {
    flex-direction: column;
    gap: 10px;
    max-width: 100%;
    align-items: stretch;
  }

  .notify-form input {
    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
    font-size: 16px !important;
    padding: 0 18px !important;
    box-sizing: border-box !important;
  }

  .notify-form button {
    width: 100% !important;
    height: 54px !important;
    min-height: 54px !important;
  }
}
}

/* ── Mobile ── */
@media (max-width: 480px) {
  .top-nav {
    padding: 14px 18px;
    justify-content: center;
  }

  .container {
    padding: 90px 18px 50px;
  }

  .logo-area {
    width: min(220px, 70%);
    height: 80px;
    margin-bottom: 20px;
  }

  .countdown {
    gap: 8px;
  }

  .time-box {
    width: 66px;
    height: 66px;
  }

  .time-box span {
    font-size: 26px;
  }

  .time-box small {
    font-size: 8px;
    letter-spacing: 2px;
  }

  .separator {
    font-size: 18px;
    margin-top: 12px;
  }

  h4 {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .footer-links {
    gap: 14px;
  }

  .copyright {
    font-size: 11px;
    padding: 0 10px;
  }
}

/* ── Very small screens ── */
@media (max-width: 360px) {
  .time-box {
    width: 58px;
    height: 58px;
  }

  .time-box span {
    font-size: 22px;
  }

  .separator {
    font-size: 16px;
  }
}