:root {
  --orange: #ffae00;
  --orange-soft: #ffd37a;
  --black: #000;
  --surface: #0c1017;
  --surface-2: #151b25;
  --border: #2a3342;
  --text: #f3f5f7;
  --muted: #98a1ad;
  --success: greenyellow;
  --error: #ee3827;
}

/* html {
  min-height: 100%;
  background: var(--black);
  color-scheme: dark;
} */
/* 
body {
  min-height: 100vh;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Exo 2", system-ui, sans-serif;
  text-align: center;
  padding: 0;
  box-sizing: border-box;
} */


.ambient {
  position: fixed;
  pointer-events: none;
}

.ambient {
  width: 30rem;
  height: 30rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.18;
}

.ambient-a {
  top: -12rem;
  left: -12rem;
  background: var(--surface-2);
}

.ambient-b {
  right: -15rem;
  bottom: -14rem;
  background: #2778ff;
  opacity: 0.12;
}


.page-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(1.25rem, 4vw, 3rem);
  display: grid;
  align-content: center;
  gap: 2rem;
  background-image: radial-gradient(farthest-corner at 50% -400px, rgba(32, 42, 57, 0.8), black 100%);
  box-sizing: border-box;
}

.beta-card {
  position: relative;
  isolation: isolate;
  width: min(100%, 54rem);
  margin: 0 auto;
  padding: clamp(2rem, 7vw, 5rem);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.045), transparent 40%),
    radial-gradient(circle at 50% 0%, var(--surface-2), transparent 60%),
    rgba(9, 12, 17, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-top-color: rgba(255, 255, 255, 0.22);
  border-radius: 0.50rem;
  box-shadow: 0 2rem 8rem rgba(0, 0, 0, 0.68);
  backdrop-filter: blur(18px);
}

.beta-card::before,
.beta-card::after {
  content: "";
  position: absolute;
  z-index: -1;
}

.beta-card::before {
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 174, 0, 0.14), transparent);
  height: 1px;
  top: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  color: var(--d9);
  font-family: "Rajdhani", sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: BankGothic Md Bt;

}

.eyebrow-dot {
  width: 0.48rem;
  height: 0.48rem;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 1rem var(--orange);
}

.brand-mark {
  color: var(--orange);
}

.intro {
  max-width: 42rem;
  margin: 1.4rem auto 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.12rem);
  line-height: 1.75;
}

.beta-form {
  width: min(100%, 43rem);
  margin: 2.5rem auto 0;
  text-align: left;
}
/* 
.beta-form label {
  display: block;
  margin-bottom: 0.55rem;
  color: #cdd2d9;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
} */

.form-row {
  display: flex;
  flex-direction: column;
}

.form-input::placeholder {
  color: #65707e;
}

.form-input:hover {
  border-color: #414d60;
}

.form-input:focus {
  background: #030405;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 174, 0, 0.13), 0 0 1.6rem rgba(255, 174, 0, 0.08);
}

.form-input[aria-invalid="true"] {
  border-color: var(--error);
}

.form-note,
.form-status {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  text-align: center;
}

.form-note {
  color: #6e7885;
}

.form-status {
  min-height: 1.2em;
  color: var(--success);
}

.form-status.error {
  color: var(--error);
}

.signal {
  width: 6rem;
  height: 1.3rem;
  margin: 2.25rem auto -1rem;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.3rem;
  opacity: 0.5;
}

.signal span {
  width: 2px;
  height: 35%;
  background: var(--orange);
  animation: pulse 0.7s ease-in-out infinite alternate;
}

.signal span:nth-child(2) {
  animation-delay: 0.15s;
  height: 65%;
}

.signal span:nth-child(3) {
  animation-delay: 0.3s;
  height: 100%;
}

.signal span:nth-child(4) {
  animation-delay: 0.45s;
  height: 65%;
}

.signal span:nth-child(5) {
  animation-delay: 0.6s;
  height: 35%;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  color: var(--d6);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-separator {
  width: 1px;
  height: 0.9rem;
  background: #343a44;
}

.huelux-beta-submit-btn-container {
  width: 100%;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
}

.huelux-logo {
  background-image: url(../imgs/huelux/huelux.logo.png);
  width: 600px;
  height: 50px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  mix-blend-mode: screen;
  margin: 50px auto;
  box-sizing: border-box;
}

@keyframes pulse {
  to {
    opacity: 0.18;
    transform: scaleY(0.45);
  }
}

@media (max-width: 680px) {
  .page-shell {
    padding: 1rem;
    align-content: start;
    padding-top: max(1rem, env(safe-area-inset-top));
  }

  .beta-card {
    padding: 2rem 1.15rem;
    border-radius: 0.85rem;
  }

  .eyebrow {
    margin-bottom: 1.5rem;
  }

  .beta-form button {
    width: 100%;
  }

  footer {
    flex-wrap: wrap;
  }
}

@media (max-height: 700px) and (min-width: 681px) {
  .page-shell {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }

  .beta-card {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}