:root {
  color-scheme: light;
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #fff8df;
  --line: #e7e0cf;
  --text: #151515;
  --muted: #ded8c8;
  --brand: #b77900;
  --yellow: #f5c84c;
  --yellow-strong: #e8b321;
  --ok: #8bd17c;
  --danger: #f87171;
  --radius: 8px;
}
* {
  box-sizing: border-box;
}
html {
  width: 100%;
  min-height: 100%;
  overflow-x: clip;
  background: var(--bg);
  -webkit-text-size-adjust: 100%;
  touch-action: pan-y;
}
body {
  width: 100%;
  max-width: 100%;
  min-height: 100%;
  margin: 0;
  overflow-x: clip;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background-color: var(--bg);
  color: var(--text);
}
@supports not (overflow: clip) {html,
  body {
    overflow-x: hidden;
  }}
body:has(.hero),
body:has(.user-hero),
body:has(.pdfs-page),
body:has(.apps-page),
body:has(.elito-page) {
  background: #000000;
  color: #ffffff;
}
body:has(.hero)::before,
body:has(.user-hero)::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100vw, 760px);
  z-index: 0;
  pointer-events: none;
  background: #000000 url("/background-image") center / cover no-repeat;
  transform: translateX(-50%) translateZ(0);
}
body:has(.hero)::after,
body:has(.user-hero)::after {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(100vw, 760px);
  z-index: 0;
  pointer-events: none;
  background: rgba(0, 0, 0, .44);
  transform: translateX(-50%);
}
body:has(.home-stagger-menu) .topbar {
  display: none !important;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--text);
  padding: 12px 13px;
  font-size: 16px;
}
input:focus {
  outline: 2px solid rgba(125, 211, 252, .5);
  outline-offset: 1px;
}
.shell {
  position: relative;
  width: min(100%, 760px);
  min-height: 100svh;
  margin: 0 auto;
  padding: max(16px, env(safe-area-inset-top)) 16px max(24px, env(safe-area-inset-bottom));
}
.top-fade-bar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100vw;
  height: calc(76px + env(safe-area-inset-top));
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      #ffffff 0,
      #ffffff calc(48px + env(safe-area-inset-top)),
      rgba(255, 255, 255, .78) calc(58px + env(safe-area-inset-top)),
      rgba(255, 255, 255, .28) calc(68px + env(safe-area-inset-top)),
      rgba(255, 255, 255, 0) 100%
    );
}
.bottom-fade-bar {
  display: none;
}
.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 18px;
}
.brand {
  font-weight: 800;
  letter-spacing: 0;
}
.iconbtn,
.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-2);
  color: #191400;
  padding: 0 14px;
  cursor: pointer;
}
.button {
  width: 100%;
  font-weight: 700;
}
.button.primary {
  border-color: var(--yellow-strong);
  background: var(--yellow);
}
.button.small {
  width: auto;
  min-height: 38px;
  padding: 0 12px;
}
.button.danger {
  border-color: rgba(248, 113, 113, .4);
  color: #8b1d1d;
}
.hero,
.panel,
.welcome,
.page-head {
  padding: 18px 0;
}
.hero {
  min-height: calc(100svh - 96px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}
.hero-person {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100%, 380px);
  max-height: 45svh;
  margin: 0 auto -18px;
  object-fit: contain;
}
.login-panda {
  --panda-eye-x: 0px;
  --panda-eye-y: 0px;
  position: relative;
  z-index: 100;
  width: clamp(112px, 32vw, 148px);
  height: clamp(112px, 32vw, 148px);
  margin: 0 auto -48px;
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, .18));
  pointer-events: none;
}
.login-panda svg {
  display: block;
  width: 100%;
  height: 100%;
  overflow: visible;
}
.panda-pupil {
  transform: translate(var(--panda-eye-x), var(--panda-eye-y));
  transition: transform .08s linear;
}
.panda-brow {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .28s cubic-bezier(.2, .8, .2, 1);
}
.panda-paw {
  transform-box: fill-box;
  transform-origin: center;
  transition: transform .42s cubic-bezier(.2, 1.25, .3, 1);
}
.login-panda.is-covering .panda-pupil {
  transform: translate(0, 0);
}
.login-panda.is-covering .panda-brow-left {
  transform: translateY(2px) rotate(10deg);
}
.login-panda.is-covering .panda-brow-right {
  transform: translateY(2px) rotate(-10deg);
}
.login-panda.is-covering .panda-paw-left {
  transform: translate(12px, -42px) rotate(38deg);
}
.login-panda.is-covering .panda-paw-right {
  transform: translate(-12px, -42px) rotate(-38deg);
}
.auth-card {
  position: relative;
  z-index: 2;
  width: min(100%, 380px);
  margin: 0 auto;
  border: 1px solid rgba(245, 196, 0, .95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -15%, rgba(245, 196, 0, .12), transparent 32%),
    rgba(8, 9, 10, .86);
  box-shadow:
    0 0 0 1px rgba(255, 215, 64, .08) inset,
    0 24px 70px rgba(0, 0, 0, .48),
    0 0 46px rgba(245, 196, 0, .2);
  padding: 54px 18px 22px;
  backdrop-filter: blur(8px);
}
.account-auth-page {
  position: relative;
  min-height: calc(100svh - 40px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 96px 0 88px;
}
.account-auth-page .login-panda {
  margin-bottom: -28px;
  transform: translateY(-18px);
}
.account-auth-card {
  padding-top: 34px;
}
.account-auth-card .auth-copy {
  margin-bottom: 18px;
}
.account-auth-card .auth-copy p {
  max-width: 31ch;
  margin-left: auto;
  margin-right: auto;
}
.auth-badge {
  position: absolute;
  display: grid;
  place-items: center;
  left: 50%;
  top: 0;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(245, 196, 0, .95);
  border-radius: 999px;
  background: rgba(9, 10, 11, .92);
  box-shadow: 0 0 28px rgba(245, 196, 0, .24);
  transform: translate(-50%, -50%);
}
.auth-badge svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: #f5c400;
  stroke-width: 2.2;
  stroke-linejoin: round;
}
.auth-copy {
  text-align: center;
  margin-bottom: 22px;
}
.auth-copy h1 {
  position: relative;
  display: block;
  min-height: 1.28em;
  margin: 0;
  overflow: hidden;
  color: #f5c400;
  font-size: 27px;
  line-height: 1.22;
}
.auth-title-scroller {
  position: relative;
  display: block;
  height: 1.28em;
}
.auth-title-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
  transform: translateY(0);
  transition: transform .34s cubic-bezier(.76, 0, .24, 1);
  will-change: transform;
}
.auth-title-line.is-next {
  transform: translateY(115%);
}
.auth-copy h1.is-title-scrolling .auth-title-line.is-current {
  transform: translateY(-115%);
}
.auth-copy h1.is-title-scrolling .auth-title-line.is-next {
  transform: translateY(0);
}
.auth-copy h1.is-title-resetting .auth-title-line {
  transition: none !important;
}
.auth-copy h1::first-letter {
  color: inherit;
}
.auth-copy p {
  margin: 9px 0 0;
  color: rgba(255, 255, 255, .72);
  font-size: 16px;
}
.auth-form {
  display: none;
  gap: 13px;
}
.auth-form.is-active {
  display: grid;
  animation: form-slide .22s ease-out both;
}
.auth-form input {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-radius: 8px;
  background: rgba(10, 11, 12, .44);
  color: #ffffff;
  text-align: left;
  box-shadow: 0 10px 26px rgba(0, 0, 0, .18);
}
.password-field {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.password-field .field-error {
  grid-column: 1 / -1;
}
.password-field input {
  grid-column: 1 / -1;
  grid-row: 1;
  padding-right: 54px;
}
.password-eye-toggle {
  grid-column: 2;
  grid-row: 1;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-right: 5px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: rgba(17, 17, 17, .72);
  cursor: pointer;
}
.password-eye-toggle svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.password-eye-toggle .eye-slash {
  opacity: 1;
  transform-origin: center;
  transition: opacity .16s ease, transform .16s ease;
}
.password-eye-toggle.is-visible .eye-slash {
  opacity: 0;
  transform: scale(.78);
}
.field-wrap {
  position: relative;
  display: grid;
}
.field-error {
  justify-self: start;
  max-width: 100%;
  margin: 0 0 7px;
  border: 1px solid rgba(239, 68, 68, .8);
  border-radius: 8px;
  background: rgba(20, 0, 0, .96);
  color: #fecaca;
  padding: 8px 10px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.2;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .28);
}
.auth-form input::placeholder {
  color: rgba(255, 255, 255, .82);
}
.auth-form input:focus {
  border-color: rgba(17, 17, 17, .32);
  outline: 2px solid rgba(17, 17, 17, .12);
  outline-offset: 2px;
}
.auth-form input.is-invalid {
  border-color: #ef4444;
  background: rgba(127, 29, 29, .26);
  box-shadow: 0 0 0 2px rgba(239, 68, 68, .24), 0 10px 26px rgba(0, 0, 0, .18);
  animation: field-shake .28s ease both;
}
@keyframes field-shake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-7px); }
  40% { transform: translateX(7px); }
  60% { transform: translateX(-5px); }
  80% { transform: translateX(5px); }
}
.auth-form .button {
  margin-top: 2px;
}
.password-strength {
  display: grid;
  gap: 8px;
  margin: -2px 0 2px;
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}
.password-strength-track {
  height: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
}
.password-strength-track span {
  display: block;
  width: 20%;
  height: 100%;
  border-radius: inherit;
  background: #ef4444;
  transition: width .2s ease, background-color .2s ease;
}
.password-strength strong {
  color: #f87171;
  font-size: 12px;
}
.password-strength ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 5px 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.password-strength li {
  position: relative;
  padding-left: 15px;
}
.password-strength li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #ef4444;
}
.password-strength li.is-ok {
  color: #ffffff;
}
.password-strength li.is-ok::before {
  background: #4ade80;
}
.password-strength[data-score="3"] .password-strength-track span,
.password-strength[data-score="4"] .password-strength-track span {
  background: #f5c400;
}
.password-strength[data-score="3"] strong,
.password-strength[data-score="4"] strong {
  color: #f5c400;
}
.password-strength[data-score="5"] .password-strength-track span {
  background: #4ade80;
}
.password-strength[data-score="5"] strong {
  color: #4ade80;
}
.auth-form .button.primary {
  min-height: 58px;
  border: 1px solid #f5c400;
  border-radius: 8px;
  background: #f5c400;
  color: #111111;
  text-transform: uppercase;
  letter-spacing: 0;
  box-shadow: 0 12px 28px rgba(245, 196, 0, .22);
}
.auth-form .button.primary:active {
  transform: translateY(1px);
}
.google-login-wrap {
  display: none;
  margin-top: 12px;
}
.auth-card[data-auth-mode="login"] .google-login-wrap {
  display: block;
}
.passkey-login-wrap {
  display: none;
  margin-top: 12px;
}
.auth-card[data-auth-mode="login"] .passkey-login-wrap:not([hidden]) {
  display: block;
}
.google-login-button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .96);
  color: #111111;
  font-size: 15px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .06);
}
.google-login-button:active {
  transform: translateY(1px);
}
.passkey-login-button {
  color: #111111;
  cursor: pointer;
}
.passkey-login-button img {
  width: 27px;
  height: 27px;
  object-fit: contain;
}
.passkey-login-button img:last-child {
  width: 23px;
  height: 23px;
}
.passkey-separator {
  color: rgba(17, 17, 17, .46);
  font-weight: 700;
}
.passkey-login-button.is-loading{
  opacity: .66;
  cursor: wait;
}
.sms-login-wrap {
  display: none;
  margin-top: 10px;
}
.auth-card[data-auth-mode="login"] .sms-login-wrap {
  display: block;
}
.sms-login-button,
.sms-login-back{
  width: 100%;
  border: 1px solid rgba(6, 182, 212, .55);
  border-radius: 8px;
  background: rgba(255, 255, 255, .94);
  color: #0891b2;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.sms-login-button {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-color: rgba(17, 17, 17, .16);
  background: rgba(255, 255, 255, .96);
  color: #111111;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .06);
}
.sms-login-button img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}
.sms-login-back {
  min-height: 34px;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.mobile-number-field {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: stretch;
  min-width: 0;
}
.mobile-country-prefix {
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 54px;
  margin-right: -1px;
  border: 1px solid rgba(17, 17, 17, .16);
  border-radius: 8px 0 0 8px;
  background: rgba(255, 255, 255, .96);
  color: #111111;
  padding: 0 10px;
}
.mobile-country-prefix img {
  width: 24px;
  height: 24px;
  object-fit: contain;
}
.mobile-country-prefix strong {
  font-size: 14px;
  letter-spacing: 0;
}
.auth-form .mobile-number-field input {
  width: 100%;
  min-width: 0;
  border-radius: 0 8px 8px 0;
}
.google-logo-text {
  display: inline-flex;
  align-items: center;
  gap: 0;
  line-height: 1;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  font-family: Arial, Helvetica, sans-serif;
}
.google-wordmark {
  width: auto;
  height: 28px;
  display: block;
  object-fit: contain;
  margin-right: -1px;
}
.google-letter.blue {
  color: #4285f4;
}
.google-letter.red {
  color: #ea4335;
}
.google-letter.yellow {
  color: #fbbc05;
}
.google-letter.green {
  color: #34a853;
}
.auth-switch {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  color: #ffffff;
}
.auth-switch a {
  color: #ffffff;
  padding: 6px 1px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}
.auth-switch a.is-active {
  color: #f5c84c;
}
.auth-switch span {
  color: #ffffff;
  font-weight: 700;
}
.copyright {
  position: relative;
  z-index: 51;
  margin: 14px 0 0;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
  line-height: 1.35;
}
body:has(.hero) .copyright,
.home-footer .copyright {
  color: #ffffff;
}
.toast-stack {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  right: max(12px, env(safe-area-inset-right));
  top: max(18px, env(safe-area-inset-top));
  z-index: 180;
  display: grid;
  gap: 14px;
  justify-items: center;
  pointer-events: none;
}
@media (min-width: 720px) {.toast-stack {
    left: auto;
    right: max(26px, env(safe-area-inset-right));
    width: min(430px, calc(100vw - 52px));
    justify-items: end;
  }}
.toast {
  --toast-color: #22c55e;
  --toast-soft: rgba(34, 197, 94, .12);
  position: relative;
  width: min(100%, 430px);
  min-height: 82px;
  display: grid;
  grid-template-columns: 48px 1fr 34px;
  align-items: center;
  gap: 12px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, .06);
  border-radius: 14px;
  background: #ffffff;
  color: #1f2937;
  padding: 14px 13px 17px 16px;
  box-shadow:
    0 22px 58px rgba(15, 23, 42, .18),
    0 8px 20px rgba(15, 23, 42, .08),
    0 0 0 1px rgba(255, 255, 255, .78) inset;
  opacity: 0;
  transform: translateY(-18px);
  transition: opacity .22s ease, transform .22s ease;
  pointer-events: auto;
}
.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.toast.success {
  --toast-color: #22c55e;
  --toast-soft: rgba(34, 197, 94, .12);
}
.toast.error {
  --toast-color: #ef4444;
  --toast-soft: rgba(239, 68, 68, .12);
}
.toast.warning {
  --toast-color: #f97316;
  --toast-soft: rgba(249, 115, 22, .13);
}
.toast-icon {
  flex: none;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--toast-soft);
  color: var(--toast-color);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
}
.toast-body {
  min-width: 0;
}
.toast-title {
  display: block;
  color: #253044;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.18;
}
.toast-text {
  display: block;
  margin-top: 4px;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.25;
}
.toast-close {
  appearance: none;
  flex: none;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  align-self: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #9ca3af;
  padding: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
}
.toast-close:hover {
  color: #374151;
}
.toast-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5px;
  background: var(--toast-color);
  transform-origin: left center;
  animation: toast-progress var(--toast-duration, 4500ms) linear forwards;
  box-shadow:
    0 4px 12px color-mix(in srgb, var(--toast-color) 34%, transparent),
    0 10px 22px color-mix(in srgb, var(--toast-color) 18%, transparent);
}
@keyframes toast-progress {
  from {
    transform: scaleX(1);
  }
  to {
    transform: scaleX(0);
  }
}
.not-found-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 0;
  background: #000000;
}
body:has(.not-found-page) .shell {
  width: 100%;
  max-width: none;
  padding: 0;
}
body:has(.not-found-page) {
  background: #000000;
}
body:has(.user-hero) {
  color: #ffffff;
}
body:has(.user-hero) .shell {
  width: min(100%, 760px);
}
body:has(.user-hero) .topbar {
  display: none;
}
.user-hero {
  display: grid;
  place-items: center;
  padding: 16px 0 20px;
}
.user-hero img {
  width: min(58vw, 220px);
  max-height: 210px;
  object-fit: contain;
}
.service-grid:has(.service-icon) {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
}
.service-icon {
  min-height: auto;
  aspect-ratio: auto;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 4px;
}
.service-icon img {
  display: block;
  width: min(100%, 180px);
  height: auto;
  object-fit: contain;
  filter: none;
}
body:has(.user-hero) .user-hero img {
  width: min(74vw, 320px);
  max-height: 320px;
}
.home-style-anchor {
  display: none !important;
}
body:has(.user-hero) .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px;
}
body:has(.user-hero) .service.service-icon {
  min-height: 0;
  aspect-ratio: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body:has(.user-hero) .service.service-icon img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  filter: none;
}
.home-link-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 0;
}
.home-link-action {
  position: relative;
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 196, 0, .72);
  border-radius: 8px;
  background: rgba(16, 16, 16, .72);
  color: #f5c400;
  padding: 0 12px;
  font-size: 12px;
  font-weight: 900;
  text-align: center;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28);
}
.action-badge {
  position: absolute;
  right: -7px;
  top: -8px;
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 999px;
  background: #ef4444;
  color: #ffffff;
  padding: 0 5px;
  font-size: 11px;
  font-weight: 950;
  line-height: 1;
}
.url-display {
  width: 100%;
  margin: 0;
  overflow-wrap: anywhere;
  border: 1px solid rgba(245, 196, 0, .38);
  border-radius: 8px;
  background: rgba(0, 0, 0, .38);
  color: #ffffff !important;
  padding: 11px 12px;
  font-size: 14px;
  line-height: 1.35;
}
.link-modal .button.primary {
  display: inline-flex;
  width: min(100%, 190px);
  margin: 0 auto;
  justify-self: center;
}
.link-modal .email-modal-card {
  display: grid;
  justify-items: center;
}
.link-modal .auth-copy {
  width: 100%;
}
.home-corner-actions {
  position: fixed;
  left: max(12px, env(safe-area-inset-left));
  top: max(12px, env(safe-area-inset-top));
  z-index: 124;
  display: grid;
  justify-items: start;
  gap: 8px;
}
body:has(.home-stagger-menu) .service-grid,
body:has(.home-stagger-menu) > .floating-action,
body:has(.home-stagger-menu) .shell > .floating-gear,
body:has(.home-stagger-menu) .shell > .floating-key,
body:has(.home-stagger-menu) .shell > .floating-elito:not(.elito-close-arrow) {
  display: none !important;
}
.home-stagger-menu {
  position: fixed;
  inset: 0;
  z-index: 120;
  pointer-events: none;
}
.email-warning-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 8px;
  padding: 8px 11px;
  font-size: 12px;
  font-weight: 900;
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .35);
}
.email-warning-badge {
  border: 1px solid rgba(239, 68, 68, .22);
  background: rgba(20, 0, 0, .78);
  color: #fecaca;
}
.warning-triangle {
  width: 0;
  height: 0;
  display: inline-grid;
  place-items: center;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 18px solid #ef4444;
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
  position: relative;
}
.warning-triangle::after {
  content: "!";
  position: absolute;
  top: 5px;
  left: -3px;
}
.email-modal {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: none;
  place-items: center;
  padding: 22px;
}
.email-modal:target {
  display: grid;
}
.email-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
  backdrop-filter: blur(4px);
}
.email-modal-card {
  position: relative;
  width: min(100%, 380px);
  border: 1px solid rgba(245, 196, 0, .95);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% -15%, rgba(245, 196, 0, .12), transparent 32%),
    rgba(8, 9, 10, .94);
  box-shadow:
    0 0 0 1px rgba(255, 215, 64, .08) inset,
    0 24px 70px rgba(0, 0, 0, .55),
    0 0 46px rgba(245, 196, 0, .2);
  padding: 54px 18px 22px;
}
.email-modal-badge {
  top: 0;
}
.email-modal-close {
  position: absolute;
  right: 12px;
  top: 10px;
  color: rgba(255, 255, 255, .7);
  font-size: 20px;
  font-weight: 900;
  z-index: 2;
}
.live-badge {
  position: absolute;
  right: 8px;
  top: 8px;
  display: block;
  width: 14px;
  height: 14px;
  border: 2px solid rgba(0, 0, 0, .75);
  border-radius: 999px;
  background: currentColor;
  color: #f87171;
  padding: 0;
}

