/* ------------------ RESET ------------------ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

/* ------------------ BODY / BACKGROUND ------------------ */
body {
  height: 100vh;
  width: 100vw;
  background: url('https://media.defense.gov/2023/Feb/10/2003160138/-1/-1/0/230206-M-IP954-1062.JPG')
              no-repeat center center fixed;
  background-size: cover;
  color: white;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1;
}

/* ------------------ HERO SECTION ------------------ */
.coming-soon {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 100vh;
  width: 100%;
  padding: 0 20px;
}

/* Frosted Glass Card (centered content box) */

/* ------------------ TITLE ------------------ */
.app-title {
  font-size: 3.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

/* ------------------ DESCRIPTION ------------------ */
.app-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #d1d5db;
  max-width: 520px;           /* ✨ keeps paragraph narrower */
  margin: 0 auto 45px auto;   /* centers the text block */
}

.app-description strong {
  color: #fff; /* blue accent for key terms */
}

.app-description .highlight {
  color: #7badd3; /* yellow accent for call to action */
  font-weight: 600;
}

/* ------------------ FORM ------------------ */
.notify-form {
  display: flex;
  justify-content: center;
  max-width: 450px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  overflow: hidden;
  backdrop-filter: blur(6px);
}

.notify-form input {
  flex: 1;
  border: none;
  padding: 16px 18px;
  font-size: 1rem;
  color: #fff;
  background: transparent;
  outline: none;
  text-align: left;
}

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

.notify-form button {
  background-color:#7badd3;
  border: none;
  color: #fff;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.notify-form button:hover {
  background-color: #1d4ed8;
}

/* ------------------ TOAST ------------------ */
.toast {
  margin-top: 25px;
  display: inline-block;
  padding: 10px 14px;
  border-radius: 8px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.toast.ok
