*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html,
body {
  height: 100%;
  overflow: hidden;
  background: #000;
  font-family: "DM Sans", sans-serif;
}

/* ─── SHELL ─────────────────────────────────────────────────── */
.shell {
  display: flex;
  height: 100vh;
  width: 100vw;
  overflow: hidden;
}

/* ─── LEFT PANEL (sticky) ────────────────────────────────────── */
.left {
  height: 100vh;
  flex: 0 0 55%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: #060606;
  position: relative;
  isolation: isolate;
}

/* Animated gradient mesh */
@keyframes meshShift {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.mesh {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(
      ellipse 60% 50% at 18% 28%,
      rgba(201, 0, 2, 0.22) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 40% 60% at 80% 72%,
      rgba(201, 0, 2, 0.1) 0%,
      transparent 65%
    ),
    radial-gradient(
      ellipse 50% 40% at 62% 8%,
      rgba(120, 0, 0, 0.15) 0%,
      transparent 65%
    ),
    #060606;
  animation: meshShift 12s ease infinite;
  background-size: 200% 200%;
}

.grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.055'/%3E%3C/svg%3E");
}
.stripe {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: repeating-linear-gradient(
    -55deg,
    transparent,
    transparent 4px,
    rgba(255, 255, 255, 0.012) 4px,
    rgba(255, 255, 255, 0.012) 8px
  );
}
.perfs {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
  padding: 40px 0;
  z-index: 10;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}
.perf {
  width: 18px;
  height: 26px;
  background: #000;
  border-radius: 4px;
  margin: 0 auto;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}
@keyframes scan {
  from {
    top: -4px;
  }
  to {
    top: 100%;
  }
}
.scanline {
  position: absolute;
  left: 32px;
  right: 0;
  height: 2px;
  z-index: 5;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201, 0, 2, 0.5),
    transparent
  );
  animation: scan 6s linear infinite;
  pointer-events: none;
  box-shadow: 0 0 20px rgba(201, 0, 2, 0.3);
  clip-path: inset(0);
}
.accent-bar {
  position: absolute;
  top: 0;
  left: 32px;
  right: 0;
  height: 3px;
  z-index: 10;
  background: linear-gradient(
    90deg,
    #c90002,
    rgba(201, 0, 2, 0.3),
    transparent
  );
}

.left-content {
  position: relative;
  z-index: 8;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 28px 40px 28px 56px;
}

/* Top */
.left-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.left-logo img {
  height: 80px;
  width: auto;
  /* filter: brightness(0) invert(1); */
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(201, 0, 2, 0.15);
  border: 1px solid rgba(201, 0, 2, 0.3);
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}
.live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c90002;
  animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 0, 2, 0.5);
  }
  50% {
    box-shadow: 0 0 0 6px rgba(201, 0, 2, 0);
  }
}

/* Hero row (hero + video side-by-side) */
.left-hero-row {
  flex: 1;
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 16px 0;
  min-height: 0;
}

/* Hero */
.left-hero {
  flex: 0 0 48%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 0, 2, 0.9);
}
.eyebrow-line {
  height: 1px;
  width: 40px;
  background: rgba(201, 0, 2, 0.5);
}
.left-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 4.2rem);
  line-height: 0.88;
  letter-spacing: 0.03em;
  color: #fff;
  margin-bottom: 18px;
}
.left-title .red {
  color: #c90002;
}
.left-title .dim {
  color: rgba(255, 255, 255, 0.35);
}

/* Step tracker */
.step-track {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.step-row {
  display: flex;
  align-items: center;
  gap: 14px;
  transition: opacity 0.3s;
}
.step-row.inactive {
  opacity: 0.3;
}
.step-row.done {
  opacity: 0.55;
}
.step-circle {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.4);
  transition: all 0.35s ease;
}
.step-row.active .step-circle {
  border-color: #c90002;
  color: #fff;
  background: #c90002;
  box-shadow: 0 0 0 4px rgba(201, 0, 2, 0.2);
}
.step-row.done .step-circle {
  border-color: #22c55e;
  background: #22c55e;
  color: #fff;
}
.step-lbl {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  transition: color 0.3s;
}
.step-row.active .step-lbl {
  color: #fff;
  font-weight: 600;
}
.step-connector {
  width: 2px;
  height: 10px;
  background: rgba(255, 255, 255, 0.1);
  margin-left: 11px;
  border-radius: 2px;
  transition: background 0.3s;
}
.step-connector.lit {
  background: rgba(201, 0, 2, 0.4);
}