.live-badge.is-online {
  border-color: rgba(74, 222, 128, .45);
  color: #4ade80;
  box-shadow: 0 0 18px rgba(74, 222, 128, .42);
}

.live-badge.is-offline {
  border-color: rgba(248, 113, 113, .45);
  color: #f87171;
  box-shadow: 0 0 18px rgba(248, 113, 113, .35);
}
body:has(.floating-action) .topbar {
  display: none;
}
.floating-action {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  bottom: auto;
  right: max(12px, calc((100vw - 760px) / 2 + 12px));
  z-index: 40;
  display: grid;
  place-items: center;
  width: 156px;
  height: 156px;
}
.floating-action img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.floating-action button {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.floating-back {
  width: 150px;
  height: 150px;
}
.floating-back-circle,
.floating-gear,
.floating-key,
.floating-elito {
  top: auto;
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 54px;
  height: 54px;
  border: 2px solid #f5c400;
  border-radius: 999px;
  background: rgba(0, 0, 0, .78);
  box-shadow: 0 14px 28px rgba(0, 0, 0, .35), 0 0 18px rgba(245, 196, 0, .18);
  backdrop-filter: blur(6px);
}
.floating-back-circle,
.floating-key {
  top: max(12px, env(safe-area-inset-top));
  bottom: auto;
}
.floating-gear {
  top: max(12px, env(safe-area-inset-top));
  bottom: auto;
}
.floating-elito {
  top: max(12px, env(safe-area-inset-top));
  bottom: auto;
  text-decoration: none;
  padding: 6px;
  border-color: transparent;
  overflow: visible;
  box-shadow: none;
  animation: none;
}
.floating-elito::before,
.floating-elito::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid transparent;
  background:
    conic-gradient(from 0deg, transparent 0 18%, rgba(255, 255, 255, .95) 23% 29%, transparent 34% 66%, rgba(255, 255, 255, .95) 71% 77%, transparent 82% 100%)
    border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
  filter: drop-shadow(0 0 9px rgba(255, 255, 255, .42));
  animation: elito-ring-sweep 2.4s ease-in-out infinite alternate;
}
.floating-elito::after {
  animation-direction: alternate-reverse;
}
@keyframes elito-ring-sweep {
  0% {
    transform: rotate(0deg);
    opacity: .58;
  }
  50% {
    opacity: 1;
  }
  to {
    transform: rotate(180deg);
    opacity: .9;
  }
}
.floating-elito-user {
  top: calc(max(12px, env(safe-area-inset-top)) + 66px);
}
.floating-back-circle span,
.floating-gear span {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
}
.floating-back-circle span::before {
  content: "←";
  color: #f5c400;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  transform: translateY(-1px);
}
.floating-gear span::before {
  content: "⚙";
  color: #f5c400;
  font-size: 30px;
  font-weight: 900;
  line-height: 1;
}
.floating-key svg {
  display: block;
  width: 30px;
  height: 30px;
  fill: none;
  stroke: #f5c400;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.floating-elito img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.elito-modal:target {
  display: block;
}
html.elito-open,
body.elito-open {
  overflow: hidden;
  height: 100%;
  touch-action: none;
}
.elito-modal .email-modal-backdrop {
  position: fixed;
  background: rgba(0, 0, 0, .48);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.elito-card {
  position: fixed;
  inset: 0;
  z-index: 56;
  display: grid;
  justify-items: stretch;
  grid-template-rows: 1fr auto;
  width: min(100vw, 760px);
  max-width: 760px;
  height: 100dvh;
  min-height: 100svh;
  margin: 0 auto;
  padding: calc(18px + env(safe-area-inset-top)) 16px calc(14px + env(safe-area-inset-bottom));
  border: 0;
  border-radius: 0;
  background: rgba(0, 0, 0, .40);
  box-shadow: none;
  overflow: hidden;
  touch-action: auto;
}
.link-modal .elito-card {
  justify-items: stretch;
}
.elito-close-arrow {
  position: fixed;
  top: max(12px, env(safe-area-inset-top));
  right: max(12px, calc((100vw - 760px) / 2 + 12px));
  bottom: auto;
  z-index: 58;
}
.elito-head {
  align-self: start;
  padding: 4px 70px 14px 4px;
  text-align: left;
}
.elito-head h1 {
  margin: 0;
  color: #f5c400;
  font-size: clamp(1.25rem, 6vw, 1.8rem);
  line-height: 1.08;
}
.elito-chat-log {
  display: grid;
  align-content: end;
  gap: 12px;
  overflow: auto;
  padding: 8px 0 14px;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, .7) transparent;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
.elito-message-row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}
.elito-message-row.user {
  justify-content: flex-end;
}
.elito-message-row.assistant {
  justify-content: flex-start;
}
.elito-avatar {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245, 196, 0, .22));
}
.elito-avatar.user {
  border: 1px solid rgba(245, 196, 0, .42);
  border-radius: 999px;
  object-fit: cover;
  background: rgba(0, 0, 0, .5);
}
.elito-message {
  width: fit-content;
  max-width: min(82%, 520px);
  padding: 11px 13px;
  border: 1px solid rgba(245, 196, 0, .42);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(13, 13, 13, .76);
  font-size: 1rem;
  line-height: 1.35;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.elito-message.user {
  border-color: rgba(255, 255, 255, .24);
  background: rgba(245, 196, 0, .2);
  border-bottom-right-radius: 4px;
}
.elito-message.assistant {
  border-bottom-left-radius: 4px;
}
.elito-message a {
  color: #f5c400;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
.elito-chat-form {
  display: grid;
  grid-template-columns: 1fr 50px;
  align-items: end;
  gap: 10px;
  width: 100%;
  padding-top: 10px;
  touch-action: auto;
}
.elito-chat-form textarea {
  width: 100%;
  min-height: 50px;
  max-height: 140px;
  resize: none;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 14px;
  background: rgba(0, 0, 0, .72);
  color: #ffffff;
  padding: 14px 15px;
  font: inherit;
  font-size: 16px;
  outline: none;
}
.elito-chat-form textarea:focus {
  border-color: rgba(255, 255, 255, .9);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, .12);
}
.elito-send {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 14px;
  background: rgba(0, 0, 0, .78);
  color: #ffffff;
  cursor: pointer;
}
.elito-send:disabled {
  opacity: .55;
  cursor: wait;
}
.elito-send svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.page-logo {
  display: block;
  object-fit: contain;
  margin: 0 auto;
}
.pdfs-page-logo {
  width: min(78vw, 420px);
  max-height: 170px;
  margin-bottom: 8px;
}

.service-access-warning::before{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
html.modal-open,
html.modal-open body {
  overflow: hidden;
}
.not-found-art {
  position: relative;
  width: min(100vw, calc(100svh * .8));
  max-width: 1080px;
}
.not-found-art img {
  display: block;
  width: 100%;
  height: auto;
  user-select: none;
}
.not-found-home {
  position: absolute;
  left: 33.9%;
  top: 83.7%;
  width: 32.8%;
  height: 5.8%;
  border-radius: 8px;
}
.not-found-home:focus-visible {
  outline: 3px solid #f5c84c;
  outline-offset: 3px;
}
@keyframes form-slide {
  from {
    opacity: 0;
    transform: translateX(14px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.hero h1,
.panel h1,
.welcome h1,
.page-head h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  letter-spacing: 0;
}
.hero p,
.page-head p,
.muted {
  color: var(--muted);
}
.actions {
  display: grid;
  gap: 10px;
  margin: 28px 0 14px;
}
.subtle,
.inline-links a {
  color: var(--brand);
}
.form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}
.form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 14px;
}
.inline-links {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  font-size: 14px;
}
.messages {
  display: grid;
  gap: 8px;
  margin-bottom: 10px;
}
.message {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 11px 12px;
  color: var(--muted);
}
.message.success {
  border-color: rgba(139, 209, 124, .45);
  color: #2e6f1e;
}
.message.error {
  border-color: rgba(248, 113, 113, .45);
  color: #8b1d1d;
}
.eyebrow {
  margin: 0 0 8px;
  color: var(--brand);
  font-weight: 700;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.service {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 14px;
}
.service span {
  color: var(--muted);
  font-size: 13px;
}
.service strong {
  font-size: 18px;
  line-height: 1.15;
}
.strip {
  margin-top: 28px;
}
.strip.is-empty {
  display: none;
}
.strip h2,
.panel h2 {
  margin: 0 0 12px;
  font-size: 20px;
}
.strip h2 {
  color: #ffffff;
}
.rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 132px;
  gap: 12px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline proximity;
  padding-bottom: 12px;
}
.home-stack-strip {
  --stack-accent: #eab308;
}
.home-stack-strip .rail {
  position: relative;
  display: block;
  width: min(100vw, 760px);
  margin-left: 50%;
  height: 276px;
  transform: translateX(-50%);
  overflow: hidden;
  touch-action: pan-y;
  scroll-snap-type: none;
  padding: 4px 0 18px;
  cursor: grab;
}
.home-stack-strip .rail.is-dragging {
  cursor: grabbing;
}
.home-stack-strip .cover {
  position: absolute;
  top: 4px;
  left: 50%;
  width: 132px;
  transform:
    translateX(calc(-50% + var(--stack-x, 0px)))
    translateY(var(--stack-y, 0px))
    scale(var(--stack-scale, 1))
    rotate(var(--stack-rotate, 0deg));
  z-index: var(--stack-z, 1);
  opacity: var(--stack-opacity, 1);
  pointer-events: var(--stack-pointer, none);
  transition:
    transform .42s cubic-bezier(.16, 1, .3, 1),
    opacity .28s ease;
  will-change: transform, opacity;
}
.home-stack-strip .cover span,
.home-stack-strip .cover small {
  display: none;
}
.stack-caption {
  display: grid;
  justify-items: center;
  gap: 4px;
  width: min(92vw, 720px);
  min-height: 60px;
  margin: -10px auto 2px;
  color: #111111;
  text-align: center;
}
.stack-caption strong {
  max-width: 100%;
  color: #111111;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.16;
  overflow-wrap: anywhere;
}
.stack-caption small {
  max-width: 100%;
  color: #111111;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.12;
  overflow-wrap: anywhere;
}
.home-stack-strip .cover.is-active {
  pointer-events: auto;
}
.home-stack-strip .cover img,
.home-stack-strip .cover .blank-cover {
  box-shadow:
    0 20px 38px rgba(0, 0, 0, .13),
    0 0 0 1px rgba(255, 255, 255, .54);
}
.stack-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 7px;
  min-height: 18px;
  margin-top: 4px;
}
.stack-dot {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(17, 17, 17, .28);
  padding: 0;
  cursor: pointer;
  transition:
    width .24s ease,
    background-color .24s ease,
    transform .24s ease,
    opacity .24s ease;
}
.stack-dot.is-active {
  width: 19px;
  background: var(--stack-accent);
  opacity: 1;
}
.stack-dot:focus-visible {
  outline: 2px solid var(--stack-accent);
  outline-offset: 3px;
}
.cover {
  scroll-snap-align: start;
  display: grid;
  gap: 8px;
}
.cover img,
.pdf-card img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: var(--radius);
  background: var(--panel);
}
.cover span {
  min-height: 0;
  color: #ffffff;
  font-size: 13px;
  line-height: 1.25;
}
.cover small {
  display: block;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}
