@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad-Light.woff2") format("woff2");
  font-style: normal;
  font-weight: 300;
  font-display: swap;
}

@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad-Medium.woff2") format("woff2");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad-Bold.woff2") format("woff2");
  font-style: normal;
  font-weight: 600 800;
  font-display: swap;
}

@font-face {
  font-family: "Estedad";
  src: url("../fonts/Estedad/Estedad-Black.woff2") format("woff2");
  font-style: normal;
  font-weight: 900;
  font-display: swap;
}

:root {
  --jc-primary: #ef3155;
  --jc-primary-dark: #c8123b;
  --jc-accent: #ff7754;
  --jc-ink: #211721;
  --jc-muted: #766b78;
  --jc-soft: #f8f4f8;
  --jc-line: #e9e1e9;
  --jc-success: #168760;
  --jc-warning: #9a6713;
  --jc-danger: #b51d3e;
  --jc-visual: #160a22;
  --jc-visual-deep: #0c0612;
  --jc-white: #ffffff;
  --jc-card-shadow: 0 30px 90px rgba(45, 18, 51, 0.14);
  --jc-focus: 0 0 0 4px rgba(239, 49, 85, 0.11);
}

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

html {
  min-width: 320px;
  background: var(--jc-visual);
  scroll-behavior: smooth;
}

body,
button,
input {
  font-family: "Estedad", Tahoma, Arial, sans-serif;
}

body {
  margin: 0;
}

button,
input {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.jc-auth-body {
  min-height: 100vh;
  min-height: 100svh;
  overflow-x: hidden;
  background: #f8f5f8;
  color: var(--jc-ink);
  font-size: 15px;
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.jc-page-loader {
  display: none;
}

.js .jc-page-loader {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-content: center;
  justify-items: center;
  gap: 16px;
  background: #fbf9fb;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.42s ease, visibility 0.42s ease;
}

.js.is-ready .jc-page-loader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.jc-loader-logo {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 24px;
  background: var(--jc-white);
  box-shadow: 0 18px 52px rgba(55, 20, 58, 0.16);
  animation: jc-loader-breathe 1.2s ease-in-out infinite alternate;
}

.jc-loader-logo::after {
  content: "";
  position: absolute;
  inset: -7px;
  border: 1px solid rgba(239, 49, 85, 0.18);
  border-radius: 29px;
  animation: jc-loader-ring 1.4s ease-out infinite;
}

.jc-loader-logo img {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 18px;
}

.jc-loader-line {
  width: 120px;
  height: 4px;
  overflow: hidden;
  border-radius: 999px;
  background: #eee7ef;
}

.jc-loader-line i {
  display: block;
  width: 45%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--jc-primary), var(--jc-accent));
  animation: jc-loader-line 1s ease-in-out infinite;
}

.jc-page-loader small {
  color: var(--jc-muted);
  font-size: 11px;
  font-weight: 600;
}

.jc-auth-shell {
  min-height: 100vh;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(450px, 0.95fr) minmax(540px, 1.05fr);
}

.jc-auth-visual {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
  overflow: hidden;
  padding: clamp(32px, 4.2vw, 64px) clamp(34px, 5.2vw, 82px);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 119, 84, 0.2), transparent 31%),
    radial-gradient(circle at 88% 78%, rgba(239, 49, 85, 0.15), transparent 34%),
    linear-gradient(145deg, #24102f 0%, var(--jc-visual) 54%, var(--jc-visual-deep) 100%);
  color: var(--jc-white);
}

.jc-visual-grid {
  position: absolute;
  z-index: -3;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.12) 1px, transparent 1.6px);
  background-size: 28px 28px;
  opacity: 0.42;
  -webkit-mask-image: radial-gradient(ellipse at 56% 43%, #000 0%, rgba(0, 0, 0, 0.82) 36%, transparent 78%);
  mask-image: radial-gradient(ellipse at 56% 43%, #000 0%, rgba(0, 0, 0, 0.82) 36%, transparent 78%);
}

.jc-visual-grid::before,
.jc-visual-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.jc-visual-grid::before {
  width: min(62vw, 760px);
  aspect-ratio: 1;
  top: 12%;
  right: 8%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 74px rgba(255, 255, 255, 0.018),
    0 0 0 148px rgba(255, 255, 255, 0.012);
}

.jc-visual-grid::after {
  width: 48%;
  height: 1px;
  right: 8%;
  bottom: 18%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: rotate(-13deg);
}

.jc-visual-orb {
  position: absolute;
  z-index: -2;
  display: block;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

.jc-orb-one {
  width: 330px;
  height: 330px;
  top: -195px;
  left: -118px;
  background: rgba(255, 119, 84, 0.08);
  box-shadow: 0 0 90px rgba(255, 119, 84, 0.09);
  animation: jc-orbit 14s ease-in-out infinite alternate;
}

.jc-orb-two {
  width: 300px;
  height: 300px;
  right: -150px;
  bottom: 8%;
  background: rgba(239, 49, 85, 0.08);
  box-shadow: 0 0 100px rgba(239, 49, 85, 0.12);
  animation: jc-orbit 12s ease-in-out -3s infinite alternate-reverse;
}

.jc-auth-brand {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
}

.jc-auth-logo {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.075);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.2);
}

.jc-auth-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 14px;
}

.jc-brand-copy strong,
.jc-brand-copy small {
  display: block;
}

.jc-brand-copy strong {
  font-size: 21px;
  font-weight: 900;
  line-height: 1.35;
}

.jc-brand-copy small {
  margin-top: 2px;
  color: #c9b9ce;
  font-size: 10px;
  font-weight: 500;
}

.jc-visual-copy {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-top: clamp(44px, 7vh, 90px);
}

.jc-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: #eee4f0;
  font-size: 11px;
  font-weight: 700;
}

.jc-live-badge i {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #54e3ae;
  box-shadow: 0 0 0 5px rgba(84, 227, 174, 0.11);
}

.jc-live-badge i::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(84, 227, 174, 0.34);
  border-radius: 50%;
  animation: jc-live-pulse 1.8s ease-out infinite;
}

.jc-visual-copy h1 {
  max-width: 640px;
  margin: 20px 0 15px;
  font-size: clamp(40px, 3.7vw, 56px);
  font-weight: 900;
  letter-spacing: -1.6px;
  line-height: 1.28;
}

.jc-visual-copy h1 em {
  color: #ff8b6d;
  font-style: normal;
}

.jc-visual-copy p {
  max-width: 610px;
  margin: 0;
  color: #cbbdce;
  font-size: 14px;
  line-height: 2.05;
}

.jc-mobile-benefits {
  display: none;
}

.jc-visual-showcase {
  position: relative;
  z-index: 2;
  width: min(100%, 650px);
  margin-top: clamp(26px, 4.5vh, 46px);
}

.jc-showcase-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 25px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.22);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  animation: jc-showcase-float 7s ease-in-out infinite;
}

.jc-showcase-header {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 15px 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  background: rgba(5, 2, 8, 0.1);
}

.jc-showcase-mark {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--jc-primary), var(--jc-accent));
  color: var(--jc-white);
  font-size: 15px;
  box-shadow: 0 10px 26px rgba(239, 49, 85, 0.24);
}

.jc-showcase-header small,
.jc-showcase-header strong {
  display: block;
}

.jc-showcase-header small {
  margin-bottom: 2px;
  color: #a997ae;
  font-size: 8px;
  font-weight: 600;
}

.jc-showcase-header strong {
  color: #f7f2f8;
  font-size: 11px;
  font-weight: 800;
}

.jc-showcase-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(84, 227, 174, 0.09);
  color: #75e7bd;
  font-size: 8px;
  font-weight: 800;
}

.jc-showcase-status i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

.jc-showcase-summary {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  margin: 17px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.jc-summary-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 139, 109, 0.1);
  color: #ff9a7f;
}

.jc-summary-icon svg {
  width: 23px;
  height: 23px;
}

.jc-showcase-summary small,
.jc-showcase-summary strong {
  display: block;
}

.jc-showcase-summary small {
  margin-bottom: 2px;
  color: #a997ae;
  font-size: 8px;
  font-weight: 600;
}

.jc-showcase-summary strong {
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.7;
}

.jc-showcase-summary p {
  margin: 4px 0 0;
  color: #b9aabd;
  font-size: 8px;
  line-height: 1.85;
}

