/* ==========================================================================
   refraMe – Design System
   Mobile first. Nachtblau + Pink aus dem Logo, ruhige Flächen,
   Farbe nur dort, wo sie etwas bedeutet (Personas).
   ========================================================================== */

/* --- Font: selbst gehostet, kein Google-Aufruf ---------------------------- */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-400.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-500.woff2') format('woff2');
    font-weight: 500; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-600.woff2') format('woff2');
    font-weight: 600; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Poppins';
    src: url('fonts/poppins-700.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}

/* --- Tokens --------------------------------------------------------------- */
:root {
    --font: 'Poppins', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;

    --ink:        #1E2431;
    --ink-soft:   #5C6675;
    --ink-faint:  #8B94A3;
    --bg:         #F6F7F9;
    --surface:    #FFFFFF;
    --surface-2:  #F0F2F6;
    --line:       #E4E7EE;
    --accent:     #FF2D9F;
    --accent-ink: #FFFFFF;
    --accent-soft:#FFEBF6;

    --shadow-s: 0 1px 2px rgba(20, 26, 38, .06), 0 2px 8px rgba(20, 26, 38, .04);
    --shadow-m: 0 2px 6px rgba(20, 26, 38, .07), 0 12px 28px rgba(20, 26, 38, .08);
    --shadow-l: 0 8px 20px rgba(20, 26, 38, .10), 0 24px 48px rgba(20, 26, 38, .12);

    --r-s: 10px;
    --r-m: 14px;
    --r-l: 20px;
    --r-full: 999px;

    --pad: 20px;
    --maxw: 660px;

    --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
    :root {
        --ink:        #EDEFF4;
        --ink-soft:   #A3ACBB;
        --ink-faint:  #7C8697;
        --bg:         #12161D;
        --surface:    #1B212B;
        --surface-2:  #232B37;
        --line:       #2C3542;
        --accent:     #FF48AC;
        --accent-soft:#33172A;

        --shadow-s: 0 1px 2px rgba(0, 0, 0, .4);
        --shadow-m: 0 2px 6px rgba(0, 0, 0, .4), 0 12px 28px rgba(0, 0, 0, .3);
        --shadow-l: 0 8px 20px rgba(0, 0, 0, .45), 0 24px 48px rgba(0, 0, 0, .35);
    }
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
    margin: 0;
    font-family: var(--font);
    font-size: 16px;
    line-height: 1.55;
    color: var(--ink);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overscroll-behavior-y: contain;
}

button, input, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; border: 0; background: none; }
a { color: var(--accent); }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
    border-radius: 4px;
}

/* --- Layout --------------------------------------------------------------- */
.wrap {
    width: 100%;
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.app {
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    padding-top: env(safe-area-inset-top);
}

main { flex: 1; padding-bottom: 40px; }

/* --- Topbar --------------------------------------------------------------- */
.topbar {
    position: sticky;
    top: 0;
    z-index: 20;
    background: color-mix(in srgb, var(--bg) 88%, transparent);
    backdrop-filter: saturate(1.6) blur(12px);
    border-bottom: 1px solid transparent;
    transition: border-color .2s var(--ease);
}
.topbar.is-scrolled { border-bottom-color: var(--line); }

.topbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    min-height: 58px;
}

/* Wortmarke: refra in Nachtblau, ME in Pink */
.logo {
    font-weight: 600;
    font-size: 21px;
    letter-spacing: -.02em;
    color: var(--ink);
    line-height: 1;
    user-select: none;
}
.logo b { font-weight: 700; color: var(--accent); letter-spacing: 0; }
.logo__claim {
    display: block;
    font-size: 10.5px;
    font-weight: 400;
    letter-spacing: .18em;
    text-transform: lowercase;
    color: var(--ink-faint);
    margin-top: 3px;
}

.iconbtn {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: var(--r-full);
    color: var(--ink-soft);
    transition: background .16s var(--ease), color .16s var(--ease);
}
.iconbtn:hover { background: var(--surface-2); color: var(--ink); }
.iconbtn svg { width: 21px; height: 21px; }

/* --- Screens -------------------------------------------------------------- */
.screen { animation: rise .32s var(--ease) both; }
@keyframes rise {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
    .screen { animation: none; }
    * { transition-duration: .01ms !important; }
}