.live-panel {
  display: grid;
  grid-template-columns: clamp(132px, 38vw, 176px) minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: fit-content;
  max-width: 100%;
  margin-inline: auto;
  color: #ffffff;
}
.live-logo-wrap {
  display: grid;
  place-items: center;
  min-width: 0;
}
.live-logo-wrap img {
  display: block;
  width: clamp(132px, 38vw, 176px);
  max-height: 176px;
  object-fit: contain;
}
.live-copy {
  min-width: 0;
  display: grid;
  gap: 6px;
}
.live-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.live-head strong {
  color: #ffffff;
  font-size: 17px;
  line-height: 1.2;
}
.live-state-pill {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  border: 1px solid currentColor;
  border-radius: 8px;
  padding: 0 8px;
  font-size: 10px;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}
.live-state-pill.is-online {
  color: #4ade80;
}
.live-state-pill.is-offline {
  color: #f87171;
}
.live-copy p {
  margin: 0;
  color: #ffffff;
  font-size: 14px;
  line-height: 1.28;
}
.live-copy small {
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}
.blank-cover {
  aspect-ratio: 3 / 4;
  display: grid;
  place-items: center;
  border-radius: var(--radius);
  background: var(--panel);
  padding: 10px;
  color: var(--muted);
  text-align: center;
}
.pdf-grid,
.list {
  display: grid;
  gap: 10px;
}
.pdf-card,
.list-row{
  display: grid;
  grid-template-columns: 76px 1fr;
  gap: 12px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  padding: 10px;
}
.pdf-card div,
.list-row{
  min-width: 0;
}
.pdf-card strong,
.list-row strong{
  display: block;
  overflow-wrap: anywhere;
}
.pdf-card span,
.list-row span{
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}
.list-row{
  grid-template-columns: 1fr;
}
@media (min-width: 680px) {.service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
.pdf-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
.actions,
  .button {
    width: auto;
  }
.actions {
    grid-template-columns: repeat(3, minmax(0, 180px));
  }}