/* Role toggle */
.role-pill {
  display: inline-flex;
  gap: 3px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  backdrop-filter: blur(12px);
  margin-bottom: 14px;
  width: fit-content;
}
.rpill-btn {
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  padding: 6px 18px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.rpill-btn.is-active {
  background: #fff;
  color: #c90002;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}
.rpill-btn:hover:not(.is-active) {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

/* Panels */
.panels-outer {
  position: relative;
  min-height: 80px;
}
.feat-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
}
.feat-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Typing lines */
.typing-lines {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
.typing-line {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.65);
  min-height: 20px;
}
.typing-line::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c90002;
  flex-shrink: 0;
}
.tl-text {
  border-right: 2px solid rgba(255, 255, 255, 0.55);
  padding-right: 4px;
  width: fit-content;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  50% {
    border-color: transparent;
  }
}

/* Video embed */
.video-frame {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.7),
    0 0 0 1px rgba(201, 0, 2, 0.1);
  position: relative;
  width: 100%;
}
.video-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(180deg, rgba(6, 6, 6, 0.15) 0%, transparent 30%);
  pointer-events: none;
}
.video-frame iframe {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border: none;
}

/* Video panels (togglable) */
.video-panels-outer {
  flex: 1;
  position: relative;
  min-width: 0;
}
.video-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(10px);
  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
  pointer-events: none;
  display: flex;
  align-items: center;
}
.video-panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  position: relative;
}

/* Ticker */
@keyframes tick {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
.ticker-wrap {
  position: relative;
  z-index: 10;
  height: 32px;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
}
.ticker-inner {
  display: inline-flex;
  gap: 48px;
  align-items: center;
  animation: tick 30s linear infinite;
  white-space: nowrap;
}
.tick-item {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255, 255, 255, 0.25);
}
.tick-sep {
  color: #c90002;
  font-size: 8px;
}

/* ─── RIGHT PANEL ─────────────────────────────────────────────── */
.right {
  flex: 1;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-y: auto;
  background: #f7f6f4;
  position: relative;
}
.right::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.07) 1px, transparent 1px);
  background-size: 22px 22px;
}
.right::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    ellipse at top right,
    rgba(201, 0, 2, 0.06),
    transparent 70%
  );
}

.form-card {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 400px;
  padding: 28px 32px;
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-card {
  animation: slideUp 0.55s cubic-bezier(0.33, 1, 0.68, 1) both 0.1s;
}

/* Logo */
.form-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}
.form-logo img {
  height: 80px;
  width: auto;
}

/* Heading */
.form-title {
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.04em;
  color: #0f0f0f;
  line-height: 1;
  margin-bottom: 4px;
  text-align: center;
}
.form-sub {
  font-size: 12px;
  color: #94a3b8;
  text-align: center;
  margin-bottom: 16px;
  font-family: "DM Sans", sans-serif;
}
.form-sub a {
  color: #c90002;
  font-weight: 600;
  text-decoration: none;
}
.form-sub a:hover {
  text-decoration: underline;
}

