.ds-navbar{display:flex;align-items:center;gap:24px;padding:12px 20px;background:var(--bg-card)}.ds-navbar--bordered{border-bottom:1px solid var(--border-1)}.ds-navbar--floating{border:1px solid var(--border-1);border-radius:var(--r-lg);box-shadow:var(--shadow-sm);margin:12px 16px 0}.ds-navbar__brand{display:inline-flex;align-items:center;gap:8px;font-size:15px;font-weight:700;color:var(--text-1);text-decoration:none}.ds-navbar__nav{display:flex;align-items:center;gap:4px;flex:1 1;list-style:none;margin:0;padding:0}.ds-navbar__link{padding:8px 12px;border-radius:var(--r-sm);font-size:13px;font-weight:500;color:var(--text-2);text-decoration:none;transition:background .12s ease,color .12s ease}.ds-navbar__link:hover{background:var(--surface-sunken);color:var(--text-1)}.ds-navbar__link.is-active{background:var(--brand-soft);color:var(--brand-600);font-weight:600}.ds-navbar__actions{display:inline-flex;align-items:center;gap:8px}@media (max-width:640px){.ds-navbar{flex-wrap:wrap;padding:12px 14px}.ds-navbar__nav{order:3;flex-basis:100%;overflow-x:auto;padding-top:8px;border-top:1px solid var(--border-1)}}.ds-form{display:flex;flex-direction:column;gap:24px}.ds-form-section{display:grid;grid-gap:16px;gap:16px}.ds-form-section__head{display:flex;flex-direction:column;gap:4px;padding-bottom:8px;border-bottom:1px solid var(--border-1)}.ds-form-section__title{margin:0;font-size:15px;font-weight:700;color:var(--text-1);line-height:1.3}.ds-form-section__description{margin:0;font-size:13px;color:var(--text-3);line-height:1.5}.ds-form-grid{display:grid;grid-template-columns:minmax(0,1fr);grid-gap:14px;gap:14px}@media (min-width:640px){.ds-form-grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.ds-form-grid--3{grid-template-columns:repeat(3,minmax(0,1fr))}.ds-form-grid--6{grid-template-columns:repeat(6,minmax(0,1fr))}}.ds-form-grid__item{min-width:0}.ds-form-grid__item--full{grid-column:1/-1}.ds-form-grid__item--span-2{grid-column:span 2}.ds-form-actions{display:flex;align-items:center;justify-content:flex-end;gap:8px;padding-top:16px;border-top:1px solid var(--border-1);flex-wrap:wrap}.ds-form-actions--start{justify-content:flex-start}.ds-form-actions--between{justify-content:space-between}.ds-form-actions__hint{font-size:12px;color:var(--text-3);margin-right:auto}.ds-inline-control{display:grid;grid-template-columns:minmax(0,1fr) auto;align-items:end;grid-gap:10px;gap:10px}@media (max-width:640px){.ds-inline-control{grid-template-columns:minmax(0,1fr)}.ds-inline-control .btn{width:100%}}.form-grid{display:grid;grid-template-columns:minmax(0,1fr);grid-gap:var(--s-5);gap:var(--s-5)}.form-grid--gap-sm{gap:var(--s-3)}.form-grid--gap-lg{gap:var(--s-7)}.form-grid--cols-2{grid-template-columns:repeat(auto-fit,minmax(max(240px,calc(100% / 3 + .1%)),1fr))}.form-grid--cols-3{grid-template-columns:repeat(auto-fit,minmax(max(200px,calc(100% / 4 + .1%)),1fr))}.time-slot-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(84px,1fr));grid-gap:8px;gap:8px}.time-slot{display:inline-flex;align-items:center;justify-content:center;gap:6px;min-height:42px;padding:8px 10px;border:1px solid var(--border-1);border-radius:var(--r-md);background:var(--surface-default);color:var(--text-1);font-size:13px;font-weight:600;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;cursor:pointer;transition:border-color .15s ease,background .15s ease,color .15s ease,box-shadow .15s ease}.time-slot__icon{width:14px;height:14px;opacity:.65;flex-shrink:0}.time-slot:hover:not(:disabled){border-color:var(--brand-border);background:var(--brand-soft);color:var(--brand-600)}.time-slot:hover:not(:disabled) .time-slot__icon{opacity:1}.time-slot:focus-visible{outline:2px solid var(--brand-500);outline-offset:2px}.time-slot-unavailable,.time-slot-unavailable:hover{cursor:not-allowed;opacity:.4;background:var(--surface-sunken);color:var(--text-3);text-decoration:line-through}.time-slot-selected,.time-slot-selected:hover{cursor:pointer;opacity:1;border-color:var(--brand-600);background:var(--brand-500);color:var(--on-brand);text-decoration:none;box-shadow:0 0 0 2px var(--brand-soft-2)}.time-slot-selected .time-slot__icon{opacity:1}.ds-hint-anchor{display:contents}.ds-hint{position:fixed;left:var(--ds-hint-left,0);top:var(--ds-hint-top,0);z-index:1000;max-width:240px;padding:7px 10px;border:1px solid var(--ds-hint-border);border-radius:var(--r-md);background:var(--ds-hint-bg);color:var(--ds-hint-fg);box-shadow:var(--shadow-lg);font-size:12px;font-weight:600;line-height:1.2;white-space:nowrap;pointer-events:none;opacity:0;animation:ds-hint-in .12s ease forwards}.ds-hint--right{transform:translateY(-50%)}.ds-hint--left{transform:translate(-100%,-50%)}.ds-hint--top{transform:translate(-50%,-100%)}.ds-hint--bottom{transform:translateX(-50%)}@keyframes ds-hint-in{0%{opacity:0}to{opacity:1}}.ds-hint:before{content:"";position:absolute;width:8px;height:8px;background:var(--ds-hint-bg);border:1px solid var(--ds-hint-border)}.ds-hint--right:before{left:-5px;border-right:0;border-top:0}.ds-hint--left:before,.ds-hint--right:before{top:50%;transform:translateY(-50%) rotate(45deg)}.ds-hint--left:before{right:-5px;border-left:0;border-bottom:0}.ds-hint--top:before{bottom:-5px;border-left:0;border-top:0}.ds-hint--bottom:before,.ds-hint--top:before{left:50%;transform:translateX(-50%) rotate(45deg)}.ds-hint--bottom:before{top:-5px;border-right:0;border-bottom:0}.shortcut-card{background:var(--bg-card-2);border:1px solid var(--border-1);border-radius:var(--r-md);padding:16px 18px;display:flex;align-items:center;gap:14px;cursor:pointer;transition:background .12s ease,border-color .12s ease,transform .12s ease;text-decoration:none;color:inherit;font-family:inherit;width:100%;text-align:left}.shortcut-card:hover{background:var(--soft-hover);border-color:var(--border-2)}.shortcut-card:active{transform:translateY(.5px)}.shortcut-card__icon{width:36px;height:36px;border-radius:var(--r-sm);display:grid;place-items:center;background:var(--bg-card);border:1px solid var(--border-1);color:var(--admin-500);flex-shrink:0}.shortcut-card__icon--brand{color:var(--brand-500)}.shortcut-card__icon--success{color:var(--success)}.shortcut-card__ext{margin-left:auto;align-self:flex-start;color:var(--text-4);opacity:0;transition:opacity .12s ease}.shortcut-card:hover .shortcut-card__ext{opacity:1}.shortcut-card__body{display:flex;flex-direction:column;gap:2px;min-width:0}.shortcut-card__title{font-size:14px;font-weight:600;color:var(--text-1)}.shortcut-card__subtitle{font-size:12px;color:var(--text-3)}.shortcut-card--active,.shortcut-card--active:hover{background:var(--soft-brand);border-color:var(--brand-500)}.shortcut-card--active .shortcut-card__icon{background:var(--brand-500);border-color:var(--brand-500);color:#fff}.shortcut-card--active .shortcut-card__title{color:var(--brand-700)}.ds-list-item{--li-accent:var(--text-3);--li-soft:var(--soft-surface);display:flex;align-items:center;gap:12px;min-width:0;padding:12px;border:1px solid var(--border-1);border-radius:var(--r-lg);background:var(--bg-card-2);transition:background .12s ease,border-color .12s ease,box-shadow .12s ease}.ds-list-item:hover{border-color:var(--border-2)}.ds-list-item--brand{--li-accent:var(--brand-500);--li-soft:var(--brand-soft)}.ds-list-item--success{--li-accent:var(--success);--li-soft:var(--success-soft)}.ds-list-item--warning{--li-accent:var(--warning);--li-soft:var(--warning-soft)}.ds-list-item--danger{--li-accent:var(--error);--li-soft:var(--error-soft)}.ds-list-item--neutral{--li-accent:var(--text-3);--li-soft:var(--soft-surface)}.ds-list-item--accent{border-color:color-mix(in srgb,var(--li-accent) 52%,var(--border-2));background:color-mix(in srgb,var(--li-soft) 58%,var(--bg-card))}.ds-list-item--accent:hover{border-color:color-mix(in srgb,var(--li-accent) 72%,var(--border-2));background:color-mix(in srgb,var(--li-soft) 78%,var(--bg-card));box-shadow:0 10px 24px -22px var(--li-accent),inset 0 1px 0 var(--inset-highlight)}.ds-list-item__icon{width:36px;height:36px;flex-shrink:0;display:inline-grid;place-items:center;border:1px solid color-mix(in srgb,var(--li-accent) 26%,var(--border-1));border-radius:var(--r-md);background:color-mix(in srgb,var(--li-soft) 72%,var(--bg-card));color:var(--li-accent)}.ds-list-item__icon svg{width:16px;height:16px}.ds-list-item__body{min-width:0;flex:1 1;display:grid;grid-gap:2px;gap:2px}.ds-list-item__title{color:var(--text-1);font-size:14px;font-weight:600;line-height:1.25}.ds-list-item__subtitle,.ds-list-item__title{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.ds-list-item__subtitle{color:var(--text-3);font-size:12px;line-height:1.35}.ds-list-item__actions{display:inline-flex;align-items:center;gap:4px;flex-shrink:0}.ds-list-item__delete{width:36px;height:36px;flex-shrink:0;display:inline-grid;place-items:center;padding:0;border:1px solid var(--error-border);border-radius:var(--r-md);background:var(--error-soft);color:var(--error);cursor:pointer;transition:background .12s ease,border-color .12s ease,color .12s ease}.ds-list-item__delete:hover{border-color:var(--error);background:color-mix(in srgb,var(--error) 22%,transparent);color:var(--error)}.ds-list-item__delete svg{width:16px;height:16px}.setting-row{display:flex;align-items:center;justify-content:space-between;gap:16px;padding:14px 16px;border:1px solid var(--border-1);border-radius:var(--r-md);background:var(--bg-card);transition:border-color .12s ease,background .12s ease}.setting-row--danger{border-color:color-mix(in srgb,var(--error) 35%,var(--border-1));background:color-mix(in srgb,var(--error) 5%,transparent)}.setting-row__leading{display:flex;align-items:flex-start;gap:12px;min-width:0}.setting-row__icon{width:34px;height:34px;border-radius:var(--r-sm);display:grid;place-items:center;flex-shrink:0;background:var(--bg-card-2);border:1px solid var(--border-1);color:var(--text-3)}.setting-row--danger .setting-row__icon{color:var(--error);border-color:color-mix(in srgb,var(--error) 30%,var(--border-1))}.setting-row__text{display:flex;flex-direction:column;gap:2px;min-width:0}.setting-row__title{font-size:14px;font-weight:600;color:var(--text-1)}.setting-row__desc{font-size:12px;color:var(--text-3);line-height:1.45}.setting-row__control{flex-shrink:0}.barber-rail{display:flex;gap:12px;overflow-x:auto;overflow-y:hidden;padding:4px 4px 16px;scroll-snap-type:x mandatory;scroll-padding:4px;-webkit-overflow-scrolling:touch}.barber-rail::-webkit-scrollbar{height:6px}.barber-rail::-webkit-scrollbar-thumb{background:var(--border-2);border-radius:3px}.barber-rail::-webkit-scrollbar-track{background:transparent}.barber-rail__item{flex:0 0 132px;width:132px;scroll-snap-align:start;display:flex;flex-direction:column;align-items:center;gap:10px;padding:16px 12px 14px;border-radius:var(--r-md);background:var(--bg-card-2);border:1px solid var(--border-1);cursor:pointer;transition:background .12s ease,border-color .12s ease,transform .12s ease;text-align:center;font-family:inherit;color:inherit}.barber-rail__item:hover{background:var(--soft-hover);border-color:var(--border-2)}.barber-rail__item:active{transform:translateY(.5px)}.barber-rail__item--active,.barber-rail__item--active:hover{background:var(--soft-brand);border-color:var(--brand-500)}.barber-rail__icon{width:56px;height:56px;border-radius:50%;display:grid;place-items:center;background:var(--bg-card);color:var(--brand-500);border:1px solid var(--border-1)}.barber-rail__item--active .barber-rail__icon{background:var(--brand-500);color:#fff;border-color:var(--brand-500)}.barber-rail__name{font-size:13px;font-weight:600;color:var(--text-1);line-height:1.25;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;text-overflow:ellipsis;word-break:break-word;margin:0}.barber-rail__item--active .barber-rail__name{color:var(--brand-700)}.barber-rail__meta{font-size:11px;color:var(--text-3);line-height:1.2;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;margin:0}@media (max-width:480px){.barber-rail__item{flex-basis:118px;width:118px;padding:14px 10px 12px}.barber-rail__icon{width:48px;height:48px}}.google-button{display:inline-flex;align-items:center;justify-content:center;gap:10px;width:100%;padding:10px 16px;background:var(--bg-card);color:var(--text-1);border:1px solid var(--border-2);border-radius:var(--r-md);font-family:inherit;font-size:14px;font-weight:600;cursor:pointer;transition:background .12s ease,border-color .12s ease}.google-button:hover{background:var(--soft-hover);border-color:var(--brand-500)}.google-button:active{transform:translateY(.5px)}.google-button svg{flex-shrink:0}.auth-divider{display:flex;align-items:center;gap:12px;margin:16px 0;color:var(--text-3);font-size:12px;text-transform:uppercase;letter-spacing:.4px}.auth-divider:after,.auth-divider:before{content:"";flex:1 1;height:1px;background:var(--border-1)}.slug-preview{display:flex;flex-direction:column;gap:6px;margin-top:6px;padding:10px 12px;border-radius:var(--r-sm);background:var(--bg-card-2);border:1px solid var(--border-1);font-size:12px}.slug-preview__row{display:flex;align-items:center;gap:8px;flex-wrap:wrap}.slug-preview__label{color:var(--text-3);font-weight:500}.slug-preview__url{display:inline-flex;align-items:center;gap:6px;font-family:var(--font-mono);color:var(--text-2)}.slug-preview__url strong{color:var(--brand-500)}.slug-preview__edit{display:inline-flex;align-items:center;gap:4px}.slug-preview__input{padding:4px 8px;border-radius:var(--r-sm);border:1px solid var(--border-2);background:var(--bg-card);color:var(--text-1);font-family:var(--font-mono);font-size:12px;min-width:0;width:140px}.slug-preview__suffix{font-family:var(--font-mono);color:var(--text-3)}.slug-preview__action{display:inline-flex;align-items:center;gap:4px;padding:2px 6px;background:transparent;border:none;color:var(--brand-500);font-family:inherit;font-size:11px;font-weight:600;cursor:pointer}.slug-preview__action:hover{text-decoration:underline}.slug-preview__status{display:inline-flex;align-items:center;gap:6px;font-size:11px;flex-wrap:wrap}.slug-preview__status--ok{color:var(--success)}.slug-preview__status--invalid,.slug-preview__status--reserved,.slug-preview__status--taken{color:var(--danger)}.slug-preview__status--loading{color:var(--text-3)}.slug-preview__suggestion{margin-left:4px;background:transparent;border:none;color:var(--brand-500);font-family:inherit;font-size:11px;cursor:pointer;text-decoration:underline}.slug-preview__suggestion code{font-family:var(--font-mono)}.oauth-profile-card{display:flex;align-items:center;gap:12px;padding:12px 14px;margin-bottom:16px;background:var(--bg-card-2);border:1px solid var(--border-1);border-radius:var(--r-md)}.oauth-profile-card__avatar{width:42px;height:42px;border-radius:50%;object-fit:cover;flex-shrink:0;border:1px solid var(--border-1)}.oauth-profile-card__avatar--placeholder{display:grid;place-items:center;background:var(--brand-500);color:#fff;font-weight:700;font-size:18px}.oauth-profile-card__body{display:flex;flex-direction:column;gap:2px;min-width:0;flex:1 1}.oauth-profile-card__body strong{font-size:14px;color:var(--text-1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.oauth-profile-card__body span{font-size:12px;color:var(--text-3);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.oauth-profile-card__badge{font-size:11px;color:var(--text-3);text-transform:uppercase;letter-spacing:.4px;flex-shrink:0}.password-strength{display:flex;align-items:center;gap:10px;margin-top:6px}.password-strength__bars{display:flex;gap:3px;flex:1 1;max-width:180px}.password-strength__bar{flex:1 1;height:4px;border-radius:2px;transition:background .2s ease}.password-strength__bar,.password-strength__bar--idle{background:var(--border-1)}.password-strength__bar--lvl-0{background:var(--danger)}.password-strength__bar--lvl-1,.password-strength__bar--lvl-2{background:var(--warning)}.password-strength__bar--lvl-3,.password-strength__bar--lvl-4{background:var(--success)}.password-strength__label{font-size:11px;color:var(--text-3)}.password-strength__label--lvl-0,.password-strength__label--lvl-1{color:var(--danger)}.password-strength__label--lvl-2{color:var(--warning)}.password-strength__label--lvl-3,.password-strength__label--lvl-4{color:var(--success)}.auth-shell{--bg-field:var(--bg-input,var(--bg-card));--surface-sunken:var(--bg-1);--surface-ground:var(--bg-0);--brand-300:var(--brand-400);--text-muted:var(--text-3);--text-secondary:var(--text-2);--text-link:var(--brand-500);--line:var(--border-1);--line-soft:var(--border-2);--border-soft:var(--border-2);--auth-edge:color-mix(in srgb,var(--text-1) 22%,transparent);--auth-edge-soft:color-mix(in srgb,var(--text-1) 12%,transparent);--auth-divider:color-mix(in srgb,var(--text-1) 8%,transparent);--auth-font-sans:"Geist",var(--font-poppins),-apple-system,system-ui,sans-serif;--auth-font-serif:"Instrument Serif",Georgia,serif;--auth-font-mono:"Geist Mono",ui-monospace,monospace;min-height:100vh;font-family:var(--auth-font-sans);color:var(--text-1);background-color:var(--bg-0);background-image:linear-gradient(to right,color-mix(in srgb,var(--text-1) 3%,transparent) 1px,transparent 1px),linear-gradient(to bottom,color-mix(in srgb,var(--text-1) 3%,transparent) 1px,transparent 1px);background-size:24px 24px;background-position:0 0;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.auth-shell--plain{background-image:none}.auth-shell a:focus-visible,.auth-shell button:focus-visible,.auth-shell input:focus-visible{outline:2px solid var(--brand-500);outline-offset:2px}.auth-shell .btn--block.btn--primary{box-shadow:inset 0 1px 0 var(--inset-highlight),inset 0 -1px 0 var(--inset-shadow)}.auth-sheet__content{display:flex;flex-direction:column;gap:var(--s-4);padding-bottom:var(--s-2)}.auth-sheet .ds-drawer__body{padding-top:var(--s-4)}.auth-sheet__icon{align-self:center;width:48px;height:48px;border-radius:14px;display:inline-flex;align-items:center;justify-content:center;background:var(--brand-soft);color:var(--brand-500);border:1px solid color-mix(in srgb,var(--brand-500) 35%,transparent);flex-shrink:0}@media (max-width:1023px){.auth-shell .auth-page-forgot__form-inner,.auth-shell .auth-page-login__form-inner,.auth-shell .auth-page-register__form-inner,.auth-shell .auth-page-register__launcher{background:var(--bg-card);border:1px solid var(--border-1);border-radius:16px;padding:24px 20px;box-shadow:var(--shadow-sm)}}.auth-shell .auth-eyebrow{font-family:var(--auth-font-mono);font-size:11px;letter-spacing:2px;text-transform:uppercase;color:var(--text-3);font-weight:500;margin:0 0 14px;display:block}.auth-shell .auth-display{font-family:var(--auth-font-serif);font-weight:400;letter-spacing:-1.4px;line-height:.98;color:var(--text-1);margin:0;text-wrap:balance}.auth-shell .auth-display--xl{font-size:54px;line-height:.98}.auth-shell .auth-display--lg{font-size:44px;line-height:1.02}.auth-shell .auth-display--md{font-size:36px;line-height:1.02}.auth-shell .auth-display--sm{font-size:32px;line-height:1.05;letter-spacing:-.8px}.auth-shell .auth-display em,.auth-shell .auth-display__accent{font-style:italic;color:var(--brand-500);font-weight:400}.auth-shell .auth-subtitle{font-family:var(--auth-font-sans);font-size:15px;line-height:1.5;color:var(--text-2);margin:0}.auth-shell .auth-subtitle--lg{font-size:16px;max-width:440px}.auth-shell .auth-microcopy{display:flex;flex-wrap:wrap;gap:12px 20px;align-items:center;font-family:var(--auth-font-mono);font-size:10px;color:var(--text-4);letter-spacing:1.5px;text-transform:uppercase;margin:0;padding:12px 0 0}.auth-shell .auth-microcopy__sep{opacity:.6}.auth-shell__viewport{padding:40px;box-sizing:border-box;width:100%;min-height:100vh;display:flex;align-items:center;justify-content:center}@media (min-width:1024px){.auth-shell__viewport{height:100dvh;min-height:0;overflow:hidden}}@media (max-width:1023px){.auth-shell{min-height:100dvh}.auth-shell__viewport{display:flex;flex-direction:column;justify-content:center;padding:16px 16px 20px;min-height:100dvh;box-sizing:border-box}.auth-shell .auth-display--xl{font-size:36px;line-height:1.02}.auth-shell .auth-display--lg{font-size:32px;line-height:1.05}.auth-shell .auth-display--md{font-size:28px}.auth-shell .auth-eyebrow{margin-bottom:6px;font-size:10px}}.auth-stack{display:flex;flex-direction:column;gap:24px;padding:24px}.auth-stack--tight{gap:14px;padding:0}.auth-row{display:flex;align-items:center;gap:16px;flex-wrap:wrap}.auth-row--md-gap{gap:12px}.auth-grid-2{display:grid;grid-template-columns:1fr 1fr;grid-gap:20px;gap:20px}@media (max-width:767px){.auth-grid-2{grid-template-columns:1fr}}.auth-card-body{padding:24px}.auth-card-title{font-family:var(--auth-font-serif);font-size:18px;font-weight:400;margin:0 0 12px;color:var(--text-1)}.auth-card-copy{font-family:var(--auth-font-sans);font-size:13px;color:var(--text-2);margin:0;line-height:1.5}.ds-section-card-hint--top{margin-top:14px}.auth-shell .btn{border-radius:12px;font-family:var(--auth-font-sans)}.auth-shell .btn--primary{background:linear-gradient(180deg,var(--brand-400),var(--brand-500));color:var(--on-brand,#fff);border-color:transparent;box-shadow:0 8px 20px -8px var(--primary-button-shadow,rgba(0,0,0,.3)),inset 0 1px 0 hsla(0,0%,100%,.3),inset 0 -2px 0 rgba(0,0,0,.08);letter-spacing:.2px}.auth-shell .btn--primary:hover{background:linear-gradient(180deg,var(--brand-500),var(--brand-600));color:var(--on-brand,#fff);transform:translateY(-1px)}.auth-shell .btn--primary:active{transform:translateY(0)}.auth-shell .btn--auth-google{background:var(--bg-card);color:var(--text-1);border-color:transparent;box-shadow:0 1px 0 rgba(0,0,0,.04),inset 0 0 0 1px var(--border-1);font-weight:600}.auth-shell .btn--auth-google:hover{background:var(--bg-card-2);color:var(--text-1);box-shadow:0 2px 4px rgba(0,0,0,.06),inset 0 0 0 1px var(--border-1)}.auth-shell .field input,.auth-shell .input input{font-family:var(--auth-font-sans);border-color:var(--auth-edge)}.auth-shell .field input:hover,.auth-shell .input input:hover{border-color:color-mix(in srgb,var(--text-1) 34%,transparent)}.auth-shell .field input:focus,.auth-shell .field input:focus-visible,.auth-shell .input input:focus{background:var(--bg-card);outline:none}.auth-shell .input::placeholder,.auth-shell input.input::placeholder{color:var(--text-4)}.auth-shell .field .field__label-row{display:none}.auth-shell .field .field__label-row--with-action{display:flex;justify-content:flex-end}.auth-shell .field .field__label-row--with-action .field__label{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border:0}.auth-surface{position:relative;overflow:hidden;background:var(--bg-card);border-radius:24px;box-shadow:inset 0 1px 0 hsla(0,0%,100%,.06),var(--shadow-md,0 2px 4px rgba(0,0,0,.04)),0 0 0 1px var(--border-1)}.auth-surface--lg{border-radius:28px}.auth-surface--striped{box-shadow:inset 0 1px 0 hsla(0,0%,100%,.06),var(--shadow-lg,0 10px 20px -8px rgba(0,0,0,.1)),0 0 0 1px var(--border-1)}.auth-surface--striped:before{content:"";position:absolute;inset:0;pointer-events:none;opacity:.45;background-image:repeating-linear-gradient(135deg,transparent 0 22px,var(--border-1) 22px 23px)}.auth-surface>*{position:relative}.auth-surface--split{display:grid;grid-template-columns:1.05fr 1fr;min-height:720px}.auth-surface--split-wide{display:grid;grid-template-columns:1fr 1.15fr;min-height:820px}.auth-surface__brand-panel{padding:40px 48px;display:flex;flex-direction:column;gap:28px;border-right:1px solid var(--border-soft);background:linear-gradient(180deg,var(--bg-card) 0,var(--bg-card-2) 100%)}.auth-surface__form-panel{padding:64px 56px;display:flex;flex-direction:column;align-items:center}.auth-surface__form-panel--compact{padding:44px 56px}.auth-surface__form-inner{width:100%;max-width:420px}.auth-surface__form-inner--wide{max-width:520px}@media (max-width:1023px){.auth-surface--split,.auth-surface--split-wide{grid-template-columns:1fr;min-height:auto}.auth-surface__brand-panel{border-right:none;border-bottom:1px solid var(--border-soft);padding:32px 28px}.auth-surface__form-panel,.auth-surface__form-panel--compact{padding:36px 28px}}@media (max-width:767px){.auth-surface{border-radius:20px}.auth-surface__brand-panel{padding:24px 20px;gap:20px}.auth-surface__form-panel,.auth-surface__form-panel--compact{padding:28px 20px}}.auth-tag{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;font-family:var(--auth-font-sans);font-size:12px;font-weight:500;letter-spacing:.1px;background:var(--bg-card-2);color:var(--text-2)}.auth-tag__dot{width:6px;height:6px;border-radius:999px;background:var(--brand-500);flex-shrink:0}.auth-tag--ok{background:var(--success-soft);color:var(--success-text);border:1px solid color-mix(in srgb,var(--success) 30%,transparent)}.auth-tag--ok .auth-tag__dot{background:var(--success)}.auth-or-divider{display:flex;align-items:center;gap:12px;margin:4px 0}.auth-or-divider__line{flex:1 1;height:1px;background:var(--border-1)}.auth-or-divider__label{font-family:var(--auth-font-sans);font-size:11px;font-weight:500;color:var(--text-3);letter-spacing:1.5px;white-space:nowrap}.auth-section-label{display:flex;align-items:baseline;gap:12px;margin:4px 0 16px}.auth-section-label__index{font-family:var(--auth-font-mono);font-size:10px;font-weight:600;letter-spacing:1.5px;color:var(--brand-500)}.auth-section-label__title{font-family:var(--auth-font-serif);font-size:24px;font-weight:400;letter-spacing:-.5px;color:var(--text-1);margin:0;line-height:1.1}.auth-section-label__sub{font-family:var(--auth-font-sans);font-size:13px;color:var(--text-3);margin-left:auto}@media (max-width:767px){.auth-section-label__title{font-size:22px}.auth-section-label__sub{margin-left:0;flex-basis:100%;margin-top:4px}}.auth-logo{display:inline-flex;align-items:center;gap:10px}.auth-logo__word{font-family:var(--auth-font-sans);font-weight:600;color:var(--text-1);letter-spacing:-.5px}.auth-logo__word-soft{font-weight:400}.auth-logo__word--brand{font-family:"Oswald",var(--auth-font-sans);font-weight:400;letter-spacing:0}.auth-logo__word-seven{font-family:Playfair Display,Georgia,serif;font-weight:600;font-size:1.227em;color:#c79a52;line-height:1}.auth-logo__text{display:flex;flex-direction:column;gap:2px;min-width:0}.auth-logo__text .auth-logo__word{line-height:1.1}.auth-logo__caption{font-family:var(--auth-font-sans);font-size:13px;font-weight:500;line-height:1.2;color:var(--text-2);white-space:nowrap}.auth-logo__image{display:block;object-fit:cover;flex-shrink:0}.auth-logo--sm .auth-logo__image{width:32px;height:32px;border-radius:8px}.auth-logo--md .auth-logo__image{width:36px;height:36px;border-radius:9px}.auth-logo--lg .auth-logo__image{width:42px;height:42px;border-radius:11px}.auth-logo--sm .auth-logo__word{font-size:18px}.auth-logo--md .auth-logo__word{font-size:20px}.auth-logo--lg .auth-logo__word{font-size:23px}.auth-agenda{width:100%;background:var(--bg-card);border-radius:20px;box-shadow:var(--shadow-md,0 2px 4px rgba(0,0,0,.04)),inset 0 1px 0 hsla(0,0%,100%,.05),0 0 0 1px var(--border-1);overflow:hidden;font-family:var(--auth-font-sans)}.auth-agenda__head{display:flex;align-items:center;justify-content:space-between;padding:14px 18px;border-bottom:1px solid var(--auth-edge-soft);background:var(--bg-card-2)}.auth-agenda__head-left{display:flex;align-items:center;gap:10px}.auth-agenda__live-dot{width:8px;height:8px;border-radius:999px;background:var(--success);box-shadow:0 0 0 4px color-mix(in srgb,var(--success) 22%,transparent)}.auth-agenda__head-label{font-family:var(--auth-font-mono);font-size:11px;letter-spacing:1.5px;color:var(--text-3);text-transform:uppercase}.auth-agenda__head-dots{display:flex;gap:6px}.auth-agenda__head-dots span{width:6px;height:6px;border-radius:999px;background:var(--text-4);opacity:.5}.auth-agenda__table-card.data-table-card{background:transparent;border:none;box-shadow:none;border-radius:0;min-width:0}.auth-agenda .data-table-wrap{overflow:visible;min-width:0}.auth-agenda .data-table{min-width:0;width:100%;table-layout:fixed}.auth-agenda .data-table tbody td:first-child,.auth-agenda .data-table thead th:first-child{width:64px}.auth-agenda .data-table tbody td:nth-child(3),.auth-agenda .data-table thead th:nth-child(3){width:96px}.auth-agenda .data-table__user-name,.auth-agenda .data-table__user-sub{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.auth-agenda__kpis{display:grid;grid-template-columns:1fr 1fr 1fr;border-top:1px solid var(--auth-edge-soft);background:var(--bg-card-2)}.auth-agenda__kpi{padding:12px 14px}.auth-agenda__kpi+.auth-agenda__kpi{border-left:1px solid var(--auth-edge-soft)}.auth-agenda__kpi-value{font-family:var(--auth-font-serif);font-size:22px;color:var(--text-1);line-height:1}.auth-agenda__kpi-label{font-family:var(--auth-font-mono);font-size:9px;letter-spacing:1.5px;color:var(--text-3);text-transform:uppercase;margin:4px 0 0}.auth-trial{display:flex;flex-direction:column;gap:12px}.auth-trial__card{display:grid;grid-template-columns:42px 1fr;align-items:center;grid-gap:14px;gap:14px;padding:14px 16px;background:var(--bg-card);border-radius:14px;box-shadow:inset 0 0 0 1px var(--border-soft)}.auth-trial__icon{width:42px;height:42px;border-radius:12px;background:var(--brand-soft);color:var(--brand-500);display:flex;align-items:center;justify-content:center;flex-shrink:0}.auth-trial__icon>svg{width:20px;height:20px}.auth-trial__title{font-family:var(--auth-font-sans);font-size:14px;font-weight:600;color:var(--text-1);margin:0;line-height:1.3}.auth-trial__sub{font-family:var(--auth-font-sans);font-size:12.5px;color:var(--text-2);margin:2px 0 0;line-height:1.4}.auth-testimonial{padding:18px 20px;border-radius:14px;background:var(--brand-soft);box-shadow:inset 0 0 0 1px var(--brand-border)}.auth-testimonial__quote{font-family:var(--auth-font-serif);font-size:18px;line-height:1.35;color:var(--text-1);font-style:italic;letter-spacing:-.2px;margin:0}.auth-testimonial__author{margin-top:12px;display:flex;align-items:center;gap:10px}.auth-testimonial__avatar{width:28px;height:28px;border-radius:999px;background:linear-gradient(135deg,var(--brand-400),var(--brand-600));color:var(--on-brand,#fff);font-family:var(--auth-font-sans);font-weight:600;font-size:12px;display:flex;align-items:center;justify-content:center;flex-shrink:0}.auth-testimonial__meta{font-family:var(--auth-font-sans);font-size:12.5px;color:var(--text-2)}.auth-testimonial__name{color:var(--text-1);font-weight:600}.auth-step-dots{display:flex;align-items:center;gap:6px;width:100%}.auth-step-dot{flex:1 1;height:2px;border-radius:999px;background:var(--border-1);transition:height .25s ease,background .25s ease}.auth-step-dot--done{background:color-mix(in srgb,var(--brand-500) 45%,transparent)}.auth-step-dot--active{background:var(--brand-500);height:5px}.auth-page-login{width:100%;max-width:1320px;padding:0}.auth-page-login__grid{display:grid;grid-template-columns:1.05fr 1fr;min-height:720px}@media (min-width:1024px){.auth-page-login{height:min(720px,calc(100dvh - 80px));display:flex;flex-direction:column}.auth-page-login__grid{flex:1 1}.auth-page-login__brand,.auth-page-login__form,.auth-page-login__grid{min-height:0;overflow:hidden}}@media (min-width:1024px) and (max-height:849px){.auth-page-login__brand{padding:26px 40px;gap:18px}.auth-page-login__form{padding:26px 40px}.auth-shell .auth-page-login__brand .auth-agenda__kpis{display:none}.auth-shell .auth-page-login .auth-display--xl{font-size:44px}}.auth-page-login.auth-surface--striped:before{inset:0 auto 0 0;width:51%}@media (max-width:1023px){.auth-page-login.auth-surface--striped:before{display:none}}.auth-page-login__brand{min-width:0;padding:clamp(20px,3.6vh,40px) 48px;display:flex;flex-direction:column;gap:clamp(12px,2.6vh,28px);border-right:1px solid var(--auth-divider);background:linear-gradient(180deg,var(--bg-card) 0,var(--bg-card-2) 100%)}.auth-page-login__brand-head{display:flex;justify-content:space-between;align-items:center}.auth-page-login__brand-foot{margin-top:auto}.auth-page-login__form{padding:40px 48px;display:flex;flex-direction:column}.auth-page-login__form-top{display:flex;justify-content:flex-end;align-items:center;height:32px}.auth-page-login__form-inner{flex:1 1;display:flex;flex-direction:column;justify-content:center;max-width:420px;width:100%;align-self:center}.auth-page-login__title{margin:14px 0 8px}.auth-page-login__stack{display:flex;flex-direction:column;gap:18px;margin-top:22px}.auth-page-login__tenant-picker{display:flex;flex-direction:column;gap:16px;margin-top:24px}.auth-page-login__row{display:flex;align-items:center;justify-content:space-between;gap:12px;margin-top:4px}.auth-page-login__forgot{font-family:var(--auth-font-sans);font-size:13px;font-weight:500;color:var(--brand-500);text-decoration:none}.auth-shell .auth-page-login__row{margin:0}.auth-page-login__forgot:hover{text-decoration:underline}.auth-page-login__foot{margin:0;text-align:center;font-family:var(--auth-font-sans);font-size:14px;color:var(--text-2)}.auth-page-login__foot-link{color:var(--brand-500);font-weight:600;text-decoration:none}.auth-page-login__foot-link:hover{text-decoration:underline}.auth-shell .check{font-family:var(--auth-font-sans)}.auth-shell input:-webkit-autofill,.auth-shell input:-webkit-autofill:active,.auth-shell input:-webkit-autofill:focus,.auth-shell input:-webkit-autofill:hover{-webkit-box-shadow:0 0 0 1000px var(--bg-field) inset,inset 0 0 0 1px var(--auth-edge);-webkit-text-fill-color:var(--text-1);caret-color:var(--text-1);-webkit-transition:background-color 5000s ease-in-out 0s;transition:background-color 5000s ease-in-out 0s}.auth-shell .auth-page-login .auth-logo__caption,.auth-shell .auth-page-login__footer-mobile,.auth-shell .auth-page-login__hero-mobile{display:none}.auth-page-login__eyebrow-desktop,.auth-page-login__form-intro,.auth-page-login__hero-desktop,.auth-page-login__subtitle-desktop,.auth-page-login__tag-desktop{display:block}@media (max-width:1023px){.auth-page-login__grid{grid-template-columns:1fr;min-height:auto}.auth-page-login__brand,.auth-page-login__form{width:100%;max-width:560px;margin-inline:auto}.auth-page-login.auth-surface,.auth-page-login.auth-surface--lg,.auth-page-login.auth-surface--striped{background:transparent;box-shadow:none;border-radius:0}.auth-page-login.auth-surface--striped:before{display:none}.auth-page-login__brand{padding:0 4px;gap:12px;border:none;background:transparent}.auth-shell .auth-page-login__brand .auth-agenda,.auth-shell .auth-page-login__brand-foot,.auth-shell .auth-page-login__eyebrow-desktop,.auth-shell .auth-page-login__form-intro,.auth-shell .auth-page-login__form-top,.auth-shell .auth-page-login__hero-desktop,.auth-shell .auth-page-login__subtitle-desktop,.auth-shell .auth-page-login__tag-desktop{display:none}.auth-shell .auth-page-login__hero-mobile{display:inline}.auth-shell .auth-page-login .auth-logo__caption{display:block}.auth-page-login__brand-head{flex-wrap:nowrap;gap:12px}.auth-page-login .auth-display--xl{font-size:38px;letter-spacing:-1px;line-height:1.02}.auth-page-login__form{padding:0;margin-top:14px}.auth-page-login__form-inner{position:relative;overflow:hidden}.auth-page-login__form-inner .auth-page-login__stack{gap:14px;margin-top:0}.auth-page-login__form-inner>*{position:relative}.auth-page-login__foot{margin-top:0}.auth-page-login__footer-mobile{display:flex;justify-content:center;margin:18px 0 28px;padding:0 20px}}.auth-page-register{width:100%;max-width:1320px;padding:0}.auth-page-register__grid{display:grid;grid-template-columns:1fr 1.15fr;min-height:820px}.auth-page-register__grid--single{grid-template-columns:1fr;min-height:auto}@media (min-width:1024px){.auth-page-register{height:min(820px,calc(100dvh - 80px));display:flex;flex-direction:column}.auth-page-register__grid{flex:1 1}.auth-page-register__brand,.auth-page-register__form,.auth-page-register__grid{min-height:0;overflow:hidden}.auth-page-register__grid--single .auth-page-register__form{justify-content:center}}@media (min-width:1024px) and (max-height:899px){.auth-page-register__brand{padding:28px 40px;gap:18px}.auth-shell .auth-page-register__brand .auth-testimonial{display:none}.auth-shell .auth-page-register .auth-display--xl{font-size:44px}.auth-shell .auth-page-register__form{padding:20px 48px}.auth-shell .auth-page-register__stack{margin-top:10px}.auth-shell .auth-page-register__form-inner .form-grid{gap:var(--s-3)}.auth-shell .auth-page-register__terms{padding:2px 0}}.auth-page-register__brand{padding:40px 48px;display:flex;flex-direction:column;gap:28px;border-right:1px solid var(--auth-divider);background:linear-gradient(180deg,var(--bg-card) 0,var(--bg-card-2) 100%)}.auth-page-register__brand-head{display:flex;justify-content:space-between;align-items:center;gap:12px}.auth-page-register__trial-badge{font-family:var(--auth-font-sans)}.auth-page-register__trial-badge-mobile{display:none}@media (min-width:1024px){.auth-page-register__launcher{display:contents}}.auth-page-register__hero{margin-top:16px}.auth-page-register__brand-foot{margin-top:auto}.auth-page-register__form{padding:28px 56px;display:flex;flex-direction:column;align-items:center;justify-content:center}.auth-page-register__form-inner{max-width:520px;width:100%}.auth-page-register__title{margin:0 0 4px}.auth-page-register__stack{margin-top:var(--s-3)}.auth-shell .auth-page-register__terms{align-items:flex-start;padding:6px 0}.auth-shell .auth-page-register__terms input[type=checkbox]{margin-top:1px}.auth-shell .check__label .link{padding:0}.auth-page-register__captcha{margin:4px 0}.auth-page-register__form-inner--complete{max-width:560px;margin-inline:auto}.auth-page-register__complete{display:flex;flex-direction:column;align-items:center;text-align:center;gap:14px;padding:24px 0}.auth-page-register__complete-mark{width:56px;height:56px;border-radius:999px;background:var(--success-soft);border:1px solid color-mix(in srgb,var(--success) 30%,transparent);color:var(--success);display:inline-flex;align-items:center;justify-content:center}.auth-page-register__tenant-link{width:100%;display:flex;flex-direction:column;gap:6px;padding:16px 20px;border:1px solid var(--border-1);border-radius:14px;background:var(--bg-card-2);margin-top:6px}.auth-page-register__tenant-link-label{font-family:var(--auth-font-mono);font-size:10px;letter-spacing:1.5px;text-transform:uppercase;color:var(--text-3)}.auth-page-register__tenant-link-url{font-family:var(--auth-font-mono);font-size:16px;font-weight:600;color:var(--text-1);overflow-wrap:anywhere}.auth-page-register__complete-actions{display:flex;flex-wrap:wrap;justify-content:center;gap:10px;margin-top:4px}.auth-page-register__summary{display:grid;grid-template-columns:1fr;grid-gap:12px;gap:12px;margin-top:16px;width:100%}.auth-page-register__summary>div{padding:12px 16px;background:var(--bg-card-2);border-radius:12px;display:flex;flex-direction:column;gap:2px;text-align:left}@media (min-width:640px){.auth-page-register__summary{grid-template-columns:repeat(3,1fr)}}.auth-page-register__summary dt{font-family:var(--auth-font-mono);font-size:10px;letter-spacing:1.5px;color:var(--text-3);text-transform:uppercase;margin:0}.auth-page-register__summary dd{font-family:var(--auth-font-sans);font-size:15px;color:var(--text-1);font-weight:500;margin:0}.auth-page-register__step-header{display:none}.auth-page-register__step-counter{font-family:var(--auth-font-mono);font-size:11px;letter-spacing:1.5px;color:var(--text-3);text-transform:uppercase;font-feature-settings:"tnum";font-variant-numeric:tabular-nums;min-width:32px;text-align:right}.auth-page-register__cta--mobile{display:none}.auth-page-register__cta--desktop{display:block}@media (max-width:1023px){.auth-page-register__grid{grid-template-columns:1fr;min-height:auto}.auth-page-register__brand,.auth-page-register__form{width:100%;max-width:560px;margin-inline:auto}.auth-page-register.auth-surface,.auth-page-register.auth-surface--lg,.auth-page-register.auth-surface--striped{background:transparent;box-shadow:none;border-radius:0}.auth-page-register.auth-surface--striped:before{display:none}.auth-page-register__brand{padding:0 4px;gap:clamp(12px,2.6vh,28px);border:none;background:transparent}.auth-shell .auth-page-register__brand .auth-testimonial,.auth-shell .auth-page-register__brand .auth-trial,.auth-shell .auth-page-register__brand-foot,.auth-shell .auth-page-register__subtitle-desktop,.auth-shell .auth-page-register__subtitle-form-desktop,.auth-shell .auth-page-register__title-desktop,.auth-shell .auth-page-register__trial-badge{display:none}.auth-page-register__brand-head{flex-wrap:nowrap;gap:12px}.auth-page-register__launcher{display:flex;flex-direction:column;gap:14px;width:100%}.auth-page-register__trial-badge-mobile{display:flex;justify-content:center}.auth-page-register__trial-badge-mobile .badge{font-family:var(--auth-font-sans)}.auth-shell .auth-page-register__hero-desktop{display:block;font-size:34px;letter-spacing:-.8px;line-height:1.05;margin:0}.auth-page-register__form{padding:0 4px;margin-top:14px}.auth-page-register__form-inner{position:relative;overflow:hidden}.auth-page-register__form-inner>*{position:relative}.auth-shell .auth-page-register__step-header{display:flex;flex-direction:column;gap:6px}.auth-page-register__steps{justify-content:center;margin-bottom:6px}.auth-page-register__step-title{line-height:1.12;letter-spacing:-.6px;margin:0}.auth-page-register__stack{margin-top:0}.auth-page-register__complete{padding:0;gap:12px}.auth-page-register__complete-mark{width:48px;height:48px}.auth-page-register__tenant-link{padding:12px 16px;margin-top:2px}.auth-page-register__summary{margin-top:6px;gap:8px}.auth-page-register__summary>div{padding:10px 14px}.auth-page-register__form-stack .auth-section-label,.auth-page-register__form-stack[data-step="0"] .auth-page-register__step--2,.auth-page-register__form-stack[data-step="0"] .auth-page-register__step--3,.auth-page-register__form-stack[data-step="1"] .auth-page-register__step--1,.auth-page-register__form-stack[data-step="1"] .auth-page-register__step--3,.auth-page-register__form-stack[data-step="2"] .auth-page-register__step--1,.auth-page-register__form-stack[data-step="2"] .auth-page-register__step--2,.auth-page-register__stack[data-step="1"] .auth-page-register__google-section,.auth-page-register__stack[data-step="2"] .auth-page-register__google-section{display:none}.auth-page-register__captcha{margin:2px 0;transform:scale(.95);transform-origin:left center}.auth-page-register__cta--desktop{display:none}.auth-page-register__cta--mobile{display:flex;gap:10px;align-items:stretch;margin-top:8px}}.auth-page-finalize{width:100%;max-width:560px;padding:0}.auth-page-finalize__panel{display:flex;flex-direction:column;gap:14px;padding:48px 48px 44px}.auth-page-finalize__title{margin:6px 0 0}.auth-page-finalize__error-tag{display:inline-flex;align-items:center;gap:8px;padding:6px 12px;border-radius:999px;font-family:var(--auth-font-sans);font-size:12px;font-weight:500;background:var(--error-soft);color:var(--error);align-self:flex-start}.auth-page-finalize .oauth-profile-card{margin:6px 0}@media (max-width:767px){.auth-page-finalize__panel{padding:32px 24px}}.auth-page-forgot{width:100%;max-width:520px;padding:0}.auth-page-forgot__brand{display:flex;flex-direction:column;gap:14px;padding:40px 40px 24px}.auth-page-forgot__brand-head{display:flex;justify-content:space-between;align-items:center}.auth-page-forgot__hero{margin:0}.auth-page-forgot__form{padding:0 40px 36px}.auth-page-forgot__form,.auth-page-forgot__form-inner{display:flex;flex-direction:column;gap:14px}.auth-page-forgot__back{display:inline-flex;align-items:center;gap:6px;align-self:flex-start;font-family:var(--auth-font-sans);font-size:13px;font-weight:500;color:var(--text-3);text-decoration:none;margin-top:4px}.auth-page-forgot__back:hover{color:var(--brand-500)}.auth-page-forgot__foot{margin:0;text-align:center;font-family:var(--auth-font-sans);font-size:14px;color:var(--text-2)}.auth-page-forgot__foot-link{color:var(--brand-500);font-weight:600;text-decoration:none}.auth-page-forgot__foot-link:hover{text-decoration:underline}.auth-page-forgot__sent{display:flex;flex-direction:column;gap:14px}.auth-page-forgot__sent-card{display:flex;gap:12px;padding:14px 16px;background:var(--success-soft);border-radius:12px;box-shadow:inset 0 0 0 1px color-mix(in srgb,var(--success) 20%,transparent)}.auth-page-forgot__sent-icon{width:32px;height:32px;border-radius:999px;background:var(--success);color:#fff;display:inline-flex;align-items:center;justify-content:center;flex-shrink:0}.auth-page-forgot__sent-title{font-family:var(--auth-font-sans);font-weight:600;font-size:14px;color:var(--text-1);margin-bottom:2px}.auth-page-forgot__sent-body{font-family:var(--auth-font-sans);font-size:13px;color:var(--text-2);line-height:1.5}.auth-page-forgot__eyebrow-desktop,.auth-page-forgot__tag-desktop{display:block}.auth-shell .auth-page-forgot .auth-logo__caption,.auth-shell .auth-page-forgot__form-intro{display:none}@media (max-width:1023px){.auth-page-forgot.auth-surface,.auth-page-forgot.auth-surface--lg,.auth-page-forgot.auth-surface--striped{background:transparent;box-shadow:none;border-radius:0}.auth-page-forgot.auth-surface--striped:before{display:none}.auth-page-forgot__brand,.auth-page-forgot__form{width:100%;max-width:560px;margin-inline:auto}.auth-page-forgot__brand{padding:0 4px;gap:clamp(12px,2.6vh,28px)}.auth-shell .auth-page-forgot__eyebrow-desktop,.auth-shell .auth-page-forgot__tag-desktop{display:none}.auth-shell .auth-page-forgot .auth-logo__caption{display:block}.auth-shell .auth-page-forgot__subtitle{display:none}.auth-shell .auth-page-forgot__form-intro{display:block;font-size:14px;line-height:1.55;margin:0}.auth-page-forgot__brand-head{flex-wrap:nowrap;gap:12px}.auth-page-forgot__form{padding:0;margin-top:14px}.auth-page-forgot__form-inner{position:relative;overflow:hidden}.auth-page-forgot__form-inner>*{position:relative}.auth-page-forgot__back{align-self:center;margin-top:0}.auth-page-forgot__foot{margin-top:14px}}.auth-page-reset{width:100%;max-width:480px;padding:0}.auth-page-reset__panel{display:flex;flex-direction:column;gap:14px;padding:48px 48px 44px}.auth-page-reset__panel--state{align-items:flex-start;text-align:left}.auth-page-reset__state-icon{width:56px;height:56px;border-radius:999px;display:inline-flex;align-items:center;justify-content:center}.auth-page-reset__state-icon--error{background:var(--error-soft);color:var(--error)}.auth-page-reset__state-icon--success{background:var(--success-soft);color:var(--success)}.auth-page-reset__title{margin:4px 0 0}.auth-page-reset__form{display:flex;flex-direction:column;gap:14px;margin-top:8px}.auth-page-reset__strength{margin-top:8px}.auth-page-reset__strength-bars{display:flex;gap:4px}.auth-page-reset__strength-bar{flex:1 1;height:4px;border-radius:999px;background:var(--surface-sunken);transition:background .2s}.auth-page-reset__strength-bar--lvl-1{background:var(--error)}.auth-page-reset__strength-bar--lvl-2,.auth-page-reset__strength-bar--lvl-3{background:var(--warning)}.auth-page-reset__strength-bar--lvl-4{background:var(--success)}.auth-page-reset__strength-label{margin:6px 0 0;font-family:var(--auth-font-mono);font-size:10px;letter-spacing:1.5px;color:var(--text-3);text-transform:uppercase}.auth-page-reset__strength-label strong{color:var(--text-1)}.auth-page-reset__checks{list-style:none;margin:6px 0 0;padding:0;display:flex;flex-direction:column;gap:2px}.auth-page-reset__check{display:flex;align-items:center;gap:6px;font-family:var(--auth-font-sans);font-size:11px;color:var(--text-3)}.auth-page-reset__check>svg{opacity:.3}.auth-page-reset__check--ok{color:var(--success)}.auth-page-reset__check--ok>svg{opacity:1}.auth-page-reset__foot{margin:14px 0 0;text-align:center;font-family:var(--auth-font-sans);font-size:14px;color:var(--text-2)}.auth-page-reset__foot-link{color:var(--brand-500);font-weight:600;text-decoration:none}.auth-page-reset__foot-link:hover{text-decoration:underline}@media (max-width:767px){.auth-page-reset__panel{padding:32px 24px}}.toggle-row{display:flex;align-items:center;gap:12px;padding:12px 14px;border:1px solid var(--border-1);border-radius:var(--r-md);background:var(--bg-card);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;transition:border-color .12s ease,background .12s ease}.toggle-row:hover{border-color:var(--border-2);background:var(--soft-hover)}.toggle-row__icon{width:28px;height:28px;border-radius:var(--r-sm);display:grid;place-items:center;background:var(--bg-card-2);color:var(--admin-500);flex-shrink:0}.toggle-row__label{flex:1 1;font-size:13.5px;font-weight:500;color:var(--text-1);min-width:0}.toggle-row input[type=checkbox]{-moz-appearance:none;appearance:none;-webkit-appearance:none;width:20px;height:20px;margin:0;border:1px solid var(--border-2);border-radius:5px;background:var(--bg-input);cursor:pointer;position:relative;flex-shrink:0;transition:background .12s,border-color .12s}.toggle-row input[type=checkbox]:hover{border-color:var(--text-3)}.toggle-row input[type=checkbox]:checked{background:var(--admin-500);border-color:var(--admin-500)}.toggle-row input[type=checkbox]:checked:after{content:"";position:absolute;left:6px;top:2px;width:5px;height:10px;border:solid var(--on-admin);border-width:0 2px 2px 0;transform:rotate(45deg)}.toggle-switch{display:inline-flex;align-items:center;gap:10px}.toggle-switch__control{position:relative;flex-shrink:0;border:1px solid var(--border-2);border-radius:var(--r-pill);background:var(--bg-card-2);cursor:pointer;box-shadow:inset 0 1px 1px var(--inset-shadow);transition:background .15s ease,border-color .15s ease,box-shadow .15s ease}.toggle-switch__control:focus-visible{outline:none;box-shadow:0 0 0 3px var(--field-border-focus);border-color:var(--brand-500)}.toggle-switch__control.is-checked{background:var(--brand-500);border-color:var(--brand-600);box-shadow:inset 0 1px 0 var(--inset-highlight)}.toggle-switch--success .toggle-switch__control.is-checked{background:var(--success);border-color:color-mix(in srgb,var(--success) 78%,var(--shade-drop))}.toggle-switch__control.is-disabled{opacity:.55;cursor:not-allowed}.toggle-switch__thumb{position:absolute;top:50%;left:2px;aspect-ratio:1/1;border-radius:50%;background:var(--bg-card);border:1px solid color-mix(in srgb,var(--text-3) 16%,var(--border-1));box-shadow:0 1px 2px var(--shade-drop);transform:translateY(-50%);transition:transform .15s ease,border-color .15s ease}.toggle-switch__control.is-checked .toggle-switch__thumb{border-color:color-mix(in srgb,var(--on-primary) 40%,transparent)}.toggle-switch--sm .toggle-switch__control{width:34px;height:20px}.toggle-switch--sm .toggle-switch__thumb{width:14px}.toggle-switch--sm .toggle-switch__control.is-checked .toggle-switch__thumb{transform:translate(14px,-50%)}.toggle-switch--md .toggle-switch__control{width:44px;height:24px}.toggle-switch--md .toggle-switch__thumb{width:18px}.toggle-switch--md .toggle-switch__control.is-checked .toggle-switch__thumb{transform:translate(20px,-50%)}.toggle-switch--lg .toggle-switch__control{width:52px;height:30px}.toggle-switch--lg .toggle-switch__thumb{width:24px}.toggle-switch--lg .toggle-switch__control.is-checked .toggle-switch__thumb{transform:translate(22px,-50%)}.toggle-switch__label{font-family:var(--field-font);font-size:var(--field-text-size);line-height:1.2;color:var(--text-1);cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none}.toggle-switch__label.is-disabled{opacity:.55;cursor:not-allowed}.toggle-card{display:grid;grid-template-columns:auto minmax(0,1fr);grid-gap:14px;gap:14px;align-items:start;padding:14px;border:1px solid var(--border-1);border-radius:var(--r-md);background:var(--bg-card)}.toggle-card--compact{align-items:center;gap:10px;padding:10px 12px}.toggle-card__content{min-width:0}.toggle-card__title{margin:0;color:var(--text-1);font-size:14px;font-weight:600;line-height:1.35}.toggle-card__text{margin:4px 0 0;color:var(--text-3);font-size:12px;line-height:1.45}.toggle-card--compact .toggle-card__text{margin-top:2px;line-height:1.35}
/*# sourceMappingURL=26302d0e4c39708a.css.map*/