body:has(.user-hero) .user-hero img {
  width: min(74vw, 320px);
  max-height: 320px;
}
body:has(.user-hero) .service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 12px;
}
body:has(.user-hero) .service.service-icon {
  min-height: 0;
  aspect-ratio: auto;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
body:has(.user-hero) .service.service-icon img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: auto;
  object-fit: contain;
  filter: none;
}
body:has(.pdfs-page) {
  color: #ffffff;
}
body:has(.pdfs-page) .shell,
body:has(.apps-page) .shell {
  width: min(100%, 760px);
  padding-top: max(28px, env(safe-area-inset-top));
}
body:has(.apps-page) {
  color: #ffffff;
}
.pdfs-page {
  display: grid;
  gap: 74px;
  padding: 126px 0 24px;
}
.pdf-day {
  display: grid;
  gap: 12px;
}
.pdf-day[hidden],
.pdf-calendar-month[hidden] {
  display: none !important;
}
.pdf-calendar {
  display: grid;
  gap: 10px;
  border: 0;
  background: transparent;
}
.pdf-calendar-head {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
}
.pdf-calendar-head button {
  appearance: none;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  background: transparent;
  color: #f5c400;
  cursor: pointer;
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
}
.pdf-calendar-head button:disabled {
  color: rgba(255, 255, 255, .22);
  cursor: default;
}
.pdf-calendar-title {
  display: none;
  margin: 0;
  color: #f5c400;
  font-size: 22px;
  font-weight: 950;
  text-align: center;
}
.pdf-calendar-title.is-active {
  display: block;
}
.pdf-calendar-weekdays,
.pdf-calendar-month {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 6px;
}
.pdf-calendar-weekdays span {
  color: rgba(255, 255, 255, .72);
  font-size: 11px;
  font-weight: 900;
  text-align: center;
}
.pdf-calendar-day {
  appearance: none;
  position: relative;
  display: grid;
  min-width: 0;
  aspect-ratio: 1;
  place-items: center;
  border: 0;
  border-radius: 8px;
  background: rgba(0, 0, 0, .32);
  color: rgba(255, 255, 255, .38);
  font-size: 14px;
  font-weight: 900;
  padding: 0;
}
.pdf-calendar-day-number {
  position: absolute;
  top: 8px;
  left: 50%;
  line-height: 1;
  transform: translateX(-50%);
}
.pdf-calendar-day.has-pdfs {
  color: #ffffff;
  cursor: pointer;
}
.pdf-calendar-day.has-pdfs::after {
  content: none;
}
.pdf-calendar-count {
  position: absolute;
  bottom: 4px;
  left: 50%;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 999px;
  background: var(--pdf-day-accent, #f5c400);
  color: #111111;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  transform: translateX(-50%);
}
@media (max-width: 520px) {.pdf-calendar-day-number {
    top: 1px;
    font-size: 12px;
  }
.pdf-calendar-count {
    bottom: 3px;
    width: 16px;
    height: 16px;
    font-size: 9px;
  }}
.pdf-calendar-day.is-active {
  background: #f5c400;
  color: #111111;
}
.pdf-calendar-day.is-active .pdf-calendar-count {
  display: none;
}
.pdf-calendar-day:disabled {
  cursor: default;
}
.pdf-calendar-day.is-empty {
  background: transparent;
}
.pdfs-page .pdf-grid {
  gap: 12px;
}
.pdfs-page .pdf-card {
  grid-template-columns: 82px 1fr;
  border: 0;
  background: transparent;
  color: #ffffff;
  box-shadow: none;
  padding: 6px 0;
}
.pdfs-page .pdf-card img {
  background: #111111;
}
.pdfs-page .pdf-card strong {
  color: #ffffff;
}
.pdfs-page .pdf-card span {
  color: #ffffff;
  font-weight: 800;
}
.pdf-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 7px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 900;
}
.pdf-actions a {
  color: #ffffff;
}
.background-grid {
  display: grid;
  gap: 14px;
}
.background-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  border-top: 1px solid rgba(245, 196, 0, .28);
  padding-top: 14px;
}
.background-item img {
  width: 92px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid rgba(245, 196, 0, .42);
  border-radius: 8px;
  background: #050505;
}
.background-item-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.background-item-copy strong {
  overflow: hidden;
  color: #ffffff;
  font-size: 14px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.background-item-copy span {
  color: #f5c400;
  font-size: 12px;
}
.background-actions {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.background-actions form {
  margin: 0;
}
.mail-state {
  display: grid;
  place-items: center;
  width: 44px;
  height: 30px;
  color: #f87171;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}
.mail-state.has-mail {
  color: #4ade80;
  font-size: 16px;
}
.mail-state.no-mail {
  color: #f87171;
}
.vpn-state{
  display: grid;
  place-items: center;
  width: 44px;
  height: 30px;
  color: #f87171;
  font-size: 23px;
  font-weight: 950;
  line-height: 1;
}
.vpn-state.has-vpn{
  color: #4ade80;
  font-size: 16px;
}
.last-seen {
  color: #ffffff;
  font-size: 13px;
  text-align: right;
  white-space: nowrap;
}
.visit-sort-head {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  white-space: nowrap;
}
.visit-sort-head a {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(245, 196, 0, .45);
  border-radius: 8px;
  color: #ffffff;
  line-height: 1;
}
.visit-sort-head a.is-active {
  background: #f5c400;
  color: #050505;
}
@media (max-width: 390px) {.visit-sort-head {
    gap: 4px;
  }
.visit-sort-head a {
    width: 23px;
    height: 23px;
  }
.last-seen {
    font-size: 12px;
  }}
.apps-page {
  display: grid;
  gap: 72px;
  padding: 72px 0 30px;
}
.app-service {
  display: grid;
  justify-items: center;
  gap: 24px;
}
.app-service-head {
  display: grid;
  justify-items: center;
  gap: 6px;
  text-align: center;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.app-service-head::-webkit-details-marker {
  display: none;
}
.app-service-head img {
  display: block;
  width: min(52vw, 190px);
  max-height: 132px;
  object-fit: contain;
}
.app-service-head span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 196, 0, .72);
  border-radius: 8px;
  padding: 0 18px;
  color: #f5c400;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.app-service[open] .app-service-head span {
  background: #f5c400;
  color: #111111;
}
.app-access-section {
  display: grid;
  justify-items: center;
  gap: 14px;
}
.app-access-toggle {
  appearance: none;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(245, 196, 0, .72);
  border-radius: 8px;
  background: rgba(0, 0, 0, .36);
  color: #f5c400;
  padding: 0 18px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
}
.app-service-head .app-access-toggle {
  margin-top: 6px;
}
.app-access-toggle.is-active {
  background: #f5c400;
  color: #111111;
}
.app-access-panel {
  display: grid;
  width: 100%;
  gap: 10px;
  padding: 0;
  color: #ffffff;
  text-align: left;
}
.app-access-panel[hidden] {
  display: none !important;
}
.app-access-row {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 8px;
  align-items: center;
  min-height: 34px;
}
.app-access-row strong {
  color: #f5c400;
  font-size: 13px;
}
.app-access-row p {
  margin: 0;
  overflow-wrap: anywhere;
  font-weight: 800;
}
.app-access-row button {
  grid-column: 3;
  justify-self: end;
  min-height: 30px;
  border: 1px solid rgba(245, 196, 0, .72);
  border-radius: 8px;
  background: transparent;
  color: #f5c400;
  padding: 0 10px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}
.app-access-copy {
  grid-row: 2;
  margin-top: -4px;
}
.app-device-list {
  width: 100%;
  display: grid;
  gap: 18px;
  margin-top: 18px;
}
.app-device-card {
  display: grid;
  justify-items: center;
  gap: 10px;
  text-align: center;
  padding: 18px 10px;
  border-top: 1px solid rgba(245, 196, 0, .28);
}
.app-device-card h2 {
  margin: 0;
  color: #f5c400;
  font-size: 19px;
  font-weight: 900;
}
.app-logo {
  display: block;
  width: 86px;
  max-height: 86px;
  object-fit: contain;
}
.app-device-card strong {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.25;
  font-weight: 800;
}
.store-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}
.store-links a {
  display: block;
}
.store-links img {
  display: block;
  width: 122px;
  max-height: 42px;
  object-fit: contain;
}
.service-access-page {
  position: relative;
  z-index: 1;
  min-height: 100svh;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 22px;
  padding: 92px 0 92px;
}
.service-access-logo {
  display: block;
  width: min(50vw, 210px);
  max-height: 150px;
  object-fit: contain;
}
.service-access-card {
  width: min(100%, 430px);
  padding-top: 34px;
}
.service-page-wordmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #151515;
  font-size: clamp(2.9rem, 13vw, 5.5rem);
  font-weight: 950;
  letter-spacing: 0;
  line-height: .9;
  text-align: center;
}
.text-pressure {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: .04em;
  color: #b77900;
  line-height: .82;
  transform: translateZ(0);
}
.text-pressure > span {
  display: inline-block;
  min-width: .5em;
  color: inherit;
  font-weight: var(--pressure-weight, 260);
  transform-origin: 50% 70%;
  transform: scaleX(var(--pressure-x, .9)) scaleY(var(--pressure-y, .74));
  transition:
    transform 180ms ease,
    font-weight 180ms ease,
    text-shadow 180ms ease;
  will-change: transform;
}
.text-pressure.is-active > span {
  text-shadow:
    0 0 calc(8px * var(--pressure-force, 0)) rgba(183, 121, 0, .18),
    0 12px calc(22px * var(--pressure-force, 0)) rgba(183, 121, 0, .18);
}
@media (hover: none) {.text-pressure > span {
    animation: cloud-pressure-idle 2.8s ease-in-out infinite;
  }
.text-pressure > span:nth-child(2) {
    animation-delay: .08s;
  }
.text-pressure > span:nth-child(3) {
    animation-delay: .16s;
  }
.text-pressure > span:nth-child(4) {
    animation-delay: .24s;
  }
.text-pressure > span:nth-child(5) {
    animation-delay: .32s;
  }}
