
.bio-body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.bio-profile {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    padding: 64px 24px 72px;
    text-align: center;
}

.bio-cover {
    position: relative;
    width: 100%;
    height: clamp(130px, 26vw, 240px);
    overflow: hidden;
    background: var(--surface);
}

.bio-cover-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bio-cover::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 55%;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0), var(--bg));
}

.bio-profile.has-cover {
    padding-top: 0;
}

.bio-profile.has-cover .bio-avatar {
    position: relative;
    z-index: 2;
    margin-top: -46px;
    box-shadow: 0 0 0 4px var(--bg);
}

.bio-avatar-img {
    object-fit: cover;
    background: var(--surface);
}

.bio-avatar {
    width: 84px;
    height: 84px;
    margin: 0 auto 20px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text-2);
    background: var(--surface);
}

.bio-name {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

.bio-handle {
    margin-top: 6px;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-text {
    margin: 18px auto 0;
    max-width: 42ch;
    font-size: 0.95rem;
    color: var(--text-2);
    white-space: pre-line;
}

.bio-links {
    list-style: none;
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.bio-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 44px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--bio-radius, 0);
    overflow: hidden;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bio-link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform 0.2s ease;
}

.bio-link:hover {
    border-color: var(--line-strong);
    background: var(--surface-2);
}

.bio-link:hover::before,
.bio-link:focus-visible::before {
    transform: scaleY(1);
}

.bio-link-title {
    overflow-wrap: anywhere;
}

.bio-link.has-img {
    justify-content: flex-start;
    gap: 14px;
    padding: 10px 44px 10px 10px;
    text-align: left;
}

.bio-link-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    background: var(--surface-2);
}

.bio-tag18 {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.58rem;
    letter-spacing: 0.12em;
    padding: 2px 6px;
    border: 1px solid var(--line-strong);
    color: var(--muted);
}

.bio-empty {
    padding: 24px;
    border: 1px dashed var(--line);
    color: var(--muted);
    font-size: 0.9rem;
}

.bio-foot {
    margin-top: 48px;
    font-size: 0.75rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    align-items: center;
    justify-content: center;
}

.bio-foot a {
    color: var(--muted);
    text-decoration: none;
}

.bio-foot a:hover {
    color: var(--text);
}

.bio-foot-brand {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.bio-foot-sep {
    opacity: 0.5;
}

.bio-gate {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
}

.bio-gate-box {
    max-width: 420px;
}

.bio-gate-kicker {
    font-size: 0.68rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 16px;
}

.bio-gate h1 {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.bio-gate-text {
    margin-top: 12px;
    color: var(--text-2);
    font-size: 0.95rem;
}

.bio-gate-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.bio-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 22px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text);
    font: inherit;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.bio-btn:hover {
    border-color: var(--text);
}

.bio-btn-solid {
    background: var(--text);
    border-color: var(--text);
    color: var(--bg);
}

.bio-btn-solid:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #FFFFFF;
}

.bio-btn-danger {
    color: var(--error);
    border-color: var(--error);
}

.bio-btn-danger:hover {
    background: var(--error);
    border-color: var(--error);
    color: #FFFFFF;
}

.bio-btn-mini {
    padding: 7px 12px;
    font-size: 0.78rem;
}

.bio-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.bio-shell {
    width: 100%;
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
}

.bio-topbar {
    border-bottom: 1px solid var(--line);
    background: var(--bg);
}

.bio-topbar-in {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.bio-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
    text-decoration: none;
}

.bio-brand span {
    color: var(--muted);
}

.bio-mark {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.bio-wordmark {
    display: block;
    height: 21px;
    width: auto;
}

:root[data-theme="light"] .bio-wordmark {
    filter: brightness(0);
}

:root[data-theme="light"] .bio-dark .bio-wordmark {
    filter: none;
}


.bio-topnav {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bio-themeknopf {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.bio-themeknopf:hover {
    color: var(--text);
    border-color: var(--line-strong);
}

.bio-themeknopf svg {
    width: 15px;
    height: 15px;
    fill: currentColor;
}

:root[data-theme="light"] .bio-themeknopf svg {
    transform: rotate(180deg);
}

.bio-who {
    font-size: 0.8rem;
    color: var(--muted);
}

.bio-auth {
    width: 100%;
    max-width: 440px;
    margin: 72px auto;
    padding: 0 24px;
}

.bio-auth h1 {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.bio-auth-breit {
    max-width: 1020px;
    display: grid;
    grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 76px);
    align-items: start;
}

.bio-card-luft {
    margin-top: 24px;
}

.bio-auth-vorschau {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1600px;
}

.bio-auth-vorschau .bio-phone {
    width: min(268px, 86%);
}

.bio-auth-neben {
    padding-top: 6px;
}

.bio-auth-punkte {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 22px;
}

.bio-auth-punkte li {
    display: grid;
    gap: 5px;
    padding-left: 15px;
    border-left: 1px solid var(--line);
}

.bio-auth-punkte b {
    font-size: 0.92rem;
    font-weight: 600;
}

.bio-auth-punkte span {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--text-2);
}

.bio-lead {
    margin-top: 8px;
    color: var(--text-2);
    font-size: 0.92rem;
}

.bio-card {
    border: 1px solid var(--line);
    background: var(--surface);
    border-radius: 4px;
    padding: 28px;
}

.bio-card + .bio-card {
    margin-top: 24px;
}

.bio-card h2 {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.bio-card h2 small {
    font-size: 0.66rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

.bio-field {
    margin-top: 16px;
}

.bio-field label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 7px;
}

.bio-input,
.bio-textarea,
.bio-select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    background: var(--bg);
    color: var(--text);
    font: inherit;
    font-size: 0.94rem;
    border-radius: 3px;
    outline: none;
    transition: border-color 0.2s ease;
}

.bio-input:focus,
.bio-textarea:focus,
.bio-select:focus {
    border-color: var(--accent);
}

.bio-textarea {
    resize: vertical;
    min-height: 92px;
}

.bio-hint {
    margin-top: 7px;
    font-size: 0.78rem;
    color: var(--muted);
}

.bio-danger h3 {
    color: #C2493D;
}

.bio-btn-danger {
    border-color: #C2493D;
    color: #C2493D;
}

.bio-btn-danger:hover {
    background: #C2493D;
    color: #FFFFFF;
}

.bio-claim {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.bio-claim-field {
    display: flex;
    align-items: center;
    flex: 1 1 300px;
    min-width: 0;
    background: var(--bg-lift);
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 0 14px;
}

.bio-claim-field:focus-within {
    border-color: var(--accent);
}

.bio-claim-prefix {
    font-size: 0.95rem;
    color: var(--muted);
    white-space: nowrap;
}

.bio-claim-input {
    flex: 1 1 auto;
    min-width: 0;
    font: inherit;
    font-size: 0.95rem;
    color: var(--text);
    background: none;
    border: 0;
    outline: none;
    padding: 15px 0;
}

.bio-hero-inner .bio-handle-state {
    margin-top: 10px;
}

.bio-escape-tip {
    margin-top: 14px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
}

.bio-escape-url {
    margin-top: 18px;
    font-size: 0.75rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.bio-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bio-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 20px;
}

.bio-tab {
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--muted);
    background: none;
    border: 0;
    border-bottom: 2px solid transparent;
    padding: 9px 14px;
    cursor: pointer;
}

.bio-tab:hover {
    color: var(--text);
}

.bio-tab.on {
    color: var(--text);
    border-bottom-color: var(--accent);
}

.bio-tabcount {
    display: inline-block;
    min-width: 18px;
    margin-left: 4px;
    padding: 1px 5px;
    border-radius: 999px;
    background: var(--bg-lift);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--muted);
}

.bio-dot {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-left: 5px;
    border-radius: 50%;
    background: #C2493D;
    vertical-align: middle;
}

.bio-facts {
    margin: 0;
    padding: 0;
}

.bio-facts > div {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 11px 0;
    border-bottom: 1px solid var(--line);
}

.bio-facts > div:last-child {
    border-bottom: 0;
}

.bio-facts dt {
    font-size: 0.82rem;
    color: var(--muted);
}

.bio-facts dd {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
    text-align: right;
    overflow-wrap: anywhere;
}

.bio-featurelist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: 12px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.bio-featurelist li {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
}

.bio-dnsbox {
    margin-top: 14px;
    padding: 16px 18px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
}

.bio-dnsbox p {
    margin: 0;
    font-size: 0.86rem;
}

.bio-dnstab {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
    font-size: 0.86rem;
}

.bio-dnstab td {
    padding: 6px 0;
    border-bottom: 1px solid var(--line);
}

.bio-dnstab tr:last-child td {
    border-bottom: 0;
}

.bio-dnstab td:first-child {
    width: 70px;
    color: var(--muted);
}

.bio-dnstab code {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.bio-kitlist {
    margin: 10px 0 0;
    padding: 0;
    list-style: none;
}

.bio-kitlist li {
    display: grid;
    grid-template-columns: minmax(80px, 1fr) minmax(70px, 1.2fr) auto auto;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
}

.bio-kitlist li:last-child {
    border-bottom: 0;
}

.bio-kit-leer {
    display: block !important;
    color: var(--muted);
    font-size: 0.85rem;
}

.bio-kitform {
    display: grid;
    grid-template-columns: minmax(110px, 0.8fr) minmax(110px, 1fr) minmax(90px, 0.7fr) auto;
    gap: 8px;
    margin-top: 14px;
}

@media (max-width: 620px) {
    .bio-kitform {
        grid-template-columns: 1fr 1fr;
    }
}

.mk {
    max-width: 640px;
    margin: 0 auto;
    padding: 56px 24px 72px;
}

.mk-kopf {
    display: flex;
    align-items: center;
    gap: 20px;
}

.mk-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 auto;
}

.mk-avatar-text {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-lift);
    border: 1px solid var(--line);
    font-size: 1.8rem;
    font-weight: 600;
}

