.asmbr-app {
    --asmbr-navy: #071f41;
    --asmbr-blue: #0f5ea8;
    --asmbr-blue-dark: #0b3d79;
    --asmbr-red: #ee3b46;
    --asmbr-red-dark: #b91c2a;
    --asmbr-sky: #f4f8fc;
    --asmbr-bg: #f8fafc;
    --asmbr-card: #ffffff;
    --asmbr-border: #e2e8f0;
    --asmbr-text: #1e293b;
    --asmbr-muted: #64748b;
    --asmbr-green: #0f766e;
    width: min(1380px, 100%);
    margin: 0 auto;
    padding: 28px 0 64px;
    color: var(--asmbr-text);
    font-family: inherit;
    line-height: 1.6;
}

.asmbr-app *,
.asmbr-app *::before,
.asmbr-app *::after {
    box-sizing: border-box;
}

.asmbr-app button,
.asmbr-app input {
    font: inherit;
}

.asmbr-app button {
    cursor: pointer;
}

.asmbr-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 420px);
    gap: 34px;
    align-items: center;
    padding: clamp(30px, 5vw, 58px);
    border: 1px solid rgba(15, 94, 168, .16);
    border-radius: 32px;
    background:
        radial-gradient(circle at 92% 12%, rgba(238, 59, 70, .14), transparent 30%),
        radial-gradient(circle at 12% 100%, rgba(15, 94, 168, .15), transparent 38%),
        linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 22px 55px rgba(7, 31, 65, .08);
}

.asmbr-hero::after {
    content: "";
    position: absolute;
    width: 290px;
    height: 290px;
    right: -140px;
    bottom: -175px;
    border-radius: 50%;
    border: 44px solid rgba(15, 94, 168, .06);
    pointer-events: none;
}

.asmbr-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 12px;
    border: 1px solid rgba(15, 94, 168, .17);
    border-radius: 999px;
    color: var(--asmbr-blue-dark);
    background: rgba(255, 255, 255, .75);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .02em;
}

.asmbr-eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--asmbr-red);
    box-shadow: 0 0 0 5px rgba(238, 59, 70, .11);
}

.asmbr-hero h1 {
    margin: 15px 0 12px;
    color: var(--asmbr-navy);
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.08;
    letter-spacing: -.035em;
}

.asmbr-hero-copy > p {
    max-width: 760px;
    margin: 0;
    color: #475569;
    font-size: clamp(16px, 1.7vw, 20px);
}

.asmbr-hero-note {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 7px;
    padding: 22px 24px;
    border: 1px solid rgba(238, 59, 70, .24);
    border-radius: 22px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 14px 30px rgba(7, 31, 65, .08);
}

.asmbr-hero-note strong {
    color: var(--asmbr-red-dark);
    font-size: 16px;
}

.asmbr-hero-note span {
    color: #475569;
    font-size: 14px;
    line-height: 1.55;
}

.asmbr-profile,
.asmbr-stage-card,
.asmbr-side-card,
.asmbr-result-card,
.asmbr-faq {
    border: 1px solid var(--asmbr-border);
    border-radius: 28px;
    background: var(--asmbr-card);
    box-shadow: 0 14px 40px rgba(7, 31, 65, .06);
}

.asmbr-profile {
    margin-top: 24px;
    padding: clamp(22px, 3vw, 32px);
}

.asmbr-section-heading {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.asmbr-step {
    display: inline-grid;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: linear-gradient(135deg, var(--asmbr-blue), var(--asmbr-blue-dark));
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 8px 18px rgba(15, 94, 168, .23);
}

.asmbr-section-heading h2 {
    margin: 0;
    color: var(--asmbr-navy);
    font-size: clamp(21px, 2.4vw, 29px);
    line-height: 1.22;
}

.asmbr-section-heading p {
    margin: 5px 0 0;
    color: var(--asmbr-muted);
    font-size: 14px;
}

.asmbr-profile-grid {
    display: grid;
    grid-template-columns: minmax(260px, .72fr) minmax(480px, 1.28fr);
    gap: 20px;
    margin-top: 22px;
}

.asmbr-fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.asmbr-fieldset legend,
.asmbr-control-label {
    display: block;
    margin-bottom: 8px;
    color: #334155;
    font-size: 13px;
    font-weight: 800;
}

.asmbr-segmented {
    display: grid;
    gap: 8px;
}

.asmbr-segmented-two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.asmbr-age-segmented {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asmbr-segmented button {
    min-height: 66px;
    padding: 10px 12px;
    border: 1px solid var(--asmbr-border);
    border-radius: 16px;
    color: #334155;
    background: #fff;
    transition: border-color .18s ease, background .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.asmbr-segmented button:hover {
    transform: translateY(-1px);
    border-color: rgba(15, 94, 168, .42);
    box-shadow: 0 8px 20px rgba(15, 94, 168, .08);
}

.asmbr-segmented button.is-active {
    border-color: var(--asmbr-blue);
    color: var(--asmbr-blue-dark);
    background: #eef6ff;
    box-shadow: inset 0 0 0 1px rgba(15, 94, 168, .12), 0 8px 20px rgba(15, 94, 168, .1);
}

.asmbr-segmented-two button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 800;
}

.asmbr-button-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    border-radius: 10px;
    color: var(--asmbr-blue);
    background: rgba(15, 94, 168, .09);
    font-size: 20px;
    font-weight: 900;
}

.asmbr-age-segmented button span,
.asmbr-age-segmented button small {
    display: block;
}

.asmbr-age-segmented button span {
    font-size: 17px;
    font-weight: 900;
    line-height: 1.2;
}

.asmbr-age-segmented button small {
    margin-top: 3px;
    color: var(--asmbr-muted);
    font-size: 11px;
    font-weight: 700;
}

.asmbr-tool-grid {
    display: grid;
    grid-template-columns: minmax(270px, .72fr) minmax(470px, 1.4fr) minmax(330px, .88fr);
    gap: 22px;
    align-items: start;
    margin-top: 24px;
}

.asmbr-left-sidebar {
    display: grid;
    gap: 18px;
    align-content: start;
    position: sticky;
    top: 96px;
}

.asmbr-stage-card,
.asmbr-side-card,
.asmbr-result-card {
    min-width: 0;
    padding: clamp(20px, 2.5vw, 28px);
}

.asmbr-side-heading h2 {
    font-size: clamp(18px, 2vw, 23px);
}

.asmbr-profile-grid-vertical {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 18px;
}

.asmbr-stage-heading {
    margin-bottom: 20px;
}

.asmbr-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 14px 24px;
    align-items: flex-end;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--asmbr-border);
    border-radius: 18px;
    background: var(--asmbr-bg);
}

.asmbr-controls-vertical {
    display: grid;
    gap: 14px;
    justify-content: stretch;
}

.asmbr-controls-vertical .asmbr-mini-tabs {
    width: 100%;
}

.asmbr-controls-vertical .asmbr-mini-tabs button {
    flex: 1 1 auto;
}

.asmbr-side-note {
    margin-top: 14px;
    padding: 14px 15px;
    border-radius: 16px;
    border: 1px solid rgba(15, 94, 168, .12);
    background: #f8fbff;
}

.asmbr-side-note strong {
    display: block;
    margin-bottom: 5px;
    color: var(--asmbr-blue-dark);
    font-size: 13px;
}

.asmbr-side-note p {
    margin: 0;
    color: var(--asmbr-muted);
    font-size: 13px;
    line-height: 1.55;
}

.asmbr-control-group {
    min-width: 0;
}

.asmbr-control-label {
    margin: 0 0 6px;
}

.asmbr-mini-tabs {
    display: inline-flex;
    gap: 5px;
    padding: 4px;
    border: 1px solid #d9e2ec;
    border-radius: 13px;
    background: #fff;
}