.screen__head { margin: 26px 0 20px; }
.screen__step {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 8px;
}
h1 {
    margin: 0;
    overflow-wrap: break-word;
    hyphens: auto;
    font-size: clamp(25px, 6.4vw, 31px);
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -.022em;
}
.lead {
    margin: 10px 0 0;
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.6;
}

/* --- Eingabefeld ---------------------------------------------------------- */
.field {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    box-shadow: var(--shadow-s);
    transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
}
.field:focus-within {
    border-color: var(--accent);
    box-shadow: var(--shadow-m), 0 0 0 3px var(--accent-soft);
}

.field textarea {
    display: block;
    width: 100%;
    min-height: 168px;
    padding: 18px;
    border: 0;
    background: none;
    resize: none;
    line-height: 1.6;
    border-radius: var(--r-l);
}
.field textarea:focus { outline: none; }
.field textarea::placeholder { color: var(--ink-faint); }

.field__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 12px 12px 18px;
}
.counter { font-size: 12.5px; color: var(--ink-faint); font-variant-numeric: tabular-nums; flex: none; }

@media (max-width: 400px) {
    .diktat { font-size: 12px; }
}

/* Hinweis auf die Diktierfunktion der Tastatur – die erkennt besser als
   die Web Speech API und verlaesst das Geraet nicht. */
.diktat {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    line-height: 1.35;
    color: var(--ink-faint);
}
.diktat svg { width: 15px; height: 15px; flex: none; }

@keyframes pulse { 50% { opacity: .72; } }

.hint {
    display: flex;
    gap: 9px;
    margin: 14px 2px 0;
    font-size: 12.5px;
    line-height: 1.5;
    color: var(--ink-faint);
}
.hint svg { width: 15px; height: 15px; flex: none; margin-top: 2px; }

/* --- Chips (Kategorien) --------------------------------------------------- */
.label {
    display: block;
    margin: 30px 0 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--ink-faint);
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
    height: 40px;
    padding: 0 15px;
    border-radius: var(--r-full);
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 500;
    transition: all .16s var(--ease);
}
.chip:hover { border-color: var(--ink-faint); color: var(--ink); }
.chip[aria-pressed="true"] {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--bg);
}

/* --- Buttons -------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 52px;
    padding: 0 24px;
    border-radius: var(--r-m);
    font-size: 15.5px;
    font-weight: 600;
    letter-spacing: -.01em;
    transition: transform .12s var(--ease), box-shadow .18s var(--ease), background .18s var(--ease);
}
.btn:active { transform: scale(.985); }
.btn svg { width: 18px; height: 18px; }

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 2px 6px rgba(255, 45, 159, .28), 0 10px 24px rgba(255, 45, 159, .22);
}
.btn--primary:hover { box-shadow: 0 3px 10px rgba(255, 45, 159, .34), 0 14px 32px rgba(255, 45, 159, .26); }
.btn--primary:disabled {
    background: var(--surface-2);
    color: var(--ink-faint);
    box-shadow: none;
    cursor: not-allowed;
}

.btn--ghost {
    background: var(--surface);
    border: 1px solid var(--line);
    color: var(--ink);
    box-shadow: var(--shadow-s);
}
.btn--ghost:hover { border-color: var(--ink-faint); }

.btn--quiet { color: var(--ink-soft); min-height: 44px; padding: 0 6px; font-weight: 500; }
.btn--quiet:hover { color: var(--ink); }

.btn--block { width: 100%; }

.actions { display: flex; flex-direction: column; gap: 10px; margin-top: 26px; }
.actions--row { flex-direction: row; align-items: center; justify-content: space-between; }

/* --- Sticky Footer-Leiste ------------------------------------------------- */
.bar {
    position: sticky;
    bottom: 0;
    z-index: 15;
    margin-top: 28px;
    padding: 12px 0 calc(12px + env(safe-area-inset-bottom));
    background: color-mix(in srgb, var(--bg) 92%, transparent);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
}
.bar__inner { display: flex; align-items: center; gap: 12px; }
.bar__info { flex: 1; font-size: 13.5px; color: var(--ink-soft); }
.bar__info b { color: var(--ink); font-weight: 600; }
.bar .btn { flex: none; }