.mk-kicker {
    margin: 0 0 4px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--accent);
}

.mk-kopf h1 {
    margin: 0;
    font-size: 1.7rem;
    letter-spacing: -0.02em;
}

.mk-handle-gross {
    margin: 4px 0 0;
    color: var(--muted);
}

.mk-intro {
    margin: 26px 0 0;
    line-height: 1.7;
    white-space: pre-line;
}

.mk-block {
    margin-top: 40px;
}

.mk-block h2 {
    margin: 0 0 12px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.mk-gesamt {
    margin: 0 0 14px;
    font-size: 1.05rem;
}

.mk-gesamt strong {
    font-size: 1.5rem;
    font-weight: 700;
}

.mk-liste {
    margin: 0;
    padding: 0;
    list-style: none;
}

.mk-liste li {
    display: grid;
    grid-template-columns: minmax(90px, 1fr) minmax(0, 1.4fr) auto;
    gap: 14px;
    align-items: baseline;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
}

.mk-liste li:last-child {
    border-bottom: 0;
}

.mk-plat {
    font-weight: 600;
}

.mk-handle {
    color: var(--muted);
    font-size: 0.88rem;
    overflow-wrap: anywhere;
}

.mk-zahl {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    text-align: right;
}

.mk-leer {
    color: var(--muted);
}

.mk-quelle,
.mk-kontakt {
    margin: 14px 0 0;
    font-size: 0.82rem;
    color: var(--muted);
}

.mk-kontakt {
    font-size: 0.95rem;
    color: var(--text);
    overflow-wrap: anywhere;
}

.mk-fuss {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-top: 52px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    font-size: 0.82rem;
}

.mk-fuss a {
    color: var(--text);
}

.mk-marke {
    color: var(--muted);
}

.bio-planlist {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 10px;
    margin: 16px 0 0;
    padding: 0;
    list-style: none;
}

.bio-planlist li {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
}

.bio-planlist li.is-on {
    border-color: var(--accent);
}

.bio-planlist strong {
    font-size: 1rem;
    font-weight: 600;
}

.bio-planlist span {
    font-size: 0.82rem;
    color: var(--muted);
}

.bio-plan-kurz {
    margin-top: 4px;
    line-height: 1.5;
}

.bio-planlist .bio-tag {
    align-self: flex-start;
    margin: 8px 0 0;
}

.bio-ab {
    margin-top: 6px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--accent);
}

.bio-sourcelist {
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.bio-sourcelist li {
    display: grid;
    grid-template-columns: minmax(90px, 1.1fr) minmax(64px, 0.7fr) 2fr auto;
    align-items: center;
    gap: 12px;
    padding: 9px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.86rem;
}

.bio-sourcelist li:last-child {
    border-bottom: 0;
}

.bio-src-name {
    font-weight: 600;
    overflow-wrap: anywhere;
}

.bio-src-dev,
.bio-src-num {
    color: var(--muted);
}

.bio-src-num {
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.bio-src-bar {
    display: block;
    height: 6px;
    border-radius: 999px;
    background: var(--bg-lift);
    overflow: hidden;
}

.bio-src-bar i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
}

.bio-featurelist li.is-locked {
    opacity: 0.62;
}

.bio-featurelist li.is-on {
    border-color: #3E8E6E;
}

.bio-widerruf {
    margin: 6px 0 16px;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
    align-items: flex-start;
}

.bio-widerruf span {
    font-size: 0.82rem;
    line-height: 1.55;
    color: var(--text-2);
}

.bio-ueber {
    display: none;
}

.bio-ueber:target {
    display: flex;
    position: fixed;
    inset: 0;
    z-index: 60;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.bio-ueber-hinter {
    position: absolute;
    inset: 0;
    background: rgba(4, 5, 7, 0.66);
    backdrop-filter: blur(3px);
}

.bio-ueber-box {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 400px;
    max-height: 86vh;
    overflow-y: auto;
    padding: 28px 26px 24px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    text-align: center;
}

.bio-ueber-zu {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg-lift);
    color: var(--text-2);
    font-size: 1.1rem;
    line-height: 1;
    text-decoration: none;
}

.bio-ueber-zu:hover {
    color: var(--text);
}

.bio-ueber-bild {
    display: block;
    width: 78px;
    height: 78px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--bg-lift);
}

.bio-ueber-bild-text {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    font-size: 1.2rem;
    letter-spacing: 0.04em;
    color: var(--text-2);
}

