/* ============================================================
   MM_MARKET — Auth + Onboarding
   Premium B/W cinematic — aurora gradients, grid, glow orbs
   Pure CSS backgrounds, no canvas
   ============================================================ */

@property --ba {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}
@property --aurora-hue {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

/* ============================================================
   SCREEN
   ============================================================ */
.auth-screen, .onb {
  position: fixed; inset: 0;
  background: #000;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  overflow: hidden;
}
.auth-screen { z-index: 99999; }
.onb { z-index: 99990; }
.auth-screen.exit, .onb.exit {
  animation: exitOut 600ms ease-in forwards;
  pointer-events: none;
}
@keyframes exitOut { to { opacity:0; filter:blur(16px); transform:scale(1.04); } }

/* ============================================================
   BACKGROUND — AURORA GRADIENT (slow-morphing light pillars)
   ============================================================ */
.bg-aurora {
  position: absolute; inset: -30%;
  width: 160%; height: 160%;
  z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 50% 60% at 25% 20%, rgba(255,255,255,0.07), transparent 70%),
    radial-gradient(ellipse 40% 50% at 70% 75%, rgba(255,255,255,0.05), transparent 70%),
    radial-gradient(ellipse 60% 40% at 55% 35%, rgba(255,255,255,0.04), transparent 60%),
    radial-gradient(ellipse 35% 55% at 80% 15%, rgba(255,255,255,0.035), transparent 65%),
    radial-gradient(ellipse 45% 35% at 15% 70%, rgba(255,255,255,0.03), transparent 55%);
  animation: auroraDrift 40s ease-in-out infinite alternate;
}
@keyframes auroraDrift {
  0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
  25%  { transform: translate(-3%, 2%) rotate(0.5deg) scale(1.02); }
  50%  { transform: translate(2%, -3%) rotate(-0.3deg) scale(0.98); }
  75%  { transform: translate(-1%, 4%) rotate(0.8deg) scale(1.03); }
  100% { transform: translate(3%, -1%) rotate(-0.5deg) scale(1); }
}

/* ============================================================
   BACKGROUND — FINE GRID LINES (subtle perspective grid)
   ============================================================ */
.bg-grid {
  position: absolute; inset: 0;
  z-index: 1; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 80%);
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, rgba(0,0,0,0.5) 0%, transparent 80%);
}

/* ============================================================
   BACKGROUND — NOISE TEXTURE (film grain)
   ============================================================ */
