
:root{
  --blue:#0A1F7A;
  --green:#22B14C;
  --graphite:#1F2937;
  --grey:#D1D5DB;
  --light:#F2F4F7;
  --white:#FFFFFF;
  --muted:#667085;
  --danger:#D92D20;
  --danger-bg:#FEE4E2;
  --shadow:0 10px 30px rgba(10,31,122,.08);
  --radius:24px;
  --safe-top:max(18px, env(safe-area-inset-top));
  --safe-bottom:max(18px, env(safe-area-inset-bottom));
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:#FFFFFF;color:var(--graphite);font-family:Inter,ui-sans-serif,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif}
button,input{font:inherit}
button{cursor:pointer}
button:focus-visible,input:focus-visible,a:focus-visible{outline:3px solid rgba(34,177,76,.32);outline-offset:3px}
#app{min-height:100vh}
.shell{
  width:min(100%, 520px);
  min-height:100vh;
  margin:0 auto;
  background:var(--white);
  position:relative;
  overflow:hidden;
  box-shadow:0 0 40px rgba(31,41,55,.12);
}
@media(min-width:900px){
  body{padding:28px}
  .shell{min-height:calc(100vh - 56px);border-radius:34px}
}
.decor{position:absolute;border-radius:50%;pointer-events:none;z-index:0}
.decor.blue{width:230px;height:230px;right:-120px;top:-130px;background:#E6F2FF}
.decor.green{width:170px;height:170px;right:-110px;top:185px;background:#E9F8EC}
.topbar,.content{position:relative;z-index:1}
.topbar{
  padding:calc(var(--safe-top) + 4px) 20px 12px;
  display:flex;align-items:center;justify-content:center;
  border-bottom:1px solid #E4E8EF;
  min-height:88px;
  background:#FFFFFF;
}
.topbar.with-actions{justify-content:space-between}
.brand{display:flex;align-items:center;gap:10px;min-width:0}
.brand svg{width:54px;height:54px;flex:none;overflow:visible}
.brand-symbol{width:54px;height:57px;object-fit:contain;display:block;flex:none}
.brand-text{line-height:1}
.brand-name{font-weight:800;font-size:24px;color:var(--blue);letter-spacing:-.6px}
.brand-sub{font-weight:700;font-size:11px;color:var(--green);margin-top:4px}
.icon-btn{width:44px;height:44px;border:0;background:transparent;color:var(--blue);display:grid;place-items:center;border-radius:14px}
.icon-btn:hover{background:#F2F4F7}
.content{padding:20px 22px calc(24px + var(--safe-bottom))}
.content.compact{padding-top:18px}
h1{margin:0;color:var(--blue);font-size:32px;line-height:1.08;letter-spacing:-.9px}
h2{margin:0;color:var(--blue);font-size:25px;letter-spacing:-.5px}
h3{margin:0;color:var(--blue);font-size:18px}
.subtitle{margin:9px 0 0;color:#475467;font-size:16px;line-height:1.45}
.center{text-align:center}
.card{background:#fff;border:1px solid #EEF1F5;border-radius:var(--radius);box-shadow:var(--shadow)}
.form-card{padding:20px;margin-top:18px}
.field{margin-bottom:17px}
.field:last-child{margin-bottom:0}
label{display:block;color:var(--blue);font-weight:750;margin-bottom:9px;font-size:15px}
.input-wrap{position:relative}
.input-wrap svg{position:absolute;left:14px;top:50%;transform:translateY(-50%);color:var(--blue)}
input{
  width:100%;height:56px;border:1.5px solid #C9D2DF;border-radius:16px;
  padding:0 16px 0 48px;color:var(--graphite);background:#fff;font-size:16px
}
input::placeholder{color:#98A2B3}
input:focus{border-color:var(--blue);box-shadow:0 0 0 4px rgba(10,31,122,.07);outline:0}
.password input{padding-right:48px}
.eye{position:absolute;right:8px;top:50%;transform:translateY(-50%);border:0;background:transparent;width:42px;height:42px;color:var(--blue);border-radius:12px}
.checkbox-row{display:flex;gap:12px;align-items:flex-start;margin:22px 4px 0;color:#475467;font-size:14px;line-height:1.45}
.checkbox-row input{appearance:none;width:22px;height:22px;padding:0;border-radius:7px;flex:none;margin-top:0;display:grid;place-items:center}
.checkbox-row input:checked{background:var(--green);border-color:var(--green)}
.checkbox-row input:checked::after{content:"✓";color:white;font-weight:900;font-size:15px}
.linklike{color:var(--blue);text-decoration:underline;text-underline-offset:2px}
.actions{display:grid;gap:12px;margin-top:24px}
.btn{
  border:0;border-radius:17px;min-height:56px;padding:0 20px;
  display:flex;align-items:center;justify-content:center;gap:12px;
  font-weight:780;font-size:17px;transition:.15s transform,.15s opacity
}
.btn:active{transform:scale(.99)}
.btn-primary{background:var(--blue);color:white}
.btn-primary:disabled{opacity:.35;cursor:not-allowed}
.btn-secondary{background:#fff;color:var(--blue);border:1.5px solid #D7DFEA}
.btn-text{background:transparent;color:var(--blue)}
.notice{margin-top:22px;padding:16px;border-radius:18px;background:#F8FAFC;border:1px solid #EAECF0;color:#475467;font-size:14px;line-height:1.5}
.big-state{margin:34px auto 22px;width:146px;height:146px;border-radius:50%;display:grid;place-items:center}
.big-state.loading{background:#F4FAF5}
.big-state.success{background:#EAF8ED}
.big-state.error{background:var(--danger-bg)}
.spinner{width:108px;height:108px;border-radius:50%;border:12px solid #E4EAF1;border-right-color:var(--blue);border-top-color:var(--green);animation:spin 1s linear infinite;display:grid;place-items:center}
@keyframes spin{to{transform:rotate(360deg)}}
.state-icon{width:92px;height:92px}
.feature-list{display:grid;gap:10px;margin-top:22px}
.feature{display:flex;align-items:center;gap:13px;padding:15px 16px;border-radius:18px;border:1px solid #EEF1F5;background:white;box-shadow:0 6px 18px rgba(10,31,122,.05);text-align:left}
.feature .round{width:42px;height:42px;border-radius:50%;background:#EAF8ED;color:var(--green);display:grid;place-items:center;flex:none}
.support-card{margin-top:22px;display:grid;grid-template-columns:1.05fr .95fr;overflow:hidden;min-height:132px}
.support-copy{padding:19px}
.support-art{background:linear-gradient(160deg,#F0F7FF,#E9F8EC);display:grid;place-items:center;position:relative;overflow:hidden}
.support-people{width:100%;height:100%;min-height:132px}
.small{font-size:14px;color:#667085;line-height:1.45}
.helper{font-size:13px;color:#667085;margin-top:7px}
.error-text{color:var(--danger);font-size:13px;margin-top:7px}
.dashboard .content{padding-top:24px}
.greeting{margin-bottom:24px}
.contract-card{padding:19px}
.contract-head{display:flex;justify-content:space-between;align-items:center;margin-bottom:18px}
.active-count{color:var(--green);font-weight:800}
.contract-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:8px}
.contract{display:flex;flex-direction:column;align-items:center;text-align:center;padding:5px 2px;min-width:0}
.contract+.contract{border-left:1px solid #E5EAF0}
.product-icon{width:58px;height:58px;border-radius:50%;background:#F1F6FD;display:grid;place-items:center;margin-bottom:8px}
.product-icon.green{background:#EAF8ED;color:var(--green)}
.contract strong{font-size:12.5px;line-height:1.2;color:var(--blue)}
.pill{margin-top:8px;padding:5px 12px;border-radius:999px;background:#EAF8ED;color:var(--green);font-size:12px;font-weight:750}
.quick-actions{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin-top:16px}
.quick{
  min-height:100px;border:0;border-radius:22px;background:var(--blue);color:#fff;
  padding:17px;display:flex;gap:12px;align-items:center;text-align:left;font-size:16px;font-weight:800;box-shadow:var(--shadow)
}
.quick .qicon{width:48px;height:48px;border-radius:50%;background:rgba(255,255,255,.12);display:grid;place-items:center;flex:none}
.mail-card,.activity-card{margin-top:16px;padding:19px}
.mail-row{display:flex;align-items:center;gap:15px;margin-top:12px}
.mail-icon{width:62px;height:62px;border-radius:50%;background:#F1F6FD;color:var(--blue);display:grid;place-items:center;flex:none}
.mail-main{flex:1}
.unread{font-size:28px;color:var(--blue);font-weight:850;line-height:1}
.mail-link{margin-top:7px;color:var(--green);font-weight:750;font-size:14px}
.activity-head{display:flex;align-items:center;justify-content:space-between;margin-bottom:5px}
.activity-head button{border:0;background:transparent;color:var(--green);font-weight:750}
.activity{display:grid;grid-template-columns:40px 1fr auto;gap:10px;align-items:center;padding:13px 0;border-bottom:1px solid #EAECF0}
.activity:last-child{border-bottom:0;padding-bottom:0}
.activity-icon{width:38px;height:38px;border-radius:50%;background:#F1F6FD;color:var(--blue);display:grid;place-items:center}
.activity-title{font-weight:750;color:var(--blue);font-size:14px}
.activity-sub,.activity-time{font-size:12px;color:#667085;margin-top:3px}
.dashboard-support{margin-top:16px}
.dashboard-support .support-copy{display:flex;flex-direction:column;justify-content:center}
.dashboard-support .btn{min-height:42px;font-size:14px;border-radius:13px;margin-top:10px;padding:0 13px}
.drawer-backdrop{position:fixed;inset:0;background:rgba(15,23,42,.32);z-index:20}
.drawer{position:absolute;left:0;top:0;bottom:0;width:min(84%,340px);background:#fff;z-index:21;padding:calc(var(--safe-top) + 18px) 20px 24px;box-shadow:16px 0 40px rgba(15,23,42,.18)}
.drawer .brand{margin-bottom:24px}
.navitem{width:100%;border:0;background:transparent;color:#344054;padding:13px 12px;border-radius:14px;text-align:left;font-weight:700;display:flex;gap:11px;align-items:center}
.navitem:hover{background:#F2F4F7;color:var(--blue)}
.modal{position:fixed;inset:0;z-index:30;display:grid;place-items:end center;background:rgba(15,23,42,.35)}
.modal-card{width:min(100%,520px);background:white;border-radius:28px 28px 0 0;padding:24px 24px calc(24px + var(--safe-bottom));box-shadow:0 -20px 60px rgba(15,23,42,.16)}
.choice{display:grid;gap:10px;margin-top:18px}
.choice button{border:1px solid #E1E6EE;background:white;border-radius:16px;padding:15px;text-align:left;color:var(--blue);font-weight:750}
.demo-badge{position:fixed;right:12px;bottom:12px;background:#111827;color:#fff;border-radius:999px;padding:7px 10px;font-size:11px;opacity:.78;z-index:100}
@media(max-width:390px){
  .content{padding-left:18px;padding-right:18px}
  h1{font-size:34px}
  .brand-name{font-size:24px}
  .contract strong{font-size:11.5px}
  .quick{font-size:14px}
}

/* v0.7 – Mobile registration polish */
.input-wrap{
  width:100%;
  min-width:0;
}
.input-wrap input{
  display:block;
  width:100%;
  max-width:100%;
  min-width:0;
  box-sizing:border-box;
}
.input-wrap.date-native input{
  padding:0 14px;
  min-height:56px;
  -webkit-appearance:auto;
  appearance:auto;
}
.input-wrap.date-native svg{display:none}

/* Datenschutzzeile bewusst wie ein normaler Formularhinweis */
.checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:11px;
  margin:18px 0 0;
  color:#344054;
  font-size:14px;
  line-height:1.45;
  text-align:left;
  font-weight:500;
}
.checkbox-row input{
  appearance:none;
  -webkit-appearance:none;
  width:22px;
  height:22px;
  min-width:22px;
  flex:0 0 22px;
  margin:1px 0 0;
  padding:0;
  border:1.5px solid #B8C2D1;
  border-radius:6px;
  background:#fff;
}
.checkbox-row input:checked{
  background:var(--green);
  border-color:var(--green);
}
.checkbox-row input:checked::after{
  content:"✓";
  display:grid;
  place-items:center;
  width:100%;
  height:100%;
  color:#fff;
  font-size:14px;
  font-weight:900;
}
.checkbox-row .legal-link{
  display:inline;
  border:0;
  padding:0;
  margin:0;
  background:none;
  color:var(--blue);
  font:inherit;
  font-weight:700;
  line-height:inherit;
  text-decoration:underline;
  text-underline-offset:2px;
  vertical-align:baseline;
  cursor:pointer;
}

/* Auf kleinen Smartphones noch etwas ruhiger */
@media(max-width:430px){
  .topbar{min-height:82px;padding-left:18px;padding-right:18px}
  .brand-symbol{width:48px;height:51px}
  .brand-name{font-size:22px}
  .brand-sub{font-size:10.5px}
  .content{padding:18px 18px calc(22px + var(--safe-bottom))}
  h1{font-size:30px}
  .subtitle{font-size:15.5px}
  .form-card{padding:18px;margin-top:16px;border-radius:22px}
  label{font-size:14px}
  input{height:54px;font-size:16px}
  .input-wrap.date-native input{min-height:54px}
}

/* v0.8 – kompletter Registrierungsflow als One-Screen-Onboarding */
.shell:not(.dashboard){
  height:100dvh;
  min-height:100dvh;
  max-height:100dvh;
  overflow:hidden;
  display:flex;
  flex-direction:column;
}

.shell:not(.dashboard) .topbar{
  flex:0 0 auto;
  min-height:92px;
  padding:calc(var(--safe-top) + 4px) 18px 10px;
}

.shell:not(.dashboard) .content{
  flex:1 1 auto;
  min-height:0;
  overflow:hidden;
  padding:14px 18px calc(14px + var(--safe-bottom));
  display:flex;
  flex-direction:column;
}

/* Logo im Registrierungsprozess bewusst etwas größer */
.shell:not(.dashboard) .brand-symbol{
  width:58px;
  height:61px;
}
.shell:not(.dashboard) .brand-name{
  font-size:25px;
}
.shell:not(.dashboard) .brand-sub{
  font-size:11.5px;
}

/* Registrierungsseite kompakter */
.shell:not(.dashboard) h1{
  font-size:29px;
  line-height:1.04;
}
.shell:not(.dashboard) .subtitle{
  font-size:15px;
  line-height:1.35;
  margin-top:7px;
}
.shell:not(.dashboard) .form-card{
  margin-top:14px;
  padding:16px 16px 14px;
  border-radius:20px;
}
.shell:not(.dashboard) .field{
  margin-bottom:13px;
}
.shell:not(.dashboard) label{
  font-size:13.5px;
  margin-bottom:6px;
}
.shell:not(.dashboard) input{
  height:50px;
  font-size:16px;
  border-radius:15px;
}
.shell:not(.dashboard) .actions{
  margin-top:14px;
  gap:9px;
}
.shell:not(.dashboard) .btn{
  min-height:50px;
  font-size:16px;
}

/* Geburtstagsfeld – gleiche Breite wie alle anderen Felder */
.birth-input{
  padding-left:16px !important;
  padding-right:16px !important;
  width:100%;
  max-width:100%;
  letter-spacing:.02em;
}

/* Datenschutz exakt zweizeilig und ruhig */
.checkbox-row{
  display:grid;
  grid-template-columns:22px minmax(0,1fr);
  column-gap:10px;
  align-items:start;
  margin:14px 0 0;
  font-size:13.5px;
  line-height:1.35;
}
.checkbox-row .privacy-copy{
  display:block;
  white-space:normal;
}
.checkbox-row .privacy-line{
  display:block;
}
.checkbox-row .legal-link{
  display:inline;
  font-size:inherit;
}

/* Unterer Altershinweis kleiner, damit nichts scrollt */
.shell:not(.dashboard) .notice{
  margin-top:12px;
  padding:12px 14px;
  border-radius:16px;
  font-size:12.5px;
  line-height:1.35;
}

/* Status-/Passwort-/Erfolgs-/Fehler-Screens ebenfalls ohne Scrollen */
.shell:not(.dashboard) .big-state{
  margin-top:18px;
  margin-bottom:14px;
  width:116px;
  height:116px;
}
.shell:not(.dashboard) .spinner{
  width:90px;
  height:90px;
  border-width:10px;
}
.shell:not(.dashboard) .feature-list{
  gap:7px;
  margin-top:14px;
}
.shell:not(.dashboard) .feature{
  padding:10px 12px;
  border-radius:15px;
  font-size:13px;
}
.shell:not(.dashboard) .feature .round{
  width:36px;
  height:36px;
}
.shell:not(.dashboard) .support-card{
  margin-top:14px;
  min-height:104px;
}
.shell:not(.dashboard) .support-copy{
  padding:14px;
}
.shell:not(.dashboard) .support-people{
  min-height:104px;
}

/* Kleine Displays */
@media(max-height:760px){
  .shell:not(.dashboard) .topbar{min-height:82px}
  .shell:not(.dashboard) .brand-symbol{width:52px;height:55px}
  .shell:not(.dashboard) .brand-name{font-size:23px}
  .shell:not(.dashboard) .brand-sub{font-size:10.5px}
  .shell:not(.dashboard) .content{padding-top:10px;padding-bottom:10px}
  .shell:not(.dashboard) h1{font-size:27px}
  .shell:not(.dashboard) .subtitle{font-size:14px}
  .shell:not(.dashboard) .form-card{margin-top:10px;padding:13px 14px 12px}
  .shell:not(.dashboard) .field{margin-bottom:10px}
  .shell:not(.dashboard) input{height:46px}
  .shell:not(.dashboard) .checkbox-row{margin-top:10px;font-size:12.5px}
  .shell:not(.dashboard) .actions{margin-top:10px}
  .shell:not(.dashboard) .btn{min-height:46px}
  .shell:not(.dashboard) .notice{margin-top:9px;padding:9px 11px;font-size:11.5px}
  .shell:not(.dashboard) .big-state{width:98px;height:98px;margin:10px auto}
  .shell:not(.dashboard) .spinner{width:78px;height:78px}
  .shell:not(.dashboard) .feature{padding:8px 10px}
}


/* v0.81 – Feinschliff Registrierung */
.shell:not(.dashboard){
  background:#FFFFFF;
  position:relative;
}

/* Hintergrund wieder klarer als weiße Fläche mit dezenten Farbkugeln */
.shell:not(.dashboard) .decor{
  opacity:1;
  filter:none;
}
.shell:not(.dashboard) .decor.blue{
  width:235px;
  height:235px;
  right:-96px;
  top:84px;
  background:radial-gradient(circle at center, rgba(203,220,244,.95) 0%, rgba(203,220,244,.95) 62%, rgba(203,220,244,0) 63%);
}
.shell:not(.dashboard) .decor.green{
  width:205px;
  height:205px;
  right:-88px;
  top:310px;
  background:radial-gradient(circle at center, rgba(219,241,224,.96) 0%, rgba(219,241,224,.96) 62%, rgba(219,241,224,0) 63%);
}

/* Inputfelder – Symbole links sauber einheitlich */
.shell:not(.dashboard) .input-wrap{
  position:relative;
}
.shell:not(.dashboard) .input-wrap svg{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:var(--blue);
}
.shell:not(.dashboard) .input-wrap input{
  padding-left:48px;
}
.shell:not(.dashboard) .birth-input{
  padding-left:48px !important;
}

/* Checkbox sauber und kompakt */
.shell:not(.dashboard) .checkbox-row{
  display:flex;
  align-items:flex-start;
  gap:10px;
  margin:14px 0 0;
}
.shell:not(.dashboard) .checkbox-row input{
  appearance:none;
  -webkit-appearance:none;
  width:20px;
  height:20px;
  min-width:20px;
  max-width:20px;
  min-height:20px;
  max-height:20px;
  flex:0 0 20px;
  border:1.5px solid #B8C2D1;
  border-radius:6px;
  background:#fff;
  display:inline-grid;
  place-items:center;
  margin:1px 0 0;
  padding:0;
}
.shell:not(.dashboard) .checkbox-row input:checked{
  background:var(--green);
  border-color:var(--green);
}
.shell:not(.dashboard) .checkbox-row input:checked::after{
  content:"✓";
  color:#fff;
  font-size:13px;
  line-height:1;
  font-weight:900;
}
.shell:not(.dashboard) .privacy-copy{
  display:block;
  font-size:13.5px;
  line-height:1.34;
  color:#344054;
}
.shell:not(.dashboard) .privacy-line{
  display:block;
}
.shell:not(.dashboard) .legal-link{
  border:0;
  padding:0;
  background:none;
  color:var(--blue);
  text-decoration:underline;
  text-underline-offset:2px;
  font-weight:700;
  font-size:inherit;
  line-height:inherit;
}

/* Kleine Displays */
@media(max-height:760px){
  .shell:not(.dashboard) .decor.blue{
    width:210px;height:210px;right:-90px;top:86px;
  }
  .shell:not(.dashboard) .decor.green{
    width:185px;height:185px;right:-82px;top:296px;
  }
  .shell:not(.dashboard) .privacy-copy{
    font-size:12.8px;
  }
}


/* v0.82 – Datenprüfung / Erfolg / Fehler */
.status-loader{
  position:relative;
  width:176px;
  height:176px;
  margin:16px auto 12px;
}
.status-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 0deg, #DCE8F8 0%, #A8C4EE 18%, #0A1F7A 38%, #22B14C 66%, #DDF7E4 100%);
  animation:spin 1.45s linear infinite;
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
  mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
}
.status-core{
  position:absolute;
  inset:26px;
  border-radius:50%;
  background:#FFFFFF;
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(10,31,122,.10);
}
.status-badge{
  width:176px;
  height:176px;
  margin:16px auto 12px;
  border-radius:50%;
  display:grid;
  place-items:center;
}
.status-badge.success{
  background:radial-gradient(circle at 35% 30%, #F2FBF4 0%, #E3F8E8 58%, #D7F3DE 100%);
}
.status-badge.error{
  background:radial-gradient(circle at 35% 30%, #FFF2F1 0%, #FEE4E2 60%, #FCD7D4 100%);
}
.status-shield-svg{
  width:88px;
  height:88px;
  display:block;
}

.support-card{
  align-items:stretch;
}
.support-art{
  background:linear-gradient(180deg,#EEF4FF 0%, #EAF8ED 100%);
  padding:0;
}
.support-people-photo{
  width:100%;
  height:100%;
  min-height:132px;
  object-fit:cover;
  display:block;
}

.shell:not(.dashboard) .status-loader,
.shell:not(.dashboard) .status-badge{
  width:154px;
  height:154px;
  margin:10px auto 8px;
}
.shell:not(.dashboard) .status-core{
  inset:24px;
}
.shell:not(.dashboard) .status-shield-svg{
  width:76px;
  height:76px;
}
.shell:not(.dashboard) .support-card{
  min-height:118px;
  margin-top:12px;
}
.shell:not(.dashboard) .support-people-photo{
  min-height:118px;
}

@media(max-height:760px){
  .shell:not(.dashboard) .status-loader,
  .shell:not(.dashboard) .status-badge{
    width:140px;
    height:140px;
    margin:8px auto 6px;
  }
  .shell:not(.dashboard) .status-core{
    inset:22px;
  }
  .shell:not(.dashboard) .status-shield-svg{
    width:70px;
    height:70px;
  }
}


/* v0.83 – persönliche Assistentin + finale Statusgrafiken */
.status-loader{
  position:relative;
  width:176px;
  height:176px;
  margin:16px auto 12px;
}
.status-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 0deg, #DCE8F8 0%, #A8C4EE 18%, #0A1F7A 38%, #22B14C 66%, #DDF7E4 100%);
  animation:spin 1.45s linear infinite;
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
  mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
}
.status-core{
  position:absolute;
  inset:26px;
  border-radius:50%;
  background:#FFFFFF;
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(10,31,122,.10);
}
.status-badge{
  width:176px;
  height:176px;
  margin:16px auto 12px;
  border-radius:50%;
  display:grid;
  place-items:center;
}
.status-badge.success{
  background:radial-gradient(circle at 35% 30%, #F2FBF4 0%, #E3F8E8 58%, #D7F3DE 100%);
}
.status-badge.error{
  background:radial-gradient(circle at 35% 30%, #FFF2F1 0%, #FEE4E2 60%, #FCD7D4 100%);
}
.status-shield-svg{
  width:88px;
  height:88px;
  display:block;
}
.support-art{
  background:linear-gradient(180deg,#EEF4FF 0%, #EAF8ED 100%);
  padding:0;
}
.support-people-photo{
  width:100%;
  height:100%;
  min-height:132px;
  object-fit:cover;
  display:block;
}
.shell:not(.dashboard) .status-loader,
.shell:not(.dashboard) .status-badge{
  width:154px;
  height:154px;
  margin:10px auto 8px;
}
.shell:not(.dashboard) .status-core{
  inset:24px;
}
.shell:not(.dashboard) .status-shield-svg{
  width:76px;
  height:76px;
}
.shell:not(.dashboard) .support-card{
  min-height:118px;
  margin-top:12px;
}
.shell:not(.dashboard) .support-people-photo{
  min-height:118px;
}
@media(max-height:760px){
  .shell:not(.dashboard) .status-loader,
  .shell:not(.dashboard) .status-badge{
    width:140px;
    height:140px;
    margin:8px auto 6px;
  }
  .shell:not(.dashboard) .status-core{
    inset:22px;
  }
  .shell:not(.dashboard) .status-shield-svg{
    width:70px;
    height:70px;
  }
}


/* v0.84 – Statussymbole und Supportbild final */
.status-loader{
  position:relative;
  width:176px;
  height:176px;
  margin:16px auto 12px;
}
.status-ring{
  position:absolute;
  inset:0;
  border-radius:50%;
  background:conic-gradient(from 0deg, #DCE8F8 0%, #9EC0F2 18%, #0A1F7A 38%, #22B14C 66%, #DDF7E4 100%);
  animation:spin 1.45s linear infinite;
  -webkit-mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
  mask:radial-gradient(farthest-side, transparent calc(100% - 15px), #000 calc(100% - 14px));
}
.status-core{
  position:absolute;
  inset:26px;
  border-radius:50%;
  background:#FFFFFF;
  display:grid;
  place-items:center;
  box-shadow:0 10px 24px rgba(10,31,122,.10);
}
.status-badge{
  width:176px;
  height:176px;
  margin:16px auto 12px;
  border-radius:50%;
  display:grid;
  place-items:center;
}
.status-badge.success{
  background:radial-gradient(circle at 35% 30%, #F2FBF4 0%, #E3F8E8 58%, #D7F3DE 100%);
}
.status-badge.error{
  background:radial-gradient(circle at 35% 30%, #FFF2F1 0%, #FEE4E2 60%, #FCD7D4 100%);
}
.status-shield-svg,
.status-lock-svg{
  width:88px;
  height:88px;
  display:block;
}
.lock-badge{
  margin-top:10px;
  margin-bottom:8px;
}

.support-card{
  align-items:stretch;
}
.support-art{
  background:#FFFFFF;
  padding:8px 10px 8px 0;
  overflow:hidden;
}
.support-people-photo{
  width:100%;
  height:100%;
  min-height:132px;
  object-fit:cover;
  object-position:center;
  display:block;
  border-radius:12px;
  background:#FFFFFF;
}

.shell:not(.dashboard) .status-loader,
.shell:not(.dashboard) .status-badge{
  width:154px;
  height:154px;
  margin:10px auto 8px;
}
.shell:not(.dashboard) .status-core{
  inset:24px;
}
.shell:not(.dashboard) .status-shield-svg,
.shell:not(.dashboard) .status-lock-svg{
  width:76px;
  height:76px;
}
.shell:not(.dashboard) .support-card{
  min-height:118px;
  margin-top:12px;
}
.shell:not(.dashboard) .support-people-photo{
  min-height:118px;
}

@media(max-height:760px){
  .shell:not(.dashboard) .status-loader,
  .shell:not(.dashboard) .status-badge{
    width:140px;
    height:140px;
    margin:8px auto 6px;
  }
  .shell:not(.dashboard) .status-core{
    inset:22px;
  }
  .shell:not(.dashboard) .status-shield-svg,
  .shell:not(.dashboard) .status-lock-svg{
    width:70px;
    height:70px;
  }
}
