@font-face {
  font-family: "Ciforus Manrope";
  src: url("../fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

@font-face {
  font-family: "Ciforus Newsreader";
  src: url("../fonts/newsreader-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
}

@font-face {
  font-family: "Ciforus Newsreader";
  src: url("../fonts/newsreader-latin-variable-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 300 700;
  font-display: swap;
}

.cf-auth-page {
  --cf-auth-ink: #171b2b;
  --cf-auth-muted: #687083;
  --cf-auth-line: #dfe3e7;
  --cf-auth-paper: #ffffff;
  --cf-auth-canvas: #f7f8f4;
  --cf-auth-violet: #4d4fea;
  --cf-auth-violet-dark: #3436c9;
  --cf-auth-mint: #dff3e7;
  --cf-auth-green: #16855b;
  --cf-auth-coral: #e56f5d;
  min-width: 320px;
  min-height: 100vh;
  display: block;
  overflow-x: hidden;
  background: var(--cf-auth-paper);
  color: var(--cf-auth-ink);
  font-family: "Ciforus Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

.cf-auth-page * {
  letter-spacing: 0;
}

.cf-auth-page #appOverlayRoot {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  pointer-events: none;
  isolation: isolate;
}

.cf-auth-page a {
  color: inherit;
}

.cf-auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(480px, 0.9fr) minmax(560px, 1.1fr);
  background: var(--cf-auth-paper);
}

.cf-auth-entry {
  position: relative;
  z-index: 2;
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 34px clamp(42px, 5vw, 86px) 26px;
  background: var(--cf-auth-paper);
}

.cf-auth-brand {
  width: 152px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.cf-auth-brand img {
  width: 100%;
  height: auto;
}

.cf-auth-entry-inner {
  width: min(100%, 440px);
  margin: auto;
  padding: 52px 0 44px;
}

.cf-auth-legal {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--cf-auth-muted);
  font-size: 0.78rem;
}

.cf-auth-legal a {
  position: relative;
}

.cf-auth-legal a + a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -12px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #aeb5c0;
}

.cf-auth-legal a:hover,
.cf-auth-link:hover {
  color: var(--cf-auth-violet-dark);
}

.cf-auth-form-view {
  width: 100%;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 480ms ease, transform 480ms ease;
}

.cf-auth-page.is-ready .cf-auth-form-view {
  opacity: 1;
  transform: translateY(0);
}

.cf-auth-heading {
  margin-bottom: 34px;
}

.cf-auth-heading h1 {
  margin: 0;
  color: var(--cf-auth-ink);
  font-family: "Ciforus Newsreader", Georgia, serif;
  font-size: clamp(2.45rem, 4vw, 3.45rem);
  font-weight: 520;
  line-height: 0.98;
}

.cf-auth-heading p {
  margin: 13px 0 0;
  max-width: 40ch;
  color: var(--cf-auth-muted);
  font-size: 0.96rem;
  line-height: 1.65;
}

.cf-auth-form {
  width: 100%;
  display: grid;
  gap: 20px;
}

.cf-auth-field {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.cf-auth-label-row {
  min-width: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.cf-auth-label,
.cf-auth-proof-title {
  color: var(--cf-auth-ink);
  font-size: 0.86rem;
  font-weight: 660;
}

.cf-auth-field-note {
  color: #8a91a0;
  font-size: 0.75rem;
}

.cf-auth-page .cf-auth-input,
.cf-auth-page .cf-auth-textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid #cfd5dc;
  border-radius: 7px;
  outline: 0;
  background: #ffffff;
  color: var(--cf-auth-ink);
  font: 500 0.94rem/1.4 "Ciforus Manrope", sans-serif;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.cf-auth-page .cf-auth-textarea {
  min-height: 100px;
  padding-top: 13px;
  resize: vertical;
}

.cf-auth-page .cf-auth-input::placeholder,
.cf-auth-page .cf-auth-textarea::placeholder {
  color: #9aa1ad;
}

.cf-auth-page .cf-auth-input:hover,
.cf-auth-page .cf-auth-textarea:hover {
  border-color: #aeb6c1;
}

.cf-auth-page .cf-auth-input:focus,
.cf-auth-page .cf-auth-textarea:focus {
  border-color: var(--cf-auth-violet);
  box-shadow: 0 0 0 3px rgba(77, 79, 234, 0.12);
}

.cf-auth-identity {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: stretch;
}

.cf-auth-identity .cf-auth-input {
  position: relative;
  z-index: 1;
  border-radius: 7px 0 0 7px;
}

.cf-auth-suffix {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border: 1px solid #cfd5dc;
  border-left: 0;
  border-radius: 0 7px 7px 0;
  background: #f7f8f9;
  color: #747c8b;
  font-size: 0.84rem;
  white-space: nowrap;
}

.cf-auth-status {
  min-height: 19px;
  color: #7b8391;
  font-size: 0.77rem;
  line-height: 1.5;
}

.cf-auth-status:empty {
  display: none;
}

.cf-auth-status[data-tone=""] { display: none; }

.cf-auth-status[data-tone="success"] { color: var(--cf-auth-green); }
.cf-auth-status[data-tone="danger"] { color: #b43d53; }
.cf-auth-status[data-tone="warning"] { color: #9a6500; }
.cf-auth-status[data-tone="pending"] { color: var(--cf-auth-violet-dark); }

.cf-auth-actions {
  display: grid;
  gap: 12px;
  margin-top: 2px;
}

.cf-auth-page .cf-auth-primary,
.cf-auth-page .cf-auth-secondary,
.cf-auth-page .cf-auth-danger {
  min-height: 50px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: 680 0.91rem/1 "Ciforus Manrope", sans-serif;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease, color 150ms ease;
}

.cf-auth-page .cf-auth-primary {
  background: var(--cf-auth-violet);
  color: #ffffff;
}

.cf-auth-page .cf-auth-primary:hover {
  background: var(--cf-auth-violet-dark);
  color: #ffffff;
  transform: translateY(-1px);
}

.cf-auth-page .cf-auth-secondary {
  border-color: #cfd5dc;
  background: #ffffff;
  color: var(--cf-auth-ink);
}

.cf-auth-page .cf-auth-secondary:hover {
  border-color: #9fa8b5;
  background: #f8f9fa;
  color: var(--cf-auth-ink);
}

.cf-auth-page .cf-auth-danger {
  border-color: #e3b7c0;
  background: #fff7f8;
  color: #aa3148;
}

.cf-auth-page button:disabled,
.cf-auth-page button[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}

.cf-auth-page button:focus-visible,
.cf-auth-page a:focus-visible,
.cf-auth-page input:focus-visible,
.cf-auth-page textarea:focus-visible {
  outline: 3px solid rgba(77, 79, 234, 0.22);
  outline-offset: 3px;
}

.cf-auth-form-meta,
.cf-auth-switch {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--cf-auth-muted);
  font-size: 0.84rem;
}

.cf-auth-switch {
  justify-content: flex-start;
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid var(--cf-auth-line);
}

.cf-auth-link {
  color: var(--cf-auth-violet-dark);
  font-weight: 680;
}

.cf-auth-password-toggle {
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--cf-auth-muted);
  font: 620 0.78rem/1 "Ciforus Manrope", sans-serif;
  cursor: pointer;
}

.cf-auth-password-toggle:hover { color: var(--cf-auth-violet-dark); }

.cf-auth-terms {
  margin: 2px 0 0;
  color: var(--cf-auth-muted);
  font-size: 0.76rem;
  line-height: 1.6;
  text-align: center;
}

.cf-auth-terms a {
  color: var(--cf-auth-violet-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cf-auth-feedback {
  margin: -12px 0 22px;
  padding: 13px 15px;
  border-left: 3px solid #bf4057;
  background: #fff6f7;
  color: #74303d;
  font-size: 0.84rem;
  line-height: 1.55;
}

.cf-auth-feedback strong {
  display: block;
  margin-bottom: 2px;
  color: #7e2637;
}

.cf-auth-feedback p {
  margin: 0;
  color: inherit;
}

.cf-auth-feedback--success {
  border-left-color: var(--cf-auth-green);
  background: #f1fbf5;
  color: #176443;
}

.cf-auth-feedback--success strong {
  color: #145638;
}

.cf-auth-password {
  display: grid;
  gap: 18px;
}

.cf-auth-strength {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-top: -8px;
}

.cf-auth-strength-track,
.cf-auth-progress-track {
  height: 3px;
  overflow: hidden;
  background: #e5e8ec;
}

.cf-auth-strength-track span,
.cf-auth-progress-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--cf-auth-violet);
  transition: width 220ms ease, background-color 220ms ease;
}

.cf-auth-strength-track span[data-strength="weak"] { background: #c5445a; }
.cf-auth-strength-track span[data-strength="fair"] { background: #c88318; }
.cf-auth-strength-track span[data-strength="strong"] { background: var(--cf-auth-green); }

.cf-auth-strength strong {
  color: #7b8391;
  font-size: 0.72rem;
  font-weight: 620;
}

.cf-auth-strength strong[data-strength="weak"] { color: #b43d53; }
.cf-auth-strength strong[data-strength="fair"] { color: #9a6500; }
.cf-auth-strength strong[data-strength="strong"] { color: var(--cf-auth-green); }

.cf-auth-rules {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 18px;
  margin-top: -9px;
}

.cf-auth-rule {
  position: relative;
  padding-left: 13px;
  color: #858d9a;
  font-size: 0.73rem;
}

.cf-auth-rule::before {
  content: "";
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #b8bec7;
}

.cf-auth-rule[data-satisfied="true"] {
  color: var(--cf-auth-green);
}

.cf-auth-rule[data-satisfied="true"]::before {
  background: var(--cf-auth-green);
}

.cf-auth-progress {
  display: grid;
  grid-template-columns: auto minmax(80px, 1fr);
  align-items: center;
  gap: 10px;
  margin-bottom: 27px;
  color: #858d9a;
  font-size: 0.72rem;
}

.cf-auth-progress strong {
  color: var(--cf-auth-ink);
  font-weight: 650;
}

.cf-auth-progress-caption {
  grid-column: 1 / -1;
  margin-top: -5px;
}

.cf-auth-turnstile {
  display: grid;
  gap: 7px;
  padding-top: 17px;
  border-top: 1px solid var(--cf-auth-line);
  overflow-x: auto;
}

.cf-auth-proof {
  display: grid;
  gap: 9px;
  padding: 14px 15px;
  border: 1px solid var(--cf-auth-line);
  border-radius: 7px;
  background: #f8f9f7;
}

.cf-auth-choice {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: var(--cf-auth-muted);
  font-size: 0.82rem;
  cursor: pointer;
}

.cf-auth-choice input {
  width: 16px;
  height: 16px;
  margin: 2px 0 0;
}

.cf-auth-choice strong {
  display: block;
  color: var(--cf-auth-ink);
  font-weight: 650;
}

.cf-auth-code {
  text-align: center;
  font-size: 1.5rem !important;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.28em !important;
}

.cf-auth-visual {
  position: relative;
  min-width: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: hidden;
  padding: clamp(48px, 6vw, 88px);
  background: #e6f0e8;
  border-left: 1px solid #d6e1d9;
}

.cf-auth-page[data-auth-visual="signup"] .cf-auth-visual { background: #e9f1eb; }
.cf-auth-page[data-auth-visual="recovery"] .cf-auth-visual { background: #e9eef4; }
.cf-auth-page[data-auth-visual="reset"] .cf-auth-visual { background: #e9eef4; }
.cf-auth-page[data-auth-visual="verify"] .cf-auth-visual { background: #ececf7; }

.cf-auth-visual-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 620px);
  margin: 0 auto 34px;
}

.cf-auth-visual-kicker {
  margin: 0 0 10px;
  color: #476052;
  font-size: 0.72rem;
  font-weight: 720;
  text-transform: uppercase;
  letter-spacing: 0.1em !important;
}

.cf-auth-visual-copy h2 {
  max-width: 13ch;
  margin: 0;
  color: #193126;
  font-family: "Ciforus Newsreader", Georgia, serif;
  font-size: clamp(2.45rem, 4.1vw, 4.8rem);
  font-weight: 470;
  line-height: 0.92;
}

.cf-auth-visual-copy > p:last-child {
  max-width: 46ch;
  margin: 18px 0 0;
  color: #52685c;
  font-size: 0.92rem;
  line-height: 1.7;
}

.cf-auth-scene {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  min-height: 400px;
  display: none;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(18px) scale(0.985);
  transition: opacity 700ms 100ms ease, transform 700ms 100ms cubic-bezier(.2,.75,.25,1);
}

.cf-auth-page[data-auth-visual="login"] .cf-auth-scene--login,
.cf-auth-page[data-auth-visual="signup"] .cf-auth-scene--signup,
.cf-auth-page[data-auth-visual="recovery"] .cf-auth-scene--recovery,
.cf-auth-page[data-auth-visual="reset"] .cf-auth-scene--recovery,
.cf-auth-page[data-auth-visual="verify"] .cf-auth-scene--verify {
  display: block;
}

.cf-auth-page.is-ready .cf-auth-scene {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cf-auth-workspace {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  aspect-ratio: 1.42;
  min-height: 400px;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(50, 66, 58, 0.18);
  border-radius: 8px;
  background: #fdfdfb;
  box-shadow: 0 28px 70px rgba(46, 68, 56, 0.16);
}

.cf-auth-workspace-rail {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  padding: 14px 0;
  background: #20253a;
}

.cf-auth-workspace-rail img {
  width: 25px;
  height: 25px;
  margin-bottom: 8px;
}

.cf-auth-workspace-rail span {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.23);
  border-radius: 5px;
}

.cf-auth-workspace-rail span.is-active {
  border-color: #8a8cff;
  background: #696bff;
}

.cf-auth-workspace-rail .cf-auth-workspace-rail-end {
  margin-top: auto;
  border-radius: 50%;
  background: #dff3e7;
}

.cf-auth-workspace-main {
  min-width: 0;
  padding: clamp(18px, 2.2vw, 28px);
}

.cf-auth-workspace-header,
.cf-auth-workspace-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cf-auth-workspace-header > div {
  display: grid;
  gap: 2px;
}

.cf-auth-workspace-header span,
.cf-auth-workspace-section-head small,
.cf-auth-workspace-status small,
.cf-auth-workspace-row small {
  color: #868c98;
  font-size: 0.62rem;
}

.cf-auth-workspace-header strong {
  color: #262b3b;
  font-size: 0.95rem;
  font-weight: 690;
}

.cf-auth-workspace-avatar {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f0c2b8;
  color: #793c31 !important;
  font-size: 0.62rem !important;
  font-weight: 750;
}

.cf-auth-workspace-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(130px, 0.75fr);
  gap: 13px;
  margin-top: 20px;
}

.cf-auth-workspace-grid > section {
  min-width: 0;
  border: 1px solid #e3e5e6;
  border-radius: 7px;
  background: #ffffff;
}

.cf-auth-workspace-activity {
  position: relative;
  padding: 14px 15px 10px;
  overflow: hidden;
}

.cf-auth-workspace-section-head > span,
.cf-auth-workspace-status > span {
  color: #626977;
  font-size: 0.65rem;
  font-weight: 670;
}

.cf-auth-workspace-number {
  display: block;
  margin-top: 8px;
  color: #202538;
  font-family: "Ciforus Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 560;
  line-height: 1;
}

.cf-auth-workspace-change {
  color: var(--cf-auth-green);
  font-size: 0.58rem;
}

.cf-auth-workspace-chart {
  width: 100%;
  height: 116px;
  margin-top: 4px;
  overflow: visible;
}

.cf-auth-chart-grid {
  fill: none;
  stroke: #edf0f0;
  stroke-width: 1;
}

.cf-auth-chart-line {
  fill: none;
  stroke: #5355e7;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 560;
  stroke-dashoffset: 560;
}

.cf-auth-page.is-ready .cf-auth-chart-line {
  animation: cf-auth-draw-chart 1.35s 480ms ease forwards;
}

.cf-auth-chart-point {
  fill: #ffffff;
  stroke: #5355e7;
  stroke-width: 3;
  opacity: 0;
}

.cf-auth-page.is-ready .cf-auth-chart-point--one { animation: cf-auth-show-point 220ms 1.05s ease forwards; }
.cf-auth-page.is-ready .cf-auth-chart-point--two { animation: cf-auth-show-point 220ms 1.35s ease forwards; }
.cf-auth-page.is-ready .cf-auth-chart-point--three { animation: cf-auth-show-point 220ms 1.65s ease forwards; }

.cf-auth-workspace-status {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  text-align: center;
}

.cf-auth-workspace-status > span {
  align-self: flex-start;
}

.cf-auth-workspace-shield {
  position: relative;
  width: 54px;
  height: 60px;
  margin: 17px 0 12px;
  border: 2px solid #238960;
  border-radius: 24px 24px 30px 30px;
  background: #eaf7ef;
}

.cf-auth-workspace-shield i::before,
.cf-auth-workspace-shield i::after {
  content: "";
  position: absolute;
  background: #238960;
}

.cf-auth-workspace-shield i::before {
  width: 8px;
  height: 2px;
  top: 31px;
  left: 16px;
  transform: rotate(45deg);
}

.cf-auth-workspace-shield i::after {
  width: 17px;
  height: 2px;
  top: 28px;
  left: 21px;
  transform: rotate(-48deg);
}

.cf-auth-workspace-status strong {
  color: #246146;
  font-size: 0.74rem;
}

.cf-auth-workspace-list {
  grid-column: 1 / -1;
  padding: 13px 15px 4px;
}

.cf-auth-workspace-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 48px;
  border-top: 1px solid #eceeee;
}

.cf-auth-workspace-row:first-of-type {
  margin-top: 8px;
}

.cf-auth-workspace-row > i {
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #dfe2ff;
}

.cf-auth-workspace-row > i.is-coral { background: #f6d9d3; }
.cf-auth-workspace-row > i.is-blue { background: #dce9fa; }
.cf-auth-workspace-row > i.is-green { background: #dff2e6; }

.cf-auth-workspace-row > span {
  min-width: 0;
  display: grid;
}

.cf-auth-workspace-row strong {
  overflow: hidden;
  color: #343948;
  font-size: 0.65rem;
  font-weight: 650;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cf-auth-workspace-row em {
  color: #858c98;
  font-size: 0.56rem;
  font-style: normal;
}

.cf-auth-identity-scene {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
  border-bottom: 1px solid rgba(46, 68, 56, 0.18);
}

.cf-auth-guide {
  position: absolute;
  z-index: 2;
  left: clamp(-30px, -2vw, -8px);
  bottom: -110px;
  width: clamp(310px, 31vw, 410px);
  max-width: none;
  height: auto;
  mix-blend-mode: multiply;
}

.cf-auth-identity-note {
  position: absolute;
  z-index: 3;
  display: grid;
  gap: 4px;
  padding: 14px 16px;
  border: 1px solid rgba(45, 64, 54, 0.19);
  border-radius: 7px;
  background: rgba(255, 255, 253, 0.94);
  box-shadow: 0 16px 35px rgba(46, 68, 56, 0.12);
}

.cf-auth-identity-note > span,
.cf-auth-identity-note small {
  color: #748178;
  font-size: 0.65rem;
}

.cf-auth-identity-note strong {
  color: #20372b;
  font-size: 0.82rem;
  font-weight: 680;
}

.cf-auth-identity-note--email {
  top: 54px;
  right: 14px;
  width: 230px;
}

.cf-auth-identity-note--ready {
  right: 64px;
  bottom: 68px;
  width: 250px;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: center;
}

.cf-auth-identity-note--ready > i {
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e2f4e8;
}

.cf-auth-identity-note--ready > i::before,
.cf-auth-identity-note--ready > i::after {
  content: "";
  position: absolute;
  height: 2px;
  background: #16855b;
}

.cf-auth-identity-note--ready > i::before {
  top: 16px;
  left: 8px;
  width: 7px;
  transform: rotate(43deg);
}

.cf-auth-identity-note--ready > i::after {
  top: 14px;
  left: 12px;
  width: 12px;
  transform: rotate(-48deg);
}

.cf-auth-identity-note--ready > span {
  display: grid;
}

.cf-auth-identity-line {
  position: absolute;
  z-index: 1;
  top: 99px;
  right: 122px;
  width: 190px;
  height: 190px;
  border-right: 1px solid rgba(53, 77, 64, 0.25);
  border-bottom: 1px solid rgba(53, 77, 64, 0.25);
  border-radius: 0 0 70px 0;
}

.cf-auth-recovery-scene {
  width: 100%;
  min-height: 400px;
  display: grid;
  grid-template-columns: minmax(250px, 0.95fr) minmax(250px, 1.05fr);
  align-items: center;
  gap: 42px;
  padding: 34px;
  border: 1px solid rgba(45, 64, 54, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 253, 0.72);
  box-shadow: 0 28px 70px rgba(46, 68, 56, 0.12);
}

.cf-auth-recovery-route {
  position: relative;
  display: grid;
  gap: 0;
}

.cf-auth-recovery-route::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 18px;
  width: 1px;
  background: #bac9bf;
}

.cf-auth-recovery-route > span {
  position: relative;
  min-height: 82px;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 14px;
  align-content: center;
}

.cf-auth-recovery-route i {
  position: relative;
  z-index: 2;
  grid-row: 1 / 3;
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #acb9b0;
  border-radius: 50%;
  background: #f9fbf9;
  color: #708077;
  font-size: 0.7rem;
  font-style: normal;
  font-weight: 720;
}

.cf-auth-recovery-route strong {
  align-self: end;
  color: #263a30;
  font-size: 0.8rem;
  font-weight: 680;
}

.cf-auth-recovery-route small {
  color: #7c8981;
  font-size: 0.65rem;
}

.cf-auth-recovery-route .is-complete i,
.cf-auth-recovery-route .is-current i {
  border-color: #30936c;
  background: #def1e5;
  color: #176845;
}

.cf-auth-recovery-route .is-current i {
  box-shadow: 0 0 0 6px rgba(48, 147, 108, 0.1);
}

.cf-auth-page[data-auth-visual="reset"] .cf-auth-recovery-route > span i {
  border-color: #30936c;
  background: #def1e5;
  color: #176845;
}

.cf-auth-page[data-auth-visual="reset"] .cf-auth-recovery-route > span:nth-child(2) i {
  box-shadow: none;
}

.cf-auth-page[data-auth-visual="reset"] .cf-auth-recovery-route > span:nth-child(3) i {
  box-shadow: 0 0 0 6px rgba(48, 147, 108, 0.1);
}

.cf-auth-recovery-seal {
  display: grid;
  justify-items: center;
  text-align: center;
}

.cf-auth-recovery-seal > span {
  position: relative;
  width: 104px;
  height: 116px;
  margin-bottom: 21px;
  border: 2px solid #3e57d7;
  border-radius: 42px 42px 54px 54px;
  background: #eef0ff;
}

.cf-auth-recovery-seal > span::before {
  content: "";
  position: absolute;
  top: 47px;
  left: 38px;
  width: 26px;
  height: 18px;
  border-left: 3px solid #3e57d7;
  border-bottom: 3px solid #3e57d7;
  transform: rotate(-45deg);
}

.cf-auth-recovery-seal strong {
  color: #253245;
  font: 560 1.35rem/1.1 "Ciforus Newsreader", Georgia, serif;
}

.cf-auth-recovery-seal small {
  max-width: 25ch;
  margin-top: 8px;
  color: #738078;
  font-size: 0.67rem;
  line-height: 1.55;
}

.cf-auth-token-scene {
  position: relative;
  width: 420px;
  height: 400px;
  display: grid;
  place-items: center;
  margin: 0 auto;
}

.cf-auth-token-core {
  position: relative;
  z-index: 4;
  width: 128px;
  height: 128px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 24px 55px rgba(53, 61, 137, 0.18);
}

.cf-auth-token-core img {
  width: 96px;
  height: 96px;
}

.cf-auth-token-orbit {
  position: absolute;
  z-index: 2;
  border: 1px solid rgba(55, 67, 140, 0.27);
  border-radius: 50%;
}

.cf-auth-token-orbit--outer {
  width: 326px;
  height: 326px;
  animation: cf-auth-orbit 13s linear infinite;
}

.cf-auth-token-orbit--inner {
  width: 230px;
  height: 230px;
  animation: cf-auth-orbit 8s linear infinite reverse;
}

.cf-auth-token-orbit i {
  position: absolute;
  top: 50%;
  left: -6px;
  width: 12px;
  height: 12px;
  margin-top: -6px;
  border-radius: 50%;
  background: #4d4fea;
  box-shadow: 0 0 0 6px rgba(77, 79, 234, 0.1);
}

.cf-auth-token-orbit--inner i {
  left: auto;
  right: -5px;
  width: 10px;
  height: 10px;
  background: #16855b;
  box-shadow: 0 0 0 5px rgba(22, 133, 91, 0.1);
}

.cf-auth-token-code {
  position: absolute;
  z-index: 5;
  bottom: 19px;
  display: flex;
  gap: 7px;
}

.cf-auth-token-code span {
  width: 34px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(50, 60, 91, 0.16);
  border-radius: 6px;
  background: rgba(255, 255, 253, 0.9);
  color: #283049;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(46, 68, 56, 0.08);
}

.cf-auth-token-scene > p {
  position: absolute;
  bottom: -19px;
  margin: 0;
  color: #6d7a72;
  font-size: 0.68rem;
}

.cf-auth-visual-foot {
  position: relative;
  z-index: 2;
  width: min(100%, 700px);
  margin: 18px auto 0;
  color: #657a6f;
  font-family: "Ciforus Newsreader", Georgia, serif;
  font-size: 0.94rem;
  font-style: italic;
  text-align: right;
}

@keyframes cf-auth-draw-chart {
  to { stroke-dashoffset: 0; }
}

@keyframes cf-auth-show-point {
  from { opacity: 0; transform: scale(0.4); transform-origin: center; }
  to { opacity: 1; transform: scale(1); transform-origin: center; }
}

@keyframes cf-auth-orbit {
  to { transform: rotate(360deg); }
}

@media (min-width: 921px) {
  .cf-auth-page,
  .cf-auth-shell,
  .cf-auth-entry,
  .cf-auth-visual {
    height: 100vh;
    height: 100svh;
    min-height: 0;
  }

  .cf-auth-page {
    overflow: hidden;
  }
}

@media (min-width: 921px) and (max-height: 900px) {
  .cf-auth-entry {
    padding-top: 22px;
    padding-bottom: 18px;
  }

  .cf-auth-brand { width: 140px; }

  .cf-auth-entry-inner {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .cf-auth-heading { margin-bottom: 24px; }
  .cf-auth-heading h1 { font-size: clamp(2.25rem, 3.3vw, 2.85rem); }
  .cf-auth-heading p { margin-top: 8px; }
  .cf-auth-form { gap: 15px; }
  .cf-auth-password { gap: 14px; }

  .cf-auth-page .cf-auth-input,
  .cf-auth-page .cf-auth-primary,
  .cf-auth-page .cf-auth-secondary,
  .cf-auth-page .cf-auth-danger,
  .cf-auth-suffix {
    min-height: 46px;
  }

  .cf-auth-switch {
    margin-top: 19px;
    padding-top: 15px;
  }

  .cf-auth-visual {
    padding: 28px 38px 22px;
  }

  .cf-auth-visual-copy { margin-bottom: 17px; }

  .cf-auth-visual-copy h2 {
    font-size: clamp(2.5rem, 3.45vw, 3.55rem);
    line-height: 0.94;
  }

  .cf-auth-visual-copy > p:last-child {
    margin-top: 10px;
    line-height: 1.55;
  }

  .cf-auth-scene {
    min-height: 0;
    height: min(43vh, 360px);
  }

  .cf-auth-workspace,
  .cf-auth-identity-scene,
  .cf-auth-recovery-scene,
  .cf-auth-token-scene {
    height: 100%;
    min-height: 0;
  }

  .cf-auth-workspace { aspect-ratio: auto; }

  .cf-auth-guide {
    bottom: -120px;
    width: clamp(290px, 29vw, 370px);
  }

  .cf-auth-identity-note--email { top: 38px; }
  .cf-auth-identity-note--ready { bottom: 45px; }

  .cf-auth-recovery-scene { padding: 24px 30px; }
  .cf-auth-recovery-route > span { min-height: 72px; }
  .cf-auth-recovery-seal > span { width: 88px; height: 98px; margin-bottom: 15px; }
  .cf-auth-recovery-seal > span::before { top: 38px; left: 31px; }

  .cf-auth-token-scene { width: 380px; }
  .cf-auth-token-orbit--outer { width: 282px; height: 282px; }
  .cf-auth-token-orbit--inner { width: 198px; height: 198px; }
  .cf-auth-token-core { width: 112px; height: 112px; }
  .cf-auth-token-core img { width: 84px; height: 84px; }
  .cf-auth-token-code { bottom: 12px; }
  .cf-auth-token-scene > p { bottom: -15px; }

  .cf-auth-visual-foot { margin-top: 10px; }
}

@media (min-width: 921px) and (max-height: 780px) {
  .cf-auth-entry {
    padding-top: 16px;
    padding-bottom: 14px;
  }

  .cf-auth-brand { width: 128px; }
  .cf-auth-entry-inner { padding-block: 10px; }
  .cf-auth-heading { margin-bottom: 18px; }
  .cf-auth-heading h1 { font-size: 2.2rem; }
  .cf-auth-heading p { font-size: 0.84rem; line-height: 1.45; }
  .cf-auth-form { gap: 12px; }
  .cf-auth-password { gap: 11px; }
  .cf-auth-rules { gap: 4px 14px; }
  .cf-auth-strength { margin-top: -5px; }
  .cf-auth-switch { margin-top: 15px; padding-top: 12px; }
  .cf-auth-terms { font-size: 0.7rem; }

  .cf-auth-page .cf-auth-input,
  .cf-auth-page .cf-auth-primary,
  .cf-auth-page .cf-auth-secondary,
  .cf-auth-page .cf-auth-danger,
  .cf-auth-suffix {
    min-height: 43px;
  }

  .cf-auth-visual { padding-block: 20px 16px; }
  .cf-auth-visual-kicker { margin-bottom: 6px; }
  .cf-auth-visual-copy h2 { font-size: clamp(2.25rem, 3.1vw, 3rem); }
  .cf-auth-visual-copy > p:last-child { font-size: 0.8rem; }
  .cf-auth-scene { height: min(40vh, 305px); }
  .cf-auth-visual-foot { font-size: 0.82rem; }

  .cf-auth-workspace-main { padding: 16px 18px; }
  .cf-auth-workspace-grid { margin-top: 12px; }
  .cf-auth-workspace-chart { height: 82px; }
  .cf-auth-workspace-list { padding-top: 9px; }
  .cf-auth-workspace-row { min-height: 39px; }

  .cf-auth-guide { bottom: -145px; width: 330px; }
  .cf-auth-identity-note--email { top: 24px; }
  .cf-auth-identity-note--ready { right: 30px; bottom: 30px; }

  .cf-auth-recovery-route > span { min-height: 62px; }
  .cf-auth-recovery-seal > span { width: 76px; height: 84px; }
  .cf-auth-recovery-seal > span::before { top: 31px; left: 26px; width: 22px; }

  .cf-auth-token-orbit--outer { width: 244px; height: 244px; }
  .cf-auth-token-orbit--inner { width: 170px; height: 170px; }
  .cf-auth-token-core { width: 96px; height: 96px; }
  .cf-auth-token-core img { width: 72px; height: 72px; }
  .cf-auth-token-code span { width: 30px; height: 36px; }
}

@media (max-width: 1180px) {
  .cf-auth-shell {
    grid-template-columns: minmax(430px, 0.9fr) minmax(480px, 1.1fr);
  }

  .cf-auth-entry {
    padding-inline: clamp(34px, 4vw, 58px);
  }

  .cf-auth-visual {
    padding: 46px 38px;
  }
}

@media (max-width: 920px) {
  .cf-auth-shell {
    grid-template-columns: 1fr;
  }

  .cf-auth-entry {
    min-height: 100svh;
    padding: 25px clamp(22px, 7vw, 60px) 22px;
  }

  .cf-auth-entry-inner {
    padding-block: 50px 38px;
  }

  .cf-auth-visual {
    display: none;
  }
}

@media (max-width: 520px) {
  .cf-auth-entry {
    padding: 20px 18px 16px;
  }

  .cf-auth-brand { width: 126px; }

  .cf-auth-entry-inner {
    padding: 32px 0 26px;
  }

  .cf-auth-heading {
    margin-bottom: 24px;
  }

  .cf-auth-heading h1 {
    font-size: 2.25rem;
  }

  .cf-auth-heading p {
    margin-top: 9px;
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .cf-auth-form { gap: 17px; }
  .cf-auth-password { gap: 15px; }

  .cf-auth-page .cf-auth-input,
  .cf-auth-page .cf-auth-primary,
  .cf-auth-page .cf-auth-secondary,
  .cf-auth-page .cf-auth-danger,
  .cf-auth-suffix {
    min-height: 48px;
  }

  .cf-auth-rules { gap: 5px 14px; }
  .cf-auth-switch { margin-top: 22px; padding-top: 17px; }

  .cf-auth-form-meta,
  .cf-auth-switch {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .cf-auth-legal {
    gap: 18px;
  }

  .cf-auth-legal a + a::before {
    left: -10px;
  }
}

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

  .cf-auth-form-view,
  .cf-auth-workspace {
    opacity: 1;
    transform: none;
  }

  .cf-auth-chart-line {
    stroke-dashoffset: 0;
  }

  .cf-auth-chart-point {
    opacity: 1;
  }
}

/* Signed-in security pages use the same controls inside the existing shell. */
.cf-security-panel {
  --cf-auth-ink: #171b2b;
  --cf-auth-muted: #687083;
  --cf-auth-line: #dfe3e7;
  --cf-auth-violet: #4d4fea;
  --cf-auth-violet-dark: #3436c9;
  --cf-auth-green: #16855b;
  width: min(100%, 780px);
  margin: 0 auto;
  padding: clamp(22px, 3vw, 38px) 0;
  color: var(--cf-auth-ink);
  font-family: "Ciforus Manrope", sans-serif;
}

.cf-security-panel * { letter-spacing: 0; }
.cf-security-panel .cf-auth-heading h1 { font-size: clamp(2.1rem, 3.2vw, 3rem); }
.cf-security-panel .cf-auth-form { max-width: 520px; }
.cf-security-panel .cf-auth-input,
.cf-security-panel .cf-auth-textarea {
  width: 100%;
  min-width: 0;
  min-height: 50px;
  padding: 0 15px;
  border: 1px solid #cfd5dc;
  border-radius: 7px;
  outline: 0;
  background: #ffffff;
  color: var(--cf-auth-ink);
  font: 500 0.94rem/1.4 "Ciforus Manrope", sans-serif;
  box-shadow: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.cf-security-panel .cf-auth-textarea {
  min-height: 100px;
  padding-top: 13px;
  resize: vertical;
}
.cf-security-panel .cf-auth-input:focus,
.cf-security-panel .cf-auth-textarea:focus {
  border-color: var(--cf-auth-violet);
  box-shadow: 0 0 0 3px rgba(77, 79, 234, 0.12);
}
.cf-security-panel .cf-auth-primary,
.cf-security-panel .cf-auth-secondary,
.cf-security-panel .cf-auth-danger {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 7px;
  font: 680 0.91rem/1 "Ciforus Manrope", sans-serif;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}
.cf-security-panel .cf-auth-primary { background: var(--cf-auth-violet); color: #ffffff; }
.cf-security-panel .cf-auth-primary:hover { background: var(--cf-auth-violet-dark); color: #ffffff; transform: translateY(-1px); }
.cf-security-panel .cf-auth-secondary { border-color: #cfd5dc; background: #ffffff; color: var(--cf-auth-ink); }
.cf-security-panel .cf-auth-secondary:hover { border-color: #9fa8b5; background: #f8f9fa; }
.cf-security-panel .cf-auth-danger { border-color: #e3b7c0; background: #fff7f8; color: #aa3148; }
.cf-security-panel .cf-auth-danger:hover { border-color: #d69aa7; background: #fff0f2; }
.cf-security-panel button:focus-visible,
.cf-security-panel input:focus-visible,
.cf-security-panel textarea:focus-visible {
  outline: 3px solid rgba(77, 79, 234, 0.22);
  outline-offset: 3px;
}
.cf-security-panel button:disabled,
.cf-security-panel button[disabled] {
  opacity: 0.48;
  cursor: not-allowed;
  transform: none;
}
.cf-security-section {
  padding: 28px 0;
  border-top: 1px solid var(--cf-auth-line);
}
.cf-security-section:first-of-type { border-top: 0; padding-top: 4px; }
.cf-security-section h2 {
  margin: 0 0 8px;
  color: var(--cf-auth-ink);
  font: 560 1.65rem/1.08 "Ciforus Newsreader", Georgia, serif;
}
.cf-security-section > p {
  max-width: 58ch;
  margin: 0 0 20px;
  color: var(--cf-auth-muted);
}
.cf-security-status-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 24px;
  color: var(--cf-auth-green);
  font-size: 0.84rem;
  font-weight: 660;
}
.cf-security-status-line::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cf-auth-green);
}
.cf-security-setup {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) auto;
  align-items: center;
  gap: 28px;
}
.cf-security-secret-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  gap: 8px;
}
.cf-security-copy {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #cfd5dc;
  border-radius: 7px;
  background: #fff;
  color: var(--cf-auth-ink);
  cursor: pointer;
}
.cf-security-copy svg { width: 18px; height: 18px; fill: currentColor; }
.cf-security-qr {
  width: 190px;
  height: 190px;
  padding: 8px;
  border: 1px solid var(--cf-auth-line);
  border-radius: 7px;
  background: #ffffff;
}
.cf-security-qr img { width: 100%; height: 100%; }
.cf-security-inline-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.cf-security-inline-actions .cf-auth-primary,
.cf-security-inline-actions .cf-auth-secondary,
.cf-security-inline-actions .cf-auth-danger { width: auto; min-width: 150px; }

@media (max-width: 700px) {
  .cf-security-setup { grid-template-columns: 1fr; }
  .cf-security-qr { width: 180px; height: 180px; }
  .cf-security-inline-actions { align-items: stretch; flex-direction: column; }
  .cf-security-inline-actions .cf-auth-primary,
  .cf-security-inline-actions .cf-auth-secondary,
  .cf-security-inline-actions .cf-auth-danger { width: 100%; }
}