.bio-ueber-name {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bio-ueber-handle {
    margin-top: 2px;
    font-size: 0.82rem;
    color: var(--muted);
}

.bio-ueber-warum {
    margin: 16px 0 20px;
    font-size: 0.8rem;
    line-height: 1.55;
    color: var(--muted);
}

.bio-ueber-liste {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: 12px;
    overflow: hidden;
    text-align: left;
}

.bio-ueber-liste li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 15px;
    background: var(--bg-lift);
    font-size: 0.85rem;
}

.bio-ueber-liste b {
    font-weight: 500;
    color: var(--text-2);
}

.bio-ueber-liste span {
    text-align: right;
    color: var(--text);
}

.bio-ueber-fuss {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--muted);
}

.bio-ueber-fuss a {
    color: var(--text-2);
}

.mk-downloads {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.mk-downloads a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 16px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    text-decoration: none;
    font-size: 0.9rem;
    transition: border-color 0.2s ease;
}

.mk-downloads a:hover {
    border-color: var(--line-strong);
}

.mk-dl-groesse {
    flex-shrink: 0;
    font-size: 0.76rem;
    color: var(--muted);
}

.mk-form {
    display: grid;
    gap: 14px;
    margin-top: 16px;
}

.mk-form label {
    display: grid;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--text-2);
}

.mk-form input,
.mk-form textarea {
    font: inherit;
    font-size: 0.92rem;
    color: var(--text);
    background: var(--bg-lift);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 12px 14px;
    resize: vertical;
}

.mk-form input:focus,
.mk-form textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.mk-form button {
    justify-self: start;
    font: inherit;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 12px 24px;
    border: 1px solid var(--text);
    background: var(--text);
    color: var(--bg);
    cursor: pointer;
}

.mk-falle {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.mk-meldung {
    padding: 12px 15px;
    border: 1px solid var(--line);
    font-size: 0.88rem;
    color: var(--text-2);
}

.mk-meldung.ist-ok {
    border-color: #3E8E6E;
    color: var(--text);
}

.bio-anfrage {
    margin-top: 12px;
    padding: 18px 20px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--bg-lift);
}

.bio-anfrage.ist-neu {
    border-color: var(--accent);
}

.bio-anfrage-kopf {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 9px;
}

.bio-anfrage-kopf strong {
    font-size: 0.98rem;
    font-weight: 600;
}

.bio-anfrage-kopf span {
    font-size: 0.74rem;
    color: var(--muted);
    white-space: nowrap;
}

.bio-anfrage-text {
    white-space: pre-line;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-2);
    margin-bottom: 14px;
}

.bio-dllist {
    list-style: none;
    margin: 14px 0 0;
    padding: 0;
    display: grid;
    gap: 8px;
}

.bio-dllist li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    font-size: 0.88rem;
}

.bio-dllist li a {
    flex: 1 1 auto;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: var(--text);
}

.bio-dllist li span {
    flex-shrink: 0;
    font-size: 0.74rem;
    color: var(--muted);
}

.bio-featurelist li.is-planned {
    opacity: 0.62;
    border-style: dashed;
}

.bio-featurelist li.is-planned .bio-ab {
    color: var(--muted);
}

.bio-haken {
    color: #3E8E6E;
    font-weight: 700;
}

.bio-premium.is-premium {
    border-color: #3E8E6E;
}

.bio-featurelist strong {
    font-size: 0.9rem;
    font-weight: 600;
}

.bio-featurelist span {
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--muted);
}

.bio-span {
    grid-column: 1 / -1;
}

.bio-sec-block {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.bio-sec-block h3 {
    margin: 0 0 4px;
    font-size: 0.95rem;
    font-weight: 600;
}

.bio-sec-block h4 {
    margin: 0 0 6px;
    font-size: 0.9rem;
    font-weight: 600;
}

.bio-tag {
    display: inline-block;
    margin-left: 6px;
    padding: 2px 9px;
    border-radius: 999px;
    border: 1px solid var(--line);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
    vertical-align: middle;
}

.bio-tag.is-on {
    color: #3E8E6E;
    border-color: #3E8E6E;
}

.bio-qr {
    display: block;
    margin: 14px 0;
    border-radius: 8px;
    background: #FFFFFF;
    padding: 8px;
}

.bio-codes {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 8px;
    margin: 12px 0 0;
    padding: 0;
    list-style: none;
}

.bio-codes li {
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
    font-size: 0.85rem;
    background: var(--bg-lift);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 7px 10px;
    text-align: center;
}

.bio-banner {
    grid-column: 1 / -1;
    background: var(--bg-lift);
    border: 1px solid var(--line);
    border-left: 3px solid var(--accent);
    border-radius: 10px;
    padding: 18px 20px;
}

.bio-banner h3 {
    margin: 0 0 6px;
    font-size: 1rem;
    font-weight: 600;
}

.bio-banner p {
    margin: 0;
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-2);
}

.bio-banner .bio-actions {
    margin-top: 14px;
}

.bio-handle-state {
    margin-top: 8px;
    font-size: 0.82rem;
    line-height: 1.5;
    color: var(--muted);
}

.bio-handle-state strong {
    font-weight: 600;
    overflow-wrap: anywhere;
}

.bio-handle-state.is-free {
    color: #3E8E6E;
}

.bio-handle-state.is-taken {
    color: #C2493D;
}

.bio-suggests {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    color: var(--muted);
}

.bio-suggest {
    font: inherit;
    font-weight: 600;
    color: var(--text);
    background: var(--bg-lift);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 12px;
    cursor: pointer;
}

.bio-suggest:hover,
.bio-suggest:focus-visible {
    border-color: var(--accent);
    color: var(--accent);
}

.bio-check {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-top: 16px;
    font-size: 0.88rem;
    color: var(--text-2);
}

.bio-check input {
    margin-top: 4px;
    accent-color: var(--accent);
    flex-shrink: 0;
}

.bio-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.bio-alt {
    margin-top: 20px;
    font-size: 0.86rem;
    color: var(--muted);
}

.bio-alt a {
    color: var(--text);
}

.bio-msg {
    margin: 18px 0;
    padding: 12px 15px;
    border-radius: 3px;
    font-size: 0.89rem;
    border: 1px solid var(--line);
}

.bio-msg-ok {
    border-color: var(--accent);
    color: var(--text);
}

.bio-msg-err {
    border-color: var(--error);
    color: var(--error);
}

.bio-msg[hidden] {
    display: none;
}

.bio-url {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-2);
    overflow-wrap: anywhere;
}

.bio-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: start;
    padding: 40px 0 72px;
}

.bio-linkrow {
    border: 1px solid var(--line);
    border-radius: 3px;
    padding: 14px;
    background: var(--bg);
}

.bio-linkrow + .bio-linkrow {
    margin-top: 12px;
}

.bio-linkrow-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.bio-linkrow-head b {
    flex: 1;
}

.bio-rowthumb {
    width: 34px;
    height: 34px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    background: var(--surface-2);
}