.jc-showcase-flow {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 30px minmax(0, 1fr) 30px minmax(0, 1fr);
  align-items: center;
  padding: 0 17px 17px;
}

.jc-showcase-flow article {
  min-width: 0;
  display: grid;
  grid-template-columns: 29px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
}

.jc-showcase-flow article > span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.055);
  color: #ff9b81;
  font-size: 9px;
  font-weight: 900;
}

.jc-showcase-flow b,
.jc-showcase-flow small {
  display: block;
}

.jc-showcase-flow b {
  overflow: hidden;
  color: #f4edf5;
  font-size: 8px;
  font-weight: 800;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jc-showcase-flow small {
  overflow: hidden;
  margin-top: 1px;
  color: #97859c;
  font-size: 6.5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jc-showcase-flow > i {
  height: 1px;
  margin-inline: 8px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.04), rgba(255, 139, 109, 0.38), rgba(255, 255, 255, 0.04));
}

.jc-visual-trust {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: auto;
  padding-top: 28px;
  color: #ad9db1;
  font-size: 9px;
  font-weight: 650;
}

.jc-visual-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.jc-visual-trust i {
  width: 17px;
  height: 17px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  background: rgba(84, 227, 174, 0.09);
  color: #65e2b3;
  font-size: 8px;
  font-style: normal;
  font-weight: 900;
}

.jc-auth-main {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 84px clamp(24px, 5vw, 80px) 58px;
  background:
    radial-gradient(circle at 88% 4%, rgba(239, 49, 85, 0.07), transparent 25%),
    radial-gradient(circle at 4% 90%, rgba(255, 119, 84, 0.06), transparent 27%),
    #f8f5f8;
}

.jc-auth-topbar {
  position: absolute;
  top: max(22px, env(safe-area-inset-top));
  left: clamp(24px, 5vw, 80px);
  right: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.jc-mobile-brand {
  display: none;
}

.jc-home-link {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 11px;
  border: 1px solid #e6dee7;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.8);
  color: #665b69;
  font-size: 10px;
  font-weight: 700;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.jc-home-link svg {
  width: 16px;
  height: 16px;
}

.jc-home-link:hover {
  transform: translateX(-2px);
  border-color: #ddcddf;
  background: var(--jc-white);
  color: var(--jc-primary-dark);
}

.jc-auth-content {
  width: min(100%, 520px);
}

.jc-auth-card {
  position: relative;
  width: 100%;
  padding: 36px;
  border: 1px solid rgba(226, 216, 227, 0.9);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--jc-card-shadow);
  animation: jc-card-enter 0.58s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

.jc-stepper {
  display: grid;
  grid-template-columns: auto minmax(35px, 1fr) auto;
  align-items: start;
  gap: 10px;
  margin-bottom: 24px;
}

.jc-stepper > span {
  display: grid;
  justify-items: center;
  gap: 5px;
  color: #9c929e;
  font-size: 8px;
  font-weight: 700;
}

.jc-stepper > span i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid #e5dce6;
  border-radius: 50%;
  background: #fbf9fb;
  color: #948895;
  font-style: normal;
  font-weight: 800;
}

.jc-stepper > span.is-active {
  color: var(--jc-primary-dark);
}

.jc-stepper > span.is-active i {
  border-color: transparent;
  background: linear-gradient(135deg, var(--jc-primary), var(--jc-accent));
  color: var(--jc-white);
  box-shadow: 0 8px 20px rgba(239, 49, 85, 0.2);
}

.jc-stepper > span.is-complete {
  color: var(--jc-success);
}

.jc-stepper > span.is-complete i {
  border-color: rgba(22, 135, 96, 0.18);
  background: rgba(22, 135, 96, 0.08);
  color: var(--jc-success);
}

.jc-stepper > em {
  height: 1px;
  margin-top: 14px;
  background: linear-gradient(90deg, #eadfea, #efe8ef);
}

.jc-auth-heading {
  margin-bottom: 25px;
}

.jc-heading-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  border: 1px solid rgba(239, 49, 85, 0.1);
  border-radius: 16px;
  background: linear-gradient(145deg, #fff4f6, #fff9f7);
  color: var(--jc-primary);
  box-shadow: 0 12px 30px rgba(239, 49, 85, 0.08);
}

.jc-heading-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.75;
}

.jc-heading-icon.is-otp {
  color: #7453c9;
  border-color: rgba(116, 83, 201, 0.11);
  background: linear-gradient(145deg, #f5f1ff, #fbf9ff);
}

.jc-heading-icon.is-register {
  color: var(--jc-success);
  border-color: rgba(22, 135, 96, 0.11);
  background: linear-gradient(145deg, #eefaf6, #f9fffc);
}

.jc-eyebrow {
  display: block;
  margin-bottom: 7px;
  color: var(--jc-primary-dark);
  font-size: 10px;
  font-weight: 800;
}

.jc-auth-heading h2 {
  margin: 0 0 8px;
  color: var(--jc-ink);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.55px;
  line-height: 1.5;
}

.jc-auth-heading p {
  margin: 0;
  color: var(--jc-muted);
  font-size: 12px;
  line-height: 2;
}

.jc-auth-heading p b {
  color: #403444;
  font-weight: 800;
}

.jc-auth-form {
  display: grid;
  gap: 14px;
}

.jc-auth-form.is-compact {
  gap: 11px;
}

.jc-field {
  display: grid;
  gap: 7px;
}

.jc-field-centered {
  text-align: center;
}

.jc-field-label {
  color: #4a3f4d;
  font-size: 11px;
  font-weight: 800;
}

.jc-input-shell {
  position: relative;
  display: block;
  color: #9c919e;
}

.jc-input-shell > svg {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 15px;
  width: 19px;
  height: 19px;
  transform: translateY(-50%);
  pointer-events: none;
  transition: color 0.2s ease;
}

.jc-input-shell input {
  width: 100%;
  height: 56px;
  border: 1px solid var(--jc-line);
  border-radius: 15px;
  outline: none;
  background: var(--jc-white);
  color: var(--jc-ink);
  padding: 0 46px 0 15px;
  font-size: 15px;
  font-weight: 500;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jc-input-shell input::placeholder {
  color: #b6adb8;
  font-weight: 400;
  opacity: 1;
}

.jc-input-shell:focus-within {
  color: var(--jc-primary);
}

.jc-input-shell:focus-within input {
  border-color: rgba(239, 49, 85, 0.58);
  background: #fffefe;
  box-shadow: var(--jc-focus);
}

.jc-input-shell input:autofill,
.jc-input-shell input:-webkit-autofill {
  -webkit-text-fill-color: var(--jc-ink);
  box-shadow: 0 0 0 1000px #fff inset;
}

.jc-mobile-shell {
  direction: ltr;
}

.jc-mobile-shell > svg {
  left: auto;
  right: 15px;
}

.jc-mobile-shell input {
  padding-right: 46px;
  padding-left: 69px;
  text-align: left;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.25px;
}

.jc-country-code {
  position: absolute;
  top: 50%;
  left: 9px;
  min-width: 50px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border-radius: 10px;
  background: #f5f0f5;
  color: #786c7a;
  font: 700 11px/1 Arial, sans-serif;
  font-style: normal;
}

.jc-password-shell {
  direction: ltr;
}

.jc-password-shell > svg {
  right: 15px;
}

.jc-password-shell input {
  padding-right: 46px;
  padding-left: 52px;
}

.jc-password-toggle {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 9px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 0;
  border-radius: 10px;
  background: #f5f0f5;
  color: #746877;
  transition: color 0.2s ease, background 0.2s ease;
}

.jc-password-toggle:hover {
  background: #eee5ee;
  color: var(--jc-primary-dark);
}

.jc-password-toggle svg {
  width: 18px;
  height: 18px;
}

.jc-password-toggle .jc-eye-closed,
.jc-password-toggle[aria-pressed="true"] .jc-eye-open {
  display: none;
}

.jc-password-toggle[aria-pressed="true"] .jc-eye-closed {
  display: block;
}

.jc-otp-shell input {
  padding: 0 20px;
}

.jc-otp-input {
  direction: ltr;
  text-align: center;
  font-family: Tahoma, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: 10px;
}

.jc-field-help {
  display: block;
  margin-top: -7px;
  color: #8c818e;
  font-size: 9px;
  line-height: 1.85;
}

.jc-field-help.is-centered {
  text-align: center;
}

.jc-field-feedback {
  min-height: 18px;
  color: #8c818e;
  font-size: 9px;
  font-weight: 600;
}

.jc-field-feedback.is-success {
  color: var(--jc-success);
}

.jc-field-feedback.is-error {
  color: var(--jc-danger);
}

.jc-password-strength {
  display: grid;
  gap: 6px;
  margin-top: -5px;
}

.jc-strength-bars {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.jc-strength-bars i {
  height: 4px;
  border-radius: 999px;
  background: #eee8ef;
  transition: background 0.22s ease, transform 0.22s ease;
}

.jc-password-strength small {
  color: #8c818e;
  font-size: 8px;
}

.jc-password-strength small b {
  color: #625766;
}

.jc-password-strength[data-score="1"] .jc-strength-bars i:nth-child(-n + 1) {
  background: #d8485e;
}

.jc-password-strength[data-score="2"] .jc-strength-bars i:nth-child(-n + 2) {
  background: #e49335;
}

.jc-password-strength[data-score="3"] .jc-strength-bars i:nth-child(-n + 3) {
  background: #54a278;
}

.jc-password-strength[data-score="4"] .jc-strength-bars i {
  background: var(--jc-success);
}

.jc-consent {
  position: relative;
  display: grid;
  grid-template-columns: 21px 1fr;
  gap: 9px;
  align-items: start;
  color: #716674;
  font-size: 9px;
  line-height: 1.9;
  cursor: pointer;
}

.jc-consent input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.jc-checkbox-mark {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin-top: 1px;
  border: 1px solid #dcd2dd;
  border-radius: 7px;
  background: var(--jc-white);
  color: transparent;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.jc-checkbox-mark svg {
  width: 14px;
  height: 14px;
  stroke-width: 2.5;
}

.jc-consent input:checked + .jc-checkbox-mark {
  border-color: transparent;
  background: linear-gradient(135deg, var(--jc-primary), var(--jc-accent));
  color: var(--jc-white);
}

.jc-consent input:focus-visible + .jc-checkbox-mark {
  box-shadow: var(--jc-focus);
}

.jc-consent a {
  color: var(--jc-primary-dark);
  font-weight: 800;
}

.jc-primary-button,
.jc-secondary-button {
  position: relative;
  width: 100%;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  font-size: 13px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}

.jc-primary-button {
  margin-top: 3px;
  background: linear-gradient(135deg, var(--jc-primary), #f04b50 48%, var(--jc-accent));
  color: var(--jc-white);
  box-shadow: 0 16px 34px rgba(239, 49, 85, 0.23);
}

.jc-primary-button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 20%, rgba(255, 255, 255, 0.2) 45%, transparent 70%);
  transform: translateX(110%);
  transition: transform 0.6s ease;
}

.jc-primary-button:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(239, 49, 85, 0.29);
}

.jc-primary-button:hover:not(:disabled)::before {
  transform: translateX(-110%);
}

.jc-secondary-button {
  background: #f3eef4;
  color: #4e4152;
  box-shadow: none;
}

.jc-secondary-button:hover:not(:disabled) {
  transform: translateY(-1px);
  background: #ece4ed;
}

.jc-primary-button:disabled,
.jc-secondary-button:disabled {
  cursor: wait;
  opacity: 0.78;
}

.jc-button-label,
.jc-button-arrow,
.jc-button-spinner {
  position: relative;
  z-index: 1;
}

.jc-button-arrow {
  position: absolute;
  left: 18px;
  width: 19px;
  height: 19px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.jc-primary-button:hover:not(:disabled) .jc-button-arrow {
  transform: translateX(-3px);
}

.jc-button-spinner {
  display: none;
  width: 18px;
  height: 18px;
  border: 2px solid currentColor;
  border-left-color: transparent;
  border-radius: 50%;
  animation: jc-spin 0.7s linear infinite;
}

.is-loading .jc-button-spinner {
  display: block;
}

.is-loading .jc-button-arrow {
  opacity: 0;
}

.jc-quick-benefits {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 7px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #e8dfe9;
  color: #766b78;
  font-size: 8px;
  font-weight: 600;
}

.jc-quick-benefits span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.jc-quick-benefits i {
  color: var(--jc-success);
  font-style: normal;
  font-weight: 900;
}

.jc-auth-switch {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed #e8dfe9;
  color: #746977;
  font-size: 10px;
}

.jc-auth-switch a {
  color: var(--jc-primary-dark);
  font-weight: 900;
}

.jc-auth-switch a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.jc-otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 17px;
}

.jc-otp-actions form {
  margin: 0;
}

.jc-link-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 5px 0;
  border: 0;
  background: transparent;
  color: var(--jc-primary-dark);
  font-size: 9px;
  font-weight: 800;
}

.jc-link-button svg {
  width: 15px;
  height: 15px;
}

.jc-link-button.is-muted {
  color: #7f7482;
}

.jc-link-button:disabled {
  color: #aaa1ac;
  cursor: not-allowed;
}

.jc-legacy-login {
  margin-top: 19px;
  padding-top: 14px;
  border-top: 1px solid #eee7ef;
}

.jc-legacy-login summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  list-style: none;
  color: #766b78;
  font-size: 9px;
  font-weight: 700;
  cursor: pointer;
}

.jc-legacy-login summary::-webkit-details-marker {
  display: none;
}

.jc-legacy-login summary svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.jc-legacy-login[open] summary svg {
  transform: rotate(180deg);
}

.jc-legacy-panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid #eee7ef;
  border-radius: 16px;
  background: #faf8fa;
  animation: jc-panel-open 0.25s ease both;
}

.jc-legacy-panel > p {
  margin: 0 0 11px;
  color: #847987;
  font-size: 8px;
}

.jc-auth-alert-stack {
  display: grid;
  gap: 9px;
  margin-bottom: 13px;
}

.jc-auth-alert {
  display: grid;
  grid-template-columns: 30px 1fr 24px;
  align-items: center;
  gap: 9px;
  padding: 11px 12px;
  border: 1px solid;
  border-radius: 15px;
  background: var(--jc-white);
  box-shadow: 0 10px 30px rgba(49, 23, 53, 0.07);
  font-size: 10px;
  font-weight: 700;
  animation: jc-alert-enter 0.35s ease both;
}

.jc-auth-alert.is-leaving {
  animation: jc-alert-leave 0.22s ease both;
}

.jc-auth-alert p {
  margin: 0;
  line-height: 1.8;
}

.jc-auth-alert > button {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: currentColor;
  font: 400 18px/1 Arial, sans-serif;
  opacity: 0.55;
}

.jc-auth-alert > button:hover {
  background: rgba(0, 0, 0, 0.05);
  opacity: 1;
}

.jc-alert-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  font: 900 12px/1 Arial, sans-serif;
}