.asmbr-mini-tabs button {
    min-height: 38px;
    padding: 7px 16px;
    border: 0;
    border-radius: 10px;
    color: #475569;
    background: transparent;
    font-size: 13px;
    font-weight: 800;
    transition: background .18s ease, color .18s ease, box-shadow .18s ease;
}

.asmbr-mini-tabs button.is-active {
    color: #fff;
    background: var(--asmbr-blue);
    box-shadow: 0 6px 15px rgba(15, 94, 168, .22);
}

.asmbr-category-tabs button[data-set-category="organ"].is-active {
    background: var(--asmbr-red);
    box-shadow: 0 6px 15px rgba(238, 59, 70, .2);
}

.asmbr-stage-status {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 10px;
    align-items: center;
    min-height: 48px;
    margin: 14px 0 0;
    padding: 11px 15px;
    border-radius: 15px;
    color: var(--asmbr-navy);
    background: #eef6ff;
}

.asmbr-stage-status strong {
    font-size: 14px;
}

.asmbr-stage-status > span:last-child {
    margin-left: auto;
    color: var(--asmbr-muted);
    font-size: 12px;
    font-weight: 700;
}

.asmbr-status-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--asmbr-blue);
    box-shadow: 0 0 0 5px rgba(15, 94, 168, .1);
}

.asmbr-body-stage {
    position: relative;
    margin-top: 14px;
    overflow: hidden;
    border: 1px solid var(--asmbr-border);
    border-radius: 24px;
    background:
        linear-gradient(rgba(15, 94, 168, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 94, 168, .035) 1px, transparent 1px),
        #fff;
    background-size: 34px 34px;
}

.asmbr-body-canvas {
    position: relative;
    width: min(100%, 660px);
    margin: 0 auto;
    aspect-ratio: 2 / 3;
}

.asmbr-body-image,
.asmbr-overlay {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
}

.asmbr-body-image {
    object-fit: contain;
    user-select: none;
    -webkit-user-drag: none;
}

.asmbr-overlay {
    overflow: visible;
}

.asmbr-overlay [hidden] {
    display: none !important;
    pointer-events: none !important;
}

.asmbr-overlay g.is-inactive {
    display: none !important;
    pointer-events: none !important;
}

.asmbr-region {
    fill: rgba(15, 94, 168, .001);
    stroke: rgba(15, 94, 168, .001);
    stroke-width: 8;
    vector-effect: non-scaling-stroke;
    pointer-events: all;
    outline: none;
    transition: fill .15s ease, stroke .15s ease, filter .15s ease;
}

.asmbr-region[data-category="organ"] {
    fill: rgba(238, 59, 70, .001);
    stroke: rgba(238, 59, 70, .001);
    stroke-width: 10;
}

.asmbr-region:hover,
.asmbr-region:focus-visible {
    fill: rgba(15, 94, 168, .3);
    stroke: rgba(7, 31, 65, .9);
    filter: drop-shadow(0 4px 6px rgba(7, 31, 65, .22));
}

.asmbr-region[data-category="organ"]:hover,
.asmbr-region[data-category="organ"]:focus-visible {
    fill: rgba(238, 59, 70, .31);
    stroke: rgba(185, 28, 42, .94);
}

.asmbr-region.is-selected {
    fill: rgba(15, 94, 168, .43);
    stroke: #071f41;
    stroke-width: 5;
    filter: drop-shadow(0 5px 8px rgba(7, 31, 65, .25));
}

.asmbr-region[data-category="organ"].is-selected {
    fill: rgba(238, 59, 70, .43);
    stroke: #9f1239;
}

.asmbr-region.is-filtered {
    display: none;
    pointer-events: none;
}

.asmbr-tooltip {
    position: absolute;
    z-index: 8;
    left: 50%;
    top: 50%;
    max-width: 220px;
    padding: 8px 12px;
    border-radius: 10px;
    color: #fff;
    background: rgba(7, 31, 65, .94);
    box-shadow: 0 10px 25px rgba(7, 31, 65, .24);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transform: translate(-50%, calc(-100% - 13px));
    transition: opacity .12s ease;
}

.asmbr-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -6px;
    width: 12px;
    height: 12px;
    background: rgba(7, 31, 65, .94);
    transform: translateX(-50%) rotate(45deg);
}

.asmbr-tooltip.is-visible {
    opacity: 1;
}

.asmbr-region-directory {
    margin-top: 16px;
    border: 1px solid var(--asmbr-border);
    border-radius: 18px;
    background: #fff;
}

.asmbr-region-directory > summary {
    position: relative;
    padding: 15px 46px 15px 17px;
    list-style: none;
    color: var(--asmbr-navy);
    font-size: 14px;
    font-weight: 900;
    cursor: pointer;
}

.asmbr-region-directory > summary::-webkit-details-marker {
    display: none;
}

.asmbr-region-directory > summary::after {
    content: "+";
    position: absolute;
    right: 17px;
    top: 50%;
    width: 26px;
    height: 26px;
    display: grid;
    place-items: center;
    border-radius: 9px;
    color: var(--asmbr-blue);
    background: #eef6ff;
    transform: translateY(-50%);
}

.asmbr-region-directory[open] > summary::after {
    content: "−";
}

.asmbr-directory-intro {
    margin: -2px 16px 13px;
    color: var(--asmbr-muted);
    font-size: 12px;
    line-height: 1.55;
}

.asmbr-directory-tools {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px 13px;
}

.asmbr-directory-tools label {
    flex: 1;
}

.asmbr-directory-tools input {
    width: 100%;
    min-height: 43px;
    padding: 9px 13px;
    border: 1px solid var(--asmbr-border);
    border-radius: 12px;
    color: var(--asmbr-text);
    background: var(--asmbr-bg);
    outline: none;
}

.asmbr-directory-tools input:focus {
    border-color: var(--asmbr-blue);
    box-shadow: 0 0 0 3px rgba(15, 94, 168, .1);
}

.asmbr-directory-tools > span {
    flex: 0 0 auto;
    color: var(--asmbr-muted);
    font-size: 12px;
    font-weight: 800;
}

.asmbr-region-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-height: 360px;
    overflow: auto;
    padding: 0 16px 16px;
}

.asmbr-directory-button {
    min-width: 0;
    padding: 10px 11px;
    border: 1px solid var(--asmbr-border);
    border-radius: 12px;
    color: #334155;
    background: #fff;
    text-align: left;
    transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.asmbr-directory-button:hover,
.asmbr-directory-button.is-selected {
    transform: translateY(-1px);
    border-color: rgba(15, 94, 168, .5);
    background: #eef6ff;
}

.asmbr-directory-button span,
.asmbr-directory-button small {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
}

.asmbr-directory-button span {
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.asmbr-directory-button small {
    margin-top: 2px;
    color: var(--asmbr-muted);
    font-size: 10px;
    font-weight: 700;
}

.asmbr-directory-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 18px;
    border-radius: 12px;
    color: var(--asmbr-muted);
    background: var(--asmbr-bg);
    text-align: center;
    font-size: 13px;
}

.asmbr-result-card {
    position: sticky;
    top: 96px;
    min-width: 0;
    padding: clamp(22px, 2.5vw, 28px);
}

.asmbr-empty-state {
    text-align: center;
}

.asmbr-empty-icon {
    display: grid;
    width: 64px;
    height: 64px;
    margin: 2px auto 16px;
    place-items: center;
    border: 1px solid rgba(15, 94, 168, .18);
    border-radius: 21px;
    color: var(--asmbr-blue);
    background: #eef6ff;
    font-size: 34px;
    font-weight: 300;
}

.asmbr-empty-state h2 {
    margin: 0;
    color: var(--asmbr-navy);
    font-size: 24px;
}

.asmbr-empty-state > p {
    margin: 8px auto 18px;
    max-width: 380px;
    color: var(--asmbr-muted);
    font-size: 14px;
}

.asmbr-empty-state ol {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    text-align: left;
}

.asmbr-empty-state li {
    position: relative;
    padding: 10px 12px 10px 42px;
    border-radius: 12px;
    color: #475569;
    background: var(--asmbr-bg);
    font-size: 13px;
}

.asmbr-empty-state li::before {
    content: counter(list-item);
    position: absolute;
    left: 11px;
    top: 50%;
    display: grid;
    width: 22px;
    height: 22px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--asmbr-blue);
    font-size: 11px;
    font-weight: 900;
    transform: translateY(-50%);
}