.bio-imgrow {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bio-imgprev {
    width: 46px;
    height: 46px;
    object-fit: cover;
    border-radius: 3px;
    flex-shrink: 0;
    background: var(--surface-2);
    border: 1px solid var(--line);
}

.bio-imgprev-empty {
    display: block;
    border-style: dashed;
}

.bio-imgprev-round {
    border-radius: 50%;
}

.bio-coverprev {
    display: block;
    width: 100%;
    height: 96px;
    object-fit: cover;
    border-radius: 3px;
    border: 1px solid var(--line);
    background: var(--surface-2);
}

.bio-coverprev-empty {
    border-style: dashed;
}

.bio-swatches {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.bio-swatch {
    cursor: pointer;
    line-height: 0;
}

.bio-swatch input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.bio-swatch span {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--line-strong);
    box-shadow: 0 0 0 0 var(--text);
    transition: box-shadow 0.15s ease;
}

.bio-swatch.on span,
.bio-swatch input:focus-visible + span {
    box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--text);
}

.bio-file {
    flex: 1;
    min-width: 180px;
    font: inherit;
    font-size: 0.82rem;
    color: var(--text-2);
}

.bio-file::file-selector-button {
    font: inherit;
    font-size: 0.78rem;
    padding: 7px 12px;
    margin-right: 10px;
    border: 1px solid var(--line-strong);
    background: transparent;
    color: var(--text);
    cursor: pointer;
    border-radius: 3px;
}

.bio-linkrow-head b {
    font-size: 0.94rem;
    font-weight: 600;
    overflow-wrap: anywhere;
}