.service-access-details {
  display: grid;
  gap: 12px;
  margin-top: 8px;
}
.service-access-fields {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}
.service-access-field {
  display: grid;
  gap: 6px;
  text-align: left;
}
.service-access-field label {
  margin-left: 4px;
  color: var(--auth-accent);
  font-size: 12px;
  font-weight: 950;
  line-height: 1.2;
}
.service-access-copy-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  align-items: center;
  gap: 6px;
  overflow: visible;
  border: 1px solid rgba(17, 17, 17, .14);
  border-radius: 12px;
  background: rgba(255, 255, 255, .92);
  padding: 6px 6px 6px 10px;
}
.service-access-copy-field.is-static {
  grid-template-columns: minmax(0, 1fr);
  padding-right: 10px;
}
.service-access-copy-field p {
  min-width: 0;
  margin: 0;
  color: #111827;
  font: 400 13px/1.18 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  overflow-wrap: anywhere;
  word-break: normal;
  user-select: all;
}
.service-access-copy-button {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  justify-self: center;
  align-self: center;
  border: 0;
  border-radius: 10px;
  background: transparent;
  margin: 0;
  padding: 0;
  color: #4b5563;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.service-access-copy-button:active {
  transform: translateY(1px);
}
.service-access-copy-button .copy-icon,
.service-access-copy-button .check-icon {
  grid-area: 1 / 1;
  transition: opacity .18s ease, transform .18s ease;
}
.service-access-copy-button .copy-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
  stroke: none;
}
.service-access-copy-button .check-icon {
  width: 42px;
  height: 42px;
  color: #22c55e;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  opacity: 0;
  transform: scale(.7);
}
.service-access-copy-button.is-copied .copy-icon {
  opacity: 0;
  transform: scale(.7);
}
.service-access-copy-button.is-copied .check-icon {
  opacity: 1;
  transform: scale(1);
}
.service-access-row {
  display: grid;
  grid-template-columns: 86px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  text-align: left;
}
.service-access-row strong {
  color: var(--auth-accent);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.35;
}
.service-access-row p {
  margin: 0;
  color: #151515;
  overflow-wrap: anywhere;
  font-size: 15px;
  font-weight: 850;
  line-height: 1.35;
}
.service-access-note {
  margin: 16px 0 0;
  color: #4b4b4b;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}
.service-access-note.warning {
  color: #b91c1c;
}
.service-access-warning {
  position: relative;
  --warning-dash-color: rgba(124, 58, 237, .48);
  border: 0;
  border-radius: 12px;
  padding: 10px;
  background: rgba(255, 255, 255, .48);
  color: #151515 !important;
  font-size: 12px !important;
  font-weight: 500;
  line-height: 1.35;
  text-align: justify;
  text-align-last: left;
  hyphens: auto;
}
.service-access-warning::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 100 100'%3E%3Crect x='1' y='1' width='98' height='98' fill='none' stroke='%237c3aed' stroke-opacity='.48' stroke-width='1.5' stroke-dasharray='14 10' vector-effect='non-scaling-stroke'/%3E%3C/svg%3E");
}
.service-access-enter {
  margin-top: 18px;
  text-decoration: none;
  justify-self: center;
  width: min(100%, 300px);
}
@media (max-width: 420px) {.app-logo {
    width: 74px;
    max-height: 74px;
  }
.store-links img {
    width: 112px;
  }
.service-access-row {
    grid-template-columns: 72px minmax(0, 1fr);
  }}