.bg-noise {
  position: absolute; inset: 0;
  z-index: 2; pointer-events: none;
  opacity: 0.4;
  filter: url(#grain);
  mix-blend-mode: overlay;
}

/* ============================================================
   VIGNETTE
   ============================================================ */
.bg-vignette {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(ellipse 70% 65% at 50% 50%, transparent 20%, rgba(0,0,0,0.95) 100%);
  z-index: 3;
}

/* ============================================================
   GLOW ORBS — dramatic ambient lighting (3 orbs)
   ============================================================ */
.glow-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}
.glow-orb-1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(255,255,255,0.07) 0%, rgba(255,255,255,0.02) 40%, transparent 70%);
  top: -20%; left: -15%;
  filter: blur(80px);
  animation: orbFloat1 22s ease-in-out infinite alternate;
}
.glow-orb-2 {
  width: 550px; height: 550px;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.015) 45%, transparent 70%);
  bottom: -25%; right: -12%;
  filter: blur(90px);
  animation: orbFloat2 28s ease-in-out infinite alternate;
}
.glow-orb-3 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 65%);
  top: 40%; left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(100px);
  animation: orbFloat3 18s ease-in-out infinite alternate;
}
@keyframes orbFloat1 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.8; }
  50%  { transform: translate(12vw, 10vh) scale(1.2); opacity: 1; }
  100% { transform: translate(-6vw, 18vh) scale(0.9); opacity: 0.7; }
}
@keyframes orbFloat2 {
  0%   { transform: translate(0, 0) scale(1); opacity: 0.7; }
  50%  { transform: translate(-14vw, -12vh) scale(1.25); opacity: 1; }
  100% { transform: translate(10vw, -6vh) scale(0.85); opacity: 0.8; }
}
@keyframes orbFloat3 {
  0%   { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
  50%  { transform: translate(-40%, -60%) scale(1.4); opacity: 0.9; }
  100% { transform: translate(-60%, -45%) scale(0.8); opacity: 0.6; }
}

/* ============================================================
   GLASS CARD (.gc)
   ============================================================ */
.gc {
  position: relative; z-index: 10;
  padding: 56px 56px 44px;
  text-align: center;
  isolation: isolate;
  border-radius: 20px;
  /* 3D tilt */
  transform: perspective(1200px) rotateY(var(--ry,0deg)) rotateX(var(--rx,0deg));
  transition: transform 150ms ease-out;
  will-change: transform;
}
/* rotating border */
.gc::before {
  content: ''; position: absolute;
  inset: -2px; border-radius: 22px;
  z-index: -2;
  background: conic-gradient(
    from var(--ba),
    transparent 0%, rgba(255,255,255,0.85) 4%, transparent 10%,
    transparent 48%, rgba(255,255,255,0.40) 52%, transparent 58%
  );
  animation: brot 4s linear infinite;
  filter: blur(6px);
}
@keyframes brot { to { --ba: 360deg; } }
/* solid glass back */
.gc::after {
  content: ''; position: absolute;
  inset: 0; border-radius: 20px;
  z-index: -1;
  background: rgba(6,6,6,0.90);
  backdrop-filter: blur(40px) saturate(130%);
  -webkit-backdrop-filter: blur(40px) saturate(130%);
  border: 1px solid rgba(255,255,255,0.10);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.15),
    inset 0 -1px 0 rgba(255,255,255,0.03),
    0 0 80px rgba(255,255,255,0.03),
    0 60px 120px rgba(0,0,0,0.85);
}
/* sweep line */
.gc-sweep {
  position: absolute;
  top: -1px; left: 8%; right: 8%;
  height: 1px; border-radius: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.85), transparent);
  animation: sweepLR 5s ease-in-out infinite;
  z-index: 2; pointer-events: none;
}
@keyframes sweepLR {
  0%,100% { opacity:0.12; transform:translateX(-40%); }
  50%     { opacity:1; transform:translateX(40%); }
}
/* entrance */
.gc { animation: gcEnter 900ms cubic-bezier(.16,1,.3,1); }
@keyframes gcEnter {
  from { opacity:0; transform:perspective(1200px) translateY(36px) scale(0.94) rotateX(5deg); filter:blur(12px); }
  to   { opacity:1; transform:perspective(1200px) translateY(0) scale(1) rotateX(0); filter:blur(0); }
}

.gc-auth { width: 460px; max-width: 92vw; }
.gc-onb  { width: 660px; max-width: 94vw; padding: 44px 52px 36px; }

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
.gc-eyebrow {
  font-family: 'Share Tech Mono', monospace;
  font-size: 10px; letter-spacing: 3.5px;
  color: rgba(255,255,255,0.35);
  margin-bottom: 22px;
  animation: eyePulse 2.2s ease-in-out infinite;
}
@keyframes eyePulse {
  0%,100% { color: rgba(255,255,255,0.30); }
  50%     { color: #fff; text-shadow: 0 0 18px rgba(255,255,255,0.7); }
}

.gc-h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 72px;
  line-height: 0.88;
  letter-spacing: -3.5px;
  margin: 0 0 10px;
  color: #fff;
  text-shadow:
    0 0 40px rgba(255,255,255,0.55),
    0 0 100px rgba(255,255,255,0.20);
  animation: h1Glow 4s ease-in-out infinite;
}
.gc-h1 span {
  display: block;
  color: rgba(255,255,255,0.22);
  text-shadow: 0 0 24px rgba(255,255,255,0.10);
}
@keyframes h1Glow {
  0%,100% { text-shadow: 0 0 35px rgba(255,255,255,0.50), 0 0 80px rgba(255,255,255,0.18); }
  50%     { text-shadow: 0 0 50px rgba(255,255,255,0.80), 0 0 130px rgba(255,255,255,0.30); }
}

.gc-desc {
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  color: rgba(255,255,255,0.40);
  line-height: 1.8;
  margin: 16px auto 30px;
  max-width: 400px;
}
.gc-desc em { font-style: normal; color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.4); }

