/* HALLE:AREA: Standalone construction gate using the canonical NDash dark brand palette. */
:root {
  color-scheme: dark;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #010516;
  color: #FEFEFE;
  font-synthesis: none;
}

* { box-sizing: border-box; }
body { margin: 0; min-width: 320px; min-height: 100vh; }
button, input { font: inherit; }

body {
  background:
    radial-gradient(circle at 50% -12%, rgba(0, 119, 255, .17), transparent 32rem),
    radial-gradient(circle at 10% 90%, rgba(0, 119, 255, .06), transparent 25rem),
    #010516;
}

.construction-shell {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.construction-card {
  width: min(610px, 100%);
  padding: clamp(32px, 7vw, 62px);
  border: 1px solid #1b3150;
  border-radius: 22px;
  background: rgba(7, 17, 38, .94);
  box-shadow: 0 28px 90px rgba(0, 0, 0, .4);
  text-align: center;
}

.construction-logo { display: block; width: min(260px, 74%); height: auto; margin: 0 auto 24px; }

.eyebrow {
  margin: 0 0 14px;
  color: #2a91ff;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: .14em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-size: clamp(36px, 7vw, 59px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.message {
  max-width: 470px;
  margin: 24px auto 32px;
  color: #8394ac;
  font-size: 16px;
  line-height: 1.65;
}

form { text-align: left; }
label {
  display: block;
  margin: 0 0 9px;
  color: #d6e1f0;
  font-size: 12px;
  font-weight: 750;
}

.access-row { display: grid; grid-template-columns: 1fr auto; gap: 10px; }
input {
  min-width: 0;
  height: 48px;
  padding: 0 15px;
  border: 1px solid #2b466a;
  border-radius: 10px;
  outline: 0;
  background: #010516;
  color: #FEFEFE;
}
input:focus { border-color: #2a91ff; box-shadow: 0 0 0 3px rgba(0, 119, 255, .14); }
button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid #0077FF;
  border-radius: 10px;
  background: #0077FF;
  color: #FEFEFE;
  cursor: pointer;
  font-weight: 850;
}
button:hover { border-color: #2a91ff; background: #2a91ff; }
button:disabled { cursor: wait; opacity: .65; }
.error { min-height: 20px; margin: 10px 0 0; color: #ff7185; font-size: 12px; }
.status { margin: 26px 0 0; color: #8394ac; font-size: 11px; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.status span { display: inline-block; width: 7px; height: 7px; margin-right: 7px; border-radius: 50%; background: #e5a84b; box-shadow: 0 0 12px rgba(229, 168, 75, .55); }

@media (max-width: 560px) {
  .construction-shell { padding: 16px; }
  .construction-card { padding: 34px 22px; border-radius: 16px; }
  .access-row { grid-template-columns: 1fr; }
  button { width: 100%; }
}
