/* Made with ✈️ for a quick Coming Soon page */
:root{
  --bg: #0a0a0a;
  --fg: #ffffff;
  --muted: #c7c7c7;
  --brand: #ffcc66;
}
*{ box-sizing: border-box; }
html, body { height: 100%; }
body{
  margin:0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
}

/* Background image + gradient overlay */
.page{
  position: relative;
  min-height: 100vh;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.7)),
    url('assets/images/background.jpg');
  background-size: cover;
  background-position: center;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: clamp(16px, 4vw, 48px);
}

.overlay{
  position:absolute;
  inset:0;
  backdrop-filter: blur(0.6px) saturate(110%);
}

.hero{
  position:relative;
  max-width: 920px;
  text-align:center;
  z-index:1;
  padding: clamp(16px, 3vw, 48px);
  border-radius: 24px;
  background: rgba(0,0,0,.32);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  outline: 1px solid rgba(255,255,255,.08);
}

.brand{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 12px;
  margin-bottom: 8px;
}
.logo{ font-size: 28px; }
.brand h1{
  margin:0;
  font-size: clamp(20px, 3.2vw, 28px);
  letter-spacing: .3px;
  font-weight: 800;
}

.headline{
  font-size: clamp(28px, 6vw, 56px);
  margin: 10px 0 12px;
  line-height: 1.1;
  text-shadow: 0 2px 18px rgba(0,0,0,.35);
}

.tagline{
  color: var(--muted);
  font-size: clamp(15px, 2.2vw, 18px);
  margin: 0 auto 20px;
  max-width: 60ch;
}

.cta{ margin-top: 8px; }
.notify{
  display:flex;
  gap: 8px;
  justify-content:center;
  align-items:center;
  margin: 0 auto;
  max-width: 560px;
}
.notify input{
  flex:1;
  min-width: 0;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(0,0,0,.35);
  color: var(--fg);
  font-size: 16px;
  outline: none;
}
.notify button{
  padding: 14px 18px;
  border-radius: 14px;
  border: none;
  background: var(--brand);
  color: #1a1a1a;
  font-weight: 700;
  cursor: pointer;
  transition: transform .08s ease;
}
.notify button:active{
  transform: translateY(1px);
}
.small{
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.highlights{
  margin: 22px auto 10px;
  display:flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items:center;
  justify-content:center;
  padding:0;
  list-style:none;
  max-width: 900px;
}
.highlights li{
  display:flex;
  align-items:center;
  gap: 8px;
  background: rgba(0,0,0,.35);
  border: 1px solid rgba(255,255,255,.08);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 14px;
}
.icon{
  width: 18px; height: 18px; fill: currentColor;
}

.social{
  margin-top: 18px;
  display:flex;
  gap: 14px;
  justify-content:center;
}
.social-link{
  display:grid; place-items:center;
  width: 38px; height: 38px; border-radius: 999px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  color: var(--fg);
  text-decoration:none;
}
.social .icon{ width: 18px; height: 18px; }

/* Responsive tweaks */
@media (max-width: 520px){
  .notify{ flex-direction: column; }
  .notify button, .notify input{ width: 100%; }
}