.gc-sent-to {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: rgba(255,255,255,0.28);
  margin: -8px 0 14px;
}
.gc-error {
  min-height: 18px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; color: #fff;
  margin: 10px 0;
  text-shadow: 0 0 10px rgba(255,255,255,0.6);
}

/* ============================================================
   FORM FIELDS
   ============================================================ */
.gc-fields { display: grid; gap: 20px 18px; margin-bottom: 26px; }
.gc-fields.two   { grid-template-columns: 1fr 1fr; }
.gc-fields.three { grid-template-columns: 1fr 1fr 1fr; }

.gc-field {
  position: relative; height: 56px;
  opacity: 0; transform: translateY(14px);
  animation: fIn 550ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(0.3s + var(--i,0) * 0.08s);
}
@keyframes fIn { to { opacity:1; transform:none; } }

.gc-field input, .gc-field select {
  width: 100%; height: 100%;
  padding: 24px 16px 6px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 12px;
  color: #fff;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; outline: none;
  transition: all 250ms cubic-bezier(.16,1,.3,1);
}
.gc-field input:focus, .gc-field select:focus {
  border-color: rgba(255,255,255,0.50);
  background: rgba(255,255,255,0.05);
  box-shadow:
    0 0 0 3px rgba(255,255,255,0.05),
    0 0 30px rgba(255,255,255,0.08),
    inset 0 0 20px rgba(255,255,255,0.02);
}
.gc-field span {
  position: absolute; left: 16px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Share Tech Mono', monospace;
  font-size: 11px; letter-spacing: 1.6px;
  color: rgba(255,255,255,0.25);
  pointer-events: none;
  transition: all 250ms cubic-bezier(.16,1,.3,1);
}
.gc-field input:focus ~ span,
.gc-field input:not(:placeholder-shown) ~ span,
.gc-field select:focus ~ span {
  top: 10px; transform: none;
  font-size: 8px; color: #fff;
  text-shadow: 0 0 8px rgba(255,255,255,0.5);
}
.gc-field i {
  position: absolute; left: 12px; right: 12px; bottom: 4px;
  height: 1px; background: rgba(255,255,255,0.04);
  pointer-events: none; overflow: hidden; border-radius: 1px;
}
.gc-field i::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, #fff, transparent);
  transform: translateX(-100%);
  transition: transform 500ms cubic-bezier(.16,1,.3,1);
}
.gc-field input:focus ~ i::after,
.gc-field select:focus ~ i::after { transform: translateX(0); }
.gc-field small {
  position: absolute; left: 16px; bottom: -15px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 9px; color: rgba(255,255,255,0.18);
  transition: color 250ms;
}
.gc-field:focus-within small { color: rgba(255,255,255,0.50); }

/* ============================================================
   BUTTONS
   ============================================================ */
.gc-btn {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  letter-spacing: 2.5px; padding: 16px 34px;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 12px;
  background: transparent; color: #fff;
  transition: all 250ms cubic-bezier(.16,1,.3,1);
  display: inline-flex; align-items: center; gap: 10px;
  position: relative;
  overflow: hidden;
}
/* shimmer hover effect */
.gc-btn::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.06) 45%, rgba(255,255,255,0.12) 50%, rgba(255,255,255,0.06) 55%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 600ms ease;
  pointer-events: none;
}
.gc-btn:hover::before { transform: translateX(100%); }