.jc-auth-alert.is-success {
  border-color: #bfe7d8;
  background: #f2fbf7;
  color: #086b4d;
}

.jc-auth-alert.is-success .jc-alert-icon {
  background: #dcf4ea;
}

.jc-auth-alert.is-error {
  border-color: #efbec8;
  background: #fff5f7;
  color: #991432;
}

.jc-auth-alert.is-error .jc-alert-icon {
  background: #ffe1e7;
}

.jc-auth-alert.is-warning {
  border-color: #ead9ae;
  background: #fffaf0;
  color: #765412;
}

.jc-auth-alert.is-warning .jc-alert-icon {
  background: #f7eccf;
}

.jc-honeypot {
  position: fixed !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  pointer-events: none !important;
}

.jc-auth-footer {
  position: absolute;
  right: clamp(24px, 5vw, 80px);
  bottom: max(19px, env(safe-area-inset-bottom));
  left: clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #948a96;
  font-size: 8px;
}

.jc-auth-footer a {
  color: #6f6472;
  font-weight: 700;
}

.jc-auth-footer a:hover {
  color: var(--jc-primary-dark);
}

@keyframes jc-loader-breathe {
  from { transform: translateY(0) scale(1); }
  to { transform: translateY(-4px) scale(1.025); }
}

@keyframes jc-loader-ring {
  0% { transform: scale(0.92); opacity: 0; }
  35% { opacity: 1; }
  100% { transform: scale(1.16); opacity: 0; }
}

@keyframes jc-loader-line {
  from { transform: translateX(140%); }
  to { transform: translateX(-240%); }
}

@keyframes jc-live-pulse {
  0% { transform: scale(0.75); opacity: 0.8; }
  100% { transform: scale(1.65); opacity: 0; }
}