/* --- Persona-Karten ------------------------------------------------------- */
.cards { display: grid; gap: 11px; }
@media (min-width: 620px) { .cards { grid-template-columns: 1fr 1fr; } }

.pcard {
    position: relative;
    display: flex;
    gap: 13px;
    padding: 16px;
    text-align: left;
    background: var(--surface);
    border: 1.5px solid var(--line);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-s);
    transition: border-color .16s var(--ease), box-shadow .16s var(--ease), transform .12s var(--ease);
}
.pcard:hover { box-shadow: var(--shadow-m); }
.pcard:active { transform: scale(.99); }
.pcard[aria-pressed="true"] {
    border-color: var(--p);
    box-shadow: var(--shadow-m), 0 0 0 3px color-mix(in srgb, var(--p) 16%, transparent);
}

.pcard__icon {
    flex: none;
    width: 40px; height: 40px;
    display: grid; place-items: center;
    border-radius: 11px;
    background: color-mix(in srgb, var(--p) 13%, var(--surface));
    color: var(--p);
}
.pcard__icon svg { width: 21px; height: 21px; }

.pcard__body { min-width: 0; }
.pcard__name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.3;
}
.pcard__tag {
    display: block;
    margin-top: 3px;
    font-size: 13.5px;
    line-height: 1.45;
    color: var(--ink-soft);
}

.pcard__check {
    position: absolute;
    top: 13px; right: 13px;
    width: 21px; height: 21px;
    display: grid; place-items: center;
    border-radius: var(--r-full);
    background: var(--p);
    color: #fff;
    opacity: 0;
    transform: scale(.5);
    transition: all .18s var(--ease);
}
.pcard__check svg { width: 12px; height: 12px; }
.pcard[aria-pressed="true"] .pcard__check { opacity: 1; transform: none; }
.pcard[aria-pressed="true"] .pcard__tag { padding-right: 16px; }

/* Vorschlags-Buttons ueber den Karten */
.presets { display: grid; gap: 9px; margin-bottom: 20px; }
@media (min-width: 620px) { .presets { grid-template-columns: repeat(3, 1fr); } }

.preset {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 14px 15px;
    text-align: left;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-s);
    transition: all .16s var(--ease);
}
.preset:hover { border-color: var(--accent); box-shadow: var(--shadow-m); }
.preset svg { width: 19px; height: 19px; color: var(--accent); flex: none; }
.preset span { min-width: 0; }
.preset__t { display: block; font-size: 14.5px; font-weight: 600; line-height: 1.25; }
.preset__s { display: block; font-size: 12.5px; color: var(--ink-soft); line-height: 1.35; margin-top: 1px; }

/* --- Login ---------------------------------------------------------------- */
.login {
    min-height: 100dvh;
    display: grid;
    place-items: center;
    padding: var(--pad);
}
.login__box {
    width: 100%;
    max-width: 380px;
    text-align: center;
}
.login .logo { font-size: 34px; }
.login .logo__claim { font-size: 12px; margin-top: 7px; }
.login form { margin-top: 34px; display: grid; gap: 10px; }
.login input {
    height: 52px;
    padding: 0 16px;
    text-align: center;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-s);
}
.login input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: var(--shadow-s), 0 0 0 3px var(--accent-soft);
}
.error {
    margin-top: 16px;
    padding: 11px 14px;
    border-radius: var(--r-s);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 13.5px;
    font-weight: 500;
}

/* --- Hilfsklassen --------------------------------------------------------- */
[hidden] { display: none !important; }
.sr {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}


/* ==========================================================================
   Schritt 3 – Perspektiven-Karten
   ========================================================================== */

.antworten { display: grid; gap: 16px; margin-top: 4px; }

.acard {
    position: relative;
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-l);
    box-shadow: var(--shadow-s);
    overflow: hidden;
    animation: rise .4s var(--ease) both;
}
/* Farbkante links: die Perspektive ist auf einen Blick zuzuordnen */
.acard::before {
    content: '';
    position: absolute;
    inset: 0 auto 0 0;
    width: 4px;
    background: var(--p);
}

