:root {
    --bg: #ffffff;
    --surface: #ffffff;
    --text: #162033;
    --muted: #5a6b84;
    --line: #e8effb;
    --primary: #2563eb;
    --primary-strong: #1d4ed8;
    --secondary: #3b82f6;
    --chip: #f2f7ff;
    --shadow: 0 10px 26px rgba(33, 74, 143, 0.06);
    --radius-lg: 22px;
    --radius-md: 14px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: linear-gradient(180deg, #f8fbff 0%, #fbfdff 18%, #fcfdff 32%, #ffffff 46%, #ffffff 100%),
                            radial-gradient(circle at 12% -6%, rgba(221, 236, 255, 0.4) 0, transparent 40%),
                            radial-gradient(circle at 100% 0%, rgba(233, 242, 255, 0.38) 0, transparent 36%),
                            var(--bg);
    color: var(--text);
    font-family: "Space Grotesk", sans-serif;
    min-height: 100%;
}

.shell {
    width: min(1280px, 94vw);
    margin: 0 auto;
    padding: 24px 0 52px;
}

.hero {
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
}

.hero-body {
    padding: 18px 0 8px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.venue {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 999px;
    padding: 6px 12px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: rgba(252, 254, 255, 0.95);
    color: var(--primary-strong);
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
}

h1 {
    margin: 8px 0 10px;
    font-size: clamp(1.75rem, 3vw, 5.2rem);
    line-height: 1.1;
    max-width: 980px;
    letter-spacing: -0.015em;
    margin-left: auto;
    margin-right: auto;
}

.subtitle {
    margin: 0;
    color: var(--muted);
    max-width: 900px;
    font-size: 1.5rem;
    line-height: 1.6;
    margin-left: auto;
    margin-right: auto;
}

.authors {
    margin: 8px 0 0;
    font-size: 1.42rem;
    font-weight: 600;
    color: #1f2f49;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.22em 0.35em;
}

.affiliations {
    margin: 2px 0 0;
    font-family: "IBM Plex Mono", monospace;
    font-size: 1.12rem;
    color: #5b6f8f;
    line-height: 1.65;
}

.author-link,
.affiliation-link {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 160ms ease, border-color 160ms ease;
}

.author-link:hover,
.author-link:focus-visible,
.affiliation-link:hover,
.affiliation-link:focus-visible {
    color: var(--primary-strong);
    border-color: currentColor;
    outline: none;
}

.links {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.link-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 14px;
    border: 2px solid rgba(22, 32, 51, 0.14);
    font-size: 1.02rem;
    font-weight: 600;
    transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.link-icon {
    width: 16px;
    height: 16px;
    display: inline-block;
    flex: 0 0 auto;
}

.doc-icon {
    fill: currentColor;
}

.link-btn.primary {
    background: #b31b1b;
    color: #fff;
    border-color: #b31b1b;
}

.link-btn.secondary {
    background: #111111;
    color: #fff;
    border-color: #111111;
}

.link-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 18px rgba(23, 34, 27, 0.12);
}

section {
    margin-top: 44px;
}

.hero + section {
    margin-top: 2px;
}

.section-head {
    padding: 0 0 14px;
    border-bottom: 1px solid rgba(22, 32, 51, 0.08);
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.section-head h2 {
    margin: 0;
    font-size: 1.32rem;
    letter-spacing: -0.01em;
}

.section-body {
    padding: 20px 0 0;
}

.teaser-card {
    min-height: 0;
    padding: 12px 0;
    position: relative;
    isolation: isolate;
}

.teaser-card::before {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 100vw;
    transform: translateX(-50%);
    background: transparent;
    z-index: 0;
}

.teaser-media {
    width: min(100%, 1140px);
    height: 400px;
    margin: 0 auto;
    border-radius: 20px;
    display: grid;
    overflow: hidden;
    position: relative;
    z-index: 1;
    box-shadow: none;
}

.teaser-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.teaser-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.teaser-slide.active {
    opacity: 1;
}

.teaser-highlights {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    position: relative;
    z-index: 1;
}

.teaser-highlight {
    padding: 18px 18px 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-top: 4px solid #2563eb;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(22, 32, 51, 0.08);
    backdrop-filter: blur(8px);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.teaser-highlight:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(22, 32, 51, 0.12);
}

.teaser-highlight-tag {
    font-weight: bold;
}

.teaser-highlight:nth-child(1) {
    border-color: rgba(37, 99, 235, 0.18);
    border-top-color: #2563eb;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
}

.teaser-highlight:nth-child(1) .teaser-highlight-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

.teaser-highlight:nth-child(2) {
    border-color: rgba(14, 116, 144, 0.18);
    border-top-color: #0f766e;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 251, 248, 0.98) 100%);
}

.teaser-highlight:nth-child(2) .teaser-highlight-tag {
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
}

.teaser-highlight:nth-child(3) {
    border-color: rgba(234, 88, 12, 0.18);
    border-top-color: #ea580c;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 238, 0.98) 100%);
}

.teaser-highlight:nth-child(3) .teaser-highlight-tag {
    background: rgba(234, 88, 12, 0.1);
    color: #c2410c;
}

.teaser-highlight-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(37, 99, 235, 0.09);
    color: #1d4ed8;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.teaser-highlight h3 {
    margin: 0 0 8px;
    font-size: 1.14rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.teaser-highlight p {
    margin: 0;
    font-size: 0.94rem;
    line-height: 1.55;
    color: #3d4f6b;
}

.teaser-grid {
    position: absolute;
    inset: 0;

    /*background-image: linear-gradient(rgba(59, 130, 246, 0.08) 1px, transparent 1px),
                                        linear-gradient(90deg, rgba(59, 130, 246, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;*/
}

.teaser-label {
    z-index: 1;
    font-family: "IBM Plex Mono", monospace;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(37, 99, 235, 0.35);
    color: var(--primary-strong);
    background: rgba(255, 255, 255, 0.85);
    font-size: 0.9rem;
}

.abstract p {
    margin: 0;
    color: #2f3f58;
    line-height: 1.72;
    font-size: 1.03rem;
}

.abstract-callout {
    margin-top: 18px;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(37, 99, 235, 0.18);
    border-left: 5px solid #FFC300;
    background: linear-gradient(180deg, rgba(255, 251, 235, 0.3) 0%, rgba(255, 246, 204, 0.3) 100%);
}

.pipeline-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.pipeline-stage {
    position: relative;
    padding: 18px 18px 16px;
    border: 1px solid rgba(37, 99, 235, 0.14);
    border-top: 4px solid #2563eb;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 251, 255, 0.98) 100%);
    box-shadow: 0 14px 30px rgba(22, 32, 51, 0.08);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.pipeline-stage:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(22, 32, 51, 0.12);
}

.pipeline-stage:not(:last-child)::after {
    content: "→";
    position: absolute;
    display: none;
    top: 50%;
    left: calc(100% + 14px);
    transform: translate(-50%, -50%);
    color: #8fa2bf;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1;
}

@media (min-width: 921px) {
    .pipeline-stage:not(:last-child)::after {
        display: block;
    }
}

.pipeline-stage:nth-child(1) {
    border-color: rgba(37, 99, 235, 0.18);
    border-top-color: #2563eb;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 247, 255, 0.98) 100%);
}

.pipeline-stage:nth-child(2) {
    border-color: rgba(14, 116, 144, 0.18);
    border-top-color: #0f766e;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 251, 248, 0.98) 100%);
}

.pipeline-stage:nth-child(3) {
    border-color: rgba(234, 88, 12, 0.18);
    border-top-color: #ea580c;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 245, 238, 0.98) 100%);
}

.pipeline-stage-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pipeline-stage:nth-child(1) .pipeline-stage-tag {
    background: rgba(37, 99, 235, 0.1);
    color: #1d4ed8;
}

.pipeline-stage:nth-child(2) .pipeline-stage-tag {
    background: rgba(15, 118, 110, 0.1);
    color: #0f766e;
}

.pipeline-stage:nth-child(3) .pipeline-stage-tag {
    background: rgba(234, 88, 12, 0.1);
    color: #c2410c;
}

.pipeline-stage h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.pipeline-stage p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.58;
    color: #3d4f6b;
}

.pipeline-splits {
    margin-top: 22px;
    width: min(100%, 1080px);
    margin-left: auto;
    margin-right: auto;
}

.pipeline-splits-head {
    margin: 0 0 14px;
    font-size: 1.02rem;
    letter-spacing: -0.01em;
    color: #1f2f49;
}

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

.split-card {
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(22, 32, 51, 0.12);
    box-shadow: 0 14px 30px rgba(22, 32, 51, 0.06);
    transition: transform 160ms ease, box-shadow 160ms ease;
}

.split-card:hover {
	transform: translateY(-4px);
	box-shadow: 0 18px 34px rgba(22, 32, 51, 0.1);
}

.split-card:nth-child(1) {
    border-color: rgba(107, 114, 128, 0.16);
    border-top: 4px solid #94a3b8;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 250, 252, 0.98) 100%);
}

.split-card:nth-child(2) {
    border-color: rgba(120, 113, 108, 0.16);
    border-top: 4px solid #a8a29e;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 249, 0.98) 100%);
}

.split-card-tag {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
    padding: 5px 10px;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.split-card:nth-child(1) .split-card-tag {
    background: rgba(148, 163, 184, 0.18);
    color: #475569;
}

.split-card:nth-child(2) .split-card-tag {
    background: rgba(168, 162, 158, 0.18);
    color: #57534e;
}

.split-card h3 {
    margin: 0 0 8px;
    font-size: 1.08rem;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.split-card p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.58;
    color: #3d4f6b;
}

.split-card-counts {
    margin-top: 8px;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
}

.split-card-count {
    margin: 0;
    display: inline-flex;
    align-items: baseline;
    gap: 2px;
    padding: 8px 8px;
    border-radius: 999px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.split-card:nth-child(1) .split-card-count {
    /* background: rgba(8, 145, 178, 0.12); */
    color: #475569;
}

.split-card:nth-child(2) .split-card-count {
    /* background: rgba(190, 24, 93, 0.12); */
    color: #57534e;
}

.split-card-count strong {
    font-size: 1rem;
    letter-spacing: 0;
}

.method-note {
    margin: 0;
    color: #3c4f6d;
    line-height: 1.65;
}

.method-caption {
    margin: 12px auto 0;
    max-width: 980px;
    color: #5b6f8f;
    font-size: 0.9rem;
    line-height: 1.6;
    text-align: center;
}

.method-figure {
    margin: 14px 0 0;
    border: none;
    border-radius: 20px;
    background: transparent;
    min-height: 340px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    /* box-shadow: 0 16px 36px rgba(33, 74, 143, 0.08); */
}

.method-image {
    width: 90%;
    height: auto;
    display: block;
    opacity: 0;
    transition: opacity 180ms ease;
}

.method-image.ready {
    opacity: 1;
}

.method-fallback {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 20px;
    text-align: center;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #4b5f80;
}

.demo-toolbar {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}

.toolbar-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

label {
    font-weight: 600;
    color: #3d4f6a;
}

select {
    border-radius: 10px;
    border: 1px solid #b7c9e6;
    background: #fdffff;
    color: #1f2f47;
    min-width: min(460px, 92vw);
    max-width: 100%;
    padding: 9px 12px;
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.96rem;
}

.scenario-card {
    margin-top: 14px;
    border: none;
    border-radius: 0;
    background: transparent;
    padding: 0;
}

.scenario-desc {
    margin: 8px 0 0;
    color: #3d4f6b;
    font-size: 1.5rem;
    line-height: 1.65;
}

.graph-grid {
    margin-top: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.frames-row {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 12px;
}

.frame-card {
    margin: 0;
    display: grid;
    gap: 8px;
}

.frame-thumb {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.1);
}

.frame-card figcaption {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.72rem;
    line-height: 1.35;
    color: #5b6f8f;
    text-align: center;
}

.panel {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
}

.panel-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    padding: 0 0 10px;
    border-bottom: 1px solid rgba(22, 32, 51, 0.08);
    background: transparent;
}

.panel-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.panel-head h3 {
    margin: 0;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

.panel button {
    border: 1px solid #bed0ea;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.72);
    padding: 6px 9px;
    cursor: pointer;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.75rem;
}

.panel button:disabled {
    cursor: not-allowed;
    opacity: 0.45;
    filter: grayscale(1);
}

#save-original:disabled,
#save-modified:disabled {
    display: none;
}

.panel button.icon-btn {
    width: 34px;
    height: 34px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.panel button.icon-btn svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.graph {
    width: 100%;
    height: 480px;
    margin-top: 14px;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08), 0 14px 28px rgba(22, 32, 51, 0.05);
}

.footer-note {
    margin-top: 16px;
    color: #657a9b;
    font-size: 0.88rem;
    font-family: "IBM Plex Mono", monospace;
}

.layout-export {
    margin-top: 18px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(245, 249, 255, 0.9);
    box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
}

.layout-export-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.layout-export-title {
    margin: 0;
    font-size: 0.84rem;
    font-family: "IBM Plex Mono", monospace;
    color: #425674;
}

.layout-export textarea {
    width: 100%;
    min-height: 150px;
    resize: vertical;
    border: 1px solid #c8d7ee;
    border-radius: 12px;
    padding: 12px;
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.8rem;
    line-height: 1.45;
    color: #20324d;
    background: #ffffff;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.table-card {
    border: none;
    border-radius: 0;
    overflow: visible;
    background: transparent;
    transition: transform 160ms ease;
}

.table-card:hover {
	transform: translateY(-4px);
}

.table-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.table-card h3 {
    margin: 0;
    padding: 0 0 4px;
    font-size: 0.93rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: transparent;
}

.table-badge {
    display: inline-block;
    height: 22px;
    transform: translateY(-4px);
    width: auto;
    flex: 0 0 auto;
}

.table-subtitle {
    margin: 0 0 12px;
    padding: 0 0 12px;
    border-bottom: 1px solid rgba(22, 32, 51, 0.08);
    color: #5b6f8f;
    font-size: 0.82rem;
    line-height: 1.45;
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.92rem;
}

.result-table th,
.result-table td {
    padding: 9px 11px;
    border-bottom: 1px solid #e6edf9;
    text-align: left;
}

.result-table thead th {
    font-family: "IBM Plex Mono", monospace;
    font-size: 0.78rem;
    color: #4b5f80;
    background: transparent;
}

.result-table tbody tr:last-child td {
    border-bottom: none;
}

.result-table td:first-child,
.result-table th:first-child {
    text-align: left;
}

.result-table td,
.result-table th {
    text-align: right;
}
.result-table th:last-child {
    text-align: right;
}

.result-better {
    font-weight: 700;
    color: #1d4ed8;
}

.table-remark {
    margin-top: 12px;
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(244, 248, 255, 0.95);
    border: 1px solid rgba(37, 99, 235, 0.1);
    font-size: 0.84rem;
    line-height: 1.5;
    color: #4a5d7a;
}

.cite-box {
    border: none;
    background: #050505;
    border-radius: 18px;
    overflow: visible;
    padding: 20px 22px;
}

.cite-head {
    margin: 0;
    padding: 0 0 12px;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    background: transparent;
    color: #f5f7fb;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.cite-box pre {
    margin: 0;
    padding: 16px 0 0;
    font-size: 0.86rem;
    line-height: 1.55;
    overflow-x: auto;
    font-family: "IBM Plex Mono", monospace;
    color: #e8edf7;
    background: transparent;
}

.ack-section {
    margin-top: 10px;
    padding-top: 8px;
}

.ack-title {
    margin: 0 0 6px;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b6f8f;
}

.ack-text {
    margin: 0;
    max-width: 100%;
    color: #667892;
    font-size: 0.88rem;
    line-height: 1.55;
    text-align: center;
}

@media (max-width: 920px) {
    .hero-body,
    .section-body {
        padding: 18px;
    }

    .section-head {
        padding: 0 0 12px;
    }

    .graph-grid {
        grid-template-columns: 1fr;
    }

    .frames-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .graph {
        height: 420px;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    .teaser-highlights {
        grid-template-columns: 1fr;
    }

    .pipeline-grid {
        grid-template-columns: 1fr;
    }

    .pipeline-splits {
        width: 100%;
        margin-top: 18px;
    }

    .pipeline-splits-head {
        font-size: 0.96rem;
        line-height: 1.5;
    }

    .split-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .split-card {
        padding: 16px 14px;
    }

    .split-card h3 {
        font-size: 1rem;
    }

    .split-card-counts {
        flex-wrap: wrap;
        justify-content: center;
        gap: 6px 8px;
    }

    .split-card-count {
        padding: 6px 8px;
        font-size: 0.66rem;
        line-height: 1.2;
        border-radius: 12px;
    }

    select {
        min-width: 0;
        width: 100%;
    }
}