@keyframes jc-orbit {
  from { transform: translate3d(0, 0, 0) scale(1); }
  to { transform: translate3d(28px, 18px, 0) scale(1.05); }
}

@keyframes jc-showcase-float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -5px, 0); }
}

@keyframes jc-card-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes jc-spin {
  to { transform: rotate(360deg); }
}

@keyframes jc-panel-open {
  from { opacity: 0; transform: translateY(-5px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jc-alert-enter {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jc-alert-leave {
  to { opacity: 0; transform: translateY(-7px); }
}

@media (max-width: 1120px) {
  .jc-auth-shell {
    grid-template-columns: minmax(400px, 0.85fr) minmax(500px, 1.15fr);
  }

  .jc-auth-visual {
    padding-inline: 38px;
  }

  .jc-visual-copy h1 {
    font-size: 43px;
  }

  .jc-showcase-flow {
    grid-template-columns: minmax(0, 1fr) 18px minmax(0, 1fr) 18px minmax(0, 1fr);
  }

  .jc-showcase-flow > i {
    margin-inline: 4px;
  }
}

@media (max-width: 900px) {
  html {
    background: #f8f5f8;
  }

  .jc-auth-shell {
    display: block;
    min-height: 100svh;
  }

  .jc-auth-visual {
    min-height: 280px;
    height: 280px;
    display: block;
    padding: max(20px, env(safe-area-inset-top)) 22px 64px;
  }

  .jc-auth-brand,
  .jc-visual-showcase,
  .jc-visual-trust {
    display: none;
  }

  .jc-visual-grid {
    background-size: 22px 22px;
    opacity: 0.34;
    -webkit-mask-image: radial-gradient(ellipse at 50% 37%, #000 0%, rgba(0, 0, 0, 0.76) 42%, transparent 82%);
    mask-image: radial-gradient(ellipse at 50% 37%, #000 0%, rgba(0, 0, 0, 0.76) 42%, transparent 82%);
  }

  .jc-visual-grid::before {
    width: 360px;
    top: -102px;
    right: calc(50% - 180px);
    box-shadow:
      0 0 0 54px rgba(255, 255, 255, 0.015),
      0 0 0 108px rgba(255, 255, 255, 0.009);
  }

  .jc-visual-grid::after {
    width: 70%;
    right: 15%;
    bottom: 23%;
    opacity: 0.6;
  }

  .jc-visual-copy {
    max-width: 560px;
    margin: 0 auto;
    text-align: center;
  }

  .jc-live-badge {
    padding: 5px 10px;
    font-size: 8px;
  }

  .jc-visual-copy h1 {
    max-width: 520px;
    margin: 13px auto 7px;
    font-size: 29px;
    letter-spacing: -0.7px;
    line-height: 1.48;
  }

  .jc-visual-copy h1 br {
    display: block;
  }

  .jc-visual-copy p {
    max-width: 510px;
    margin-inline: auto;
    font-size: 10px;
    line-height: 1.9;
  }

  .jc-mobile-benefits {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
  }

  .jc-mobile-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
    color: #d9cedc;
    font-size: 7px;
    font-weight: 700;
  }

  .jc-mobile-benefits span::before {
    content: "✓";
    color: #65e2b3;
    font-size: 7px;
    font-weight: 900;
  }

  .jc-orb-one {
    width: 230px;
    height: 230px;
    top: -138px;
    left: -95px;
  }

  .jc-orb-two {
    width: 190px;
    height: 190px;
    right: -110px;
    bottom: -92px;
  }

  .jc-auth-main {
    min-height: calc(100svh - 190px);
    justify-content: flex-start;
    margin-top: -40px;
    padding: 0 16px calc(26px + env(safe-area-inset-bottom));
    background: transparent;
  }

  .jc-auth-topbar {
    position: relative;
    inset: auto;
    z-index: 4;
    width: min(100%, 520px);
    display: flex;
    justify-content: space-between;
    margin: 0 auto 14px;
  }

  .jc-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--jc-white);
  }

  .jc-mobile-brand img {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
  }

  .jc-mobile-brand strong,
  .jc-mobile-brand small {
    display: block;
  }

  .jc-mobile-brand strong {
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
  }

  .jc-mobile-brand small {
    color: #cfbfd3;
    font-size: 7px;
  }

  .jc-home-link {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.09);
    color: #f0e8f2;
  }

  .jc-home-link:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.14);
    color: var(--jc-white);
  }

  .jc-auth-content {
    position: relative;
    z-index: 3;
    width: min(100%, 520px);
    margin-inline: auto;
  }

  .jc-auth-card {
    box-shadow: 0 24px 68px rgba(45, 18, 51, 0.13);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .jc-auth-footer {
    position: static;
    width: min(100%, 520px);
    flex-wrap: wrap;
    margin: 18px auto 0;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 520px) {
  .jc-auth-visual {
    height: 265px;
    min-height: 265px;
    padding-inline: 16px;
    padding-bottom: 60px;
  }

  .jc-visual-copy h1 {
    max-width: 390px;
    font-size: 24px;
    line-height: 1.5;
  }

  .jc-visual-copy p {
    max-width: 380px;
    font-size: 9px;
  }

  .jc-mobile-benefits {
    margin-top: 10px;
  }

  .jc-auth-main {
    margin-top: -38px;
    padding-inline: 11px;
  }

  .jc-auth-topbar {
    margin-bottom: 11px;
    padding-inline: 4px;
  }

  .jc-mobile-brand img {
    width: 39px;
    height: 39px;
    border-radius: 13px;
  }

  .jc-mobile-brand strong {
    font-size: 14px;
  }

  .jc-home-link {
    min-height: 37px;
    padding: 6px 9px;
  }

  .jc-home-link span {
    display: none;
  }

  .jc-auth-card {
    padding: 26px 19px;
    border-radius: 23px;
  }

  .jc-auth-heading {
    margin-bottom: 22px;
  }

  .jc-heading-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 13px;
    border-radius: 15px;
  }

  .jc-auth-heading h2 {
    font-size: 23px;
    line-height: 1.55;
  }

  .jc-auth-heading p {
    font-size: 11px;
  }

  .jc-input-shell input {
    height: 55px;
    font-size: 16px;
  }

  .jc-mobile-shell input {
    font-size: 17px;
  }

  .jc-primary-button,
  .jc-secondary-button {
    height: 56px;
  }

  .jc-otp-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .jc-auth-switch {
    flex-direction: column;
    gap: 2px;
  }

  .jc-auth-alert {
    grid-template-columns: 28px 1fr 22px;
    font-size: 9px;
  }
}

@media (max-width: 360px) {
  .jc-auth-visual {
    height: 258px;
    min-height: 258px;
    padding-inline: 12px;
  }

  .jc-visual-copy h1 {
    font-size: 22px;
  }

  .jc-visual-copy p {
    font-size: 8.5px;
  }

  .jc-mobile-benefits span {
    padding-inline: 7px;
    font-size: 6.5px;
  }

  .jc-auth-main {
    padding-inline: 8px;
  }

  .jc-auth-card {
    padding-inline: 15px;
  }

  .jc-auth-heading h2 {
    font-size: 21px;
  }

  .jc-quick-benefits {
    justify-content: flex-start;
  }
}

@media (max-height: 760px) and (min-width: 901px) {
  .jc-auth-main {
    justify-content: flex-start;
    overflow-y: auto;
    padding-top: 78px;
  }

  .jc-auth-visual {
    justify-content: flex-start;
  }

  .jc-visual-copy {
    margin-top: 14px;
  }

  .jc-visual-showcase {
    margin-top: 18px;
  }

  .jc-showcase-summary {
    margin-block: 13px;
    padding-block: 12px;
  }

  .jc-visual-trust {
    margin-top: auto;
    padding-top: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (forced-colors: active) {
  .jc-primary-button,
  .jc-checkbox-mark,
  .jc-heading-icon,
  .jc-stepper > span i {
    border: 1px solid ButtonText;
  }
}

/* ========================================================================== 
   Auth UX 1.8.5 — mobile input, OTP flow, accessible states and mobile cleanup
   ========================================================================== */

.jc-auth-body {
  font-size: 16px;
}

.jc-stepper > span {
  font-size: 11px;
}

.jc-eyebrow {
  font-size: 12px;
  letter-spacing: -0.1px;
}

.jc-auth-heading p {
  font-size: 14px;
  line-height: 1.95;
}

.jc-field-label {
  font-size: 13px;
}

.jc-field-help,
.jc-field-feedback {
  font-size: 11px;
  line-height: 1.9;
}

.jc-password-strength small,
.jc-consent,
.jc-home-link,
.jc-quick-benefits span,
.jc-auth-switch,
.jc-link-button,
.jc-auth-alert,
.jc-auth-footer {
  font-size: 11px;
}

/* Mobile number field */
.jc-mobile-shell {
  min-height: 62px;
  border-radius: 18px;
  color: #9c919e;
}

.jc-mobile-shell::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 0;
  border-radius: 17px;
  background: linear-gradient(180deg, #fff, #fdfafd);
  pointer-events: none;
}

.jc-mobile-shell input {
  position: relative;
  z-index: 1;
  height: 62px;
  padding-right: 63px;
  padding-left: 84px;
  border-radius: 18px;
  border-color: #e3d9e4;
  background: transparent;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.jc-mobile-shell input::placeholder {
  color: #b3a8b5;
  font-weight: 600;
  letter-spacing: 0.25px;
}

.jc-mobile-leading {
  position: absolute;
  z-index: 3;
  top: 50%;
  right: 10px;
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(239, 49, 85, 0.11);
  border-radius: 13px;
  background: linear-gradient(145deg, #fff2f5, #fff9f8);
  color: var(--jc-primary);
  box-shadow: 0 8px 20px rgba(239, 49, 85, 0.08);
  pointer-events: none;
}

.jc-mobile-leading svg {
  width: 21px;
  height: 21px;
}

.jc-mobile-country {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 9px;
  min-width: 65px;
  height: 44px;
  display: grid;
  align-content: center;
  justify-items: center;
  transform: translateY(-50%);
  border-right: 1px solid #eadfea;
  color: #786c7a;
  line-height: 1.15;
  pointer-events: none;
}

.jc-mobile-country b,
.jc-mobile-country small {
  display: block;
  font-family: Arial, sans-serif;
}

.jc-mobile-country b {
  font-size: 12px;
  font-weight: 800;
}

.jc-mobile-country small {
  margin-top: 3px;
  color: #9c919e;
  font-family: "Estedad", Tahoma, sans-serif;
  font-size: 8px;
  font-weight: 700;
}

.jc-mobile-shell:focus-within input {
  border-color: rgba(239, 49, 85, 0.62);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 4px rgba(239, 49, 85, 0.1), 0 14px 34px rgba(48, 20, 50, 0.07);
}

.jc-mobile-shell:focus-within .jc-mobile-leading,
.jc-mobile-shell.is-valid-mobile .jc-mobile-leading {
  border-color: rgba(22, 135, 96, 0.16);
  background: linear-gradient(145deg, #ecfaf4, #f8fffc);
  color: var(--jc-success);
}

.jc-mobile-help {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  margin-top: -5px;
}

.jc-mobile-help i {
  color: var(--jc-success);
  font-style: normal;
  font-weight: 900;
}

/* Verified number */
.jc-auth-heading.is-verify-heading {
  margin-bottom: 20px;
}

.jc-confirmed-mobile {
  width: max-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  padding: 8px 10px 8px 12px;
  border: 1px solid rgba(116, 83, 201, 0.14);
  border-radius: 15px;
  background: linear-gradient(135deg, #f7f4ff, #fff);
  color: #3f3351;
  box-shadow: 0 10px 28px rgba(75, 52, 114, 0.07);
}

.jc-confirmed-mobile-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: #ede7ff;
  color: #7453c9;
}

.jc-confirmed-mobile-icon svg {
  width: 18px;
  height: 18px;
}

.jc-confirmed-mobile b {
  font-family: Tahoma, Arial, sans-serif;
  font-size: 17px;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

.jc-confirmed-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 5px 7px;
  border-radius: 8px;
  background: rgba(22, 135, 96, 0.08);
  color: var(--jc-success);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
}

.jc-confirmed-badge i {
  font-style: normal;
}

/* OTP control */
.jc-otp-form {
  gap: 13px;
}

.jc-otp-control {
  position: relative;
  display: block;
  width: 100%;
  min-height: 64px;
  border-radius: 17px;
}

.jc-otp-input {
  width: 100%;
  height: 64px;
  padding: 0 18px;
  border: 1px solid #ded4e0;
  border-radius: 17px;
  outline: none;
  background: #fff;
  color: #211721 !important;
  -webkit-text-fill-color: #211721;
  caret-color: #ef3155;
  direction: ltr;
  text-align: center;
  font-family: Tahoma, Arial, sans-serif;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 10px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.jc-otp-control.is-enhanced .jc-otp-input {
  position: absolute;
  z-index: 3;
  inset: 0;
  height: 100%;
  color: transparent !important;
  -webkit-text-fill-color: transparent;
  caret-color: transparent;
  letter-spacing: 0;
  cursor: text;
}

.jc-otp-input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #fff inset;
}

.jc-otp-control.is-enhanced .jc-otp-input:-webkit-autofill {
  -webkit-text-fill-color: transparent;
}

.jc-otp-boxes {
  display: none;
}

.jc-otp-control.is-enhanced .jc-otp-boxes {
  position: relative;
  z-index: 2;
  min-height: 64px;
  display: grid;
  grid-template-columns: repeat(var(--jc-otp-length), minmax(0, 1fr));
  gap: clamp(5px, 1.4vw, 9px);
  direction: ltr;
  pointer-events: none;
}

.jc-otp-boxes i {
  min-width: 0;
  display: grid;
  place-items: center;
  border: 1px solid #e3d9e5;
  border-radius: 14px;
  background: linear-gradient(180deg, #fff, #fcf9fc);
  color: #2e2331 !important;
  -webkit-text-fill-color: #2e2331;
  font: 900 clamp(19px, 5vw, 26px)/1 Tahoma, Arial, sans-serif;
  font-style: normal;
  box-shadow: 0 7px 18px rgba(46, 23, 50, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.jc-otp-boxes i.is-filled {
  border-color: rgba(116, 83, 201, 0.28);
  background: linear-gradient(150deg, #f8f5ff, #fff);
  color: #5e42a6 !important;
  -webkit-text-fill-color: #5e42a6;
  transform: translateY(-1px);
}

.jc-otp-boxes i.is-current,
.jc-otp-control.is-focused .jc-otp-boxes i.is-current {
  border-color: rgba(239, 49, 85, 0.6);
  box-shadow: 0 0 0 3px rgba(239, 49, 85, 0.09);
}

.jc-otp-control.is-complete .jc-otp-boxes i {
  border-color: rgba(116, 83, 201, 0.36);
  box-shadow: 0 8px 22px rgba(92, 62, 151, 0.08);
}

.jc-otp-control.is-checking .jc-otp-boxes i {
  animation: jc-otp-checking 0.9s ease-in-out infinite alternate;
}

.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(2) { animation-delay: 0.06s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(3) { animation-delay: 0.12s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(4) { animation-delay: 0.18s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(5) { animation-delay: 0.24s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(6) { animation-delay: 0.3s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(7) { animation-delay: 0.36s; }
.jc-otp-control.is-checking .jc-otp-boxes i:nth-child(8) { animation-delay: 0.42s; }

.jc-otp-control.is-success .jc-otp-boxes i {
  border-color: rgba(22, 135, 96, 0.28);
  background: #f1fbf7;
  color: var(--jc-success) !important;
  -webkit-text-fill-color: var(--jc-success);
  animation: jc-otp-success 0.42s ease both;
}

.jc-otp-control.has-error {
  animation: jc-otp-shake 0.44s ease;
}

.jc-otp-control.has-error .jc-otp-boxes i,
.jc-otp-control.has-error .jc-otp-input {
  border-color: rgba(181, 29, 62, 0.42);
  background: #fff7f8;
}

.jc-otp-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: -3px;
}

.jc-otp-meta .jc-field-help {
  margin: 0;
  flex: 1;
}

.jc-otp-validity {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #7453c9;
  font-size: 10px;
  white-space: nowrap;
}

.jc-otp-validity span {
  font-size: 15px;
}

.jc-otp-validity b {
  font-weight: 800;
}

.jc-otp-validity.is-expired {
  color: var(--jc-danger);
}

/* Verification result */
.jc-verification-status {
  display: none;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  opacity: 0;
  transform: translateY(-6px);
}

.jc-verification-status.is-visible {
  display: grid;
  animation: jc-status-enter 0.28s ease forwards;
}

.jc-verification-status > span:last-child,
.jc-verification-status b,
.jc-verification-status small {
  display: block;
}

.jc-verification-status b {
  font-size: 12px;
  font-weight: 900;
}

.jc-verification-status small {
  margin-top: 2px;
  color: inherit;
  font-size: 10px;
  opacity: 0.82;
}

.jc-verification-status-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
}

.jc-verification-status-icon i {
  display: grid;
  place-items: center;
  font-style: normal;
}

.jc-verification-status.is-checking {
  border-color: rgba(116, 83, 201, 0.13);
  background: #f8f5ff;
  color: #6047a4;
}

.jc-verification-status.is-checking .jc-verification-status-icon {
  background: #ebe5ff;
}

.jc-verification-status.is-checking .jc-verification-status-icon i {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(96, 71, 164, 0.2);
  border-top-color: #6047a4;
  border-radius: 50%;
  animation: jc-spin 0.72s linear infinite;
}

.jc-verification-status.is-success {
  border-color: rgba(22, 135, 96, 0.15);
  background: #f0fbf6;
  color: #126f50;
}

.jc-verification-status.is-success .jc-verification-status-icon {
  background: #dff6eb;
}

.jc-verification-status.is-success .jc-verification-status-icon i::before {
  content: "✓";
  font-size: 19px;
  font-weight: 900;
  animation: jc-check-pop 0.34s ease both;
}

.jc-verification-status.is-error {
  border-color: rgba(181, 29, 62, 0.14);
  background: #fff4f6;
  color: #a51d3b;
}

.jc-verification-status.is-error .jc-verification-status-icon {
  background: #ffe3e9;
}

.jc-verification-status.is-error .jc-verification-status-icon i::before {
  content: "!";
  font-size: 19px;
  font-weight: 900;
}

/* Resend card */
.jc-resend-card {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  margin-top: 16px;
  padding: 11px 12px;
  border: 1px solid #e7dfe8;
  border-radius: 17px;
  background: linear-gradient(145deg, #fbf9fc, #fff);
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.jc-countdown-ring {
  position: relative;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
}

.jc-countdown-ring svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  stroke-linecap: round;
}

.jc-countdown-track,
.jc-countdown-progress {
  fill: none;
  stroke-width: 3;
}

.jc-countdown-track {
  stroke: #eee7ef;
}

.jc-countdown-progress {
  stroke: #7453c9;
  stroke-dasharray: 100;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 0.45s linear, stroke 0.2s ease;
}

.jc-countdown-ring b {
  position: relative;
  z-index: 1;
  color: #5f4a8f;
  font: 800 11px/1 Tahoma, Arial, sans-serif;
}

.jc-resend-copy,
.jc-resend-copy strong,
.jc-resend-copy small {
  display: block;
  min-width: 0;
}

.jc-resend-copy strong {
  color: #403544;
  font-size: 11px;
  font-weight: 900;
}

.jc-resend-copy small {
  margin-top: 2px;
  color: #887d8a;
  font-size: 9px;
  line-height: 1.7;
}

.jc-resend-button {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 7px 10px;
  border: 0;
  border-radius: 11px;
  background: #eee9f3;
  color: #8a7c91;
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.jc-resend-button svg {
  width: 15px;
  height: 15px;
}

.jc-resend-button:disabled {
  cursor: not-allowed;
  opacity: 0.72;
}

.jc-resend-card.is-ready {
  border-color: rgba(22, 135, 96, 0.16);
  background: linear-gradient(145deg, #f1fbf7, #fff);
  box-shadow: 0 10px 26px rgba(22, 135, 96, 0.06);
}

.jc-resend-card.is-ready .jc-countdown-progress {
  stroke: var(--jc-success);
}

.jc-resend-card.is-ready .jc-countdown-ring b {
  color: var(--jc-success);
  font-size: 16px;
}

.jc-resend-card.is-ready .jc-resend-button {
  background: var(--jc-success);
  color: #fff;
  box-shadow: 0 8px 18px rgba(22, 135, 96, 0.18);
}

.jc-resend-card.is-ready .jc-resend-button:hover {
  transform: translateY(-1px);
  background: #107452;
}

.jc-change-mobile-form {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.jc-change-mobile-form .jc-link-button {
  padding: 7px 9px;
  font-size: 10px;
}

/* Flash states */
.jc-auth-alert {
  overflow: hidden;
}

.jc-auth-alert.is-success .jc-alert-icon {
  animation: jc-check-pop 0.36s ease both;
}

.jc-auth-alert.is-error {
  animation: jc-alert-enter 0.32s ease both, jc-alert-shake 0.42s 0.12s ease;
}

/* Mobile visual simplification and readable type */
@media (max-width: 900px) {
  .jc-auth-visual {
    height: 250px;
    min-height: 250px;
    padding-bottom: 52px;
  }

  .jc-visual-grid {
    background-size: 36px 36px;
    opacity: 0.18;
    -webkit-mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 52%, transparent 92%);
    mask-image: linear-gradient(to bottom, #000 0%, rgba(0, 0, 0, 0.5) 52%, transparent 92%);
  }

  .jc-visual-grid::before,
  .jc-visual-grid::after,
  .jc-orb-two {
    display: none;
  }

  .jc-orb-one {
    width: 210px;
    height: 210px;
    top: -132px;
    left: -90px;
    opacity: 0.68;
  }

  .jc-live-badge {
    padding: 6px 11px;
    font-size: 10px;
  }

  .jc-visual-copy h1 {
    margin-top: 12px;
    font-size: 29px;
    line-height: 1.42;
  }

  .jc-visual-copy p {
    max-width: 520px;
    font-size: 12px;
    line-height: 1.85;
  }

  .jc-mobile-benefits span {
    padding: 6px 10px;
    font-size: 9px;
  }

  .jc-mobile-benefits span::before {
    font-size: 9px;
  }

  .jc-mobile-brand small {
    font-size: 9px;
  }

  .jc-auth-main {
    min-height: calc(100svh - 170px);
    margin-top: -36px;
  }

  .jc-auth-heading p {
    font-size: 13px;
  }

  .jc-field-help,
  .jc-field-feedback,
  .jc-auth-alert {
    font-size: 11px;
  }
}

@media (max-width: 520px) {
  .jc-auth-visual {
    height: 232px;
    min-height: 232px;
    padding-top: max(17px, env(safe-area-inset-top));
    padding-bottom: 47px;
  }

  .jc-live-badge {
    font-size: 9px;
  }

  .jc-visual-copy h1 {
    max-width: 380px;
    margin-top: 10px;
    font-size: 25px;
    line-height: 1.46;
  }

  .jc-visual-copy p {
    max-width: 390px;
    font-size: 11.5px;
    line-height: 1.8;
  }

  .jc-mobile-benefits {
    display: none;
  }

  .jc-auth-main {
    margin-top: -34px;
  }

  .jc-auth-card {
    padding: 27px 19px;
  }

  .jc-stepper > span {
    font-size: 10px;
  }

  .jc-auth-heading h2 {
    font-size: 24px;
  }

  .jc-auth-heading p {
    font-size: 12.5px;
    line-height: 1.9;
  }

  .jc-field-label {
    font-size: 12px;
  }

  .jc-mobile-shell,
  .jc-mobile-shell input {
    min-height: 60px;
    height: 60px;
  }

  .jc-mobile-shell input {
    padding-right: 59px;
    padding-left: 78px;
    font-size: 17px;
  }

  .jc-mobile-leading {
    right: 9px;
    width: 41px;
    height: 41px;
  }

  .jc-mobile-country {
    left: 7px;
    min-width: 61px;
  }

  .jc-confirmed-mobile {
    width: 100%;
    justify-content: flex-start;
    gap: 8px;
  }

  .jc-confirmed-mobile b {
    flex: 1;
    font-size: 16px;
  }

  .jc-confirmed-badge {
    font-size: 8px;
  }

  .jc-otp-control,
  .jc-otp-input,
  .jc-otp-control.is-enhanced .jc-otp-boxes {
    min-height: 59px;
    height: 59px;
  }

  .jc-otp-control.is-enhanced .jc-otp-boxes {
    gap: 5px;
  }

  .jc-otp-boxes i {
    border-radius: 12px;
    font-size: clamp(17px, 6vw, 22px);
  }

  .jc-otp-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .jc-otp-validity {
    font-size: 10px;
  }

  .jc-resend-card {
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 9px;
  }

  .jc-countdown-ring {
    width: 42px;
    height: 42px;
  }

  .jc-resend-card form {
    grid-column: 1 / -1;
  }

  .jc-resend-button {
    width: 100%;
    min-height: 42px;
    font-size: 10px;
  }

  .jc-resend-copy strong {
    font-size: 11px;
  }

  .jc-resend-copy small {
    font-size: 9.5px;
  }

  .jc-auth-alert {
    grid-template-columns: 30px 1fr 24px;
    font-size: 11px;
  }
}

@media (max-width: 360px) {
  .jc-auth-visual {
    height: 224px;
    min-height: 224px;
  }

  .jc-visual-copy h1 {
    font-size: 23px;
  }

  .jc-visual-copy p {
    font-size: 11px;
  }

  .jc-confirmed-badge {
    display: none;
  }

  .jc-confirmed-mobile b {
    text-align: center;
  }

  .jc-otp-boxes i {
    border-radius: 10px;
    font-size: 17px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .jc-otp-control.is-checking .jc-otp-boxes i,
  .jc-verification-status.is-checking .jc-verification-status-icon i {
    animation: none;
  }
}

@media (forced-colors: active) {
  .jc-mobile-leading,
  .jc-confirmed-mobile,
  .jc-otp-boxes i,
  .jc-resend-card,
  .jc-verification-status {
    border: 1px solid ButtonText;
  }
}

@keyframes jc-otp-checking {
  from { transform: translateY(0); }
  to { transform: translateY(-4px); }
}

@keyframes jc-otp-success {
  0% { transform: scale(0.92); }
  65% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

@keyframes jc-otp-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(6px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}

@keyframes jc-status-enter {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes jc-check-pop {
  0% { opacity: 0; transform: scale(0.4) rotate(-15deg); }
  70% { opacity: 1; transform: scale(1.16) rotate(3deg); }
  100% { opacity: 1; transform: scale(1) rotate(0); }
}

@keyframes jc-alert-shake {
  0%, 100% { transform: translateX(0); }
  30% { transform: translateX(-4px); }
  60% { transform: translateX(3px); }
}

/* ========================================================================== 
   Auth copy refresh 1.8.6 — friendly guidance and cleaner mobile header
   ========================================================================== */

.jc-auth-friendly-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding: 13px 14px;
  border: 1px solid rgba(116, 83, 201, 0.12);
  border-radius: 17px;
  background: linear-gradient(135deg, #f8f5ff 0%, #fff 58%, #fff7f8 100%);
  color: #4c4053;
  box-shadow: 0 12px 30px rgba(64, 39, 84, 0.055);
}

.jc-auth-friendly-note-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 83, 201, 0.12);
  border-radius: 14px;
  background: #eee9ff;
  color: #7453c9;
}

.jc-auth-friendly-note-icon svg {
  width: 22px;
  height: 22px;
  stroke-width: 1.75;
}

.jc-auth-friendly-note-copy {
  min-width: 0;
}

.jc-auth-friendly-note-copy strong,
.jc-auth-friendly-note-copy small {
  display: block;
}

.jc-auth-friendly-note-copy strong {
  margin-bottom: 3px;
  color: #33273a;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.7;
}

.jc-auth-friendly-note-copy small {
  color: #766b7a;
  font-size: 11.5px;
  font-weight: 600;
  line-height: 1.9;
}

@media (max-width: 900px) {
  .jc-visual-description {
    display: none;
  }

  .jc-auth-visual {
    height: 225px;
    min-height: 225px;
    padding-bottom: 45px;
  }

  .jc-auth-main {
    min-height: calc(100svh - 150px);
    margin-top: -34px;
  }
}

@media (max-width: 520px) {
  .jc-auth-visual {
    height: 205px;
    min-height: 205px;
    padding-bottom: 40px;
  }

  .jc-visual-copy h1 {
    margin-top: 9px;
  }

  .jc-auth-friendly-note {
    grid-template-columns: 40px minmax(0, 1fr);
    gap: 10px;
    margin-top: 12px;
    padding: 12px;
    border-radius: 15px;
  }

  .jc-auth-friendly-note-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .jc-auth-friendly-note-icon svg {
    width: 20px;
    height: 20px;
  }

  .jc-auth-friendly-note-copy strong {
    font-size: 12px;
  }

  .jc-auth-friendly-note-copy small {
    font-size: 10.5px;
    line-height: 1.85;
  }
}

@media (max-width: 360px) {
  .jc-auth-visual {
    height: 198px;
    min-height: 198px;
  }

  .jc-auth-friendly-note {
    grid-template-columns: 36px minmax(0, 1fr);
    padding: 10px;
  }

  .jc-auth-friendly-note-icon {
    width: 36px;
    height: 36px;
  }
}

/* ========================================================================== 
   Auth & onboarding 1.8.7 — dual login, verified profile and desktop visual
   ========================================================================== */

.jc-auth-visual::after {
  content: "";
  position: absolute;
  z-index: -2;
  width: 420px;
  height: 420px;
  top: 31%;
  right: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(122, 88, 214, 0.14), rgba(239, 49, 85, 0.045) 48%, transparent 72%);
  filter: blur(10px);
  pointer-events: none;
}

.jc-visual-showcase {
  overflow: visible;
}

.jc-showcase-card {
  position: relative;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.055);
}

.jc-showcase-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 0 17px 16px;
}

.jc-showcase-kpis article {
  min-width: 0;
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  padding: 11px 10px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.jc-showcase-kpis article:hover {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.055);
}

.jc-kpi-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255, 139, 109, 0.1);
  color: #ff9a7f;
  font: 900 12px/1 Arial, sans-serif;
}

.jc-showcase-kpis article:nth-child(2) .jc-kpi-icon {
  background: rgba(84, 227, 174, 0.09);
  color: #75e7bd;
}

.jc-showcase-kpis article:nth-child(3) .jc-kpi-icon {
  background: rgba(146, 117, 231, 0.12);
  color: #bba5ff;
}

.jc-showcase-kpis b,
.jc-showcase-kpis small {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.jc-showcase-kpis b {
  color: #fbf7fc;
  font-size: 8.5px;
  font-weight: 850;
}

.jc-showcase-kpis small {
  margin-top: 2px;
  color: #9f91a5;
  font-size: 6.8px;
  font-weight: 600;
}

.jc-floating-insight {
  position: absolute;
  z-index: 4;
  min-width: 205px;
  display: grid;
  grid-template-columns: 37px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 11px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  background: rgba(24, 10, 31, 0.82);
  color: #fff;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.25);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  pointer-events: none;
}

.jc-floating-insight.is-reply {
  top: -25px;
  left: -27px;
  animation: jc-insight-float 6.5s ease-in-out -1.4s infinite;
}

.jc-floating-insight.is-customer {
  right: -25px;
  bottom: -23px;
  animation: jc-insight-float 7.2s ease-in-out -3.3s infinite reverse;
}

.jc-floating-insight-icon,
.jc-floating-avatar {
  width: 37px;
  height: 37px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  font-style: normal;
  font-weight: 900;
}

.jc-floating-insight-icon {
  background: linear-gradient(135deg, #46c994, #79e6b9);
  color: #10271f;
}

.jc-floating-avatar {
  background: linear-gradient(135deg, #ef3155, #ff7754);
  color: #fff;
  font-size: 12px;
}

.jc-floating-insight b,
.jc-floating-insight small {
  display: block;
}

.jc-floating-insight b {
  font-size: 9px;
  font-weight: 900;
}

.jc-floating-insight small {
  margin-top: 2px;
  color: #b8aabd;
  font-size: 7px;
  font-weight: 600;
}

.jc-auth-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 25px;
  padding: 5px;
  border: 1px solid #e9e1e9;
  border-radius: 18px;
  background: #f7f3f7;
}

.jc-auth-methods a {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  min-height: 58px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: #7a6f7d;
  transition: color 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease;
}

.jc-auth-methods a:hover {
  color: #4d4051;
  transform: translateY(-1px);
}

.jc-auth-methods a.is-active {
  border-color: rgba(239, 49, 85, 0.11);
  background: #fff;
  color: var(--jc-primary-dark);
  box-shadow: 0 10px 26px rgba(52, 28, 56, 0.08);
}

.jc-method-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eee8ef;
  color: #887b8c;
  transition: color 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.jc-auth-methods a.is-active .jc-method-icon {
  background: linear-gradient(145deg, #fff0f3, #fff6f2);
  color: var(--jc-primary);
  transform: scale(1.03);
}

.jc-method-icon svg {
  width: 19px;
  height: 19px;
}

.jc-auth-methods b,
.jc-auth-methods small {
  display: block;
}

.jc-auth-methods b {
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.55;
}

.jc-auth-methods small {
  margin-top: 1px;
  color: #9b909d;
  font-size: 7.5px;
  font-weight: 650;
  line-height: 1.55;
}

.jc-auth-methods a.is-active small {
  color: #8a7580;
}

.jc-heading-icon.is-password {
  color: #7453c9;
  border-color: rgba(116, 83, 201, 0.11);
  background: linear-gradient(145deg, #f4f0ff, #fcfaff);
}

.jc-heading-icon.is-profile {
  color: var(--jc-success);
  border-color: rgba(22, 135, 96, 0.11);
  background: linear-gradient(145deg, #eefaf6, #f9fffc);
}

.jc-stepper.is-three-step {
  grid-template-columns: auto minmax(16px, 1fr) auto minmax(16px, 1fr) auto;
  gap: 7px;
}

.jc-name-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.jc-profile-help {
  margin-top: -5px;
}

.jc-profile-help i,
.jc-mobile-help i {
  color: var(--jc-success);
  font-style: normal;
  font-weight: 900;
}

.jc-confirmed-mobile.is-compact {
  width: max-content;
  max-width: 100%;
  margin-top: 14px;
  padding-block: 9px;
}

.jc-password-option {
  overflow: hidden;
  border: 1px solid #e7dee8;
  border-radius: 18px;
  background: linear-gradient(145deg, #fbf9fc, #fff);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.jc-password-option[open] {
  border-color: rgba(116, 83, 201, 0.2);
  box-shadow: 0 14px 34px rgba(69, 45, 91, 0.07);
}

.jc-password-option summary {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 20px;
  align-items: center;
  gap: 10px;
  padding: 13px 14px;
  color: #4b4050;
  cursor: pointer;
  list-style: none;
  user-select: none;
}

.jc-password-option summary::-webkit-details-marker {
  display: none;
}

.jc-password-option-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: #f0ebff;
  color: #7453c9;
}

.jc-password-option-icon svg {
  width: 20px;
  height: 20px;
}

.jc-password-option summary strong,
.jc-password-option summary small {
  display: block;
}

.jc-password-option summary strong {
  font-size: 10.5px;
  font-weight: 900;
  line-height: 1.7;
}

.jc-password-option summary small {
  margin-top: 2px;
  color: #8b7f8e;
  font-size: 8.5px;
  font-weight: 600;
  line-height: 1.75;
}

.jc-details-arrow {
  width: 17px;
  height: 17px;
  color: #9a8e9c;
  transition: transform 0.24s ease;
}

.jc-password-option[open] .jc-details-arrow {
  transform: rotate(180deg);
}

.jc-password-option-panel {
  display: grid;
  gap: 13px;
  padding: 2px 14px 15px;
  border-top: 1px solid #eee7ef;
  animation: jc-panel-open 0.25s ease both;
}

.jc-password-option-panel .jc-field:first-child {
  margin-top: 14px;
}

.jc-auth-switch.is-soft {
  margin-top: 17px;
  padding: 11px 13px;
  border: 1px solid #ebe3ec;
  border-radius: 14px;
  background: #faf8fb;
}

.jc-auth-card[data-auth-step="profile"] {
  padding-top: 31px;
}

.jc-auth-card[data-auth-step="profile"] .jc-auth-heading {
  margin-bottom: 21px;
}

@keyframes jc-insight-float {
  0%, 100% { transform: translateY(0) rotate(0.001deg); }
  50% { transform: translateY(-7px) rotate(0.001deg); }
}

@media (max-width: 1180px) and (min-width: 901px) {
  .jc-floating-insight {
    display: none;
  }

  .jc-showcase-kpis {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .jc-showcase-kpis article:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-height: 820px) and (min-width: 901px) {
  .jc-showcase-kpis,
  .jc-floating-insight {
    display: none;
  }
}

@media (max-width: 900px) {
  html,
  .jc-auth-body {
    background: #f8f5f8;
  }

  .jc-auth-shell {
    display: block;
    min-height: 100svh;
  }

  .jc-auth-visual {
    display: none !important;
  }

  .jc-auth-main {
    min-height: 100vh;
    min-height: 100svh;
    justify-content: center;
    margin: 0;
    padding: max(18px, env(safe-area-inset-top)) 16px calc(24px + env(safe-area-inset-bottom));
    background:
      radial-gradient(circle at 100% 0%, rgba(239, 49, 85, 0.08), transparent 30%),
      radial-gradient(circle at 0% 100%, rgba(116, 83, 201, 0.07), transparent 28%),
      #f8f5f8;
  }

  .jc-auth-topbar {
    position: relative;
    inset: auto;
    z-index: 4;
    width: min(100%, 540px);
    display: flex;
    justify-content: space-between;
    margin: 0 auto 18px;
  }

  .jc-mobile-brand {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--jc-ink);
  }

  .jc-mobile-brand img {
    width: 43px;
    height: 43px;
    border: 1px solid #e8dfe9;
    border-radius: 14px;
    background: #fff;
    box-shadow: 0 9px 24px rgba(53, 27, 58, 0.09);
  }

  .jc-mobile-brand strong,
  .jc-mobile-brand small {
    display: block;
  }

  .jc-mobile-brand strong {
    color: var(--jc-ink);
    font-size: 15px;
    font-weight: 900;
    line-height: 1.35;
  }

  .jc-mobile-brand small {
    color: #8d818f;
    font-size: 8.5px;
  }

  .jc-home-link {
    border-color: #e6dee7;
    background: rgba(255, 255, 255, 0.82);
    color: #665b69;
  }

  .jc-home-link:hover {
    border-color: #ddcddf;
    background: #fff;
    color: var(--jc-primary-dark);
  }

  .jc-auth-content,
  .jc-auth-footer {
    width: min(100%, 540px);
    margin-inline: auto;
  }

  .jc-auth-card {
    box-shadow: 0 25px 70px rgba(45, 18, 51, 0.12);
  }

  .jc-auth-footer {
    position: static;
    flex-wrap: wrap;
    margin-top: 18px;
    padding-bottom: env(safe-area-inset-bottom);
  }
}

@media (max-width: 520px) {
  .jc-auth-main {
    padding-inline: 12px;
  }

  .jc-auth-topbar {
    margin-bottom: 13px;
  }

  .jc-mobile-brand small,
  .jc-home-link span {
    display: none;
  }

  .jc-home-link {
    width: 42px;
    height: 42px;
    justify-content: center;
    padding: 0;
  }

  .jc-auth-card {
    padding: 25px 18px;
    border-radius: 24px;
  }

  .jc-auth-methods {
    gap: 5px;
    margin-bottom: 21px;
    padding: 4px;
    border-radius: 16px;
  }

  .jc-auth-methods a {
    grid-template-columns: 34px minmax(0, 1fr);
    gap: 7px;
    min-height: 54px;
    padding: 7px;
    border-radius: 12px;
  }

  .jc-method-icon {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }

  .jc-auth-methods b {
    font-size: 9.5px;
  }

  .jc-auth-methods small {
    font-size: 6.9px;
  }

  .jc-name-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .jc-stepper.is-three-step {
    gap: 4px;
  }

  .jc-stepper.is-three-step > span {
    font-size: 8px;
  }

  .jc-stepper.is-three-step > span i {
    width: 26px;
    height: 26px;
  }

  .jc-password-option summary {
    grid-template-columns: 38px minmax(0, 1fr) 17px;
    gap: 8px;
    padding: 11px;
  }

  .jc-password-option-icon {
    width: 38px;
    height: 38px;
  }

  .jc-password-option summary strong {
    font-size: 9.5px;
  }

  .jc-password-option summary small {
    font-size: 7.8px;
  }

  .jc-confirmed-mobile.is-compact {
    width: 100%;
  }
}

@media (max-width: 370px) {
  .jc-auth-methods small {
    display: none;
  }

  .jc-auth-methods a {
    grid-template-columns: 32px minmax(0, 1fr);
    min-height: 48px;
  }

  .jc-method-icon {
    width: 32px;
    height: 32px;
  }
}
