/* ===== Global reset & type ===== */
* { box-sizing: border-box; margin:0; padding:0; }
:root{
  --bg:#f6f7fa;
  --card:#ffffff;
  --muted:#6b7280;
  --accent:#0a50a1;
  --accent-600:#08448a;
  --shadow: 0 6px 22px rgba(18,22,32,0.08);
}

html,body { height:100%; }
body{
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
  background: var(--bg);
  -webkit-font-smoothing:antialiased;
  color:#111827;
  display:flex;
  flex-direction:column;
  min-height:100vh;
}

/* Abstract tech background (subtle SVG pattern + gradient) */
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  background:
    radial-gradient(circle at 10% 20%, rgba(10,80,161,0.06), transparent 8%),
    radial-gradient(circle at 90% 80%, rgba(2,6,23,0.02), transparent 18%),
    linear-gradient(180deg, rgba(255,255,255,0.6), rgba(250,251,253,0.8));
  pointer-events:none;
  opacity:1;
}

/* panel */
.page{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 20px;
  flex:1;
}

.panel{
  width:100%;
  max-width:820px;
  background:var(--card);
  border-radius:14px;
  box-shadow:var(--shadow);
  padding:42px;
  text-align:center;
  animation: fadeUp .6s ease both;
}

/* Logo & company name */
.logo{
  max-width:200px;
  width:40%;
  height:auto;
  display:block;
  margin:0 auto 12px;
  opacity:0;
  transform:translateY(6px);
  animation: fadeUp .6s ease .08s both;
}

.company{
  font-size:13px;
  color:var(--accent);
  letter-spacing:1px;
  font-weight:700;
  margin-bottom:14px;
  opacity:0;
  animation: fadeUp .6s ease .12s both;
}

/* Headline */
.headline{
  font-size:22px;
  line-height:1.2;
  margin-bottom:10px;
  color:#0f1724;
  opacity:0;
  animation: fadeUp .6s ease .16s both;
}

/* subtitle */
.lead{
  color:var(--muted);
  margin-bottom:20px;
  max-width:640px;
  margin-left:auto;
  margin-right:auto;
  opacity:0;
  animation: fadeUp .6s ease .20s both;
}

/* countdown */
.countdown{
  display:flex;
  justify-content:center;
  gap:14px;
  margin:20px 0 18px;
  opacity:0;
  animation: fadeUp .6s ease .26s both;
}

.time{
  background:linear-gradient(180deg,#ffffff,#fbfdff);
  border-radius:10px;
  padding:14px 18px;
  min-width:88px;
  box-shadow: 0 3px 10px rgba(11,20,50,0.04);
  text-align:center;
}

.time span{
  display:block;
  font-weight:700;
  font-size:18px;
  color:var(--accent);
}

.time small{
  display:block;
  font-size:11px;
  color:var(--muted);
  margin-top:6px;
  letter-spacing:0.8px;
}

/* contact line */
.contact-line{
  color:var(--muted);
  margin-bottom:14px;
  font-size:14px;
  opacity:0;
  animation: fadeUp .6s ease .32s both;
}
.contact-line a{ color:var(--accent); text-decoration:underline; font-weight:600; }

/* form */
.notify-form { max-width:720px; margin:0 auto; text-align:left; opacity:0; animation: fadeUp .6s ease .36s both; }
.inputs{ display:flex; gap:10px; margin-bottom:10px; }
.inputs input{ flex:1; padding:10px 12px; border:1px solid #e6e9ef; border-radius:8px; font-size:14px; }
.notify-form textarea{ width:100%; padding:10px 12px; border-radius:8px; border:1px solid #e6e9ef; resize:vertical; font-size:14px; margin-bottom:12px; }

/* hidden honeypot visually */
.honeypot { position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

/* actions */
.form-actions{ display:flex; gap:14px; align-items:center; }
.btn{
  background:var(--accent);
  color:white;
  padding:11px 18px;
  border-radius:8px;
  font-weight:700;
  border:0;
  cursor:pointer;
  text-decoration:none;
  transition:background .18s ease, transform .06s ease;
}
.btn:hover{ background:var(--accent-600); transform:translateY(-1px); }

.form-status{ color:var(--muted); font-size:13px; }

/* footer */
.site-footer{ text-align:center; font-size:13px; color:var(--muted); padding:18px 0; }

/* subtle fade animation */
@keyframes fadeUp {
  from { transform: translateY(8px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* responsive */
@media (max-width:720px){
  .inputs{ flex-direction:column; }
  .logo{ width:48%; }
  .time{ min-width:64px; padding:10px; }
  .time span{ font-size:16px; }
}