.home-footer {
  position: relative;
  z-index: 51;
  display: grid;
  justify-items: center;
  gap: 8px;
  padding: 26px 0 4px;
}
.home-footer-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  width: 100%;
}
body:has(.home-stagger-menu) .home-footer-actions .home-logout {
  display: none;
}
.install-app-button {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  max-width: min(46vw, 260px);
  height: 156px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.install-app-button[hidden] {
  display: none;
}
.install-app-button img {
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}
.home-logout {
  width: 156px;
  height: 156px;
}
.home-logout button {
  appearance: none;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}
.home-logout img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
:root {
  --bg: #ffffff;
  --panel: rgba(255, 255, 255, .84);
  --panel-2: rgba(255, 248, 223, .86);
  --line: rgba(183, 121, 0, .26);
  --text: #151515;
  --muted: #5f5f5f;
  --dot: rgba(17, 17, 17, .14);
}
html,
body,
body:has(.hero),
body:has(.user-hero),
body:has(.pdfs-page),
body:has(.apps-page),
body:has(.elito-page),
body:has(.service-access-page){
  background-color: #ffffff !important;
  background-image: none !important;
  background-size: 18px 18px !important;
  background-position: 0 0 !important;
  color: var(--text) !important;
}
.dot-field-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
body:has(.hero)::before,
body:has(.hero)::after,
body:has(.user-hero)::before,
body:has(.user-hero)::after,
body:has(.pdfs-page)::before,
body:has(.pdfs-page)::after,
body:has(.apps-page)::before,
body:has(.apps-page)::after,
body:has(.elito-page)::before,
body:has(.elito-page)::after,
body:has(.service-access-page)::before,
body:has(.service-access-page)::after {
  content: none !important;
  display: none !important;
}
.auth-card,
.email-modal-card{
  background: rgba(255, 255, 255, .92) !important;
  color: var(--text) !important;
  box-shadow:
    0 0 0 1px rgba(17, 17, 17, .05) inset,
    0 18px 52px rgba(15, 15, 15, .1) !important;
}
.auth-badge {
  background: rgba(255, 255, 255, .94);
}
.auth-copy p,
.password-strength,
.auth-switch,
.auth-switch span,
.copyright,
body:has(.hero) .copyright,
.home-footer .copyright {
  color: #4b4b4b !important;
}
.auth-form input{
  border-color: rgba(17, 17, 17, .14) !important;
  background: rgba(255, 255, 255, .92) !important;
  color: #151515 !important;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .06) !important;
}
.auth-form input::placeholder{
  color: #747474 !important;
}
.auth-switch a {
  color: #151515;
}
.auth-switch a.is-active,
.auth-copy h1,
.strip h2,
.panel h2,
.app-device-card h2,
.app-access-row strong {
  color: #b77900 !important;
}
.live-strip h2 {
  color: #f97316 !important;
}
.pdf-strip h2 {
  color: #16a34a !important;
}
.home-rotating-title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  width: min(100%, 760px);
  margin: 6px auto 10px;
  color: #151515;
  font-size: clamp(1.35rem, 5.5vw, 2.35rem);
  font-weight: 950;
  line-height: 1.05;
  text-align: center;
}
.home-rotating-title > span {
  display: inline-block;
}
.home-rotating-button {
  appearance: none;
  position: relative;
  display: inline-grid;
  min-width: min(100%, 230px);
  min-height: 44px;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 8px;
  background: var(--rotate-color, #7c3aed);
  color: #ffffff;
  font: inherit;
  font-weight: 950;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
  transition: background .28s ease;
}
.home-rotating-button span {
  grid-area: 1 / 1;
  display: inline-flex;
  width: 100%;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 7px 14px 8px;
  border-radius: 8px;
  background: transparent;
  opacity: 0;
  transform: translateY(110%) rotateX(-38deg);
  transform-origin: 50% 100%;
  transition:
    opacity .34s ease,
    transform .44s cubic-bezier(.2, .8, .2, 1);
  white-space: nowrap;
}
.home-rotating-button span.is-active {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}
.home-rotating-button span.is-leaving {
  opacity: 0;
  transform: translateY(-110%) rotateX(38deg);
}
.home-rotating-button:focus-visible {
  outline: 2px solid rgba(17, 17, 17, .34);
  outline-offset: 3px;
}
@media (max-width: 760px) {.home-rotating-title {
    display: flex;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 6px;
    justify-content: center;
    text-align: center;
    width: 100%;
    max-width: 100%;
    padding-inline: 2px;
    font-size: clamp(1.05rem, 4.9vw, 1.32rem);
    line-height: 1;
    white-space: nowrap !important;
    overflow: hidden;
  }
.home-rotating-title > span {
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap !important;
  }
.home-rotating-button {
    flex: 0 0 clamp(148px, 45vw, 190px);
    width: clamp(148px, 45vw, 190px);
    min-width: 0;
    max-width: none;
    min-height: 40px;
    font-size: clamp(.82rem, 3.75vw, 1.05rem);
  }
.home-rotating-button span {
    min-height: 40px;
    padding: 6px 10px 7px;
    white-space: nowrap !important;
  }}
@media (max-width: 380px) {.home-rotating-title {
    gap: 5px;
    font-size: clamp(.98rem, 4.55vw, 1.12rem);
  }
.home-rotating-button {
    flex-basis: clamp(136px, 43vw, 164px);
    width: clamp(136px, 43vw, 164px);
    min-height: 38px;
    font-size: clamp(.76rem, 3.35vw, .92rem);
  }
.home-rotating-button span {
    min-height: 38px;
    padding-inline: 8px;
  }}
body:has(.user-hero),
body:has(.user-hero) .shell,
body:has(.user-hero) main {
  max-width: 100vw;
  overflow-x: hidden;
  overscroll-behavior-x: none;
}
.password-strength li.is-ok,
.cover span,
.cover small,
.live-panel,
.live-head strong,
.live-copy p,
.live-copy small,
.pdfs-page .pdf-card,
.pdfs-page .pdf-card strong,
.pdfs-page .pdf-card span,
.pdf-actions,
.pdf-actions a,
.background-item-copy strong,
.last-seen,
.visit-sort-head a,
.app-access-panel,
.app-device-card strong {
  color: #151515 !important;
}
.strip,
.panel,
.live-panel,
.pdf-calendar,
.app-service,
.app-access-panel {
  background: transparent;
}
.pdf-calendar-day {
  background: rgba(255, 255, 255, .72) !important;
  color: #9a9a9a !important;
  border: 1px solid rgba(183, 121, 0, .12);
}
.pdf-calendar-day.has-pdfs {
  color: #151515 !important;
}
.pdf-calendar-day.is-active {
  background: #f5c400 !important;
  color: #111111 !important;
}
.pdfs-page .pdf-card{
  background: rgba(255, 255, 255, .74) !important;
  border-color: rgba(183, 121, 0, .18) !important;
}
.pdfs-page .pdf-card img,
.cover img,
.blank-cover,
.background-item img {
  background: rgba(255, 255, 255, .86) !important;
}
.home-stack-strip .rail {
  height: 226px !important;
  overflow: visible !important;
}
.home-stack-strip .cover {
  display: block !important;
  width: 160px !important;
  max-width: 160px !important;
  gap: 0 !important;
}
.home-stack-strip .cover img,
.home-stack-strip .cover .blank-cover {
  display: block !important;
  width: 160px !important;
  height: 213px !important;
  max-width: 160px !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  box-shadow:
    0 14px 24px rgba(0, 0, 0, .11),
    0 0 0 1px rgba(255, 255, 255, .54) !important;
}
.home-stack-strip .cover span,
.home-stack-strip .cover small {
  display: none !important;
}
.home-stack-strip .stack-caption {
  width: min(94vw, 720px) !important;
  margin-top: 2px !important;
}
.home-stack-strip .stack-caption strong {
  display: block !important;
  width: 100% !important;
  color: #111111 !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  text-align: center !important;
}
.home-stack-strip .stack-caption small {
  display: block !important;
  width: 100% !important;
  color: #111111 !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  text-align: center !important;
}

.background-item-copy span {
  color: #8a6500 !important;
}
.visit-sort-head a {
  background: rgba(255, 255, 255, .74);
}
.visit-sort-head a.is-active {
  background: #f5c400;
  color: #111111 !important;
}
.app-access-toggle {
  background: rgba(255, 255, 255, .78);
  color: #b77900;
}
.app-device-card {
  border-top-color: rgba(183, 121, 0, .22);
}
.auth-card,
#email-modal .email-modal-card,
#password-modal .email-modal-card {
  isolation: isolate;
  overflow: visible;
  --auth-accent: #eab308;
  --auth-accent-strong: #b77900;
  --border-glow-x: 50%;
  --border-glow-y: 0%;
  --border-glow-px: 50%;
  --border-glow-py: 0%;
  --border-glow-opacity: 0;
  --border-glow-rgb: 17, 17, 17;
  border-color: rgba(17, 17, 17, .14) !important;
}
.auth-card[data-auth-mode="login"] {
  --auth-accent: #eab308;
  --auth-accent-strong: #b77900;
}
.auth-card[data-auth-mode="register"] {
  --auth-accent: #f97316;
  --auth-accent-strong: #c2410c;
}
.auth-card[data-auth-mode="recover"] {
  --auth-accent: #ef4444;
  --auth-accent-strong: #b91c1c;
}
.auth-card > :not(.auth-badge),
#email-modal .email-modal-card > :not(.auth-badge),
#password-modal .email-modal-card > :not(.auth-badge) {
  position: relative;
  z-index: 1;
}
.auth-glow-overlay {
  position: fixed;
  inset: 0;
  z-index: 90;
  pointer-events: none;
}
.auth-card::before,
.auth-card::after,
#email-modal .email-modal-card::before,
#email-modal .email-modal-card::after,
#password-modal .email-modal-card::before,
#password-modal .email-modal-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  pointer-events: none;
  display: none;
}
.auth-card::before,
#email-modal .email-modal-card::before,
#password-modal .email-modal-card::before {
  z-index: 0;
  border: 2px solid transparent;
  background:
    radial-gradient(
      120px circle at var(--border-glow-x) var(--border-glow-y),
      rgba(255, 255, 255, .96) 0 8%,
      rgba(var(--border-glow-rgb), .98) 16%,
      rgba(var(--border-glow-rgb), .72) 31%,
      transparent 54%
    )
    border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: blur(10px);
  opacity: calc(var(--border-glow-opacity) * .66);
  transition: opacity .18s ease;
}
.auth-card::after,
#email-modal .email-modal-card::after,
#password-modal .email-modal-card::after {
  z-index: 0;
  border: 1px solid transparent;
  background:
    radial-gradient(
      100px circle at var(--border-glow-x) var(--border-glow-y),
      rgba(255, 255, 255, .98) 0 7%,
      rgba(var(--border-glow-rgb), 1) 15%,
      rgba(var(--border-glow-rgb), .82) 30%,
      transparent 54%
    )
    border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: var(--border-glow-opacity);
  transition: opacity .18s ease;
}
.auth-card .auth-form input,
#email-modal .auth-form input,
#password-modal .auth-form input {
  background: rgba(255, 255, 255, .94) !important;
  border-color: rgba(17, 17, 17, .14) !important;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .06) !important;
}
.auth-card .auth-form .button.primary,
#email-modal .auth-form .button.primary,
#password-modal .auth-form .button.primary {
  background: var(--auth-accent) !important;
  border-color: var(--auth-accent) !important;
  color: #111111 !important;
  box-shadow: 0 12px 24px rgba(15, 15, 15, .08) !important;
}
.auth-card .auth-badge,
#email-modal .auth-badge,
#password-modal .auth-badge {
  position: absolute;
  z-index: 3;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  --badge-glow-x: 50%;
  --badge-glow-y: 50%;
  border-color: rgba(17, 17, 17, .14) !important;
  box-shadow:
    0 0 0 1px rgba(17, 17, 17, .08) inset,
    0 10px 24px rgba(15, 15, 15, .06);
}
.auth-card .auth-badge svg,
#email-modal .auth-badge svg,
#password-modal .auth-badge svg {
  position: relative;
  z-index: 1;
  stroke: rgba(17, 17, 17, .62) !important;
}
.auth-card .auth-badge::before,
.auth-card .auth-badge::after,
#email-modal .auth-badge::before,
#email-modal .auth-badge::after,
#password-modal .auth-badge::before,
#password-modal .auth-badge::after {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  pointer-events: none;
  display: none;
}
.auth-card .auth-badge::before,
#email-modal .auth-badge::before,
#password-modal .auth-badge::before {
  z-index: -1;
  border: 2px solid transparent;
  background:
    radial-gradient(
      110px circle at var(--badge-glow-x) var(--badge-glow-y),
      rgba(255, 255, 255, .95) 0 8%,
      rgba(var(--border-glow-rgb), .98) 17%,
      rgba(var(--border-glow-rgb), .7) 34%,
      transparent 58%
    )
    border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  filter: blur(7px);
  opacity: calc(var(--border-glow-opacity) * .82);
}
.auth-card .auth-badge::after,
#email-modal .auth-badge::after,
#password-modal .auth-badge::after {
  z-index: 0;
  border: 1px solid transparent;
  background:
    radial-gradient(
      92px circle at var(--badge-glow-x) var(--badge-glow-y),
      rgba(255, 255, 255, .98) 0 8%,
      rgba(var(--border-glow-rgb), 1) 17%,
      rgba(var(--border-glow-rgb), .76) 34%,
      transparent 58%
    )
    border-box;
  -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
  mask-composite: exclude;
  opacity: calc(var(--border-glow-opacity) * .78);
}
.auth-card[data-auth-mode] .auth-copy h1,
.auth-card[data-auth-mode] .auth-switch a.is-active {
  color: var(--auth-accent-strong) !important;
}
.pdfs-page .pdf-calendar {
  position: relative;
  isolation: isolate;
  overflow: visible;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, .34);
  border-radius: 18px;
  background: rgba(255, 255, 255, .045) !important;
  backdrop-filter: blur(5px) saturate(1.08);
  -webkit-backdrop-filter: blur(5px) saturate(1.08);
  box-shadow:
    0 18px 42px rgba(17, 24, 39, .1),
    inset 0 1px 0 rgba(255, 255, 255, .48),
    inset 0 -1px 0 rgba(255, 255, 255, .1),
    inset 0 0 16px 6px rgba(255, 255, 255, .22);
}
.pdfs-page .pdf-calendar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 18px;
  right: 18px;
  z-index: 0;
  height: 1px;
  border-radius: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .72), transparent);
  pointer-events: none;
}
.pdfs-page .pdf-calendar::after {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  z-index: 0;
  width: 1px;
  height: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), transparent, rgba(255, 255, 255, .24));
  pointer-events: none;
}
.pdf-calendar-shell {
  position: relative;
  display: grid;
  justify-items: center;
  width: 100%;
  margin-top: 24px;
  margin-bottom: 34px;
  overflow: visible;
}
.pdf-calendar-shell .pdf-calendar {
  z-index: 2;
  width: min(100%, 760px);
}
.pdf-calendar-shell .pdf-calendar > * {
  position: relative;
  z-index: 1;
}
.pdf-calendar-logo {
  display: block;
  width: min(100%, 620px);
  margin: 0 auto 10px;
}
.pdf-calendar-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.pdfs-page .pdf-calendar-title.is-active {
  color: #151515 !important;
}
.pdfs-page .pdf-calendar-head button {
  color: #151515;
}
.pdfs-page .pdf-calendar-weekdays span {
  color: #5f5f5f !important;
}
.pdfs-page .pdf-calendar-day {
  background: rgba(255, 255, 255, .56) !important;
  border-color: rgba(17, 17, 17, .12) !important;
}
.pdfs-page .pdf-calendar-day.is-active {
  border-color: var(--pdf-day-accent, #f5c400) !important;
  background: var(--pdf-day-accent, #f5c400) !important;
  color: #111111 !important;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .12);
}
.pdfs-page .pdf-calendar-day.has-pdfs::after {
  content: none !important;
}
.pdfs-page .pdf-calendar-day.is-active::after {
  content: none !important;
}
.pdfs-page .pdf-calendar-count {
  background: var(--pdf-day-accent, #f5c400) !important;
}
.pdfs-page .pdf-card,
.pdfs-page .pdf-card img {
  background: transparent !important;
}
.pdfs-page .pdf-card {
  border-color: transparent !important;
  box-shadow: none !important;
}
html.elito-open,
body.elito-open {
  overflow: auto !important;
  height: auto !important;
  touch-action: auto !important;
}
.elito-modal:target {
  display: grid;
  place-items: stretch;
  pointer-events: none;
}
.elito-modal:target .email-modal-backdrop {
  display: none;
}
.elito-modal:target .elito-card {
  pointer-events: auto;
}
.elito-card {
  position: fixed !important;
  top: max(72px, env(safe-area-inset-top)) !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  left: 50% !important;
  right: auto !important;
  z-index: 55;
  width: min(100% - 32px, 760px) !important;
  height: auto !important;
  min-height: 0 !important;
  max-width: 760px;
  margin: 0 !important;
  padding: 0 0 10px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  transform: translateX(-50%);
}
.elito-close-arrow {
  display: none !important;
}
.elito-chat-log {
  width: 100%;
  min-height: 0;
  padding: 8px 0 16px;
}
.elito-chat-form {
  width: 100%;
  padding: 10px 0 0;
}
.elito-page {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  height: calc(100svh - 42px);
  min-height: 0;
  padding: max(8px, env(safe-area-inset-top)) 0 max(10px, env(safe-area-inset-bottom));
  overflow: hidden;
}
.elito-page .elito-chat-log {
  display: flex;
  flex-direction: column;
  align-content: unset;
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  padding: calc(76px + env(safe-area-inset-top)) 0 16px;
  scroll-padding-top: calc(76px + env(safe-area-inset-top));
  scroll-behavior: smooth;
}
.elito-page .elito-chat-log::before {
  content: "";
  margin-top: auto;
}
.elito-page .elito-chat-log.is-empty {
  align-content: unset;
}
.elito-page .elito-chat-form {
  padding: 10px 0 0;
}
.elito-page .elito-message.assistant {
  border-color: rgba(17, 17, 17, .18);
  background: rgba(0, 0, 0, .58);
  color: #ffffff;
}
.elito-page .elito-message.user {
  border-color: rgba(236, 72, 153, .38);
  background: rgba(236, 72, 153, .82);
  color: #ffffff;
}
.elito-page .elito-message a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.elito-page .elito-chat-form {
  grid-template-columns: minmax(0, 1fr) 72px;
  align-items: center;
  gap: 8px;
}
.elito-page .elito-chat-form textarea {
  min-height: 48px;
  height: 48px;
  border-color: rgba(17, 17, 17, .14);
  background: rgba(255, 255, 255, .94);
  color: #151515;
  padding: 12px 14px;
  line-height: 1.35;
  overflow-y: hidden;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .06);
}
.elito-page .elito-chat-form textarea::placeholder {
  color: #747474;
}
.elito-page .elito-chat-form textarea:focus {
  border-color: rgba(17, 17, 17, .32);
  box-shadow: 0 0 0 1px rgba(17, 17, 17, .08);
}
.elito-page .elito-send {
  width: 64px;
  height: 48px;
  align-self: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #151515;
  box-shadow: none;
}
.elito-page .elito-send svg {
  width: 46px;
  height: 46px;
  stroke-width: 0;
}
.elito-page .elito-send .send-tone-dark {
  fill: #be185d;
}
.elito-page .elito-send .send-tone-mid {
  fill: #db2777;
}
.elito-page .elito-send .send-tone-light {
  fill: #f9a8d4;
}
.elito-page .elito-send .send-tone-soft {
  fill: #f472b6;
}
.elito-page .elito-send .send-tone-bright {
  fill: #ec4899;
}
.elito-options {
  position: fixed;
  top: max(6px, calc(env(safe-area-inset-top) + 6px));
  left: max(12px, env(safe-area-inset-left));
  right: auto;
  z-index: 119;
}
body:has(.elito-page) .home-corner-actions ~ .elito-options {
  left: max(172px, calc(env(safe-area-inset-left) + 172px));
}
.home-stagger-menu.is-open + .elito-options {
  opacity: 0;
  pointer-events: none;
}
.elito-options-button {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, .76);
  color: #ec4899;
  box-shadow: 0 10px 24px rgba(15, 15, 15, .08);
  cursor: pointer;
}
.elito-options-button svg {
  width: 27px;
  height: 27px;
  fill: currentColor;
}
.elito-options-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: auto;
  min-width: 166px;
  padding: 8px;
  border: 1px solid rgba(236, 72, 153, .28);
  border-radius: 12px;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 18px 34px rgba(15, 15, 15, .12);
}
.elito-options-menu[hidden] {
  display: none;
}
.elito-options-menu button {
  width: 100%;
  min-height: 38px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: #be185d;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}
.elito-options-menu button:hover {
  background: rgba(236, 72, 153, .1);
}
.visit-sort-head a {
  border-color: var(--admin-neutral-line) !important;
  background: rgba(255, 255, 255, .82) !important;
  color: var(--admin-neutral) !important;
}
.visit-sort-head a.is-active {
  background: var(--admin-neutral) !important;
  color: #ffffff !important;
}
.elito-page .elito-send svg path {
  fill: #111111;
  stroke: none;
}
body:has(.hero:not(.reset-hero)),
body:has(.account-password-page) {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden !important;
  overscroll-behavior: none;
}
html:has(.hero:not(.reset-hero)),
html:has(.account-password-page),
html.login-scroll-lock,
html.email-scroll-lock,
html.password-scroll-lock,
html.login-scroll-lock body,
html.email-scroll-lock body,
html.password-scroll-lock body {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
}
body:has(.hero:not(.reset-hero)) .shell,
body:has(.account-password-page) .shell {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden !important;
}
body:has(.hero:not(.reset-hero)) .hero {
  min-height: calc(100svh - max(16px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom)));
  overflow: hidden;
}