.gc-btn:hover:not(:disabled) {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.45);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255,255,255,0.08);
}
.gc-btn:disabled { opacity: 0.30; cursor: not-allowed; }
.gc-btn.ghost { border-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.40); }
.gc-btn.ghost:hover:not(:disabled) { color: #fff; }
.gc-btn.primary {
  background: #fff; color: #000; border-color: #fff;
  box-shadow: 0 0 40px rgba(255,255,255,0.20), 0 0 80px rgba(255,255,255,0.06);
}
.gc-btn.primary::before {
  background: linear-gradient(105deg, transparent 40%, rgba(0,0,0,0.04) 45%, rgba(0,0,0,0.08) 50%, rgba(0,0,0,0.04) 55%, transparent 60%);
}
.gc-btn.primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 12px 50px rgba(255,255,255,0.35),
    0 0 80px rgba(255,255,255,0.20),
    0 0 120px rgba(255,255,255,0.08);
}
.gc-btn.primary .arr { display: inline-block; font-style: normal; transition: transform 250ms; }
.gc-btn.primary:hover .arr { transform: translateX(5px); }
.gc-btn.full { width: 100%; justify-content: center; margin-top: 8px; }
.gc-btn.big {
  padding: 22px 60px; font-size: 15px; letter-spacing: 3.5px;
  animation: btnPulse 2.8s ease-in-out infinite;
}
@keyframes btnPulse {
  0%,100% { box-shadow: 0 0 40px rgba(255,255,255,0.20), 0 0 80px rgba(255,255,255,0.06); }
  50%     { box-shadow: 0 0 70px rgba(255,255,255,0.50), 0 0 120px rgba(255,255,255,0.15), 0 0 180px rgba(255,255,255,0.06); }
}
.gc-actions { display: flex; gap: 14px; justify-content: center; margin-top: 12px; }

/* switch link (already have account / register) */
.gc-switch {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: rgba(255,255,255,0.28);
  margin: 20px 0 0;
}
.gc-switch a {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  padding-bottom: 1px;
  transition: all 200ms;
  cursor: pointer;
}
.gc-switch a:hover {
  border-color: #fff;
  text-shadow: 0 0 10px rgba(255,255,255,0.5);
}

/* ============================================================
   AUTH STEP TRANSITIONS
   ============================================================ */
.auth-step { animation: stepSlide 650ms cubic-bezier(.16,1,.3,1); }
@keyframes stepSlide {
  from { opacity:0; transform:translateY(24px) scale(0.96); filter:blur(8px); }
  to   { opacity:1; transform:none; filter:none; }
}

/* ============================================================
   STAGGERED FADE-IN for auth elements
   ============================================================ */
.anim-fade {
  opacity: 0;
  transform: translateY(20px);
  animation: animFadeUp 700ms cubic-bezier(.16,1,.3,1) forwards;
  animation-delay: calc(300ms + var(--d, 0) * 120ms);
}
@keyframes animFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   SPINNER — enhanced with pulse rings
   ============================================================ */
.gc-spinner-wrap {
  position: relative;
  width: 72px; height: 72px;
  margin: 32px auto;
}
.gc-spinner {
  position: absolute; inset: 10px;
  width: 52px; height: 52px;
  border: 2px solid rgba(255,255,255,0.06);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  box-shadow: 0 0 24px rgba(255,255,255,0.15);
}
.gc-spinner-ring {
  position: absolute; inset: 0;
  width: 72px; height: 72px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: spinnerPulse 2s ease-out infinite;
}
.gc-spinner-ring.r2 {
  animation-delay: 1s;
}
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes spinnerPulse {
  0%   { transform: scale(1); opacity: 0.6; border-color: rgba(255,255,255,0.15); }
  100% { transform: scale(1.8); opacity: 0; border-color: rgba(255,255,255,0); }
}

/* checking status text */
.gc-checking-status {
  font-size: 11px !important;
  color: rgba(255,255,255,0.25) !important;
  margin-top: 8px !important;
  animation: statusPulse 1.5s ease-in-out infinite;
}
@keyframes statusPulse {
  0%,100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ============================================================
   ONBOARDING EXTRAS
   ============================================================ */
.gc-stepper {
  position: relative; display: flex;
  align-items: flex-start; justify-content: space-between;
  width: 100%; max-width: 560px;
  margin-bottom: 36px; z-index: 10;
}
.gc-stepper .line {
  position: absolute; top: 20px; left: 48px; right: 48px;
  height: 1px; background: rgba(255,255,255,0.06); z-index: 0;
}
.gc-stepper .line i {
  display: block; height: 100%; width: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.25), #fff);
  box-shadow: 0 0 12px rgba(255,255,255,0.5);
  transition: width 650ms cubic-bezier(.16,1,.3,1);
}
.step-dot {
  position: relative; z-index: 1;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  cursor: pointer;
}
.step-dot .num {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  border: 1px solid rgba(255,255,255,0.12); border-radius: 50%;
  background: rgba(6,6,6,0.9);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700; font-size: 13px;
  color: rgba(255,255,255,0.25);
  transition: all 400ms cubic-bezier(.16,1,.3,1);
}
.step-dot.active .num {
  background: #fff; color: #000; border-color: #fff;
  box-shadow: 0 0 0 5px rgba(255,255,255,0.06), 0 0 30px rgba(255,255,255,0.50), 0 0 60px rgba(255,255,255,0.15);
  transform: scale(1.12);
}
.step-dot.done .num { background: rgba(255,255,255,0.12); color: #fff; border-color: rgba(255,255,255,0.30); }
.step-dot .lbl {
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 2px;
  color: rgba(255,255,255,0.20);
  transition: color 350ms;
}
.step-dot.active .lbl { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,0.4); }
.step-dot.done .lbl { color: rgba(255,255,255,0.40); }

