/* Auth pages — split panel: brand story left, form right. */

.auth-body {
  min-height: 100vh;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--paper);
}

/* ---------- Left: brand panel ---------- */

.auth-brand {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px 48px 44px;
  color: #fff;
  background:
    radial-gradient(800px 500px at 10% -10%, rgba(84, 87, 242, 0.45), transparent 60%),
    radial-gradient(700px 460px at 100% 20%, rgba(155, 92, 247, 0.3), transparent 58%),
    var(--ink);
  overflow: hidden;
}
.auth-brand::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(700px 500px at 40% 20%, #000 30%, transparent 75%);
  pointer-events: none;
}
.auth-brand > * { position: relative; }

.auth-brand .brand-mark { color: #fff; }

.auth-pitch h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 800;
  margin: 0 0 16px;
}
.auth-pitch h2 em {
  font-style: normal;
  background: linear-gradient(100deg, #98a8ff 0%, #cfa9ff 60%, #f0abfc 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.auth-pitch p { color: rgba(255, 255, 255, 0.72); font-size: 15px; line-height: 1.7; max-width: 400px; margin: 0 0 26px; }

.auth-live { display: flex; flex-direction: column; gap: 10px; }
.auth-live-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700;
  letter-spacing: 0.13em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}
.auth-live-chips { display: flex; flex-wrap: wrap; gap: 8px; }

.auth-points { list-style: none; padding: 0; margin: 0; }
.auth-points li {
  display: flex; align-items: flex-start; gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  margin-bottom: 10px;
}
.auth-points li::before { content: "✓"; color: #34d399; font-weight: 700; }

/* ---------- Right: form panel ---------- */

.auth-form-side {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
}

.auth-card { width: 100%; max-width: 400px; }
.auth-card h1 { font-size: 26px; letter-spacing: -0.025em; margin: 0 0 8px; }
.auth-card .sub { margin: 0 0 28px; color: var(--muted); font-size: 14.5px; line-height: 1.6; }
.auth-card .btn { width: 100%; margin-top: 6px; }

.auth-alt {
  margin-top: 26px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 14px;
  color: var(--muted);
}

.auth-foot { margin-top: 34px; font-size: 13px; color: var(--muted); }

/* ---------- Responsive ---------- */

@media (max-width: 860px) {
  .auth-body { grid-template-columns: 1fr; }
  .auth-brand { padding: 26px 26px 34px; gap: 26px; min-height: auto; }
  .auth-points { display: none; }
  .auth-pitch p { margin-bottom: 18px; }
  .auth-form-side { padding: 36px 22px 60px; }
}