.asmbr-result-topline {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: space-between;
}

.asmbr-result-category {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--asmbr-blue-dark);
    background: #eaf4ff;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .02em;
}

.asmbr-result-category[data-category="organ"] {
    color: #9f1239;
    background: #fff1f2;
}

.asmbr-clear {
    padding: 6px 0;
    border: 0;
    color: var(--asmbr-muted);
    background: transparent;
    font-size: 12px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.asmbr-result-content > h2 {
    margin: 14px 0 2px;
    color: var(--asmbr-navy);
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.15;
}

.asmbr-context {
    margin: 0;
    color: var(--asmbr-blue);
    font-size: 12px;
    font-weight: 800;
}

.asmbr-region-summary {
    margin: 14px 0 0;
    color: #475569;
    font-size: 15px;
}

.asmbr-result-section {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid var(--asmbr-border);
}

.asmbr-result-section h3 {
    margin: 0 0 11px;
    color: var(--asmbr-navy);
    font-size: 16px;
}

.asmbr-branch-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.asmbr-branch-list span {
    display: inline-flex;
    padding: 7px 10px;
    border: 1px solid rgba(15, 94, 168, .14);
    border-radius: 10px;
    color: var(--asmbr-blue-dark);
    background: #f5f9ff;
    font-size: 12px;
    font-weight: 800;
}

.asmbr-first-step {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid rgba(15, 118, 110, .17);
    border-radius: 15px;
    background: #f0fdfa;
}

.asmbr-first-step > span {
    display: grid;
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    place-items: center;
    border-radius: 9px;
    color: #fff;
    background: var(--asmbr-green);
    font-weight: 900;
}

.asmbr-first-step strong {
    display: block;
    color: #115e59;
    font-size: 12px;
}

.asmbr-first-step p {
    margin: 3px 0 0;
    color: #3f5f5c;
    font-size: 13px;
    line-height: 1.55;
}

.asmbr-small-help {
    margin: -5px 0 11px;
    color: var(--asmbr-muted);
    font-size: 12px;
}

.asmbr-pain-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.asmbr-pain-chips button {
    padding: 7px 10px;
    border: 1px solid var(--asmbr-border);
    border-radius: 999px;
    color: #475569;
    background: #fff;
    font-size: 11px;
    font-weight: 800;
    transition: border-color .16s ease, background .16s ease, color .16s ease;
}

.asmbr-pain-chips button:hover,
.asmbr-pain-chips button.is-active {
    border-color: var(--asmbr-blue);
    color: var(--asmbr-blue-dark);
    background: #eef6ff;
}

.asmbr-urgent-box {
    margin-top: 22px;
    padding: 17px;
    border: 1px solid rgba(238, 59, 70, .22);
    border-radius: 17px;
    background: #fff7f7;
    transition: border-color .18s ease, box-shadow .18s ease, background .18s ease;
}

.asmbr-urgent-box.is-emphasized {
    border-color: var(--asmbr-red);
    background: #fff1f2;
    box-shadow: 0 0 0 4px rgba(238, 59, 70, .08);
}

.asmbr-urgent-title {
    display: flex;
    gap: 9px;
    align-items: center;
    color: #9f1239;
    font-size: 13px;
}

.asmbr-urgent-title > span {
    display: grid;
    flex: 0 0 25px;
    width: 25px;
    height: 25px;
    place-items: center;
    border-radius: 8px;
    color: #fff;
    background: var(--asmbr-red);
    font-weight: 900;
}

.asmbr-urgent-box ul {
    display: grid;
    gap: 6px;
    margin: 12px 0 0;
    padding-left: 19px;
    color: #7f1d1d;
    font-size: 12px;
}

.asmbr-urgent-box > p {
    margin: 12px 0 0;
    padding-top: 10px;
    border-top: 1px solid rgba(238, 59, 70, .17);
    color: #9f1239;
    font-size: 11px;
    font-weight: 900;
}

.asmbr-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.asmbr-info-grid article {
    position: relative;
    overflow: hidden;
    padding: 24px;
    border: 1px solid var(--asmbr-border);
    border-radius: 22px;
    background: #fff;
}

.asmbr-info-grid article > span {
    display: inline-flex;
    margin-bottom: 13px;
    color: var(--asmbr-blue);
    font-size: 12px;
    font-weight: 900;
}

.asmbr-info-grid article > span::after {
    content: "";
    width: 36px;
    height: 1px;
    margin: 9px 0 0 9px;
    background: rgba(15, 94, 168, .3);
}

.asmbr-info-grid h2 {
    margin: 0;
    color: var(--asmbr-navy);
    font-size: 18px;
}

.asmbr-info-grid p {
    margin: 8px 0 0;
    color: var(--asmbr-muted);
    font-size: 13px;
}

.asmbr-faq {
    margin-top: 24px;
    padding: clamp(22px, 3vw, 32px);
}

.asmbr-faq .asmbr-section-heading {
    margin-bottom: 18px;
}

.asmbr-faq details {
    border-top: 1px solid var(--asmbr-border);
}

.asmbr-faq details:last-child {
    border-bottom: 1px solid var(--asmbr-border);
}

.asmbr-faq summary {
    position: relative;
    padding: 16px 45px 16px 0;
    list-style: none;
    color: var(--asmbr-navy);
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
}

.asmbr-faq summary::-webkit-details-marker {
    display: none;
}

.asmbr-faq summary::after {
    content: "+";
    position: absolute;
    right: 4px;
    top: 50%;
    color: var(--asmbr-blue);
    font-size: 25px;
    font-weight: 400;
    transform: translateY(-50%);
}

.asmbr-faq details[open] summary::after {
    content: "−";
}

.asmbr-faq details p {
    margin: -3px 0 17px;
    padding-right: 40px;
    color: var(--asmbr-muted);
    font-size: 14px;
}

.asmbr-medical-disclaimer {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 15px;
    color: #475569;
    background: #eef2f7;
    font-size: 12px;
}

.asmbr-medical-disclaimer strong {
    flex: 0 0 auto;
    color: var(--asmbr-navy);
}

@media (max-width: 1180px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(260px, .72fr) minmax(430px, 1.28fr);
    }

    .asmbr-result-card {
        position: static;
        grid-column: 1 / -1;
    }

    .asmbr-left-sidebar {
        top: 78px;
    }
}

