*,
*::before,
*::after { box-sizing: border-box; }

html, body { height: 100%; }

body{
  margin:0;
  min-height:100vh;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Inter,Helvetica,Arial,sans-serif;
  color:#e8eef3;

  background-image:
    linear-gradient(rgba(10,14,20,.72), rgba(10,14,20,.82)),
    url("/static/img/bg.jpg");
  background-position:center;
  background-size:cover;
  background-repeat:no-repeat;
  background-attachment:scroll;

  display:flex;
  align-items:center;
  justify-content:center;
  padding:32px 18px;
}

.layout{
  width:min(1180px, 100%);
  display:grid;
  grid-template-columns: 520px 1fr;
  gap:48px;
  align-items:center;
}

/* LEFT */
.left{ display:flex; justify-content:center; }

.card{
  width:100%;
  background:rgba(15,18,24,.66);
  backdrop-filter:blur(16px);
  -webkit-backdrop-filter:blur(16px);
  border-radius:14px;
  padding:34px 34px 26px;
  box-shadow: 0 40px 90px rgba(0,0,0,.68),
              inset 0 0 0 1px rgba(255,255,255,.07);
}

.brand-row{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
}

.brand-logo{
  width:42px;
  height:42px;
  border-radius:10px;
  background:linear-gradient(135deg,#ff3b30,#ff6a3d);
  box-shadow:0 18px 40px rgba(0,0,0,.45);
}

.brand-name{
  font-weight:700;
  letter-spacing:.2px;
}

.brand-sub{
  font-size:12px;
  color:rgba(232,238,243,.68);
  margin-top:2px;
}

h1{
  margin:8px 0 6px;
  font-size:22px;
  font-weight:750;
  letter-spacing:-.2px;
}

.subtitle{
  margin:0 0 18px;
  font-size:13px;
  color:rgba(232,238,243,.72);
}

.google-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  height:48px;
  border-radius:10px;
  background:#ffffff;
  color:#111827;
  text-decoration:none;
  font-weight:750;
  letter-spacing:.6px;
  font-size:12px;
  border:1px solid rgba(255,255,255,.14);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}

.google-btn:hover{
  background:#f3f4f6;
  transform:translateY(-1px);
  box-shadow:0 16px 46px rgba(0,0,0,.40);
}

.google-btn:active{ transform:translateY(0); box-shadow:none; }

.note{
  margin:14px 0 0;
  font-size:12px;
  color:rgba(232,238,243,.66);
  line-height:1.45;
}

.google-btn:focus-visible{
  outline: 2px solid rgba(159,195,255,.85);
  outline-offset: 3px;
}

.alert{
  margin-top:12px;
  min-height:16px;
  font-size:12px;
  color:rgba(232,238,243,.82);
}


/* RIGHT */
.right{
  padding:18px 0;
}

.right h2{
  margin:0 0 18px;
  font-size:34px;
  line-height:1.05;
  font-weight:900;
  letter-spacing:-.8px;
}

.section{
  background:rgba(0,0,0,.18);
  border:1px solid rgba(255,255,255,.06);
  border-radius:14px;
  padding:18px 18px 16px;
  max-width:520px;
}

.section h3{
  margin:0 0 10px;
  font-size:12px;
  letter-spacing:1.6px;
  color:rgba(232,238,243,.72);
}

.section p{
  margin:0 0 12px;
  color:rgba(232,238,243,.72);
  font-size:13px;
  line-height:1.55;
}

.section ul{
  margin:0 0 12px 18px;
  padding:0;
  color:rgba(232,238,243,.78);
  font-size:13px;
  line-height:1.6;
}

.support{
  font-size:12px;
  color:#9fc3ff;
  text-decoration:underline;
}

.quote{
  margin-top:18px;
  max-width:520px;
  padding:14px 16px;
  border-left:3px solid rgba(255,255,255,.18);
  color:rgba(232,238,243,.70);
  font-size:12px;
  line-height:1.6;
}

/* footer */
.footer{
  position:fixed;
  left:0; right:0; bottom:14px;
  text-align:center;
  font-size:11px;
  color:rgba(232,238,243,.55);
  pointer-events:none;
}

/* mobile */
@media (max-width: 980px){
  .layout{ grid-template-columns: 1fr; gap:22px; }
  .right h2{ font-size:26px; }
}


.alert{
  margin: 10px 0 14px;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  line-height: 1.35;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.22);
  color: rgba(232,238,243,.92);
}

.alert.ok{
  border-color: rgba(34,197,94,.35);
  background: rgba(34,197,94,.12);
}

.alert.bad{
  border-color: rgba(239,68,68,.35);
  background: rgba(239,68,68,.12);
}

/* Wizard cards */
.card.wide{ max-width: 720px; }
.box{ background: rgba(255,255,255,0.06); padding:16px; border-radius:10px; margin:14px 0; }
.check{ display:flex; gap:10px; align-items:center; }
.btn{ display:inline-block; text-align:center; text-decoration:none; }
.pill{ padding:4px 10px; border-radius:999px; font-weight:700; font-size:12px; }
.pill.ok{ background:#1f8f4a; color:#fff; }
.pill.bad{ background:#b42318; color:#fff; }