/* Progress bar */
.prog-bar {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.prog-seg {
  height: 3px;
  flex: 1;
  border-radius: 99px;
  background: #e8e8e4;
  transition:
    background 0.4s ease,
    transform 0.2s;
}
.prog-seg.done {
  background: #22c55e;
}
.prog-seg.active {
  background: #c90002;
}

/* ── INLINE TOAST NOTIFICATION ── */
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
@keyframes toastOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-6px);
  }
}
.form-toast {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 12px;
  margin-bottom: 14px;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  line-height: 1.5;
  animation: toastIn 0.3s cubic-bezier(0.33, 1, 0.68, 1) both;
  position: relative;
  overflow: hidden;
}
.form-toast.toast-error {
  background: rgba(239, 68, 68, 0.07);
  border: 1px solid rgba(239, 68, 68, 0.22);
  color: #b91c1c;
}
.form-toast.toast-warn {
  background: rgba(245, 158, 11, 0.07);
  border: 1px solid rgba(245, 158, 11, 0.22);
  color: #92400e;
}
.form-toast::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
}
.form-toast.toast-error::before {
  background: #ef4444;
}
.form-toast.toast-warn::before {
  background: #f59e0b;
}
.form-toast svg {
  flex-shrink: 0;
  margin-top: 1px;
}
.form-toast.hiding {
  animation: toastOut 0.25s ease forwards;
}

/* Alert */
.f-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  margin-bottom: 14px;
  background: rgba(201, 0, 2, 0.06);
  border: 1px solid rgba(201, 0, 2, 0.18);
  border-radius: 10px;
  font-size: 12px;
  color: #c90002;
  font-family: "DM Sans", sans-serif;
}

/* Section label */
.sec-lbl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c90002;
  margin-bottom: 12px;
}
.sec-lbl::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(201, 0, 2, 0.2);
}

/* Fields */
.field {
  margin-bottom: 10px;
}
.field-lbl {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #94a3b8;
  margin-bottom: 6px;
  transition: color 0.2s;
}
.field:focus-within .field-lbl {
  color: #c90002;
}
.field-wrap {
  position: relative;
}
.f-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 11px;
  border: 1.5px solid #e8e8e4;
  background: #fff;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  color: #1e293b;
  outline: none;
  transition: all 0.22s ease;
}
.f-input:focus {
  border-color: #c90002;
  box-shadow: 0 0 0 4px rgba(201, 0, 2, 0.07);
}
.f-input::placeholder {
  color: #c8cdd6;
}
.f-input.valid {
  border-color: #22c55e;
}
.f-input.invalid {
  border-color: #ef4444;
  animation: fieldShake 0.35s ease;
}
@keyframes fieldShake {
  0%,
  100% {
    transform: translateX(0);
  }
  20%,
  60% {
    transform: translateX(-4px);
  }
  40%,
  80% {
    transform: translateX(4px);
  }
}

/* Two-col row */
.field-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.field-row2 .field {
  margin-bottom: 0;
}

/* Eye toggle */
.eye-btn {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  display: flex;
  padding: 2px;
  transition: color 0.2s;
}
.eye-btn:hover {
  color: #c90002;
}

/* Password strength */
.pw-meter {
  margin-top: 6px;
}
.pw-segs {
  display: flex;
  gap: 4px;
}
.pw-seg {
  height: 3px;
  flex: 1;
  border-radius: 99px;
  background: #e8e8e4;
  transition: background 0.3s ease;
}
.pw-hint {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #94a3b8;
  margin-top: 4px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

/* Role cards */
.role-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 14px;
}
.role-card {
  border: 1.5px solid #e8e8e4;
  border-radius: 12px;
  padding: 14px 12px;
  cursor: pointer;
  transition: all 0.22s ease;
  text-align: center;
  background: #fff;
  position: relative;
  overflow: hidden;
}
.role-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(201, 0, 2, 0);
  transition: background 0.2s;
}
.role-card:hover {
  border-color: rgba(201, 0, 2, 0.35);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}
.role-card:hover::before {
  background: rgba(201, 0, 2, 0.02);
}
.role-card.selected {
  border-color: #c90002;
  background: #fff;
}
.role-card.selected::before {
  background: rgba(201, 0, 2, 0.04);
}
.role-card input[type="radio"] {
  display: none;
}
.role-icon {
  font-size: 22px;
  margin-bottom: 6px;
  display: block;
}
.role-name {
  font-family: "DM Mono", monospace;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  display: block;
  margin-bottom: 3px;
}
.role-card.selected .role-name {
  color: #c90002;
}
.role-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 11px;
  color: #94a3b8;
  line-height: 1.4;
}
.role-card .rc-check {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #c90002;
  display: none;
  align-items: center;
  justify-content: center;
}
.role-card.selected .rc-check {
  display: flex;
}