.acard__kopf {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 16px 18px 14px 20px;
    border-bottom: 1px solid var(--line);
}
.acard__icon {
    flex: none;
    width: 34px; height: 34px;
    display: grid; place-items: center;
    border-radius: 10px;
    background: color-mix(in srgb, var(--p) 13%, var(--surface));
    color: var(--p);
}
.acard__icon svg { width: 19px; height: 19px; }
.acard__kopf > span:last-child { min-width: 0; }
.acard__name {
    display: block;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.25;
}
.acard__modell {
    display: block;
    font-size: 12.5px;
    line-height: 1.4;
    color: var(--ink-soft);
    margin-top: 2px;
}

.acard__leib { padding: 4px 18px 18px 20px; }

.block { padding: 14px 0; border-bottom: 1px solid var(--line); }
.block:last-child { border-bottom: 0; padding-bottom: 2px; }
.block__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 6px;
}
.block p { margin: 0; font-size: 15px; line-height: 1.62; }

/* Die eigentliche Perspektive bekommt mehr Gewicht als der Rest */
.block--kern p { font-size: 16px; line-height: 1.6; }
.block--kern .block__label { color: var(--p); }

.block--blind {
    background: color-mix(in srgb, var(--p) 6%, transparent);
    margin: 0 -18px 0 -20px;
    padding: 14px 18px 14px 20px;
}

.fragen { margin: 0; padding: 0; list-style: none; display: grid; gap: 9px; }
.fragen li {
    position: relative;
    padding-left: 20px;
    font-size: 15px;
    line-height: 1.55;
}
.fragen li::before {
    content: '';
    position: absolute;
    left: 2px; top: 9px;
    width: 6px; height: 6px;
    border-radius: var(--r-full);
    background: var(--p);
}

.schritt {
    display: flex;
    gap: 11px;
    padding: 13px 14px;
    border-radius: var(--r-m);
    background: var(--surface-2);
}
.schritt svg { width: 17px; height: 17px; color: var(--p); flex: none; margin-top: 2px; }
.schritt p { font-size: 14.5px; }

.challenge {
    margin: 4px 0 0;
    padding: 16px 18px;
    border-radius: var(--r-m);
    background: var(--ink);
    color: var(--bg);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: -.005em;
}

/* --- Ladezustand ---------------------------------------------------------- */
.skel__zeile {
    height: 11px;
    border-radius: var(--r-full);
    background: linear-gradient(90deg, var(--surface-2) 25%, var(--line) 50%, var(--surface-2) 75%);
    background-size: 200% 100%;
    animation: schimmer 1.4s linear infinite;
    margin-bottom: 9px;
}
.skel__zeile:nth-child(3n) { width: 72%; }
.skel__zeile:nth-child(4n) { width: 88%; }
@keyframes schimmer { to { background-position: -200% 0; } }

.acard.is-laedt .acard__name { color: var(--ink-soft); }
.denkt {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 11.5px; color: var(--p); margin-top: 1px; font-weight: 500;
}
.denkt::after {
    content: '';
    width: 5px; height: 5px; border-radius: var(--r-full);
    background: var(--p);
    animation: pulse 1.1s ease-in-out infinite;
}

/* --- Fehlerzustand einer einzelnen Karte ---------------------------------- */
.acard--fehler .acard__leib { padding-bottom: 18px; }
.acard--fehler p {
    margin: 0;
    font-size: 14.5px;
    color: var(--ink-soft);
    padding-top: 14px;
}

/* --- Kopf des Antwort-Screens --------------------------------------------- */
.zusammenfassung {
    padding: 15px 17px;
    margin-bottom: 18px;
    border-radius: var(--r-m);
    background: var(--surface-2);
    font-size: 14px;
    line-height: 1.55;
    color: var(--ink-soft);
}
.zusammenfassung b { color: var(--ink); font-weight: 600; }

.abschluss {
    margin-top: 26px;
    padding: 18px;
    border: 1px dashed var(--line);
    border-radius: var(--r-m);
    text-align: center;
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.55;
}


/* ==========================================================================
   Rückfragen
   ========================================================================== */

