/* LUISOR — Under Construction styles */
:root{
  --bg: #151412;
  --fg: #e7e5e4;      /* warm white */
  --muted: #a8a29e;   /* stone-400 */
  --accent: #d6d3d1;  /* stone-300 */
  --card: #151412;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial, 'Noto Sans', 'Apple Color Emoji', 'Segoe UI Emoji', sans-serif;
  color: var(--fg);
  background: radial-gradient(1200px 500px at 50% -10%, #1f1f1f 0%, var(--bg) 50%) no-repeat, var(--bg);
  letter-spacing: 0.2px;
}

.bg-pattern{
  position: fixed; inset: 0;
  pointer-events: none;
  background-image:
    radial-gradient(ellipse at 10% 10%, rgba(255,255,255,0.03) 0, rgba(255,255,255,0) 60%),
    radial-gradient(ellipse at 90% 20%, rgba(255,255,255,0.025) 0, rgba(255,255,255,0) 60%);
  filter: blur(0.25px);
}

.wrapper{
  max-width: 980px; margin: 0 auto; padding: 48px 24px 24px;
  display: grid; gap: 28px;
  min-height: 100%;
  align-content: center;
}

.brand{ text-align: center; }
.logo{
  width: 200px; height: auto;
  display: block; margin: 0 auto 10px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,.45);
}
.wordmark{
  font-family: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  letter-spacing: 0.28em;
  font-weight: 600;
  font-size: clamp(28px, 5vw, 44px);
  margin: 0; opacity: 0.95;
}

.content{
  text-align: center;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(255,255,255,0));
  border: 1px solid rgba(214, 211, 209, 0.2);
  border-radius: 20px;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  box-shadow: 0 12px 40px rgba(0,0,0,.35);
}

.headline{
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: clamp(22px, 3.8vw, 36px);
  margin: 4px 0 8px;
}
.sub{
  color: var(--muted);
  margin-top: 0; margin-bottom: 22px;
  font-size: clamp(14px, 2.6vw, 18px);
}
.sub strong{ color: var(--fg); }

.notify{
  margin: 0 auto 12px;
  display: grid; grid-template-columns: 1fr auto; gap: 10px;
  max-width: 560px;
  align-items: center;
}
.notify input{
  width: 100%;
  padding: 14px 16px;
  font-size: 16px;
  border-radius: 14px;
  border: 1px solid rgba(214,211,209,.35);
  background: #0d0d0d;
  color: var(--fg);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.notify input:focus{
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(214,211,209,.15);
}
.btn{
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 14px;
  border: 1px solid rgba(214,211,209,.45);
  background: linear-gradient(180deg, #1a1a1a, #0f0f0f);
  color: var(--fg);
  font-weight: 600; letter-spacing: .3px;
  transition: transform .08s ease, box-shadow .2s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: 0 8px 25px rgba(0,0,0,.35); }
.btn:active{ transform: translateY(0); }

.note{
  grid-column: 1 / -1;
  color: var(--muted);
  margin: 4px 0 0; font-size: 12px;
}

.links{
  margin-top: 18px;
  display: flex; align-items: center; justify-content: center; gap: 12px;
  flex-wrap: wrap;
}
.link{
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px dashed rgba(214,211,209,.35);
}
.link:hover{ color: var(--fg); border-bottom-style: solid; }
.dot{ color: #5c5c5c; }

.footer{
  margin-top: 12px; text-align: center; color: var(--muted); font-size: 14px;
}
.footer .line{
  height: 1px; width: 100%; background: linear-gradient(90deg, transparent, rgba(214,211,209,.35), transparent);
  margin: 10px 0 12px;
}

/* Small screens */
@media (max-width: 520px){
  .notify{ grid-template-columns: 1fr; }
  .btn{ width: 100%; }
}