/* Terms */
.terms-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  cursor: pointer;
  font-size: 12px;
  color: #64748b;
  font-family: "DM Sans", sans-serif;
  line-height: 1.5;
}
.t-box {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  border: 1.5px solid #e8e8e4;
  border-radius: 4px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  margin-top: 2px;
}
.t-box.checked {
  background: #c90002;
  border-color: #c90002;
}
.terms-row a {
  color: #c90002;
  font-weight: 600;
  text-decoration: none;
}
.terms-row a:hover {
  text-decoration: underline;
}

/* Navigation buttons */
.btn-cta {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: #c90002;
  color: #fff;
  border: none;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
}
.btn-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.12) 0%,
    transparent 50%
  );
  pointer-events: none;
}
.btn-cta:hover {
  background: #a80002;
  transform: translateY(-1px);
}
.btn-cta:active {
  transform: scale(0.98);
}
.btn-cta:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}
.btn-ghost {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  background: transparent;
  border: 1.5px solid #e8e8e4;
  color: #64748b;
  font-family: "DM Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s ease;
}
.btn-ghost:hover {
  border-color: rgba(201, 0, 2, 0.3);
  color: #c90002;
}
.btn-row {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.btn-row .btn-ghost {
  flex: 0 0 30%;
  width: 30%;
  padding: 12px 0;
}
.btn-row .btn-cta {
  flex: 0 0 70%;
  width: 70%;
}

/* Ripple */
@keyframes ripple {
  to {
    transform: scale(4);
    opacity: 0;
  }
}
.ripple-el {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  margin-left: -20px;
  margin-top: -20px;
  animation: ripple 0.6s linear;
  pointer-events: none;
}

/* OR divider */
.or-div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0;
}
.or-line {
  flex: 1;
  height: 1px;
  background: #e8e8e4;
}
.or-text {
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #c8cdd6;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* Google */
.btn-google {
  width: 100%;
  padding: 11px;
  border-radius: 12px;
  background: #fff;
  border: 1.5px solid #e8e8e4;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}
.btn-google:hover {
  border-color: rgba(201, 0, 2, 0.4);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.btn-google img {
  width: 18px;
  height: 18px;
}

/* Button loading state */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-cta.loading {
  pointer-events: none;
  opacity: 0.75;
}
.btn-cta.loading .btn-icon-check,
.btn-cta.loading .btn-label {
  display: none;
}
.btn-cta.loading .btn-spinner {
  display: flex !important;
  animation: spin 1s linear infinite;
}

/* Footer */
.form-footer {
  text-align: center;
  margin-top: 16px;
  font-family: "DM Mono", monospace;
  font-size: 9px;
  color: #c8cdd6;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Step transitions */
.form-step {
  display: none;
}
.form-step.active {
  display: block;
  animation: stepIn 0.4s cubic-bezier(0.33, 1, 0.68, 1) both;
}
@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateX(16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .left {
    display: none;
  }
  .right {
    background: #080808;
  }
  .right::before {
    background-image: radial-gradient(
      rgba(255, 255, 255, 0.04) 1px,
      transparent 1px
    );
    background-size: 22px 22px;
  }
  .form-title {
    color: #fff;
  }
  .form-sub {
    color: rgba(255, 255, 255, 0.35);
  }
  .f-input {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
  }
  .role-card {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.08);
  }
  .btn-ghost {
    border-color: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.4);
  }
  .btn-google {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
  }
  .or-line {
    background: rgba(255, 255, 255, 0.07);
  }
  .t-box {
    background: #18181b;
    border-color: rgba(255, 255, 255, 0.08);
  }
}

.sc-bottom {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e8e8e4;
  text-align: center;
  font-size: 12px;
  color: #71717a;
  line-height: 1.5;
}

html.dark .sc-bottom {
  border-top-color: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.3);
}

.sc-link {
  color: #c90002;
  font-weight: 700;
  text-decoration: none;
}
.sc-link:hover {
  text-decoration: underline;
}