.gc-tag {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; letter-spacing: 2.5px; color: rgba(255,255,255,0.20);
  margin-bottom: 18px;
}
.gc-tag i { flex: 1; height: 1px; background: linear-gradient(90deg, rgba(255,255,255,0.20), transparent); }
.gc-tag i:last-child { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20)); }
.gc-tag span { color: #fff; }

.reveal-letters { display: block; width: 100%; text-align: center; }
.reveal-letters .ch {
  display: inline-block; opacity: 0;
  transform: translateY(18px) scale(0.94);
  animation: chReveal 550ms cubic-bezier(.16,1,.3,1) forwards;
}
.reveal-letters .ch.space { width: 0.3em; }
@keyframes chReveal { to { opacity:1; transform:none; } }

.pane { display: none; text-align: center; animation: stepSlide 600ms cubic-bezier(.16,1,.3,1); }
.pane.active { display: block; }
.pane-foot { display: flex; gap: 14px; justify-content: center; margin-top: 16px; }
.pane-foot.center { justify-content: center; }

.gc-toggle {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border: 1px dashed rgba(255,255,255,0.10);
  border-radius: 12px; margin-bottom: 24px;
}
.gc-toggle strong { font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 12px; letter-spacing: 1.8px; }
.gc-toggle small { display: block; color: rgba(255,255,255,0.25); font-size: 10px; margin-top: 3px; font-family: 'JetBrains Mono', monospace; }
.gc-toggle-pill { display: inline-flex; border: 1px solid rgba(255,255,255,0.12); border-radius: 8px; }
.gc-toggle-pill span { padding: 7px 16px; font-size: 11px; letter-spacing: 1.8px; color: rgba(255,255,255,0.25); font-family: 'Share Tech Mono', monospace; }
.gc-toggle-pill .active { background: #fff; color: #000; border-radius: 7px; }

.gc-bootlog {
  background: rgba(255,255,255,0.015); border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px; padding: 18px 22px; height: 190px; overflow: auto; margin: 8px 0 20px; text-align: left;
}
.gc-bootlog pre { margin: 0; font-family: 'Share Tech Mono', monospace; font-size: 11px; color: rgba(255,255,255,0.70); line-height: 1.9; white-space: pre-wrap; }

.gc-bottom {
  position: relative; z-index: 10; padding: 16px 24px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Share Tech Mono', monospace;
  font-size: 9px; color: rgba(255,255,255,0.16); letter-spacing: 1.6px; gap: 12px;
}
.gc-bottom b { color: #fff; font-weight: 400; text-shadow: 0 0 8px rgba(255,255,255,0.35); }
.gc-bottom .div { color: rgba(255,255,255,0.08); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .gc, .gc-field, .auth-step, .pane, .reveal-letters .ch { animation-duration: 0.01ms !important; }
  .bg-aurora, .glow-orb, .gc-sweep { animation: none !important; }
  .gc::before { animation: none !important; }
  .gc-btn.big { animation: none !important; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 700px) {
  .gc-auth { padding: 40px 28px 32px; }
  .gc-onb  { padding: 32px 22px 28px; }
  .gc-h1   { font-size: 52px; letter-spacing: -2.5px; }
  .gc-fields.two, .gc-fields.three { grid-template-columns: 1fr; }
  .glow-orb-1 { width: 400px; height: 400px; filter: blur(60px); }
  .glow-orb-2 { width: 350px; height: 350px; filter: blur(70px); }
  .glow-orb-3 { width: 250px; height: 250px; filter: blur(80px); }
}