.frage {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--r-m);
    box-shadow: var(--shadow-s);
    padding: 16px 17px;
    margin-bottom: 11px;
}
.frage__text {
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
}
.frage__hinweis {
    font-size: 13px;
    color: var(--ink-faint);
    line-height: 1.45;
    margin-top: 4px;
}
.frage textarea {
    display: block;
    width: 100%;
    min-height: 78px;
    margin-top: 12px;
    padding: 11px 13px;
    border: 1px solid var(--line);
    border-radius: var(--r-s);
    background: var(--bg);
    resize: vertical;
    font-size: 15px;
    line-height: 1.55;
}
.frage textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-soft);
}

/* Ladezustand, während der Vorbereiter denkt */
.warte {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 44px 20px;
    color: var(--ink-soft);
    font-size: 14.5px;
}
.warte::before {
    content: '';
    width: 16px; height: 16px;
    border: 2px solid var(--line);
    border-top-color: var(--accent);
    border-radius: var(--r-full);
    animation: dreh .7s linear infinite;
}
@keyframes dreh { to { transform: rotate(360deg); } }

/* Empfehlungs-Marke auf den Persona-Karten */
.pcard__tipp {
    display: inline-block;
    margin-top: 7px;
    padding: 3px 9px;
    border-radius: var(--r-full);
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .03em;
}

/* ==========================================================================
   Council
   ========================================================================== */

.council {
    margin-top: 26px;
    border-radius: var(--r-l);
    background: var(--ink);
    color: var(--bg);
    overflow: hidden;
    box-shadow: var(--shadow-l);
    animation: rise .45s var(--ease) both;
}
@media (prefers-color-scheme: dark) {
    .council { background: #0D1016; color: var(--ink); }
}

.council__kopf {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 20px 20px 16px;
}
.council__kopf svg { width: 22px; height: 22px; color: var(--accent); }
.council__kopf > span:last-child { min-width: 0; }
.council__titel { display: block; font-size: 17px; font-weight: 600; letter-spacing: -.015em; }
.council__unter { display: block; font-size: 12.5px; line-height: 1.4; opacity: .62; margin-top: 1px; }

.council__leib { padding: 0 20px 22px; }

.cblock { padding: 16px 0; border-top: 1px solid rgba(255,255,255,.11); }
.cblock__label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .09em;
    text-transform: uppercase;
    opacity: .55;
    margin-bottom: 7px;
}
.cblock p { margin: 0; font-size: 15px; line-height: 1.62; opacity: .93; }

/* Widersprüche – das Herzstück, deshalb hervorgehoben */
.spannung {
    padding: 14px 15px;
    border-radius: var(--r-m);
    background: rgba(255,255,255,.07);
    margin-bottom: 10px;
}
.spannung:last-child { margin-bottom: 0; }
.spannung__thema {
    font-size: 14.5px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 5px;
}
.spannung p { font-size: 14.5px; opacity: .88; }
.punkte { display: flex; gap: 5px; margin-top: 9px; }
.punkt {
    width: 9px; height: 9px;
    border-radius: var(--r-full);
    box-shadow: 0 0 0 2px rgba(255,255,255,.14);
}

.option {
    padding: 14px 15px;
    border-radius: var(--r-m);
    border: 1px solid rgba(255,255,255,.14);
    margin-bottom: 10px;
}
.option:last-child { margin-bottom: 0; }
.option__titel {
    font-size: 14.5px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--accent);
}
.option p { font-size: 14.5px; opacity: .9; }
.option__preis {
    display: block;
    margin-top: 8px;
    padding-top: 8px;
    border-top: 1px solid rgba(255,255,255,.1);
    font-size: 13px;
    opacity: .68;
}

.cfrage {
    padding: 17px 18px;
    border-radius: var(--r-m);
    background: var(--accent);
    color: #fff;
    font-size: 16.5px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: -.01em;
}

.cschritt {
    display: flex;
    gap: 11px;
    padding: 14px 15px;
    border-radius: var(--r-m);
    background: rgba(255,255,255,.07);
}
.cschritt svg { width: 17px; height: 17px; color: var(--accent); flex: none; margin-top: 2px; }
.cschritt p { font-size: 14.5px; }

.council--laedt { padding: 30px 20px; text-align: center; }
.council--laedt .warte { color: rgba(255,255,255,.7); padding: 0; }
