:root {
  --background: #07110f;
  --background-light: #0b1916;
  --text: #ffffff;
  --muted: #9aa9a5;
  --primary: #20d69a;
  --primary-dark: #12a978;
  --border: rgba(255, 255, 255, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--background);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 40%,
      rgba(32, 214, 154, 0.08),
      transparent 35%
    ),
    linear-gradient(
      135deg,
      var(--background),
      var(--background-light)
    );
}

/* -------------------------
   Background
------------------------- */

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.025) 1px,
      transparent 1px
    );
  background-size: 60px 60px;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 20%,
    black 80%,
    transparent
  );
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
}

.orb-one {
  width: 350px;
  height: 350px;
  background: rgba(32, 214, 154, 0.12);
  top: -150px;
  left: -120px;
}

.orb-two {
  width: 300px;
  height: 300px;
  background: rgba(32, 214, 154, 0.08);
  right: -100px;
  bottom: -120px;
}

/* -------------------------
   Hero
------------------------- */

.hero {
  position: relative;
  z-index: 2;
  width: min(900px, 92%);
  text-align: center;
  padding: 50px 20px;
}

/* -------------------------
   Logo
------------------------- */

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--text);
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 55px;
}

.logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  border-radius: 12px;

  background: var(--primary);
  color: #04100c;

  font-size: 22px;
  font-weight: 800;

  box-shadow:
    0 8px 30px rgba(32, 214, 154, 0.25);
}

.logo-highlight {
  color: var(--primary);
}

/* -------------------------
   Badge
------------------------- */

.badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 9px 15px;

  border: 1px solid rgba(32, 214, 154, 0.25);
  border-radius: 100px;

  background: rgba(32, 214, 154, 0.06);

  color: #a8e8d2;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 25px;
}

.status-dot {
  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--primary);

  box-shadow: 0 0 12px var(--primary);

  animation: pulse 1.8s infinite;
}

/* -------------------------
   Typography
------------------------- */

h1 {
  font-size: clamp(48px, 8vw, 88px);
  line-height: 0.98;
  letter-spacing: -4px;
  font-weight: 800;
  margin-bottom: 25px;
}

h1 span {
  color: var(--primary);
}

.description {
  max-width: 600px;
  margin: 0 auto;

  color: var(--muted);

  font-size: 17px;
  line-height: 1.8;
}

/* -------------------------
   Countdown
------------------------- */

.countdown {
  display: flex;
  align-items: center;
  justify-content: center;

  margin: 45px auto;

  gap: 14px;
}

.time-box {
  min-width: 95px;
  padding: 18px 15px;

  border: 1px solid var(--border);
  border-radius: 16px;

  background: rgba(255, 255, 255, 0.035);

  backdrop-filter: blur(10px);
}

.time-box strong {
  display: block;

  font-size: 32px;
  line-height: 1;

  font-weight: 700;

  margin-bottom: 8px;
}

.time-box span {
  color: var(--muted);

  font-size: 10px;
  font-weight: 600;

  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.separator {
  color: rgba(255, 255, 255, 0.25);
  font-size: 25px;
  font-weight: 600;
}

/* -------------------------
   Form
------------------------- */

.notify-form {
  display: flex;

  max-width: 500px;
  margin: 0 auto;

  padding: 5px;

  border: 1px solid var(--border);
  border-radius: 15px;

  background: rgba(255, 255, 255, 0.04);

  backdrop-filter: blur(15px);
}

.notify-form input {
  flex: 1;

  min-width: 0;

  border: 0;
  outline: 0;

  background: transparent;

  padding: 14px 16px;

  color: white;

  font-family: inherit;
  font-size: 14px;
}

.notify-form input::placeholder {
  color: #71807c;
}

.notify-form button {
  border: 0;
  border-radius: 11px;

  padding: 0 21px;

  background: var(--primary);
  color: #04100c;

  font-family: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;

  transition:
    transform 0.2s ease,
    background 0.2s ease;
}

.notify-form button span {
  display: inline-block;
  margin-left: 7px;
  font-size: 17px;
}

.notify-form button:hover {
  background: #35e6ac;
  transform: translateY(-1px);
}

.form-message {
  min-height: 20px;

  margin-top: 15px;

  color: var(--primary);

  font-size: 13px;
}

/* -------------------------
   Footer
------------------------- */

footer {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 70px;
  padding-top: 25px;

  border-top: 1px solid var(--border);

  color: #65736f;

  font-size: 11px;
}

.social-links {
  display: flex;
  gap: 20px;
}

.social-links a {
  color: #65736f;
  text-decoration: none;

  transition: color 0.2s ease;
}

.social-links a:hover {
  color: var(--primary);
}

/* -------------------------
   Animation
------------------------- */

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(32, 214, 154, 0.5);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(32, 214, 154, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(32, 214, 154, 0);
  }
}

/* -------------------------
   Mobile
------------------------- */

@media (max-width: 600px) {

  .hero {
    padding: 35px 15px;
  }

  .logo {
    margin-bottom: 40px;
  }

  h1 {
    font-size: 48px;
    letter-spacing: -2.5px;
  }

  .description {
    font-size: 15px;
    line-height: 1.7;
  }

  .countdown {
    gap: 5px;
    margin: 35px auto;
  }

  .time-box {
    min-width: 65px;
    padding: 13px 8px;
    border-radius: 12px;
  }

  .time-box strong {
    font-size: 22px;
  }

  .time-box span {
    font-size: 8px;
    letter-spacing: 0.6px;
  }

  .separator {
    font-size: 18px;
  }

  .notify-form {
    flex-direction: column;
    gap: 5px;
    padding: 5px;
  }

  .notify-form input {
    padding: 15px;
    text-align: center;
  }

  .notify-form button {
    min-height: 48px;
  }

  footer {
    flex-direction: column;
    gap: 18px;
  }
}