body:has(.account-password-page) .account-auth-page {
  min-height: calc(100svh - max(16px, env(safe-area-inset-top)) - max(24px, env(safe-area-inset-bottom)));
  overflow: hidden;
}
@media (max-height: 760px) {.sms-login-button {
    min-height: 38px;
  }
body:has(.hero:not(.reset-hero)) .hero {
    justify-content: center;
  }
body:has(.hero:not(.reset-hero)) .login-panda,
  body:has(.account-password-page) .login-panda {
    width: clamp(92px, 26vw, 120px);
    height: clamp(92px, 26vw, 120px);
    margin-bottom: -40px;
  }
body:has(.hero:not(.reset-hero)) .auth-card,
  body:has(.account-password-page) .auth-card {
    padding-top: 44px;
    padding-bottom: 16px;
  }
body:has(.hero:not(.reset-hero)) .auth-form {
    gap: 8px;
  }
body:has(.account-password-page) .auth-form {
    gap: 8px;
  }
body:has(.hero:not(.reset-hero)) input {
    min-height: 44px;
  }
body:has(.account-password-page) input {
    min-height: 42px;
  }
body:has(.hero:not(.reset-hero)) .auth-form .button.primary {
    min-height: 50px;
  }
body:has(.account-password-page) .auth-form .button.primary {
    min-height: 48px;
  }
body:has(.account-password-page) .password-strength {
    gap: 5px;
    font-size: 11px;
  }
body:has(.account-password-page) .password-strength ul {
    gap: 3px 8px;
  }
body:has(.hero:not(.reset-hero)) .auth-switch {
    margin-top: 10px;
  }
body:has(.hero:not(.reset-hero)) .copyright {
    margin-top: 8px;
  }}