@media (max-width: 900px) {
    .asmbr-app {
        padding-top: 18px;
    }

    .asmbr-hero {
        grid-template-columns: 1fr;
    }

    .asmbr-tool-grid {
        grid-template-columns: 1fr;
    }

    .asmbr-left-sidebar,
    .asmbr-result-card {
        position: static;
    }

    .asmbr-left-sidebar {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 680px) {
    .asmbr-app {
        width: 100%;
        padding: 10px 0 38px;
    }

    .asmbr-hero,
    .asmbr-profile,
    .asmbr-stage-card,
    .asmbr-side-card,
    .asmbr-result-card,
    .asmbr-faq {
        border-radius: 20px;
    }

    .asmbr-hero {
        gap: 22px;
        padding: 26px 20px;
    }

    .asmbr-hero h1 {
        font-size: 36px;
    }

    .asmbr-profile,
    .asmbr-stage-card,
    .asmbr-side-card,
    .asmbr-result-card,
    .asmbr-faq {
        padding: 19px;
    }

    .asmbr-left-sidebar {
        grid-template-columns: 1fr;
    }

    .asmbr-age-segmented {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .asmbr-controls {
        display: grid;
        justify-content: stretch;
    }

    .asmbr-mini-tabs {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        width: 100%;
    }

    .asmbr-category-tabs {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .asmbr-mini-tabs button {
        min-width: 0;
        padding-right: 8px;
        padding-left: 8px;
    }

    .asmbr-stage-status {
        align-items: flex-start;
    }

    .asmbr-stage-status > span:last-child {
        width: 100%;
        margin-left: 19px;
    }

    .asmbr-body-stage {
        border-radius: 18px;
    }

    .asmbr-region-list {
        grid-template-columns: 1fr 1fr;
    }

    .asmbr-info-grid {
        grid-template-columns: 1fr;
    }

    .asmbr-medical-disclaimer {
        display: block;
    }

    .asmbr-medical-disclaimer strong {
        display: block;
        margin-bottom: 4px;
    }
}

@media (max-width: 430px) {
    .asmbr-segmented-two,
    .asmbr-region-list {
        grid-template-columns: 1fr;
    }

    .asmbr-category-tabs {
        grid-template-columns: 1fr;
    }

    .asmbr-directory-tools {
        align-items: stretch;
        flex-direction: column;
    }

    .asmbr-directory-tools > span {
        text-align: right;
    }
}

@media (prefers-reduced-motion: reduce) {
    .asmbr-app *,
    .asmbr-app *::before,
    .asmbr-app *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* v1.2.3 — tam genişlikli çalışma alanı ve SEO/GEO içerik katmanı */
body.asmbr-tool-page {
    overflow-x: clip;
}

.asmbr-app {
    width: calc(100vw - 24px);
    max-width: 1760px;
    margin-right: 0;
    margin-left: calc(50% - 50vw + 12px);
    padding-top: 12px;
}

.asmbr-tool-intro {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    padding: 18px 22px;
    border: 1px solid rgba(15, 94, 168, .15);
    border-radius: 22px;
    background: linear-gradient(135deg, #ffffff 0%, #f4f8fc 100%);
    box-shadow: 0 12px 34px rgba(7, 31, 65, .055);
}

.asmbr-tool-intro-copy {
    min-width: 0;
}

.asmbr-tool-intro h1 {
    margin: 7px 0 4px;
    color: var(--asmbr-navy);
    font-size: clamp(29px, 3vw, 42px);
    line-height: 1.08;
    letter-spacing: -.025em;
}

.asmbr-tool-intro p {
    max-width: 980px;
    margin: 0;
    color: #475569;
    font-size: 15px;
}

.asmbr-tool-alert {
    display: grid;
    flex: 0 0 min(360px, 30vw);
    gap: 3px;
    padding: 12px 15px;
    border: 1px solid rgba(238, 59, 70, .2);
    border-radius: 15px;
    background: #fff7f7;
}

.asmbr-tool-alert strong {
    color: var(--asmbr-red-dark);
    font-size: 13px;
}

.asmbr-tool-alert span {
    color: #7f1d1d;
    font-size: 12px;
    line-height: 1.45;
}

.asmbr-tool-grid {
    grid-template-columns: minmax(280px, 320px) minmax(620px, 1fr) minmax(360px, 430px);
    gap: 20px;
    margin-top: 16px;
}

.asmbr-left-sidebar,
.asmbr-result-card {
    top: 84px;
}

.asmbr-stage-card,
.asmbr-side-card,
.asmbr-result-card {
    padding: clamp(18px, 1.7vw, 25px);
}

.asmbr-stage-heading {
    margin-bottom: 12px;
}

.asmbr-stage-heading h2 {
    font-size: clamp(20px, 1.8vw, 26px);
}

.asmbr-stage-heading p {
    font-size: 13px;
}

.asmbr-body-canvas {
    width: min(100%, 760px);
}

.asmbr-region-directory {
    margin-top: 12px;
}

.asmbr-seo-content,
.asmbr-faq,
.asmbr-medical-disclaimer {
    width: min(1480px, 100%);
    margin-right: auto;
    margin-left: auto;
}

.asmbr-seo-content {
    margin-top: 24px;
    content-visibility: auto;
    contain-intrinsic-size: 1600px;
}

.asmbr-seo-intro {
    padding: clamp(24px, 3vw, 38px);
    border: 1px solid var(--asmbr-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(7, 31, 65, .05);
}

.asmbr-seo-kicker {
    display: inline-flex;
    padding: 6px 10px;
    border-radius: 999px;
    color: var(--asmbr-blue-dark);
    background: #eef6ff;
    font-size: 12px;
    font-weight: 900;
}

.asmbr-seo-intro h2 {
    max-width: 1050px;
    margin: 13px 0 12px;
    color: var(--asmbr-navy);
    font-size: clamp(27px, 3vw, 40px);
    line-height: 1.16;
    letter-spacing: -.02em;
}

.asmbr-seo-intro p {
    max-width: 1180px;
    margin: 10px 0 0;
    color: #475569;
    font-size: 15px;
    line-height: 1.75;
}

.asmbr-common-answers {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 16px;
}

.asmbr-common-answers article {
    padding: 20px;
    border: 1px solid var(--asmbr-border);
    border-radius: 20px;
    background: #fff;
}

.asmbr-common-answers h3 {
    margin: 0;
    color: var(--asmbr-navy);
    font-size: 17px;
    line-height: 1.35;
}

.asmbr-common-answers p {
    margin: 8px 0 0;
    color: var(--asmbr-muted);
    font-size: 13px;
    line-height: 1.65;
}

.asmbr-region-guide {
    margin-top: 16px;
    padding: clamp(22px, 3vw, 34px);
    border: 1px solid var(--asmbr-border);
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 14px 40px rgba(7, 31, 65, .045);
}

.asmbr-seo-heading {
    margin-bottom: 18px;
}

.asmbr-region-groups {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.asmbr-region-group {
    min-width: 0;
    padding: 18px;
    border: 1px solid var(--asmbr-border);
    border-radius: 19px;
    background: var(--asmbr-bg);
}

.asmbr-region-group > h3 {
    margin: 0 0 10px;
    color: var(--asmbr-navy);
    font-size: 17px;
}

.asmbr-region-accordion {
    border-radius: 14px;
    background: #fff;
}

.asmbr-region-accordion details {
    border-top: 1px solid var(--asmbr-border);
}

.asmbr-region-accordion details:first-child {
    border-top: 0;
}

.asmbr-region-accordion summary {
    position: relative;
    padding: 12px 38px 12px 13px;
    list-style: none;
    color: #24364e;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.45;
    cursor: pointer;
}

.asmbr-region-accordion summary::-webkit-details-marker {
    display: none;
}

.asmbr-region-accordion summary::after {
    content: "+";
    position: absolute;
    right: 13px;
    top: 50%;
    color: var(--asmbr-blue);
    font-size: 19px;
    transform: translateY(-50%);
}

.asmbr-region-accordion details[open] summary::after {
    content: "−";
}

.asmbr-region-answer {
    padding: 0 13px 13px;
}

.asmbr-region-answer p {
    margin: 7px 0 0;
    color: #536174;
    font-size: 12px;
    line-height: 1.65;
}

.asmbr-region-answer strong {
    color: var(--asmbr-navy);
}

.asmbr-faq {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

@media (min-width: 1784px) {
    .asmbr-app {
        width: 1760px;
        margin-left: calc(50% - 880px);
    }
}

@media (max-width: 1320px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(270px, 320px) minmax(0, 1fr);
    }

    .asmbr-result-card {
        position: static;
        grid-column: 1 / -1;
    }
}

@media (max-width: 900px) {
    .asmbr-tool-intro {
        align-items: stretch;
        flex-direction: column;
    }

    .asmbr-tool-alert {
        flex-basis: auto;
    }

    .asmbr-common-answers {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .asmbr-region-groups {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 680px) {
    .asmbr-app {
        width: calc(100vw - 16px);
        margin-left: calc(50% - 50vw + 8px);
        padding-top: 8px;
    }

    .asmbr-tool-intro {
        padding: 17px;
        border-radius: 18px;
    }

    .asmbr-tool-intro h1 {
        font-size: 29px;
    }

    .asmbr-common-answers {
        grid-template-columns: 1fr;
    }

    .asmbr-seo-intro,
    .asmbr-region-guide {
        border-radius: 20px;
    }
}


/* v1.2.4 — ilk ekrana sığan çalışma alanı, mobil hızlı kullanım ve taşma düzeltmeleri */
.asmbr-app,
.asmbr-app * {
    min-width: 0;
}

.asmbr-tool-intro {
    min-height: 92px;
    padding: 12px 18px;
    gap: 16px;
}

.asmbr-tool-intro h1 {
    margin: 4px 0 2px;
    font-size: clamp(27px, 2.25vw, 36px);
}

.asmbr-tool-intro p {
    font-size: 13px;
    line-height: 1.45;
}

.asmbr-eyebrow {
    padding: 5px 9px;
    font-size: 11px;
}

.asmbr-tool-alert {
    flex-basis: 300px;
    padding: 10px 13px;
}

.asmbr-tool-grid {
    grid-template-columns: minmax(238px, 270px) minmax(500px, 1fr) minmax(330px, 380px);
    gap: 14px;
    margin-top: 12px;
}

.asmbr-left-sidebar,
.asmbr-stage-card,
.asmbr-result-card {
    max-height: calc(100svh - 184px);
}

.asmbr-left-sidebar {
    gap: 10px;
    overflow: auto;
    scrollbar-width: thin;
}

.asmbr-stage-card {
    display: flex;
    flex-direction: column;
    height: calc(100svh - 184px);
    min-height: 620px;
    padding: 14px;
}

.asmbr-result-card {
    height: calc(100svh - 184px);
    min-height: 620px;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
}

.asmbr-side-card,
.asmbr-result-card {
    padding: 15px;
    border-radius: 20px;
}

.asmbr-side-heading {
    gap: 9px;
}

.asmbr-side-heading .asmbr-step {
    flex-basis: 31px;
    width: 31px;
    height: 31px;
    border-radius: 10px;
    font-size: 12px;
}

.asmbr-side-heading h2 {
    font-size: 18px;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.asmbr-side-heading p {
    margin-top: 3px;
    font-size: 11px;
    line-height: 1.45;
}

.asmbr-profile-grid-vertical {
    gap: 10px;
    margin-top: 12px;
}

.asmbr-fieldset legend,
.asmbr-control-label {
    margin-bottom: 5px;
    font-size: 11px;
}

.asmbr-segmented {
    gap: 5px;
}

.asmbr-segmented button {
    min-height: 48px;
    padding: 6px 7px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.15;
    overflow-wrap: anywhere;
}

.asmbr-button-icon {
    width: 25px;
    height: 25px;
    border-radius: 8px;
    font-size: 16px;
}

.asmbr-age-segmented button span {
    font-size: 13px;
}

.asmbr-age-segmented button small {
    margin-top: 2px;
    font-size: 9px;
}

.asmbr-controls-vertical {
    gap: 9px;
    margin-top: 10px;
    padding: 10px;
    border-radius: 14px;
}

.asmbr-mini-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    gap: 3px;
    padding: 3px;
}

.asmbr-category-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.asmbr-mini-tabs button {
    min-width: 0;
    min-height: 34px;
    padding: 5px 4px;
    font-size: 10px;
    line-height: 1.15;
    white-space: normal;
    overflow-wrap: anywhere;
}

.asmbr-side-note {
    margin-top: 9px;
    padding: 10px 11px;
    border-radius: 13px;
}

.asmbr-side-note strong {
    margin-bottom: 2px;
    font-size: 11px;
}

.asmbr-side-note p {
    font-size: 10px;
    line-height: 1.45;
}

.asmbr-stage-heading {
    gap: 10px;
    margin-bottom: 8px;
}

.asmbr-stage-heading .asmbr-step {
    flex-basis: 32px;
    width: 32px;
    height: 32px;
    border-radius: 10px;
    font-size: 12px;
}

.asmbr-stage-heading h2 {
    font-size: clamp(18px, 1.55vw, 23px);
}

.asmbr-stage-heading p {
    margin-top: 2px;
    font-size: 11px;
}

.asmbr-stage-status {
    min-height: 38px;
    margin-top: 0;
    padding: 7px 11px;
    border-radius: 12px;
}

.asmbr-stage-status strong {
    font-size: 12px;
}

.asmbr-stage-status > span:last-child {
    font-size: 10px;
}

.asmbr-body-stage {
    flex: 1 1 auto;
    min-height: 0;
    margin-top: 8px;
    border-radius: 18px;
}

.asmbr-body-canvas {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    aspect-ratio: 2 / 3;
}

.asmbr-region-directory {
    flex: 0 0 auto;
    margin-top: 8px;
    border-radius: 14px;
}

.asmbr-region-directory > summary {
    padding: 10px 40px 10px 13px;
    font-size: 11px;
}

.asmbr-region-directory > summary::after {
    right: 11px;
    width: 22px;
    height: 22px;
}

.asmbr-directory-intro {
    margin: 0 12px 8px;
    font-size: 10px;
    line-height: 1.45;
}

.asmbr-result-topline {
    align-items: flex-start;
}

.asmbr-result-category {
    max-width: 58%;
    white-space: normal;
    overflow-wrap: anywhere;
}

.asmbr-clear {
    flex: 0 0 auto;
    white-space: nowrap;
}

.asmbr-result-content > h2 {
    margin-top: 10px;
    font-size: clamp(24px, 2vw, 31px);
    overflow-wrap: anywhere;
}

.asmbr-context,
.asmbr-region-summary,
.asmbr-first-step p,
.asmbr-urgent-box li,
.asmbr-urgent-box > p {
    overflow-wrap: anywhere;
}

.asmbr-region-summary {
    margin-top: 10px;
    font-size: 13px;
}

.asmbr-result-section {
    margin-top: 16px;
    padding-top: 14px;
}

.asmbr-result-section h3 {
    font-size: 14px;
}

.asmbr-branch-list {
    gap: 5px;
}

.asmbr-branch-list span {
    max-width: 100%;
    padding: 5px 7px;
    font-size: 10px;
    line-height: 1.3;
    white-space: normal;
    overflow-wrap: anywhere;
}

.asmbr-first-step {
    margin-top: 13px;
    padding: 11px;
}

.asmbr-pain-chips {
    gap: 5px;
}

.asmbr-pain-chips button {
    max-width: 100%;
    padding: 5px 7px;
    font-size: 9px;
    line-height: 1.25;
    white-space: normal;
}

.asmbr-urgent-box {
    margin-top: 14px;
    padding: 12px;
}

.asmbr-urgent-title {
    align-items: flex-start;
    font-size: 11px;
    line-height: 1.35;
}

.asmbr-urgent-box ul {
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.45;
}

@media (min-width: 1200px) and (max-height: 800px) {
    .asmbr-tool-intro {
        min-height: 78px;
        padding-top: 9px;
        padding-bottom: 9px;
    }

    .asmbr-eyebrow {
        display: none;
    }

    .asmbr-tool-intro h1 {
        margin-top: 0;
        font-size: 29px;
    }

    .asmbr-left-sidebar,
    .asmbr-stage-card,
    .asmbr-result-card {
        height: calc(100svh - 152px);
        max-height: calc(100svh - 152px);
        min-height: 560px;
    }

    .asmbr-side-heading p,
    .asmbr-stage-heading p,
    .asmbr-side-note {
        display: none;
    }

    .asmbr-segmented button {
        min-height: 42px;
    }
}

@media (max-width: 1320px) and (min-width: 901px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(230px, 260px) minmax(480px, 1fr) minmax(310px, 350px);
    }
}

@media (max-width: 1120px) and (min-width: 761px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    }

    .asmbr-result-card {
        grid-column: 1 / -1;
        height: auto;
        min-height: 0;
        max-height: none;
        position: static;
    }

    .asmbr-left-sidebar,
    .asmbr-stage-card {
        height: calc(100svh - 184px);
        max-height: calc(100svh - 184px);
    }
}

@media (max-width: 760px) {
    body.asmbr-tool-page {
        overflow-x: hidden;
    }

    .asmbr-app {
        width: calc(100vw - 10px);
        margin-left: calc(50% - 50vw + 5px);
        padding-top: 5px;
        padding-bottom: 34px;
    }

    .asmbr-tool-intro {
        display: block;
        min-height: 0;
        padding: 10px 12px;
        border-radius: 15px;
    }

    .asmbr-eyebrow,
    .asmbr-tool-alert {
        display: none;
    }

    .asmbr-tool-intro h1 {
        margin: 0;
        font-size: clamp(23px, 7vw, 28px);
        line-height: 1.1;
    }

    .asmbr-tool-intro p {
        margin-top: 3px;
        font-size: 11px;
        line-height: 1.35;
    }

    .asmbr-tool-grid {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-top: 7px;
    }

    .asmbr-left-sidebar {
        order: 1;
        position: static;
        display: grid;
        gap: 7px;
        width: 100%;
        height: auto;
        max-height: none;
        overflow: visible;
    }

    .asmbr-stage-card {
        order: 2;
        width: 100%;
        height: min(68svh, 600px);
        min-height: 480px;
        max-height: 600px;
        padding: 9px;
        border-radius: 16px;
    }

    .asmbr-result-card {
        order: 3;
    }

    .asmbr-side-card {
        padding: 10px;
        border-radius: 15px;
        box-shadow: 0 6px 18px rgba(7, 31, 65, .045);
    }

    .asmbr-side-heading {
        align-items: center;
        gap: 7px;
    }

    .asmbr-side-heading .asmbr-step {
        flex-basis: 25px;
        width: 25px;
        height: 25px;
        font-size: 10px;
    }

    .asmbr-side-heading h2 {
        font-size: 14px;
        line-height: 1.2;
    }

    .asmbr-side-heading p,
    .asmbr-side-note {
        display: none;
    }

    .asmbr-profile-grid-vertical {
        display: grid;
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        gap: 7px;
        margin-top: 7px;
    }

    .asmbr-fieldset legend,
    .asmbr-control-label {
        margin-bottom: 3px;
        font-size: 9px;
    }

    .asmbr-segmented {
        gap: 3px;
    }

    .asmbr-segmented button {
        min-height: 38px;
        padding: 4px 3px;
        border-radius: 9px;
        font-size: 10px;
    }

    .asmbr-segmented-two button {
        gap: 3px;
    }

    .asmbr-button-icon {
        width: 20px;
        height: 20px;
        border-radius: 6px;
        font-size: 12px;
    }

    .asmbr-age-segmented button span {
        font-size: 10px;
    }

    .asmbr-age-segmented button small {
        display: none;
    }

    .asmbr-controls-vertical {
        display: grid;
        grid-template-columns: minmax(0, .72fr) minmax(0, 1.28fr);
        gap: 6px;
        margin-top: 7px;
        padding: 7px;
    }

    .asmbr-mini-tabs button {
        min-height: 30px;
        padding: 3px 2px;
        font-size: 9px;
    }

    .asmbr-stage-heading {
        margin-bottom: 5px;
    }

    .asmbr-stage-heading .asmbr-step {
        display: none;
    }

    .asmbr-stage-heading h2 {
        font-size: 15px;
    }

    .asmbr-stage-heading p {
        display: none;
    }

    .asmbr-stage-status {
        min-height: 32px;
        padding: 5px 8px;
    }

    .asmbr-stage-status strong {
        font-size: 10px;
    }

    .asmbr-stage-status > span:last-child {
        margin-left: auto;
        width: auto;
        font-size: 8px;
    }

    .asmbr-status-dot {
        width: 7px;
        height: 7px;
        box-shadow: 0 0 0 3px rgba(15, 94, 168, .1);
    }

    .asmbr-body-stage {
        margin-top: 5px;
        border-radius: 13px;
    }

    .asmbr-body-canvas {
        width: auto;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        margin: 0 auto;
    }

    .asmbr-region-directory {
        margin-top: 5px;
    }

    .asmbr-region-directory > summary {
        min-height: 32px;
        padding: 7px 34px 7px 10px;
        font-size: 9px;
    }

    .asmbr-directory-intro {
        display: none;
    }

    .asmbr-result-card {
        position: fixed;
        z-index: 99999;
        right: 5px;
        bottom: 5px;
        left: 5px;
        width: auto;
        height: min(72svh, 620px);
        min-height: 0;
        max-height: 72svh;
        padding: 16px 14px 20px;
        border-radius: 22px 22px 16px 16px;
        overflow-y: auto;
        background: #fff;
        box-shadow: 0 -18px 50px rgba(7, 31, 65, .24);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(calc(100% + 20px));
        transition: transform .22s ease, opacity .18s ease, visibility .18s ease;
    }

    .asmbr-result-card::before {
        content: "";
        display: block;
        width: 42px;
        height: 4px;
        margin: -6px auto 10px;
        border-radius: 99px;
        background: #cbd5e1;
    }

    .asmbr-app.has-selection .asmbr-result-card {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .asmbr-app:not(.has-selection) .asmbr-result-card {
        display: block;
    }

    .asmbr-empty-state {
        display: none;
    }

    .asmbr-result-content > h2 {
        font-size: 24px;
    }

    .asmbr-result-section {
        margin-top: 14px;
        padding-top: 12px;
    }

    .asmbr-seo-content,
    .asmbr-faq,
    .asmbr-medical-disclaimer {
        margin-top: 16px;
    }
}

@media (max-width: 390px) {
    .asmbr-profile-grid-vertical {
        grid-template-columns: 1fr;
    }

    .asmbr-controls-vertical {
        grid-template-columns: 1fr;
    }

    .asmbr-stage-card {
        height: min(65svh, 540px);
        min-height: 440px;
    }
}

@media (min-width: 1121px) and (max-width: 1320px) {
    .asmbr-result-card {
        position: sticky;
        grid-column: auto;
        top: 84px;
        height: calc(100svh - 184px);
        min-height: 620px;
        max-height: calc(100svh - 184px);
    }
}

@media (max-width: 760px) {
    .asmbr-stage-card {
        height: min(60svh, 520px);
        min-height: 430px;
        max-height: 520px;
    }

    .asmbr-overlay {
        touch-action: manipulation;
    }
}

@media (max-width: 330px) {
    .asmbr-profile-grid-vertical,
    .asmbr-controls-vertical {
        grid-template-columns: 1fr;
    }

    .asmbr-stage-card {
        height: min(57svh, 480px);
        min-height: 410px;
    }
}


/* v1.2.5 — daha dengeli masaüstü yerleşimi, bölgesel belirti seçenekleri ve dinamik acil uyarı */
@media (min-width: 1321px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(238px, 265px) minmax(560px, 760px) minmax(430px, 1fr);
        gap: 14px;
    }

    .asmbr-body-stage {
        display: flex;
        justify-content: flex-end;
        padding-right: clamp(4px, 1.2vw, 20px);
    }

    .asmbr-body-canvas {
        margin-right: 0;
        margin-left: auto;
    }

    .asmbr-result-card {
        width: 100%;
    }
}

@media (min-width: 1121px) and (max-width: 1320px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(230px, 250px) minmax(480px, 650px) minmax(340px, 1fr);
        gap: 12px;
    }

    .asmbr-body-stage {
        display: flex;
        justify-content: flex-end;
        padding-right: 8px;
    }

    .asmbr-body-canvas {
        margin-right: 0;
        margin-left: auto;
    }
}

.asmbr-first-step > div {
    min-width: 0;
}

.asmbr-first-step-primary {
    margin: 3px 0 0;
    color: #315c58;
    font-size: 12px;
    line-height: 1.58;
}

.asmbr-assessment-title {
    display: block;
    margin-top: 10px;
    color: #0f5f58;
    font-size: 11px;
    font-weight: 900;
}

.asmbr-assessment-list {
    display: grid;
    gap: 5px;
    margin: 7px 0 0;
    padding-left: 17px;
    color: #3f5f5c;
    font-size: 10.5px;
    line-height: 1.5;
}

.asmbr-pain-chips button {
    border-color: var(--asmbr-border);
    color: #475569;
    background: #fff;
    box-shadow: none;
}

.asmbr-pain-chips button.is-active {
    border-color: var(--asmbr-blue);
    color: var(--asmbr-blue-dark);
    background: #eef6ff;
    box-shadow: inset 0 0 0 1px rgba(15, 94, 168, .08);
}

.asmbr-pain-chips button:not(.is-active):focus,
.asmbr-pain-chips button:not(.is-active):focus-visible {
    border-color: var(--asmbr-border);
    color: #475569;
    background: #fff;
    box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
    .asmbr-pain-chips button:not(.is-active):hover {
        border-color: rgba(15, 94, 168, .48);
        color: var(--asmbr-blue-dark);
        background: #f6faff;
    }
}

@media (hover: none) {
    .asmbr-pain-chips button:not(.is-active):hover {
        border-color: var(--asmbr-border);
        color: #475569;
        background: #fff;
    }
}

.asmbr-urgent-box,
.asmbr-urgent-box.is-safe {
    border-color: rgba(15, 118, 110, .24);
    background: #f0fdfa;
    box-shadow: none;
}

.asmbr-urgent-box .asmbr-urgent-title {
    color: #115e59;
}

.asmbr-urgent-box .asmbr-urgent-title > span {
    background: var(--asmbr-green);
}

.asmbr-urgent-box ul {
    color: #365f5b;
}

.asmbr-urgent-box > p {
    border-top-color: rgba(15, 118, 110, .18);
    color: #115e59;
}

.asmbr-urgent-box.is-emphasized {
    border-color: var(--asmbr-red);
    background: #fff1f2;
    box-shadow: 0 0 0 4px rgba(238, 59, 70, .08);
}

.asmbr-urgent-box.is-emphasized .asmbr-urgent-title {
    color: #9f1239;
}

.asmbr-urgent-box.is-emphasized .asmbr-urgent-title > span {
    background: var(--asmbr-red);
}

.asmbr-urgent-box.is-emphasized ul {
    color: #7f1d1d;
}

.asmbr-urgent-box.is-emphasized > p {
    border-top-color: rgba(238, 59, 70, .17);
    color: #9f1239;
}

@media (max-width: 760px) {
    .asmbr-first-step-primary {
        font-size: 12px;
    }

    .asmbr-assessment-list {
        font-size: 11px;
    }
}


/* v1.2.6 — başlıkla aynı satırda durum bilgisi, ortalanmış manken ve geniş sonuç alanı */
@media (min-width: 1321px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(238px, 260px) minmax(540px, 640px) minmax(560px, 1fr);
        gap: 12px;
    }

    .asmbr-left-sidebar,
    .asmbr-stage-card,
    .asmbr-result-card {
        height: calc(100svh - 160px);
        max-height: calc(100svh - 160px);
        min-height: 620px;
    }

    .asmbr-stage-card {
        padding: 12px;
    }

    .asmbr-stage-heading {
        display: flex;
        align-items: center;
        gap: 9px;
        min-height: 50px;
        margin-bottom: 6px;
    }

    .asmbr-stage-heading-copy {
        min-width: 0;
        flex: 0 1 auto;
    }

    .asmbr-stage-heading-copy h2 {
        font-size: clamp(19px, 1.45vw, 24px);
        white-space: nowrap;
    }

    .asmbr-stage-heading-copy p {
        margin-top: 1px;
        font-size: 10px;
        white-space: nowrap;
    }

    .asmbr-stage-heading .asmbr-stage-status {
        flex: 1 1 250px;
        width: auto;
        min-width: 220px;
        max-width: 330px;
        min-height: 38px;
        margin: 0 0 0 auto;
        padding: 6px 9px;
    }

    .asmbr-stage-heading .asmbr-stage-status strong {
        font-size: 11px;
    }

    .asmbr-stage-heading .asmbr-stage-status > span:last-child {
        margin-left: auto;
        font-size: 9px;
        white-space: nowrap;
    }

    .asmbr-body-stage {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        margin-top: 0;
        padding: 0;
    }

    .asmbr-body-canvas {
        width: auto;
        height: 100%;
        max-width: 100%;
        max-height: 100%;
        margin: 0 auto;
    }

    .asmbr-region-directory {
        margin-top: 5px;
    }

    .asmbr-region-directory > summary {
        min-height: 31px;
        padding-top: 6px;
        padding-bottom: 6px;
    }

    .asmbr-result-card {
        width: 100%;
        padding: 14px 16px;
        overflow-y: auto;
        scrollbar-width: none;
    }

    .asmbr-result-card::-webkit-scrollbar {
        display: none;
    }

    .asmbr-result-card .asmbr-result-content > h2 {
        font-size: clamp(25px, 1.8vw, 32px);
    }

    .asmbr-result-card .asmbr-region-summary {
        font-size: 12px;
        line-height: 1.55;
    }

    .asmbr-result-card .asmbr-result-section {
        margin-top: 13px;
        padding-top: 12px;
    }

    .asmbr-result-card .asmbr-first-step {
        margin-top: 11px;
        padding: 10px 11px;
    }

    .asmbr-result-card .asmbr-urgent-box {
        margin-top: 11px;
        padding: 11px;
    }
}

@media (min-width: 1121px) and (max-width: 1320px) {
    .asmbr-tool-grid {
        grid-template-columns: minmax(225px, 245px) minmax(470px, 580px) minmax(430px, 1fr);
        gap: 10px;
    }

    .asmbr-stage-heading {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        gap: 7px;
        margin-bottom: 5px;
    }

    .asmbr-stage-heading-copy {
        min-width: 0;
        flex: 1 1 220px;
    }

    .asmbr-stage-heading .asmbr-stage-status {
        flex: 1 1 210px;
        width: auto;
        margin: 0 0 0 auto;
    }

    .asmbr-body-stage {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        padding: 0;
    }

    .asmbr-body-canvas {
        margin: 0 auto;
    }

    .asmbr-result-card {
        scrollbar-width: none;
    }

    .asmbr-result-card::-webkit-scrollbar {
        display: none;
    }
}

.asmbr-stage-heading .asmbr-stage-status {
    box-shadow: inset 0 0 0 1px rgba(15, 94, 168, .04);
}

.asmbr-tooltip {
    z-index: 40;
    max-width: 270px;
    padding: 10px 14px;
    border: 1px solid rgba(255, 255, 255, .18);
    font-size: 13px;
    line-height: 1.3;
    box-shadow: 0 14px 30px rgba(7, 31, 65, .3);
}

@media (max-width: 760px) {
    .asmbr-stage-heading {
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .asmbr-stage-heading .asmbr-step {
        display: none;
    }

    .asmbr-stage-heading-copy h2 {
        font-size: 15px;
    }

    .asmbr-stage-heading-copy p {
        display: none;
    }

    .asmbr-stage-heading .asmbr-stage-status {
        width: 100%;
        margin: 0;
    }

    .asmbr-body-stage {
        justify-content: center;
        padding: 0;
    }

    .asmbr-body-canvas {
        margin: 0 auto;
        transform: none;
    }
}

/* v1.2.7 — mobilde parmakla bölge önizleme, iki adımlı detay açma ve tam boy manken */
.asmbr-mobile-detail-bar {
    display: none;
}

.asmbr-region.is-previewed {
    fill: rgba(15, 94, 168, .34);
    stroke: #0b3d79;
    stroke-width: 5;
    filter: drop-shadow(0 5px 8px rgba(7, 31, 65, .22));
}

.asmbr-region[data-category="organ"].is-previewed {
    fill: rgba(238, 59, 70, .34);
    stroke: #9f1239;
}

@media (max-width: 760px) {
    .asmbr-stage-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: visible;
    }

    .asmbr-body-stage {
        flex: none;
        width: 100%;
        height: auto !important;
        min-height: 0;
        max-height: none;
        aspect-ratio: 2 / 3;
        overflow: hidden;
        touch-action: none;
        overscroll-behavior: contain;
        user-select: none;
        -webkit-user-select: none;
    }

    .asmbr-body-canvas {
        width: 100% !important;
        height: 100% !important;
        max-width: none !important;
        max-height: none !important;
        margin: 0 auto !important;
        aspect-ratio: 2 / 3;
    }

    .asmbr-body-image,
    .asmbr-overlay {
        width: 100%;
        height: 100%;
        object-fit: contain;
        touch-action: none;
    }

    .asmbr-overlay {
        pointer-events: auto;
    }

    .asmbr-mobile-detail-bar {
        position: fixed;
        z-index: 99998;
        right: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom));
        left: 8px;
        display: flex;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
        padding: 10px;
        border: 1px solid rgba(15, 94, 168, .22);
        border-radius: 16px;
        background: rgba(255, 255, 255, .97);
        box-shadow: 0 14px 38px rgba(7, 31, 65, .22);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(calc(100% + 18px));
        transition: transform .2s ease, opacity .16s ease, visibility .16s ease;
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .asmbr-app.has-preview:not(.has-selection) .asmbr-mobile-detail-bar {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
        transform: translateY(0);
    }

    .asmbr-mobile-detail-bar > div {
        min-width: 0;
        flex: 1 1 auto;
    }

    .asmbr-mobile-detail-bar strong,
    .asmbr-mobile-detail-bar span {
        display: block;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }

    .asmbr-mobile-detail-bar strong {
        color: var(--asmbr-navy);
        font-size: 12px;
        line-height: 1.25;
    }

    .asmbr-mobile-detail-bar span {
        margin-top: 2px;
        color: var(--asmbr-muted);
        font-size: 9px;
    }

    .asmbr-mobile-detail-bar button {
        flex: 0 0 auto;
        min-height: 42px;
        padding: 8px 14px;
        border: 0;
        border-radius: 12px;
        color: #fff;
        background: var(--asmbr-blue);
        box-shadow: 0 8px 18px rgba(15, 94, 168, .22);
        font-size: 11px;
        font-weight: 900;
        white-space: nowrap;
    }

    .asmbr-mobile-detail-bar button:disabled {
        color: #64748b;
        background: #e2e8f0;
        box-shadow: none;
    }

    .asmbr-result-card {
        padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }

    .asmbr-stage-heading-copy h2::after {
        content: " · Parmağınızı manken üzerinde gezdirin";
        color: var(--asmbr-muted);
        font-size: 10px;
        font-weight: 700;
    }
}

@media (max-width: 390px) {
    .asmbr-stage-card {
        height: auto !important;
        min-height: 0 !important;
        max-height: none !important;
    }

    .asmbr-body-stage,
    .asmbr-body-canvas {
        aspect-ratio: 2 / 3;
    }

    .asmbr-mobile-detail-bar {
        right: 5px;
        left: 5px;
        padding: 8px;
    }

    .asmbr-mobile-detail-bar span {
        display: none;
    }
}


/* v1.2.8 — mobil doğal dikey kaydırma ve beşli yaş aralığı */
@media (max-width: 760px) {
    .asmbr-body-stage,
    .asmbr-body-image,
    .asmbr-overlay {
        touch-action: pan-y !important;
        overscroll-behavior-y: auto !important;
    }

    .asmbr-age-segmented {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }

    .asmbr-age-segmented button {
        min-width: 0;
        padding-right: 2px !important;
        padding-left: 2px !important;
    }

    .asmbr-age-segmented button span {
        font-size: 9px !important;
        white-space: nowrap;
    }
}

@media (max-width: 420px) {
    .asmbr-age-segmented {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}


/* v1.2.9 — yaş seçeneklerini 3+2 düzenleme ve mobil detay arka planına dokunarak kapatma */
.asmbr-mobile-result-backdrop {
    display: none;
}

@media (max-width: 760px) {
    .asmbr-age-segmented {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 5px !important;
    }

    .asmbr-age-segmented button {
        min-height: 48px;
        padding: 6px 3px !important;
    }

    .asmbr-age-segmented button span {
        font-size: 10px !important;
    }

    .asmbr-age-segmented button small {
        font-size: 8px !important;
    }

    .asmbr-mobile-result-backdrop {
        position: fixed;
        z-index: 99997;
        inset: 0;
        display: block;
        width: 100%;
        height: 100%;
        margin: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: rgba(7, 31, 65, .34);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        touch-action: manipulation;
        transition: opacity .18s ease, visibility .18s ease;
        -webkit-tap-highlight-color: transparent;
    }

    .asmbr-app.has-selection .asmbr-mobile-result-backdrop {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }
}


/* v1.2.10 — masaüstü üç sütun yerleşimini koru; mobil arka plan grid elemanı değildir */
.asmbr-mobile-result-backdrop {
    display: none !important;
}

@media (min-width: 1121px) {
    .asmbr-tool-grid {
        align-items: start;
    }

    .asmbr-tool-grid > .asmbr-left-sidebar {
        grid-column: 1;
        grid-row: 1;
    }

    .asmbr-tool-grid > .asmbr-stage-card {
        grid-column: 2;
        grid-row: 1;
    }

    .asmbr-tool-grid > .asmbr-result-card {
        grid-column: 3;
        grid-row: 1;
        align-self: start;
    }
}

@media (max-width: 760px) {
    .asmbr-mobile-result-backdrop {
        display: block !important;
    }
}

/* v1.2.11 — yalnızca dahili bağlantı davranışları */
.asmbr-branch-list a {
    display: inline-flex;
    max-width: 100%;
    padding: 7px 10px;
    border: 1px solid rgba(15, 94, 168, .14);
    border-radius: 10px;
    color: var(--asmbr-blue-dark);
    background: #f5f9ff;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.3;
    text-decoration: none;
    white-space: normal;
    overflow-wrap: anywhere;
}
.asmbr-branch-list a:hover,
.asmbr-branch-list a:focus-visible {
    border-color: rgba(15, 94, 168, .34);
    color: var(--asmbr-blue);
    background: #eef6ff;
    text-decoration: underline;
    text-underline-offset: 2px;
}
.asmbr-related-links-section[hidden] { display: none !important; }
@media (max-width: 760px) {
    .asmbr-branch-list a {
        padding: 5px 7px;
        font-size: 10px;
    }
}


/* v1.2.13 — masaüstünde mouse tekeriyle doğal sayfa kaydırma */
@media (min-width: 761px) {
    .asmbr-left-sidebar,
    .asmbr-result-card {
        overscroll-behavior: auto !important;
        overscroll-behavior-y: auto !important;
    }
}