.bio-clicks {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.bio-linkrow-url {
    margin-top: 5px;
    font-size: 0.78rem;
    color: var(--muted);
    overflow-wrap: anywhere;
}

.bio-linkrow-actions {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.bio-editbox {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
}

.bio-editbox[hidden] {
    display: none;
}

.bio-stat {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.bio-stat div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bio-stat b {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
}

.bio-stat span {
    font-size: 0.68rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-dark {
    --bg: #202020;
    --surface: #272727;
    --surface-2: #2E2E2E;
    --text: #EDF0F1;
    --text-2: #BDC8CB;
    --text-soft: #BDC8CB;
    --muted: #949A9C;
    --line: #363636;
    --line-strong: #434343;
    --accent: #F3FFAC;
    --accent-hover: #E4F58E;
    --border: #363636;
    --border-subtle: #363636;
    --border-faint: #434343;
    --bg-alt: #272727;
    --bg-lift: #2E2E2E;
    --accent-deep: #F3FFAC;
    --placeholder: #6E7476;
    --footer-bg: #202020;
    --em: #FFFFFF;
    background: var(--bg);
    color: var(--text);
    color-scheme: dark;
}

.bio-topbar-float {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 5;
    border-bottom: 0;
    background: transparent;
}

.bio-hero-hell,
.bio-topbar-hell {
    --bg: #E4E8E9;
    --surface: #EDF0F1;
    --surface-2: #E1E6E7;
    --text: #202020;
    --text-2: #4C5456;
    --text-soft: #4C5456;
    --muted: #5F6769;
    --line: #C7D0D2;
    --line-strong: #BDC8CB;
    --accent: #202020;
    --accent-hover: #000000;
    --border: #C7D0D2;
    --border-subtle: #C7D0D2;
    --border-faint: #BDC8CB;
    --bg-alt: #EDF0F1;
    --bg-lift: #EDF0F1;
    --accent-deep: #202020;
    --placeholder: #949C9E;
    --em: #000000;
    color: var(--text);
    color-scheme: light;
}

.bio-dark .bio-topbar-hell .bio-wordmark {
    filter: brightness(0);
}

.bio-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 92px 24px 56px;
    overflow: hidden;
    background:
        radial-gradient(56% 50% at 72% 44%, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0) 68%),
        var(--bg);
}

.bio-hero-brandmark {
    position: absolute;
    left: 50%;
    bottom: -2.6vw;
    transform: translateX(-50%);
    width: min(1420px, 112vw);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.055;
    pointer-events: none;
    z-index: 1;
}

.bio-hero-grid {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: min(1340px, 90vw);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.04fr);
    gap: clamp(32px, 5vw, 76px);
    align-items: center;
}

.bio-hero-inner {
    max-width: 560px;
}

.bio-hero-inner .bio-claim-field {
    flex: 1 1 210px;
}

.bio-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 22px;
    font-size: 0.68rem;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-hero-eyebrow::before {
    content: "";
    width: 2px;
    height: 13px;
    background: var(--accent);
}

.bio-hero h1 {
    font-size: clamp(2.5rem, 5.4vw, 4.5rem);
    font-weight: 600;
    letter-spacing: -0.046em;
    line-height: 0.98;
}

.bio-hero-sub {
    margin: 22px 0 0;
    max-width: 44ch;
    color: var(--text-2);
    font-size: 1.02rem;
}

.bio-hero-sub strong {
    color: var(--text);
    font-weight: 500;
    white-space: nowrap;
}

.bio-hero-actions {
    margin-top: 28px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.bio-hero-note {
    margin-top: 18px;
    font-size: 0.78rem;
    color: var(--muted);
}

.bio-hero-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    perspective: 1600px;
}

.bio-hero .bio-phone {
    width: clamp(238px, 35svh, 392px);
}

.bio-hero-visual[hidden] {
    display: none;
}

.bio-hero-grid:has(.bio-hero-visual[hidden]) {
    grid-template-columns: minmax(0, 1fr);
}

.bio-phone {
    position: relative;
    width: min(292px, 80%);
    aspect-ratio: 9 / 18.4;
    padding: 9px;
    border-radius: 42px;
    background: linear-gradient(128deg,
        #8D939E 0%, #3A3F49 12%, #C3C8D2 24%, #4A505B 38%,
        #A8AEBA 52%, #363B45 66%, #B6BCC7 80%, #2F343D 92%, #767C87 100%);
    box-shadow:
        0 42px 70px -34px rgba(0, 0, 0, 0.72),
        0 10px 24px -14px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.06);
    transform: rotateY(-6deg) rotateX(2deg);
    transform-origin: 40% 50%;
    animation: bioSchweben 9s ease-in-out infinite;
}

.bio-phone-tasten,
.bio-phone-power {
    position: absolute;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(180deg, #9AA0AB, #3C414A);
}

.bio-phone-tasten {
    left: -2px;
    top: 16.5%;
    height: 3.4%;
}

.bio-phone-tasten::before,
.bio-phone-tasten::after {
    content: "";
    position: absolute;
    left: 0;
    width: 2px;
    height: 210%;
    border-radius: 2px;
    background: inherit;
}

.bio-phone-tasten::before { top: 195%; }
.bio-phone-tasten::after { top: 445%; }

.bio-phone-power {
    right: -2px;
    top: 27%;
    height: 11%;
}

.bio-phone-insel {
    position: absolute;
    z-index: 4;
    top: 9px;
    left: 50%;
    transform: translateX(-50%);
    width: 27%;
    height: 22px;
    border-radius: 999px;
    background: #050506;
}

.bio-phone-insel::after {
    content: "";
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 30%, #2C3444 0%, #0B0D12 62%);
}

.bio-phone-leiste {
    position: absolute;
    z-index: 4;
    top: 13px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    font-size: 0.6rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--p-text);
}

.bio-phone-zeichen {
    width: 40px;
    height: 10px;
    fill: currentColor;
    color: var(--p-text);
}

@keyframes bioSchweben {
    0%, 100% { transform: rotateY(-6deg) rotateX(2deg) translateY(0); }
    50% { transform: rotateY(-6deg) rotateX(2deg) translateY(-5px); }
}

@keyframes bioAuf {
    from { opacity: 0; transform: translateY(9px); }
    to { opacity: 1; transform: none; }
}

.bio-phone-screen {
    position: relative;
    height: 100%;
    border-radius: 33px;
    overflow: hidden;
    background: var(--p-bg, #080808);
    color: var(--p-text, #F6F1E8);
    text-align: center;
    box-shadow: 0 0 0 6px #08090B;
}

.bio-phone-inhalt > * {
    opacity: 0;
    animation: bioAuf 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}

.bio-phone-inhalt > *:nth-child(1) { animation-delay: 0.30s; }
.bio-phone-inhalt > *:nth-child(2) { animation-delay: 0.40s; }
.bio-phone-inhalt > *:nth-child(3) { animation-delay: 0.46s; }
.bio-phone-inhalt > *:nth-child(4) { animation-delay: 0.56s; }
.bio-phone-inhalt > *:nth-child(5) { animation-delay: 0.70s; }
.bio-phone-inhalt > *:nth-child(6) { animation-delay: 0.80s; }
.bio-phone-inhalt > *:nth-child(7) { animation-delay: 0.90s; }
.bio-phone-inhalt > *:nth-child(8) { animation-delay: 1.00s; }
.bio-phone-inhalt > *:nth-child(9) { animation-delay: 1.12s; }

.bio-phone-url {
    position: absolute;
    z-index: 5;
    bottom: 10px;
    left: 12px;
    right: 12px;
    padding: 9px 12px;
    border-radius: 999px;
    background: rgba(28, 30, 36, 0.88);
    backdrop-filter: blur(10px);
    font-size: 0.62rem;
    color: rgba(255, 255, 255, 0.86);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    opacity: 0;
    animation: bioAuf 0.55s cubic-bezier(0.22, 0.61, 0.36, 1) 0.16s forwards;
}

.bio-phone-hell .bio-phone-url {
    background: rgba(242, 243, 246, 0.92);
    color: #2C3038;
}

.bio-phone-inhalt {
    padding-bottom: 62px;
}

.bio-phone-screen::after {
    content: "";
    position: absolute;
    inset: auto 0 46px 0;
    height: 52px;
    pointer-events: none;
    background: linear-gradient(to bottom, transparent, var(--p-bg, #080808));
}

.bio-phone-dunkel {
    --p-bg: #080808;
    --p-text: #F6F1E8;
    --p-muted: #85817A;
    --p-line: #2A2A2A;
    --p-surface: #0E0E0E;
}

.bio-phone-hell {
    --p-bg: #FFFFFF;
    --p-text: #14161A;
    --p-muted: #8A8F98;
    --p-line: #E4E7EC;
    --p-surface: #F5F6F8;
}

.bio-phone-cover {
    display: block;
    width: 100%;
    height: 96px;
    object-fit: cover;
    opacity: 0;
    animation: bioAuf 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 0.06s forwards;
    background:
        radial-gradient(64% 118% at 22% 4%, rgba(150, 186, 240, 0.60) 0%, rgba(150, 186, 240, 0) 60%),
        radial-gradient(58% 126% at 92% 100%, rgba(232, 238, 250, 0.34) 0%, rgba(232, 238, 250, 0) 56%),
        linear-gradient(128deg, #2B394E 0%, #465872 50%, #1E2733 100%);
}

.bio-phone-hell .bio-phone-cover {
    background:
        radial-gradient(70% 120% at 24% 8%, rgba(94, 133, 195, 0.30) 0%, rgba(94, 133, 195, 0) 62%),
        linear-gradient(128deg, #DCE2EC 0%, #EEF1F6 54%, #CFD6E2 100%);
}

.bio-phone-inhalt {
    padding: 30px 18px 26px;
}

.bio-phone-inhalt.has-cover {
    padding-top: 0;
}

.bio-phone-avatar {
    display: block;
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    border-radius: 50%;
    object-fit: cover;
    background: var(--p-surface);
}

.bio-phone-inhalt.has-cover .bio-phone-avatar {
    position: relative;
    z-index: 2;
    margin-top: -30px;
    box-shadow: 0 0 0 3px var(--p-bg);
}

.bio-phone-initialen {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--p-line);
    font-size: 0.86rem;
    letter-spacing: 0.04em;
}

.bio-phone-name {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bio-phone-handle {
    margin-top: 2px;
    font-size: 0.7rem;
    color: var(--p-muted);
}

.bio-phone-text {
    margin: 11px 0 17px;
    font-size: 0.7rem;
    line-height: 1.45;
    white-space: pre-line;
    color: var(--p-muted);
}

.bio-phone-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 8px;
    padding: 11px 12px;
    border: 1px solid var(--bio-phone-accent, var(--p-line));
    border-radius: var(--bio-phone-radius, 0);
    background: var(--p-surface);
    font-size: 0.72rem;
    font-weight: 500;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.bio-phone-link:hover {
    border-color: var(--p-text);
    background: var(--p-bg);
}

.bio-phone-link.has-img {
    justify-content: flex-start;
    text-align: left;
}

.bio-phone-link img,
.bio-phone-link svg {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 6px;
    object-fit: cover;
}

.bio-phone-link svg {
    padding: 6px;
    background: var(--p-bg);
    border: 1px solid var(--p-line);
    fill: var(--p-text);
    opacity: 0.86;
}

.bio-phone-link i {
    margin-left: auto;
    font-style: normal;
    font-size: 0.56rem;
    letter-spacing: 0.08em;
    color: var(--p-muted);
}

.bio-phone-fuss {
    display: block;
    margin-top: 22px;
    font-size: 0.58rem;
    letter-spacing: 0.04em;
    color: var(--p-muted);
}

.bio-hero-beleg {
    margin-top: 20px;
    font-size: 0.72rem;
    color: var(--muted);
    text-align: center;
}

.bio-hero-beleg a {
    color: var(--text-2);
}

.bio-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 26px;
}

@font-face {
    font-family: 'Outfit';
    font-style: normal;
    font-weight: 300 700;
    font-display: swap;
    src: url('/assets/fonts/outfit-var.woff2') format('woff2');
}

.bd-body {
    --bd-bg: #202020;
    --bd-flaeche: #272727;
    --bd-flaeche-2: #2E2E2E;
    --bd-linie: #363636;
    --bd-text: #EDF0F1;
    --bd-text-2: #BDC8CB;
    --bd-muted: #949A9C;
    --bd-akzent: #F3FFAC;
    --bd-auf-akzent: #202020;

    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bd-bg);
    color: var(--bd-text);
    color-scheme: dark;

    --bg: var(--bd-bg);
    --surface: var(--bd-flaeche);
    --surface-2: var(--bd-flaeche-2);
    --bg-alt: var(--bd-flaeche);
    --bg-lift: var(--bd-flaeche-2);
    --text: var(--bd-text);
    --text-2: var(--bd-text-2);
    --text-soft: var(--bd-text-2);
    --muted: var(--bd-muted);
    --line: var(--bd-linie);
    --line-strong: #434343;
    --border: var(--bd-linie);
    --border-subtle: var(--bd-linie);
    --border-faint: #434343;
    --accent: var(--bd-akzent);
    --accent-hover: #E4F58E;
    --accent-deep: var(--bd-akzent);
    --placeholder: #6E7476;
    --em: #FFFFFF;
}

:root[data-theme="light"] .bd-body {
    --bd-bg: #E4E8E9;
    --bd-flaeche: #EDF0F1;
    --bd-flaeche-2: #E1E6E7;
    --bd-linie: #C7D0D2;
    --bd-text: #202020;
    --bd-text-2: #4C5456;
    --bd-muted: #5F6769;

    color-scheme: light;
    --line-strong: #BDC8CB;
    --border-faint: #BDC8CB;
    --accent-hover: #E9F79C;
    --placeholder: #949C9E;
    --em: #000000;
}

:root[data-theme="light"] .bd-body {
    --accent: #202020;
    --accent-deep: #202020;
}

.bd-body,
.bio-dark {
    --limette: #F3FFAC;
    --limette-hover: #E4F58E;
    --auf-limette: #202020;
}

.bio-dark {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.bd-body .bio-btn-solid,
.bio-dark .bio-btn-solid {
    background: var(--limette);
    border-color: var(--limette);
    color: var(--auf-limette);
}

.bd-body .bio-btn-solid:hover,
.bio-dark .bio-btn-solid:hover {
    background: var(--limette-hover);
    border-color: var(--limette-hover);
    color: var(--auf-limette);
}

.bd-body .bio-input:focus,
.bio-dark .bio-input:focus,
.bd-body .bio-select:focus,
.bio-dark .bio-select:focus,
.bd-body .bio-textarea:focus,
.bio-dark .bio-textarea:focus {
    border-color: var(--limette);
    box-shadow: 0 0 0 3px rgba(243, 255, 172, 0.28);
}

.bd-rahmen {
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr);
    min-height: 100vh;
}

.bd-leiste {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 18px 0 20px;
    border-right: 1px solid var(--bd-linie);
}

.bd-marke {
    display: block;
    margin-bottom: 14px;
}

.bd-marke img {
    display: block;
    width: 26px;
    height: 26px;
    filter: brightness(0) invert(1);
}

:root[data-theme="light"] .bd-marke img {
    filter: none;
}

.bd-leiste-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.bd-leiste-fuss {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: auto;
}

.bd-leiste-knopf {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--bd-muted);
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.bd-leiste-knopf svg {
    width: 19px;
    height: 19px;
    fill: currentColor;
}

.bd-leiste-knopf:hover,
.bd-leiste-knopf.on {
    background: var(--bd-flaeche-2);
    color: var(--bd-text);
}

.bd-leiste-knopf .bio-dot {
    position: absolute;
    top: 7px;
    right: 7px;
}

.bd-haupt {
    display: flex;
    flex-direction: column;
    min-width: 0;
    padding: 18px 20px 24px;
}

.bd-kopf {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 18px;
}

.bd-body .bio-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px;
    padding: 4px;
    border: 1px solid var(--bd-linie);
    border-radius: 12px;
    background: var(--bd-flaeche);
    margin: 0;
}

.bd-body .bio-tab {
    border: 0;
    border-radius: 9px;
    padding: 8px 14px;
    background: transparent;
    color: var(--bd-muted);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.bd-body .bio-tab:hover {
    color: var(--bd-text);
}

.bd-body .bio-tab.on {
    background: var(--bd-flaeche-2);
    color: var(--bd-text);
}

.bd-cta {
    position: absolute;
    right: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    border: 0;
    border-radius: 11px;
    background: var(--bd-akzent);
    color: var(--bd-auf-akzent);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
}

.bd-cta:hover {
    background: var(--accent-hover);
}

.bd-buehne-flaeche {
    flex: 1 1 auto;
}

.bd-fuss {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 28px;
    font-size: 0.76rem;
}

.bd-fuss a {
    color: var(--bd-muted);
    text-decoration: none;
}

.bd-fuss a:hover {
    color: var(--bd-text);
}

.bd-raster {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) repeat(3, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
}

.bd-karte,
.bd-kachel,
.bd-buehne {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--surface);
    padding: 20px 22px 22px;
}

.bd-buehne {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bd-buehne-kopf {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.bd-buehne-kopf h2 {
    font-size: 1.02rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.bd-buehne-url {
    margin-top: 3px;
    font-size: 0.78rem;
}

.bd-buehne-url a {
    color: var(--muted);
}

.bd-status {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 5px 11px;
    border-radius: 999px;
    background: var(--bg-lift);
    font-size: 0.66rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-2);
    white-space: nowrap;
}

.bd-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.bd-status.aus::before {
    background: var(--muted);
}

.bd-buehne-geraet {
    display: flex;
    justify-content: center;
    perspective: 1500px;
}

.bd-buehne-geraet .bio-phone {
    width: min(228px, 100%);
    animation: none;
    transform: rotateY(-5deg) rotateX(2deg);
}

.bd-buehne-geraet .bio-phone-inhalt > * {
    opacity: 1;
    animation: none;
}

.bd-buehne-geraet .bio-phone-inhalt {
    padding-bottom: 22px;
}

.bd-buehne-geraet .bio-phone-cover {
    height: 74px;
    animation: none;
    opacity: 1;
}

.bd-buehne-geraet .bio-phone-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 8px 0 12px;
}

.bd-buehne-geraet .bio-phone-avatar {
    width: 46px;
    height: 46px;
    margin-bottom: 9px;
}

.bd-buehne-geraet .bio-phone-inhalt.has-cover .bio-phone-avatar {
    margin-top: -24px;
}

.bd-buehne-geraet .bio-phone-link {
    margin-top: 7px;
    padding: 9px 10px;
}

.bd-buehne-geraet .bio-phone-screen::after {
    inset: auto 0 0 0;
    height: 34px;
}

.bd-buehne-fuss {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.bd-kachel-titel {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
}

.bd-kachel-wert {
    margin-top: 16px;
    font-size: clamp(2rem, 4vw, 2.9rem);
    font-weight: 600;
    letter-spacing: -0.04em;
    line-height: 1;
}

.bd-kachel-zusatz {
    margin-top: 10px;
    font-size: 0.78rem;
    color: var(--text-2);
}

.bd-quellen {
    grid-column: span 2;
}

.bd-gesperrt {
    opacity: 0.72;
}

.bd-ratio {
    margin-top: 16px;
}

.bd-ratio-wert {
    display: flex;
    align-items: baseline;
    gap: 9px;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.03em;
}

.bd-ratio-wert span {
    font-size: 0.74rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--muted);
}

.bd-ratio-spur {
    margin-top: 13px;
    height: 8px;
    border-radius: 999px;
    background: var(--bg-lift);
    overflow: hidden;
}

.bd-ratio-spur i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
}

.bd-ratio-enden {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 9px;
    font-size: 0.74rem;
    color: var(--text-2);
}

.bd-bogen {
    text-align: center;
}

.bd-bogen .bd-kachel-titel {
    text-align: left;
}

.bd-bogen-bild {
    display: block;
    width: 100%;
    max-width: 190px;
    margin: 10px auto 0;
}

.bd-bogen-wert {
    margin-top: -18px;
    font-size: 1.9rem;
    font-weight: 600;
    letter-spacing: -0.035em;
}

.bd-bogen-wert span {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--muted);
}

.bd-breit {
    grid-column: 1 / -1;
}

.bd-balken {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.bd-balken li {
    display: grid;
    grid-template-columns: minmax(0, 210px) minmax(0, 1fr) 48px;
    align-items: center;
    gap: 14px;
}

.bd-balken-name {
    font-size: 0.86rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.bd-balken-spur {
    height: 9px;
    border-radius: 999px;
    background: var(--bg-lift);
    overflow: hidden;
}

.bd-balken-spur i {
    display: block;
    height: 100%;
    border-radius: 999px;
    background: var(--accent);
}

.bd-balken-wert {
    text-align: right;
    font-size: 0.86rem;
    font-weight: 600;
    font-variant-numeric: tabular-nums;
}

.bio-flaeche {
    background: var(--bg-alt);
}

.bio-band {
    overflow: hidden;
    padding: 26px 0;
    background: var(--bg-alt);
}

.bio-band-lauf {
    display: flex;
    width: max-content;
    animation: bioBand 46s linear infinite;
}

.bio-band-reihe {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.bio-band-reihe i {
    display: inline-flex;
    align-items: center;
    padding: 0 26px;
    font-style: normal;
    font-size: clamp(1.1rem, 2.4vw, 1.7rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--muted);
    white-space: nowrap;
}

.bio-band-reihe i::after {
    content: "";
    width: 5px;
    height: 5px;
    margin-left: 26px;
    border-radius: 50%;
    background: var(--line-strong);
}

@keyframes bioBand {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.bio-sticky {
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(32px, 6vw, 88px);
    align-items: start;
    padding-top: clamp(56px, 9vh, 104px);
    padding-bottom: clamp(56px, 9vh, 104px);
}

.bio-sticky-kopf {
    position: sticky;
    top: clamp(72px, 14vh, 128px);
}

.bio-sticky-lead {
    margin-top: 18px;
    max-width: 34ch;
    color: var(--text-2);
    font-size: 0.95rem;
}

.bio-sticky-liste {
    display: grid;
    gap: 14px;
}

.bio-karte {
    padding: 26px 26px 28px;
    border: 1px solid var(--line);
    background: var(--surface);
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.bio-karte:hover {
    border-color: var(--line-strong);
    transform: translateY(-2px);
}

.bio-karte h3 {
    font-size: 1.06rem;
    font-weight: 600;
    letter-spacing: -0.015em;
    margin-bottom: 9px;
}

.bio-karte p {
    color: var(--text-2);
    font-size: 0.9rem;
    line-height: 1.6;
}

.bio-karten {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
    margin-top: 30px;
}

.bio-gross,
.bio-sticky-kopf h2 {
    font-size: clamp(1.9rem, 4.2vw, 3.1rem);
    font-weight: 600;
    letter-spacing: -0.038em;
    line-height: 1.06;
}

.bio-riesig {
    font-size: clamp(2.4rem, 7vw, 5rem);
    font-weight: 600;
    letter-spacing: -0.046em;
    line-height: 0.98;
}

.bio-stage {
    padding: clamp(48px, 8vh, 88px) 0;
}

.bio-stage-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
    gap: clamp(32px, 6vw, 72px);
    align-items: center;
}

.bio-stage-text h2 {
    font-size: clamp(1.5rem, 3.2vw, 2.1rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin-bottom: 18px;
}

.bio-stage-text p {
    color: var(--text-2);
    font-size: 0.96rem;
}

.bio-stage-text p + p {
    margin-top: 14px;
}

.bio-demo-pair {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bio-demo {
    position: relative;
    border: 1px solid var(--line);
    background: var(--bg);
    border-radius: 6px;
    padding: 34px 18px 22px;
    text-align: center;
    overflow: hidden;
}

.bio-demo-light {
    --bg: #EDF0F1;
    --surface: #FFFFFF;
    --surface-2: #F1F4F5;
    --text: #202020;
    --text-2: #4A5254;
    --text-soft: #4A5254;
    --muted: #5F6769;
    --line: #DFE5E7;
    --line-strong: #C7D0D2;
    --border: #DFE5E7;
    --border-subtle: #DFE5E7;
    --border-faint: #C7D0D2;
    --placeholder: #AEB9BC;
    --em: #000000;
    color: var(--text);
}

.bio-demo-tag {
    position: absolute;
    top: 10px;
    left: 12px;
    font-size: 0.56rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-demo-avatar {
    width: 46px;
    height: 46px;
    margin: 0 auto 12px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.86rem;
    font-weight: 600;
    color: var(--text-2);
    background: var(--surface);
}

.bio-demo-name {
    font-size: 0.98rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--text);
}

.bio-demo-handle {
    margin-top: 3px;
    font-size: 0.56rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-demo-bio {
    margin: 10px auto 0;
    max-width: 26ch;
    font-size: 0.74rem;
    color: var(--text-2);
}

.bio-demo-link {
    position: relative;
    display: block;
    margin-top: 9px;
    padding: 10px 22px;
    border: 1px solid var(--line);
    background: var(--surface);
    color: var(--text);
    font-size: 0.76rem;
    font-weight: 500;
}

.bio-demo-link:first-of-type {
    margin-top: 20px;
}

.bio-demo-link i {
    position: absolute;
    right: 7px;
    top: 50%;
    transform: translateY(-50%);
    font-style: normal;
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    padding: 1px 4px;
    border: 1px solid var(--line-strong);
    color: var(--muted);
}

.bio-section {
    padding-top: clamp(40px, 6vh, 68px);
    padding-bottom: clamp(40px, 6vh, 68px);
}

.bio-points {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
    gap: clamp(22px, 3vw, 36px);
}

.bio-points b {
    display: block;
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.bio-points p {
    font-size: 0.88rem;
    color: var(--text-2);
}

.bio-steps {
    list-style: none;
    counter-reset: schritt;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: clamp(22px, 3vw, 44px);
}

.bio-steps li {
    counter-increment: schritt;
    position: relative;
    padding-top: 22px;
}

.bio-steps li::before {
    content: counter(schritt);
    position: absolute;
    top: 0;
    left: 0;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--accent);
}

.bio-steps li::after {
    content: '';
    position: absolute;
    top: 7px;
    left: 18px;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--line), transparent);
}

.bio-steps li:last-child::after {
    background: linear-gradient(90deg, var(--line), transparent 60%);
}

.bio-steps b {
    display: block;
    font-size: 1.02rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.bio-steps p {
    font-size: 0.88rem;
    color: var(--text-2);
}

.bio-preise {
    padding: clamp(52px, 8vh, 92px) 0;
}

.bio-preise h2 {
    font-size: clamp(1.5rem, 3.4vw, 2.2rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.bio-preise-lead {
    max-width: 56ch;
    margin-top: 14px;
    color: var(--text-2);
    font-size: 0.96rem;
}

.bio-tarife {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
    margin-top: 36px;
    align-items: start;
}

.bio-tarif {
    position: relative;
    padding: 26px 24px 28px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: var(--bg-lift);
}

.bio-tarif-mitte {
    border-color: var(--accent);
}

.bio-tarif h3 {
    font-size: 0.94rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.bio-tarif-preis {
    margin-top: 10px;
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
}

.bio-tarif-preis span {
    display: block;
    margin-top: 2px;
    font-size: 0.76rem;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--muted);
}

.bio-tarif-kurz {
    margin-top: 12px;
    font-size: 0.86rem;
    color: var(--text-2);
}

.bio-tarif ul {
    list-style: none;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.bio-tarif li {
    position: relative;
    padding-left: 18px;
    font-size: 0.87rem;
    color: var(--text-2);
    line-height: 1.5;
}

.bio-tarif li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--line);
}

.bio-tarif-mitte li::before {
    background: var(--accent);
}

.bio-tarif li b {
    font-weight: 600;
    color: var(--text);
}

.bio-tarif-hinweis {
    margin-top: 18px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
}

.bio-preise-fuss {
    margin-top: 22px;
    font-size: 0.8rem;
    color: var(--muted);
}

.bio-herkunft {
    padding: clamp(48px, 7vh, 84px) 0;
}

.bio-herkunft-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: clamp(28px, 5vw, 64px);
    align-items: start;
}

.bio-herkunft h2 {
    font-size: clamp(1.4rem, 3vw, 1.95rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 16px;
}

.bio-herkunft p {
    color: var(--text-2);
    font-size: 0.94rem;
}

.bio-herkunft-hinweis {
    padding: 22px 24px;
    border: 1px solid var(--line);
    border-left: 2px solid var(--accent);
    border-radius: 12px;
    background: var(--bg-lift);
}

.bio-herkunft-hinweis .bio-eyebrow {
    margin-bottom: 12px;
}

.bio-herkunft-hinweis p {
    font-size: 0.88rem;
}

.bio-herkunft-hinweis p + p {
    margin-top: 14px;
}

.bio-herkunft-hinweis a {
    color: var(--text);
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-color: var(--muted);
}

.bio-herkunft-hinweis a:hover {
    text-decoration-color: var(--text);
}

@media (max-width: 780px) {
    .bio-herkunft-grid {
        grid-template-columns: 1fr;
    }

    .bio-steps li::after {
        display: none;
    }
}

.bio-close {
    padding-top: clamp(56px, 9vh, 100px);
    padding-bottom: clamp(40px, 6vh, 64px);
    text-align: center;
}

.bio-close h2 {
    font-size: clamp(1.6rem, 4vw, 2.4rem);
    font-weight: 600;
    letter-spacing: -0.032em;
}

.bio-close p {
    margin: 12px auto 26px;
    color: var(--text-2);
    font-size: 0.94rem;
}

.bio-pagefoot {
    border-top: 0;
    padding-bottom: 56px;
    font-size: 0.78rem;
    color: var(--muted);
    display: flex;
    gap: 12px 24px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    text-align: center;
}

.bio-pagefoot a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.bio-pagefoot a:hover {
    color: var(--text);
}

.bio-pagefoot-by {
    flex-basis: 100%;
    margin-top: 4px;
    font-size: 0.74rem;
    opacity: 0.72;
}

.bio-pagefoot-by a {
    color: var(--text-2);
}

.bio-prose {
    max-width: 68ch;
    margin: 0 auto;
    padding: 56px 24px 80px;
}

.bio-prose h1 {
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.bio-prose h2 {
    font-size: 1.02rem;
    font-weight: 600;
    margin: 32px 0 10px;
}

.bio-prose p,
.bio-prose li {
    color: var(--text-2);
    font-size: 0.94rem;
}

.bio-prose ul {
    margin: 10px 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 7px;
}

@media (max-width: 960px) {
    .bio-hero {
        min-height: 0;
        padding: 104px 24px 56px;
    }
    .bio-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 44px;
    }
    .bio-hero-inner {
        max-width: 620px;
    }
    .bio-hero-visual {
        max-width: 520px;
    }
    .bio-phone {
        transform-origin: 50% 50%;
    }
    .bio-hero-brandmark {
        display: none;
    }
}

@media (max-width: 900px) {
    .bd-rahmen {
        grid-template-columns: minmax(0, 1fr);
    }
    .bd-leiste {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 10px 16px;
        border-right: 0;
        border-bottom: 1px solid var(--bd-linie);
    }
    .bd-marke {
        margin-bottom: 0;
    }
    .bd-leiste-nav {
        display: none;
    }
    .bd-leiste-fuss {
        flex-direction: row;
        margin-top: 0;
    }
    .bd-kopf {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }
    .bd-cta {
        position: static;
        justify-content: center;
    }
    .bd-haupt {
        padding: 14px 16px 20px;
    }
}

@media (max-width: 1100px) {
    .bd-raster {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .bd-buehne {
        grid-column: 1 / -1;
        grid-row: auto;
    }
    .bd-quellen {
        grid-column: 1 / -1;
    }
}

@media (max-width: 620px) {
    .bd-raster {
        grid-template-columns: minmax(0, 1fr);
    }
    .bd-balken li {
        grid-template-columns: minmax(0, 1fr) 44px;
    }
    .bd-balken-spur {
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .bio-sticky {
        grid-template-columns: minmax(0, 1fr);
        gap: 30px;
    }
    .bio-sticky-kopf {
        position: static;
    }
    .bio-auth-breit {
        grid-template-columns: minmax(0, 1fr);
        gap: 34px;
    }
    .bio-auth-vorschau {
        position: static;
    }
    .bio-auth-vorschau .bio-phone {
        width: min(226px, 66%);
    }
    .bio-stage-grid {
        grid-template-columns: 1fr;
    }
    .bio-demo-pair {
        max-width: 520px;
    }
}

@media (max-width: 820px) {
    .bio-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .bio-profile {
        padding: 48px 20px 56px;
    }
    .bio-topbar-in {
        height: auto;
        padding: 14px 20px;
        flex-direction: column;
        align-items: flex-start;
    }
    .bio-topbar-float .bio-topbar-in {
        flex-direction: row;
        align-items: center;
        flex-wrap: nowrap;
        height: 62px;
        padding: 0 16px;
        gap: 10px;
    }
    .bio-topbar-float .bio-wordmark {
        height: 17px;
    }
    .bio-topbar-float .bio-topnav {
        flex-wrap: nowrap;
        gap: 7px;
    }
    .bio-topbar-float .bio-btn-mini {
        padding: 6px 10px;
        font-size: 0.74rem;
        white-space: nowrap;
    }
    .bio-hero {
        padding-bottom: clamp(40px, 6vh, 64px);
    }
    .bio-hero-sub {
        font-size: 0.94rem;
    }
    .bio-hero-actions .bio-btn {
        width: 100%;
    }
    .bio-claim .bio-btn {
        flex: 1 1 100%;
    }
    .bio-demo-pair {
        gap: 12px;
    }
    .bio-demo {
        padding: 30px 11px 18px;
    }
    .bio-demo-link {
        padding: 9px 14px;
        font-size: 0.7rem;
    }
    .bio-demo-bio {
        font-size: 0.7rem;
    }
    .bio-pagefoot {
        justify-content: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    .bio-link,
    .bio-link::before,
    .bio-btn,
    .bio-input,
    .bio-textarea,
    .bio-select,
    .bio-phone-link {
        transition: none;
    }
    .bio-phone,
    .bio-band-lauf {
        animation: none;
    }
    .bio-karte:hover {
        transform: none;
    }
    .bio-phone-inhalt > *,
    .bio-phone-url,
    .bio-phone-cover {
        opacity: 1;
        animation: none;
    }
}