html:has(.elito-page),
html.elito-scroll-lock,
html.elito-scroll-lock body,
html.elito-scroll-lock.elito-open,
html.elito-scroll-lock body.elito-open {
  width: 100%;
  height: 100%;
  overflow: hidden !important;
  overscroll-behavior: none;
  touch-action: none;
}
body:has(.elito-page) {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100svh;
  overflow: hidden !important;
  overscroll-behavior: none;
}
body:has(.elito-page) .shell {
  height: 100svh;
  min-height: 100svh;
  overflow: hidden !important;
}
body:has(.elito-page) .elito-page {
  height: 100svh;
  min-height: 0;
  overflow: hidden;
}
body:has(.elito-page) .elito-chat-log {
  min-height: 0;
  max-height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
}
body:has(.elito-page) .elito-chat-form textarea {
  touch-action: pan-y;
}
.request-tile {
  display: grid;
  align-content: start;
  justify-items: center;
  min-width: 0;
  width: 100%;
  text-align: center;
}
.request-poster {
  position: relative;
  display: grid;
  width: min(100%, 420px);
  aspect-ratio: 2 / 3;
  overflow: hidden;
  place-items: center;
  border-radius: 7px;
  background: linear-gradient(145deg, rgba(160, 119, 225, .18), rgba(83, 34, 151, .08));
  color: var(--requests-accent-strong);
  font-size: clamp(2rem, 8vw, 4rem);
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(17, 24, 39, .11);
  touch-action: manipulation;
}
.request-poster > img:not(.request-like-burst) {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.request-like-burst {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  display: block;
  width: clamp(92px, 22vw, 180px);
  height: clamp(92px, 22vw, 180px);
  object-fit: contain;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.2);
  transform-origin: center;
  animation: request-heart-pop 1s cubic-bezier(.2, .86, .25, 1) forwards;
}
@keyframes request-heart-pop {
  0% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(.2);
  }
  22% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.24);
  }
  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.62);
  }
}
.request-delete {
  position: absolute;
  top: 7px;
  right: 7px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1.5px solid #ef4444;
  border-radius: 50%;
  background: rgba(21, 21, 21, .72);
  color: #ef4444;
  font: 500 25px/1 Arial, sans-serif;
  cursor: pointer;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.request-heading {
  display: flex;
  width: min(100%, 420px);
  min-width: 0;
  align-items: baseline;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 15px;
  text-align: left;
  white-space: nowrap;
}
.request-tile h3 {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  margin: 0;
  color: #151515;
  font-size: 20px;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.request-creator {
  max-width: 32%;
  flex: 0 1 auto;
  overflow: hidden;
  margin: 0;
  color: #111111;
  font-size: 14px;
  line-height: 1.3;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.request-meta {
  flex: 0 0 auto;
  margin: 0;
  color: #111111;
  font-size: 14px;
  white-space: nowrap;
}
.request-heading.is-long h3 {
  font-size: 17px;
}
.request-heading.is-long .request-meta,
.request-heading.is-long .request-creator {
  font-size: 12px;
}
.request-heading.is-very-long h3 {
  font-size: 15px;
}
.request-heading.is-very-long .request-meta,
.request-heading.is-very-long .request-creator {
  font-size: 11px;
}
.request-social {
  display: flex;
  width: min(100%, 420px);
  min-width: 0;
  min-height: 46px;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 8px;
}
.request-like {
  display: inline-flex;
  min-width: 0;
  min-height: 36px;
  flex: 0 0 auto;
  align-items: center;
  justify-self: center;
  justify-content: center;
  gap: 6px;
  margin: 0;
  border: 0;
  background: transparent;
  color: #111111;
  font: inherit;
  font-size: 13px;
  font-weight: 900;
  cursor: pointer;
}
.request-like-icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  filter: grayscale(1);
  opacity: .58;
  transition: filter .18s ease, opacity .18s ease, transform .18s ease;
}
.request-like > span:last-child {
  margin-left: -2px;
  font-size: 13px;
  font-weight: 750;
}
.request-like.is-liked .request-like-icon {
  filter: none;
  opacity: 1;
  transform: scale(1.06);
}
.request-liker-avatars {
  display: flex;
  width: max-content;
  max-width: calc(100% - 92px);
  align-items: center;
  flex: 0 1 auto;
  min-width: 0;
  overflow: visible;
  padding-left: 5px;
  white-space: nowrap;
}
.request-liker-avatar {
  --request-avatar-size: 42px;
  position: relative;
  display: grid;
  width: var(--request-avatar-size);
  min-width: var(--request-avatar-size);
  max-width: var(--request-avatar-size);
  height: var(--request-avatar-size);
  min-height: var(--request-avatar-size);
  max-height: var(--request-avatar-size);
  aspect-ratio: 1 / 1;
  flex: 0 0 var(--request-avatar-size);
  overflow: hidden;
  place-items: center;
  margin-left: -9px;
  border: 2px solid rgba(255, 255, 255, .92);
  border-radius: 50%;
  background: linear-gradient(145deg, #303642, #6b7280);
  color: #ffffff;
  font-size: 14px;
  font-weight: 850;
  box-shadow: none;
}
.request-liker-avatar:first-child {
  margin-left: 0;
}
.request-liker-avatar:nth-child(1) { z-index: 6; }
.request-liker-avatar:nth-child(2) { z-index: 5; }
.request-liker-avatar:nth-child(3) { z-index: 4; }
.request-liker-avatar:nth-child(4) { z-index: 3; }
.request-liker-avatar:nth-child(5) { z-index: 2; }
.request-liker-avatar:nth-child(6) { z-index: 1; }
.request-liker-avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 50%;
  object-fit: cover;
}
.request-liker-more {
  background: #27272a;
  font-size: 11px;
}
.tmdb-attribution {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
  padding-top: 15px;
  border-top: 1px solid rgba(17, 17, 17, .09);
}
.tmdb-attribution img {
  width: 66px;
  height: auto;
}
.tmdb-attribution p {
  margin: 0;
  color: #111111;
  font-size: 10px;
  line-height: 1.25;
  text-align: left;
}
@media (max-width: 620px) {.request-poster {
    width: min(76vw, 320px);
  }
.request-heading {
    width: min(76vw, 320px);
    gap: 6px;
  }
.request-tile h3 {
    font-size: 13px;
  }
.request-meta,
  .request-creator {
    font-size: 10px;
  }
.request-heading.is-long h3,
  .request-heading.is-very-long h3 {
    font-size: 11px;
  }
.request-heading.is-long .request-meta,
  .request-heading.is-long .request-creator,
  .request-heading.is-very-long .request-meta,
  .request-heading.is-very-long .request-creator {
    font-size: 9px;
  }
.request-social {
    min-width: 0;
    max-width: 100%;
    gap: 5px;
  }
.request-liker-avatar {
    --request-avatar-size: 32px;
    margin-left: -8px;
  }
.request-like {
    min-width: 82px;
    gap: 4px;
    font-size: 12px;
  }
.request-like-icon {
    width: 21px;
    height: 21px;
  }
.request-like > span:last-child {
    font-size: 11px;
  }
.request-creator {
    max-width: 32%;
  }}
@media (max-width: 370px) {.request-poster {
    width: min(78vw, 280px);
  }}
@media (max-width: 520px) {.pdfs-page {
    gap: 84px;
    padding-top: 142px;
  }
.pdf-calendar-shell {
    margin-top: 28px;
    margin-bottom: 42px;
  }
.pdf-calendar-shell {
    overflow: visible;
  }
.pdf-calendar-logo {
    width: 100%;
    margin-bottom: 8px;
  }}
.auth-card.service-glass-card {
  position: relative;
  z-index: 2;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, .34) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, .045) !important;
  backdrop-filter: blur(5px) saturate(1.08) !important;
  -webkit-backdrop-filter: blur(5px) saturate(1.08) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    inset 0 -1px 0 rgba(255, 255, 255, .1),
    inset 0 0 16px 6px rgba(255, 255, 255, .22) !important;
}
.live-card-logo {
  display: block;
  width: min(100%, 390px);
  margin: 0 auto 14px;
}
.live-card-logo img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}
.live-access-page .live-service-card {
  --auth-accent: #f97316;
  --auth-accent-strong: #ea580c;
  position: relative;
  z-index: 2;
  width: min(calc(100vw - 32px), 430px);
  max-width: 430px;
  max-height: none;
  margin-inline: auto;
  padding: 24px 18px 20px;
  overflow: visible;
  overscroll-behavior: auto;
}
.live-access-page .live-logo-wrap img {
  width: clamp(112px, 30vw, 150px);
  max-height: 150px;
}
.live-access-page .live-copy {
  align-content: center;
  text-align: left;
}
.live-access-page .live-head strong,
.live-access-page .live-copy p,
.live-access-page .live-copy small {
  color: #151515 !important;
}
.live-access-page .live-head strong {
  font-size: 18px;
}
body.passkey-confirm-open {
  overflow: hidden;
}
.passkey-confirm-modal[hidden] {
  display: none;
}
.passkey-confirm-modal {
  position: fixed;
  z-index: 1800;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
}
.passkey-confirm-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(255, 255, 255, .68);
  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);
}
.passkey-confirm-card {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  width: min(100%, 380px);
  padding: 28px;
  border: 1px solid rgba(146, 64, 14, .28);
  border-radius: 8px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 18px 55px rgba(15, 15, 15, .16);
  color: #111111;
  text-align: center;
}
.passkey-confirm-card h2,
.passkey-confirm-card p,
.passkey-confirm-card strong {
  margin: 0;
}
.passkey-confirm-card h2 {
  color: #92400e;
  font-size: 22px;
}
.passkey-confirm-card p {
  color: #444444;
  font-size: 14px;
}
.passkey-confirm-card > strong {
  font-size: 15px;
}
.passkey-confirm-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 5px;
}
.passkey-confirm-actions button {
  min-height: 46px;
  border: 1px solid rgba(17, 17, 17, .18);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: #111111;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.passkey-confirm-actions button.is-danger {
  border-color: rgba(220, 38, 38, .55);
  color: #dc2626;
}
.password-current-panel,
.password-sms-panel,
.password-sms-code {
  display: grid;
  gap: 9px;
}
.password-current-panel[hidden],
.password-sms-panel[hidden],
.password-sms-code[hidden] {
  display: none !important;
}
.password-sms-panel {
  padding: 12px;
  border: 1px solid rgba(239, 68, 68, .22);
  border-radius: 8px;
  background: rgba(255, 255, 255, .5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.password-sms-panel p {
  margin: 0;
  color: #303030;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.password-sms-switch {
  min-height: 30px;
  border: 0;
  background: transparent;
  color: #dc2626;
  padding: 2px 4px;
  font: inherit;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}
.password-sms-action {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(239, 68, 68, .34);
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  color: #dc2626;
  font: inherit;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.password-sms-action[hidden] {
  display: none !important;
}
.password-sms-code input {
  width: 100%;
}
.live-access-page .live-playlist-access-field {
  --service-label-width: 112px;
  gap: 0;
}
.live-access-page .live-playlist-access-field label {
  position: relative;
  z-index: 2;
  justify-self: start;
  margin: 0 0 -1px 0;
  padding: 5px 12px 4px;
  border: 1px solid rgba(255, 255, 255, .42);
  border-bottom: 0;
  border-radius: 12px 12px 0 0;
  background: rgba(242, 243, 245, .78);
  color: #111 !important;
  backdrop-filter: blur(5px) saturate(1.06);
  -webkit-backdrop-filter: blur(5px) saturate(1.06);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .48),
    0 5px 12px rgba(17, 24, 39, .04);
  line-height: 1;
}
@media (max-width: 520px) {body:has(.live-access-page) .shell {
    padding-inline: 12px;
  }
.live-access-page .live-service-card {
    width: 100%;
    max-height: none;
  }
.live-card-logo {
    width: min(100%, 370px);
    margin-bottom: 12px;
  }
.live-access-page .live-logo-wrap img {
    width: clamp(100px, 29vw, 126px);
    max-height: 126px;
  }}
@media (max-width: 520px) {html:has(.hero:not(.reset-hero)),
  html:has(.reset-hero),
  html:has(.account-password-page),
  html.login-scroll-lock,
  html.password-scroll-lock,
  html.login-scroll-lock body,
  html.password-scroll-lock body {
    height: auto !important;
    min-height: 100% !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
  }
body:has(.hero:not(.reset-hero)),
  body:has(.reset-hero),
  body:has(.account-password-page) {
    position: relative !important;
    inset: auto !important;
    height: auto !important;
    min-height: 100svh !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    overscroll-behavior-y: auto !important;
  }
body:has(.hero:not(.reset-hero)) .shell,
  body:has(.reset-hero) .shell,
  body:has(.account-password-page) .shell {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
  }
body:has(.hero:not(.reset-hero)) .hero,
  body:has(.reset-hero) .hero,
  body:has(.account-password-page) .account-auth-page {
    height: auto !important;
    min-height: 100svh !important;
    overflow: visible !important;
    padding-bottom: max(28px, env(safe-area-inset-bottom));
  }}
.copyright-quote {
  display: inline-block;
  max-width: min(100%, 680px);
  margin-bottom: 3px;
  font-weight: 600;
  line-height: 1.45;
}
@media (max-width: 820px) {.copyright-quote {
    max-width: min(92vw, 560px);
    font-size: 11px;
  }}
body:has(.home-stagger-menu):not(:has(.elito-page)) .shell {
  --authenticated-content-top: calc(84px + env(safe-area-inset-top));
  padding-top: var(--authenticated-content-top) !important;
}
body:has(.home-stagger-menu) .pdf-calendar-shell {
  margin-top: 8px !important;
}
.site-global-footer {
  position: relative;
  z-index: 51;
  flex: 0 0 auto;
  width: 100%;
  padding: 10px 0 max(6px, env(safe-area-inset-bottom));
  text-align: center;
}
.site-global-footer .copyright {
  margin: 0;
  color: #4b4b4b !important;
}
.site-global-footer-public {
  margin-top: 10px;
}
body:has(.home-stagger-menu):not(:has(.elito-page)) .shell {
  display: flex;
  flex-direction: column;
}
body:has(.elito-page) .shell {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
}
body:has(.elito-page) .elito-page {
  height: auto !important;
  min-height: 0 !important;
}
.password-alternatives { display: grid; gap: 10px; }
.password-alternatives[hidden] { display: none !important; }
[data-confirm-code][hidden] {
  display: none !important;
}
.password-new-fields { display:grid; gap:14px; }
.password-new-fields[hidden], .password-current-panel [hidden] { display:none !important; }
.password-method-question { text-align:center; }
.button.password-back, .button.password-back:hover, .button.password-back:focus-visible {
  color:#15803d; border:1px solid #15803d; background:transparent;
  min-height:44px; width:100%; box-shadow:none;
}
.password-current-panel input:disabled { opacity:1; color:#606060; cursor:default; }
html:has(.account-password-page), body:has(.account-password-page) {
  position:relative !important; height:auto !important; min-height:100svh;
  overflow-y:auto !important; overscroll-behavior-y:auto !important;
}
body:has(.account-password-page) .shell { height:auto; overflow:visible !important; }
body:has(.account-password-page) .account-auth-page {
  overflow:visible; padding-bottom:32px; min-height:calc(100svh - 50px);
}
