:root{--ocean-abyss:#0a3d5c;--ocean-deep:#0f6e8f;--ocean-mid:#1490b8;--ocean-teal:#1aa3c7;--ocean-cyan:#06b6d4;--ocean-sky:#22d3ee;--ocean-foam:#bae6fd59;--ocean-wave-height:min(36vh, 300px);--app-bg:#f0f7fc;--app-bg-accent:linear-gradient(180deg, #bae6fd59 0%, #f0f7fc00 28%);--surface:#fff;--surface-muted:#f8fafc;--surface-border:#e2e8f0;--sidebar-bg:#1182a8;--sidebar-bg-hover:#ffffff1f;--sidebar-active:linear-gradient(135deg, #ffffff38 0%, #22d3ee47 100%);--sidebar-text:#ffffffd1;--sidebar-text-active:#fff;--sidebar-scrollbar-track:#ffffff14;--sidebar-scrollbar-thumb:#ffffff47;--sidebar-scrollbar-thumb-hover:#e0f2fe8c;--sidebar-scrollbar-thumb-active:#ffffffb3;--brand-500:#22b8e8;--brand-600:#0ea5e9;--brand-700:#0284c7;--primary-gradient:linear-gradient(135deg, var(--ocean-deep) 0%, var(--ocean-mid) 50%, var(--ocean-teal) 100%);--brand-glow:#0ea5e973;--status-success:#059669;--status-success-bg:#ecfdf5;--status-warning:#d97706;--status-warning-bg:#fffbeb;--status-error:#dc2626;--status-error-bg:#fef2f2;--status-info:#0284c7;--status-info-bg:#f0f9ff;--status-neutral:#64748b;--status-neutral-bg:#f1f5f9;--card-bg:#fffffff0;--card-border:#ffffffb8;--card-shadow:0 4px 6px #041e330a, 0 24px 48px #041e3324, 0 0 0 1px #ffffff80 inset;--shadow-sm:0 1px 2px #041e330f;--shadow-md:0 4px 16px #041e3314;--radius-sm:8px;--radius-md:12px;--radius-lg:16px;--sidebar-width:272px;--text-primary:#0f172a;--text-secondary:#475569;--text-muted:#64748b;--text-brand:#0369a1;--input-bg:#f8fafc;--input-border:#e2e8f0;--input-border-focus:#38bdf8;--input-ring:#38bdf847;--input-placeholder:#94a3b8;--error-bg:#fef2f2;--error-border:#fecaca;--error-text:#b91c1c;--font-sans:"Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", sans-serif;--ease-out-expo:cubic-bezier(.16, 1, .3, 1);--duration-fast:.15s;--duration-normal:.28s;--duration-slow:8s}*,:before,:after{box-sizing:border-box}html,body,#root{height:100%;margin:0}body{font-family:var(--font-sans);color:var(--text-primary);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;font-size:16px;line-height:1.5;overflow-x:hidden}#root{width:100%;max-width:none;text-align:initial;border:none;display:block}button,input{font:inherit}a{color:var(--brand-600);transition:color var(--duration-fast) ease;text-decoration:none}a:hover{color:var(--brand-700)}a:focus-visible{outline:2px solid var(--brand-500);outline-offset:2px;border-radius:4px}:focus-visible{outline:2px solid var(--brand-500);outline-offset:2px}.sr-only{clip:rect(0, 0, 0, 0);white-space:nowrap;border:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.auth-boot{background:var(--app-bg);min-height:100vh;color:var(--text-secondary);flex-direction:column;justify-content:center;align-items:center;gap:1rem;display:flex}.auth-boot__spinner{border:3px solid var(--surface-border);border-top-color:var(--brand-600);border-radius:50%;width:2.25rem;height:2.25rem;animation:.75s linear infinite auth-boot-spin}.auth-boot__text{font-size:.9375rem;font-weight:500}@keyframes auth-boot-spin{to{transform:rotate(360deg)}}.toast{pointer-events:auto;opacity:0;width:min(22rem,100vw - 2rem);transition:opacity .38s var(--ease-out-expo), transform .42s var(--ease-out-expo);background:#fff;border:1px solid #e2e8f0f2;border-radius:14px;grid-template-columns:auto 1fr auto;align-items:start;gap:.875rem;padding:1rem 1rem 1.125rem;display:grid;position:relative;overflow:hidden;transform:translate(1.25rem)scale(.96);box-shadow:0 4px 6px #0f172a0a,0 16px 40px #0f172a1f}.toast--visible{opacity:1;transform:translate(0)scale(1)}.toast--exit{opacity:0;transition-duration:.28s;transform:translate(1.5rem)scale(.94)}.toast__icon{border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;display:flex}.toast__icon-svg{width:1.25rem;height:1.25rem}.toast__icon--success{color:var(--status-success);background:var(--status-success-bg)}.toast__icon--error{color:var(--status-error);background:var(--status-error-bg)}.toast__icon--info{color:var(--status-info);background:var(--status-info-bg)}.toast__icon--warning{color:var(--status-warning);background:var(--status-warning-bg)}.toast__body{min-width:0;padding-top:.125rem}.toast__title{color:var(--text-primary);margin:0 0 .2rem;font-size:.875rem;font-weight:700;line-height:1.3}.toast__message{color:var(--text-secondary);margin:0;font-size:.875rem;font-weight:500;line-height:1.45}.toast__close{width:1.75rem;height:1.75rem;color:var(--text-muted);cursor:pointer;transition:background var(--duration-fast), color var(--duration-fast);background:0 0;border:none;border-radius:8px;justify-content:center;align-items:center;margin:-.25rem -.25rem 0 0;padding:0;display:flex}.toast__close:hover{background:var(--surface-muted);color:var(--text-primary)}.toast__close-icon{width:1rem;height:1rem}.toast__progress{background:#e2e8f0a6;height:3px;position:absolute;bottom:0;left:0;right:0}.toast__progress-bar{transform-origin:0;width:100%;height:100%;animation-name:toast-progress-shrink;animation-timing-function:linear;animation-fill-mode:forwards}.toast--success .toast__progress-bar{background:linear-gradient(90deg,#059669,#34d399)}.toast--error .toast__progress-bar{background:linear-gradient(90deg,#dc2626,#f87171)}.toast--info .toast__progress-bar{background:linear-gradient(90deg,#0284c7,#38bdf8)}.toast--warning .toast__progress-bar{background:linear-gradient(90deg,#d97706,#fbbf24)}@keyframes toast-progress-shrink{0%{transform:scaleX(1)}to{transform:scaleX(0)}}@media (prefers-reduced-motion:reduce){.toast{transition:opacity .2s;transform:none}.toast--visible,.toast--exit{transform:none}.toast__progress-bar{animation:none;transform:scaleX(0)}}.notification-stack{z-index:10000;pointer-events:none;flex-direction:column;gap:.75rem;display:flex;position:fixed;top:1.25rem;right:1.25rem}@media (width<=480px){.notification-stack{align-items:stretch;top:.75rem;left:.75rem;right:.75rem}}.data-files{pointer-events:none;position:fixed;inset:0;overflow:hidden}.data-files--deep{z-index:4}.data-files--shallow{z-index:6}.data-files__item{top:var(--file-top);width:var(--file-size);animation:file-drift var(--file-duration) linear infinite;animation-delay:var(--file-delay);will-change:transform;position:absolute;left:-6rem}.data-files__doc{width:100%;min-width:var(--file-size);transform-origin:50%;animation:4.5s ease-in-out infinite file-bob;animation-delay:var(--file-delay);background:#ffffffeb;border:1px solid #ffffffa6;border-radius:12px;flex-direction:column;gap:.35rem;padding:.65rem .75rem .7rem;display:flex;box-shadow:0 4px 14px #041e332e,0 0 0 1px #0ea5e914}.data-files--deep .data-files__doc{opacity:.6;filter:blur(.35px)}.data-files--shallow .data-files__doc{opacity:.75}.data-files__ext{letter-spacing:.04em;text-transform:uppercase;color:#fff;border-radius:5px;align-self:flex-start;padding:.15rem .45rem;font-size:.6875rem;font-weight:700;line-height:1.2}.data-files__name{color:#0f172a;letter-spacing:-.02em;white-space:nowrap;text-overflow:ellipsis;max-width:100%;font-size:.8125rem;font-weight:600;overflow:hidden}.data-files__meta{color:#64748b;text-transform:uppercase;letter-spacing:.06em;font-size:.625rem;font-weight:500}@keyframes file-drift{0%{opacity:0;transform:translate(-10vw)rotate(-6deg)}8%{opacity:1}88%{opacity:1}to{opacity:0;transform:translate(calc(100vw + 12rem))rotate(5deg)}}@keyframes file-bob{0%,to{transform:translateY(0)rotate(-2deg)}50%{transform:translateY(-6px)rotate(2deg)}}@media (width<=640px){.data-files__item{animation-duration:calc(var(--file-duration) * .85)}.data-files--deep .data-files__doc{opacity:.45}.data-files--shallow .data-files__doc{opacity:.7}}@media (prefers-reduced-motion:reduce){.data-files__item,.data-files__doc{opacity:.35;animation:none}.data-files__item{left:15%}.data-files__item:nth-child(2){left:55%}.data-files__item:nth-child(3){left:35%}}.ocean-sky{z-index:0;background:var(--ocean-abyss);position:fixed;inset:0;overflow:hidden}.ocean-sky__gradient{background:radial-gradient(ellipse 80% 60% at 50% 0%, #22d3ee2e, transparent 55%), radial-gradient(ellipse 70% 50% at 85% 20%, #06b6d41f, transparent 50%), linear-gradient(165deg, var(--ocean-abyss) 0%, var(--ocean-deep) 28%, var(--ocean-mid) 58%, var(--ocean-teal) 82%, #0c4a6e 100%);position:absolute;inset:0}.ocean-sky__depth{pointer-events:none;background:radial-gradient(circle at 50% 120%,#041e338c 0%,#0000 55%);position:absolute;inset:0}.ocean-sky__shimmer{pointer-events:none;background:linear-gradient(105deg,#0000 40%,#ffffff0a 48%,#ffffff14 50%,#ffffff0a 52%,#0000 60%);animation:14s ease-in-out infinite ocean-shimmer;position:absolute;inset:-20% -10%}@keyframes ocean-shimmer{0%,to{opacity:.4;transform:translate(-8%)skew(-4deg)}50%{opacity:.85;transform:translate(8%)skew(-4deg)}}@media (prefers-reduced-motion:reduce){.ocean-sky__shimmer{animation:none}}.ocean-waves{z-index:20;height:var(--ocean-wave-height);pointer-events:none;position:fixed;inset:auto 0 0}.ocean-waves__layers{position:absolute;inset:0}.ocean-waves__layer{will-change:transform;width:200%;display:flex;position:absolute;bottom:0;left:0;right:0}.ocean-waves__layer svg{flex:0 0 50%;width:50%;height:auto;display:block}.ocean-waves__layer--back{opacity:.5;animation:22s linear infinite wave-drift;bottom:10%}.ocean-waves__layer--back path{fill:#085078b8}.ocean-waves__layer--mid{opacity:.72;animation:16s linear infinite reverse wave-drift;bottom:4%}.ocean-waves__layer--mid path{fill:#068caac7}.ocean-waves__layer--front{opacity:.92;animation:12s linear infinite wave-drift;bottom:-1%}.ocean-waves__layer--front path{fill:#0ea5e98c}@keyframes wave-drift{0%{transform:translate(0)}to{transform:translate(-50%)}}.ocean-waves__surface-glow{background:radial-gradient(ellipse at center, var(--ocean-foam) 0%, transparent 70%);filter:blur(24px);opacity:.75;width:min(90vw,720px);height:100px;animation:6s ease-in-out infinite surface-pulse;position:absolute;bottom:22%;left:50%;transform:translate(-50%)}@keyframes surface-pulse{0%,to{opacity:.55;transform:translate(-50%)scale(1)}50%{opacity:.9;transform:translate(-50%)scale(1.05)}}@media (prefers-reduced-motion:reduce){.ocean-waves__layer,.ocean-waves__surface-glow{animation:none}}.sky-clouds{z-index:2;pointer-events:none;position:fixed;inset:0;overflow:hidden}.sky-clouds__rain{top:8%;left:0;right:0;bottom:var(--ocean-wave-height);z-index:1;position:fixed;overflow:hidden;-webkit-mask-image:linear-gradient(#0000 0%,#00000080 6%,#000 14% 92%,#0000 100%);mask-image:linear-gradient(#0000 0%,#00000080 6%,#000 14% 92%,#0000 100%)}.sky-clouds__drop{top:-5%;left:var(--drop-left);width:1.5px;height:var(--drop-height);opacity:0;animation:rain-to-waves var(--drop-duration) linear infinite;animation-delay:var(--drop-delay);background:linear-gradient(#fff0 0%,#bae6fd73 30%,#7dd3fcb3 100%);border-radius:999px;position:absolute}@keyframes rain-to-waves{0%{opacity:0;transform:translateY(0)translate(0)}6%{opacity:.55}92%{opacity:.4}to{transform:translateY(calc(100% + 1.5rem)) translateX(var(--drop-drift));opacity:0}}.sky-clouds__unit{top:var(--cloud-top);z-index:2;animation:cloud-pass var(--cloud-duration) linear infinite;animation-delay:var(--cloud-delay);will-change:transform;flex-direction:column;align-items:center;display:flex;position:absolute;left:0}@keyframes cloud-pass{0%{transform:translate(-32vw)}to{transform:translate(118vw)}}.sky-clouds__cloud-wrap{filter:drop-shadow(0 10px 24px #0f172a24);position:relative}.cloud-shape{transform-origin:50%;width:10rem;height:3.25rem;position:relative}.cloud-shape__puff{background:linear-gradient(#fffffff7 0%,#e2f0ffe0 100%);border-radius:50%;position:absolute;box-shadow:inset 0 -4px 10px #94a3b81f,0 2px 8px #ffffff26}.cloud-shape__puff--a{width:3.5rem;height:3.5rem;top:.35rem;left:.5rem}.cloud-shape__puff--b{width:4.5rem;height:4.5rem;top:0;left:2.75rem}.cloud-shape__puff--c{width:3.75rem;height:3.75rem;top:.45rem;left:5.5rem}.cloud-shape__puff--d{border-radius:999px;width:5.5rem;height:2.25rem;top:1.65rem;left:1.75rem}.sky-clouds__flash{z-index:4;opacity:0;background:radial-gradient(ellipse 55% 40% at var(--bolt-x) 18%, #ffffff6b 0%, #bae6fd1f 35%, transparent 70%), linear-gradient(180deg, #ffffff14 0%, transparent 45%);transition:opacity 40ms ease-out;position:fixed;inset:0}.sky-clouds__flash--active{opacity:1;transition:opacity 60ms ease-in}.sky-clouds__bolt{z-index:5;opacity:0;filter:drop-shadow(0 0 12px #ffffffe6)drop-shadow(0 0 28px #38bdf8bf);width:2.25rem;height:auto;transition:opacity 50ms ease-out, transform 80ms var(--ease-out-expo);pointer-events:none;margin-left:-1.125rem;position:fixed;top:6%;transform:scale(.85)translateY(-8px)}.sky-clouds__bolt--active{opacity:1;transition:opacity 40ms ease-in, transform 60ms var(--ease-out-expo);transform:scale(1)translateY(0)}.sky-clouds:after{content:"";inset:0 0 calc(var(--ocean-wave-height) + 10%) 0;pointer-events:none;z-index:0;background:linear-gradient(#bae6fd12 0%,#0000 55%);position:absolute}@media (width<=640px){.cloud-shape{width:8rem;height:2.75rem}.cloud-shape__puff--a{width:2.75rem;height:2.75rem}.cloud-shape__puff--b{width:3.5rem;height:3.5rem;left:2.1rem}.cloud-shape__puff--c{width:3rem;height:3rem;left:4.25rem}.cloud-shape__puff--d{width:4.25rem;height:1.75rem;top:1.35rem;left:1.35rem}.sky-clouds__drop{width:1px}.sky-clouds__bolt{width:1.75rem;margin-left:-.875rem}}@media (prefers-reduced-motion:reduce){.sky-clouds__unit{animation:none}.sky-clouds__unit:nth-child(4){top:5%;left:12%}.sky-clouds__unit:nth-child(5){top:24%;left:58%}.sky-clouds__unit:nth-child(6){top:40%;left:30%}.sky-clouds__unit:nth-child(7){display:none}.sky-clouds__drop{opacity:.2;animation:none;top:30%}.sky-clouds__flash,.sky-clouds__bolt{display:none}}.billing-cancel-page{width:100%;min-height:100svh;position:relative;overflow:hidden}.billing-cancel-page__main{z-index:10;isolation:isolate;justify-content:center;align-items:center;min-height:100svh;padding:1.5rem 1.25rem 14vh;display:flex;position:relative}.billing-cancel-page__card{z-index:1;isolation:isolate;text-align:center;background:radial-gradient(100% 80% at 50% 0,#67e8f938,#0000 58%),radial-gradient(80% 70% at 100% 100%,#7dd3fc1f,#0000 52%),linear-gradient(155deg,#fffffffa 0%,#f0f9fffa 42%,#f8fafcfa 100%);border:1px solid #0ea5e929;border-radius:22px;width:min(100%,460px);padding:clamp(1.75rem,4vw,2.5rem) clamp(1.25rem,4vw,2rem) 2rem;animation:.85s cubic-bezier(.16,1,.3,1) both bcp-enter;position:relative;overflow:hidden;box-shadow:0 1px 2px #041e330a,0 24px 56px #041e331a,inset 0 0 0 1px #ffffffa6}.billing-cancel-page__stage{z-index:3;justify-content:center;width:min(100%,240px);margin:0 auto .5rem;display:flex;position:relative}.billing-cancel-page__character-wrap{transform-origin:bottom;width:100%;animation:5s ease-in-out infinite bcp-float;position:relative;transform:scale(.88)}.billing-cancel-page__character-halo{filter:blur(4px);background:radial-gradient(circle at 40% 45%,#67e8f947,#0000 55%),radial-gradient(circle at 60% 55%,#7dd3fc38,#0000 58%);border-radius:50%;animation:3.5s ease-in-out infinite bcp-halo-pulse;position:absolute;inset:-20% -15%}.billing-cancel-page__character-shadow{filter:blur(3px);background:radial-gradient(#0ea5e929,#0000 70%);border-radius:50%;width:58%;height:10%;position:absolute;bottom:8%;left:50%;transform:translate(-50%)}.billing-cancel-page__character-svg{z-index:1;width:100%;height:auto;display:block;position:relative}.billing-cancel-page__badge{animation:4s ease-in-out infinite bcp-badge-float}.billing-cancel-page__sparkles{animation:3s ease-in-out infinite bcp-sparkle}.billing-cancel-page__copy{z-index:3;position:relative}.billing-cancel-page__eyebrow{letter-spacing:.08em;text-transform:uppercase;color:#0284c7;margin:0 0 .35rem;font-size:.75rem;font-weight:700}.billing-cancel-page__title{letter-spacing:-.03em;color:var(--text-primary,#0f172a);margin:0 0 .75rem;font-size:clamp(1.35rem,4vw,1.75rem);font-weight:700;line-height:1.15}.billing-cancel-page__message{max-width:22rem;color:var(--text-secondary,#475569);margin:0 auto 1.5rem;font-size:.9375rem;line-height:1.6}.billing-cancel-page__cta{z-index:3;color:#fff;background:linear-gradient(135deg,#0ea5e9 0%,#0284c7 100%);border-radius:12px;justify-content:center;align-items:center;min-height:2.75rem;padding:0 1.25rem;font-size:.9375rem;font-weight:600;text-decoration:none;transition:transform .2s,box-shadow .2s;display:inline-flex;position:relative;box-shadow:0 1px 2px #041e3314,0 10px 24px #0ea5e938}.billing-cancel-page__cta:hover{color:#fff;transform:translateY(-1px);box-shadow:0 1px 2px #041e3314,0 14px 28px #0ea5e947}.billing-cancel-page__cta:focus-visible{outline:2px solid var(--brand-500,#0ea5e9);outline-offset:2px}@keyframes bcp-enter{0%{opacity:0;transform:translateY(18px)scale(.98)}to{opacity:1;transform:translateY(0)scale(1)}}@keyframes bcp-float{0%,to{transform:scale(.88)translateY(0)}50%{transform:scale(.88)translateY(-4px)}}@keyframes bcp-halo-pulse{0%,to{opacity:.75;transform:scale(1)}50%{opacity:1;transform:scale(1.03)}}@keyframes bcp-badge-float{0%,to{transform:translateY(0)}50%{transform:translateY(-3px)}}@keyframes bcp-sparkle{0%,to{opacity:1}50%{opacity:.45}}@media (width<=480px){.billing-cancel-page__main{padding:1rem 1rem 12vh}}@media (prefers-reduced-motion:reduce){.billing-cancel-page__card,.billing-cancel-page__character-wrap,.billing-cancel-page__character-halo,.billing-cancel-page__badge,.billing-cancel-page__sparkles{animation:none!important}}.billing-success-page{width:100%;min-height:100svh;position:relative;overflow:hidden}.billing-success-page__main{z-index:10;isolation:isolate;justify-content:center;align-items:center;min-height:100svh;padding:1.5rem 1.25rem 14vh;display:flex;position:relative}.billing-success-page__card{z-index:1;isolation:isolate;text-align:center;background:radial-gradient(100% 80% at 50% 0,#6ee7b738,#0000 58%),radial-gradient(80% 70% at 100% 100%,#7dd3fc24,#0000 52%),linear-gradient(155deg,#fffffffa 0%,#f0fdf9fa 38%,#f0f9fffa 100%);border:1px solid #0ea5e924;border-radius:22px;width:min(100%,460px);padding:clamp(1.75rem,4vw,2.5rem) clamp(1.25rem,4vw,2rem) 2rem;animation:.85s cubic-bezier(.16,1,.3,1) both bsp-enter;position:relative;overflow:hidden;box-shadow:0 1px 2px #041e330a,0 24px 56px #041e331a,inset 0 0 0 1px #ffffffa6}.billing-success-page__card .pco-celebration-fx__card-zone{clip-path:none;opacity:1}.billing-success-page__stage{z-index:3;justify-content:center;width:min(100%,240px);margin:0 auto .5rem;display:flex;position:relative}.billing-success-page__character-wrap{transform-origin:bottom;width:100%;animation:5s ease-in-out infinite bsp-float;position:relative;transform:scale(.88)}.billing-success-page__character-halo{filter:blur(4px);background:radial-gradient(circle at 40% 45%,#6ee7b759,#0000 55%),radial-gradient(circle at 60% 55%,#7dd3fc47,#0000 58%),radial-gradient(circle,#fde0471f,#0000 65%);border-radius:50%;animation:3.5s ease-in-out infinite bsp-halo-pulse;position:absolute;inset:-20% -15%}.billing-success-page__character-shadow{filter:blur(3px);background:radial-gradient(#10b9812e,#0000 70%);border-radius:50%;width:58%;height:10%;animation:5s ease-in-out infinite bsp-shadow-pulse;position:absolute;bottom:8%;left:50%;transform:translate(-50%)}.billing-success-page__character-svg{z-index:1;width:100%;height:auto;display:block;position:relative}.billing-success-page__trophy{animation:4s ease-in-out infinite bsp-trophy-bob}.billing-success-page__trophy-glow{animation:2.8s ease-in-out infinite bsp-trophy-glow}.billing-success-page__copy{z-index:3;position:relative}.billing-success-page__eyebrow{letter-spacing:.08em;text-transform:uppercase;color:#059669;margin:0 0 .35rem;font-size:.75rem;font-weight:700}.billing-success-page__title{letter-spacing:-.03em;color:var(--text-primary,#0f172a);margin:0 0 .75rem;font-size:clamp(1.35rem,4vw,1.75rem);font-weight:700;line-height:1.15}.billing-success-page__message{max-width:22rem;color:var(--text-secondary,#475569);margin:0 auto 1.5rem;font-size:.9375rem;line-height:1.6}.billing-success-page__cta{z-index:3;color:#fff;background:linear-gradient(135deg,#10b981 0%,#0ea5e9 100%);border-radius:12px;justify-content:center;align-items:center;min-height:2.75rem;padding:0 1.25rem;font-size:.9375rem;font-weight:600;text-decoration:none;transition:transform .2s,box-shadow .2s;display:inline-flex;position:relative;box-shadow:0 1px 2px #041e3314,0 10px 24px #0ea5e938}.billing-success-page__cta:hover{color:#fff;transform:translateY(-1px);box-shadow:0 1px 2px #041e3314,0 14px 28px #0ea5e947}.billing-success-page__cta:focus-visible{outline:2px solid var(--brand-500,#0ea5e9);outline-offset:2px}@keyframes bsp-enter{0%{opacity:0;transform:translateY(18px)scale(.98)}to{opacity:1;transform:translateY(0)scale(1)}}@keyframes bsp-float{0%,to{transform:scale(.88)translateY(0)}50%{transform:scale(.88)translateY(-6px)}}@keyframes bsp-halo-pulse{0%,to{opacity:.85;transform:scale(1)}50%{opacity:1;transform:scale(1.04)}}@keyframes bsp-shadow-pulse{0%,to{opacity:.7;transform:translate(-50%)scaleX(1)}50%{opacity:.45;transform:translate(-50%)scaleX(.92)}}@keyframes bsp-trophy-bob{0%,to{transform:translateY(0)}50%{transform:translateY(-3px)}}@keyframes bsp-trophy-glow{0%,to{opacity:.75}50%{opacity:1}}@media (width<=480px){.billing-success-page__main{padding:1rem 1rem 12vh}}@media (prefers-reduced-motion:reduce){.billing-success-page__card,.billing-success-page__character-wrap,.billing-success-page__character-halo,.billing-success-page__character-shadow,.billing-success-page__trophy,.billing-success-page__trophy-glow{animation:none!important}}.plan-custom-offer{--pco-green:#10b981;--pco-blue:#0ea5e9;--pco-gold:#d4a853;--pco-benefit-stagger:50ms;isolation:isolate;background:radial-gradient(100% 80% at 0 40%,#6ee7b733,#0000 58%),radial-gradient(80% 70% at 100% 60%,#7dd3fc24,#0000 52%),linear-gradient(155deg,#fff 0%,#f0fdf9 38%,#f0f9ff 100%);border-radius:22px;margin-top:1.25rem;padding:clamp(1rem,2.5vw,1.375rem);animation:.9s cubic-bezier(.16,1,.3,1) both pco-enter;position:relative;overflow:hidden;box-shadow:0 1px 2px #041e330a,0 24px 56px #041e3314,0 0 0 1px #0ea5e91a}.plan-custom-offer__border-shimmer{border-radius:inherit;-webkit-mask-composite:xor;pointer-events:none;z-index:4;background:linear-gradient(120deg,#10b98133,#0ea5e973,#d4a8534d,#10b98133) 0 0/240% 240%;padding:1px;animation:5s ease-in-out infinite pco-border-shimmer;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);mask-image:linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.plan-custom-offer__ambient{pointer-events:none;z-index:0;background:radial-gradient(circle at 15% 35%,#10b9811a,#0000 38%),radial-gradient(circle at 85% 65%,#0ea5e914,#0000 36%);animation:10s ease-in-out infinite alternate pco-ambient;position:absolute;inset:0}.plan-custom-offer__hero-glow{pointer-events:none;z-index:1;filter:blur(2px);background:radial-gradient(at 40%,#10b9812e,#0000 68%);width:52%;height:80%;animation:6s ease-in-out infinite alternate pco-hero-glow;position:absolute;top:10%;left:-8%}.pco-celebration-fx{pointer-events:none;z-index:2;position:absolute;inset:0;overflow:hidden}.pco-celebration-fx__left-zone,.pco-celebration-fx__card-zone{position:absolute;inset:0}.pco-celebration-fx__card-zone{clip-path:inset(0 0 0 52%);opacity:.85}.pco-fw-burst{width:0;height:0;transform:translate(-50%, -50%) scale(var(--fw-scale,1));pointer-events:none;position:absolute}.pco-fw-burst--active .pco-fw-burst__core,.pco-fw-burst--active .pco-fw-burst__flash,.pco-fw-burst--active .pco-fw-burst__ray,.pco-fw-burst--active .pco-fw-burst__particle{animation-play-state:running}.pco-fw-burst--done .pco-fw-burst__core,.pco-fw-burst--done .pco-fw-burst__flash,.pco-fw-burst--done .pco-fw-burst__ray,.pco-fw-burst--done .pco-fw-burst__particle{opacity:0;animation:none}.pco-fw-burst__core{background:radial-gradient(circle, var(--fw-c3) 0%, var(--fw-c2) 50%, transparent 75%);width:12px;height:12px;box-shadow:0 0 16px var(--fw-c2), 0 0 32px var(--fw-c1), 0 0 48px #fff6;opacity:0;animation:pco-fw-core 1.25s ease-out var(--fw-delay) forwards;border-radius:50%;animation-play-state:paused;position:absolute;top:-6px;left:-6px}.pco-fw-burst__flash{background:radial-gradient(circle, #ffffff8c 0%, var(--fw-c1) 25%, transparent 70%);opacity:0;width:48px;height:48px;animation:pco-fw-flash 1.1s ease-out var(--fw-delay) forwards;border-radius:50%;animation-play-state:paused;position:absolute;top:-24px;left:-24px}.pco-fw-burst__ray{width:3px;height:calc(36px * var(--fw-scale,1) * var(--ray-len,1));transform-origin:top;transform:rotate(calc(360deg / var(--ray-total) * var(--ray-i))) translateY(0) scaleY(0);background:linear-gradient(to bottom, var(--fw-c3) 0%, var(--fw-c2) 40%, transparent 100%);filter:drop-shadow(0 0 4px var(--fw-c2));opacity:0;animation:pco-fw-ray 1.35s cubic-bezier(.22, 1, .36, 1) var(--fw-delay) forwards;border-radius:3px;animation-play-state:paused;position:absolute;top:0;left:-1.5px}.pco-fw-burst__particle{transform-origin:bottom;background:linear-gradient(to top, var(--fw-c2), var(--fw-c3));width:3px;height:8px;box-shadow:0 0 5px var(--fw-c1);opacity:0;transform:rotate(calc(360deg / var(--p-total) * var(--p-i))) translateY(0);animation:pco-fw-particle 1.5s cubic-bezier(.25, .8, .35, 1) calc(var(--fw-delay) + 50ms) forwards;border-radius:2px;animation-play-state:paused;position:absolute;top:-1px;left:-2px}.pco-speck{opacity:0;pointer-events:none;background:#ffffffd9;border-radius:50%;position:absolute;box-shadow:0 0 4px #0ea5e959}.pco-speck--active{animation:linear infinite pco-speck-rise}.pco-speck--calm{opacity:.35;animation:8s ease-in-out infinite pco-speck-drift}.plan-custom-offer__inner{z-index:3;gap:1rem;display:grid;position:relative}.plan-custom-offer__hero{flex-direction:column;width:100%;display:flex}.plan-custom-offer__hero-body{flex-direction:column;align-items:flex-start;gap:.625rem;width:100%;display:flex}.plan-custom-offer__hero-stage{width:min(100%,210px);box-shadow:none;background:0 0;border:none;border-radius:0;flex-shrink:0;padding:0;position:relative}.plan-custom-offer__character-wrap{transform-origin:bottom;width:100%;animation:5s ease-in-out infinite pco-float;position:relative;transform:scale(.82)}.plan-custom-offer__character-halo{filter:blur(4px);background:radial-gradient(circle at 40% 45%,#6ee7b759,#0000 55%),radial-gradient(circle at 60% 55%,#7dd3fc47,#0000 58%),radial-gradient(circle,#fde0471f,#0000 65%);border-radius:50%;animation:3.5s ease-in-out infinite pco-halo-pulse;position:absolute;inset:-20% -15%}.plan-custom-offer__character-sparks{pointer-events:none;z-index:2;position:absolute;inset:0}.plan-custom-offer__character-sparks span{background:#ffffffe6;border-radius:50%;width:3px;height:3px;animation:3s ease-in-out infinite pco-char-spark;position:absolute;box-shadow:0 0 6px #fbbf2499}.plan-custom-offer__character-sparks span:first-child{animation-delay:0s;top:18%;left:8%}.plan-custom-offer__character-sparks span:nth-child(2){background:#6ee7b7f2;animation-delay:.5s;top:8%;right:12%;box-shadow:0 0 6px #10b98180}.plan-custom-offer__character-sparks span:nth-child(3){animation-delay:1s;top:42%;left:2%}.plan-custom-offer__character-sparks span:nth-child(4){background:#7dd3fcf2;animation-delay:1.4s;top:35%;right:4%}.plan-custom-offer__character-sparks span:nth-child(5){animation-delay:.8s;bottom:28%;left:18%}.plan-custom-offer__character-sparks span:nth-child(6){animation-delay:1.8s;bottom:22%;right:10%}.plan-custom-offer__character-shadow{background:radial-gradient(#10b98152,#0000 72%);border-radius:50%;width:62%;height:12px;animation:5s ease-in-out infinite pco-shadow-pulse;position:absolute;bottom:2%;left:50%;transform:translate(-50%)}.plan-custom-offer__svg{z-index:1;width:100%;height:auto;display:block;position:relative}.plan-custom-offer__trophy-glow{animation:2.2s ease-in-out infinite pco-trophy-glow}.plan-custom-offer__message{text-align:left;width:100%;max-width:none}.plan-custom-offer__seal{letter-spacing:.11em;text-transform:uppercase;color:#0369a1;background:#ffffffd1;border:1px solid #0ea5e940;border-radius:999px;align-items:center;gap:.35rem;margin:0 0 .55rem;padding:.3rem .65rem;font-size:.5625rem;font-weight:700;animation:3s ease-in-out infinite pco-seal-glow;display:inline-flex;box-shadow:0 0 18px #0ea5e924,inset 0 1px #ffffffe6}.plan-custom-offer__seal svg{color:#f59e0b;flex-shrink:0}.plan-custom-offer__headline{letter-spacing:-.03em;color:var(--text-primary);margin:0 0 .45rem;font-size:clamp(1.0625rem,2.6vw,1.375rem);font-weight:800;line-height:1.28}.plan-custom-offer__headline-accent{background:linear-gradient(120deg, var(--pco-green), var(--pco-blue));color:#0000;-webkit-background-clip:text;background-clip:text}.plan-custom-offer__subtext{color:var(--text-secondary);margin:0 0 .55rem;font-size:.8125rem;line-height:1.5}.plan-custom-offer__tenant-note{color:#047857;background:#d1fae599;border:1px solid #10b98133;border-radius:999px;align-items:center;gap:.35rem;margin:0;padding:.28rem .55rem;font-size:.6875rem;font-weight:600;display:inline-flex}.plan-custom-offer__card{-webkit-backdrop-filter:blur(10px);background:#ffffffe0;border:1px solid #ffffffeb;border-radius:16px;flex-direction:column;padding:1rem 1.125rem;animation:.95s cubic-bezier(.16,1,.3,1) .15s both pco-card-enter;display:flex;position:relative;box-shadow:0 1px 3px #041e3308,0 12px 32px #041e330f,inset 0 1px #fffffff2}.plan-custom-offer__card:before{content:"";background:linear-gradient(90deg,#10b981d9 0%,#0ea5e9e6 50%,#d4a853bf 100%);border-radius:16px 16px 0 0;height:2px;position:absolute;inset:0 0 auto}.plan-custom-offer__card-glow{pointer-events:none;background:radial-gradient(at 50% 0,#0ea5e914,#0000 70%);height:48%;position:absolute;inset:-15% 0 auto}.plan-custom-offer__card-header{border-bottom:1px solid #e2e8f0cc;margin-bottom:.625rem;padding-bottom:.625rem;position:relative}.plan-custom-offer__badge{letter-spacing:.08em;text-transform:uppercase;color:#92400e;background:linear-gradient(135deg,#fef3c7fa,#fde68acc);border:1px solid #d4a85361;border-radius:999px;align-items:center;gap:.3rem;margin-bottom:.4rem;padding:.22rem .55rem;font-size:.5625rem;font-weight:700;animation:3.5s ease-in-out infinite pco-badge-glow;display:inline-flex;box-shadow:0 0 14px #d4a85333}.plan-custom-offer__badge svg{color:#b45309}.plan-custom-offer__name{letter-spacing:-.025em;color:var(--text-primary);word-break:normal;overflow-wrap:break-word;-webkit-hyphens:none;hyphens:none;margin:0 0 .2rem;font-size:clamp(1.125rem,2vw,1.375rem);font-weight:800;line-height:1.22}.plan-custom-offer__card-tenant{letter-spacing:.01em;color:var(--text-muted);margin:0 0 .35rem;font-size:.6875rem;font-weight:500}.plan-custom-offer__price,.plan-custom-offer__price-custom{flex-wrap:wrap;align-items:baseline;gap:.15rem .35rem;margin:0;display:flex}.plan-custom-offer__price-custom{flex-direction:column;align-items:flex-start;gap:.08rem}.plan-custom-offer__price-value{letter-spacing:-.04em;color:var(--text-primary);font-size:clamp(1.1875rem,2.4vw,1.4375rem);font-weight:800;line-height:1.05}.plan-custom-offer__price-note{color:var(--text-muted);font-size:.75rem;font-weight:500}.plan-custom-offer__price-custom .plan-custom-offer__price-note{opacity:.88;font-size:.6875rem}.plan-custom-offer__description{color:var(--text-muted);margin:.35rem 0 0;font-size:.75rem;line-height:1.45}.plan-custom-offer__benefits{flex-direction:column;gap:.45rem;display:flex}.plan-custom-offer__benefit-group+.plan-custom-offer__benefit-group{border-top:1px solid #e2e8f08c;padding-top:.45rem}.plan-custom-offer__benefit-title{letter-spacing:.07em;text-transform:uppercase;color:var(--text-muted);margin:0 0 .28rem;font-size:.625rem;font-weight:700}.plan-custom-offer__benefit-list{flex-direction:column;gap:.3rem;margin:0;padding:0;list-style:none;display:flex}.plan-custom-offer__benefit-item{color:var(--text-secondary);animation:.5s cubic-bezier(.16,1,.3,1) both pco-benefit-in;animation-delay:calc(var(--benefit-index,0) * var(--pco-benefit-stagger) + .4s);align-items:center;gap:.45rem;font-size:.75rem;line-height:1.35;display:flex}.plan-custom-offer__check{color:#047857;background:linear-gradient(145deg,#d1fae5f2,#a7f3d0bf);border:1px solid #10b9814d;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;width:1rem;height:1rem;display:flex;box-shadow:0 0 8px #10b9811f}.plan-custom-offer__cta{border-top:1px solid #e2e8f0cc;margin-top:.75rem;padding-top:.625rem}.plan-custom-offer__btn{letter-spacing:-.01em;color:#fff;cursor:pointer;background:linear-gradient(135deg, var(--pco-blue) 0%, var(--pco-green) 100%);border:none;border-radius:11px;justify-content:center;align-items:center;gap:.45rem;width:100%;min-height:2.625rem;padding:.5rem 1rem;font-family:inherit;font-size:.875rem;font-weight:700;transition:transform .25s,box-shadow .25s;display:inline-flex;position:relative;overflow:hidden;box-shadow:0 4px 18px #0ea5e94d,0 8px 28px #10b98133,inset 0 1px #ffffff47}.plan-custom-offer__btn:after{content:"";background:linear-gradient(105deg,#0000 35%,#ffffff3d 50%,#0000 65%);transition:transform .55s;position:absolute;inset:0;transform:translate(-120%)}.plan-custom-offer__btn:hover:not(:disabled){transform:translateY(-2px);box-shadow:0 6px 22px #0ea5e961,0 12px 36px #10b9813d,inset 0 1px #ffffff52}.plan-custom-offer__btn:hover:not(:disabled):after{transform:translate(120%)}.plan-custom-offer__btn:disabled{opacity:.65;cursor:not-allowed}.plan-custom-offer__btn-spinner{animation:.75s linear infinite pco-spin}@keyframes pco-enter{0%{opacity:0;transform:translateY(18px)}to{opacity:1;transform:translateY(0)}}@keyframes pco-card-enter{0%{opacity:0;transform:translateY(22px)}to{opacity:1;transform:translateY(0)}}@keyframes pco-border-shimmer{0%,to{background-position:0%}50%{background-position:100%}}@keyframes pco-ambient{0%{opacity:.85}to{opacity:1}}@keyframes pco-hero-glow{0%{opacity:.7;transform:scale(1)}to{opacity:1;transform:scale(1.04)}}@keyframes pco-fw-core{0%{opacity:0;transform:scale(.2)}12%{opacity:1;transform:scale(1.4)}to{opacity:0;transform:scale(.6)}}@keyframes pco-fw-flash{0%{opacity:0;transform:scale(.1)}15%{opacity:.9}to{opacity:0;transform:scale(2.8)}}@keyframes pco-fw-ray{0%{opacity:0;transform:rotate(calc(360deg / var(--ray-total) * var(--ray-i))) translateY(0) scaleY(.1)}20%{opacity:1}55%{opacity:.85;transform:rotate(calc(360deg / var(--ray-total) * var(--ray-i))) translateY(calc(-42px * var(--fw-scale,1) * var(--ray-len,1))) scaleY(1)}to{opacity:0;transform:rotate(calc(360deg / var(--ray-total) * var(--ray-i))) translateY(calc(-48px * var(--fw-scale,1) * var(--ray-len,1) + 12px)) scaleY(.7)}}@keyframes pco-fw-particle{0%{opacity:0;transform:rotate(calc(360deg / var(--p-total) * var(--p-i))) translateY(0) scaleY(.3)}18%{opacity:1}50%{opacity:.9;transform:rotate(calc(360deg / var(--p-total) * var(--p-i))) translateY(calc(-34px * var(--fw-scale,1) * var(--p-dist,1))) scaleY(1)}to{opacity:0;transform:rotate(calc(360deg / var(--p-total) * var(--p-i))) translateY(calc(-28px * var(--fw-scale,1) * var(--p-dist,1) + 22px)) scaleY(.5)}}@keyframes pco-char-spark{0%,to{opacity:.2;transform:scale(.8)}50%{opacity:.95;transform:scale(1.2)}}@keyframes pco-speck-rise{0%{opacity:0;transform:translateY(6px)}15%{opacity:.7}to{opacity:0;transform:translateY(-28px)}}@keyframes pco-speck-drift{0%,to{opacity:.2;transform:translateY(0)}50%{opacity:.45;transform:translateY(-6px)}}@keyframes pco-float{0%,to{transform:translateY(0)}50%{transform:translateY(-7px)}}@keyframes pco-shadow-pulse{0%,to{opacity:.5;transform:translate(-50%)scaleX(1)}50%{opacity:.32;transform:translate(-50%)scaleX(.8)}}@keyframes pco-halo-pulse{0%,to{opacity:.55;transform:scale(1)}50%{opacity:.85;transform:scale(1.06)}}@keyframes pco-trophy-glow{0%,to{opacity:.4}50%{opacity:.95}}@keyframes pco-seal-glow{0%,to{box-shadow:0 0 14px #0ea5e91f,inset 0 1px #ffffffe6}50%{box-shadow:0 0 26px #0ea5e93d,inset 0 1px #fff}}@keyframes pco-badge-glow{0%,to{box-shadow:0 0 12px #d4a85329}50%{box-shadow:0 0 22px #d4a8534d}}@keyframes pco-benefit-in{0%{opacity:0;transform:translate(-6px)}to{opacity:1;transform:translate(0)}}@keyframes pco-spin{to{transform:rotate(360deg)}}@media (width>=768px){.plan-custom-offer__inner{grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);align-items:center;gap:1.125rem}.plan-custom-offer__hero-body{flex-direction:row;align-items:center;gap:.75rem}.plan-custom-offer__hero-stage{width:168px}.plan-custom-offer__message{flex:1;min-width:0}.plan-custom-offer__headline{font-size:clamp(1rem,1.8vw,1.25rem)}.plan-custom-offer__subtext{margin-bottom:.45rem}.plan-custom-offer__benefits{grid-template-columns:repeat(2,minmax(0,1fr));gap:.45rem .875rem;display:grid}.plan-custom-offer__benefit-group+.plan-custom-offer__benefit-group{border-top:none;padding-top:0}.plan-custom-offer__benefit-group:not(:nth-child(-n+2)){border-top:1px solid #e2e8f073;padding-top:.45rem}}@media (width<=767px){.pco-celebration-fx__card-zone{clip-path:none;opacity:.6}}@media (prefers-reduced-motion:reduce){.plan-custom-offer,.plan-custom-offer__card,.plan-custom-offer__benefit-item,.plan-custom-offer__border-shimmer,.plan-custom-offer__ambient,.plan-custom-offer__hero-glow,.plan-custom-offer__character-wrap,.plan-custom-offer__character-shadow,.plan-custom-offer__character-halo,.plan-custom-offer__trophy-glow,.plan-custom-offer__seal,.plan-custom-offer__badge,.pco-fw-burst__core,.pco-fw-burst__flash,.pco-fw-burst__ray,.pco-fw-burst__particle,.plan-custom-offer__character-sparks span,.pco-speck{animation:none!important}.plan-custom-offer__btn:after{display:none}.plan-custom-offer__btn:hover:not(:disabled){transform:none}}.billing-status-banner-stack{flex-direction:column;gap:0;display:flex}.billing-status-banner{border-bottom:1px solid #0000;padding:.75rem 1.25rem}.billing-status-banner__content{max-width:72rem;margin:0 auto}.billing-status-banner__title{letter-spacing:-.01em;margin:0;font-size:.875rem;font-weight:700}.billing-status-banner__message{margin:.35rem 0 0;font-size:.8125rem;line-height:1.5}.billing-status-banner__progress{background:#00000014;border-radius:999px;height:.375rem;margin-top:.625rem;overflow:hidden}.billing-status-banner__progress-fill{border-radius:inherit;height:100%;transition:width .6s}.billing-status-banner__meta{margin:.35rem 0 0;font-size:.75rem;font-weight:600}.billing-status-banner__link{text-underline-offset:2px;margin-top:.5rem;font-size:.8125rem;font-weight:600;text-decoration:underline;display:inline-block}.billing-status-banner__action{border-radius:var(--radius-sm);background:var(--brand-500);color:#fff;justify-content:center;align-items:center;margin-top:.65rem;padding:.45rem .875rem;font-size:.8125rem;font-weight:600;text-decoration:none;transition:background .16s;display:inline-flex}.billing-status-banner__action:hover{background:var(--brand-600);color:#fff}.billing-status-banner--trial{background:var(--status-info-bg);color:var(--brand-700,#1d4ed8);border-bottom-color:#2563eb26}.billing-status-banner--trial .billing-status-banner__progress-fill{background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan,#06b6d4))}.billing-status-banner--trial .billing-status-banner__link{color:var(--brand-700,#1d4ed8)}.billing-status-banner--danger{background:var(--status-error-bg);color:var(--status-error);border-bottom-color:#dc262633}.billing-status-banner--danger .billing-status-banner__progress-fill{background:var(--status-error)}.billing-status-banner--danger .billing-status-banner__link{color:var(--status-error)}.billing-status-banner--blocked{background:var(--status-warning-bg);color:var(--status-warning);border-bottom-color:#d9770633}.billing-status-banner--blocked .billing-status-banner__link{color:var(--status-warning)}.billing-status-banner--info{background:var(--status-info-bg);color:var(--brand-700,#1d4ed8);border-bottom-color:#2563eb26}.billing-status-banner--info .billing-status-banner__message{margin-top:0}@media (width>=1024px){.billing-status-banner{padding-inline:1.75rem}}.sidebar{--sidebar-padding-x:.875rem;z-index:40;width:var(--sidebar-width);--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark;height:100svh;transition:transform var(--duration-normal) var(--ease-out-expo);border-right:1px solid #ffffff14;position:fixed;top:0;left:0;overflow:hidden;transform:translate(-100%)}.sidebar--open{transform:translate(0)}.sidebar__bg{pointer-events:none;background:radial-gradient(120% 80% at 0 0,#22d3ee24,#0000 50%),radial-gradient(90% 60% at 100% 100%,#0ea5e91f,#0000 45%),linear-gradient(175deg,#0c4a6e 0%,#0e6389 22%,#0f759f 48%,#0a5f7a 78%,#084d63 100%);position:absolute;inset:0;overflow:hidden}.sidebar__bg-glow{filter:blur(48px);opacity:.55;border-radius:50%;position:absolute}.sidebar__bg-glow--top{background:#22d3ee38;width:70%;height:35%;top:-12%;left:-20%}.sidebar__bg-glow--bottom{background:#38bdf81a;width:90%;height:40%;bottom:-20%;left:50%;transform:translate(-50%)}.sidebar__inner{z-index:1;flex-direction:column;height:100%;min-height:0;display:flex;position:relative}.sidebar__brand{padding:1.35rem var(--sidebar-padding-x) 1.1rem;flex-shrink:0}.sidebar__brand-logo{object-fit:contain;width:15rem;height:4rem;display:block}.sidebar__divider{height:1px;margin:0 var(--sidebar-padding-x) .5rem;background:linear-gradient(90deg,#0000,#fff3 50%,#0000);flex-shrink:0}.sidebar__nav{min-height:0;padding:.25rem var(--sidebar-padding-x) .75rem;scrollbar-width:thin;scrollbar-color:#ffffff26 transparent;flex:1;overflow:hidden auto}.sidebar__nav::-webkit-scrollbar{width:4px}.sidebar__nav::-webkit-scrollbar-track{background:0 0}.sidebar__nav::-webkit-scrollbar-thumb{background:#ffffff1f;border-radius:999px}.sidebar__nav::-webkit-scrollbar-thumb:hover{background:#bae6fd59}.sidebar__nav::-webkit-scrollbar-thumb:active{background:#bae6fd73}.sidebar__group{margin-bottom:1.35rem}.sidebar__group:last-child{margin-bottom:.5rem}.sidebar__group-title{text-transform:uppercase;letter-spacing:.1em;color:#ffffff61;margin:0 0 .5rem;padding:0 .65rem;font-size:.625rem;font-weight:600}.sidebar__group ul{margin:0;padding:0;list-style:none}.sidebar__item{margin-bottom:.1rem}.sidebar__subnav{margin:0 0 .35rem;padding:0 0 0 .35rem;list-style:none}.sidebar__sublink{letter-spacing:.02em;color:#ffffff6b;border-radius:6px;margin-left:2.05rem;padding:.28rem .65rem;font-size:.6875rem;font-weight:500;text-decoration:none;transition:color .16s,background .16s;display:block}.sidebar__sublink:hover{color:#ffffffc7;background:#ffffff0d}.sidebar__sublink--active{color:#bae6fd;background:#ffffff12}.sidebar__link{color:#ffffffc7;width:100%;font:inherit;text-align:left;cursor:pointer;transition:background .2s ease, color .2s ease, transform .2s var(--ease-out-expo), box-shadow .2s ease;background:0 0;border:none;border-radius:10px;align-items:center;gap:.7rem;margin-bottom:.2rem;padding:.6rem .75rem;font-size:.8125rem;font-weight:500;text-decoration:none;display:flex;position:relative}.sidebar__link:disabled{opacity:.65;cursor:wait}.sidebar__link-indicator{opacity:0;width:3px;height:0;transition:height .2s var(--ease-out-expo), opacity .2s ease;background:linear-gradient(#67e8f9,#38bdf8);border-radius:0 4px 4px 0;position:absolute;top:50%;left:0;transform:translateY(-50%)}.sidebar__link-icon{opacity:.72;flex-shrink:0;justify-content:center;align-items:center;width:1.25rem;height:1.25rem;transition:opacity .2s;display:flex}.sidebar__link-label{line-height:1.35}.sidebar__link:hover{color:#fff;background:#ffffff14;transform:translate(3px)}.sidebar__link:hover .sidebar__link-icon{opacity:.95}.sidebar__link--active{color:#fff;-webkit-backdrop-filter:blur(10px);background:#ffffff1f;font-weight:600;box-shadow:inset 0 1px #ffffff1f,0 4px 16px #041e3326}.sidebar__link--active:after{content:"";border-radius:inherit;pointer-events:none;border:1px solid #ffffff24;position:absolute;inset:0}.sidebar__link--active .sidebar__link-indicator{opacity:1;height:55%}.sidebar__link--active .sidebar__link-icon{opacity:1;color:#bae6fd;filter:drop-shadow(0 0 6px #22d3ee59)}.sidebar__link--alert{color:#fef3c7eb;background:#b4530938;border:1px solid #fbbf2447}.sidebar__link--alert .sidebar__link-icon{opacity:.95;color:#fcd34d}.sidebar__link--alert:hover{color:#fff;background:#b4530952}.sidebar__link--alert-active,.sidebar__link--alert.sidebar__link--active{color:#fff;background:linear-gradient(135deg,#ea580c73 0%,#b4530961 100%);box-shadow:inset 0 1px #ffffff26,0 4px 16px #78350f40}.sidebar__link--alert-active .sidebar__link-indicator,.sidebar__link--alert.sidebar__link--active .sidebar__link-indicator{opacity:1;background:linear-gradient(#fcd34d,#f97316);height:55%}.sidebar__link--alert-active .sidebar__link-icon,.sidebar__link--alert.sidebar__link--active .sidebar__link-icon{color:#fde68a;filter:drop-shadow(0 0 6px #fbbf2466)}.sidebar__link--education{color:#e0f2fef2;background:#4f46e538;border:1px solid #818cf859}.sidebar__link--education .sidebar__link-icon{opacity:.95;color:#c4b5fd}.sidebar__link--education:hover{color:#fff;background:#4f46e557}.sidebar__link--education-active,.sidebar__link--education.sidebar__link--active{color:#fff;background:linear-gradient(135deg,#6366f180 0%,#4f46e56b 100%);box-shadow:inset 0 1px #ffffff26,0 4px 16px #4338ca47}.sidebar__link--education-active .sidebar__link-indicator,.sidebar__link--education.sidebar__link--active .sidebar__link-indicator{opacity:1;background:linear-gradient(#c4b5fd,#818cf8);height:55%}.sidebar__link--education-active .sidebar__link-icon,.sidebar__link--education.sidebar__link--active .sidebar__link-icon{color:#ede9fe;filter:drop-shadow(0 0 6px #818cf873)}.sidebar__footer{padding:.75rem var(--sidebar-padding-x) 1.1rem;flex-shrink:0}.sidebar__status{-webkit-backdrop-filter:blur(8px);background:#ffffff12;border:1px solid #ffffff1a;border-radius:12px;align-items:center;gap:.65rem;padding:.7rem .8rem;display:flex;box-shadow:inset 0 1px #ffffff0f}.sidebar__status-dot{background:#34d399;border-radius:50%;flex-shrink:0;width:8px;height:8px;animation:2.5s ease-in-out infinite status-pulse;box-shadow:0 0 0 3px #34d39940,0 0 10px #34d39980}@keyframes status-pulse{0%,to{opacity:1}50%{opacity:.75}}.sidebar__status-text{flex-direction:column;gap:.1rem;min-width:0;display:flex}.sidebar__status-title{color:#ffffffeb;letter-spacing:-.01em;font-size:.75rem;font-weight:600}.sidebar__status-meta{color:#bae6fda6;font-size:.6875rem}.sidebar-backdrop{z-index:35;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);opacity:0;pointer-events:none;transition:opacity var(--duration-normal);background:#082f498c;position:fixed;inset:0}.sidebar-backdrop--visible{opacity:1;pointer-events:auto}@media (width>=1024px){.sidebar{transform:translate(0)}.sidebar-backdrop{display:none}}@media (prefers-reduced-motion:reduce){.sidebar__status-dot{animation:none}.sidebar__link:hover{transform:none}}.app-btn{border-radius:var(--radius-sm);cursor:pointer;height:2.25rem;transition:transform var(--duration-fast), box-shadow var(--duration-fast), background var(--duration-fast);border:none;justify-content:center;align-items:center;gap:.4rem;padding:0 .875rem;font-size:.875rem;font-weight:600;display:inline-flex}.app-btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600), var(--brand-500));box-shadow:0 1px 2px #041e330f,0 4px 12px #0ea5e938}.app-btn--primary:hover:not(:disabled){color:#fff;transform:translateY(-1px);box-shadow:0 2px 4px #041e330f,0 6px 16px #0ea5e947}.app-btn--secondary{color:var(--brand-700);background:var(--surface);border:1px solid var(--surface-border)}.app-btn--secondary:hover:not(:disabled){border-color:var(--brand-500);background:var(--status-info-bg)}.app-btn--ghost{color:var(--text-secondary);background:0 0}.app-btn--ghost:hover:not(:disabled){background:var(--surface-muted);color:var(--text-primary)}.app-btn--danger{color:#fff;background:var(--status-error);box-shadow:0 1px 2px #041e330f,0 4px 12px #dc262633}.app-btn--danger:hover:not(:disabled){color:#fff;background:#b91c1c;transform:translateY(-1px);box-shadow:0 2px 4px #041e330f,0 6px 16px #dc262647}.app-btn:disabled{opacity:.55;cursor:not-allowed}.notification-message{flex-direction:column;gap:.85rem;display:flex}.notification-message--plain{color:var(--text-secondary);white-space:pre-wrap;margin:0;font-size:.9375rem;line-height:1.65}.notification-message__lead{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.notification-message__details{background:linear-gradient(#f8fafcf2 0%,#f0f9ff8c 100%);border:1px solid #e2e8f0f2;border-radius:.9rem;flex-direction:column;gap:.45rem;margin:0;padding:.85rem;display:flex}.notification-message__row{background:#ffffffb8;border:1px solid #f1f5f9f2;border-radius:.65rem;grid-template-columns:minmax(7.5rem,38%) 1fr;align-items:center;gap:.65rem 1rem;padding:.55rem .65rem;display:grid}.notification-message__row dt{letter-spacing:.02em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.75rem;font-weight:700}.notification-message__row dd{text-align:right;min-width:0;margin:0}.notification-message__value{color:var(--text-primary);word-break:break-word;font-size:.875rem;font-weight:600}.notification-message__code{max-width:100%;color:var(--brand-700);background:#e0f2feb3;border:1px solid #0ea5e924;border-radius:.45rem;padding:.18rem .45rem;font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;font-size:.75rem;display:inline-block}.notification-message__pill{letter-spacing:.02em;border-radius:999px;justify-content:center;align-items:center;min-width:2.5rem;padding:.18rem .55rem;font-size:.75rem;font-weight:700;display:inline-flex}.notification-message__pill--yes{color:var(--status-success);background:var(--status-success-bg);border:1px solid #05966926}.notification-message__pill--no{color:var(--text-muted);background:var(--status-neutral-bg);border:1px solid #94a3b838}.notification-message--inline .notification-message__details{gap:.35rem;padding:.65rem}.notification-message--inline .notification-message__row{grid-template-columns:minmax(6rem,42%) 1fr;padding:.45rem .55rem}@media (width<=520px){.notification-message__row{grid-template-columns:1fr;gap:.25rem}.notification-message__row dd{text-align:left}}.system-notification-dialog{z-index:9000;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.system-notification-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.system-notification-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.25rem;width:min(100%,34rem);max-height:calc(100vh - 2.5rem);padding:1.5rem;position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.system-notification-dialog__panel--error{border-top:3px solid var(--status-error)}.system-notification-dialog__panel--warning{border-top:3px solid var(--status-warning)}.system-notification-dialog__panel--success{border-top:3px solid var(--status-success)}.system-notification-dialog__panel--info{border-top:3px solid var(--brand-500)}.system-notification-dialog__header{justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1rem;display:flex}.system-notification-dialog__meta{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.system-notification-dialog__type{text-transform:uppercase;letter-spacing:.03em;border-radius:999px;padding:.2rem .55rem;font-size:.6875rem;font-weight:700;display:inline-flex}.system-notification-dialog__type--error{color:var(--status-error);background:var(--status-error-bg)}.system-notification-dialog__type--warning{color:var(--status-warning);background:var(--status-warning-bg)}.system-notification-dialog__type--success{color:var(--status-success);background:var(--status-success-bg)}.system-notification-dialog__type--info{color:var(--brand-700);background:var(--status-info-bg)}.system-notification-dialog__category{color:var(--text-muted);font-size:.75rem;font-weight:600}.system-notification-dialog__time{color:var(--text-muted);white-space:nowrap;flex-shrink:0;font-size:.75rem}.system-notification-dialog__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .85rem;font-size:1.125rem;font-weight:700;line-height:1.3}.system-notification-dialog__footer{border-top:1px solid var(--surface-border);flex-wrap:wrap;justify-content:flex-end;gap:.5rem;margin-top:1.5rem;padding-top:1.25rem;display:flex}@media (width<=520px){.system-notification-dialog__header{flex-direction:column}.system-notification-dialog__footer{flex-direction:column-reverse}.system-notification-dialog__footer .app-btn{width:100%}}.topbar-notifications{position:relative}.topbar-notifications__trigger--open{background:var(--surface-muted);color:var(--brand-600)}.topbar-notifications__dropdown{z-index:40;border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);width:min(22.5rem,100vw - 1.5rem);position:absolute;top:calc(100% + .45rem);right:0;overflow:hidden;box-shadow:0 4px 6px -1px #0f172a14,0 16px 32px -6px #0f172a24}.topbar-notifications__header{border-bottom:1px solid var(--surface-border);background:var(--surface-muted);justify-content:space-between;align-items:center;gap:.75rem;padding:.85rem 1rem;display:flex}.topbar-notifications__title{color:var(--text-primary);margin:0;font-size:.875rem;font-weight:700}.topbar-notifications__unread{color:var(--status-error);background:var(--status-error-bg);border-radius:999px;flex-shrink:0;padding:.15rem .5rem;font-size:.6875rem;font-weight:700}.topbar-notifications__empty{color:var(--text-muted);text-align:center;margin:0;padding:1.25rem 1rem;font-size:.8125rem}.topbar-notifications__list{margin:0;padding:0;list-style:none}.topbar-notifications__item{border-bottom:1px solid var(--surface-border);justify-content:space-between;align-items:flex-start;gap:.65rem;padding:.85rem 1rem;display:flex}.topbar-notifications__item:last-child{border-bottom:none}.topbar-notifications__item:not(.topbar-notifications__item--read){background:#f0f9ff73}.topbar-notifications__item-main{flex:1;min-width:0}.topbar-notifications__item-topline{align-items:center;gap:.4rem;margin-bottom:.15rem;display:flex}.topbar-notifications__dot{background:var(--brand-500);border-radius:999px;flex-shrink:0;width:.4rem;height:.4rem}.topbar-notifications__category{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);font-size:.625rem;font-weight:700}.topbar-notifications__time{color:var(--text-muted);white-space:nowrap;margin-left:auto;font-size:.6875rem}.topbar-notifications__item-title{color:var(--text-primary);margin:0 0 .15rem;font-size:.8125rem;font-weight:600;line-height:1.35}.topbar-notifications__item--read .topbar-notifications__item-title{color:var(--text-secondary);font-weight:500}.topbar-notifications__item-preview{color:var(--text-muted);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;font-size:.75rem;line-height:1.4;display:-webkit-box;overflow:hidden}.topbar-notifications__actions{flex-direction:column;flex-shrink:0;gap:.3rem;display:flex}.topbar-notifications__action{border:1px solid var(--surface-border);background:var(--surface);width:1.75rem;height:1.75rem;color:var(--text-secondary);cursor:pointer;border-radius:7px;justify-content:center;align-items:center;padding:0;transition:background .15s,color .15s,border-color .15s;display:inline-flex}.topbar-notifications__action:hover{color:var(--brand-600);background:#f0f9ffe6;border-color:#0ea5e959}.topbar-notifications__action--read:hover{color:var(--status-success);background:#ecfdf5e6;border-color:#05966959}.topbar-notifications__action--delete:hover{color:var(--status-error);background:#fef2f2e6;border-color:#dc262659}.topbar-notifications__footer{border-top:1px solid var(--surface-border);background:var(--surface-muted);padding:.65rem 1rem}.topbar-notifications__view-all{border-radius:calc(var(--radius-sm) - 2px);width:100%;color:var(--brand-700);text-align:center;padding:.55rem .65rem;font-size:.8125rem;font-weight:600;text-decoration:none;transition:background .15s,color .15s;display:block}.topbar-notifications__view-all:hover{background:var(--status-info-bg);color:var(--brand-600)}.topbar-stats{scrollbar-width:none;align-items:center;gap:.35rem;min-width:0;display:flex;overflow-x:auto}.topbar-stats::-webkit-scrollbar{display:none}.topbar-stat{background:var(--surface-muted);color:var(--text-secondary);border-radius:999px;flex-shrink:0;align-items:center;gap:.35rem;padding:.3rem .55rem;transition:background .16s;display:flex}.topbar-stat:hover{background:color-mix(in srgb, var(--surface-muted) 70%, var(--brand-100,#e0f2fe))}.topbar-stat__icon{background:color-mix(in srgb, currentColor 12%, white);width:1.35rem;height:1.35rem;color:inherit;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;display:flex}.topbar-stat__value{font-variant-numeric:tabular-nums;color:var(--text-primary);white-space:nowrap;font-size:.8125rem;font-weight:700}.topbar-stat__label{white-space:nowrap;color:var(--text-muted);font-size:.6875rem;font-weight:500;display:none}.topbar-stat--loading .topbar-stat__value{opacity:.45}.topbar-stat--brand{color:var(--brand-600,#0284c7)}.topbar-stat--spo-s3{color:#026b6f}.topbar-stat--s3{color:#c27400}.topbar-stat--danger{color:#b91c1c}.topbar-stat--success{color:#059669}.topbar-stat--storage{min-width:7.5rem;padding-right:.65rem}.topbar-stat--over-limit{color:#b91c1c}.topbar-stat--over-limit .topbar-stat__progress-fill{background:#ef4444}.topbar-stat__storage{flex-direction:column;gap:.2rem;min-width:5.5rem;display:flex}.topbar-stat__storage-text{align-items:baseline;gap:.2rem;line-height:1.1;display:flex}.topbar-stat__inline-text{align-items:baseline;gap:.25rem;line-height:1.1;display:flex}.topbar-stat__hint,.topbar-stat__storage-limit{color:var(--text-muted);white-space:nowrap;font-size:.6875rem;font-weight:500}.topbar-stat__progress{background:color-mix(in srgb, currentColor 10%, var(--surface-border));border-radius:999px;height:.25rem;overflow:hidden}.topbar-stat__progress-fill{border-radius:inherit;background:currentColor;height:100%;transition:width .4s}@media (width>=900px){.topbar-stats{gap:.5rem}.topbar-stat{gap:.45rem;padding:.35rem .75rem}.topbar-stat__label{display:inline}}@media (width>=1200px){.topbar-stat__icon{width:1.5rem;height:1.5rem}.topbar-stat__value{font-size:.875rem}.topbar-stat--storage{min-width:9rem}.topbar-stat__storage{min-width:6.5rem}}.topbar{z-index:20;-webkit-backdrop-filter:blur(12px);backdrop-filter:blur(12px);border-bottom:1px solid var(--surface-border);background:#ffffffe0;flex-wrap:wrap;align-items:center;gap:.75rem 1rem;min-height:3.25rem;padding:.75rem 1.25rem;display:flex;position:sticky;top:0}.topbar__left{align-items:center;gap:.75rem;min-width:0;display:flex}.topbar__menu-btn{border-radius:var(--radius-sm);background:var(--surface-muted);width:2.25rem;height:2.25rem;color:var(--text-primary);cursor:pointer;border:none;justify-content:center;align-items:center;padding:0;display:flex}.topbar__menu-btn:hover{background:var(--status-info-bg);color:var(--brand-600)}.topbar__title{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.125rem;font-weight:700}.topbar__subtitle{color:var(--text-secondary);-webkit-line-clamp:2;-webkit-box-orient:vertical;max-width:min(36rem,55vw);margin:.15rem 0 0;font-size:.8125rem;line-height:1.35;display:-webkit-box;overflow:hidden}.topbar__center{flex:1;justify-content:flex-start;min-width:0;display:flex}.topbar__right{align-items:center;gap:.75rem;margin-left:auto;display:flex}.topbar__icon-btn{border-radius:var(--radius-sm);width:2.25rem;height:2.25rem;color:var(--text-secondary);cursor:pointer;background:0 0;border:none;justify-content:center;align-items:center;display:flex;position:relative}.topbar__icon-btn:hover{background:var(--surface-muted);color:var(--brand-600)}.topbar__badge{background:var(--brand-500);color:#fff;text-align:center;border-radius:999px;min-width:1rem;height:1rem;padding:0 .25rem;font-size:.625rem;font-weight:700;line-height:1rem;position:absolute;top:4px;right:4px}.topbar__user-menu{position:relative}.topbar__user{border-radius:var(--radius-sm);font:inherit;color:inherit;cursor:pointer;background:0 0;border:1px solid #0000;align-items:center;gap:.5rem;padding:.25rem .5rem .25rem .25rem;transition:background .16s,border-color .16s;display:flex}.topbar__user:hover,.topbar__user--open{background:var(--surface-muted);border-color:var(--surface-border)}.topbar__user-chevron{color:var(--text-muted);flex-shrink:0;transition:transform .16s;display:none}.topbar__user--open .topbar__user-chevron{transform:rotate(180deg)}.topbar__user-dropdown{z-index:30;border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);min-width:11.5rem;padding:.35rem;position:absolute;top:calc(100% + .35rem);right:0;box-shadow:0 4px 6px -1px #0f172a14,0 10px 24px -4px #0f172a1f}.topbar__user-dropdown-item{border-radius:calc(var(--radius-sm) - 2px);width:100%;color:var(--text-primary);font:inherit;text-align:left;cursor:pointer;background:0 0;border:none;align-items:center;gap:.55rem;padding:.5rem .65rem;font-size:.8125rem;font-weight:500;text-decoration:none;transition:background .16s,color .16s;display:flex}.topbar__user-dropdown-item:hover{background:var(--surface-muted);color:var(--brand-600)}.topbar__user-dropdown-item--danger{color:var(--status-error-fg,#b91c1c)}.topbar__user-dropdown-item--danger:hover{background:var(--status-error-bg,#fef2f2);color:var(--status-error-fg,#b91c1c)}.topbar__user-dropdown-divider{background:var(--surface-border);height:1px;margin:.25rem .35rem}.topbar__avatar{background:linear-gradient(135deg, var(--brand-500), var(--ocean-cyan));color:#fff;border-radius:50%;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;font-size:.75rem;font-weight:700;display:flex}.topbar__user-info{flex-direction:column;display:none}.topbar__user-name{color:var(--text-primary);font-size:.8125rem;font-weight:600}.topbar__user-plan{color:var(--text-muted);font-size:.6875rem}@media (width>=640px){.topbar__user-info{display:flex}.topbar__user-chevron{display:block}}@media (width>=1024px){.topbar__menu-btn{display:none}}@media (width<=1023px){.topbar__center{flex-basis:100%;order:3}}.app-shell{background:var(--app-bg);min-height:100svh;display:flex}.app-shell:before{content:"";background:var(--app-bg-accent);pointer-events:none;z-index:0;position:fixed;inset:0}.app-shell__main{z-index:1;flex-direction:column;flex:1;min-width:0;min-height:100svh;display:flex;position:relative}.app-shell__content{flex:1;padding:1.25rem;overflow-y:auto}@media (width>=1024px){.app-shell__main{margin-left:var(--sidebar-width)}.app-shell__content{padding:1.5rem 1.75rem 2rem}}@media (width<=640px){.app-shell__content{padding:1rem}}.catalog-pagination{background:var(--surface-muted);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem 1rem;padding:.875rem 1rem;display:flex}.catalog-pagination--bottom{border-top:1px solid var(--surface-border)}.catalog-pagination--top{border-bottom:1px solid var(--surface-border)}.catalog-pagination__summary{color:var(--text-secondary);margin:0;font-size:.8125rem}.catalog-pagination__controls{flex-wrap:wrap;align-items:center;gap:.5rem .75rem;display:flex}.catalog-pagination__page{color:var(--text-muted);text-align:center;min-width:6.5rem;font-size:.8125rem;font-weight:500}.catalog-sync-animation{text-align:center;padding:2.75rem 1.5rem 2.5rem}.catalog-sync-animation__visual{width:5.5rem;height:5.5rem;margin:0 auto 1.35rem;position:relative}.catalog-sync-animation__ring{border:2px solid #0000;border-radius:50%;position:absolute;inset:0}.catalog-sync-animation__ring--outer{border-top-color:var(--brand-500);border-right-color:#0ea5e940;animation:1.4s linear infinite catalog-sync-spin}.catalog-sync-animation__ring--inner{border-bottom-color:var(--ocean-cyan);border-left-color:#0ea5e933;animation:1s linear infinite reverse catalog-sync-spin;inset:.65rem}.catalog-sync-animation__core{background:linear-gradient(145deg, var(--status-info-bg), var(--surface));border-radius:50%;justify-content:center;align-items:center;animation:2s ease-in-out infinite catalog-sync-pulse;display:flex;position:absolute;inset:1.35rem;box-shadow:0 4px 14px #0ea5e92e}.catalog-sync-animation__icon{width:1.35rem;height:1.35rem;color:var(--brand-600);animation:2.4s ease-in-out infinite catalog-sync-icon}.catalog-sync-animation__dot{background:var(--brand-500);transform-origin:.225rem 2.5rem;border-radius:50%;width:.45rem;height:.45rem;margin:-.225rem 0 0 -.225rem;animation:1.8s linear infinite catalog-sync-orbit;position:absolute;top:50%;left:50%}.catalog-sync-animation__dot--1{animation-delay:0s}.catalog-sync-animation__dot--2{background:var(--ocean-cyan);animation-delay:-.6s}.catalog-sync-animation__dot--3{opacity:.85;animation-delay:-1.2s}.catalog-sync-animation__title{color:var(--text-primary);margin:0 0 .4rem;font-size:.9375rem;font-weight:600}.catalog-sync-animation__message{max-width:28rem;color:var(--text-secondary);margin:0 auto;font-size:.875rem;line-height:1.55}.catalog-sync-animation__progress{background:var(--surface-muted);border-radius:999px;max-width:14rem;height:4px;margin:1.25rem auto 0;overflow:hidden}.catalog-sync-animation__progress-bar{border-radius:inherit;background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan), var(--brand-500));background-size:200% 100%;width:40%;height:100%;animation:1.6s ease-in-out infinite catalog-sync-shimmer;display:block}@keyframes catalog-sync-spin{to{transform:rotate(360deg)}}@keyframes catalog-sync-pulse{0%,to{transform:scale(1)}50%{transform:scale(1.05)}}@keyframes catalog-sync-icon{0%,to{transform:rotate(0)}50%{transform:rotate(180deg)}}@keyframes catalog-sync-orbit{to{transform:rotate(360deg)}}@keyframes catalog-sync-shimmer{0%{transform:translate(-120%)}to{transform:translate(320%)}}@media (prefers-reduced-motion:reduce){.catalog-sync-animation__ring,.catalog-sync-animation__core,.catalog-sync-animation__icon,.catalog-sync-animation__dot,.catalog-sync-animation__progress-bar{animation:none}.catalog-sync-animation__progress-bar{width:70%;margin:0 auto}}.data-table-wrap{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);-webkit-overflow-scrolling:touch;scrollbar-width:thin;overflow-x:auto}.data-table{border-collapse:collapse;width:100%;min-width:56rem;font-size:.875rem}.data-table th{text-align:left;color:var(--text-muted);background:var(--surface-muted);border-bottom:1px solid var(--surface-border);white-space:nowrap;padding:.75rem 1rem;font-weight:600}.data-table td{color:var(--text-primary);border-bottom:1px solid var(--surface-border);vertical-align:middle;padding:.85rem 1rem}.data-table tbody tr:last-child td{border-bottom:none}.data-table tbody tr:hover td{background:#f0f9ff99}.data-table-empty{text-align:center;color:var(--text-muted);background:var(--surface);border:1px dashed var(--surface-border);border-radius:var(--radius-md);padding:3rem 1.5rem}.data-table-empty p{margin:0}.table-actions{gap:.35rem;display:flex}.table-link{color:var(--brand-600);cursor:pointer;background:0 0;border:none;padding:0;font-size:.8125rem;font-weight:500}.table-link:hover{color:var(--brand-700);text-decoration:underline}.cell-muted{color:var(--text-muted);font-size:.8125rem}.cell-mono{color:var(--text-secondary);font-family:ui-monospace,monospace;font-size:.8125rem}.app-card{background:var(--surface);border:1px solid var(--surface-border);border-radius:var(--radius-md);box-shadow:var(--shadow-sm)}.app-card--sm{padding:1rem}.app-card--md{padding:1.25rem}.app-card--lg{padding:1.5rem}.app-page{flex-direction:column;gap:1.25rem;max-width:1120px;display:flex}.page-intro{flex-wrap:wrap;justify-content:space-between;align-items:flex-end;gap:1rem 1.5rem;padding-bottom:.25rem;display:flex}.page-intro__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.375rem;font-weight:700}.page-intro__subtitle{color:var(--text-secondary);max-width:36rem;margin:.35rem 0 0;font-size:.9375rem;line-height:1.55}.page-intro__actions{flex-wrap:wrap;flex-shrink:0;align-items:center;gap:.5rem;display:flex}@media (width<=640px){.page-intro__actions,.page-intro__actions .app-btn{width:100%}}.status-badge{letter-spacing:-.01em;white-space:nowrap;border-radius:999px;align-items:center;padding:.2rem .55rem;font-size:.75rem;font-weight:600;display:inline-flex}.status-badge--success{color:var(--status-success);background:var(--status-success-bg)}.status-badge--warning{color:var(--status-warning);background:var(--status-warning-bg)}.status-badge--error{color:var(--status-error);background:var(--status-error-bg)}.status-badge--info{color:var(--status-info);background:var(--status-info-bg)}.status-badge--neutral{color:var(--status-neutral);background:var(--status-neutral-bg)}.status-badge--running{color:var(--brand-600);background:var(--status-info-bg);animation:1.5s ease-in-out infinite pulse-badge}@keyframes pulse-badge{0%,to{opacity:1}50%{opacity:.7}}.page-section{margin-top:1rem}.page-section:first-of-type{margin-top:0}.page-grid{gap:1rem;display:grid}.page-grid--stats{grid-template-columns:repeat(auto-fill,minmax(200px,1fr))}.page-grid--2{grid-template-columns:1fr}@media (width>=900px){.page-grid--2{grid-template-columns:1fr 1fr}}.page-grid--3{grid-template-columns:1fr}@media (width>=1100px){.page-grid--3{grid-template-columns:2fr 1fr}}.section-title{color:var(--text-primary);margin:0 0 .75rem;font-size:.9375rem;font-weight:600}.alert-list{flex-direction:column;gap:.65rem;margin:0;padding:0;list-style:none;display:flex}.alert-item{border-radius:var(--radius-sm);border-left:3px solid;padding:.75rem .875rem}.alert-item--info{background:var(--status-info-bg);border-color:var(--brand-500)}.alert-item--warning{background:var(--status-warning-bg);border-color:var(--status-warning)}.alert-item--success{background:var(--status-success-bg);border-color:var(--status-success)}.alert-item strong{margin-bottom:.2rem;font-size:.875rem;display:block}.alert-item span{color:var(--text-secondary);font-size:.8125rem}.bar-chart{align-items:flex-end;gap:.5rem;height:140px;padding-top:.5rem;display:flex}.bar-chart__col{flex-direction:column;flex:1;align-items:center;gap:.35rem;height:100%;display:flex}.bar-chart__bar{background:linear-gradient(180deg, var(--ocean-cyan), var(--brand-600));border-radius:6px 6px 2px 2px;width:100%;max-width:2.5rem;min-height:4px;margin-top:auto}.bar-chart__label{color:var(--text-muted);font-size:.6875rem}.rank-list{margin:0;padding:0;list-style:none}.rank-list li{border-bottom:1px solid var(--surface-border);align-items:center;gap:.75rem;padding:.5rem 0;font-size:.875rem;display:flex}.rank-list li:last-child{border-bottom:none}.rank-list__bar{background:var(--surface-muted);border-radius:999px;flex:1;height:6px;overflow:hidden}.rank-list__fill{background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));border-radius:inherit;height:100%}.policy-card{flex-direction:column;gap:.5rem;display:flex}.policy-card h3{margin:0;font-size:1rem;font-weight:600}.policy-card p{color:var(--text-secondary);margin:0;font-size:.8125rem}.policy-card__meta{flex-wrap:wrap;align-items:center;gap:.5rem;margin-top:.25rem;display:flex}.plan-grid{grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:1rem;display:grid}.plan-card{flex-direction:column;gap:.75rem;display:flex;position:relative}.plan-card--current{border-color:var(--brand-500);box-shadow:0 0 0 1px var(--brand-500), var(--shadow-md)}.plan-card__badge{text-transform:uppercase;color:var(--brand-600);background:var(--status-info-bg);border-radius:999px;padding:.2rem .5rem;font-size:.6875rem;font-weight:700;position:absolute;top:1rem;right:1rem}.plan-card h3{margin:0;font-size:1.125rem}.plan-card__price{color:var(--text-primary);font-size:1.5rem;font-weight:700}.plan-card ul{color:var(--text-secondary);margin:0;padding:0;font-size:.875rem;list-style:none}.plan-card ul li{padding:.25rem 0}.permission-list{margin:0;padding:0;list-style:none}.permission-list li{border-bottom:1px solid var(--surface-border);justify-content:space-between;align-items:center;padding:.65rem 0;font-size:.875rem;display:flex}.toggle-row{border-bottom:1px solid var(--surface-border);justify-content:space-between;align-items:center;padding:.85rem 0;display:flex}.toggle-row:last-child{border-bottom:none}.toggle-row span{color:var(--text-primary);font-size:.875rem}.info-banner{border-radius:var(--radius-sm);background:var(--status-info-bg);color:var(--text-secondary);border:1px solid #0ea5e940;margin-bottom:1rem;padding:.875rem 1rem;font-size:.875rem}.progress-block{margin-top:.5rem}.progress-block__track{background:var(--surface-muted);border-radius:999px;height:8px;overflow:hidden}.progress-block__fill{background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));border-radius:inherit;height:100%}.progress-block__labels{color:var(--text-muted);justify-content:space-between;margin-top:.35rem;font-size:.75rem;display:flex}.catalog-cell-stack{flex-direction:column;gap:.15rem;min-width:10rem;display:flex}.catalog-cell-stack strong{color:var(--text-primary);font-weight:600}.catalog-cell-stack span{color:var(--text-muted);font-size:.75rem}.catalog-chips{flex-wrap:wrap;gap:.35rem;display:flex}.catalog-chip{letter-spacing:.02em;text-transform:uppercase;background:var(--surface-muted);color:var(--text-secondary);border:1px solid var(--surface-border);white-space:nowrap;border-radius:999px;align-items:center;padding:.15rem .5rem;font-size:.6875rem;font-weight:600;display:inline-flex}.catalog-chip--brand{background:var(--status-info-bg);color:var(--brand-700);border-color:#0ea5e940}.catalog-chip--warn{background:var(--status-warning-bg);color:#92400e;border-color:#f59e0b59}.catalog-chip--muted{color:var(--text-muted);background:0 0}.catalog-chip--storage{text-transform:none;letter-spacing:0;color:#fff;text-shadow:0 1px 2px #00000059;font-size:.75rem;font-weight:600;box-shadow:inset 0 1px #ffffff3d,inset 0 -1px #00000029}.catalog-chip--storage-spo{background-color:#026b6f;background-image:radial-gradient(110% 220% at 18%,#038387 0%,#038387b8 40%,#03838740 68%,#0000 78%);border-color:#03838773}.catalog-chip--storage-s3{background-color:#c27400;background-image:radial-gradient(110% 220% at 82%,#f90 0%,#ff9900b8 40%,#ff990040 68%,#0000 78%);border-color:#ff990080}.catalog-chip--storage-spo-s3{background-color:#3a7a62;background-image:radial-gradient(95% 220% at 0%,#038387 0%,#0383878c 38%,#0000 68%),radial-gradient(95% 220% at 100%,#f90 0%,#ff99008c 38%,#0000 68%);border-color:#03838766}.catalog-link{color:var(--brand-600);word-break:break-all;font-size:.8125rem;font-weight:500;text-decoration:none}.catalog-link:hover{color:var(--brand-700);text-decoration:underline}.catalog-table-card{flex-direction:column;display:flex;overflow:hidden}.catalog-table-card .data-table-wrap,.catalog-table-card .data-table-dual-scroll__top,.catalog-table-card .data-table-dual-scroll__body{border:none;border-radius:0}.data-table-dual-scroll{flex-direction:column;min-width:0;display:flex}.data-table-dual-scroll__top{border-radius:var(--radius-md) var(--radius-md) 0 0;flex-shrink:0;margin-bottom:-1px;overflow:auto hidden;border-bottom:none!important}.data-table-dual-scroll__body{border-radius:0 0 var(--radius-md) var(--radius-md);flex:1;min-width:0}.data-table-dual-scroll__track{pointer-events:none;height:1px}.data-table-dual-scroll__top .data-table-dual-scroll__track{height:12px}.data-table-wrap--syncing{background:linear-gradient(180deg, #f0f9ff80 0%, var(--surface) 45%)}.catalog-data-table__in-progress-row td{vertical-align:middle;border-bottom:none!important;padding:0!important}.catalog-data-table__empty-cell{text-align:center;color:var(--text-muted);border-bottom:none!important;padding:3rem 1.5rem!important}.catalog-data-table__empty-cell p{margin:0;font-size:.875rem}.catalog-table-loading,.catalog-table-error{text-align:center;padding:3rem 1.5rem;font-size:.875rem}.catalog-table-loading{color:var(--text-muted)}.catalog-table-error{color:var(--status-error,#b91c1c)}.data-table-wrap--horizontal-scroll,.data-table-wrap--drives-scroll{scrollbar-width:thin;scrollbar-color:var(--brand-500) #0ea5e924;overflow:auto hidden}.data-table-wrap--horizontal-scroll::-webkit-scrollbar{height:11px}.data-table-wrap--drives-scroll::-webkit-scrollbar{height:11px}.data-table-wrap--horizontal-scroll::-webkit-scrollbar-track{background:#0ea5e91a;border-radius:999px;margin:0 .25rem}.data-table-wrap--drives-scroll::-webkit-scrollbar-track{background:#0ea5e91a;border-radius:999px;margin:0 .25rem}.data-table-wrap--horizontal-scroll::-webkit-scrollbar-thumb{background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));border:2px solid #f0f9ffd9;border-radius:999px;box-shadow:0 1px 4px #0ea5e959}.data-table-wrap--drives-scroll::-webkit-scrollbar-thumb{background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));border:2px solid #f0f9ffd9;border-radius:999px;box-shadow:0 1px 4px #0ea5e959}.data-table-wrap--horizontal-scroll::-webkit-scrollbar-thumb:hover{background:linear-gradient(90deg, var(--brand-600), var(--brand-500))}.data-table-wrap--drives-scroll::-webkit-scrollbar-thumb:hover{background:linear-gradient(90deg, var(--brand-600), var(--brand-500))}.data-table-wrap--horizontal-scroll .data-table--catalog-wide,.data-table-wrap--horizontal-scroll .data-table--drives,.data-table-wrap--drives-scroll .data-table--drives{table-layout:auto;width:max-content;min-width:72rem}.data-table-wrap--horizontal-scroll .catalog-cell-url,.data-table-wrap--drives-scroll .catalog-cell-url{white-space:nowrap;word-break:normal;max-width:none;display:inline-block}.data-table-wrap--horizontal-scroll .catalog-cell-stack,.data-table-wrap--drives-scroll .catalog-cell-stack{min-width:11rem}.catalog-executions-back{margin:-.5rem 0 1rem;font-size:.8125rem}.catalog-executions-back a{color:var(--brand-600);font-weight:500;text-decoration:none}.catalog-executions-back a:hover{text-decoration:underline}.catalog-executions-live{border-radius:var(--radius-sm);background:var(--status-info-bg);color:var(--text-secondary);border:1px solid #0ea5e940;margin:0 0 1rem;padding:.65rem .875rem;font-size:.8125rem}.catalog-run-error-cell{flex-direction:column;gap:.5rem;min-width:14rem;display:flex}.catalog-run-error-text{color:#b91c1c;-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:.8125rem;line-height:1.45;display:-webkit-box;overflow:hidden}.catalog-run-errors{margin:0;padding:0;font-size:.75rem;list-style:none}.catalog-run-errors li{border-top:1px solid var(--surface-border);flex-direction:column;gap:.1rem;padding:.35rem 0;display:flex}.catalog-run-errors li:first-child{border-top:none;padding-top:0}.catalog-run-errors strong{color:var(--text-primary);font-weight:600}.catalog-run-errors span{color:var(--text-muted);line-height:1.4}.catalog-run-errors__more{color:var(--text-muted);font-style:italic}.catalog-run-info-text{color:var(--text-secondary);font-size:.8125rem;line-height:1.45;display:block}.toolbar{flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.toolbar__search{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);flex:1;min-width:200px;max-width:320px;height:2.25rem;padding:0 .75rem;font-size:.875rem}.toolbar__search:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.toolbar__filter select{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);height:2.25rem;color:var(--text-primary);cursor:pointer;padding:0 2rem 0 .75rem;font-size:.875rem}.catalog-search-toolbar{margin-bottom:1rem}.catalog-search-toolbar .toolbar{margin-bottom:0}.catalog-search-toolbar__input{flex:1;min-width:200px;max-width:28rem}.catalog-search-toolbar__filters{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.catalog-search-toolbar__hint{color:var(--text-muted);margin:.35rem 0 0;font-size:.8125rem}.app-drawer{z-index:9000;justify-content:flex-end;display:flex;position:fixed;inset:0}.app-drawer__backdrop{pointer-events:none;background:#0f172a6b;animation:.22s app-drawer-fade-in;position:absolute;inset:0}.app-drawer__panel{z-index:1;background:var(--surface);border-left:1px solid var(--surface-border);width:min(100%,28rem);max-width:100%;height:100%;animation:app-drawer-slide-in .28s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));outline:none;flex-direction:column;display:flex;position:relative;box-shadow:-8px 0 32px #0f172a1f}.app-drawer__panel--wide{width:min(100%,40rem)}.app-drawer--fullscreen{justify-content:stretch;inset:0}.app-drawer__panel--fullscreen{width:100%;max-width:none;height:100%;box-shadow:none;border-left:none;animation:.22s app-drawer-fade-in}@media (width>=1024px){.app-drawer--fullscreen{left:var(--sidebar-width)}}.app-drawer--fullscreen .app-drawer__header{width:100%;padding:1.25rem 2rem}.app-drawer--fullscreen .app-drawer__body{width:100%;padding:1.5rem 2rem 2rem}.app-drawer--fullscreen .app-drawer__footer{border-top:1px solid var(--surface-border);width:100%;padding:1rem 2rem 1.25rem}.app-drawer__header{border-bottom:1px solid var(--surface-border);flex-shrink:0;justify-content:space-between;align-items:flex-start;gap:.75rem;padding:1rem 1.25rem;display:flex}.app-drawer__heading{flex:1;min-width:0}.app-drawer__title{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.0625rem;font-weight:700}.app-drawer__subtitle{color:var(--text-secondary);margin:.35rem 0 0;font-size:.8125rem;line-height:1.45}.app-drawer__close{border-radius:var(--radius-sm);width:2rem;height:2rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast), color var(--duration-fast);background:0 0;border:none;justify-content:center;align-items:center;padding:0;display:inline-flex}.app-drawer__close:hover,.app-drawer__close:focus-visible{color:var(--text-primary);background:var(--surface-muted)}.app-drawer__body{flex:1;min-height:0;padding:1.25rem;overflow:auto}.app-drawer__footer{border-top:1px solid var(--surface-border);background:var(--surface);flex-wrap:wrap;flex-shrink:0;justify-content:flex-end;align-items:center;gap:.5rem;width:100%;padding:1rem 1.25rem;display:flex}@keyframes app-drawer-fade-in{0%{opacity:0}to{opacity:1}}@keyframes app-drawer-slide-in{0%{transform:translate(100%)}to{transform:translate(0)}}@media (prefers-reduced-motion:reduce){.app-drawer__backdrop,.app-drawer__panel{animation:none}}.plan-tier-embed{letter-spacing:.02em;white-space:nowrap;vertical-align:middle;border-radius:999px;flex-shrink:0;align-items:center;gap:.3rem;font-weight:700;line-height:1;display:inline-flex}.plan-tier-embed__icon{flex-shrink:0;justify-content:center;align-items:center;display:inline-flex}.plan-tier-embed__label{text-overflow:ellipsis;max-width:12rem;overflow:hidden}.plan-tier-embed--sm{padding:.2rem .5rem .2rem .4rem;font-size:.625rem}.plan-tier-embed--sm .plan-tier-embed__icon svg{width:9px;height:9px}.plan-tier-embed--with-suffix.plan-tier-embed--sm{max-width:100%}.plan-tier-embed--with-suffix .plan-tier-embed__label{white-space:normal;text-align:left;line-height:1.2}.plan-tier-embed--md{padding:.3rem .65rem .3rem .55rem;font-size:.6875rem}.plan-tier-embed--elite{color:#92400e;background:linear-gradient(145deg,#fffbeb 0%,#fef3c7 48%,#fde68a 100%);border:1px solid #d9770652;box-shadow:inset 0 1px #ffffffbf,0 1px 4px #b453091f}.plan-tier-embed--elite .plan-tier-embed__icon{color:#d97706}.plan-tier-embed--turbo{color:#0369a1;background:linear-gradient(145deg,#f0f9ff 0%,#e0f2fe 100%);border:1px solid #0ea5e947;box-shadow:inset 0 1px #fffc}.plan-tier-embed--turbo .plan-tier-embed__icon{color:#0284c7}.plan-tier-embed--essential{color:#475569;background:linear-gradient(145deg,#f8fafc 0%,#f1f5f9 100%);border:1px solid #64748b38;box-shadow:inset 0 1px #ffffffd9}.plan-tier-embed--essential .plan-tier-embed__icon{color:#64748b}.plan-site-limit-dialog{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.plan-site-limit-dialog__backdrop{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);cursor:pointer;background:#04122094;border:none;margin:0;padding:0;animation:.24s plan-site-limit-fade-in;position:absolute;inset:0}.plan-site-limit-dialog__panel{z-index:1;width:min(100%,28rem);animation:plan-site-limit-slide-in .36s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));background:linear-gradient(165deg,#fff 0%,#f0f9ff 34%,#f8fafc 68%,#fff 100%);border:1px solid #ffffffc7;border-radius:22px;outline:none;padding:1.5rem 1.5rem 1.25rem;position:relative;overflow:hidden;box-shadow:0 4px 8px #041e330d,0 28px 72px #041e3333,inset 0 1px #ffffffe6}.plan-site-limit-dialog__glow{pointer-events:none;filter:blur(48px);border-radius:50%;position:absolute}.plan-site-limit-dialog__glow--top{background:#38bdf84d;width:11rem;height:11rem;top:-4.5rem;right:-3rem}.plan-site-limit-dialog__glow--bottom{background:#fb923c2e;width:12rem;height:12rem;bottom:-4.5rem;left:-2.5rem}.plan-site-limit-dialog__close{z-index:2;width:2.125rem;height:2.125rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;background:#ffffffe6;border:1px solid #e2e8f0f2;border-radius:999px;justify-content:center;align-items:center;display:inline-flex;position:absolute;top:.875rem;right:.875rem}.plan-site-limit-dialog__close:hover{color:var(--text-primary);background:#fff;border-color:#0ea5e947}.plan-site-limit-dialog__hero{text-align:center;flex-direction:column;align-items:center;gap:.75rem;margin-bottom:1.125rem;display:flex}.plan-site-limit-dialog__illustration{width:min(100%,200px);height:auto;display:block}.plan-site-limit-dialog__hero-copy{flex-direction:column;align-items:center;gap:.35rem;display:flex}.plan-site-limit-dialog__eyebrow{letter-spacing:.06em;text-transform:uppercase;color:#0369a1;background:#0ea5e91a;border:1px solid #0ea5e92e;border-radius:999px;align-items:center;padding:.22rem .65rem;font-size:.6875rem;font-weight:700;display:inline-flex}.plan-site-limit-dialog__title{letter-spacing:-.03em;color:var(--text-primary);background:linear-gradient(135deg,#0c4a6e 0%,#0369a1 55%,#0ea5e9 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text;margin:0;font-size:1.25rem;font-weight:800;line-height:1.2}.plan-site-limit-dialog__plan-chip{color:var(--text-secondary);border:1px solid var(--surface-border);background:#ffffffbf;border-radius:999px;margin:0;padding:.28rem .7rem;font-size:.75rem;font-weight:600}.plan-site-limit-dialog__usage{background:#ffffffb8;border:1px solid #0ea5e924;border-radius:14px;margin-bottom:1rem;padding:.875rem 1rem;box-shadow:inset 0 1px #ffffffd9}.plan-site-limit-dialog__usage-header{color:var(--text-muted);justify-content:space-between;align-items:center;gap:.75rem;margin-bottom:.55rem;font-size:.75rem;display:flex}.plan-site-limit-dialog__usage-header strong{color:#c2410c;font-variant-numeric:tabular-nums;font-size:.875rem;font-weight:700}.plan-site-limit-dialog__usage-bar{background:#0ea5e91f;border-radius:999px;height:.5rem;overflow:hidden}.plan-site-limit-dialog__usage-bar--exceeded{background:#f9731624}.plan-site-limit-dialog__usage-fill{border-radius:inherit;height:100%;transition:width .4s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));background:linear-gradient(90deg,#f97316,#ea580c);display:block;box-shadow:0 0 12px #f9731659}.plan-site-limit-dialog__usage-hint{color:var(--text-muted);margin:.5rem 0 0;font-size:.75rem;line-height:1.45}.plan-site-limit-dialog__message{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem;line-height:1.6}.plan-site-limit-dialog__message strong{color:var(--text-primary);font-weight:700}.plan-site-limit-dialog__actions{grid-template-columns:1fr 1fr;gap:.625rem;display:grid}.plan-site-limit-dialog__btn{width:100%;border-radius:12px!important;min-height:2.625rem!important}.plan-site-limit-dialog__btn--upgrade{box-shadow:0 1px 2px #041e330f,0 8px 20px #0ea5e947}.plan-site-limit-dialog__btn--upgrade:hover:not(:disabled){box-shadow:0 2px 4px #041e3314,0 12px 28px #0ea5e957}@keyframes plan-site-limit-fade-in{0%{opacity:0}to{opacity:1}}@keyframes plan-site-limit-slide-in{0%{opacity:0;transform:scale(.96)translateY(10px)}to{opacity:1;transform:scale(1)translateY(0)}}@media (prefers-reduced-motion:reduce){.plan-site-limit-dialog__backdrop,.plan-site-limit-dialog__panel,.plan-site-limit-dialog__usage-fill{transition:none;animation:none}}@media (width>=520px){.plan-site-limit-dialog__hero{text-align:left;flex-direction:row;align-items:center;gap:1rem}.plan-site-limit-dialog__hero-copy{align-items:flex-start}.plan-site-limit-dialog__illustration{flex-shrink:0;width:148px}}.drive-scope-drawer{flex-direction:column;gap:1.5rem;display:flex}.drive-scope-drawer__mode{border:none;flex-direction:column;gap:.5rem;margin:0;padding:0;display:flex}.drive-scope-drawer__mode-legend{letter-spacing:.04em;text-transform:uppercase;color:var(--text-secondary);margin:0 0 .25rem;padding:0;font-size:.8125rem;font-weight:700}.drive-scope-drawer__mode-option{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);cursor:pointer;transition:border-color var(--duration-fast), background var(--duration-fast);align-items:flex-start;gap:.75rem;padding:.875rem;display:flex}.drive-scope-drawer__mode-option:has(input:checked){border-color:var(--brand-500);background:var(--status-info-bg)}.drive-scope-drawer__mode-option input{accent-color:var(--brand-600);flex-shrink:0;margin-top:.2rem}.drive-scope-drawer__mode-text{flex-direction:column;flex:1;gap:.2rem;min-width:0;display:flex}.drive-scope-drawer__mode-heading{flex-wrap:wrap;align-items:center;gap:.4rem .5rem;display:flex}.drive-scope-drawer__mode-text strong{color:var(--text-primary);font-size:.9375rem}.drive-scope-drawer__mode-text small{color:var(--text-secondary);font-size:.8125rem;line-height:1.45}.drive-scope-drawer__sites{flex-direction:column;gap:.75rem;min-height:0;display:flex}.drive-scope-drawer__subsection{flex-direction:column;gap:.5rem;display:flex}.drive-scope-drawer__subsection+.drive-scope-drawer__subsection{border-top:1px solid var(--surface-border);margin-top:.25rem;padding-top:.75rem}.drive-scope-drawer__subsection-title{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.75rem;font-weight:700}.drive-scope-drawer__search{align-items:center;width:100%;margin-top:.25rem;display:flex;position:relative}.drive-scope-drawer__search-icon{color:var(--text-muted);pointer-events:none;transition:color var(--duration-fast) ease;flex-shrink:0;position:absolute;left:.875rem}.drive-scope-drawer__search-input{border:1.5px solid var(--input-border);border-radius:var(--radius-md);background:var(--input-bg);width:100%;height:2.75rem;color:var(--text-primary);transition:border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;padding:0 .875rem 0 2.625rem;font-size:.875rem}.drive-scope-drawer__search-input::placeholder{color:var(--input-placeholder)}.drive-scope-drawer__search-input:hover:not(:disabled){background:#fff;border-color:#cbd5e1}.drive-scope-drawer__search:focus-within .drive-scope-drawer__search-icon{color:var(--brand-600)}.drive-scope-drawer__search-input:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 4px var(--input-ring);background:#fff;outline:none}.drive-scope-drawer__sites-title{letter-spacing:.04em;text-transform:uppercase;color:var(--text-secondary);justify-content:space-between;align-items:center;gap:.5rem;margin:0;font-size:.8125rem;font-weight:700;display:flex}.drive-scope-drawer__sites-count{letter-spacing:0;text-transform:none;color:var(--brand-700);font-size:.75rem;font-weight:600}.drive-scope-drawer__hint{color:var(--status-warning);margin:0;font-size:.875rem}.drive-scope-drawer__status{color:var(--text-secondary);margin:0;font-size:.9375rem;line-height:1.55}.drive-scope-drawer__status--error{color:var(--status-error)}.drive-scope-drawer__list{flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none;display:flex}.drive-scope-drawer__item{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);transition:border-color var(--duration-fast), background var(--duration-fast);align-items:flex-start;gap:.75rem;padding:.75rem .875rem;display:flex}.drive-scope-drawer__item:not(.drive-scope-drawer__item--readonly){cursor:pointer}.drive-scope-drawer__item--readonly{cursor:default}.drive-scope-drawer__item--selected{border-color:var(--brand-500);background:var(--status-info-bg)}.drive-scope-drawer__checkbox{accent-color:var(--brand-600);flex-shrink:0;margin-top:.15rem}.drive-scope-drawer__item-content{min-width:0;cursor:inherit;flex-direction:column;flex:1;gap:.2rem;display:flex}.drive-scope-drawer__item-name{color:var(--text-primary);font-size:.9375rem}.drive-scope-drawer__item-sub{color:var(--text-secondary);font-size:.8125rem}.drive-scope-drawer__item-url{font-size:.75rem;font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-secondary)}.reset-delta-link-trigger{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);width:2.25rem;height:2.25rem;color:var(--text-secondary);cursor:pointer;justify-content:center;align-items:center;padding:0;transition:color .15s,background .15s,border-color .15s,transform .12s;display:inline-flex}.reset-delta-link-trigger svg{flex-shrink:0}.reset-delta-link-trigger:hover:not(:disabled){color:var(--brand-600);background:#0e749014;border-color:#0e74902e}.reset-delta-link-trigger:active:not(:disabled){transform:scale(.94)}.reset-delta-link-trigger:focus-visible{box-shadow:0 0 0 2px var(--input-ring);outline:none}.reset-delta-link-trigger:disabled{opacity:.45;cursor:not-allowed}.reset-delta-link{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.reset-delta-link__backdrop{cursor:pointer;background:#0f172a85;border:none;margin:0;padding:0;animation:.2s reset-delta-link-fade-in;position:absolute;inset:0}.reset-delta-link__dialog{z-index:1;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--surface-border);width:min(100%,32rem);max-height:min(90vh,36rem);animation:reset-delta-link-scale-in .24s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));outline:none;padding:1.25rem 1.25rem 1rem;position:relative;overflow:auto;box-shadow:0 20px 48px #0f172a2e}.reset-delta-link__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .75rem;font-size:1.0625rem;font-weight:700}.reset-delta-link__body{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem;line-height:1.55}.reset-delta-link__body p{margin:0 0 .75rem}.reset-delta-link__body ul{margin:0;padding-left:1.125rem}.reset-delta-link__body li+li{margin-top:.5rem}.reset-delta-link__actions{flex-wrap:wrap;justify-content:flex-end;gap:.5rem;display:flex}@keyframes reset-delta-link-fade-in{0%{opacity:0}to{opacity:1}}@keyframes reset-delta-link-scale-in{0%{opacity:0;transform:scale(.96)translateY(6px)}to{opacity:1;transform:scale(1)translateY(0)}}@media (prefers-reduced-motion:reduce){.reset-delta-link__backdrop,.reset-delta-link__dialog{animation:none}}.catalog-storage-filter{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.catalog-chip--storage-filter{cursor:pointer;opacity:.72;border:1px solid #0000;transition:opacity .15s,box-shadow .15s,transform .15s}.catalog-chip--storage-filter:hover:not(:disabled){opacity:.92}.catalog-chip--storage-filter:focus-visible{outline:2px solid var(--brand-500);outline-offset:2px}.catalog-chip--storage-filter:disabled{cursor:not-allowed;opacity:.45}.catalog-chip--storage-filter-selected{opacity:1;box-shadow:inset 0 1px 0 #ffffff3d, inset 0 -1px 0 #00000029, 0 0 0 2px var(--brand-500)}.app-confirm{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.app-confirm__backdrop{cursor:pointer;background:#0f172a85;border:none;margin:0;padding:0;animation:.2s app-confirm-fade-in;position:absolute;inset:0}.app-confirm__dialog{z-index:1;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--surface-border);width:min(100%,24rem);animation:app-confirm-scale-in .24s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));outline:none;padding:1.25rem 1.25rem 1rem;position:relative;box-shadow:0 20px 48px #0f172a2e}.app-confirm__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .5rem;font-size:1.0625rem;font-weight:700}.app-confirm__description{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem;line-height:1.55}.app-confirm__actions{flex-wrap:wrap;justify-content:flex-end;gap:.5rem;display:flex}@keyframes app-confirm-fade-in{0%{opacity:0}to{opacity:1}}@keyframes app-confirm-scale-in{0%{opacity:0;transform:scale(.96)translateY(6px)}to{opacity:1;transform:scale(1)translateY(0)}}@media (prefers-reduced-motion:reduce){.app-confirm__backdrop,.app-confirm__dialog{animation:none}}.catalog-item-actions{align-items:center;gap:.25rem;display:inline-flex}.catalog-item-action-btn{cursor:pointer;background:0 0;border:1px solid #0000;border-radius:.5rem;justify-content:center;align-items:center;width:1.875rem;height:1.875rem;padding:0;font-size:1rem;line-height:1;transition:background .15s,border-color .15s,transform .12s;display:inline-flex}.catalog-item-action-btn:hover:not(:disabled){background:#0e749014;border-color:#0e74901f}.catalog-item-action-btn:active:not(:disabled){transform:scale(.94)}.catalog-item-action-btn:focus-visible{box-shadow:0 0 0 2px var(--input-ring);outline:none}.catalog-item-action-btn:disabled{opacity:.45;cursor:not-allowed}.purge-confirm-modal{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.purge-confirm-modal__backdrop{cursor:pointer;background:#0f172a85;border:none;margin:0;padding:0;position:absolute;inset:0}.purge-confirm-modal__dialog{z-index:1;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--surface-border);outline:none;width:min(100%,26rem);padding:1.25rem 1.25rem 1rem;position:relative;box-shadow:0 20px 48px #0f172a2e}.purge-confirm-modal__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .5rem;font-size:1.0625rem;font-weight:700}.purge-confirm-modal__description{color:var(--text-secondary);margin:0 0 .75rem;font-size:.875rem;line-height:1.55}.purge-confirm-modal__meta{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem}.purge-confirm-modal__meta strong{color:var(--text-primary);font-weight:700}.purge-confirm-modal__actions{flex-wrap:wrap;justify-content:flex-end;gap:.5rem;display:flex}.purge-catalog-empty{text-align:center;flex-direction:column;justify-content:center;align-items:center;gap:.75rem;padding:3rem 1.5rem;display:flex}.purge-catalog-empty__title{color:var(--text-primary);margin:0;font-size:1rem;font-weight:700}.purge-catalog-empty__description{max-width:28rem;color:var(--text-secondary);margin:0 0 .5rem;font-size:.9375rem;line-height:1.5}.purge-policy-approval-no{color:var(--text-secondary);font-size:.875rem}.purge-policy-action-btn{width:1.875rem;height:1.875rem;color:var(--text-muted);cursor:pointer;background:0 0;border:1px solid #0000;border-radius:.5rem;justify-content:center;align-items:center;padding:0;transition:color .15s,background .15s,border-color .15s,transform .12s;display:inline-flex}.purge-policy-action-btn:hover:not(:disabled){color:var(--brand-600);background:#0e749014;border-color:#0e74901f}.purge-policy-action-btn:active:not(:disabled){transform:scale(.94)}.purge-policy-action-btn:focus-visible{box-shadow:0 0 0 2px var(--input-ring);outline:none}.purge-policy-table-mobile{flex-direction:column;gap:.75rem;padding:.75rem;display:none}.purge-policy-table-desktop{display:block}.purge-policy-card{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);padding:1rem}.purge-policy-card__details{flex-direction:column;gap:.75rem;margin:0;display:flex}.purge-policy-card__details>div{flex-direction:column;gap:.2rem;display:flex}.purge-policy-card__details dt{letter-spacing:.05em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.purge-policy-card__details dd{color:var(--text-primary);margin:0;font-size:.875rem}.purge-policy-card__footer{border-top:1px solid var(--surface-border);margin-top:.875rem;padding-top:.875rem}.purge-create-drawer{flex-direction:column;min-height:0;display:flex}.purge-create-drawer__status{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.5}.purge-create-drawer__status--error{color:var(--status-error,#b91c1c)}.purge-drive-selection{flex-direction:column;gap:.75rem;min-height:0;display:flex}.purge-drive-selection__toolbar{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;display:flex}.purge-drive-selection__search{flex:1;min-width:12rem;position:relative}.purge-drive-selection__search input{border:1.5px solid var(--input-border);border-radius:var(--radius-md);background:var(--input-bg);width:100%;height:2.5rem;padding:0 .875rem 0 2.5rem;font-size:.875rem}.purge-drive-selection__search svg{color:var(--text-muted);position:absolute;top:50%;left:.75rem;transform:translateY(-50%)}.purge-drive-selection__count{color:var(--text-secondary);white-space:nowrap;font-size:.8125rem;font-weight:600}.purge-drive-selection__select-all{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);color:var(--text-primary);cursor:pointer;align-items:center;gap:.625rem;padding:.625rem .75rem;font-size:.875rem;font-weight:600;display:flex}.purge-drive-selection__select-all input{accent-color:var(--brand-600)}.purge-drive-selection__status{color:var(--text-secondary);margin:0;font-size:.875rem}.purge-drive-selection__list{flex-direction:column;gap:.5rem;max-height:min(28rem,100vh - 16rem);margin:0;padding:0;list-style:none;display:flex;overflow:auto}.purge-drive-item{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);cursor:pointer;align-items:flex-start;gap:.75rem;padding:.75rem;display:flex}.purge-drive-item--selected{border-color:var(--brand-500);background:var(--status-info-bg)}.purge-drive-item input{accent-color:var(--brand-600);margin-top:.15rem}.purge-drive-item__content{flex-direction:column;gap:.15rem;min-width:0;display:flex}.purge-drive-item__name{color:var(--text-primary);font-size:.875rem;font-weight:600}.purge-drive-item__meta{color:var(--text-secondary);font-size:.75rem}.purge-drive-item__stats{color:var(--text-muted);font-size:.75rem}@media (width<=768px){.purge-policy-table-desktop{display:none}.purge-policy-table-mobile{display:flex}}@media (width<=640px){.purge-drive-selection__list{max-height:none}}.verification-code{flex-direction:column;gap:.5rem;display:flex}.verification-code__label{color:var(--text-primary);font-size:.8125rem;font-weight:500}.verification-code__boxes{justify-content:center;gap:.5rem;display:flex}.verification-code__digit{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);font-variant-numeric:tabular-nums;text-align:center;width:2.5rem;height:2.75rem;color:var(--text-primary);caret-color:var(--brand-600);padding:0;font-size:1.25rem;font-weight:600;transition:border-color .15s,box-shadow .15s}.verification-code__digit:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.verification-code__digit:disabled{opacity:.55;cursor:not-allowed}.verification-code__digit--filled{background:#0e74900a;border-color:#0e749059}.verification-code--premium .verification-code__label{letter-spacing:.06em;text-transform:uppercase;color:var(--text-muted);font-size:.75rem;font-weight:600}.verification-code--premium .verification-code__boxes{gap:.625rem}.verification-code--premium .verification-code__digit{letter-spacing:.02em;background:#f8fafce6;border-color:#94a3b873;border-radius:.875rem;width:3rem;height:3.375rem;font-size:1.375rem;font-weight:600;transition:border-color .2s,box-shadow .2s,background .2s,transform .15s}.verification-code--premium .verification-code__digit:hover:not(:disabled){background:#fff;border-color:#0ea5e973}.verification-code--premium .verification-code__digit:focus{border-color:var(--brand-500);transform:translateY(-1px);box-shadow:0 0 0 1px #0ea5e926,0 0 0 4px #0ea5e91f,0 8px 20px #0ea5e914}.verification-code--premium .verification-code__digit--filled{background:#f0f9ffa6;border-color:#0ea5e980}.verification-code--invalid .verification-code__digit{background:#fef2f299;border-color:#dc26268c}.verification-code--invalid .verification-code__digit:focus{border-color:var(--status-error);box-shadow:0 0 0 1px #dc26261f,0 0 0 4px #dc26261a}@media (width<=380px){.verification-code__boxes{gap:.35rem}.verification-code__digit{width:2.125rem;height:2.5rem;font-size:1.125rem}.verification-code--premium .verification-code__boxes{gap:.4rem}.verification-code--premium .verification-code__digit{border-radius:.75rem;width:2.5rem;height:2.875rem;font-size:1.2rem}}.purge-approval-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.purge-approval-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.purge-approval-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.purge-approval-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.purge-approval-dialog__icon{width:3rem;height:3rem;color:var(--brand-600);background:linear-gradient(145deg,#e0f2fef2,#f0f9ff99);border:1px solid #0ea5e92e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #0ea5e91f}.purge-approval-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.purge-approval-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.purge-approval-dialog__badge{max-width:100%;color:var(--brand-700);white-space:nowrap;text-overflow:ellipsis;background:#e0f2fed9;border:1px solid #0ea5e926;border-radius:999px;align-self:flex-start;padding:.28rem .65rem;font-size:.75rem;font-weight:600;display:inline-flex;overflow:hidden}.purge-approval-dialog__body{padding:1.25rem 1.75rem 0}.purge-approval-dialog__lead{color:#475569f2;max-width:36ch;margin:0;font-size:.9375rem;line-height:1.65}.purge-approval-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.purge-approval-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.purge-approval-dialog__code-wrap{margin-top:1.5rem}.purge-approval-dialog__security{color:#64748bf2;background:#f1f5f9b3;border:1px solid #e2e8f0e6;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1.125rem 0 0;padding:.65rem .75rem;font-size:.75rem;line-height:1.5;display:flex}.purge-approval-dialog__security svg{color:var(--brand-600);opacity:.85;flex-shrink:0;margin-top:.1rem}.purge-approval-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.purge-approval-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.purge-approval-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.purge-approval-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.purge-approval-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.purge-approval-dialog__btn--outline{color:var(--brand-700);background:#fffc;border:1px solid #0ea5e947}.purge-approval-dialog__btn--outline:hover:not(:disabled){background:var(--status-info-bg);border-color:#0ea5e973;box-shadow:0 2px 8px #0ea5e91a}.purge-approval-dialog__btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--ocean-cyan,#22d3ee) 120%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #0ea5e947}.purge-approval-dialog__btn--primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #0ea5e952}.purge-approval-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite purge-approval-spin}@keyframes purge-approval-spin{to{transform:rotate(360deg)}}@media (width<=520px){.purge-approval-dialog__header{padding:1.35rem 1.25rem 0}.purge-approval-dialog__body{padding:1rem 1.25rem 0}.purge-approval-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.purge-approval-dialog__btn{width:100%}.purge-approval-dialog__btn--ghost{order:3}}.purge-catalog-execution-dialog{z-index:10050}.purge-support-notice{z-index:10060;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.purge-support-notice__backdrop{cursor:pointer;background:#0f172a85;border:none;margin:0;padding:0;position:absolute;inset:0}.purge-support-notice__dialog{z-index:1;border-radius:var(--radius-lg);background:var(--surface);border:1px solid var(--surface-border);outline:none;width:min(100%,28rem);padding:1.5rem 1.5rem 1.25rem;position:relative;box-shadow:0 20px 48px #0f172a2e}.purge-support-notice__icon{border-radius:var(--radius-md);color:#b45309;background:var(--status-warning-bg);border:1px solid #d9770640;justify-content:center;align-items:center;width:2.75rem;height:2.75rem;margin-bottom:.875rem;display:inline-flex}.purge-support-notice__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .75rem;font-size:1.0625rem;font-weight:700}.purge-support-notice__body{flex-direction:column;gap:.75rem;margin-bottom:1.25rem;display:flex}.purge-support-notice__body p{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.purge-support-notice__actions{justify-content:flex-end;display:flex}.purge-policy-detail{flex-direction:column;gap:1.25rem;display:flex}.purge-policy-detail__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.purge-policy-detail__polling{border-radius:var(--radius-md);background:var(--status-info-bg);color:var(--brand-700);border:1px solid #0ea5e940;margin:0;padding:.75rem 1rem;font-size:.8125rem}.purge-policy-detail__header{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;display:flex}.purge-policy-detail__meta{color:var(--text-muted);font-size:.8125rem;font-family:var(--font-mono,ui-monospace, monospace);margin:0}.purge-policy-detail__metrics{grid-template-columns:repeat(3,minmax(0,1fr));gap:.65rem;display:grid}@media (width<=720px){.purge-policy-detail__metrics{grid-template-columns:repeat(2,minmax(0,1fr))}}.purge-policy-detail__metric{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);flex-direction:column;gap:.2rem;padding:.75rem .875rem;display:flex}.purge-policy-detail__metric-label{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);font-size:.6875rem;font-weight:700}.purge-policy-detail__metric strong{color:var(--text-primary);font-size:.9375rem}.purge-policy-detail__section-title{color:var(--text-primary);margin:0 0 .5rem;font-size:.8125rem;font-weight:600}.purge-policy-detail__dl{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem 1rem;margin:0;display:grid}@media (width<=560px){.purge-policy-detail__dl{grid-template-columns:1fr}}.purge-policy-detail__field{flex-direction:column;gap:.2rem;min-width:0;display:flex}.purge-policy-detail__field dt{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.purge-policy-detail__field dd{color:var(--text-primary);margin:0;font-size:.875rem;line-height:1.45}.purge-policy-detail__drives{flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none;display:flex}.purge-policy-detail__drive{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);flex-direction:column;gap:.15rem;padding:.75rem;display:flex}.purge-policy-detail__drive strong{color:var(--text-primary);font-size:.875rem}.purge-policy-detail__drive span{color:var(--text-secondary);font-size:.75rem}.purge-policy-detail__drive-id{font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-muted)!important}.plan-blocked-notice{background:#ef44440f;border:1px solid #ef444438;border-radius:10px;align-items:center;gap:.75rem;margin-bottom:1.25rem;padding:.75rem 1rem;display:flex}.plan-blocked-notice__mascot{flex-shrink:0;width:2.25rem;height:2.25rem}.plan-blocked-notice__mascot svg{width:100%;height:100%;display:block}.plan-blocked-notice__text{color:#dc2626;margin:0;font-size:.875rem;font-weight:500;line-height:1.5}.plan-canceled-hero{text-align:center;background:radial-gradient(ellipse 80% 60% at 50% 0%, #67e8f938, transparent 65%), linear-gradient(180deg, #f0f9fff2 0%, var(--surface) 100%);box-shadow:var(--shadow-sm), 0 20px 40px #041e330d;border:1px solid #0ea5e929;border-radius:20px;flex-direction:column;align-items:center;gap:1.25rem;margin-bottom:1.5rem;padding:clamp(1.5rem,4vw,2.25rem) clamp(1rem,3vw,2rem);display:flex}.plan-canceled-hero__art{width:min(100%,280px)}.plan-canceled-hero__svg{width:100%;height:auto;display:block}.plan-canceled-hero__shield{animation:4s ease-in-out infinite plan-sad-float}.plan-canceled-hero__sparkles{animation:3s ease-in-out infinite plan-sad-twinkle}@keyframes plan-sad-float{0%,to{transform:translateY(0)}50%{transform:translateY(-4px)}}@keyframes plan-sad-twinkle{0%,to{opacity:1}50%{opacity:.45}}.plan-canceled-hero__copy{max-width:34rem}.plan-canceled-hero__title{letter-spacing:-.025em;color:var(--text-primary);margin:0 0 .5rem;font-size:clamp(1.25rem,3vw,1.5rem);font-weight:700}.plan-canceled-hero__message{color:var(--text-secondary);margin:0;font-size:.9375rem;line-height:1.6}@media (width>=768px){.plan-canceled-hero{text-align:left;flex-direction:row;gap:2rem}.plan-canceled-hero__art{flex-shrink:0;width:240px}}.plan-checkout-modal{z-index:9200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.plan-checkout-modal__backdrop{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);cursor:pointer;background:#04122094;border:none;padding:0;animation:.24s plan-checkout-modal-fade-in;position:absolute;inset:0}.plan-checkout-modal__backdrop:disabled{cursor:default}.plan-checkout-modal__dialog{width:min(34rem,100%);animation:plan-checkout-modal-slide-in .36s var(--ease-out-expo);background:linear-gradient(165deg,#fff 0%,#f0f9ff 38%,#f8fafc 72%,#fff 100%);border:1px solid #ffffffb8;border-radius:22px;padding:1.75rem 1.75rem 1.5rem;position:relative;overflow:hidden;box-shadow:0 4px 8px #041e330d,0 28px 72px #041e3333,inset 0 1px #ffffffd9}.plan-checkout-modal__glow{pointer-events:none;filter:blur(48px);border-radius:50%;position:absolute}.plan-checkout-modal__glow--top{background:#38bdf847;width:12rem;height:12rem;top:-4rem;right:-3rem}.plan-checkout-modal__glow--bottom{background:#0ea5e929;width:14rem;height:14rem;bottom:-5rem;left:-2rem}.plan-checkout-modal__close{z-index:1;width:2.25rem;height:2.25rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;background:#ffffffe0;border:1px solid #e2e8f0f2;border-radius:999px;justify-content:center;align-items:center;display:inline-flex;position:absolute;top:1rem;right:1rem}.plan-checkout-modal__close:hover:not(:disabled){color:var(--text-primary);background:#fff;border-color:#0ea5e947}.plan-checkout-modal__close:disabled{opacity:.55;cursor:not-allowed}.plan-checkout-modal__summary{background:linear-gradient(135deg,#0ea5e91a,#38bdf80a);border:1px solid #0ea5e929;border-radius:16px;margin-bottom:1.35rem;padding:1.1rem 1.15rem;position:relative}.plan-checkout-modal__eyebrow{letter-spacing:.08em;text-transform:uppercase;color:var(--brand-600);margin:0 0 .35rem;font-size:.6875rem;font-weight:600}.plan-checkout-modal__plan-name{letter-spacing:-.03em;color:var(--text-primary);margin:0 0 .25rem;font-size:1.375rem;font-weight:700}.plan-checkout-modal__plan-price{color:var(--text-secondary);margin:0;font-size:.875rem}.plan-checkout-modal__plan-price strong{color:var(--text-primary);font-size:1.125rem;font-weight:700}.plan-checkout-modal__body{position:relative}.plan-checkout-modal__lead{color:var(--text-secondary);margin:0 0 1rem;font-size:.9375rem;line-height:1.55}.plan-checkout-modal__options{gap:.75rem;display:grid}.plan-checkout-modal__option{text-align:left;cursor:pointer;width:100%;transition:border-color var(--duration-normal) ease, box-shadow var(--duration-normal) var(--ease-out-expo), transform var(--duration-normal) var(--ease-out-expo), background var(--duration-fast) ease;background:#ffffffd1;border:1.5px solid #e2e8f0f2;border-radius:16px;grid-template-columns:auto 1fr auto;align-items:center;gap:.9rem;padding:1rem 1rem 1rem .95rem;display:grid}.plan-checkout-modal__option:hover:not(:disabled){border-color:#0ea5e957;transform:translateY(-1px);box-shadow:0 10px 24px #041e3312}.plan-checkout-modal__option--selected{background:linear-gradient(135deg,#f0f9fff2,#fffffffa);border-color:#0ea5e98c;box-shadow:0 0 0 1px #0ea5e91f,0 14px 28px #0ea5e91a}.plan-checkout-modal__option:disabled{opacity:.65;cursor:not-allowed}.plan-checkout-modal__option-icon{width:3.25rem;height:3.25rem;color:var(--brand-600);background:linear-gradient(145deg,#0ea5e924,#38bdf80f);border-radius:14px;justify-content:center;align-items:center;display:flex}.plan-checkout-modal__option-copy{flex-direction:column;gap:.2rem;min-width:0;display:flex}.plan-checkout-modal__option-title{color:var(--text-primary);font-size:.9375rem;font-weight:700}.plan-checkout-modal__option-description{color:var(--text-secondary);font-size:.8125rem;line-height:1.45}.plan-checkout-modal__option-hint{color:var(--text-muted);font-size:.75rem}.plan-checkout-modal__option-indicator{color:#0000;width:1.5rem;height:1.5rem;transition:border-color var(--duration-fast) ease, background var(--duration-fast) ease, color var(--duration-fast) ease;border:1.5px solid #cbd5e1f2;border-radius:999px;justify-content:center;align-items:center;display:flex}.plan-checkout-modal__option--selected .plan-checkout-modal__option-indicator{border-color:var(--brand-500);background:var(--brand-500);color:#fff}.plan-checkout-modal__actions{border-top:1px solid #e2e8f0e6;flex-wrap:wrap;justify-content:flex-end;gap:.625rem;margin-top:1.35rem;padding-top:1.25rem;display:flex;position:relative}.plan-checkout-modal__spinner{width:1rem;height:1rem;margin-right:.35rem}@keyframes plan-checkout-modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes plan-checkout-modal-slide-in{0%{opacity:0;transform:translateY(16px)scale(.97)}to{opacity:1;transform:translateY(0)scale(1)}}@media (prefers-reduced-motion:reduce){.plan-checkout-modal__backdrop,.plan-checkout-modal__dialog{animation:none}.plan-checkout-modal__option:hover:not(:disabled){transform:none}}@media (width<=480px){.plan-checkout-modal__dialog{padding:1.35rem 1.15rem 1.15rem}.plan-checkout-modal__option{grid-template-columns:auto 1fr}.plan-checkout-modal__option-indicator{grid-column:2;justify-self:end;margin-top:-2.5rem}}.plan-current{position:relative;overflow:hidden}.plan-current:before{content:"";background:var(--primary-gradient);height:3px;position:absolute;inset:0 0 auto}.plan-current__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem 1.5rem;margin-bottom:1.75rem;display:flex}.plan-current__identity{flex-direction:column;gap:.35rem;display:flex}.plan-current__eyebrow{letter-spacing:.08em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:600}.plan-current__name{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.625rem;font-weight:700}.plan-current__price{color:var(--text-secondary);margin:0;font-size:.875rem}.plan-current__price strong{color:var(--text-primary);font-size:1.125rem;font-weight:700}.plan-current__renewal{color:var(--text-muted);margin:.15rem 0 0;font-size:.8125rem}.plan-current__badge{color:var(--brand-700);background:var(--status-info-bg);border:1px solid #0ea5e933;border-radius:999px;align-items:center;gap:.35rem;padding:.35rem .75rem;font-size:.75rem;font-weight:600;display:inline-flex}.plan-limits{grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:.875rem;margin-bottom:1.75rem;display:grid}.plan-limit{border-radius:var(--radius-sm);background:var(--surface-muted);border:1px solid var(--surface-border);align-items:flex-start;gap:.875rem;padding:1rem 1.125rem;display:flex}.plan-limit__body{flex-direction:column;flex:1;gap:.5rem;min-width:0;display:flex}.plan-limit__head{justify-content:space-between;align-items:baseline;gap:.75rem;display:flex}.plan-limit__usage{color:var(--text-primary);white-space:nowrap;flex-shrink:0;font-size:.8125rem;font-weight:600}.plan-limit__track{background:var(--surface);border:1px solid var(--surface-border);border-radius:999px;height:6px;overflow:hidden}.plan-limit__fill{border-radius:inherit;background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));height:100%;transition:width var(--duration-normal) var(--ease-out-expo)}.plan-limit__available{color:var(--text-muted);margin:0;font-size:.75rem}.plan-limit__available--unlimited{padding-top:.125rem}.plan-limit__icon{background:var(--surface);width:2.25rem;height:2.25rem;color:var(--brand-600);box-shadow:var(--shadow-sm);border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;display:flex}.plan-limit__label{color:var(--text-muted);margin:0 0 .15rem;font-size:.75rem;font-weight:500}.plan-limit__value{color:var(--text-primary);margin:0;font-size:.9375rem;font-weight:600;line-height:1.35}.plan-features{margin-bottom:1.75rem}.plan-features__title{letter-spacing:.02em;color:var(--text-secondary);margin:0 0 .875rem;font-size:.8125rem;font-weight:600}.plan-features__list{grid-template-columns:1fr;gap:.5rem;margin:0;padding:0;list-style:none;display:grid}@media (width>=640px){.plan-features__list{grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem 1rem}}.plan-feature{border-radius:var(--radius-sm);color:var(--text-primary);transition:background var(--duration-fast) ease;align-items:flex-start;gap:.625rem;padding:.5rem .25rem;font-size:.8125rem;line-height:1.4;display:flex}.plan-feature:hover{background:var(--surface-muted)}.plan-feature__check{border:1.5px solid var(--surface-border);background:var(--surface);color:#0000;width:1.25rem;height:1.25rem;transition:background var(--duration-fast) ease, border-color var(--duration-fast) ease, color var(--duration-fast) ease;border-radius:6px;flex-shrink:0;justify-content:center;align-items:center;display:flex}.plan-feature--included .plan-feature__check{border-color:var(--brand-500);background:var(--status-info-bg);color:var(--brand-600)}.plan-feature--excluded{color:var(--text-muted)}.plan-feature--excluded .plan-feature__check{border-color:var(--surface-border);background:var(--surface-muted)}.plan-current__actions{border-top:1px solid var(--surface-border);flex-wrap:wrap;gap:.75rem;margin-top:1.25rem;padding-top:1.25rem;display:flex}.plan-catalog-section{background:linear-gradient(165deg, #f0f9ffa6 0%, #f8fafcf2 48%, var(--surface) 100%);box-shadow:var(--shadow-sm), 0 24px 48px #041e330a;animation:plan-catalog-in var(--duration-normal) var(--ease-out-expo) both;border:1px solid #0ea5e91f;border-radius:18px;margin-top:1.5rem;padding:clamp(1.25rem,3vw,2rem)}.plan-catalog-section--subscribe{margin-top:0}.plan-catalog-section__header{max-width:42rem;margin-bottom:clamp(1.25rem,3vw,1.75rem)}.plan-catalog-section__title{letter-spacing:-.025em;color:var(--text-primary);margin:0 0 .5rem;font-size:clamp(1.125rem,2.5vw,1.375rem);font-weight:700}.plan-catalog-section__description{color:var(--text-secondary);margin:0;font-size:.9375rem;line-height:1.55}.plan-catalog{align-items:stretch;gap:1rem;display:grid}@keyframes plan-catalog-in{0%{opacity:0;transform:translateY(12px)}to{opacity:1;transform:translateY(0)}}@media (width>=640px){.plan-catalog{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width>=1024px){.plan-catalog{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.125rem}}.plan-option{background:var(--surface);min-height:100%;transition:border-color var(--duration-normal) ease, box-shadow var(--duration-normal) var(--ease-out-expo), transform var(--duration-normal) var(--ease-out-expo);border:1px solid #e2e8f0f2;border-radius:18px;flex-direction:column;gap:0;padding:1.625rem 1.5rem 1.5rem;display:flex;position:relative;box-shadow:0 1px 2px #041e330a,0 8px 24px #041e330d}.plan-option:hover{border-color:#0ea5e947;transform:translateY(-3px);box-shadow:0 2px 4px #041e330a,0 16px 32px #041e3314}.plan-option--current{border-color:var(--brand-500);background:linear-gradient(180deg, #f0f9ff8c 0%, var(--surface) 36%);box-shadow:0 0 0 1px #0ea5e959,0 8px 28px #0ea5e91f,0 16px 40px #041e330f}.plan-option--current:hover{transform:translateY(-3px);box-shadow:0 0 0 1px #0ea5e973,0 12px 32px #0ea5e929,0 20px 44px #041e3312}.plan-option--featured{background:linear-gradient(180deg, #f0f9ffd9 0%, var(--surface) 42%);border-color:#0ea5e952}@media (width>=1024px){.plan-option--featured{z-index:1;transform:scale(1.025)}.plan-option--featured:hover{transform:scale(1.025)translateY(-3px)}}.plan-option__badges{flex-wrap:wrap;gap:.375rem;display:flex;position:absolute;top:1rem;left:1rem;right:1rem}.plan-option__badge{letter-spacing:.04em;text-transform:uppercase;border-radius:999px;align-items:center;padding:.3rem .65rem;font-size:.6875rem;font-weight:700;display:inline-flex}.plan-option__badge--current{color:var(--brand-700);background:#e0f2fef2;border:1px solid #0ea5e947;box-shadow:0 2px 8px #0ea5e91a}.plan-option__badge--featured{color:#0369a1;background:#ffffffeb;border:1px solid #0ea5e938}.plan-option__header{margin-bottom:1.375rem;padding-top:1.75rem}.plan-option__name{letter-spacing:-.015em;color:var(--text-primary);margin:0 0 .875rem;font-size:1.0625rem;font-weight:700}.plan-option__pricing{flex-wrap:wrap;align-items:baseline;gap:.1rem .2rem;margin-bottom:.5rem;display:flex}.plan-option__currency{color:var(--text-secondary);align-self:flex-start;margin-top:.35rem;font-size:.9375rem;font-weight:600}.plan-option__amount{letter-spacing:-.04em;color:var(--text-primary);font-size:2.25rem;font-weight:800;line-height:1}.plan-option__cents{letter-spacing:-.02em;color:var(--text-primary);font-size:1.125rem;font-weight:700}.plan-option__period{color:var(--text-muted);margin-left:.15rem;font-size:.8125rem;font-weight:500}.plan-option__price-fallback{color:var(--text-primary);font-size:1.75rem;font-weight:700}.plan-option__tagline{color:var(--text-muted);margin:0;font-size:.8125rem;line-height:1.45}.plan-option__highlights{flex-direction:column;flex:1;gap:.75rem;margin:0;padding:0;list-style:none;display:flex}.plan-option__highlights li{align-items:flex-start;gap:.625rem;display:flex}.plan-option__check{width:1.125rem;height:1.125rem;color:var(--brand-600);background:var(--status-info-bg);border:1px solid #0ea5e938;border-radius:50%;flex-shrink:0;justify-content:center;align-items:center;margin-top:.125rem;display:flex}.plan-option__highlight-text{color:var(--text-secondary);font-size:.8125rem;line-height:1.5}.plan-option__highlight-text strong{color:var(--text-primary);font-weight:700}.plan-option__cta{border-top:1px solid var(--surface-border);margin-top:1.5rem;padding-top:1.25rem}.plan-option__btn{width:100%;height:2.75rem;font-size:.875rem}.plan-option__current-state{border-radius:var(--radius-sm);width:100%;min-height:2.75rem;color:var(--brand-700);background:#e0f2fea6;border:1px solid #0ea5e947;justify-content:center;align-items:center;gap:.5rem;padding:.625rem 1rem;font-size:.875rem;font-weight:600;display:flex}.plan-option__current-icon{color:#fff;background:linear-gradient(135deg, var(--brand-600), var(--brand-500));border-radius:50%;justify-content:center;align-items:center;width:1.375rem;height:1.375rem;display:flex;box-shadow:0 2px 8px #0ea5e947}.plan-option__spinner{animation:.75s linear infinite plan-spin}@keyframes plan-spin{to{transform:rotate(360deg)}}.plan-catalog__notice{border-radius:var(--radius-sm);background:#f0f9ffd9;border:1px solid #0ea5e92e;justify-content:center;align-items:flex-start;gap:.75rem;max-width:36rem;margin:1.5rem auto 0;padding:.875rem 1.125rem;display:flex}.plan-catalog__notice-icon{color:var(--brand-600);flex-shrink:0;margin-top:.1rem;display:flex}.plan-catalog__notice p{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.5}.plan-feature-limit-dialog{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.plan-feature-limit-dialog__backdrop{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);cursor:pointer;background:#04122094;border:none;margin:0;padding:0;animation:.24s plan-feature-limit-fade-in;position:absolute;inset:0}.plan-feature-limit-dialog__panel{z-index:1;width:min(100%,28rem);animation:plan-feature-limit-slide-in .36s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));background:linear-gradient(165deg,#fff 0%,#f0f9ff 34%,#f8fafc 68%,#fff 100%);border:1px solid #ffffffc7;border-radius:22px;outline:none;padding:1.5rem 1.5rem 1.25rem;position:relative;overflow:hidden;box-shadow:0 4px 8px #041e330d,0 28px 72px #041e3333,inset 0 1px #ffffffe6}.plan-feature-limit-dialog__glow{pointer-events:none;filter:blur(48px);border-radius:50%;position:absolute}.plan-feature-limit-dialog__glow--top{background:#38bdf84d;width:11rem;height:11rem;top:-4.5rem;right:-3rem}.plan-feature-limit-dialog__glow--bottom{background:#fb923c2e;width:12rem;height:12rem;bottom:-4.5rem;left:-2.5rem}.plan-feature-limit-dialog__close{z-index:2;width:2.125rem;height:2.125rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;background:#ffffffe6;border:1px solid #e2e8f0f2;border-radius:999px;justify-content:center;align-items:center;display:inline-flex;position:absolute;top:.875rem;right:.875rem}.plan-feature-limit-dialog__close:hover{color:var(--text-primary);background:#fff;border-color:#0ea5e947}.plan-feature-limit-dialog__hero{text-align:center;flex-direction:column;align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.plan-feature-limit-dialog__illustration{width:min(100%,180px);height:auto;display:block}.plan-feature-limit-dialog__hero-copy{flex-direction:column;align-items:center;gap:.5rem;display:flex}.plan-feature-limit-dialog__eyebrow{letter-spacing:.06em;text-transform:uppercase;color:#0369a1;background:#0ea5e91a;border:1px solid #0ea5e92e;border-radius:999px;align-items:center;padding:.22rem .65rem;font-size:.6875rem;font-weight:700;display:inline-flex}.plan-feature-limit-dialog__title{letter-spacing:-.03em;color:var(--text-primary);background:linear-gradient(135deg,#0c4a6e 0%,#0369a1 55%,#0ea5e9 100%);-webkit-text-fill-color:transparent;-webkit-background-clip:text;background-clip:text;margin:0;font-size:1.25rem;font-weight:800;line-height:1.2}.plan-feature-limit-dialog__feature{background:#ffffffb8;border:1px solid #0ea5e924;border-radius:14px;flex-direction:column;gap:.25rem;margin-bottom:1rem;padding:.875rem 1rem;display:flex;box-shadow:inset 0 1px #ffffffd9}.plan-feature-limit-dialog__feature-label{letter-spacing:.05em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:700}.plan-feature-limit-dialog__feature-name{color:var(--text-primary);font-size:.9375rem;font-weight:700;line-height:1.4}.plan-feature-limit-dialog__message{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem;line-height:1.6}.plan-feature-limit-dialog__actions{grid-template-columns:1fr 1fr;gap:.625rem;display:grid}.plan-feature-limit-dialog__btn{width:100%;border-radius:12px!important;min-height:2.625rem!important}.plan-feature-limit-dialog__btn--upgrade{box-shadow:0 1px 2px #041e330f,0 8px 20px #0ea5e947}.plan-feature-limit-dialog__btn--upgrade:hover:not(:disabled){box-shadow:0 2px 4px #041e3314,0 12px 28px #0ea5e957}@keyframes plan-feature-limit-fade-in{0%{opacity:0}to{opacity:1}}@keyframes plan-feature-limit-slide-in{0%{opacity:0;transform:scale(.96)translateY(10px)}to{opacity:1;transform:scale(1)translateY(0)}}@media (prefers-reduced-motion:reduce){.plan-feature-limit-dialog__backdrop,.plan-feature-limit-dialog__panel{animation:none}}@media (width>=520px){.plan-feature-limit-dialog__hero{text-align:left;flex-direction:row;align-items:center;gap:1rem}.plan-feature-limit-dialog__hero-copy{align-items:flex-start}.plan-feature-limit-dialog__illustration{flex-shrink:0;width:132px}}.retention-drawer-shell{flex-direction:column;gap:1.5rem;width:100%;min-height:100%;display:flex}.retention-drawer-footer{justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}.retention-drawer-footer--stacked{flex-direction:column;align-items:stretch;gap:.75rem}.retention-drawer-footer__policy-actions{border-bottom:1px solid var(--surface-border);flex-wrap:wrap;gap:.5rem;padding-bottom:.75rem;display:flex}.retention-drawer-footer__main{justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}.retention-drawer-footer__end{flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;display:flex}.retention-drawer-step{flex-direction:column;flex:1;gap:1.25rem;width:100%;display:flex}.retention-drawer-step__intro{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.retention-drawer-step__hint{color:var(--text-muted);margin:0;font-size:.8125rem}.retention-drawer-step__error{color:var(--status-error);margin:0;font-size:.8125rem}.retention-drawer-field{flex-direction:column;gap:.35rem;display:flex}.retention-drawer-field__label{color:var(--text-primary);font-size:.875rem;font-weight:600}.retention-drawer-field--locked .retention-drawer-field__label{color:var(--text-muted)}.retention-drawer-field--locked .retention-drawer-field__select:disabled{opacity:.7;cursor:not-allowed;background:var(--surface-muted);color:var(--text-muted);border-color:var(--surface-border)}.retention-drawer-field__input,.retention-drawer-field__textarea,.retention-drawer-field__select{border:1.5px solid var(--input-border);border-radius:var(--radius-md);background:var(--input-bg);width:100%;color:var(--text-primary);transition:border-color var(--duration-fast), box-shadow var(--duration-fast);font-size:.875rem}.retention-drawer-field__input,.retention-drawer-field__select{height:2.75rem;padding:0 .875rem}.retention-drawer-field__textarea{resize:vertical;min-height:6.5rem;padding:.75rem .875rem;line-height:1.5}.retention-drawer-field__input:focus,.retention-drawer-field__textarea:focus,.retention-drawer-field__select:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 4px var(--input-ring);background:#fff;outline:none}.retention-drawer-field--error .retention-drawer-field__input,.retention-drawer-field--error .retention-drawer-field__textarea{border-color:var(--status-error)}.retention-type-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:1rem;width:100%;display:grid}@media (width<=720px){.retention-type-grid{grid-template-columns:1fr}}.retention-type-card{border:1.5px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface-muted);cursor:pointer;text-align:left;transition:border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);flex-direction:column;gap:.5rem;padding:1rem;display:flex;position:relative}.retention-type-card:hover{border-color:#0ea5e959}.retention-type-card--selected{border-color:var(--brand-500);background:var(--status-info-bg);box-shadow:0 0 0 1px var(--brand-500)}.retention-type-grid--locked .retention-type-card:disabled{opacity:.45;cursor:not-allowed}.retention-type-card__badge{letter-spacing:.04em;text-transform:uppercase;color:var(--brand-700);background:#fff;border:1px solid #0ea5e933;border-radius:999px;align-self:flex-start;padding:.15rem .45rem;font-size:.6875rem;font-weight:700}.retention-type-card__title-row{flex-wrap:wrap;align-items:center;gap:.4rem .5rem;display:flex}.retention-type-card__title{color:var(--text-primary);margin:0;font-size:1rem;font-weight:700}.retention-type-card__desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.45}.retention-rule-card--purge{border-top:1px solid var(--surface-border);margin-top:.25rem;padding-top:1.25rem}.retention-rule-card{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:#fff;flex-direction:column;gap:.875rem;padding:1rem;display:flex}.retention-rule-card__body{flex-direction:column;gap:.75rem;padding-top:.25rem;display:flex}.retention-preset-row{flex-wrap:wrap;gap:.5rem;display:flex}.retention-preset-btn{border:1px solid var(--surface-border);background:var(--surface);height:2rem;color:var(--text-secondary);cursor:pointer;transition:border-color var(--duration-fast), background var(--duration-fast), color var(--duration-fast);border-radius:999px;padding:0 .75rem;font-size:.8125rem;font-weight:600}.retention-preset-btn--active{border-color:var(--brand-500);background:var(--status-info-bg);color:var(--brand-700)}.retention-chip-row{flex-wrap:wrap;gap:.5rem;display:flex}.retention-chip{border:1px solid var(--surface-border);background:var(--surface);height:1.875rem;color:var(--text-secondary);cursor:pointer;border-radius:999px;padding:0 .65rem;font-size:.8125rem;font-weight:600}.retention-chip--active{border-color:var(--brand-500);background:var(--status-info-bg);color:var(--brand-700)}.retention-chip-input-row{gap:.5rem;display:flex}.retention-chip-input-row .retention-drawer-field__input{flex:1}.retention-path-list{flex-direction:column;gap:.35rem;margin:0;padding:0;list-style:none;display:flex}.retention-path-list li{border-radius:var(--radius-sm);background:var(--surface-muted);justify-content:space-between;align-items:center;gap:.5rem;padding:.5rem .65rem;font-size:.8125rem;display:flex}.retention-path-list button{color:var(--status-error);cursor:pointer;background:0 0;border:none;font-size:.75rem;font-weight:600}.retention-alert{border-radius:var(--radius-sm);background:var(--status-warning-bg);color:#92400e;border:1px solid #d9770659;padding:.875rem 1rem;font-size:.8125rem;line-height:1.5}.retention-alert--danger{background:var(--status-error-bg);color:#991b1b;border-color:#dc262659}.retention-purge-mode-row{grid-template-columns:repeat(auto-fit,minmax(12rem,1fr));gap:.625rem;display:grid}.retention-purge-mode-card{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);text-align:left;cursor:pointer;transition:border-color var(--duration-fast), background var(--duration-fast);flex-direction:column;gap:.35rem;padding:.875rem;display:flex}.retention-purge-mode-card--active{border-color:var(--brand-500);background:var(--status-info-bg)}.retention-purge-mode-card__header{flex-wrap:wrap;align-items:center;gap:.35rem .45rem;display:flex}.retention-purge-mode-card__title{color:var(--text-primary);font-size:.875rem;font-weight:700}.retention-purge-mode-card__desc{color:var(--text-secondary);font-size:.75rem;line-height:1.45}.retention-review-list{flex-direction:column;gap:.65rem;margin:0;padding:0;list-style:none;display:flex}.retention-review-list li{border-bottom:1px solid var(--surface-border);flex-direction:column;gap:.15rem;padding-bottom:.65rem;display:flex}.retention-review-list li:last-child{border-bottom:none;padding-bottom:0}.retention-review-list dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:700}.retention-review-list dd{color:var(--text-primary);margin:0;font-size:.875rem}.retention-stepper{border-bottom:1px solid var(--surface-border);flex-wrap:wrap;gap:.5rem .75rem;width:100%;padding-bottom:1rem;display:flex}.retention-stepper__item{color:var(--text-muted);background:0 0;border-radius:999px;align-items:center;gap:.35rem;padding:.35rem .55rem;font-size:.6875rem;font-weight:600;display:inline-flex}.retention-stepper__item--active{color:var(--brand-700);background:var(--status-info-bg)}.retention-stepper__item--done{color:var(--status-success)}.retention-stepper__index{background:var(--surface-muted);border-radius:999px;justify-content:center;align-items:center;width:1.25rem;height:1.25rem;font-size:.625rem;display:inline-flex}.retention-stepper__item--active .retention-stepper__index{background:var(--brand-600);color:#fff}.retention-stepper__item--done .retention-stepper__index{background:var(--status-success-bg);color:var(--status-success)}.retention-drives-toolbar{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;display:flex}.retention-drives-search{flex:1;min-width:12rem;position:relative}.retention-drives-search input{border:1.5px solid var(--input-border);border-radius:var(--radius-md);background:var(--input-bg);width:100%;height:2.5rem;padding:0 .875rem 0 2.5rem;font-size:.875rem}.retention-drives-search svg{color:var(--text-muted);position:absolute;top:50%;left:.75rem;transform:translateY(-50%)}.retention-drives-list{flex-direction:column;gap:.5rem;max-height:22rem;margin:0;padding:0;list-style:none;display:flex;overflow:auto}.retention-drive-item{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);cursor:pointer;align-items:flex-start;gap:.75rem;padding:.75rem;display:flex}.retention-drive-item--selected{border-color:var(--brand-500);background:var(--status-info-bg)}.retention-drive-item__content{flex-direction:column;gap:.15rem;min-width:0;display:flex}.retention-drive-item__title{color:var(--text-primary);font-size:.875rem;font-weight:600}.retention-drive-item__meta{color:var(--text-secondary);font-size:.75rem}.retention-inline-fields{grid-template-columns:1fr 1fr;gap:.75rem;display:grid}@media (width<=520px){.retention-inline-fields{grid-template-columns:1fr}}.purge-action-grid{flex-wrap:nowrap;align-items:center;gap:.25rem;width:fit-content;display:flex}.purge-action-btn{width:1.875rem;height:1.875rem;color:var(--text-muted);cursor:pointer;background:0 0;border:1px solid #0000;border-radius:.5rem;justify-content:center;align-items:center;padding:0;transition:color .15s,background .15s,border-color .15s,transform .12s;display:inline-flex}.purge-action-btn svg{flex-shrink:0}.purge-action-btn:hover:not(:disabled){color:var(--brand-600);background:#0e749014;border-color:#0e74901f}.purge-action-btn:active:not(:disabled){transform:scale(.94)}.purge-action-btn:focus-visible{box-shadow:0 0 0 2px var(--input-ring);outline:none}.purge-action-btn--approve:hover:not(:disabled){color:var(--status-success);background:var(--status-success-bg);border-color:#05966933}.purge-action-btn--schedule:hover:not(:disabled){color:var(--brand-600);background:var(--status-info-bg);border-color:#0e749026}.purge-action-btn--schedule-emphasis{color:var(--status-warning);background:var(--status-warning-bg);border-color:#d9770640}.purge-action-btn--schedule-emphasis:hover:not(:disabled){color:var(--status-warning);background:var(--status-warning-bg);border-color:#d9770666}.purge-action-btn--danger:hover:not(:disabled){color:var(--status-error);background:var(--status-error-bg);border-color:#dc262633}.purge-action-btn--hidden{display:none}.purge-dialog{z-index:1200;justify-content:center;align-items:center;padding:1rem;display:flex;position:fixed;inset:0}.purge-dialog__backdrop{cursor:pointer;background:#0f172a73;border:none;position:absolute;inset:0}.purge-dialog__panel{z-index:1;border-radius:var(--radius-md);background:var(--surface);width:min(100%,28rem);max-height:calc(100vh - 2rem);box-shadow:var(--shadow-lg);padding:1.25rem 1.5rem 1.5rem;position:relative;overflow:auto}.purge-dialog__panel--wide{width:min(100%,32rem)}.purge-dialog__title{color:var(--text-primary);margin:0 0 .5rem;font-size:1.125rem;font-weight:600}.purge-dialog__text{color:var(--text-muted);margin:0 0 1rem;font-size:.875rem;line-height:1.5}.purge-dialog__field,.purge-dialog__code-field{flex-direction:column;gap:.35rem;margin-bottom:1rem;display:flex}.purge-dialog__code-field{align-items:stretch}.purge-dialog__label{color:var(--text-primary);font-size:.8125rem;font-weight:500}.purge-dialog__input,.purge-dialog__textarea{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);width:100%;color:var(--text-primary);padding:.5rem .75rem;font-family:inherit;font-size:.875rem}.purge-dialog__textarea{resize:vertical;min-height:5rem}.purge-dialog__input:focus,.purge-dialog__textarea:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.purge-dialog__hint{color:var(--text-muted);margin:.35rem 0 0;font-size:.8125rem}.purge-dialog__error{border-radius:var(--radius-sm);color:var(--status-error);background:var(--status-error-bg);margin:0 0 1rem;padding:.5rem .75rem;font-size:.8125rem}.purge-dialog__actions{flex-wrap:wrap;justify-content:flex-end;gap:.5rem;display:flex}.purge-schedule-detail{flex-direction:column;gap:1.25rem;display:flex}.purge-schedule-detail__loading,.purge-schedule-detail__empty,.component-error-boundary{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.purge-schedule-detail__warning{border-radius:var(--radius-md);background:var(--status-error-bg);color:var(--status-error);border:1px solid #dc262659;gap:.75rem;padding:.875rem 1rem;font-size:.8125rem;line-height:1.45;display:flex}.purge-schedule-detail__passed-alert{border-radius:var(--radius-md);background:var(--status-warning-bg);color:var(--status-warning);border:1px solid #d9770659;padding:.75rem 1rem;font-size:.8125rem}.purge-schedule-detail__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:.75rem;display:flex}.purge-schedule-detail__header-actions{flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;display:flex}.purge-schedule-detail__badges{flex-wrap:wrap;align-items:center;gap:.35rem;display:flex}.purge-schedule-detail__meta{color:var(--text-muted);margin:.25rem 0 0;font-size:.8125rem}.purge-schedule-detail__metrics{grid-template-columns:repeat(4,minmax(0,1fr));gap:.65rem;display:grid}@media (width<=720px){.purge-schedule-detail__metrics{grid-template-columns:repeat(2,minmax(0,1fr))}}.purge-schedule-detail__metric{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);flex-direction:column;gap:.2rem;padding:.75rem .875rem;display:flex}.purge-schedule-detail__metric-label{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);font-size:.6875rem;font-weight:700}.purge-schedule-detail__metric strong{color:var(--text-primary);font-size:1rem}.purge-schedule-detail__section-title{color:var(--text-primary);margin:0 0 .5rem;font-size:.8125rem;font-weight:600}.purge-schedule-detail__dl{grid-template-columns:repeat(2,minmax(0,1fr));gap:.5rem 1rem;margin:0;display:grid}@media (width<=560px){.purge-schedule-detail__dl{grid-template-columns:1fr}}.purge-schedule-detail__field dt{text-transform:uppercase;letter-spacing:.03em;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:600}.purge-schedule-detail__field dd{color:var(--text-primary);margin:.15rem 0 0;font-size:.875rem}.purge-schedule-detail__chips{flex-wrap:wrap;gap:.35rem;display:flex}.purge-schedule-detail__chip{background:var(--surface-muted,#f1f5f9);color:var(--text-primary);border-radius:999px;padding:.2rem .55rem;font-size:.75rem;font-weight:600;display:inline-flex}.purge-schedule-detail__items-toolbar{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.purge-schedule-detail__items-search{border:1px solid var(--surface-border);border-radius:var(--radius-sm);flex:1;min-width:180px;max-width:280px;height:2.125rem;padding:0 .65rem;font-size:.8125rem}.purge-schedule-detail__items-search:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.purge-schedule-detail__items-section{flex-direction:column;gap:.75rem;display:flex}.purge-schedule-detail__path{text-overflow:ellipsis;white-space:nowrap;max-width:16rem;color:var(--text-muted);font-size:.8125rem;display:block;overflow:hidden}.purge-schedule-detail__footer{flex-wrap:wrap;justify-content:flex-end;gap:.5rem;display:flex}.purge-schedule-detail__footer-spacer{flex:1}.data-deletions-page{flex-direction:column;gap:1.25rem;display:flex}.data-deletions-alert{border-radius:var(--radius-md);background:var(--status-warning-bg);border:1px solid #d9770659;gap:.875rem;padding:1rem 1.125rem;display:flex}.data-deletions-alert__icon{width:2rem;height:2rem;color:var(--status-warning);background:#ffffffa6;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;font-size:1rem;font-weight:700;display:flex}.data-deletions-alert__title{color:var(--text-primary);margin:0 0 .25rem;font-size:.9375rem;font-weight:600}.data-deletions-alert__text{color:var(--text-muted);margin:0;font-size:.875rem;line-height:1.5}.data-deletions-card{flex-direction:column;gap:1rem;display:flex}.data-deletions-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.data-deletions-policy-cell{flex-direction:column;align-items:flex-start;gap:.35rem;display:flex}.data-deletions-scheduled--passed{color:var(--status-warning);font-weight:500}.retention-run-detail{flex-direction:column;gap:1.25rem;display:flex}.retention-run-detail__empty{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.retention-run-detail__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:.75rem;padding-bottom:.25rem;display:flex}.retention-run-detail__id{font-size:.8125rem;font-weight:600;font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-muted);margin:0}.retention-run-detail__meta{color:var(--text-muted);margin:.25rem 0 0;font-size:.8125rem}.retention-run-detail__metrics{grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;display:grid}@media (width<=640px){.retention-run-detail__metrics{grid-template-columns:1fr}}.retention-run-detail__metric{border-radius:var(--radius-md);border:1px solid var(--surface-border);background:var(--surface);flex-direction:column;gap:.25rem;padding:.875rem 1rem;display:flex}.retention-run-detail__metric--found{background:linear-gradient(145deg,#f0f9ff,#fff);border-color:#0ea5e959}.retention-run-detail__metric--uploaded{background:linear-gradient(145deg,#ecfdf5,#fff);border-color:#05966959}.retention-run-detail__metric--failed{background:linear-gradient(145deg,#fef2f2,#fff);border-color:#dc26264d}.retention-run-detail__metric-label{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:700}.retention-run-detail__metric strong{letter-spacing:-.03em;font-variant-numeric:tabular-nums;color:var(--text-primary);font-size:1.5rem;font-weight:800}.retention-run-detail__progress{flex-direction:column;gap:.35rem;display:flex}.retention-run-detail__progress-bar{background:#0ea5e926;border-radius:999px;height:.5rem;overflow:hidden}.retention-run-detail__progress-fill{border-radius:inherit;background:linear-gradient(90deg, var(--brand-600), #10b981);height:100%;transition:width .35s}.retention-run-detail__progress-label{color:var(--text-muted);font-size:.75rem;font-weight:600}.retention-run-detail__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem 1.25rem;margin:0;display:grid}@media (width<=640px){.retention-run-detail__grid{grid-template-columns:1fr}}.retention-run-detail__field{margin:0}.retention-run-detail__field dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0 0 .2rem;font-size:.6875rem;font-weight:700}.retention-run-detail__field dd{color:var(--text-primary);word-break:break-word;margin:0;font-size:.875rem}.retention-run-detail__mono{font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-muted);font-size:.8125rem}.retention-run-detail__error{border-radius:var(--radius-md);background:var(--status-error-bg);border:1px solid #dc262633;padding:.875rem 1rem}.retention-run-detail__error-title{text-transform:uppercase;letter-spacing:.04em;color:var(--status-error);margin:0 0 .35rem;font-size:.75rem;font-weight:700}.retention-run-detail__error p{color:var(--status-error);margin:0;font-size:.875rem;line-height:1.5}.retention-run-detail__ok{color:#047857;border-radius:var(--radius-sm);background:linear-gradient(145deg,#ecfdf5,#d1fae5);border:1px solid #05966940;margin:0;padding:.75rem 1rem;font-size:.875rem;font-weight:600}.retention-run-detail__footer{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}.retention-run-detail__footer-actions{flex-wrap:wrap;gap:.5rem;display:flex}.policy-executions-back{margin:-.5rem 0 1rem;font-size:.8125rem}.policy-executions-back a{color:var(--brand-600);font-weight:500;text-decoration:none}.policy-executions-back a:hover{text-decoration:underline}.policy-executions-page{flex-direction:column;gap:1.25rem;display:flex}.policy-executions-page__filter-hint{color:var(--text-muted);margin:0;font-size:.875rem}.policy-executions-page__card{flex-direction:column;gap:1rem;display:flex}.policy-executions-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.policy-executions-toolbar{flex-wrap:wrap;align-items:center;gap:.75rem 1rem;margin-bottom:1rem;display:flex}.policy-executions-toolbar__inputs{flex-wrap:wrap;align-items:center;gap:.5rem;display:flex}.policy-executions-toolbar__input{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);height:2.25rem;color:var(--text-primary);padding:0 .75rem;font-size:.875rem}.policy-executions-toolbar__input:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.policy-executions-toolbar__input:disabled{opacity:.6;cursor:not-allowed}.policy-executions-toolbar__search{min-width:200px;max-width:280px}.policy-executions-toolbar__date{min-width:10.5rem}.policy-executions-toolbar__statuses{flex-wrap:wrap;align-items:center;gap:.4rem;display:flex}.policy-executions-status-chip{letter-spacing:-.01em;white-space:nowrap;cursor:pointer;border:1px solid #0000;border-radius:999px;align-items:center;padding:.28rem .65rem;font-size:.75rem;font-weight:600;transition:box-shadow .15s,border-color .15s,opacity .15s;display:inline-flex}.policy-executions-status-chip:disabled{opacity:.55;cursor:not-allowed}.policy-executions-status-chip--success{color:var(--status-success);background:var(--status-success-bg)}.policy-executions-status-chip--warning{color:var(--status-warning);background:var(--status-warning-bg)}.policy-executions-status-chip--error{color:var(--status-error);background:var(--status-error-bg)}.policy-executions-status-chip--info{color:var(--status-info);background:var(--status-info-bg)}.policy-executions-status-chip--neutral{color:var(--status-neutral);background:var(--status-neutral-bg)}.policy-executions-status-chip--running{color:var(--brand-600);background:var(--status-info-bg)}.policy-executions-status-chip--active{box-shadow:0 0 0 2px color-mix(in srgb, currentColor 22%, transparent);border-color:currentColor}.policy-executions-status-chip:not(:disabled):hover{opacity:.88}.restore-explorer-layout{align-items:start;gap:1.25rem;display:grid}@media (width>=1080px){.restore-explorer-layout{grid-template-columns:minmax(0,1fr) 320px}}.restore-explorer-main{min-width:0}.restore-explorer-card{border:1px solid #e2e8f0f2;flex-direction:column;gap:0;display:flex;overflow:hidden;box-shadow:0 1px 2px #041e330a,0 12px 32px #041e330f}.restore-explorer-toolbar{border-bottom:1px solid var(--surface-border);background:linear-gradient(#f8fafcf2 0%,#fff0 100%);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem 1rem;margin:0 -.5rem;padding:.875rem 1rem;display:flex}.restore-explorer-toolbar__actions{flex-wrap:wrap;align-items:center;gap:.625rem;display:flex}.restore-explorer-search{border-bottom:1px solid var(--surface-border);padding:.75rem 1rem}.restore-explorer-search__input{width:100%;max-width:none}.restore-explorer-search__hint{color:var(--text-muted);margin:.5rem 0 0;font-size:.75rem}.restore-breadcrumb__list{flex-wrap:wrap;align-items:center;gap:.125rem;margin:0;padding:0;list-style:none;display:flex}.restore-breadcrumb__item{align-items:center;gap:.125rem;display:inline-flex}.restore-breadcrumb__separator{color:var(--text-muted);opacity:.55;margin:0 .125rem}.restore-breadcrumb__link{font:inherit;color:var(--text-brand);cursor:pointer;transition:background var(--duration-fast), color var(--duration-fast);background:0 0;border:none;border-radius:6px;padding:.25rem .5rem;font-size:.8125rem;font-weight:500}.restore-breadcrumb__link:hover{color:var(--brand-700);background:#0ea5e914}.restore-breadcrumb__current{color:var(--text-primary);padding:.25rem .5rem;font-size:.8125rem;font-weight:600}.restore-explorer-list-header{border-bottom:1px solid var(--surface-border);background:var(--surface-muted);letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);grid-template-columns:2rem 2.25rem minmax(0,1fr) 6.5rem 7.5rem 5.5rem 2.25rem;align-items:center;gap:.75rem;padding:.5rem 1rem;font-size:.6875rem;font-weight:600;display:grid}@media (width<=860px){.restore-explorer-list-header{display:none}}.restore-explorer-level{justify-content:space-between;align-items:baseline;gap:.75rem;padding:1rem 1rem .625rem;display:flex}.restore-explorer-level__title{color:var(--text-primary);letter-spacing:-.01em;margin:0;font-size:.9375rem;font-weight:600}.restore-explorer-level__count{color:var(--text-muted);font-size:.75rem;font-weight:500}.restore-explorer-content{min-height:280px;padding:0}.restore-explorer-item-wrap{animation:restore-item-enter .28s var(--ease-out-expo) both}.restore-explorer-item-wrap:not(:last-child) .restore-item{border-bottom:1px solid #e2e8f0d9}@keyframes restore-item-enter{0%{opacity:0;transform:translateY(4px)}to{opacity:1;transform:translateY(0)}}.restore-explorer-status{min-height:240px;color:var(--text-muted);flex-direction:column;justify-content:center;align-items:center;gap:.875rem;padding:2rem 1rem;font-size:.875rem;display:flex}.restore-explorer-spinner{border:2px solid #0ea5e926;border-top-color:var(--brand-500);border-radius:999px;width:2rem;height:2rem;animation:.75s linear infinite restore-spin}@keyframes restore-spin{to{transform:rotate(360deg)}}.restore-item{background:var(--surface);cursor:pointer;-webkit-user-select:none;user-select:none;transition:background var(--duration-fast), border-color var(--duration-fast);border:none;border-left:3px solid #0000;grid-template-columns:2rem 2.25rem minmax(0,1fr) 6.5rem 7.5rem 5.5rem 2.25rem;align-items:center;gap:.75rem;padding:.5rem 1rem;display:grid}@media (width<=860px){.restore-item{grid-template-rows:auto auto;grid-template-columns:2rem 2.25rem minmax(0,1fr) auto}.restore-item__size,.restore-item__modified,.restore-item__kind{display:none}.restore-item__body{grid-column:3/-1}}.restore-item:hover{background:#f0f9ff8c}.restore-item--selected{border-left-color:var(--brand-500);background:#f0f9ffd9}.restore-item__checkbox-wrap{cursor:pointer;flex-shrink:0;justify-content:center;align-items:center;display:inline-flex}.restore-item__checkbox{opacity:0;width:0;height:0;position:absolute}.restore-item__checkbox-ui{border:1.5px solid var(--surface-border);background:var(--surface);width:1.125rem;height:1.125rem;transition:border-color var(--duration-fast), background var(--duration-fast), box-shadow var(--duration-fast);border-radius:4px;justify-content:center;align-items:center;display:inline-flex}.restore-item__checkbox:checked+.restore-item__checkbox-ui{border-color:var(--brand-600);background:linear-gradient(135deg, var(--brand-600), var(--brand-500));box-shadow:0 1px 4px #0ea5e938}.restore-item__checkbox:checked+.restore-item__checkbox-ui:after{content:"";border:2px solid #fff;border-width:0 2px 2px 0;width:.3125rem;height:.5625rem;transform:rotate(45deg)translate(-.5px,-1px)}.restore-item__icon{flex-shrink:0;justify-content:center;align-items:center;display:flex}.restore-item__body{flex-direction:column;gap:.125rem;min-width:0;display:flex}.restore-item__name{color:var(--text-primary);text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:600;line-height:1.35;overflow:hidden}.restore-item__location{color:var(--text-muted);text-overflow:ellipsis;white-space:nowrap;font-size:.75rem;overflow:hidden}.restore-item__size,.restore-item__modified,.restore-item__kind{color:var(--text-secondary);white-space:nowrap;text-overflow:ellipsis;font-size:.8125rem;overflow:hidden}.restore-item__kind{color:var(--text-muted);font-size:.75rem}.restore-item__open,.restore-item__open-spacer{flex-shrink:0;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;display:inline-flex}.restore-item__open{color:var(--text-brand);cursor:pointer;opacity:0;transition:opacity var(--duration-fast), background var(--duration-fast);background:0 0;border:none;border-radius:6px}.restore-item:hover .restore-item__open,.restore-item:focus-within .restore-item__open{opacity:1}.restore-item__open:hover{background:#0ea5e91a}.restore-panel{border-radius:var(--radius-lg);background:linear-gradient(#fffffffa 0%,#f8fafceb 100%);border:1px solid #e2e8f0f2;flex-direction:column;gap:0;display:flex;position:sticky;top:1rem;overflow:hidden;box-shadow:0 1px 2px #041e330a,0 16px 40px #041e3314}.restore-panel__header{border-bottom:1px solid var(--surface-border);background:linear-gradient(135deg,#f0f9ffa6 0%,#fff0 100%);gap:.75rem;padding:1.125rem 1.125rem .875rem;display:flex}.restore-panel__shield{color:var(--brand-600);flex-shrink:0;margin-top:.125rem}.restore-panel__title{color:var(--text-primary);letter-spacing:-.02em;margin:0;font-size:.9375rem;font-weight:700}.restore-panel__hint{color:var(--text-muted);margin:.2rem 0 0;font-size:.75rem;line-height:1.45}.restore-panel__content{animation:restore-panel-fade .32s var(--ease-out-expo);flex-direction:column;flex:1;gap:.75rem;min-height:0;padding:1rem 1.125rem;display:flex}.restore-panel__summary{background:#f0f9ffa6;border:1px solid #0ea5e91f;border-radius:8px;grid-template-columns:repeat(3,minmax(0,1fr));gap:.5rem;padding:.625rem .75rem;display:grid}.restore-panel__summary-item{flex-direction:column;gap:.125rem;min-width:0;display:flex}.restore-panel__summary-label{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.625rem;font-weight:600}.restore-panel__summary-value{color:var(--text-primary);white-space:nowrap;text-overflow:ellipsis;font-size:.8125rem;font-weight:600;overflow:hidden}.restore-panel__list{flex-direction:column;gap:.5rem;max-height:min(320px,40vh);margin:0;padding:0;list-style:none;display:flex;overflow-y:auto}.restore-panel__list-item{border:1px solid var(--surface-border);background:var(--surface);border-radius:8px;align-items:flex-start;gap:.5rem;padding:.625rem .75rem;display:flex}.restore-panel__list-body{flex-direction:column;flex:1;gap:.125rem;min-width:0;display:flex}.restore-panel__list-kind{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.625rem;font-weight:600}.restore-panel__list-name{color:var(--text-primary);word-break:break-word;font-size:.875rem;font-weight:600;line-height:1.35}.restore-panel__list-location{color:var(--text-muted);word-break:break-word;font-size:.75rem;line-height:1.4}.restore-panel__list-remove{width:1.5rem;height:1.5rem;color:var(--text-muted);cursor:pointer;transition:background var(--duration-fast), color var(--duration-fast);background:0 0;border:none;border-radius:6px;flex-shrink:0;justify-content:center;align-items:center;margin:0;padding:0;font-size:1.125rem;line-height:1;display:inline-flex}.restore-panel__list-remove:hover{color:#dc2626;background:#ef444414}.restore-panel__clear{font:inherit;color:var(--text-brand);cursor:pointer;text-underline-offset:2px;background:0 0;border:none;align-self:flex-start;margin:0;padding:0;font-size:.75rem;font-weight:600;text-decoration:underline}.restore-panel__clear:hover{color:var(--brand-700)}@keyframes restore-panel-fade{0%{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}.restore-panel__details{flex-direction:column;gap:.75rem;margin:0;display:flex}.restore-panel__detail{gap:.2rem;display:grid}.restore-panel__detail dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:600}.restore-panel__detail dd{color:var(--text-secondary);word-break:break-word;margin:0;font-size:.875rem;line-height:1.45}.restore-panel__detail--highlight dd{color:var(--text-primary);font-size:1rem;font-weight:700}.restore-panel__badge{color:var(--status-success);background:var(--status-success-bg);border:1px solid #05966926;border-radius:999px;align-items:center;gap:.45rem;margin-top:1rem;padding:.45rem .75rem;font-size:.75rem;font-weight:600;display:inline-flex}.restore-panel__badge-dot{background:var(--status-success);border-radius:999px;width:.4375rem;height:.4375rem}.restore-panel__empty{text-align:center;flex-direction:column;flex:1;justify-content:center;align-items:center;min-height:220px;padding:2rem 1.25rem;display:flex}.restore-panel__empty-icon{width:3.5rem;height:3.5rem;color:var(--text-muted);background:var(--surface-muted);border:1px dashed var(--surface-border);border-radius:999px;justify-content:center;align-items:center;margin-bottom:.875rem;display:flex}.restore-panel__empty-title{color:var(--text-primary);margin:0 0 .375rem;font-size:.9375rem;font-weight:600}.restore-panel__empty-text{max-width:16rem;color:var(--text-muted);margin:0;font-size:.8125rem;line-height:1.55}.restore-panel__footer{border-top:1px solid var(--surface-border);background:#f8fafca6;padding:1rem 1.125rem 1.125rem}.restore-panel__cta{width:100%;border-radius:10px!important;height:2.75rem!important;font-size:.9375rem!important}.restore-page{flex-direction:column;gap:1.25rem;display:flex}.restore-job-drawer{flex-direction:column;gap:1.5rem;width:100%;max-width:56rem;margin:0 auto;display:flex}.restore-job-embed{border-radius:var(--radius-md);color:#fff;background-color:#026b6f;background-image:radial-gradient(120% 180% at 0%,#038387 0%,#0383878c 42%,#0000 72%);border:1px solid #03838773;gap:.875rem;padding:1rem 1.125rem;display:flex;box-shadow:inset 0 1px #ffffff38,inset 0 -1px #0000001f}.restore-job-embed__icon{background:#ffffff29;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;font-size:1.125rem;font-weight:700;display:inline-flex}.restore-job-embed__title{text-shadow:0 1px 2px #0003;margin:0 0 .35rem;font-size:.875rem;font-weight:700}.restore-job-embed__text{color:#ffffffeb;margin:0;font-size:.8125rem;line-height:1.55}.restore-job-embed__text strong{color:#fff;font-weight:700}.restore-job-drawer__status,.restore-job-drawer__error{text-align:center;margin:0;padding:2rem 1rem;font-size:.875rem}.restore-job-drawer__error{color:var(--status-error)}.restore-job-spotlight{border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);background:linear-gradient(165deg,#f0f9ff 0%,#fff 55%);border:1px solid #0ea5e940;padding:1.25rem}.restore-job-spotlight__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:1rem;display:flex}.restore-job-spotlight__title{color:var(--text-primary);margin:0;font-size:1.0625rem;font-weight:700}.restore-job-spotlight__meta{color:var(--text-muted);margin:.25rem 0 0;font-size:.8125rem}.restore-job-spotlight__error{color:var(--status-error);background:var(--status-error-bg);border-radius:var(--radius-sm);margin:.75rem 0 0;padding:.65rem .75rem;font-size:.8125rem;line-height:1.45}.restore-job-spotlight__ok{color:#047857;border-radius:var(--radius-sm);background:linear-gradient(145deg,#ecfdf5,#d1fae5);border:1px solid #05966940;margin:.75rem 0 0;padding:.75rem 1rem;font-size:.875rem;font-weight:600;line-height:1.5}.restore-job-metrics__grid{grid-template-columns:repeat(4,minmax(0,1fr));gap:.75rem;display:grid}@media (width<=760px){.restore-job-metrics__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width<=480px){.restore-job-metrics__grid{grid-template-columns:1fr}}.restore-job-metric{border-radius:var(--radius-md);border:1px solid var(--surface-border);background:var(--surface);flex-direction:column;gap:.25rem;padding:.875rem 1rem;display:flex}.restore-job-metrics--emphasis .restore-job-metric{padding:1rem 1.125rem}.restore-job-metric--total{background:linear-gradient(145deg,#f0f9ff,#fff);border-color:#0ea5e959}.restore-job-metric--processed{background:linear-gradient(145deg,#ecfdf5,#fff);border-color:#05966959}.restore-job-metric--failed{background:linear-gradient(145deg,#fef2f2,#fff);border-color:#dc26264d}.restore-job-metric--remaining{background:linear-gradient(145deg,#f8fafc,#fff);border-color:#64748b59}.restore-job-metric__label{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:700}.restore-job-metric__value{letter-spacing:-.03em;color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:1.375rem;font-weight:800}.restore-job-metrics--emphasis .restore-job-metric__value{font-size:1.75rem}.restore-job-metric--total .restore-job-metric__value{color:var(--brand-700)}.restore-job-metric--processed .restore-job-metric__value{color:#047857}.restore-job-metric--failed .restore-job-metric__value{color:#b91c1c}.restore-job-progress{flex-direction:column;gap:.35rem;margin-top:1rem;display:flex}.restore-job-progress__bar{background:#0ea5e926;border-radius:999px;height:.5rem;overflow:hidden}.restore-job-progress__fill{border-radius:inherit;background:linear-gradient(90deg, var(--brand-600), #10b981);height:100%;transition:width .35s}.restore-job-progress__label{color:var(--text-muted);font-size:.75rem;font-weight:600}.restore-job-details__title,.restore-job-items__title{color:var(--text-primary);margin:0 0 .75rem;font-size:.9375rem;font-weight:700}.restore-job-details__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem 1rem;margin:0;display:grid}@media (width<=640px){.restore-job-details__grid{grid-template-columns:1fr}}.restore-job-details__grid dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:600}.restore-job-details__grid dd{color:var(--text-secondary);word-break:break-word;margin:.2rem 0 0;font-size:.875rem;line-height:1.45}.restore-job-details__mono{font-family:ui-monospace,monospace;font-size:.8125rem}.restore-job-items__list{flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none;display:flex}.restore-job-items__list li{border-radius:var(--radius-sm);border:1px solid var(--surface-border);background:var(--surface-muted);color:var(--text-secondary);word-break:break-word;padding:.625rem .75rem;font-size:.8125rem}.restore-job-drawer-footer{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}.restore-job-drawer-footer__meta{color:var(--text-muted);flex-wrap:wrap;align-items:center;gap:.5rem;margin:0;font-size:.8125rem;display:flex}.restore-job-drawer-footer__refreshing{color:var(--brand-600);font-weight:600}.restore-job-drawer-footer__actions{flex-wrap:wrap;gap:.5rem;display:flex}.stat-card--accent{background:linear-gradient(145deg,#f0f9ff,#fff);border-color:#0ea5e933}.stat-card--success{background:linear-gradient(145deg,#ecfdf5,#fff);border-color:#05966933}.stat-card__top{justify-content:space-between;align-items:flex-start;margin-bottom:.75rem;display:flex}.stat-card__icon{border-radius:var(--radius-sm);background:var(--status-info-bg);width:2.25rem;height:2.25rem;color:var(--brand-600);justify-content:center;align-items:center;display:flex}.stat-card__trend{color:var(--status-success);font-size:.75rem;font-weight:600}.stat-card__label{color:var(--text-muted);margin:0;font-size:.8125rem;font-weight:500}.stat-card__value{letter-spacing:-.03em;color:var(--text-primary);margin:.25rem 0 0;font-size:1.5rem;font-weight:700}.stat-card__hint{color:var(--text-secondary);margin:.35rem 0 0;font-size:.75rem}.restore-history-page{flex-direction:column;gap:1.25rem;display:flex}.restore-history-back{margin:-.5rem 0 0;font-size:.8125rem}.restore-history-back a{color:var(--brand-600);font-weight:500;text-decoration:none}.restore-history-back a:hover{text-decoration:underline}.restore-history-page__card{flex-direction:column;gap:1rem;display:flex}.restore-history-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.restore-history-toolbar{flex-wrap:wrap;align-items:center;gap:.75rem 1rem;display:flex}.restore-history-toolbar__statuses{flex-wrap:wrap;align-items:center;gap:.4rem;display:flex}.restore-history-status-chip{letter-spacing:-.01em;white-space:nowrap;cursor:pointer;border:1px solid #0000;border-radius:999px;align-items:center;padding:.28rem .65rem;font-size:.75rem;font-weight:600;transition:box-shadow .15s,border-color .15s,opacity .15s;display:inline-flex}.restore-history-status-chip:disabled{opacity:.55;cursor:not-allowed}.restore-history-status-chip--success{color:var(--status-success);background:var(--status-success-bg)}.restore-history-status-chip--warning{color:var(--status-warning);background:var(--status-warning-bg)}.restore-history-status-chip--error{color:var(--status-error);background:var(--status-error-bg)}.restore-history-status-chip--info{color:var(--status-info);background:var(--status-info-bg)}.restore-history-status-chip--neutral{color:var(--status-neutral);background:var(--status-neutral-bg)}.restore-history-status-chip--running{color:var(--brand-600);background:var(--status-info-bg)}.restore-history-status-chip--active{box-shadow:0 0 0 2px color-mix(in srgb, currentColor 22%, transparent);border-color:currentColor}.restore-history-status-chip:not(:disabled):hover{opacity:.88}.restore-history-actions{align-items:center;gap:.35rem;display:flex}.restore-history-action{border:1px solid var(--surface-border);background:var(--surface);width:2rem;height:2rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast), color var(--duration-fast), border-color var(--duration-fast);border-radius:8px;justify-content:center;align-items:center;padding:0;display:inline-flex}.restore-history-action:hover:not(:disabled){color:var(--brand-600);background:#f0f9ffd9;border-color:#0ea5e959}.restore-history-action--download:hover:not(:disabled){color:#047857;background:#ecfdf5d9;border-color:#05966959}.restore-history-action:disabled{opacity:.55;cursor:not-allowed}.toggle{cursor:pointer;-webkit-user-select:none;user-select:none;align-items:center;gap:.625rem;display:inline-flex}.toggle--disabled{opacity:.55;cursor:not-allowed}.toggle__input{opacity:0;pointer-events:none;width:1px;height:1px;position:absolute}.toggle__track{width:2.5rem;height:1.375rem;transition:background-color var(--duration-normal) var(--ease-out-expo);background:#cbd5e1;border-radius:999px;flex-shrink:0;position:relative}.toggle__thumb{width:1.125rem;height:1.125rem;transition:transform var(--duration-normal) var(--ease-out-expo);background:#fff;border-radius:50%;position:absolute;top:2px;left:2px;box-shadow:0 1px 3px #0f172a33}.toggle__input:checked+.toggle__track{background:linear-gradient(135deg, var(--brand-500), var(--ocean-cyan))}.toggle__input:checked+.toggle__track .toggle__thumb{transform:translate(1.125rem)}.toggle__input:focus-visible+.toggle__track{outline:2px solid var(--brand-500);outline-offset:2px}.toggle__label{color:var(--text-secondary);font-size:.875rem;font-weight:500}.retention-track-drawer{flex-direction:column;gap:1.5rem;width:100%;max-width:56rem;margin:0 auto;display:flex}.retention-track-embed{border-radius:var(--radius-md);color:#fff;background-color:#026b6f;background-image:radial-gradient(120% 180% at 0%,#038387 0%,#0383878c 42%,#0000 72%);border:1px solid #03838773;gap:.875rem;padding:1rem 1.125rem;display:flex;box-shadow:inset 0 1px #ffffff38,inset 0 -1px #0000001f}.retention-track-embed__icon{background:#ffffff29;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;font-size:1.125rem;font-weight:700;display:inline-flex}.retention-track-embed__title{text-shadow:0 1px 2px #0003;margin:0 0 .35rem;font-size:.875rem;font-weight:700}.retention-track-embed__text{color:#ffffffeb;margin:0;font-size:.8125rem;line-height:1.55}.retention-track-embed__text strong{color:#fff;font-weight:700}.retention-track-drawer__status,.retention-track-drawer__error{text-align:center;margin:0;padding:2rem 1rem;font-size:.875rem}.retention-track-drawer__error{color:var(--status-error)}.retention-track-spotlight{border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);background:linear-gradient(165deg,#f0f9ff 0%,#fff 55%);border:1px solid #0ea5e940;padding:1.25rem}.retention-track-spotlight__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:1rem;display:flex}.retention-track-spotlight__title{color:var(--text-primary);margin:0;font-size:1.0625rem;font-weight:700}.retention-track-spotlight__meta{color:var(--text-muted);margin:.25rem 0 0;font-size:.8125rem}.retention-track-spotlight__error{color:var(--status-error);background:var(--status-error-bg);border-radius:var(--radius-sm);margin:.75rem 0 0;padding:.65rem .75rem;font-size:.8125rem;line-height:1.45}.retention-track-spotlight__ok{color:#047857;border-radius:var(--radius-sm);background:linear-gradient(145deg,#ecfdf5,#d1fae5);border:1px solid #05966940;margin:.75rem 0 0;padding:.75rem 1rem;font-size:.875rem;font-weight:600;line-height:1.5}.retention-track-metrics__grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:.75rem;display:grid}@media (width<=640px){.retention-track-metrics__grid{grid-template-columns:1fr}}.retention-track-metric{border-radius:var(--radius-md);border:1px solid var(--surface-border);background:var(--surface);flex-direction:column;gap:.25rem;padding:.875rem 1rem;display:flex}.retention-track-metrics--emphasis .retention-track-metric{padding:1rem 1.125rem}.retention-track-metric--found{background:linear-gradient(145deg,#f0f9ff,#fff);border-color:#0ea5e959}.retention-track-metric--uploaded{background:linear-gradient(145deg,#ecfdf5,#fff);border-color:#05966959}.retention-track-metric--failed{background:linear-gradient(145deg,#fef2f2,#fff);border-color:#dc26264d}.retention-track-metric__label{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:700}.retention-track-metric__value{letter-spacing:-.03em;color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:1.625rem;font-weight:800}.retention-track-metrics--emphasis .retention-track-metric__value{font-size:2rem}.retention-track-metric--found .retention-track-metric__value{color:var(--brand-700)}.retention-track-metric--uploaded .retention-track-metric__value{color:#047857}.retention-track-metric--failed .retention-track-metric__value{color:#b91c1c}.retention-track-progress{flex-direction:column;gap:.35rem;margin-top:1rem;display:flex}.retention-track-progress__bar{background:#0ea5e926;border-radius:999px;height:.5rem;overflow:hidden}.retention-track-progress__fill{border-radius:inherit;background:linear-gradient(90deg, var(--brand-600), #10b981);height:100%;transition:width .35s}.retention-track-progress__label{color:var(--text-muted);font-size:.75rem;font-weight:600}.retention-track-drawer-footer{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}.retention-track-drawer-footer__meta{color:var(--text-muted);flex-wrap:wrap;align-items:center;gap:.5rem;margin:0;font-size:.8125rem;display:flex}.retention-track-drawer-footer__refreshing{color:var(--brand-600);font-weight:600}.plan-storage-limit-dialog{z-index:10050;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.plan-storage-limit-dialog__backdrop{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);cursor:pointer;background:#04122094;border:none;margin:0;padding:0;animation:.24s plan-storage-limit-fade-in;position:absolute;inset:0}.plan-storage-limit-dialog__panel{z-index:1;width:min(100%,28rem);animation:plan-storage-limit-slide-in .36s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));background:linear-gradient(165deg,#fff 0%,#fff7ed 34%,#f8fafc 68%,#fff 100%);border:1px solid #ffffffc7;border-radius:22px;outline:none;padding:1.5rem 1.5rem 1.25rem;position:relative;overflow:hidden;box-shadow:0 4px 8px #041e330d,0 28px 72px #041e3333,inset 0 1px #ffffffe6}.plan-storage-limit-dialog__glow{pointer-events:none;filter:blur(48px);border-radius:50%;position:absolute}.plan-storage-limit-dialog__glow--top{background:#fb923c47;width:11rem;height:11rem;top:-4.5rem;right:-3rem}.plan-storage-limit-dialog__glow--bottom{background:#f9731624;width:12rem;height:12rem;bottom:-4.5rem;left:-2.5rem}.plan-storage-limit-dialog__close{z-index:2;width:2.125rem;height:2.125rem;color:var(--text-secondary);cursor:pointer;transition:background var(--duration-fast) ease, color var(--duration-fast) ease, border-color var(--duration-fast) ease;background:#ffffffe6;border:1px solid #e2e8f0f2;border-radius:999px;justify-content:center;align-items:center;display:inline-flex;position:absolute;top:.875rem;right:.875rem}.plan-storage-limit-dialog__close:hover{color:var(--text-primary);background:#fff;border-color:#f9731647}.plan-storage-limit-dialog__hero{text-align:center;flex-direction:column;align-items:center;gap:.75rem;margin-bottom:1rem;display:flex}.plan-storage-limit-dialog__illustration{width:min(100%,168px);height:auto;display:block}.plan-storage-limit-dialog__hero-copy{flex-direction:column;align-items:center;gap:.35rem;display:flex}.plan-storage-limit-dialog__eyebrow{letter-spacing:.06em;text-transform:uppercase;color:#c2410c;background:#f973161a;border:1px solid #f9731633;border-radius:999px;align-items:center;padding:.22rem .65rem;font-size:.6875rem;font-weight:700;display:inline-flex}.plan-storage-limit-dialog__title{letter-spacing:-.03em;color:#9a3412;margin:0;font-size:1.25rem;font-weight:800;line-height:1.2}.plan-storage-limit-dialog__usage{background:#ffffffb8;border:1px solid #f9731629;border-radius:14px;margin-bottom:1rem;padding:.875rem 1rem;box-shadow:inset 0 1px #ffffffd9}.plan-storage-limit-dialog__usage-header{color:var(--text-muted);justify-content:space-between;align-items:center;gap:.75rem;margin-bottom:.55rem;font-size:.75rem;display:flex}.plan-storage-limit-dialog__usage-header strong{color:#c2410c;text-align:right;font-size:.8125rem;font-weight:700}.plan-storage-limit-dialog__usage-bar{background:#f973161f;border-radius:999px;height:.5rem;overflow:hidden}.plan-storage-limit-dialog__usage-bar--exceeded{background:#dc26261f}.plan-storage-limit-dialog__usage-fill{border-radius:inherit;height:100%;transition:width .4s var(--ease-out-expo,cubic-bezier(.16, 1, .3, 1));background:linear-gradient(90deg,#f97316,#ea580c);display:block;box-shadow:0 0 12px #f9731659}.plan-storage-limit-dialog__usage-bar--exceeded .plan-storage-limit-dialog__usage-fill{background:linear-gradient(90deg,#f97316,#dc2626)}.plan-storage-limit-dialog__metrics{grid-template-columns:repeat(2,minmax(0,1fr));gap:.625rem .75rem;margin:.75rem 0 0;display:grid}.plan-storage-limit-dialog__metrics dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.625rem;font-weight:700}.plan-storage-limit-dialog__metrics dd{color:var(--text-primary);margin:.15rem 0 0;font-size:.8125rem;font-weight:600}.plan-storage-limit-dialog__message{color:var(--text-secondary);margin:0 0 1.25rem;font-size:.875rem;line-height:1.6}.plan-storage-limit-dialog__actions{grid-template-columns:1fr 1fr;gap:.625rem;display:grid}.plan-storage-limit-dialog__btn{width:100%;border-radius:12px!important;min-height:2.625rem!important}.plan-storage-limit-dialog__btn--upgrade{box-shadow:0 1px 2px #041e330f,0 8px 20px #f9731647}.plan-storage-limit-dialog__btn--upgrade:hover:not(:disabled){box-shadow:0 2px 4px #041e3314,0 12px 28px #f9731657}@keyframes plan-storage-limit-fade-in{0%{opacity:0}to{opacity:1}}@keyframes plan-storage-limit-slide-in{0%{opacity:0;transform:scale(.96)translateY(10px)}to{opacity:1;transform:scale(1)translateY(0)}}@media (prefers-reduced-motion:reduce){.plan-storage-limit-dialog__backdrop,.plan-storage-limit-dialog__panel,.plan-storage-limit-dialog__usage-fill{transition:none;animation:none}}@media (width>=520px){.plan-storage-limit-dialog__hero{text-align:left;flex-direction:row;align-items:center;gap:1rem}.plan-storage-limit-dialog__hero-copy{align-items:flex-start}.plan-storage-limit-dialog__illustration{flex-shrink:0;width:120px}}.retention-policies-page{flex-direction:column;gap:1.5rem;display:flex}.retention-policies__grid{grid-template-columns:repeat(3,minmax(0,1fr));gap:1.25rem;display:grid}@media (width<=1100px){.retention-policies__grid{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width<=640px){.retention-policies__grid{grid-template-columns:1fr}}.retention-policy-card{border:1px solid var(--surface-border);border-radius:var(--radius-lg);min-height:16.5rem;transition:transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, border-color var(--duration-fast) ease;background:linear-gradient(165deg,#fff 0%,#f8fafc 100%);flex-direction:column;padding:1.25rem 1.25rem 1rem;display:flex;position:relative;overflow:hidden;box-shadow:0 1px 2px #0f172a0a,0 8px 24px #0f172a0f}.retention-policy-card:hover{border-color:#0ea5e947;transform:translateY(-2px);box-shadow:0 2px 4px #0f172a0d,0 12px 32px #0ea5e91f}.retention-policy-card__accent{background:linear-gradient(90deg, var(--brand-600), var(--ocean-cyan));height:3px;position:absolute;top:0;left:0;right:0}.retention-policy-card--warning .retention-policy-card__accent{background:linear-gradient(90deg,#d97706,#fbbf24)}.retention-policy-card--info .retention-policy-card__accent{background:linear-gradient(90deg,#0284c7,#38bdf8)}.retention-policy-card--neutral .retention-policy-card__accent{background:linear-gradient(90deg,#64748b,#94a3b8)}.retention-policy-card__header{justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:.875rem;display:flex}.retention-policy-card__icon{border-radius:var(--radius-sm);width:2.5rem;height:2.5rem;color:var(--brand-700);background:linear-gradient(145deg,#e0f2fe,#f0f9ff);border:1px solid #0ea5e926;justify-content:center;align-items:center;display:inline-flex}.retention-policy-card__title{letter-spacing:-.02em;color:var(--text-primary);margin:0 0 .5rem;font-size:1rem;font-weight:700;line-height:1.4}.retention-policy-card__description{color:var(--text-secondary);margin:0 0 1rem;font-size:.8125rem;line-height:1.5}.retention-policy-card--success .retention-policy-card__accent{background:linear-gradient(90deg,#059669,#34d399)}.retention-policy-card--error .retention-policy-card__accent{background:linear-gradient(90deg,#dc2626,#f87171)}.retention-policy-card__details{flex-direction:column;flex:1;gap:.75rem;margin:0;display:flex}.retention-policy-card__details>div{flex-direction:column;gap:.2rem;display:flex}.retention-policy-card__details dt{letter-spacing:.05em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.retention-policy-card__details dd{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.45}.retention-policy-card__footer{border-top:1px solid var(--surface-border);margin-top:1.125rem;padding-top:1rem}.retention-policy-card__next{flex-direction:column;gap:.15rem;margin:0 0 .875rem;display:flex}.retention-policy-card__next-label{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);font-size:.6875rem;font-weight:600}.retention-policy-card__next time{color:var(--text-primary);font-variant-numeric:tabular-nums;font-size:.875rem;font-weight:600}.retention-policy-card__last{color:var(--text-muted);margin:-.5rem 0 .875rem;font-size:.75rem}.retention-policy-card__last span{font-weight:600}.retention-policies__status{text-align:center;color:var(--text-secondary);margin:0;padding:2rem 1rem;font-size:.9375rem}.retention-policies__empty{text-align:center;border:1px dashed var(--surface-border);border-radius:var(--radius-lg);background:var(--surface-muted);flex-direction:column;justify-content:center;align-items:center;gap:1rem;padding:3rem 1.5rem;display:flex}.retention-policies__empty p{color:var(--text-secondary);margin:0;font-size:.9375rem}.retention-policy-card__actions{flex-wrap:wrap;gap:.5rem;display:flex}.retention-policy-card__actions--secondary{margin-top:.5rem}.retention-policy-card__action{border-radius:var(--radius-sm);cursor:pointer;min-width:0;height:2.125rem;transition:background var(--duration-fast), border-color var(--duration-fast), color var(--duration-fast), box-shadow var(--duration-fast);border:1px solid #0000;flex:1;padding:0 .75rem;font-size:.8125rem;font-weight:600}.retention-policy-card__action--edit{color:#fff;background:linear-gradient(135deg, var(--brand-600), var(--brand-500));border-color:#0000;box-shadow:0 2px 8px #0ea5e947}.retention-policy-card__action--edit:hover:not(:disabled){color:#fff;background:linear-gradient(135deg, var(--brand-700), var(--brand-600))}.retention-policy-card__action--run{color:#fff;background:linear-gradient(135deg,#059669,#10b981);border-color:#0000;box-shadow:0 2px 8px #05966947}.retention-policy-card__action--run:hover:not(:disabled){color:#fff;background:linear-gradient(135deg,#047857,#059669)}.retention-policy-card__action--track{color:#fff;background:linear-gradient(135deg,#d97706,#f59e0b);border-color:#0000;box-shadow:0 2px 8px #d9770647}.retention-policy-card__action--track:hover:not(:disabled){color:#fff;background:linear-gradient(135deg,#b45309,#d97706)}.retention-policy-card__action--danger{color:#fff;background:linear-gradient(135deg,#dc2626,#ef4444);border-color:#0000;box-shadow:0 2px 8px #dc262638}.retention-policy-card__action--danger:hover:not(:disabled){color:#fff;background:linear-gradient(135deg,#b91c1c,#dc2626)}.retention-policy-card__action--danger:disabled{color:#ffffffe6;background:linear-gradient(135deg,#94a3b8,#cbd5e1)}.retention-policy-card__action:disabled{opacity:.55;cursor:not-allowed;box-shadow:none;transform:none}.retention-policy-card__action--run:disabled,.retention-policy-card__action--run:disabled:hover{color:#ffffffeb;background:linear-gradient(135deg,#94a3b8,#cbd5e1)}.retention-policy-card__action--edit:disabled,.retention-policy-card__action--track:disabled{color:#ffffffeb;background:linear-gradient(135deg,#94a3b8,#cbd5e1);border-color:#0000}.retention-policies__pagination{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);box-shadow:var(--shadow-sm);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;padding:1rem 1.25rem;display:flex}.retention-policies__pagination-count{color:var(--text-primary);margin:0;font-size:.9375rem;font-weight:600}.retention-policies__pagination-total{color:var(--text-muted);font-weight:500}.retention-policies__pagination-controls{align-items:center;gap:.5rem;display:flex}.storage-page{flex-direction:column;gap:0;display:flex}.storage-metrics.app-card--sm{padding:0;overflow:hidden}.storage-metrics__grid{grid-template-columns:repeat(4,minmax(0,1fr));width:100%;display:grid}.storage-metric{border-right:1px solid var(--surface-border);background:linear-gradient(#fff 0%,#fafcff 100%);flex-direction:column;gap:.45rem;min-height:7.25rem;padding:1.15rem 1.35rem;display:flex;position:relative}.storage-metric:before{content:"";background:var(--metric-accent,var(--brand-500));opacity:.85;height:3px;position:absolute;top:0;left:0;right:0}.storage-metric:last-child{border-right:none}.storage-metric--brand{--metric-accent:#0ea5e9}.storage-metric--ocean{--metric-accent:#06b6d4}.storage-metric--spo-s3{--metric-accent:#038387}.storage-metric--s3{--metric-accent:#f90}.storage-metric--spo-s3 .storage-metric__icon{color:#026b6f;background:#dceeee}.storage-metric--s3 .storage-metric__icon{color:#c27400;background:#ffefd6}.storage-metric--spo-s3 .storage-metric__hint{color:#026b6f;font-weight:600}.storage-metric--s3 .storage-metric__hint{color:#c27400;font-weight:600}.storage-metric__head{align-items:center;gap:.55rem;min-height:1.75rem;display:flex}.storage-metric__icon{background:color-mix(in srgb, var(--metric-accent) 12%, white);width:2rem;height:2rem;color:var(--metric-accent);border-radius:10px;flex-shrink:0;justify-content:center;align-items:center;display:inline-flex}.storage-metric__label{color:var(--text-muted);font-size:.8125rem;font-weight:500;line-height:1.3}.storage-metric__value{letter-spacing:-.03em;color:var(--text-primary);white-space:nowrap;text-overflow:ellipsis;margin:.15rem 0 0;font-size:clamp(1.25rem,1.6vw,1.625rem);font-weight:700;line-height:1.15;overflow:hidden}.storage-metric__hint{color:var(--text-secondary);margin:auto 0 0;font-size:.75rem;line-height:1.35}@media (width<=960px){.storage-metrics__grid{grid-template-columns:repeat(2,minmax(0,1fr))}.storage-metric:nth-child(2){border-right:none}.storage-metric:first-child,.storage-metric:nth-child(2){border-bottom:1px solid var(--surface-border)}}@media (width<=520px){.storage-metrics__grid{grid-template-columns:1fr}.storage-metric{border-right:none;border-bottom:1px solid var(--surface-border);min-height:auto}.storage-metric:last-child{border-bottom:none}}.storage-hero{background:var(--primary-gradient);color:#fff;border:none;margin-top:1.25rem;margin-bottom:1.25rem;position:relative;overflow:hidden}.storage-hero:after{content:"";pointer-events:none;background:radial-gradient(circle at 85% 20%,#ffffff2e 0%,#0000 45%);position:absolute;inset:0}.storage-hero__content{z-index:1;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1.5rem;display:flex;position:relative}.storage-hero__copy{flex:1;min-width:min(100%,18rem)}.storage-hero__badge{background:#ffffff26;border-radius:999px;margin-bottom:.5rem;padding:.25rem .65rem;font-size:.75rem;font-weight:600;display:inline-block}.storage-hero__title{letter-spacing:-.02em;margin:0 0 .35rem;font-size:1.5rem;font-weight:700}.storage-hero__subtitle{opacity:.9;max-width:32rem;margin:0;font-size:.9375rem;line-height:1.5}.storage-hero__ring{flex-shrink:0}.storage-usage-ring{width:7.5rem;height:7.5rem;position:relative}.storage-usage-ring svg{width:100%;height:100%;transform:rotate(-90deg)}.storage-usage-ring__track{fill:none;stroke:#fff3;stroke-width:8px}.storage-usage-ring__fill{fill:none;stroke:url(#storage-ring-gradient);stroke-width:8px;stroke-linecap:round;transition:stroke-dashoffset .8s var(--ease-out-expo)}.storage-usage-ring__center{flex-direction:column;justify-content:center;align-items:center;gap:.1rem;display:flex;position:absolute;inset:0}.storage-usage-ring__value{font-size:1.375rem;font-weight:700;line-height:1}.storage-usage-ring__label{opacity:.85;text-transform:uppercase;letter-spacing:.04em;font-size:.6875rem}.storage-charts{margin-top:1rem}.storage-chart-card__header{justify-content:space-between;align-items:flex-start;gap:.75rem;margin-bottom:1rem;display:flex}.storage-chart-card__header h3{color:var(--text-primary);margin:0;font-size:.9375rem;font-weight:600}.storage-chart-card__meta{color:var(--text-muted);white-space:nowrap;font-size:.75rem}.storage-monthly-card{flex-direction:column;height:100%;display:flex}.storage-monthly-card .storage-area-chart{flex:1;height:auto;min-height:180px;margin-top:auto;padding-bottom:0}.storage-area-chart{align-items:flex-end;gap:.65rem;height:180px;padding:.5rem 0 0;display:flex}.storage-area-chart__col{flex-direction:column;flex:1;align-items:center;gap:.5rem;min-width:0;height:100%;display:flex}.storage-area-chart__bar-wrap{flex:1;justify-content:center;align-items:flex-end;width:100%;display:flex}.storage-area-chart__bar{background:linear-gradient(180deg, var(--ocean-sky) 0%, var(--brand-500) 45%, var(--brand-600) 100%);transform-origin:bottom;width:100%;max-width:2.75rem;min-height:6px;animation:storage-bar-rise .7s var(--ease-out-expo) both;transition:transform var(--duration-fast) ease, filter var(--duration-fast) ease;border-radius:10px 10px 4px 4px;box-shadow:0 4px 14px #0ea5e947,inset 0 1px #ffffff59}.storage-area-chart__col:hover .storage-area-chart__bar{filter:brightness(1.06);transform:scaleY(1.03)}.storage-area-chart__value{color:var(--text-secondary);opacity:0;transition:opacity var(--duration-fast) ease, transform var(--duration-fast) ease;font-size:.6875rem;font-weight:600;transform:translateY(4px)}.storage-area-chart__col:hover .storage-area-chart__value{opacity:1;transform:translateY(0)}.storage-area-chart__label{color:var(--text-muted);font-size:.6875rem;font-weight:500}@keyframes storage-bar-rise{0%{opacity:.4;transform:scaleY(0)}to{opacity:1;transform:scaleY(1)}}.storage-offload{z-index:1;border-radius:var(--radius-lg);background:linear-gradient(#fff 0%,#fafcff 55%,#f5faff 100%);border:1px solid #e2e8f0f2;position:relative;overflow:hidden;transform:translateY(-3px);box-shadow:0 1px 2px #0f172a0a,0 6px 16px #0f172a0d,0 18px 40px #0f172a12,0 0 32px #0ea5e90f,inset 0 0 0 1px #fffc}.storage-offload:before{content:"";pointer-events:none;background:radial-gradient(75% 48% at 50% -4%,#0ea5e917 0%,#0000 72%),radial-gradient(45% 35% at 0 90%,#06b6d40d 0%,#0000 70%),radial-gradient(40% 30% at 100% 100%,#38bdf80d 0%,#0000 68%);position:absolute;inset:0}.storage-offload:after{content:"";opacity:.35;pointer-events:none;background-image:radial-gradient(#0ea5e908 .6px,#0000 .6px);background-size:18px 18px;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#0003 0%,#0000 85%);mask-image:linear-gradient(#0003 0%,#0000 85%)}.storage-offload.app-card--lg{padding:0}.storage-offload__scene{text-align:center;flex-direction:column;align-items:center;gap:0;min-height:100%;padding:1.75rem 1.25rem 1.55rem;display:flex;position:relative}.storage-offload__ambient{pointer-events:none;z-index:0;position:absolute;inset:0;overflow:hidden}.storage-offload__orb{filter:blur(36px);opacity:.28;border-radius:50%;animation:10s ease-in-out infinite storage-orb-drift;position:absolute}.storage-offload__orb--1{background:#38bdf84d;width:7rem;height:7rem;top:8%;left:-8%}.storage-offload__orb--2{background:#0ea5e938;width:8rem;height:8rem;animation-delay:-3s;bottom:6%;right:-10%}.storage-offload__header{z-index:2;width:100%;margin-bottom:.5rem;position:relative}.storage-offload__hero{z-index:2;justify-content:center;align-items:center;min-height:6.5rem;margin:.25rem 0 .5rem;padding:.5rem 0;display:flex;position:relative}.storage-offload__hero-ring{background:radial-gradient(circle,#38bdf81a 0%,#0ea5e90a 48%,#0000 72%);border-radius:50%;width:8rem;height:8rem;position:absolute}.storage-offload__hero:after{content:"";pointer-events:none;border:1px solid #e2e8f0e6;border-radius:50%;width:6.25rem;height:6.25rem;position:absolute;box-shadow:inset 0 1px 2px #ffffffd9}.storage-offload__fireworks{pointer-events:none;position:absolute;inset:0;overflow:hidden}.storage-offload__burst{opacity:0;border-radius:50%;width:.5rem;height:.5rem;position:absolute}.storage-offload__burst--1{background:#f59e0b;animation:2.8s ease-out infinite storage-firework-burst;top:12%;left:18%}.storage-offload__burst--2{background:#ec4899;animation:3.2s ease-out .6s infinite storage-firework-burst;top:8%;right:16%}.storage-offload__burst--3{background:#8b5cf6;animation:2.6s ease-out 1.2s infinite storage-firework-burst;top:22%;right:32%}.storage-offload__spark{opacity:0;border-radius:50%;width:.35rem;height:.35rem;position:absolute}.storage-offload__spark--1{background:#22d3ee;animation:2.4s ease-out infinite storage-spark-fly;top:18%;left:22%}.storage-offload__spark--2{background:#fbbf24;animation:2.4s ease-out .3s infinite storage-spark-fly;top:14%;left:28%}.storage-offload__spark--3{background:#34d399;animation:2.6s ease-out .5s infinite storage-spark-fly-alt;top:16%;right:22%}.storage-offload__spark--4{background:#fb7185;animation:2.6s ease-out .8s infinite storage-spark-fly-alt;top:10%;right:28%}.storage-offload__spark--5{background:#a78bfa;animation:2.8s ease-out 1s infinite storage-spark-fly;top:24%;left:14%}.storage-offload__spark--6{background:#38bdf8;animation:2.5s ease-out 1.4s infinite storage-spark-fly-alt;top:20%;right:12%}.storage-offload__mascot{z-index:1;width:6rem;height:6rem;animation:3.6s ease-in-out infinite storage-mascot-float;position:relative}.storage-offload__mascot svg{filter:drop-shadow(0 6px 14px #0f172a1a);width:100%;height:100%}.storage-offload__metric{z-index:2;width:100%;margin-top:.35rem;position:relative}.storage-offload__value-stage{background:linear-gradient(#fff 0%,#f8fafc 100%);border:1px solid #e2e8f0;border-radius:14px;justify-content:center;align-items:center;padding:1.25rem 1rem 1.1rem;display:flex;position:relative;overflow:hidden;box-shadow:0 1px 2px #0f172a0a,0 4px 14px #0f172a0d,inset 0 1px #fffffff2,inset 0 -1px #0f172a08}.storage-offload__value-glow{pointer-events:none;background:radial-gradient(#0ea5e914 0%,#0000 72%);border-radius:50%;position:absolute;inset:20% 14%}.storage-offload__title{letter-spacing:.1em;text-transform:uppercase;color:var(--brand-600);margin:0;font-size:.75rem;font-weight:700;line-height:1.35}.storage-offload__value{z-index:1;justify-content:center;align-items:baseline;gap:.45rem;margin:0;line-height:1;display:flex;position:relative}.storage-offload__value-amount{letter-spacing:-.055em;background:linear-gradient(135deg,#0369a1 0%,#0284c7 50%,#0891b2 100%);color:#0000;-webkit-background-clip:text;background-clip:text;font-size:clamp(2.85rem,6.5vw,3.65rem);font-weight:700;line-height:.95}.storage-offload__value-unit{letter-spacing:.01em;color:var(--brand-600);font-size:clamp(1rem,2.2vw,1.25rem);font-weight:600}.storage-offload__desc{max-width:16rem;color:var(--text-muted);margin:.85rem auto 0;padding:0 .25rem;font-size:.8125rem;font-weight:450;line-height:1.65}.storage-offload__badge{z-index:2;letter-spacing:.02em;color:var(--text-secondary);background:#f8fafc;border:1px solid #e2e8f0;border-radius:999px;margin-top:1.05rem;padding:.42rem .95rem;font-size:.6875rem;font-weight:600;display:inline-flex;position:relative;box-shadow:0 1px 2px #0f172a0a}@keyframes storage-orb-drift{0%,to{transform:translate(0)scale(1)}50%{transform:translate(6px,-5px)scale(1.03)}}@keyframes storage-firework-burst{0%{opacity:0;transform:scale(0);box-shadow:0 0}15%{opacity:1;transform:scale(1);box-shadow:0 -14px 0 2px,10px -10px 0 1px,14px 0 0 2px,10px 10px 0 1px,0 14px 0 2px,-10px 10px 0 1px,-14px 0 0 2px,-10px -10px 0 1px}40%,to{opacity:0;transform:scale(1.2);box-shadow:0 -20px #0000,16px -14px #0000,20px 0 #0000,16px 14px #0000,0 20px #0000,-16px 14px #0000,-20px 0 #0000,-16px -14px #0000}}@keyframes storage-spark-fly{0%{opacity:0;transform:translate(0)scale(.5)}20%{opacity:1}to{opacity:0;transform:translate(-18px,-28px)scale(0)}}@keyframes storage-spark-fly-alt{0%{opacity:0;transform:translate(0)scale(.5)}20%{opacity:1}to{opacity:0;transform:translate(18px,-26px)scale(0)}}@keyframes storage-mascot-float{0%,to{transform:translateY(0)}50%{transform:translateY(-4px)}}.storage-rank-section+.storage-rank-section{border-top:1px solid var(--surface-border);margin-top:1.35rem;padding-top:1.35rem}.storage-rank-section__title{color:var(--text-secondary);margin:0 0 .85rem;font-size:.8125rem;font-weight:600}.storage-rank-section__empty{color:var(--text-muted);margin:0;font-size:.8125rem}.storage-rank__subtitle{color:var(--text-muted);white-space:nowrap;text-overflow:ellipsis;margin-bottom:.35rem;font-size:.6875rem;display:block;overflow:hidden}.storage-rank-section--drive .storage-rank__fill{background:linear-gradient(90deg,#6366f1,#8b5cf6)}.storage-rank{flex-direction:column;gap:.85rem;margin:0;padding:0;list-style:none;display:flex}.storage-rank__item{grid-template-columns:1.5rem 1fr auto;align-items:start;gap:.65rem;display:grid}.storage-rank__position{color:var(--text-muted);padding-top:.1rem;font-size:.75rem;font-weight:700}.storage-rank__body{min-width:0}.storage-rank__name{color:var(--text-primary);white-space:nowrap;text-overflow:ellipsis;margin-bottom:.2rem;font-size:.8125rem;font-weight:500;display:block;overflow:hidden}.storage-rank__bar{background:var(--surface-muted);border-radius:999px;height:7px;overflow:hidden}.storage-rank__fill{border-radius:inherit;background:linear-gradient(90deg, var(--brand-500), var(--ocean-cyan));height:100%;transition:width .8s var(--ease-out-expo)}.storage-rank__value{color:var(--text-secondary);white-space:nowrap;padding-top:.1rem;font-size:.8125rem;font-weight:600}.storage-donut-layout{flex-wrap:nowrap;align-items:flex-start;gap:1.25rem;display:flex}.storage-donut{flex-shrink:0;width:8.5rem;height:8.5rem;margin-top:.15rem;position:relative}.storage-donut svg{width:100%;height:100%;transform:rotate(-90deg)}.storage-donut__segment{fill:none;stroke-width:18px;transition:stroke-width var(--duration-fast) ease, opacity var(--duration-fast) ease}.storage-donut:hover .storage-donut__segment{stroke-width:20px}.storage-donut__center{pointer-events:none;flex-direction:column;justify-content:center;align-items:center;display:flex;position:absolute;inset:0}.storage-donut__center-value{color:var(--text-primary);font-size:1.125rem;font-weight:700}.storage-donut__center-label{color:var(--text-muted);font-size:.6875rem}.storage-donut-legend{scrollbar-width:thin;scrollbar-color:#94a3b873 transparent;flex-direction:column;flex:1;gap:.7rem;min-width:0;max-height:16.5rem;margin:0;padding:.1rem .15rem .1rem 0;list-style:none;display:flex;overflow-y:auto}.storage-donut-legend::-webkit-scrollbar{width:4px}.storage-donut-legend::-webkit-scrollbar-thumb{background:#94a3b873;border-radius:999px}.storage-donut-legend li{grid-template-columns:.65rem 1fr;align-items:start;gap:.55rem;font-size:.8125rem;display:grid}.storage-donut-legend__dot{border-radius:50%;flex-shrink:0;width:.65rem;height:.65rem;margin-top:.3rem}.storage-donut-legend__body{flex-direction:column;gap:.3rem;min-width:0;display:flex}.storage-donut-legend__row{justify-content:space-between;align-items:baseline;gap:.5rem;display:flex}.storage-donut-legend__name{color:var(--text-primary);text-overflow:ellipsis;white-space:nowrap;min-width:0;font-weight:500;line-height:1.3;overflow:hidden}.storage-donut-legend__pct{color:var(--text-muted);white-space:nowrap;font-size:.75rem;font-weight:600}.storage-donut-legend__bar{background:var(--surface-muted);border-radius:999px;height:4px;overflow:hidden}.storage-donut-legend__fill{border-radius:inherit;opacity:.88;height:100%;transition:width .8s var(--ease-out-expo)}@media (width<=520px){.storage-donut-layout{flex-wrap:wrap;justify-content:center}.storage-donut-legend{width:100%;max-height:12rem}}.storage-skeleton{flex-direction:column;gap:1rem;display:flex}.storage-skeleton__hero{border-radius:var(--radius-md);background:linear-gradient(90deg, var(--surface-muted) 25%, #eef6fb 50%, var(--surface-muted) 75%);background-size:200% 100%;height:9rem;animation:1.4s infinite storage-shimmer}.storage-skeleton__stats{gap:1rem;display:grid}.storage-skeleton__stats--strip{border-radius:var(--radius-md);border:1px solid var(--surface-border);grid-template-columns:repeat(4,minmax(0,1fr));gap:0;overflow:hidden}.storage-skeleton__stats--strip .storage-skeleton__stat{border-right:1px solid var(--surface-border);border-radius:0}.storage-skeleton__stats--strip .storage-skeleton__stat:last-child{border-right:none}@media (width<=960px){.storage-skeleton__stats--strip{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width<=520px){.storage-skeleton__stats--strip{grid-template-columns:1fr}}.storage-skeleton__stat{border-radius:var(--radius-md);background:linear-gradient(90deg, var(--surface-muted) 25%, #eef6fb 50%, var(--surface-muted) 75%);background-size:200% 100%;height:6.5rem;animation:1.4s infinite storage-shimmer}.storage-skeleton__chart{border-radius:var(--radius-md);background:linear-gradient(90deg, var(--surface-muted) 25%, #eef6fb 50%, var(--surface-muted) 75%);background-size:200% 100%;height:14rem;animation:1.4s infinite storage-shimmer}@keyframes storage-shimmer{0%{background-position:200% 0}to{background-position:-200% 0}}.storage-empty{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.tenant-daily-log-detail{flex-direction:column;gap:1.5rem;display:flex}.tenant-daily-log-detail__meta{grid-template-columns:repeat(auto-fill,minmax(10rem,1fr));gap:.75rem 1rem;margin:0;display:grid}.tenant-daily-log-detail__field{margin:0}.tenant-daily-log-detail__field dt{color:var(--text-muted);text-transform:uppercase;letter-spacing:.03em;margin:0 0 .2rem;font-size:.75rem;font-weight:600}.tenant-daily-log-detail__field dd{color:var(--text-primary);margin:0;font-size:.875rem}.tenant-daily-log-detail__mono{font-family:var(--font-mono,ui-monospace, monospace);font-size:.8125rem}.tenant-daily-log-detail__entries-title{margin:0 0 .75rem;font-size:.9375rem;font-weight:600}.tenant-daily-log-detail__entry-list{flex-direction:column;gap:.875rem;margin:0;padding:0;list-style:none;display:flex}.tenant-daily-log-detail__entry{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted,var(--surface));padding:.875rem}.tenant-daily-log-detail__entry-head{flex-wrap:wrap;align-items:center;gap:.5rem .75rem;margin-bottom:.5rem;display:flex}.tenant-daily-log-detail__entry-time{color:var(--text-muted);font-size:.75rem}.tenant-daily-log-detail__entry-message{white-space:pre-wrap;word-break:break-word;margin:0;font-size:.875rem;line-height:1.45}.tenant-daily-log-detail__entry-error{border-radius:var(--radius-sm);background:var(--status-error-bg);color:var(--status-error);margin-top:.625rem;padding:.625rem .75rem;font-size:.8125rem}.tenant-daily-log-detail__stack,.tenant-daily-log-detail__context{border-radius:var(--radius-sm);background:var(--surface);border:1px solid var(--surface-border);font-family:var(--font-mono,ui-monospace, monospace);white-space:pre-wrap;word-break:break-word;margin:.625rem 0 0;padding:.625rem .75rem;font-size:.75rem;line-height:1.4;overflow:auto}.tenant-daily-log-detail__empty{color:var(--text-muted);margin:0;font-size:.875rem}.registros-page{flex-direction:column;gap:1.25rem;display:flex}.registros-page__section-title{margin:0;font-size:1rem;font-weight:600}.registros-page__section-desc{color:var(--text-muted);margin:.35rem 0 0;font-size:.875rem;line-height:1.45}.registros-page__types-header{margin-bottom:1rem}.registros-page__type-grid{grid-template-columns:repeat(auto-fill,minmax(15rem,1fr));gap:.75rem;display:grid}.registros-type-card{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface);text-align:left;cursor:pointer;flex-direction:column;align-items:flex-start;gap:.35rem;padding:.875rem 1rem;transition:border-color .15s,box-shadow .15s,background .15s;display:flex}.registros-type-card:hover:not(:disabled){border-color:color-mix(in srgb, var(--brand-600) 35%, var(--surface-border))}.registros-type-card:disabled{opacity:.55;cursor:not-allowed}.registros-type-card--selected{border-color:var(--brand-600);box-shadow:0 0 0 2px color-mix(in srgb, var(--brand-600) 18%, transparent);background:color-mix(in srgb, var(--brand-600) 6%, var(--surface))}.registros-type-card__priority{letter-spacing:.04em;text-transform:uppercase;font-size:.6875rem;font-weight:700}.registros-type-card--high .registros-type-card__priority{color:var(--status-error)}.registros-type-card--medium .registros-type-card__priority{color:var(--status-warning)}.registros-type-card--low .registros-type-card__priority{color:var(--text-muted)}.registros-type-card__label{color:var(--text-primary);font-size:.9375rem;font-weight:600}.registros-type-card__desc{color:var(--text-muted);font-size:.8125rem;line-height:1.4}.registros-page__results-header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem 1.5rem;margin-bottom:1rem;display:flex}.registros-page__retention{border-radius:var(--radius-sm);background:var(--status-info-bg);max-width:18rem;color:var(--text-primary);align-items:flex-start;gap:.5rem;padding:.625rem .75rem;font-size:.8125rem;line-height:1.4;display:flex}.registros-page__retention-icon{background:var(--brand-600);color:#fff;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:inline-flex}.registros-page__retention p{margin:0}.registros-page__toolbar{flex-wrap:wrap;align-items:flex-end;gap:.75rem 1rem;margin-bottom:1rem;display:flex}.registros-page__dates{flex-wrap:wrap;gap:.75rem;display:flex}.registros-page__date-field{color:var(--text-muted);flex-direction:column;gap:.25rem;font-size:.75rem;font-weight:600;display:flex}.registros-page__date-field input{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);min-width:10.5rem;height:2.25rem;color:var(--text-primary);padding:0 .75rem;font-size:.875rem}.registros-page__date-field input:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 3px var(--input-ring);outline:none}.registros-page__date-field input:disabled{opacity:.6;cursor:not-allowed}.registros-page__quick-filters{flex-wrap:wrap;gap:.4rem;display:flex}.registros-page__quick-filter{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface);height:2.25rem;color:var(--text-primary);cursor:pointer;padding:0 .75rem;font-size:.8125rem;font-weight:500}.registros-page__quick-filter:hover:not(:disabled){border-color:var(--brand-600);color:var(--brand-600)}.registros-page__quick-filter:disabled{opacity:.6;cursor:not-allowed}.registros-page__status,.registros-page__hint{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.registros-page__summary-cell{flex-wrap:wrap;align-items:center;gap:.35rem .5rem;display:flex}.registros-page__summary-message{-webkit-line-clamp:2;color:var(--text-muted);-webkit-box-orient:vertical;font-size:.8125rem;display:-webkit-box;overflow:hidden}.m365-modal{z-index:9000;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.m365-modal__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a73;border:none;padding:0;animation:.22s m365-modal-fade-in;position:absolute;inset:0}.m365-modal__dialog{border-radius:var(--radius-lg);text-align:center;width:min(26rem,100%);animation:m365-modal-slide-in .32s var(--ease-out-expo);background:linear-gradient(165deg,#fff 0%,#f0f9ff 55%,#fff 100%);border:1px solid #ffffffa6;padding:1.75rem 1.5rem 1.5rem;position:relative;box-shadow:0 4px 6px #041e330f,0 28px 64px #041e332e}.m365-modal__icon{background:var(--status-success-bg);width:3.5rem;height:3.5rem;color:var(--status-success);border-radius:50%;justify-content:center;align-items:center;margin:0 auto 1rem;display:flex;box-shadow:0 0 0 8px #05966914}.m365-modal__icon svg{width:1.75rem;height:1.75rem}.m365-modal__title{letter-spacing:-.03em;color:var(--text-primary);margin:0 0 .5rem;font-size:1.25rem;font-weight:700}.m365-modal__text{color:var(--text-secondary);margin:0 0 1.35rem;font-size:.9375rem;line-height:1.55}.m365-modal__actions{flex-wrap:wrap;justify-content:center;gap:.5rem;display:flex}.m365-modal__cta{color:#fff;justify-content:center;align-items:center;text-decoration:none;display:inline-flex}.m365-modal__cta:hover,.m365-modal__cta:focus-visible{color:#fff}@keyframes m365-modal-fade-in{0%{opacity:0}to{opacity:1}}@keyframes m365-modal-slide-in{0%{opacity:0;transform:translateY(12px)scale(.97)}to{opacity:1;transform:translateY(0)scale(1)}}@media (prefers-reduced-motion:reduce){.m365-modal__backdrop,.m365-modal__dialog{animation:none}}.m365-status-card{background:var(--surface);border:1px solid var(--surface-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);padding:1.35rem 1.5rem}.m365-status-card__main{gap:1.5rem;display:grid}@media (width>=900px){.m365-status-card__main{grid-template-columns:minmax(0,1.05fr) minmax(0,1.35fr);align-items:start;gap:2rem}}.m365-status-card__intro{flex-direction:column;gap:.65rem;display:flex}.m365-status-pill{letter-spacing:.01em;border:1px solid #0000;border-radius:999px;align-items:center;gap:.45rem;width:fit-content;padding:.3rem .7rem .3rem .55rem;font-size:.75rem;font-weight:600;display:inline-flex}.m365-status-pill__dot{border-radius:50%;flex-shrink:0;width:.45rem;height:.45rem}.m365-status-pill--success{color:#047857;background:#ecfdf5;border-color:#a7f3d0}.m365-status-pill--success .m365-status-pill__dot{background:#059669}.m365-status-pill--warning{color:#b45309;background:#fffbeb;border-color:#fde68a}.m365-status-pill--warning .m365-status-pill__dot{background:#d97706}.m365-status-pill--neutral{color:#475569;background:#f8fafc;border-color:#e2e8f0}.m365-status-pill--neutral .m365-status-pill__dot{background:#94a3b8}.m365-status-pill--error{color:#b91c1c;background:#fef2f2;border-color:#fecaca}.m365-status-pill--error .m365-status-pill__dot{background:#dc2626}.m365-status-card__heading{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.125rem;font-weight:700}.m365-status-card__hint{color:var(--text-secondary);max-width:28rem;margin:0;font-size:.875rem;line-height:1.55}.m365-status-card__metrics{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:var(--surface-muted);grid-template-columns:1fr;gap:0;margin:0;display:grid;overflow:hidden}@media (width>=640px){.m365-status-card__metrics{grid-template-columns:repeat(2,minmax(0,1fr))}}.m365-metric{border-bottom:1px solid var(--surface-border);background:var(--surface);padding:.75rem .9rem}.m365-metric:nth-last-child(-n+2){border-bottom:none}@media (width>=640px){.m365-metric:nth-child(odd){border-right:1px solid var(--surface-border)}.m365-metric:nth-child(5),.m365-metric:nth-child(6){border-bottom:none}.m365-metric:nth-child(5){border-right:1px solid var(--surface-border)}}.m365-metric dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0 0 .2rem;font-size:.6875rem;font-weight:600}.m365-metric__value{color:var(--text-primary);word-break:break-word;margin:0;font-size:.8125rem;font-weight:600}.m365-metric__value--mono{color:var(--text-secondary);font-family:ui-monospace,Cascadia Code,monospace;font-size:.75rem;font-weight:500}.m365-status-card--loading .m365-status-card__skeleton{border-radius:var(--radius-sm);background:linear-gradient(90deg, var(--surface-muted) 0%, #fff 50%, var(--surface-muted) 100%);background-size:200% 100%;animation:1.2s ease-in-out infinite m365-shimmer}.m365-status-card__skeleton--title{width:40%;height:1.75rem}.m365-status-card__skeleton--text{width:85%;height:3rem}.m365-status-card__metrics--skeleton{background:0 0;border:none;grid-template-columns:repeat(2,1fr);gap:.65rem;display:grid}.m365-status-card__skeleton--metric{height:3.25rem}@keyframes m365-shimmer{0%{background-position:100% 0}to{background-position:-100% 0}}@media (prefers-reduced-motion:reduce){.m365-status-card__skeleton{animation:none}}.hc-panel{background:var(--surface);border:1px solid var(--surface-border);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);overflow:hidden}.hc-panel__head{border-bottom:1px solid var(--surface-border);background:#fafbfc;flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:1rem 1.25rem;padding:1.25rem 1.5rem;display:flex}.hc-panel__eyebrow{letter-spacing:.07em;text-transform:uppercase;color:var(--text-muted);margin:0 0 .25rem;font-size:.6875rem;font-weight:700}.hc-panel__title{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.0625rem;font-weight:700}.hc-panel__desc{color:var(--text-secondary);max-width:32rem;margin:.35rem 0 0;font-size:.875rem;line-height:1.5}.hc-panel__head-actions{flex-direction:column;align-items:flex-end;gap:.65rem;display:flex}.hc-panel__summary{flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;display:flex}.hc-panel__summary-stat{color:var(--text-secondary);font-size:.8125rem}.hc-panel__summary-stat strong{color:var(--text-primary);font-weight:700}.hc-panel__summary-badge{border-radius:999px;padding:.2rem .55rem;font-size:.6875rem;font-weight:600}.hc-panel__summary-badge--ok{background:var(--status-success-bg);color:var(--status-success)}.hc-panel__summary-badge--fail{background:var(--status-error-bg);color:var(--status-error)}.hc-panel__body{padding:1rem 1.25rem 1.25rem}.hc-list{flex-direction:column;gap:.75rem;margin:0;padding:0;list-style:none;display:flex}.hc-item{grid-template-columns:auto 1fr;gap:.75rem;display:grid}.hc-item__marker{padding-top:1rem}.hc-item__dot{border-radius:50%;width:.5rem;height:.5rem;display:block}.hc-item__dot--ok{background:var(--status-success)}.hc-item__dot--fail{background:var(--status-error)}.hc-item__body{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:#fff;padding:.85rem 1rem}.hc-item--latest .hc-item__body{background:#f8fafc;border-color:#dbeafe}.hc-item__head{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.5rem;margin-bottom:.45rem;display:flex}.hc-item__head time{color:var(--text-muted);font-size:.75rem;font-weight:500}.hc-item__labels{flex-wrap:wrap;gap:.35rem;display:flex}.hc-chip{letter-spacing:.03em;text-transform:uppercase;border-radius:999px;padding:.15rem .5rem;font-size:.625rem;font-weight:700;display:inline-flex}.hc-chip--ok{background:var(--status-success-bg);color:var(--status-success)}.hc-chip--fail{background:var(--status-error-bg);color:var(--status-error)}.hc-chip--muted{background:var(--surface-muted);color:var(--text-muted);text-transform:none;letter-spacing:0;font-weight:600}.hc-item__message{color:var(--text-primary);margin:0 0 .65rem;font-size:.875rem;line-height:1.45}.hc-item__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.55rem 1rem;margin:0;display:grid}@media (width>=720px){.hc-item__grid{grid-template-columns:repeat(4,minmax(0,1fr))}}.hc-item__grid dt{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);margin:0;font-size:.625rem;font-weight:600}.hc-item__grid dd{color:var(--text-primary);margin:.1rem 0 0;font-size:.8125rem;font-weight:600}.hc-mono{word-break:break-all;font-family:ui-monospace,monospace;font-size:.75rem;font-weight:500}.hc-latency--good{color:var(--status-success)}.hc-latency--mid{color:var(--status-warning)}.hc-latency--slow{color:var(--status-error)}.hc-item__foot{border-top:1px solid var(--surface-border);flex-wrap:wrap;gap:.35rem;margin-top:.65rem;padding-top:.6rem;display:flex}.hc-item__foot code{background:var(--surface-muted);color:var(--text-secondary);border-radius:4px;padding:.15rem .4rem;font-size:.6875rem}.hc-empty{text-align:center;border:1px dashed var(--surface-border);border-radius:var(--radius-md);background:#fafbfc;flex-direction:column;align-items:center;padding:2.5rem 1.25rem;display:flex}.hc-empty__icon{background:var(--surface-muted);width:2.75rem;height:2.75rem;color:var(--text-muted);border-radius:12px;justify-content:center;align-items:center;margin-bottom:.85rem;display:flex}.hc-empty__icon svg{width:1.35rem;height:1.35rem}.hc-empty__title{color:var(--text-primary);margin:0 0 .35rem;font-size:.9375rem;font-weight:700}.hc-empty__text{max-width:26rem;color:var(--text-secondary);margin:0 0 1rem;font-size:.875rem;line-height:1.5}.hc-panel__skeletons{flex-direction:column;gap:.65rem;margin:0;padding:0;list-style:none;display:flex}.hc-panel__skeletons li{border-radius:var(--radius-md);background:linear-gradient(90deg, var(--surface-muted) 0%, #fff 50%, var(--surface-muted) 100%);background-size:200% 100%;height:5rem;animation:1.2s ease-in-out infinite m365-shimmer}.text-field{flex-direction:column;gap:.5rem;display:flex}.text-field__label{color:var(--text-primary);letter-spacing:-.01em;font-size:.875rem;font-weight:600}.text-field__control{align-items:center;display:flex;position:relative}.text-field__icon{color:var(--text-muted);pointer-events:none;transition:color var(--duration-fast) ease;display:flex;position:absolute;left:.875rem}.text-field__input{border:1.5px solid var(--input-border);background:var(--input-bg);width:100%;height:3rem;color:var(--text-primary);transition:border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;border-radius:12px;padding:0 1rem}.text-field--with-icon .text-field__input{padding-left:2.75rem}.text-field--with-trailing .text-field__input{padding-right:2.75rem}.text-field__input::placeholder{color:var(--input-placeholder)}.text-field__input:hover:not(:disabled){background:#fff;border-color:#cbd5e1}.text-field__input:focus{border-color:var(--input-border-focus);box-shadow:0 0 0 4px var(--input-ring);background:#fff;outline:none}.text-field__control:focus-within .text-field__icon{color:var(--brand-600)}.text-field__input:disabled{opacity:.65;cursor:not-allowed}.text-field--error .text-field__input{border-color:#f87171;box-shadow:0 0 0 3px #f8717133}.text-field__trailing{align-items:center;display:flex;position:absolute;right:.375rem}.text-field__error{color:var(--error-text);margin:0;font-size:.8125rem}.notification-email-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.notification-email-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.notification-email-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.notification-email-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.notification-email-dialog__icon{width:3rem;height:3rem;color:var(--brand-600);background:linear-gradient(145deg,#e0f2fef2,#f0f9ff99);border:1px solid #0ea5e92e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #0ea5e91f}.notification-email-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.notification-email-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.notification-email-dialog__badge{color:var(--brand-700);background:#e0f2fed9;border:1px solid #0ea5e926;border-radius:999px;align-self:flex-start;padding:.28rem .65rem;font-size:.75rem;font-weight:600;display:inline-flex}.notification-email-dialog__body{padding:1.25rem 1.75rem 0}.notification-email-dialog__lead{color:#475569f2;max-width:38ch;margin:0;font-size:.9375rem;line-height:1.65}.notification-email-dialog__field{margin-top:1.25rem}.notification-email-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.notification-email-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.notification-email-dialog__code-wrap{margin-top:1.5rem}.notification-email-dialog__security{color:#64748bf2;background:#f1f5f9b3;border:1px solid #e2e8f0e6;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1.125rem 0 0;padding:.65rem .75rem;font-size:.75rem;line-height:1.5;display:flex}.notification-email-dialog__security svg{color:var(--brand-600);opacity:.85;flex-shrink:0;margin-top:.1rem}.notification-email-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.notification-email-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.notification-email-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.notification-email-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.notification-email-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.notification-email-dialog__btn--outline{color:var(--brand-700);background:#fffc;border:1px solid #0ea5e947}.notification-email-dialog__btn--outline:hover:not(:disabled){background:var(--status-info-bg);border-color:#0ea5e973;box-shadow:0 2px 8px #0ea5e91a}.notification-email-dialog__btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--ocean-cyan,#22d3ee) 120%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #0ea5e947}.notification-email-dialog__btn--primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #0ea5e952}.notification-email-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite notification-email-dialog-spin}@keyframes notification-email-dialog-spin{to{transform:rotate(360deg)}}@media (width<=520px){.notification-email-dialog__header{padding:1.35rem 1.25rem 0}.notification-email-dialog__body{padding:1rem 1.25rem 0}.notification-email-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.notification-email-dialog__btn{width:100%}.notification-email-dialog__btn--ghost{order:3}}.notifications-page__stack{flex-direction:column;gap:1rem;display:flex}.notifications-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.notifications-page__card-header{justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1rem;display:flex}.notifications-page__card-title{color:var(--text-primary);margin:0 0 .25rem;font-size:.9375rem;font-weight:600}.notifications-page__card-desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.5}.notifications-page__count{min-width:1.75rem;height:1.75rem;color:var(--brand-700);background:var(--status-info-bg);border:1px solid #0ea5e92e;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;padding:0 .5rem;font-size:.75rem;font-weight:700;display:inline-flex}.notifications-page__count--unread{color:var(--status-error);background:var(--status-error-bg);border-color:#dc26262e}.notifications-page__inbox{flex-direction:column;gap:.5rem;margin:0;padding:0;list-style:none;display:flex}.notifications-page__inbox-item{border-radius:var(--radius-sm);border:1px solid var(--surface-border);background:var(--surface-muted);justify-content:space-between;align-items:flex-start;gap:.75rem;padding:.95rem 1rem;transition:background .15s,border-color .15s,box-shadow .15s;display:flex}.notifications-page__inbox-item:not(.notifications-page__inbox-item--read){background:#fff;border-color:#0ea5e938;box-shadow:0 1px 3px #0ea5e914}.notifications-page__inbox-main{flex:1;align-items:flex-start;gap:.85rem;min-width:0;display:flex}.notifications-page__inbox-icon{border:1px solid #0000;border-radius:.75rem;flex-shrink:0;justify-content:center;align-items:center;width:2.25rem;height:2.25rem;display:flex}.notifications-page__inbox-icon--error{color:var(--status-error);background:var(--status-error-bg);border-color:#dc26261f}.notifications-page__inbox-icon--warning{color:var(--status-warning);background:var(--status-warning-bg);border-color:#d977061f}.notifications-page__inbox-icon--success{color:var(--status-success);background:var(--status-success-bg);border-color:#0596691f}.notifications-page__inbox-icon--info{color:var(--brand-600);background:var(--status-info-bg);border-color:#0ea5e91f}.notifications-page__inbox-copy{flex:1;min-width:0}.notifications-page__inbox-topline{align-items:center;gap:.5rem;margin-bottom:.2rem;display:flex}.notifications-page__unread-dot{background:var(--brand-500);border-radius:999px;flex-shrink:0;width:.5rem;height:.5rem;box-shadow:0 0 0 3px #0ea5e926}.notifications-page__inbox-category{text-transform:uppercase;letter-spacing:.04em;color:var(--text-muted);font-size:.6875rem;font-weight:700}.notifications-page__inbox-time{color:var(--text-muted);white-space:nowrap;margin-left:auto;font-size:.75rem}.notifications-page__inbox-title{color:var(--text-primary);margin:0 0 .2rem;font-size:.875rem;font-weight:600;line-height:1.35}.notifications-page__inbox-item--read .notifications-page__inbox-title{color:var(--text-secondary);font-weight:500}.notifications-page__inbox-preview{color:var(--text-muted);-webkit-line-clamp:2;-webkit-box-orient:vertical;margin:0;font-size:.8125rem;line-height:1.45;display:-webkit-box;overflow:hidden}.notifications-page__inbox-actions{flex-shrink:0;align-items:center;gap:.35rem;display:flex}.notifications-page__action{border:1px solid var(--surface-border);background:var(--surface);width:2rem;height:2rem;color:var(--text-secondary);cursor:pointer;border-radius:8px;justify-content:center;align-items:center;padding:0;transition:background .15s,color .15s,border-color .15s;display:inline-flex}.notifications-page__action:hover{color:var(--brand-600);background:#f0f9ffd9;border-color:#0ea5e959}.notifications-page__action--read:hover{color:var(--status-success);background:#ecfdf5d9;border-color:#05966959}.notifications-page__action--delete:hover{color:var(--status-error);background:#fef2f2d9;border-color:#dc262659}.notifications-page__email-banner{margin-bottom:1rem}.notifications-page__email-list{flex-direction:column;gap:.5rem;margin:0 0 1rem;padding:0;list-style:none;display:flex}.notifications-page__email-item{border-radius:var(--radius-sm);border:1px solid var(--surface-border);background:var(--surface-muted);justify-content:space-between;align-items:center;gap:.75rem;padding:.85rem 1rem;display:flex}.notifications-page__email-main{align-items:center;gap:.75rem;min-width:0;display:flex}.notifications-page__email-icon{width:2rem;height:2rem;color:var(--brand-600);background:#fff;border:1px solid #0ea5e926;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;display:flex}.notifications-page__email-address{color:var(--text-primary);text-overflow:ellipsis;white-space:nowrap;font-size:.875rem;font-weight:500;overflow:hidden}.notifications-page__email-badge{text-transform:uppercase;letter-spacing:.03em;color:var(--status-success);background:var(--status-success-bg);border:1px solid #05966926;border-radius:999px;flex-shrink:0;align-items:center;gap:.3rem;padding:.2rem .55rem;font-size:.6875rem;font-weight:700;display:inline-flex}.notifications-page__email-actions{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.notifications-page__empty{border-radius:var(--radius-sm);text-align:center;background:#f0f9ff73;border:1px dashed #0ea5e947;flex-direction:column;justify-content:center;align-items:center;gap:.5rem;margin-bottom:1rem;padding:2rem 1rem;display:flex}.notifications-page__empty-icon{width:2.75rem;height:2.75rem;color:var(--brand-600);background:#fff;border:1px solid #0ea5e926;border-radius:999px;justify-content:center;align-items:center;display:flex}.notifications-page__empty-title{color:var(--text-primary);margin:0;font-size:.9375rem;font-weight:600}.notifications-page__empty-text{max-width:32ch;color:var(--text-muted);margin:0;font-size:.8125rem;line-height:1.5}.notifications-page__footer-actions{flex-wrap:wrap;gap:.5rem;display:flex}.notifications-page__pagination{border-radius:var(--radius-sm);background:var(--surface-muted);border:1px solid var(--surface-border);flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem 1rem;margin-top:1rem;padding:.875rem 1rem;display:flex}.notifications-page__pagination-summary{color:var(--text-secondary);margin:0;font-size:.8125rem}.notifications-page__pagination-controls{flex-wrap:wrap;align-items:center;gap:.5rem .75rem;display:flex}.notifications-page__pagination-count{min-width:4rem;color:var(--text-muted);text-align:center;font-size:.8125rem;font-weight:600}@media (width<=720px){.notifications-page__inbox-item{flex-direction:column}.notifications-page__inbox-actions{align-self:flex-end}}@media (width<=640px){.notifications-page__email-item{flex-direction:column;align-items:stretch}.notifications-page__email-actions{justify-content:flex-end}}.phone-field{flex-direction:column;gap:.5rem;display:flex}.phone-field__label{color:var(--text-primary);letter-spacing:-.01em;font-size:.875rem;font-weight:600}.phone-field__control .PhoneInput{border:1.5px solid var(--input-border);background:var(--input-bg);width:100%;height:3rem;transition:border-color var(--duration-fast) ease, box-shadow var(--duration-fast) ease, background-color var(--duration-fast) ease;border-radius:12px;align-items:center;gap:.5rem;padding:0 .75rem 0 .5rem;display:flex}.phone-field__control .PhoneInput:hover:not(.PhoneInput--disabled){background:#fff;border-color:#cbd5e1}.phone-field__control .PhoneInput:focus-within{border-color:var(--input-border-focus);box-shadow:0 0 0 4px var(--input-ring);background:#fff}.phone-field__control .PhoneInputCountry{border-right:1px solid var(--surface-border);align-self:stretch;align-items:center;margin-right:.25rem;padding-right:.75rem;display:flex;position:relative}.phone-field__control .PhoneInputCountrySelect{z-index:1;opacity:0;cursor:pointer;position:absolute;inset:0}.phone-field__control .PhoneInputCountrySelectArrow{border-style:solid;border-width:0 1.5px 1.5px 0;border-color:var(--text-muted);width:.4rem;height:.4rem;margin-left:.35rem;display:block;transform:rotate(45deg)translateY(-1px)}.phone-field__control .PhoneInputCountryIcon{border-radius:2px;width:1.5rem;height:1.125rem;overflow:hidden;box-shadow:0 0 0 1px #0f172a14}.phone-field__control .PhoneInputCountryIcon--border{box-shadow:0 0 0 1px #0f172a14}.phone-field__control .PhoneInputInput{min-width:0;height:100%;color:var(--text-primary);font:inherit;background:0 0;border:none;flex:1;padding:0}.phone-field__control .PhoneInputInput::placeholder{color:var(--input-placeholder)}.phone-field__control .PhoneInputInput:focus{outline:none}.phone-field__control .PhoneInput--disabled{opacity:.65;cursor:not-allowed}.phone-field--error .PhoneInput{border-color:#f87171;box-shadow:0 0 0 3px #f8717133}.phone-field__error{color:var(--error-text);margin:0;font-size:.8125rem}.profile-email-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.profile-email-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.profile-email-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.profile-email-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.profile-email-dialog__icon{width:3rem;height:3rem;color:var(--brand-600);background:linear-gradient(145deg,#e0f2fef2,#f0f9ff99);border:1px solid #0ea5e92e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #0ea5e91f}.profile-email-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.profile-email-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.profile-email-dialog__badge{color:var(--brand-700);background:#e0f2fed9;border:1px solid #0ea5e926;border-radius:999px;align-self:flex-start;padding:.28rem .65rem;font-size:.75rem;font-weight:600;display:inline-flex}.profile-email-dialog__body{padding:1.25rem 1.75rem 0}.profile-email-dialog__lead{color:#475569f2;max-width:38ch;margin:0;font-size:.9375rem;line-height:1.65}.profile-email-dialog__field{margin-top:1.25rem}.profile-email-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.profile-email-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.profile-email-dialog__code-wrap{margin-top:1.5rem}.profile-email-dialog__security{color:#64748bf2;background:#f1f5f9b3;border:1px solid #e2e8f0e6;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1.125rem 0 0;padding:.65rem .75rem;font-size:.75rem;line-height:1.5;display:flex}.profile-email-dialog__security svg{color:var(--brand-600);opacity:.85;flex-shrink:0;margin-top:.1rem}.profile-email-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.profile-email-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.profile-email-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.profile-email-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.profile-email-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.profile-email-dialog__btn--outline{color:var(--brand-700);background:#fffc;border:1px solid #0ea5e947}.profile-email-dialog__btn--outline:hover:not(:disabled){background:var(--status-info-bg);border-color:#0ea5e973;box-shadow:0 2px 8px #0ea5e91a}.profile-email-dialog__btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--ocean-cyan,#22d3ee) 120%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #0ea5e947}.profile-email-dialog__btn--primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #0ea5e952}.profile-email-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite profile-email-dialog-spin}@keyframes profile-email-dialog-spin{to{transform:rotate(360deg)}}@media (width<=520px){.profile-email-dialog__header{padding:1.35rem 1.25rem 0}.profile-email-dialog__body{padding:1rem 1.25rem 0}.profile-email-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.profile-email-dialog__btn{width:100%}.profile-email-dialog__btn--ghost{order:3}}.profile-password-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.profile-password-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.profile-password-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.profile-password-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.profile-password-dialog__icon{width:3rem;height:3rem;color:var(--brand-600);background:linear-gradient(145deg,#e0f2fef2,#f0f9ff99);border:1px solid #0ea5e92e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #0ea5e91f}.profile-password-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.profile-password-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.profile-password-dialog__body{padding:1.25rem 1.75rem 0}.profile-password-dialog__lead{color:#475569f2;margin:0;font-size:.9375rem;line-height:1.65}.profile-password-dialog__field{margin-top:1.25rem}.profile-password-dialog__field .text-field__input{padding-right:2.75rem}.profile-password-dialog__visibility{width:2.25rem;height:2.25rem;color:var(--text-muted);cursor:pointer;transition:color var(--duration-fast) ease, background-color var(--duration-fast) ease;background:0 0;border:none;border-radius:8px;justify-content:center;align-items:center;padding:0;display:flex}.profile-password-dialog__visibility:hover:not(:disabled){color:var(--brand-600);background:#0ea5e914}.profile-password-dialog__visibility:disabled{cursor:not-allowed;opacity:.5}.profile-password-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.profile-password-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.profile-password-dialog__hint{color:var(--text-muted);margin:.75rem 0 0;font-size:.75rem;line-height:1.5}.profile-password-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.profile-password-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.profile-password-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.profile-password-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.profile-password-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.profile-password-dialog__btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--ocean-cyan,#22d3ee) 120%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #0ea5e947}.profile-password-dialog__btn--primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #0ea5e952}.profile-password-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite profile-password-dialog-spin}@keyframes profile-password-dialog-spin{to{transform:rotate(360deg)}}@media (width<=520px){.profile-password-dialog__header{padding:1.35rem 1.25rem 0}.profile-password-dialog__body{padding:1rem 1.25rem 0}.profile-password-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.profile-password-dialog__btn{width:100%}}.user-activity-log-detail{flex-direction:column;gap:1.25rem;display:flex}.user-activity-log-detail__empty{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.user-activity-log-detail__header{flex-wrap:wrap;justify-content:space-between;align-items:flex-start;gap:.75rem;padding-bottom:.25rem;display:flex}.user-activity-log-detail__id{font-size:.8125rem;font-weight:600;font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-muted);margin:0}.user-activity-log-detail__meta{color:var(--text-muted);margin:.25rem 0 0;font-size:.8125rem}.user-activity-log-detail__section-title{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0 0 .75rem;font-size:.75rem;font-weight:700}.user-activity-log-detail__grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.85rem 1.25rem;margin:0;display:grid}.user-activity-log-detail__field{flex-direction:column;gap:.25rem;min-width:0;display:flex}.user-activity-log-detail__field--wide{grid-column:1/-1}.user-activity-log-detail__field dt{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.user-activity-log-detail__field dd{color:var(--text-primary);word-break:break-word;margin:0;font-size:.875rem;line-height:1.45}.user-activity-log-detail__mono{font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-muted);font-size:.8125rem}.user-activity-log-detail__json-section{flex-direction:column;gap:.5rem;display:flex}.user-activity-log-detail__json-title{letter-spacing:.04em;text-transform:uppercase;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.user-activity-log-detail__json-block{border-radius:var(--radius-md);border:1px solid var(--surface-border);background:var(--surface-muted);max-height:14rem;font-family:var(--font-mono,ui-monospace, monospace);color:var(--text-secondary);white-space:pre-wrap;word-break:break-word;margin:0;padding:.875rem 1rem;font-size:.75rem;line-height:1.5;overflow:auto}.user-activity-log-detail__error{border-radius:var(--radius-md);background:var(--status-error-bg);border:1px solid #dc262633;padding:.875rem 1rem}.user-activity-log-detail__error-title{text-transform:uppercase;letter-spacing:.04em;color:var(--status-error);margin:0 0 .35rem;font-size:.75rem;font-weight:700}.user-activity-log-detail__error p{color:var(--status-error);margin:0;font-size:.875rem;line-height:1.5}.user-activity-log-detail__footer{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;width:100%;display:flex}@media (width<=640px){.user-activity-log-detail__grid{grid-template-columns:1fr}}.profile-activity-log__header{justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.25rem;display:flex}.profile-activity-log__heading{flex:1;min-width:min(100%,14rem)}.profile-activity-log__title{color:var(--text-primary);margin:0 0 .25rem;font-size:.9375rem;font-weight:600}.profile-activity-log__desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.5}.profile-activity-log__toolbar{flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:.75rem;display:flex}.profile-activity-log__search{flex:1;min-width:min(100%,16rem);max-width:none}.profile-activity-log__embed{border-radius:var(--radius-sm);color:#fff;background-color:#026b6f;background-image:radial-gradient(120% 180% at 0%,#038387 0%,#0383878c 42%,#0000 72%);border:1px solid #03838773;flex-shrink:0;align-items:center;gap:.5rem;width:max-content;max-width:100%;padding:.5rem .75rem;display:inline-flex;box-shadow:inset 0 1px #ffffff38,inset 0 -1px #0000001f}.profile-activity-log__embed-icon{background:#ffffff29;border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.375rem;height:1.375rem;font-size:.75rem;font-weight:700;display:inline-flex}.profile-activity-log__embed-text{color:#ffffffeb;white-space:nowrap;margin:0;font-size:.75rem;line-height:1.45}.profile-activity-log__embed-text strong{color:#fff;font-weight:700}.profile-activity-log__hint{color:var(--text-muted);margin:0 0 .75rem;font-size:.8125rem}.profile-activity-log__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.profile-activity-log__user-cell{flex-direction:column;gap:.15rem;min-width:0;display:flex}.profile-activity-log__user-name{color:var(--text-primary);font-size:.875rem;font-weight:500}.profile-activity-log__user-email{color:var(--text-muted);text-overflow:ellipsis;white-space:nowrap;font-size:.75rem;overflow:hidden}.profile-activity-log__view-btn{border-radius:var(--radius-sm);width:2rem;height:2rem;color:var(--text-secondary);cursor:pointer;background:0 0;border:none;justify-content:center;align-items:center;padding:0;display:inline-flex}.profile-activity-log__view-btn:hover{background:var(--surface-muted);color:var(--brand-600)}.profile-activity-log__view-btn:focus-visible{box-shadow:0 0 0 3px var(--input-ring);outline:none}.page-section .data-table{min-width:48rem}@media (width<=640px){.profile-activity-log__header{flex-direction:column;align-items:stretch}.profile-activity-log__embed{width:auto;max-width:none}.profile-activity-log__embed-text{white-space:normal}.profile-activity-log__toolbar{flex-direction:column;align-items:stretch}}.profile-page__stack{flex-direction:column;gap:1rem;display:flex}.profile-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.profile-page__card-header{justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.25rem;display:flex}.profile-page__card-title{color:var(--text-primary);margin:0 0 .25rem;font-size:.9375rem;font-weight:600}.profile-page__card-desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.5}.profile-page__card-actions{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.profile-page__name-grid{grid-template-columns:1fr 1fr;gap:1rem;margin-bottom:1.25rem;display:grid}.profile-page__field{flex-direction:column;gap:.35rem;display:flex}.profile-page__field-label{color:var(--text-muted);font-size:.75rem;font-weight:600}.profile-page__field-value{color:var(--text-primary);margin:0;font-size:.9375rem}.profile-page__field-value--masked{letter-spacing:.12em}.profile-page__row{border-top:1px solid var(--surface-border);justify-content:space-between;align-items:center;gap:1rem;padding:.85rem 0;display:flex}.profile-page__row:first-of-type{border-top:none;padding-top:0}.profile-page__row-main{flex-direction:column;flex:1;gap:.35rem;min-width:0;display:flex}.profile-page__row-actions{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.profile-page__contract-row{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;display:flex}.profile-page__contract-text{flex:1;min-width:min(100%,16rem)}.profile-page__mfa-row{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;display:flex}.profile-page__mfa-info{flex:1;min-width:min(100%,14rem)}.profile-page__mfa-title{color:var(--text-primary);margin:0 0 .25rem;font-size:.875rem;font-weight:600}.profile-page__mfa-desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.5}.profile-page__section-intro{margin-bottom:1.25rem}.profile-page__meta{border-top:1px solid var(--surface-border);color:var(--text-muted);margin:1rem 0 0;padding-top:1rem;font-size:.8125rem}.profile-page__banner{border-radius:var(--radius-sm);background:var(--status-warning-bg);color:var(--text-secondary);border:1px solid #eab30847;flex-wrap:wrap;justify-content:space-between;align-items:center;gap:1rem;padding:.875rem 1rem;font-size:.875rem;display:flex}.profile-page__banner-action{flex-shrink:0}.profile-page__badge{color:var(--brand-700);background:var(--status-info-bg);border:1px solid #0ea5e92e;border-radius:999px;align-items:center;padding:.2rem .55rem;font-size:.75rem;font-weight:600;display:inline-flex}.profile-page__email-list{flex-direction:column;gap:.35rem;margin:0;padding:0;list-style:none;display:flex}.profile-page__email-list li{color:var(--text-primary);font-size:.875rem}.profile-page__env-item--wide{grid-column:1/-1}.profile-page__env-grid{grid-template-columns:repeat(auto-fill,minmax(220px,1fr));gap:1rem 1.5rem;display:grid}.profile-page__env-item{flex-direction:column;gap:.35rem;display:flex}.profile-page__env-label{color:var(--text-muted);font-size:.75rem;font-weight:600}.profile-page__env-value{color:var(--text-primary);word-break:break-all;margin:0;font-size:.875rem}.profile-page__env-value--mono{font-family:ui-monospace,Cascadia Code,Segoe UI Mono,monospace;font-size:.8125rem}@media (width<=640px){.profile-page__name-grid{grid-template-columns:1fr}.profile-page__card-header{flex-direction:column;align-items:stretch}.profile-page__card-actions{justify-content:flex-end}.profile-page__row{flex-direction:column;align-items:flex-start}}.partner-unlink-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.partner-unlink-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.partner-unlink-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.partner-unlink-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.partner-unlink-dialog__icon{width:3rem;height:3rem;color:var(--status-error);background:linear-gradient(145deg,#fee2e2f2,#fef2f299);border:1px solid #dc26262e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #dc26261a}.partner-unlink-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.partner-unlink-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.partner-unlink-dialog__badge{color:#991b1b;background:#fee2e2d9;border:1px solid #dc262626;border-radius:999px;align-self:flex-start;padding:.28rem .65rem;font-size:.75rem;font-weight:600;display:inline-flex}.partner-unlink-dialog__body{padding:1.25rem 1.75rem 0}.partner-unlink-dialog__lead{color:#475569f2;max-width:38ch;margin:0;font-size:.9375rem;line-height:1.65}.partner-unlink-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.partner-unlink-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.partner-unlink-dialog__code-wrap{margin-top:1.5rem}.partner-unlink-dialog__security{color:#64748bf2;background:#f1f5f9b3;border:1px solid #e2e8f0e6;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1.125rem 0 0;padding:.65rem .75rem;font-size:.75rem;line-height:1.5;display:flex}.partner-unlink-dialog__security svg{color:var(--brand-600);opacity:.85;flex-shrink:0;margin-top:.1rem}.partner-unlink-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.partner-unlink-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.partner-unlink-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.partner-unlink-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.partner-unlink-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.partner-unlink-dialog__btn--outline{color:var(--brand-700);background:#fffc;border:1px solid #0ea5e947}.partner-unlink-dialog__btn--outline:hover:not(:disabled){background:var(--status-info-bg);border-color:#0ea5e973;box-shadow:0 2px 8px #0ea5e91a}.partner-unlink-dialog__btn--danger{color:#fff;background:linear-gradient(135deg,#b91c1c 0%,#dc2626 100%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #dc262638}.partner-unlink-dialog__btn--danger:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #dc262647}.partner-unlink-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite partner-unlink-dialog-spin}@keyframes partner-unlink-dialog-spin{to{transform:rotate(360deg)}}@media (width<=520px){.partner-unlink-dialog__header{padding:1.35rem 1.25rem 0}.partner-unlink-dialog__body{padding:1rem 1.25rem 0}.partner-unlink-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.partner-unlink-dialog__btn{width:100%}.partner-unlink-dialog__btn--ghost{order:3}}.partner-page__stack{flex-direction:column;gap:1rem;display:flex}.partner-page__status{text-align:center;color:var(--text-muted);margin:0;padding:2rem 1rem;font-size:.875rem}.partner-page__card-header{justify-content:space-between;align-items:flex-start;gap:1rem;margin-bottom:1.25rem;display:flex}.partner-page__card-title{color:var(--text-primary);margin:0 0 .25rem;font-size:.9375rem;font-weight:600}.partner-page__card-desc{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.5}.partner-page__card-actions{flex-shrink:0;align-items:center;gap:.5rem;display:flex}.partner-page__details{flex-direction:column;gap:1rem;display:flex}.partner-page__grid{grid-template-columns:1fr 1fr;gap:1rem;display:grid}.partner-page__field{flex-direction:column;gap:.35rem;display:flex}.partner-page__field-label{color:var(--text-muted);font-size:.75rem;font-weight:600}.partner-page__field-value{color:var(--text-primary);margin:0;font-size:.9375rem}.partner-page__badge{border-radius:999px;align-items:center;padding:.2rem .55rem;font-size:.75rem;font-weight:600;display:inline-flex}.partner-page__badge--active{color:#15803d;background:#dcfce7;border:1px solid #22c55e40}.partner-page__badge--inactive{color:#991b1b;background:#fee2e2;border:1px solid #dc262633}.partner-page__link-form{flex-direction:column;gap:1.25rem;max-width:28rem;display:flex}.partner-page__link-actions{align-items:center;gap:.5rem;display:flex}@media (width<=720px){.partner-page__card-header{flex-direction:column}.partner-page__card-actions,.partner-page__card-actions .app-button{width:100%}.partner-page__grid{grid-template-columns:1fr}}.course-accordion{flex-direction:column;gap:.65rem;display:flex}.course-accordion__item{border:1px solid var(--surface-border);border-radius:var(--radius-lg,.75rem);background:var(--surface);overflow:hidden;box-shadow:0 1px 2px #0f172a0a}.course-accordion__item--expanded{border-color:#0ea5e947;box-shadow:0 4px 16px #0ea5e90f}.course-accordion__trigger{text-align:left;cursor:pointer;background:0 0;border:none;align-items:center;gap:.75rem;width:100%;padding:.95rem 1rem;transition:background .15s;display:flex}.course-accordion__trigger:hover{background:var(--surface-muted)}.course-accordion__item--expanded .course-accordion__trigger{background:linear-gradient(180deg, #f0f9ffe6 0%, var(--surface) 100%);border-bottom:1px solid var(--surface-border)}.course-accordion__chevron{color:var(--brand-600);transition:transform .22s var(--ease-out-expo,ease);flex-shrink:0}.course-accordion__chevron--expanded{transform:rotate(180deg)}.course-accordion__trigger-main{flex-direction:column;flex:1;gap:.2rem;min-width:0;display:flex}.course-accordion__mission-number{letter-spacing:.06em;text-transform:uppercase;color:var(--brand-600);font-size:.72rem;font-weight:700}.course-accordion__mission-title{color:var(--text-primary,#0f172a);font-size:.95rem;font-weight:600;line-height:1.4}.course-accordion__meta{flex-direction:column;flex-shrink:0;align-items:flex-end;gap:.2rem;display:flex}.course-accordion__count{color:var(--text-muted,#64748b);white-space:nowrap;font-size:.75rem}.course-accordion__completed{color:var(--status-success);white-space:nowrap;font-size:.72rem;font-weight:700}.course-accordion__panel{padding:.35rem .5rem .55rem}.course-accordion__lesson-list{flex-direction:column;gap:.2rem;margin:0;padding:0;list-style:none;display:flex}.course-accordion--compact{gap:.45rem}.course-accordion--compact .course-accordion__item{border-radius:.6rem}.course-accordion--compact .course-accordion__trigger{gap:.5rem;padding:.7rem .65rem}.course-accordion--compact .course-accordion__mission-title{font-size:.82rem;font-weight:600}.course-accordion--compact .course-accordion__panel{padding:.2rem .35rem .45rem}@media (width<=640px){.course-accordion__trigger{align-items:flex-start;padding:.85rem}.course-accordion__meta{padding-top:.15rem}}.curso-aula-topbar{z-index:30;flex-shrink:0;position:sticky;top:0}.curso-aula-topbar__left{flex:1;align-items:center;gap:1rem;min-width:0}.curso-aula-topbar__back{color:var(--aula-link,var(--brand-700));white-space:nowrap;flex-shrink:0;font-size:.8125rem;font-weight:600;text-decoration:none}.curso-aula-topbar__back:hover{text-decoration:underline}.curso-aula-topbar__context{flex-direction:column;gap:.12rem;min-width:0;display:flex}.curso-aula-topbar__course{color:var(--aula-text,var(--text-primary));-webkit-line-clamp:2;-webkit-box-orient:vertical;font-size:.8125rem;font-weight:600;line-height:1.35;display:-webkit-box;overflow:hidden}.curso-aula-topbar__right{flex-shrink:0}.curso-aula-topbar__theme-btn{color:var(--aula-muted,var(--text-secondary))}@media (width<=768px){.curso-aula-topbar__context{display:none}}@media (width<=640px){.curso-aula-topbar__back{font-size:.75rem}}.lesson-progress-panel{border:1px solid var(--aula-border,var(--surface-border));background:var(--aula-surface-muted,var(--surface-muted));border-radius:.75rem;width:100%;max-width:24rem;padding:.85rem .95rem}.lesson-progress-panel--compact{max-width:none;padding:.55rem .65rem}.lesson-progress-panel__header{justify-content:space-between;align-items:center;gap:.75rem;margin-bottom:.55rem;display:flex}.lesson-progress-panel__status{color:var(--aula-text-secondary,var(--text-secondary));font-size:.78rem;font-weight:600}.lesson-progress-panel__percent{color:var(--aula-accent,var(--brand-700));font-size:.875rem;font-weight:700}.lesson-progress-panel--completed .lesson-progress-panel__percent{color:var(--status-success)}.lesson-progress-panel__bar{background:#0f172a14;border-radius:999px;height:.45rem;overflow:hidden}.curso-aula-page--dark .lesson-progress-panel__bar{background:#ffffff14}.lesson-progress-panel__bar-fill{border-radius:inherit;background:var(--aula-accent,var(--brand-600));height:100%;transition:width .35s;display:block}.lesson-progress-panel--completed .lesson-progress-panel__bar-fill{background:var(--status-success)}.lesson-progress-panel--not-started .lesson-progress-panel__bar-fill{width:0!important}.lesson-progress-panel__meta{color:var(--aula-muted,var(--text-muted));flex-wrap:wrap;align-items:center;gap:.35rem;margin:.55rem 0 0;font-size:.75rem;display:flex}.lesson-progress-panel__meta-dot{opacity:.6}.lesson-progress-panel--compact .lesson-progress-panel__header{margin-bottom:.4rem}.lesson-progress-panel--compact .lesson-progress-panel__status{font-size:.72rem}.lesson-progress-panel--compact .lesson-progress-panel__percent{font-size:.78rem}.curso-aula-page{--aula-bg:#f0f7fc;--aula-bg-accent:#22d3ee14;--aula-surface:#fff;--aula-surface-muted:#f8fafc;--aula-border:#e2e8f0;--aula-text:#0f172a;--aula-text-secondary:#475569;--aula-muted:#64748b;--aula-link:#0284c7;--aula-accent:#0ea5e9;--aula-topbar-bg:#ffffffe0;--aula-active-bg:#f0f9ff;--aula-active-border:#0ea5e933;--aula-description-bg:linear-gradient(135deg, #fff 0%, #f0f9ff 100%);--aula-description-border:#0ea5e938;--aula-description-accent:linear-gradient(180deg, #22d3ee 0%, #0ea5e9 100%);--aula-placeholder-bg:linear-gradient(180deg, #fff 0%, #f0f9ff 100%);--aula-placeholder-border:#0ea5e959;--aula-video-shadow:0 16px 40px #0f172a1f;background:var(--aula-bg);min-height:100svh;color:var(--aula-text);flex-direction:column;display:flex}.curso-aula-page--dark{--aula-bg:#0a0f0d;--aula-bg-accent:#0ea5e912;--aula-surface:#0e1214;--aula-surface-muted:#12181b;--aula-border:#242c32;--aula-text:#f1f5f9;--aula-text-secondary:#bac6cf;--aula-muted:#828e98;--aula-link:#38bdf8;--aula-accent:#22d3ee;--aula-topbar-bg:#0a0f0df0;--aula-active-bg:#0ea5e91f;--aula-active-border:#22d3ee3d;--aula-description-bg:linear-gradient(135deg, #0e1214 0%, #0a0f0d 100%);--aula-description-border:#0ea5e92e;--aula-description-accent:linear-gradient(180deg, #22d3ee 0%, #0ea5e9 100%);--aula-placeholder-bg:linear-gradient(180deg, #0e1214 0%, #0a0f0d 100%);--aula-placeholder-border:#0ea5e938;--aula-video-shadow:0 16px 40px #00000080;--lightningcss-light: ;--lightningcss-dark:initial;color-scheme:dark}.curso-aula-page--light{--lightningcss-light:initial;--lightningcss-dark: ;color-scheme:light}.curso-aula-page .topbar{background:var(--aula-topbar-bg);border-bottom-color:var(--aula-border)}.curso-aula-page .topbar__user-name,.curso-aula-page .topbar__title{color:var(--aula-text)}.curso-aula-page .topbar__user-plan,.curso-aula-page .topbar__subtitle,.curso-aula-page .topbar__icon-btn{color:var(--aula-muted)}.curso-aula-page .topbar__icon-btn:hover,.curso-aula-page .topbar__user:hover,.curso-aula-page .topbar__user--open{background:var(--aula-surface-muted);color:var(--aula-accent)}.curso-aula-page .topbar__user-dropdown{background:var(--aula-surface);border-color:var(--aula-border)}.curso-aula-page .topbar__user-dropdown-item{color:var(--aula-text)}.curso-aula-page .topbar__user-dropdown-item:hover{background:var(--aula-surface-muted);color:var(--aula-accent)}.curso-aula-page .topbar-notifications__dropdown,.curso-aula-page .topbar-notifications__header{background:var(--aula-surface);border-color:var(--aula-border)}.curso-aula-page .topbar-notifications__title,.curso-aula-page .topbar-notifications__item-title{color:var(--aula-text)}.curso-aula-page .topbar-notifications__item-preview,.curso-aula-page .topbar-notifications__empty{color:var(--aula-muted)}.curso-aula-page__intro{border-bottom:1px solid var(--aula-border);background:var(--aula-surface);justify-content:space-between;align-items:center;gap:1.25rem;padding:1rem 1.25rem;display:flex}.curso-aula-page__intro-main{flex:1;min-width:0}.curso-aula-page__intro .lesson-progress-panel{flex-shrink:0;width:min(100%,24rem);max-width:24rem;margin:0 0 0 auto}.curso-aula-page__mission-label{letter-spacing:.04em;text-transform:uppercase;color:var(--aula-accent);margin:0 0 .35rem;font-size:.75rem;font-weight:700}.curso-aula-page__lesson-title{color:var(--aula-text);margin:0;font-size:clamp(1.15rem,2vw,1.55rem);line-height:1.35}.curso-aula-page__layout{flex:1;grid-template-columns:minmax(0,1fr) minmax(18rem,22rem);min-height:0;display:grid}.curso-aula-page__player{background:radial-gradient(ellipse 70% 50% at 20% 0%, var(--aula-bg-accent), transparent 55%), var(--aula-bg);flex-direction:column;gap:1.25rem;min-height:0;padding:1rem 1.25rem 1.5rem;display:flex}.curso-aula-page__video-wrap{aspect-ratio:16/9;border-radius:var(--radius-lg,.75rem);width:100%;box-shadow:var(--aula-video-shadow);background:#0f172a;position:relative;overflow:hidden}.curso-aula-page__video{background:#0f172a;width:100%;height:100%;display:block;position:absolute;inset:0}.curso-aula-page__description{border-radius:var(--radius-lg,.75rem);border:1px solid var(--aula-description-border);background:var(--aula-description-bg);display:flex;position:relative;overflow:hidden;box-shadow:0 8px 24px #0f172a0f}.curso-aula-page--dark .curso-aula-page__description{box-shadow:0 8px 24px #00000040}.curso-aula-page__description-accent{background:var(--aula-description-accent);flex-shrink:0;width:4px}.curso-aula-page__description-inner{flex:1;min-width:0;padding:1.15rem 1.25rem 1.25rem}.curso-aula-page__description-header{align-items:flex-start;gap:.85rem;margin-bottom:.85rem;display:flex}.curso-aula-page__description-icon{width:2.5rem;height:2.5rem;color:var(--aula-accent);background:#0ea5e91f;border:1px solid #0ea5e929;border-radius:.75rem;justify-content:center;align-items:center;display:inline-flex}.curso-aula-page--dark .curso-aula-page__description-icon{background:#0ea5e91a;border-color:#22d3ee2e}.curso-aula-page__description-title{color:var(--aula-text);margin:0;font-size:1.05rem;line-height:1.3}.curso-aula-page__description-subtitle{color:var(--aula-muted);margin:.2rem 0 0;font-size:.8125rem}.curso-aula-page__description-body{color:var(--aula-text-secondary);white-space:pre-line;font-size:.9375rem;line-height:1.7}.curso-aula-page--centered{justify-content:center;align-items:center;gap:1rem;padding:2rem}.curso-aula-page__back{color:var(--aula-link);font-size:.875rem;font-weight:600;text-decoration:none;display:inline-flex}.curso-aula-page__back:hover{text-decoration:underline}.curso-aula-page__feedback{text-align:center;color:var(--aula-text-secondary);margin:0}.curso-aula-page__feedback--error{color:var(--status-error)}.curso-aula-page__video-placeholder{aspect-ratio:16/9;text-align:center;border-radius:var(--radius-lg,.75rem);border:1px dashed var(--aula-placeholder-border);background:var(--aula-placeholder-bg);flex-direction:column;justify-content:center;align-items:center;gap:.65rem;width:100%;padding:2rem;display:flex}.curso-aula-page__video-placeholder h2{color:var(--aula-text);margin:0;font-size:1.2rem}.curso-aula-page__video-placeholder p{max-width:28rem;color:var(--aula-text-secondary);margin:0;line-height:1.5}.curso-aula-page__video-placeholder--error{background:linear-gradient(180deg, var(--aula-surface) 0%, #fef2f259 100%);border-color:#dc262640}.curso-aula-page__sidebar{border-left:1px solid var(--aula-border);background:var(--aula-surface);flex-direction:column;min-height:0;display:flex}.curso-aula-page__sidebar-header{border-bottom:1px solid var(--aula-border);padding:1rem 1rem .75rem}.curso-aula-page__sidebar-header h2{color:var(--aula-text);margin:0;font-size:1rem}.curso-aula-page__sidebar-header p{color:var(--aula-muted);margin:.25rem 0 0;font-size:.8rem}.curso-aula-page__missions{flex:1;padding:.65rem .55rem 1rem;overflow-y:auto}.curso-aula-page__lesson-btn{text-align:left;cursor:pointer;background:0 0;border:none;border-radius:.55rem;align-items:flex-start;gap:.55rem;width:100%;padding:.55rem .5rem;transition:background .15s;display:flex}.curso-aula-page__lesson-btn:hover{background:var(--aula-surface-muted)}.curso-aula-page__lesson-btn--active{background:var(--aula-active-bg);box-shadow:inset 0 0 0 1px var(--aula-active-border)}.curso-aula-page__lesson-btn-number{text-align:center;width:1.6rem;color:var(--aula-link);background:#0ea5e91a;border-radius:.35rem;flex-shrink:0;font-size:.72rem;font-weight:700;line-height:1.6rem}.curso-aula-page--dark .curso-aula-page__lesson-btn-number{background:#0ea5e91f}.curso-aula-page__lesson-btn-text{color:var(--aula-text);font-size:.82rem;line-height:1.4;display:block}.curso-aula-page__lesson-btn-main{flex-direction:column;flex:1;align-items:flex-start;gap:.3rem;min-width:0;display:flex}.curso-aula-page__lesson-btn-indicator{color:var(--aula-accent);flex-shrink:0;margin-top:.15rem}.curso-aula-page .course-accordion__item{border-color:var(--aula-border);background:var(--aula-surface);box-shadow:none}.curso-aula-page .course-accordion__item--expanded{border-color:var(--aula-active-border);box-shadow:none}.curso-aula-page .course-accordion__trigger:hover{background:var(--aula-surface-muted)}.curso-aula-page .course-accordion__item--expanded .course-accordion__trigger{background:var(--aula-active-bg);border-bottom-color:var(--aula-border)}.curso-aula-page .course-accordion__mission-title,.curso-aula-page .course-accordion__lesson-btn-text{color:var(--aula-text)}.curso-aula-page .course-accordion__mission-number,.curso-aula-page .course-accordion__chevron{color:var(--aula-accent)}.curso-aula-page .course-accordion__count,.curso-aula-page .course-accordion__mission-title+.course-accordion__meta,.curso-aula-page .course-accordion__count{color:var(--aula-muted)}@media (width<=960px){.curso-aula-page__layout{grid-template-columns:1fr}.curso-aula-page__sidebar{border-left:none;border-top:1px solid var(--aula-border);max-height:22rem}}@media (width<=640px){.curso-aula-page__intro,.curso-aula-page__player{padding-left:1rem;padding-right:1rem}.curso-aula-page__intro{flex-direction:column;align-items:stretch}.curso-aula-page__intro .lesson-progress-panel{width:100%;max-width:none;margin-left:0}}.lesson-progress-badge{white-space:nowrap;border-radius:999px;flex-shrink:0;align-items:center;padding:.18rem .5rem;font-size:.72rem;font-weight:600;line-height:1.2;display:inline-flex}.lesson-progress-badge--not-started{color:var(--text-muted,#64748b);background:var(--surface-muted)}.lesson-progress-badge--in-progress{color:var(--brand-700);background:var(--status-info-bg);border:1px solid #0ea5e92e}.lesson-progress-badge--completed{color:var(--status-success);background:var(--status-success-bg);border:1px solid #0596692e}.curso-educacional-page__hero{background:radial-gradient(ellipse 80% 60% at 0% 0%, #22d3ee1f, transparent 55%), radial-gradient(ellipse 70% 50% at 100% 100%, #0ea5e91a, transparent 50%), var(--surface);border:1px solid #0ea5e926;margin-bottom:1.5rem}.curso-educacional-page__hero-content{flex-direction:column;gap:1rem;display:flex}.curso-educacional-page__badge{letter-spacing:.02em;text-transform:uppercase;color:var(--brand-700);background:var(--status-info-bg);border:1px solid #0ea5e933;border-radius:999px;align-self:flex-start;padding:.3rem .65rem;font-size:.75rem;font-weight:600}.curso-educacional-page__course-title{color:var(--text-primary,#0f172a);margin:0;font-size:1.5rem;line-height:1.3}.curso-educacional-page__course-desc{max-width:52rem;color:var(--text-secondary,#475569);margin:0;line-height:1.55}.curso-educacional-page__progress{flex-direction:column;gap:.45rem;max-width:28rem;display:flex}.curso-educacional-page__progress-header{color:var(--text-secondary,#475569);justify-content:space-between;align-items:center;font-size:.875rem;display:flex}.curso-educacional-page__progress-header strong{color:var(--brand-700);font-size:.95rem}.curso-educacional-page__progress-bar{background:#e2e8f0;border-radius:999px;height:.5rem;overflow:hidden}.curso-educacional-page__progress-bar>span{border-radius:inherit;background:var(--primary-gradient);height:100%;transition:width .35s var(--ease-out-expo,ease);display:block}.curso-educacional-page__progress-meta{color:var(--text-muted,#64748b);margin:0;font-size:.8rem}.curso-educacional-page__continue-btn{text-align:left;white-space:normal;align-self:flex-start;align-items:center;gap:.5rem;max-width:100%;margin-top:.25rem;display:inline-flex}.curso-educacional-page__curriculum-card{flex-direction:column;gap:1.25rem;display:flex}.curso-educacional-page__curriculum-header{flex-direction:column;gap:.35rem;display:flex}.curso-educacional-page__curriculum-title{color:var(--text-primary,#0f172a);margin:0;font-size:1.1rem}.curso-educacional-page__curriculum-desc{color:var(--text-secondary,#475569);margin:0;font-size:.875rem}.curso-educacional-page__feedback{color:var(--text-secondary,#475569);flex-direction:column;align-items:flex-start;gap:.85rem;margin:0;display:flex}.curso-educacional-page__feedback--error{color:var(--status-error)}.curso-educacional-page__lesson-row{border-radius:.55rem;justify-content:space-between;align-items:center;gap:1rem;padding:.65rem .55rem;transition:background .15s;display:flex}.curso-educacional-page__lesson-row:hover{background:var(--surface-muted)}.curso-educacional-page__lesson-row--completed{background:linear-gradient(90deg,#ecfdf5b3 0%,#0000 100%)}.curso-educacional-page__lesson-row--current{background:var(--status-info-bg);box-shadow:inset 0 0 0 1px #0ea5e92e}.curso-educacional-page__lesson-row-info{flex-wrap:wrap;flex:1;align-items:baseline;gap:.35rem .65rem;min-width:0;display:flex}.curso-educacional-page__lesson-row-number{letter-spacing:.05em;text-transform:uppercase;color:var(--text-muted,#64748b);flex-shrink:0;font-size:.72rem;font-weight:700}.curso-educacional-page__lesson-row-title{min-width:12rem;color:var(--text-primary,#0f172a);flex:1;font-size:.9rem;line-height:1.45}.curso-educacional-page__lesson-row-duration{color:var(--text-muted,#64748b);font-size:.78rem}.curso-educacional-page__play-btn{color:#fff;background:var(--primary-gradient);cursor:pointer;border:none;border-radius:999px;flex-shrink:0;align-items:center;gap:.4rem;padding:.4rem .75rem;font-size:.82rem;font-weight:600;transition:opacity .2s,transform .2s;display:inline-flex}.curso-educacional-page__play-btn:hover{opacity:.92;transform:translateY(-1px)}.curso-educacional-page__play-btn:focus-visible{outline:2px solid var(--brand-600);outline-offset:2px}@media (width<=640px){.curso-educacional-page__course-title{font-size:1.25rem}.curso-educacional-page__continue-btn{justify-content:center;width:100%}.curso-educacional-page__lesson-row{flex-direction:column;align-items:flex-start}.curso-educacional-page__play-btn{align-self:flex-end}}.login-card{z-index:1;width:100%;max-width:420px;animation:card-enter .85s var(--ease-out-expo) both;position:relative;transform:translateY(4vh)}.login-card__glow{filter:blur(24px);pointer-events:none;z-index:0;background:radial-gradient(at 50% 100%,#22d3ee38,#0000 65%);position:absolute;inset:-20% -8%}.login-card__inner{z-index:1;background:var(--card-bg);border:1px solid var(--card-border);box-shadow:var(--card-shadow);-webkit-backdrop-filter:blur(16px)saturate(1.2);border-radius:20px;position:relative;overflow:hidden}.login-card__inner:before{content:"";border-radius:inherit;-webkit-mask-composite:xor;pointer-events:none;z-index:2;background:linear-gradient(145deg,#ffffffe6,#fff3 40%,#22d3ee26);padding:1px;position:absolute;inset:0;-webkit-mask-image:linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);mask-image:linear-gradient(#fff 0 0),linear-gradient(#fff 0 0);-webkit-mask-position:0 0,0 0;mask-position:0 0,0 0;-webkit-mask-size:auto,auto;mask-size:auto,auto;-webkit-mask-repeat:repeat,repeat;mask-repeat:repeat,repeat;-webkit-mask-clip:content-box,border-box;mask-clip:content-box,border-box;-webkit-mask-origin:content-box,border-box;mask-origin:content-box,border-box;-webkit-mask-composite:xor;mask-composite:exclude;-webkit-mask-source-type:auto,auto;mask-mode:match-source,match-source}.login-card__content{z-index:1;padding:2.25rem 2rem 1.5rem;position:relative}.login-card__submerge{background:linear-gradient(#f8fafc99 0%,#f1f5f9f2 100%);border-top:1px solid #e2e8f0cc;height:2.75rem;position:relative}.login-card__submerge:after{content:"";background:linear-gradient(90deg,#0000,#22d3ee14 50%,#0000);animation:5s ease-in-out infinite submerge-shine;position:absolute;inset:0}@keyframes submerge-shine{0%,to{opacity:.4;transform:translate(-30%)}50%{opacity:1;transform:translate(30%)}}@keyframes card-enter{0%{opacity:0;transform:translateY(calc(4vh + 18px))}to{opacity:1;transform:translateY(4vh)}}@media (width<=480px){.login-card{transform:translateY(2.5vh)}.login-card__content{padding:1.75rem 1.25rem 1.25rem}.login-card__submerge{height:2.25rem}@keyframes card-enter{0%{opacity:0;transform:translateY(calc(2.5vh + 18px))}to{opacity:1;transform:translateY(2.5vh)}}}@media (prefers-reduced-motion:reduce){.login-card{animation:none;transform:translateY(3vh)}.login-card__submerge:after{animation:none}}.btn{letter-spacing:-.01em;color:#fff;cursor:pointer;background:linear-gradient(135deg, var(--brand-500) 0%, var(--ocean-cyan) 100%);width:100%;height:3rem;box-shadow:0 1px 2px #041e331f, 0 8px 20px var(--brand-glow);transition:transform var(--duration-fast) ease, box-shadow var(--duration-fast) ease, filter var(--duration-fast) ease;border:none;border-radius:12px;justify-content:center;align-items:center;gap:.5rem;padding:0 1.25rem;font-size:.9375rem;font-weight:600;display:inline-flex;position:relative}.btn:hover:not(:disabled){filter:brightness(1.04);transform:translateY(-1px);box-shadow:0 2px 4px #041e3324,0 12px 28px #0ea5e980}.btn:active:not(:disabled){transform:translateY(0);box-shadow:0 1px 2px #041e3329,0 4px 12px #0ea5e959}.btn:disabled{opacity:.72;cursor:not-allowed;transform:none}.btn--secondary{color:var(--text-primary);background:var(--surface);border:1px solid var(--surface-border);box-shadow:var(--shadow-sm)}.btn--secondary:hover:not(:disabled){filter:none;background:var(--surface-muted);box-shadow:var(--shadow-md)}.contract-step__actions-inline .btn,.contract-step__footer-actions .btn,.contract-completion__actions .btn{width:auto;min-width:10rem}.btn:focus-visible{outline-offset:3px;outline:2px solid #fff}.btn__spinner{animation:.8s linear infinite btn-spin}.btn__label--loading{opacity:.9}@keyframes btn-spin{to{transform:rotate(360deg)}}@media (prefers-reduced-motion:reduce){.btn__spinner{animation:none}.btn:hover:not(:disabled){transform:none}}.brand-header{text-align:center;flex-direction:column;align-items:center;gap:.75rem;display:flex}.brand-header__logo{object-fit:contain;width:20rem;max-width:100%;height:5.5rem;display:block}.brand-header__subtitle{max-width:20rem;color:var(--text-secondary);margin:0;font-size:.9375rem;line-height:1.55}.forgot-password-dialog{z-index:1200;justify-content:center;align-items:center;padding:1.25rem;display:flex;position:fixed;inset:0}.forgot-password-dialog__backdrop{-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);cursor:pointer;background:#0f172a94;border:none;position:absolute;inset:0}.forgot-password-dialog__panel{z-index:1;border:1px solid var(--surface-border);background:#fff;border-radius:1.5rem;width:min(100%,26.5rem);max-height:calc(100vh - 2.5rem);position:relative;overflow:auto;box-shadow:0 4px 6px #0f172a0a,0 20px 40px #0f172a1a}.forgot-password-dialog__header{align-items:flex-start;gap:1rem;padding:1.75rem 1.75rem 0;display:flex}.forgot-password-dialog__icon{width:3rem;height:3rem;color:var(--brand-600);background:linear-gradient(145deg,#e0f2fef2,#f0f9ff99);border:1px solid #0ea5e92e;border-radius:1rem;flex-shrink:0;justify-content:center;align-items:center;display:flex;box-shadow:0 4px 14px #0ea5e91f}.forgot-password-dialog__heading{flex-direction:column;gap:.5rem;min-width:0;display:flex}.forgot-password-dialog__title{letter-spacing:-.03em;color:var(--text-primary);margin:0;font-size:1.3125rem;font-weight:700;line-height:1.2}.forgot-password-dialog__badge{color:var(--brand-700);background:#e0f2fed9;border:1px solid #0ea5e926;border-radius:999px;align-self:flex-start;padding:.28rem .65rem;font-size:.75rem;font-weight:600;display:inline-flex}.forgot-password-dialog__body{padding:1.25rem 1.75rem 0}.forgot-password-dialog__lead{color:#475569f2;max-width:38ch;margin:0;font-size:.9375rem;line-height:1.65}.forgot-password-dialog__field{margin-top:1.25rem}.forgot-password-dialog__field+.forgot-password-dialog__field{margin-top:1rem}.forgot-password-dialog__error{color:var(--status-error);background:var(--status-error-bg);border:1px solid #dc262633;border-radius:.75rem;align-items:flex-start;gap:.5rem;margin:1rem 0 0;padding:.65rem .85rem;font-size:.8125rem;line-height:1.45;display:flex}.forgot-password-dialog__error:before{content:"!";color:#fff;background:var(--status-error);border-radius:999px;flex-shrink:0;justify-content:center;align-items:center;width:1.125rem;height:1.125rem;font-size:.6875rem;font-weight:700;display:flex}.forgot-password-dialog__code-wrap{margin-top:1.5rem}.forgot-password-dialog__hint{color:#64748bf2;margin:.75rem 0 0;font-size:.75rem;line-height:1.5}.forgot-password-dialog__footer{border-top:1px solid #e2e8f0a6;flex-wrap:wrap;justify-content:flex-end;align-items:center;gap:.5rem;margin-top:1.5rem;padding:1.25rem 1.75rem 1.75rem;display:flex}.forgot-password-dialog__btn{cursor:pointer;border-radius:.75rem;justify-content:center;align-items:center;gap:.45rem;min-height:2.625rem;padding:0 1.125rem;font-family:inherit;font-size:.875rem;font-weight:600;transition:transform .15s,box-shadow .15s,background .15s,border-color .15s,color .15s;display:inline-flex}.forgot-password-dialog__btn:disabled{opacity:.55;cursor:not-allowed;transform:none}.forgot-password-dialog__btn--ghost{color:var(--text-muted);background:0 0;border:1px solid #0000}.forgot-password-dialog__btn--ghost:hover:not(:disabled){color:var(--text-primary);background:#f1f5f9e6;border-color:#e2e8f0e6}.forgot-password-dialog__btn--outline{color:var(--brand-700);background:#fffc;border:1px solid #0ea5e947}.forgot-password-dialog__btn--outline:hover:not(:disabled){background:var(--status-info-bg);border-color:#0ea5e973;box-shadow:0 2px 8px #0ea5e91a}.forgot-password-dialog__btn--primary{color:#fff;background:linear-gradient(135deg, var(--brand-600) 0%, var(--brand-500) 55%, var(--ocean-cyan,#22d3ee) 120%);border:none;box-shadow:0 1px 2px #0f172a0f,0 6px 18px #0ea5e947}.forgot-password-dialog__btn--primary:hover:not(:disabled){transform:translateY(-1px);box-shadow:0 2px 4px #0f172a0f,0 10px 24px #0ea5e952}.forgot-password-dialog__spinner{border:2px solid #ffffff59;border-top-color:#fff;border-radius:999px;width:1rem;height:1rem;animation:.65s linear infinite forgot-password-dialog-spin}@keyframes forgot-password-dialog-spin{to{transform:rotate(360deg)}}@media (width<=520px){.forgot-password-dialog__header{padding:1.35rem 1.25rem 0}.forgot-password-dialog__body{padding:1rem 1.25rem 0}.forgot-password-dialog__footer{flex-direction:column-reverse;align-items:stretch;padding:1rem 1.25rem 1.35rem}.forgot-password-dialog__btn{width:100%}.forgot-password-dialog__btn--ghost{order:3}}.form-alert{animation:alert-in var(--duration-normal) var(--ease-out-expo);border-radius:10px;align-items:flex-start;gap:.625rem;padding:.75rem .875rem;font-size:.875rem;line-height:1.45;display:flex}.form-alert--error{color:var(--error-text);background:var(--error-bg);border:1px solid var(--error-border)}.form-alert--info{color:#0369a1;background:#f0f9ff;border:1px solid #bae6fd}.form-alert svg{flex-shrink:0;margin-top:1px}@keyframes alert-in{0%{opacity:0;transform:translateY(-4px)}to{opacity:1;transform:translateY(0)}}.login-form{flex-direction:column;gap:1.25rem;width:100%;display:flex}.login-form__password .text-field__input{padding-right:2.75rem}.login-form__visibility{width:2.25rem;height:2.25rem;color:var(--text-muted);cursor:pointer;transition:color var(--duration-fast) ease, background-color var(--duration-fast) ease;background:0 0;border:none;border-radius:8px;justify-content:center;align-items:center;padding:0;display:flex}.login-form__visibility:hover:not(:disabled){color:var(--brand-600);background:#0ea5e914}.login-form__visibility:focus-visible{outline:2px solid var(--brand-500);outline-offset:1px}.login-form__visibility:disabled{cursor:not-allowed;opacity:.5}.login-form__row{flex-wrap:wrap;justify-content:space-between;align-items:center;gap:.75rem;display:flex}.login-form__forgot{color:var(--text-muted);white-space:nowrap;cursor:pointer;transition:color var(--duration-fast) ease;background:0 0;border:none;padding:0;font-family:inherit;font-size:.875rem;font-weight:500}.login-form__forgot:hover:not(:disabled){color:var(--brand-600)}.login-form__forgot:disabled{opacity:.5;cursor:not-allowed}.login-form__mfa-hint{color:var(--text-muted);text-align:center;margin:-.5rem 0 0;font-size:.8125rem}.login-form__mfa-hint strong{color:var(--text-secondary);font-weight:600}.login-form__password-hint{color:var(--text-muted);margin:-.5rem 0 0;font-size:.8125rem;line-height:1.45}.login-form__back{color:var(--text-muted);cursor:pointer;transition:color var(--duration-fast) ease;background:0 0;border:none;margin-top:.25rem;padding:.5rem;font-family:inherit;font-size:.875rem;font-weight:600}.login-form__back:hover:not(:disabled){color:var(--brand-600)}.login-form__back:disabled{opacity:.5;cursor:not-allowed}@media (width<=380px){.login-form__row{flex-direction:column;align-items:flex-start}}.login-page{width:100%;min-height:100svh;position:relative;overflow:hidden}.login-page__main{z-index:10;isolation:isolate;pointer-events:none;justify-content:center;align-items:center;min-height:100svh;padding:1.5rem 1.25rem 14vh;display:flex;position:relative}.login-page__main>*{pointer-events:auto}@media (width<=480px){.login-page__main{padding:1rem 1rem 12vh}}.contract-stepper{flex-direction:column;gap:.875rem;display:flex}.contract-stepper__progress{background:#0ea5e926;border-radius:999px;height:6px;overflow:hidden}.contract-stepper__progress-fill{border-radius:inherit;background:var(--primary-gradient);height:100%;transition:width var(--duration-normal) var(--ease-out-expo)}.contract-stepper__progress-label{color:#fff;text-shadow:0 1px 2px #041e3359;margin:0;font-size:.8125rem}.contract-stepper__cards{grid-template-columns:repeat(5,minmax(0,1fr));gap:.5rem;display:grid}.contract-stepper__card{border-radius:var(--radius-sm);border:1px solid var(--surface-border);background:var(--surface);flex-direction:column;gap:.35rem;min-height:4.5rem;padding:.65rem .5rem;display:flex}.contract-stepper__card--active{border-color:var(--brand-600);background:linear-gradient(#f0f9fff2,#fff);box-shadow:0 0 0 1px #0ea5e926}.contract-stepper__card--done{background:var(--status-success-bg);border-color:#05966959}.contract-stepper__card-index{width:1.5rem;height:1.5rem;color:var(--text-brand);background:#0ea5e91f;border-radius:999px;justify-content:center;align-items:center;font-size:.75rem;font-weight:700;display:inline-flex}.contract-stepper__card--done .contract-stepper__card-index{color:var(--status-success);background:#05966926}.contract-stepper__card-label{color:var(--text-secondary);font-size:.6875rem;line-height:1.35}@media (width<=900px){.contract-stepper__cards{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (width<=520px){.contract-stepper__cards{grid-template-columns:1fr}}.legal-document{flex-direction:column;gap:1.25rem;display:flex}.legal-document__header{border-bottom:1px solid var(--surface-border);flex-direction:column;gap:.5rem;padding-bottom:1rem;display:flex}.legal-document__title{letter-spacing:-.02em;color:var(--text-primary);margin:0;font-size:1.0625rem;font-weight:700;line-height:1.35}.legal-document__meta{color:var(--text-brand);flex-wrap:wrap;gap:.5rem 1rem;font-size:.75rem;font-weight:600;display:flex}.legal-document__intro{border-radius:var(--radius-sm);background:#0ea5e90f;border:1px solid #0ea5e91f;flex-direction:column;gap:.875rem;padding:.875rem 1rem;display:flex}.legal-document__section{flex-direction:column;gap:.75rem;padding-top:.25rem;display:flex}.legal-document__section+.legal-document__section{border-top:1px solid #e2e8f0e6;padding-top:1rem}.legal-document__section--sub{border-left:3px solid #0ea5e92e;gap:.625rem;padding-left:.75rem}.legal-document__section-title{color:var(--text-primary);margin:0;font-size:.9375rem;font-weight:700;line-height:1.4}.legal-document__section--sub .legal-document__section-title{color:var(--text-brand);font-size:.875rem}.legal-document__paragraph{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.7}.legal-document__list{flex-direction:column;gap:.5rem;margin:0;padding-left:0;list-style:none;display:flex}.legal-document__list li{color:var(--text-secondary);padding-left:1.125rem;font-size:.875rem;line-height:1.65;position:relative}.legal-document__list li:before{content:"";background:var(--brand-600);border-radius:999px;width:.375rem;height:.375rem;position:absolute;top:.62em;left:0}.legal-document__definition{border-radius:var(--radius-sm);background:var(--surface);border:1px solid var(--surface-border);margin:0;padding:.75rem .875rem}.legal-document__definition dt{color:var(--text-primary);margin:0 0 .25rem;font-size:.8125rem;font-weight:700}.legal-document__definition dd{color:var(--text-secondary);margin:0;font-size:.8125rem;line-height:1.65}.legal-document__contact{border-radius:var(--radius-md);background:var(--surface-muted);border:1px solid var(--surface-border);gap:.625rem;margin:0;padding:.875rem 1rem;display:grid}.legal-document__contact-row{grid-template-columns:minmax(5.5rem,7rem) 1fr;align-items:start;gap:.5rem .75rem;display:grid}.legal-document__contact dt{text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.legal-document__contact dd{color:var(--text-primary);word-break:break-word;margin:0;font-size:.8125rem;line-height:1.55}@media (width<=640px){.legal-document__contact-row{grid-template-columns:1fr;gap:.2rem}}.legal-scroll-box{border:1px solid var(--surface-border);border-radius:var(--radius-md);scroll-behavior:smooth;background:#fff;max-height:min(520px,58vh);padding:1.25rem 1.375rem;overflow-y:auto;box-shadow:inset 0 1px #fffc}.legal-scroll-box:focus-visible{outline:2px solid var(--input-border-focus);outline-offset:2px}.legal-scroll-box__content{min-height:100%}.legal-scroll-box__content>.legal-document:last-child{padding-bottom:.25rem}.contract-wizard{flex-direction:column;gap:1.25rem;width:min(1080px,100%);margin:0 auto;display:flex}.contract-wizard__hero{border-radius:var(--radius-lg);background:var(--card-bg);border:1px solid var(--card-border);box-shadow:var(--card-shadow);grid-template-columns:auto 1fr auto;align-items:start;gap:1rem 1.25rem;padding:1.25rem 1.5rem;display:grid}.contract-wizard__logo{object-fit:contain;width:132px;height:auto}.contract-wizard__hero-text{flex-direction:column;gap:.35rem;display:flex}.contract-wizard__eyebrow{letter-spacing:.08em;text-transform:uppercase;color:var(--text-brand);margin:0;font-size:.75rem;font-weight:700}.contract-wizard__title{color:var(--text-primary);margin:0;font-size:clamp(1.25rem,2vw,1.6rem);line-height:1.25}.contract-wizard__intro,.contract-wizard__version{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.contract-wizard__version{color:var(--text-muted);font-size:.8125rem}.contract-wizard__logout{border:1px solid var(--surface-border);background:var(--surface);color:var(--text-secondary);cursor:pointer;border-radius:999px;padding:.45rem .9rem;font-size:.8125rem;font-weight:600}.contract-wizard__logout:hover{color:var(--status-error);background:var(--status-error-bg);border-color:#dc262659}.contract-wizard__card{border-radius:var(--radius-lg);border:1px solid var(--card-border);box-shadow:var(--shadow-md);background:#fffffff5;padding:1.5rem}.contract-wizard__footer{grid-template-columns:1fr 1fr;gap:.75rem;display:grid}.contract-wizard__footer-btn{width:100%}.contract-step{flex-direction:column;gap:1rem;display:flex}.contract-step__header{flex-direction:column;gap:.5rem;display:flex}.contract-step__badge{text-transform:uppercase;letter-spacing:.06em;color:var(--text-brand);background:#0ea5e91f;border-radius:999px;align-self:flex-start;padding:.2rem .55rem;font-size:.6875rem;font-weight:700}.contract-step__doc-label,.contract-step__meta{color:var(--text-muted);margin:0;font-size:.8125rem}.contract-step__title{color:var(--text-primary);margin:0;font-size:1.25rem}.contract-step__intro{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.contract-step__reading-progress{background:#0ea5e91f;border-radius:999px;height:4px;overflow:hidden}.contract-step__reading-progress-fill{background:var(--primary-gradient);height:100%;transition:width .12s linear}.contract-step__reading-hint{color:var(--status-warning);margin:0;font-size:.8125rem}.contract-step__checkbox{color:var(--text-secondary);align-items:flex-start;gap:.75rem;font-size:.8125rem;line-height:1.55;display:flex}.contract-step__checkbox input{flex-shrink:0;margin-top:.2rem}.contract-step__checkbox input:disabled{cursor:not-allowed}.contract-step__error{color:var(--status-error);margin:0;font-size:.8125rem}.contract-step__info{color:var(--status-success);margin:0;font-size:.8125rem}.contract-step__hint{color:var(--text-muted);margin:0;font-size:.8125rem}.contract-step__action-box,.contract-step__actions-inline,.contract-step__footer-actions{flex-wrap:wrap;align-items:center;gap:.75rem;display:flex}.contract-step__footer-actions{justify-content:space-between}.contract-audit-grid{grid-template-columns:repeat(2,minmax(0,1fr));gap:.75rem 1rem;margin:0;display:grid}.contract-audit-grid__row{border:1px solid var(--surface-border);border-radius:var(--radius-sm);background:var(--surface-muted);flex-direction:column;gap:.2rem;padding:.75rem .875rem;display:flex}.contract-audit-grid__row dt{text-transform:uppercase;letter-spacing:.05em;color:var(--text-muted);margin:0;font-size:.6875rem;font-weight:700}.contract-audit-grid__row dd{color:var(--text-primary);word-break:break-word;margin:0;font-size:.875rem}.contract-signature__canvas-wrap{border:1px dashed var(--surface-border);border-radius:var(--radius-md);background:#fff;overflow:hidden}.contract-signature__canvas{touch-action:none;cursor:crosshair;width:100%;height:220px;display:block}.contract-signature__preview{flex-direction:column;gap:.75rem;display:flex}.contract-signature__preview img{border:1px solid var(--surface-border);border-radius:var(--radius-md);background:#fff;width:100%;max-width:720px}.contract-overlay{z-index:100;-webkit-backdrop-filter:blur(4px);backdrop-filter:blur(4px);background:#0f172a73;place-items:center;display:grid;position:fixed;inset:0}.contract-overlay__panel{border-radius:var(--radius-lg);width:min(420px,100% - 2rem);box-shadow:var(--card-shadow);text-align:center;background:#fff;padding:1.5rem}.contract-overlay__spinner{border:3px solid #0ea5e933;border-top-color:var(--brand-600);border-radius:999px;width:2.5rem;height:2.5rem;margin:0 auto 1rem;animation:.8s linear infinite contract-spin}.contract-overlay__title{color:var(--text-primary);margin:0 0 .35rem;font-size:1.125rem}.contract-overlay__text{color:var(--text-secondary);margin:0;font-size:.875rem}.contract-completion{border-radius:var(--radius-lg);border:1px solid var(--card-border);width:min(640px,100%);box-shadow:var(--card-shadow);text-align:center;background:#fffffff5;margin:0 auto;padding:2rem 1.5rem}.contract-completion__icon{background:var(--status-success-bg);width:3.5rem;height:3.5rem;color:var(--status-success);border-radius:999px;place-items:center;margin:0 auto 1rem;font-size:1.75rem;font-weight:700;display:grid}.contract-completion__title{color:var(--text-primary);margin:0;font-size:1.5rem}.contract-completion__subtitle{color:var(--text-brand);margin:.35rem 0 .75rem;font-size:1rem}.contract-completion__text,.contract-completion__warning{color:var(--text-secondary);margin:0;font-size:.875rem;line-height:1.55}.contract-completion__warning{color:var(--status-warning);margin-top:.75rem}.contract-completion__actions{flex-direction:column;gap:.75rem;margin-top:1.25rem;display:flex}@keyframes contract-spin{to{transform:rotate(360deg)}}@media (width<=900px){.contract-wizard__hero{grid-template-columns:1fr}.contract-wizard__logout{justify-self:start}.contract-audit-grid{grid-template-columns:1fr}.contract-step__footer-actions{flex-direction:column;align-items:stretch}}@media (width<=640px){.contract-wizard__footer{grid-template-columns:1fr}}@media (prefers-reduced-motion:reduce){.contract-overlay__spinner{animation:none}}.contract-page{width:100%;min-height:100svh;position:relative;overflow:hidden}.contract-page .ocean-waves{z-index:3}.contract-page__main{z-index:10;isolation:isolate;min-height:100svh;padding:1.5rem 1.25rem 14vh;position:relative}@media (width<=768px){.contract-page__main{padding:1rem .875rem 12vh}}
