:root {
    --bg: #f4f6f7;
    --surface: rgba(255, 255, 255, 0.82);
    --line: rgba(22, 52, 67, 0.12);
    --text: #163443;
    --muted: #536b77;
    --accent: #3f8291;
    --accent-dark: #275564;
    --accent-soft: #d8eaef;
    --shadow: 0 24px 70px rgba(42, 76, 93, 0.12);
    --radius-lg: 28px;
    --radius-md: 20px;
}

.studio-shell {
    font-family: "Inter", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(57, 124, 194, 0.1), transparent 28%),
        radial-gradient(circle at right top, rgba(75, 184, 232, 0.08), transparent 24%),
        linear-gradient(180deg, #f6f8fb 0%, #eef2f7 100%);
}

:root,
html[data-studio-theme="light"] {
    --studio-bg: #eff3f8;
    --studio-surface: rgba(255, 255, 255, 0.88);
    --studio-surface-strong: rgba(255, 255, 255, 0.98);
    --studio-surface-muted: rgba(242, 246, 250, 0.92);
    --studio-line: rgba(35, 52, 74, 0.1);
    --studio-line-strong: rgba(35, 52, 74, 0.16);
    --studio-text: #182535;
    --studio-muted: #647487;
    --studio-accent: #2563eb;
    --studio-accent-strong: #1d4ed8;
    --studio-accent-soft: rgba(37, 99, 235, 0.1);
    --studio-shadow: 0 18px 42px rgba(15, 23, 42, 0.08);
}

html[data-studio-theme="dark"] {
    --studio-bg: #0b1120;
    --studio-surface: rgba(15, 23, 42, 0.82);
    --studio-surface-strong: rgba(17, 24, 39, 0.94);
    --studio-surface-muted: rgba(21, 31, 52, 0.9);
    --studio-line: rgba(148, 163, 184, 0.14);
    --studio-line-strong: rgba(148, 163, 184, 0.22);
    --studio-text: #e5edf8;
    --studio-muted: #95a4bb;
    --studio-accent: #7dd3fc;
    --studio-accent-strong: #38bdf8;
    --studio-accent-soft: rgba(56, 189, 248, 0.14);
    --studio-shadow: 0 22px 56px rgba(2, 6, 23, 0.42);
}

.studio-shell .cookie-launcher,
.studio-shell .cookie-banner,
.studio-shell .cookie-panel {
    display: none !important;
}

.studio-shell .flash-stack {
    position: fixed;
    top: 16px;
    left: 50%;
    z-index: 40;
    width: min(720px, calc(100% - 32px));
    margin: 0;
    transform: translateX(-50%);
}

.studio-shell .flash {
    border-radius: 0.25rem;
    border-color: var(--studio-line);
    background: var(--studio-surface-strong);
    box-shadow: var(--studio-shadow);
}

.studio-shell .shell {
    width: min(1280px, calc(100% - 40px));
}

.studio-shell .hero,
.studio-shell .section {
    background: transparent;
}

.studio-shell .hero {
    padding: 28px 0 0;
}

.studio-shell .section {
    padding: 26px 0 40px;
}

.studio-shell .page-hero,
.studio-shell .auth-card,
.studio-shell .studio-bulk-actions,
.studio-shell .card {
    border: 1px solid var(--studio-line);
    border-radius: 0.25rem;
    background: var(--studio-surface);
    box-shadow: var(--studio-shadow);
    backdrop-filter: blur(14px);
}

.studio-shell .page-hero,
.studio-shell .card {
    padding: 26px;
}

.studio-shell,
.studio-shell .copy,
.studio-shell .contact p,
.studio-shell .card p,
.studio-shell .hero-card__list,
.studio-shell .section-copy,
.studio-shell .faq-item p,
.studio-shell .bullet-list,
.studio-shell .text-link,
.studio-shell .meta-line,
.studio-shell .field span,
.studio-shell h1,
.studio-shell h2,
.studio-shell h3 {
    color: var(--studio-text);
}

.studio-shell h1,
.studio-shell h2,
.studio-shell h3 {
    letter-spacing: -0.03em;
}

.studio-shell h1 {
    font-size: clamp(2rem, 3.8vw, 3.25rem);
    line-height: 1;
}

.studio-shell h2 {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    line-height: 1.1;
}

.studio-shell h3 {
    font-size: 1rem;
    line-height: 1.25;
}

.studio-shell p,
.studio-shell li,
.studio-shell input,
.studio-shell textarea,
.studio-shell select,
.studio-shell button {
    font-size: 0.92rem;
}

.studio-shell .lead {
    max-width: 64ch;
    color: var(--studio-muted);
    font-size: 1rem;
    line-height: 1.6;
    font-weight: 400;
}

.studio-shell .copy,
.studio-shell .meta-line,
.studio-shell small,
.studio-shell .field small {
    color: var(--studio-muted);
}

.studio-shell .eyebrow {
    color: var(--studio-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
}

.studio-app__header {
    position: sticky;
    top: 0;
    z-index: 24;
    padding: 16px 0 0;
    backdrop-filter: blur(18px);
}

.studio-app__bar {
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border: 1px solid var(--studio-line);
    border-radius: 26px;
    background: var(--studio-surface-strong);
    box-shadow: var(--studio-shadow);
}

.studio-app__brand,
.studio-app__toolbar,
.studio-app__logo,
.studio-theme-toggle,
.studio-app__site-link {
    display: inline-flex;
    align-items: center;
}

.studio-app__brand {
    gap: 14px;
    min-width: 0;
}

.studio-app__logo {
    gap: 12px;
    min-width: 0;
}

.studio-app__logo strong {
    display: block;
    color: var(--studio-text);
    font-size: 0.84rem;
    font-weight: 700;
}

.studio-app__logo small {
    display: block;
    color: var(--studio-muted);
    font-size: 0.72rem;
}

.studio-app__logo-mark {
    display: inline-grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border-radius: 0.25rem;
    color: #ffffff;
    background: linear-gradient(135deg, var(--studio-accent), var(--studio-accent-strong));
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.studio-app__workspace {
    padding: 8px 12px;
    border: 1px solid var(--studio-line);
    border-radius: 0.25rem;
    color: var(--studio-muted);
    background: var(--studio-surface-muted);
    font-size: 0.84rem;
    white-space: nowrap;
}

.studio-app__toolbar {
    gap: 10px;
}

.studio-theme-toggle,
.studio-app__site-link {
    min-height: 40px;
    padding: 0 14px;
    border: 1px solid var(--studio-line);
    border-radius: 0.25rem;
    background: var(--studio-surface-muted);
    color: var(--studio-text);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        transform 160ms ease;
}

.studio-theme-toggle:hover,
.studio-app__site-link:hover,
.studio-app__nav a:hover {
    transform: translateY(-1px);
}

.studio-theme-toggle {
    gap: 10px;
}

.studio-theme-toggle__sun,
.studio-theme-toggle__moon {
    opacity: 0.52;
}

.studio-theme-toggle[data-theme="light"] .studio-theme-toggle__sun,
.studio-theme-toggle[data-theme="dark"] .studio-theme-toggle__moon {
    opacity: 1;
}

.studio-app__nav-wrap {
    padding-top: 12px;
}

.studio-app__nav {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow-x: auto;
    padding: 4px 2px 2px;
}

.studio-app__nav a {
    flex: 0 0 auto;
    padding: 10px 14px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: var(--studio-muted);
    background: transparent;
    font-size: 0.84rem;
    font-weight: 600;
}

.studio-app__nav a.is-active {
    border-color: var(--studio-line);
    color: var(--studio-text);
    background: var(--studio-surface-strong);
    box-shadow: var(--studio-shadow);
}

.studio-app__main {
    padding-bottom: 44px;
}

.studio-shell .button {
    min-height: 42px;
    padding: 0 16px;
    border-radius: 0.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.studio-shell .button--primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--studio-accent), var(--studio-accent-strong));
    border-color: transparent;
}

.studio-shell .button--primary:hover {
    background: linear-gradient(135deg, var(--studio-accent-strong), var(--studio-accent));
    border-color: transparent;
}

.studio-shell .button--ghost {
    color: var(--studio-text);
    border-color: var(--studio-line);
    background: var(--studio-surface-muted);
}

.studio-shell .button--ghost:hover {
    background: var(--studio-surface-strong);
}

.studio-shell .field input,
.studio-shell .field textarea,
.studio-shell .field select {
    border: 1px solid var(--studio-line);
    border-radius: 0.25rem;
    background: var(--studio-surface-strong);
    color: var(--studio-text);
    font: inherit;
}

.studio-shell .field input:focus-visible,
.studio-shell .field textarea:focus-visible,
.studio-shell .field select:focus-visible,
.studio-shell .button:focus-visible,
.studio-theme-toggle:focus-visible,
.studio-app__site-link:focus-visible {
    outline: 0;
    border-color: var(--studio-accent);
    box-shadow: 0 0 0 4px var(--studio-accent-soft);
}

.studio-shell .studio-page-head,
.studio-shell .section-heading,
.studio-shell .hero__actions {
    gap: 12px;
}

.studio-shell .studio-article-row {
    grid-template-columns: auto 88px minmax(0, 1fr) auto;
    border-radius: 0.25rem;
}

.studio-shell .studio-article-row__placeholder {
    display: grid;
    place-items: center;
    min-height: 88px;
    border: 1px dashed var(--studio-line-strong);
    border-radius: 0.25rem;
    color: var(--studio-muted);
    background: var(--studio-surface-muted);
    font-size: 0.8rem;
}

.studio-shell .studio-card-cover,
.studio-shell .media-card__image,
.studio-shell .slider-editor-card__image {
    border-radius: 0.25rem;
}

.studio-shell .auth-shell {
    padding-top: 48px;
}

.studio-shell .auth-card {
    max-width: 460px;
    margin: 0 auto;
    padding: 26px;
}

.studio-shell .auth-title {
    margin-bottom: 10px;
}

.studio-shell .auth-alert {
    margin-bottom: 18px;
    padding: 12px 14px;
    border: 1px solid rgba(183, 58, 88, 0.22);
    border-radius: 0.25rem;
    color: #c2415b;
    background: rgba(253, 239, 242, 0.9);
}

html[data-studio-theme="dark"] .studio-shell {
    background:
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 24%),
        radial-gradient(circle at right top, rgba(37, 99, 235, 0.14), transparent 26%),
        linear-gradient(180deg, var(--studio-bg) 0%, #111827 100%);
}

html[data-studio-theme="dark"] .studio-shell .auth-alert {
    border-color: rgba(251, 113, 133, 0.22);
    color: #fecdd3;
    background: rgba(127, 29, 29, 0.28);
}

html[data-studio-theme="dark"] .studio-shell .field--choice span,
html[data-studio-theme="dark"] .studio-shell .field--checkbox span {
    color: var(--studio-text);
}

html[data-studio-theme="dark"] .studio-shell .field--choice input[type="radio"],
html[data-studio-theme="dark"] .studio-shell .field--checkbox input[type="checkbox"] {
    border-color: var(--studio-line-strong);
    background: rgba(15, 23, 42, 0.92);
}

html[data-studio-theme="dark"] .studio-shell .field--choice input[type="radio"]:checked,
html[data-studio-theme="dark"] .studio-shell .field--checkbox input[type="checkbox"]:checked {
    border-color: var(--studio-accent-strong);
}

@media (max-width: 920px) {
    .studio-app__bar {
        flex-direction: column;
        align-items: stretch;
    }

    .studio-app__brand,
    .studio-app__toolbar {
        justify-content: space-between;
    }

    .studio-shell .studio-article-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .studio-shell .shell {
        width: min(100%, calc(100% - 24px));
    }

    .studio-app__brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .studio-app__toolbar {
        width: 100%;
        justify-content: space-between;
    }

    .studio-shell .page-hero,
    .studio-shell .card,
    .studio-shell .auth-card {
        padding: 20px;
        border-radius: 0.25rem;
    }
}

.studio-app {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.studio-app__mobilebar {
    display: none;
}

.studio-app__sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    align-self: start;
    min-height: 100vh;
    padding: 24px 20px;
    border-right: 1px solid var(--studio-line);
    background:
        linear-gradient(180deg, var(--studio-surface-strong) 0%, var(--studio-surface) 100%);
}

.studio-app__sidebar-head {
    display: grid;
    gap: 14px;
}

.studio-app__sidebar-nav {
    display: grid;
    gap: 8px;
}

.studio-app__sidebar-nav a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid transparent;
    border-radius: 0.25rem;
    color: var(--studio-muted);
    font-size: 0.88rem;
    font-weight: 600;
    transition:
        background-color 160ms ease,
        border-color 160ms ease,
        color 160ms ease,
        transform 160ms ease;
}

.studio-app__sidebar-nav a:hover {
    color: var(--studio-text);
    background: var(--studio-surface-muted);
    transform: translateX(2px);
}

.studio-app__sidebar-nav a.is-active {
    border-color: var(--studio-line);
    color: var(--studio-text);
    background: var(--studio-surface-strong);
    box-shadow: var(--studio-shadow);
}

.studio-app__sidebar-separator {
    margin: 4px 0;
    border: none;
    border-top: 1px solid var(--studio-line);
}

.studio-app__sidebar-footer {
    display: grid;
    gap: 10px;
    margin-top: auto;
}

.studio-app__main {
    padding: 18px 18px 44px;
}

.studio-shell .section--studio-first {
    padding-top: 18px;
}

.studio-dashboard-head {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 18px;
}

.studio-dashboard-head__actions {
    flex-wrap: wrap;
    justify-content: flex-end;
}

.studio-kpi-grid {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    margin-bottom: 18px;
}

.studio-kpi-card,
.studio-panel,
.studio-action-card {
    border: 1px solid var(--studio-line);
    background: var(--studio-surface);
    box-shadow: var(--studio-shadow);
}

.studio-kpi-card {
    display: grid;
    gap: 8px;
    padding: 18px;
    border-radius: 0.25rem;
}

.studio-kpi-card__label,
.studio-kpi-card__meta {
    color: var(--studio-muted);
}

.studio-kpi-card__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-kpi-card__value {
    font-size: clamp(1.6rem, 2.8vw, 2.4rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

.studio-kpi-card__meta {
    font-size: 0.82rem;
}

.studio-dashboard-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
}

.studio-dashboard-grid--taxonomy {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.studio-panel {
    padding: 22px;
    border-radius: 0.25rem;
}

.studio-panel--primary {
    background:
        linear-gradient(180deg, var(--studio-surface-strong), var(--studio-surface));
}

.studio-panel__head {
    margin-bottom: 16px;
}

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

.studio-action-card {
    display: grid;
    gap: 6px;
    padding: 18px;
    border-radius: 0.25rem;
    color: var(--studio-text);
    background: var(--studio-surface-muted);
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease;
}

.studio-action-card strong {
    font-size: 0.96rem;
}

.studio-action-card span {
    color: var(--studio-muted);
    font-size: 0.84rem;
    line-height: 1.5;
}

.studio-action-card:hover {
    transform: translateY(-2px);
    border-color: var(--studio-line-strong);
    background: var(--studio-surface-strong);
}

.studio-note-list {
    display: grid;
    gap: 12px;
    padding-left: 18px;
    color: var(--studio-muted);
}

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

.studio-status-card,
.studio-activity-item,
.studio-checklist__item {
    border: 1px solid var(--studio-line);
    background: var(--studio-surface);
}

.studio-status-card {
    display: grid;
    gap: 10px;
    padding: 16px 18px;
    border-radius: 0.25rem;
}

.studio-status-card__label,
.studio-status-card a {
    color: var(--studio-muted);
}

.studio-status-card__label {
    font-size: 0.78rem;
    font-weight: 600;
}

.studio-status-card strong {
    font-size: 1.55rem;
    line-height: 1;
    letter-spacing: -0.04em;
}

.studio-status-card a {
    font-size: 0.82rem;
    font-weight: 600;
}

.studio-activity-list,
.studio-checklist {
    display: grid;
    gap: 10px;
}

.studio-activity-item,
.studio-checklist__item {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 0.25rem;
    transition:
        transform 160ms ease,
        border-color 160ms ease,
        background-color 160ms ease;
}

.studio-activity-item:hover,
.studio-checklist__item:hover {
    transform: translateY(-1px);
    border-color: var(--studio-line-strong);
    background: var(--studio-surface-strong);
}

.studio-activity-item__type {
    display: inline-flex;
    margin-bottom: 6px;
    color: var(--studio-accent);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.studio-activity-item strong {
    display: block;
    color: var(--studio-text);
    font-size: 0.92rem;
}

.studio-activity-item__meta {
    display: grid;
    gap: 4px;
    justify-items: end;
    color: var(--studio-muted);
    font-size: 0.78rem;
    text-align: right;
    white-space: nowrap;
}

.studio-checklist__item span {
    color: var(--studio-muted);
    font-size: 0.84rem;
}

.studio-checklist__item strong {
    color: var(--studio-text);
    font-size: 1.1rem;
    letter-spacing: -0.03em;
}

.studio-searchbar {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 14px;
    padding: 14px;
    border: 1px solid var(--studio-line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(246, 250, 252, 0.92));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.studio-searchbar__field {
    flex: 1 1 auto;
}

.studio-searchbar__field input {
    width: 100%;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid var(--studio-line);
    background: var(--studio-surface-strong);
    box-shadow: inset 0 1px 2px rgba(22, 52, 67, 0.04);
}

.studio-searchbar__field input::placeholder {
    color: var(--studio-muted);
}

.studio-shell .studio-article-list {
    gap: 12px;
}

.studio-shell .studio-article-row {
    gap: 14px;
    padding: 16px 18px;
}

.studio-shell .studio-article-row__content h3 {
    margin-bottom: 6px;
}

.studio-row-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.studio-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--studio-line);
    border-radius: 0.25rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.studio-badge--published {
    color: #0f766e;
    background: rgba(20, 184, 166, 0.1);
    border-color: rgba(20, 184, 166, 0.18);
}

.studio-badge--draft {
    color: #9a6700;
    background: rgba(245, 158, 11, 0.12);
    border-color: rgba(245, 158, 11, 0.2);
}

.studio-badge--archived {
    color: var(--studio-muted);
    background: var(--studio-surface-muted);
    border-color: var(--studio-line);
}

.studio-badge--neutral {
    color: var(--studio-text);
    background: var(--studio-surface-muted);
}

.studio-badge--feature {
    color: #4338ca;
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.18);
}

.studio-badge--warning {
    color: #b45309;
    background: rgba(251, 191, 36, 0.15);
    border-color: rgba(251, 191, 36, 0.22);
}

.studio-shell .meta-line {
    font-size: 0.82rem;
}

.studio-shell .filter-chip {
    min-height: 36px;
    padding: 0 12px;
    border-radius: 0.25rem;
    font-size: 0.8rem;
}

.studio-shell .editor-grid.studio-editor-grid {
    gap: 16px;
}

.studio-searchbar__sort {
    flex: 0 0 220px;
}

.studio-searchbar__sort select {
    width: 100%;
    min-height: 44px;
    padding: 0 42px 0 14px;
    border: 1px solid var(--studio-line);
    background:
        linear-gradient(45deg, transparent 50%, var(--studio-accent) 50%),
        linear-gradient(135deg, var(--studio-accent) 50%, transparent 50%),
        linear-gradient(to right, rgba(77, 184, 228, 0.12), rgba(77, 184, 228, 0.12));
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        calc(100% - 38px) 50%;
    background-size:
        6px 6px,
        6px 6px,
        1px 24px;
    background-repeat: no-repeat;
    background-color: var(--studio-surface-strong);
    color: var(--studio-text);
    font: inherit;
    appearance: none;
    box-shadow: inset 0 1px 2px rgba(22, 52, 67, 0.04);
}

.studio-searchbar .button {
    min-height: 44px;
    padding-inline: 16px;
    white-space: nowrap;
}

.studio-table-card {
    padding: 0;
    overflow: hidden;
}

.studio-table-card--taxonomy {
    min-width: 0;
}

.studio-table-wrap {
    overflow: auto;
}

.studio-table-wrap--taxonomy {
    overflow: hidden;
}

.studio-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 1080px;
}

.studio-table--taxonomy {
    min-width: 0;
    table-layout: fixed;
}

.studio-table th,
.studio-table td {
    padding: 16px 14px;
    border-bottom: 1px solid var(--studio-line);
    vertical-align: top;
    text-align: left;
}

.studio-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
    color: var(--studio-muted);
    background: var(--studio-surface-strong);
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.studio-table tbody tr:hover {
    background: var(--studio-surface-muted);
}

.studio-table tbody tr.is-archived {
    opacity: 0.86;
}

.studio-table__select {
    width: 56px;
}

.studio-table__article {
    display: grid;
    gap: 12px;
    grid-template-columns: 64px minmax(0, 1fr);
    align-items: start;
}

.studio-table__thumb {
    display: block;
    width: 64px;
    height: 64px;
    border-radius: 0.25rem;
    object-fit: cover;
}

.studio-table__thumb--placeholder {
    display: grid;
    place-items: center;
    border: 1px dashed var(--studio-line-strong);
    background: var(--studio-surface-muted);
    color: var(--studio-muted);
    font-size: 0.72rem;
    text-align: center;
}

.studio-table__article strong,
.studio-table__meta strong {
    display: block;
    color: var(--studio-text);
    font-size: 0.9rem;
}

.studio-table__meta span {
    color: var(--studio-muted);
    font-size: 0.8rem;
}

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

.studio-table--taxonomy th,
.studio-table--taxonomy td {
    padding: 14px 12px;
}

.studio-table--taxonomy th:first-child,
.studio-table--taxonomy td:first-child {
    width: 42%;
}

.studio-table--taxonomy .studio-table__meta {
    min-width: 0;
}

.studio-table--taxonomy .studio-table__meta strong,
.studio-table--taxonomy .studio-table__meta span {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.studio-table--taxonomy .studio-table__actions {
    justify-content: flex-start;
}

.studio-table-empty {
    padding: 22px;
}

html[data-studio-theme="dark"] .studio-app__sidebar {
    background:
        linear-gradient(180deg, rgba(15, 23, 42, 0.96) 0%, rgba(17, 24, 39, 0.88) 100%);
}

html[data-studio-theme="dark"] .studio-badge--published {
    color: #99f6e4;
    background: rgba(20, 184, 166, 0.14);
    border-color: rgba(45, 212, 191, 0.2);
}

html[data-studio-theme="dark"] .studio-badge--draft {
    color: #fde68a;
    background: rgba(245, 158, 11, 0.16);
    border-color: rgba(245, 158, 11, 0.22);
}

html[data-studio-theme="dark"] .studio-badge--feature {
    color: #c7d2fe;
    background: rgba(99, 102, 241, 0.16);
    border-color: rgba(129, 140, 248, 0.22);
}

html[data-studio-theme="dark"] .studio-badge--warning {
    color: #fde68a;
    background: rgba(251, 191, 36, 0.16);
    border-color: rgba(251, 191, 36, 0.22);
}

@media (max-width: 1100px) {
    .studio-kpi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .studio-dashboard-grid {
        grid-template-columns: 1fr;
    }

    .studio-status-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 920px) {
    .studio-app {
        display: block;
    }

    .studio-app__sidebar {
        display: none;
    }

    .studio-app__mobilebar {
        position: sticky;
        top: 0;
        z-index: 24;
        display: flex;
        gap: 14px;
        align-items: center;
        justify-content: space-between;
        margin: 16px 16px 0;
        padding: 14px 16px;
        border: 1px solid var(--studio-line);
        border-radius: 0.25rem;
        background: var(--studio-surface-strong);
        box-shadow: var(--studio-shadow);
        backdrop-filter: blur(18px);
    }

    .studio-app__main {
        padding: 10px 16px 40px;
    }

    .studio-dashboard-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 720px) {
    .studio-kpi-grid,
    .studio-action-grid,
    .studio-status-grid {
        grid-template-columns: 1fr;
    }

    .studio-app__mobilebar {
        flex-direction: column;
        align-items: stretch;
    }

    .studio-app__mobilebar .studio-app__toolbar {
        justify-content: space-between;
    }

    .studio-searchbar {
        flex-direction: column;
        align-items: stretch;
    }

    .studio-searchbar__sort {
        flex-basis: auto;
    }

    .studio-activity-item,
    .studio-checklist__item {
        flex-direction: column;
        align-items: flex-start;
    }

    .studio-activity-item__meta {
        justify-items: start;
        text-align: left;
        white-space: normal;
    }
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(108, 171, 187, 0.18), transparent 30%),
        radial-gradient(circle at right 22%, rgba(164, 202, 213, 0.2), transparent 24%),
        linear-gradient(180deg, #fbfdfe 0%, var(--bg) 100%);
    font-family: "Trebuchet MS", "Segoe UI", sans-serif;
    line-height: 1.5;
}

.flash-stack {
    position: sticky;
    top: 10px;
    z-index: 20;
    width: min(1120px, calc(100% - 32px));
    margin: 12px auto 0;
}

.flash-stack--inline {
    position: static;
    width: 100%;
    margin: 0 0 18px;
}

.flash {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 10px;
    padding: 14px 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(31, 67, 82, 0.08);
}

.flash__message {
    min-width: 0;
}

.flash__close {
    display: inline-grid;
    flex: 0 0 auto;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    color: currentColor;
    background: transparent;
    cursor: pointer;
    font: inherit;
    line-height: 1;
}

.flash__close:hover,
.flash__close:focus-visible {
    background: rgba(31, 67, 82, 0.08);
    outline: none;
}

.flash--success {
    color: #1e5631;
    background: rgba(234, 248, 238, 0.96);
    border-color: rgba(52, 126, 77, 0.18);
}

.flash--error {
    color: #8a2133;
    background: rgba(253, 239, 242, 0.98);
    border-color: rgba(183, 58, 88, 0.18);
}

a {
    color: inherit;
    text-decoration: none;
}

h1,
h2,
h3,
p,
dl,
ul {
    margin-top: 0;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.shell {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 10;
    padding: 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(64, 74, 79, 0.12);
}

.topbar__inner {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    min-height: 88px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.burger-button,
.mobile-nav {
    display: none;
}

.nav a,
.copy,
.contact p,
.card p,
.hero-card__list,
.section-copy,
.faq-item p,
.bullet-list,
.text-link,
.meta-line,
.field span {
    color: var(--muted);
}

.brand__logo {
    display: block;
    width: auto;
    height: 58px;
}

.nav {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.nav a + a {
    position: relative;
    padding-left: 24px;
}

.nav a + a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 18px;
    background: #4bb8e8;
    transform: translateY(-50%);
}

.nav a,
.nav-group__summary {
    color: #404a4f;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 180ms ease;
}

.nav a:hover,
.nav-group__summary:hover {
    color: #4bb8e8;
}

.nav a.is-active,
.nav-group.is-active .nav-group__summary,
.nav-group[open] .nav-group__summary {
    color: #177a9b;
}

.nav-group {
    position: relative;
}

.nav-group__summary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    list-style: none;
}

.nav-group__summary::-webkit-details-marker {
    display: none;
}

.nav-group__summary::after {
    content: '';
    width: 8px;
    height: 8px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
}

.nav-group__menu {
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    z-index: 12;
    display: grid;
    gap: 10px;
    min-width: 180px;
    padding: 16px;
    border: 1px solid rgba(64, 74, 79, 0.12);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 18px 44px rgba(22, 52, 67, 0.12);
}

.nav-group__menu a {
    color: #404a4f;
    font-weight: 600;
    transition: color 180ms ease;
}

.nav-group__menu a:hover {
    color: #177a9b;
}

.nav-group--contact {
    width: auto;
}

.nav-group__summary--button {
    gap: 10px;
    cursor: pointer;
    color: #ffffff;
}

.nav-group__summary--button::after {
    width: 7px;
    height: 7px;
    border-right-width: 1.5px;
    border-bottom-width: 1.5px;
    transform: rotate(45deg) translateY(-1px);
}

.nav-group__summary--button:hover,
.nav-group__summary--button:focus-visible,
.nav-group[open] > .nav-group__summary--button {
    color: #ffffff;
}

.nav-group__menu--contact {
    right: 0;
    left: auto;
    gap: 12px;
    min-width: 210px;
    border-radius: 18px;
}

.header-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.burger-button {
    display: none;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    padding: 0;
    border: 1px solid rgba(64, 74, 79, 0.12);
    background: #ffffff;
}

.burger-button__lines {
    display: grid;
    gap: 5px;
}

.burger-button__lines span {
    display: block;
    width: 22px;
    height: 2px;
    background: #404a4f;
}

.mobile-nav {
    position: fixed;
    inset: 0;
    z-index: 30;
    pointer-events: none;
}

.mobile-nav__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(22, 52, 67, 0.26);
    opacity: 0;
    transition: opacity 180ms ease;
}

.mobile-nav__panel {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    gap: 28px;
    width: min(92vw, 360px);
    height: 100%;
    padding: 22px;
    background: #ffffff;
    box-shadow: -18px 0 44px rgba(22, 52, 67, 0.18);
    transform: translateX(100%);
    transition: transform 220ms ease;
}

.mobile-nav__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.mobile-nav__logo {
    display: block;
    width: auto;
    height: 44px;
}

.mobile-nav__close {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(64, 74, 79, 0.12);
    color: #404a4f;
    font-size: 1.9rem;
    line-height: 1;
    background: #ffffff;
}

.mobile-nav__links {
    display: grid;
    gap: 18px;
}

.mobile-nav__links a {
    color: #404a4f;
    font-size: 1.05rem;
    font-weight: 600;
}

.mobile-nav__links a.is-active,
.mobile-nav__links a:hover {
    color: #177a9b;
}

.mobile-nav__actions {
    display: grid;
    gap: 12px;
    margin-top: 4px;
}

body.has-mobile-nav-open {
    overflow: hidden;
}

body.has-mobile-nav-open .mobile-nav {
    display: block;
    pointer-events: auto;
}

body.has-mobile-nav-open .mobile-nav__overlay {
    opacity: 1;
}

body.has-mobile-nav-open .mobile-nav__panel {
    transform: translateX(0);
}

.header-utility-link {
    color: #404a4f;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 180ms ease;
}

.header-utility-link:hover {
    color: #4bbae7;
}

.hero {
    padding: 72px 0 64px;
}

.hero--page {
    padding-bottom: 36px;
}

.hero-slider {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    background: #dde8ec;
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: grid;
    align-items: end;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 500ms ease,
        visibility 500ms ease,
        transform 700ms ease;
    transform: scale(1.02);
}

.hero-slide__media {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.hero-slide__inner {
    display: grid;
    min-height: 100vh;
    padding-top: 120px;
    padding-bottom: 96px;
    align-items: center;
}

.hero-slide__content {
    max-width: 760px;
    color: #ffffff;
    transform: translateY(-42px);
}

.hero-slide__content .eyebrow,
.hero-slide__content .lead {
    color: rgba(255, 255, 255, 0.92);
}

.hero-slide__title {
    display: block;
    max-width: 16ch;
    color: #ffffff;
    font-size: clamp(2rem, 4.9vw, 3.9rem);
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: -0.05em;
}

.hero-slide__content .hero__actions {
    margin-top: 34px;
}

.hero-slider__controls {
    position: absolute;
    inset: 50% 0 auto 0;
    z-index: 2;
    width: 100%;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-slider__dots {
    position: absolute;
    bottom: 34px;
    left: 50%;
    z-index: 2;
    display: inline-flex;
    gap: 10px;
    align-items: center;
    transform: translateX(-50%);
    pointer-events: auto;
}

.hero-slider__dot,
.hero-slider__arrow {
    border: 0;
    cursor: pointer;
}

.hero-slider__dot {
    width: 14px;
    height: 14px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    transition:
        transform 180ms ease,
        background-color 180ms ease;
}

.hero-slider__dot.is-active,
.hero-slider__dot:hover {
    background: #86c801;
    transform: scale(1.08);
}

.hero-slider__arrow {
    position: absolute;
    top: 50%;
    display: inline-grid;
    width: 54px;
    height: 54px;
    place-items: center;
    border-radius: 999px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(10px);
    font-size: 2rem;
    line-height: 1;
    pointer-events: auto;
    transform: translateY(-50%);
    transition:
        background-color 180ms ease,
        top 180ms ease;
}

.hero-slider__arrow[data-slider-prev] {
    left: min(64px, 3.5vw);
}

.hero-slider__arrow[data-slider-next] {
    right: min(64px, 3.5vw);
}

.hero-slider__arrow:hover {
    background: rgba(134, 200, 1, 0.9);
    top: calc(50% - 1px);
}

.hero-summary {
    padding-top: 48px;
}

.hero-summary__grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
}

.hero-summary__aside {
    display: grid;
    gap: 22px;
}

.hero-summary__image-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    border-radius: 24px;
    background: #eef7fb;
    box-shadow: var(--shadow);
}

.hero-summary__image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__grid,
.page-hero,
.split,
.contact {
    display: grid;
    gap: 28px;
    align-items: start;
    grid-template-columns: minmax(0, 1.1fr) minmax(360px, 1fr);
}

.page-hero--balanced {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-items: center;
}

.page-hero--article {
    grid-template-columns: minmax(0, 1fr);
    max-width: 960px;
    margin-inline: auto;
}

.hero--page:has(.page-hero--article) {
    padding-top: 0;
}

.hero__content {
    padding-top: 24px;
}

.eyebrow {
    margin-bottom: 14px;
    color: var(--accent-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.95rem;
}

.breadcrumb a {
    transition: color 180ms ease;
}

.breadcrumb a:hover {
    color: var(--accent-dark);
}

h1 {
    max-width: 14ch;
    font-size: clamp(2.5rem, 6.6vw, 4.8rem);
    line-height: 0.92;
    letter-spacing: -0.05em;
}

h2 {
    max-width: 18ch;
    font-size: clamp(1.9rem, 4.5vw, 3.2rem);
    line-height: 1;
    letter-spacing: -0.04em;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.page-hero h1,
.section-heading h2,
.card__title,
.team-card__name {
    position: relative;
    display: inline-block;
}

.page-hero h1::after,
.section-heading h2::after,
.card__title::after,
.team-card__name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.16em;
    width: clamp(46px, 24%, 92px);
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4bb8e8 0%, rgba(75, 184, 232, 0.18) 100%);
    z-index: -1;
}

.card__title {
    max-width: none;
    font-size: 1.5rem;
}

.card__title::after {
    bottom: -0.48em;
}

.section-heading h2::after {
    bottom: -0.48em;
}

.lead {
    max-width: 48ch;
    margin-bottom: 18px;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    color: var(--muted);
}

.page-hero .lead {
    max-width: 48ch;
}

.copy,
.section-copy,
.faq-item p,
.bullet-list {
    font-size: 1rem;
}

.copy {
    max-width: 62ch;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.share-widget {
    position: fixed;
    right: clamp(16px, 3vw, 32px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 36;
}

.share-fab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    padding: 0;
    border: 0;
    border-radius: 999px;
    color: #ffffff;
    background: #4db8e4;
    box-shadow: 0 16px 34px rgba(77, 184, 228, 0.28);
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.share-fab:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 20px 40px rgba(77, 184, 228, 0.34);
    filter: saturate(1.06);
}

.share-fab__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    background: transparent;
}

.share-popover {
    position: absolute;
    right: 0;
    bottom: calc(100% + 14px);
    width: auto;
    padding: 14px;
    border: 1px solid rgba(64, 74, 79, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 22px 48px rgba(20, 48, 62, 0.18);
    backdrop-filter: blur(18px);
}

.share-popover[hidden] {
    display: none !important;
}

.share-popover__grid {
    display: flex;
    gap: 10px;
    align-items: center;
}

.share-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(24, 54, 66, 0.12);
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        filter 180ms ease;
}

.share-option:hover {
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 18px 34px rgba(24, 54, 66, 0.18);
    filter: saturate(1.08);
}

.share-option__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.share-option--whatsapp {
    background: #25d366;
}

.share-option--facebook {
    background: #1877f2;
}

.share-option--linkedin {
    background: #0a66c2;
}

.share-option--message {
    background: #ff8a34;
}

.share-option--mail {
    background: #ea4335;
}

.inline-form {
    margin: 0;
}

.hero__facts,
.tag-grid,
.cards,
.faq-list,
.proof-list {
    display: grid;
    gap: 16px;
}

.article-layout {
    max-width: 960px;
    margin-inline: auto;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #ffffff;
    box-shadow: var(--shadow);
}

article.section:has(.article-layout) {
    padding-top: 0;
}

#contact-direct {
    scroll-margin-top: 120px;
}

.hero__facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin: 32px 0 0;
}

.hero__facts div,
.tag,
.card,
.hero-card,
.contact,
.faq-item {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    backdrop-filter: blur(12px);
}

.hero__facts div {
    padding: 16px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.66);
}

.hero__facts dt {
    margin-bottom: 8px;
    color: var(--muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__facts dd {
    margin: 0;
    font-weight: 700;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    min-height: 48px;
    padding: 0 20px;
    border: 1px solid var(--line);
    border-radius: 0;
    transition:
        transform 180ms ease,
        background-color 180ms ease,
        border-color 180ms ease;
}

.button--compact {
    min-height: 42px;
    padding: 0 16px;
    font-size: 0.95rem;
}

.button:hover {
    transform: translateY(-1px);
}

.button--primary {
    color: #ffffff;
    background: #4f8100;
    border-color: #4f8100;
}

.button--primary:hover {
    background: #426b00;
    border-color: #426b00;
}

.button--ghost {
    background: rgba(255, 255, 255, 0.66);
}

.button--ghost:hover {
    background: rgba(255, 255, 255, 0.9);
}

.hero-card,
.card,
.contact,
.faq-item {
    padding: 26px;
}

.article-card-cover,
.studio-card-cover,
.preview-cover {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.article-card-cover,
.preview-cover {
    margin-bottom: 18px;
}

.article-card-cover {
    aspect-ratio: 3 / 2;
}

.article-listing {
    display: grid;
    gap: 22px;
}

.article-listing__item {
    display: grid;
    gap: 26px;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    align-items: center;
}

.article-listing__item .article-card-cover {
    margin-bottom: 0;
    border-radius: 22px;
}

.article-listing__content {
    min-width: 0;
}

.article-listing__content .card__title {
    margin-bottom: 14px;
}

.article-listing__content p:not(.eyebrow):not(.meta-line) {
    margin-bottom: 16px;
}

@media (min-width: 721px) {
    .article-listing__item:nth-child(even) .article-listing__media {
        order: 2;
    }

    .article-listing__item:nth-child(even) .article-listing__content {
        order: 1;
    }
}

.studio-card-cover {
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
}

.preview-cover {
    aspect-ratio: 16 / 9;
}

.article-hero {
    margin: 22px 0 0;
}

.article-hero__media {
    position: relative;
    overflow: hidden;
    aspect-ratio: 900 / 471;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(75, 184, 232, 0.16), transparent 42%),
        linear-gradient(135deg, #f9fcfe 0%, #edf7fb 100%);
    box-shadow: 0 28px 60px rgba(24, 54, 66, 0.12);
}

.article-hero__media--portrait {
    max-width: 560px;
    aspect-ratio: 3 / 4;
    margin-inline: auto;
}

.article-hero__media--square {
    max-width: 680px;
    aspect-ratio: 1;
    margin-inline: auto;
}

.article-hero-cover {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.article-hero__body {
    max-width: none;
    margin: 24px auto 0;
    width: 100%;
    text-align: left;
}

.article-hero__body .meta-line {
    justify-content: flex-start;
}

.article-hero__body .breadcrumb {
    margin-bottom: 28px;
}

.page-hero--article .hero__actions {
    justify-content: flex-start;
}

.hero-card__label {
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-card--image {
    padding: 0;
    overflow: hidden;
}

.hero-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
}

.hero-card--image-landscape .hero-card__image {
    aspect-ratio: 4 / 3;
    object-position: center center;
}

.hero-card__stack p {
    margin-bottom: 12px;
    color: var(--muted);
}

.hero-card__list {
    padding-left: 18px;
    margin-bottom: 0;
}

.cookie-launcher {
    position: fixed;
    left: 20px;
    bottom: 10%;
    z-index: 41;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    padding: 0;
    border: 1px solid rgba(64, 74, 79, 0.12);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 18px 50px rgba(22, 52, 67, 0.16);
    backdrop-filter: blur(10px);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.cookie-launcher img {
    display: block;
    width: 28px;
    height: 28px;
    object-fit: contain;
}

.cookie-launcher:hover {
    transform: translateY(-1px);
    box-shadow: 0 22px 56px rgba(22, 52, 67, 0.2);
}

.cookie-banner {
    position: fixed;
    left: 20px;
    bottom: calc(10% + 78px);
    z-index: 40;
    width: min(calc(100% - 40px), 460px);
}

.cookie-banner__inner,
.cookie-panel__dialog {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 24px 70px rgba(22, 52, 67, 0.18);
    backdrop-filter: blur(12px);
}

.cookie-banner__inner {
    position: relative;
    display: grid;
    gap: 18px;
    grid-template-columns: 1fr;
    padding: 22px 22px 20px;
    border-radius: 26px;
}

.cookie-banner__inner::after {
    content: '';
    position: absolute;
    left: 26px;
    bottom: -10px;
    width: 20px;
    height: 20px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.98);
    transform: rotate(45deg);
}

.cookie-banner__eyebrow {
    margin-bottom: 8px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.cookie-banner__title,
.cookie-panel__title {
    margin-bottom: 8px;
    font-size: 1.2rem;
    line-height: 1.2;
}

.cookie-banner__copy,
.cookie-option small {
    color: var(--muted);
}

.cookie-banner__copy {
    margin-bottom: 0;
}

.cookie-banner__actions,
.cookie-panel__actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.cookie-panel {
    position: fixed;
    inset: 0;
    z-index: 45;
}

.cookie-panel__overlay {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(22, 52, 67, 0.32);
}

.cookie-panel__dialog {
    position: relative;
    width: min(calc(100% - 32px), 680px);
    margin: min(8vh, 64px) auto 0;
    padding: 24px;
    border-radius: 28px;
}

.cookie-panel__head {
    display: flex;
    gap: 18px;
    align-items: start;
    justify-content: space-between;
}

.cookie-panel__close {
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(64, 74, 79, 0.12);
    background: #ffffff;
    font-size: 1.8rem;
    line-height: 1;
}

.cookie-panel__options {
    display: grid;
    gap: 14px;
    margin: 22px 0;
}

.cookie-option {
    display: grid;
    gap: 16px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    padding: 16px 18px;
    border: 1px solid var(--line);
    background: rgba(244, 248, 249, 0.78);
}

.cookie-option strong {
    display: block;
    margin-bottom: 5px;
}

.cookie-option input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.cookie-option--disabled {
    opacity: 0.8;
}

body.has-cookie-panel-open {
    overflow: hidden;
}

.section {
    padding: 36px 0 72px;
}

@media (min-width: 961px) {
    .home-screen {
        display: flex;
        align-items: center;
        min-height: 100vh;
        padding: 120px 0 88px;
    }

    .home-screen > .shell {
        width: min(1120px, calc(100% - 32px));
    }

    .home-screen .shell,
    .home-screen .split,
    .home-screen .hero-summary__grid {
        align-items: center;
    }
}

.home-screen--light {
    background: #ffffff;
}

.section-heading {
    margin-bottom: 24px;
}

.filter-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.66);
}

.filter-chip--active {
    color: #f7fcfd;
    background: var(--accent);
    border-color: var(--accent);
}

.section-copy {
    max-width: 62ch;
}

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

.cards--stacked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card--full {
    grid-column: 1 / -1;
}

.card--trashed {
    border-color: rgba(168, 66, 84, 0.28);
    background: rgba(253, 243, 245, 0.94);
    box-shadow: 0 20px 48px rgba(130, 42, 58, 0.1);
}

.team-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
}

.team-card {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.82);
}

.team-card__photo {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    object-position: center top;
}

.team-card__body {
    padding: 18px;
}

.team-card__name {
    margin-bottom: 6px;
    font-size: 1.15rem;
}

.team-card__link {
    color: inherit;
}

.team-card__link:hover {
    color: var(--accent);
}

.team-card__role {
    margin-bottom: 10px;
    color: var(--accent-dark);
    font-weight: 700;
}

.text-link {
    display: inline-block;
    margin-top: 12px;
    color: var(--accent-dark);
    font-weight: 700;
}

.meta-line {
    font-size: 0.95rem;
}

.meta-line--trashed {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: #8a2133;
    font-weight: 700;
}

.meta-line--trashed::before {
    content: 'Corbeille';
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 26px;
    padding: 0 10px;
    background: rgba(168, 66, 84, 0.14);
    font-size: 0.8rem;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

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

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

.consult-grid__image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 18px;
    object-fit: cover;
    background: #eef7fb;
}

.tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 88px;
    padding: 18px;
    font-weight: 700;
    text-align: center;
}

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

.proof-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

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

.case-study-card__compare {
    display: grid;
    gap: 14px;
    grid-template-columns: 1fr;
    margin: 22px 0 18px;
}

.case-study-card--visual {
    padding: 14px;
}

.case-study-card--visual .case-study-card__compare {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0;
}

.case-study-card__panel {
    min-height: 100%;
    padding: 18px;
    border: 1px solid rgba(64, 74, 79, 0.12);
    background: rgba(255, 255, 255, 0.72);
}

.case-study-card--visual .case-study-card__panel {
    padding: 0;
    overflow: hidden;
    border-radius: 16px;
}

.case-study-card__figure {
    margin: 0;
}

.case-study-card__figure img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.case-study-card__figure figcaption {
    padding: 10px 12px 12px;
    color: var(--accent-dark);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.case-study-note {
    margin-top: 22px;
    padding: 18px 20px;
    border-left: 4px solid var(--accent);
    background: rgba(255, 255, 255, 0.7);
}

.case-study-note p {
    margin-bottom: 0;
}

.page-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
}

.page-carousel__track {
    position: relative;
    aspect-ratio: 16 / 9;
}

.page-carousel__slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
}

.page-carousel__slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.page-carousel__image {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 18px;
    object-fit: cover;
}

.page-carousel__arrow,
.page-carousel__dot {
    border: 0;
    cursor: pointer;
}

.page-carousel__arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 52px;
    height: 52px;
    color: #404a4f;
    font-size: 1.9rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-50%);
}

.page-carousel__arrow--prev {
    left: 18px;
}

.page-carousel__arrow--next {
    right: 18px;
}

.page-carousel__arrow:hover {
    color: #ffffff;
    background: #4bbae7;
}

.page-carousel__dots {
    position: absolute;
    right: 0;
    bottom: 28px;
    left: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: 10px;
}

.page-carousel__dot {
    width: 12px;
    height: 12px;
    padding: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.82);
}

.page-carousel__dot.is-active,
.page-carousel__dot:hover {
    background: #4bbae7;
}

.bullet-list {
    margin-bottom: 0;
    padding-left: 18px;
}

.contact {
    padding: 28px;
}

.contact__copy {
    max-width: 58ch;
}

.contact__actions {
    margin-top: 18px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-call-button,
.contact-action-button {
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.contact__details {
    display: grid;
    gap: 14px;
}

.contact__details p {
    margin: 0;
}

.contact-map {
    display: block;
}

.contact-map__image {
    display: block;
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.contact-form-card {
    width: min(100%, 640px);
    padding: 18px 20px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    box-shadow: var(--shadow);
}

.contact-form-card__row {
    display: grid;
    gap: 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form-card__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-card .field {
    position: relative;
    margin-bottom: 14px;
}

.contact-form-card label {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 1;
    padding: 0 6px;
    color: var(--muted);
    font-weight: 600;
    line-height: 1;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.94);
    transform-origin: left top;
    transition:
        transform 180ms ease,
        color 180ms ease,
        top 180ms ease;
}

.contact-form-card .contact-form-card__input {
    min-height: 62px;
    padding: 30px 16px 10px;
    border-radius: 8px;
}

.contact-form-card .contact-form-card__select {
    padding-top: 30px;
    appearance: none;
}

.contact-form-card .contact-form-card__input--textarea {
    padding-top: 34px;
}

.contact-form-card__input:focus,
.contact-form-card__input:not(:placeholder-shown) {
    border-color: rgba(75, 184, 232, 0.56);
    outline: none;
    box-shadow: 0 0 0 4px rgba(75, 184, 232, 0.14);
}

.contact-form-card__input:focus + label,
.contact-form-card__input:not(:placeholder-shown) + label {
    top: 10px;
    color: #177a9b;
    transform: scale(0.82);
}

.field--floating-select label {
    top: 10px;
    color: #177a9b;
    transform: scale(0.82);
}

.field--floating-select select:invalid {
    color: var(--muted);
}

.contact-form-card ul {
    margin: 6px 0 0;
    padding-left: 18px;
    color: #a23636;
    font-size: 0.92rem;
}

.contact-form-card textarea {
    min-height: 132px;
}

.contact-form-card__consent {
    display: grid;
    gap: 8px;
    align-items: stretch;
    margin-top: 4px;
}

.contact-form-card__consent-line {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.contact-form-card__consent input[type="checkbox"] {
    margin-top: 2px;
}

.contact-form-card .contact-form-card__consent-label {
    position: static;
    padding: 0;
    color: var(--text);
    font-size: 0.95rem;
    font-weight: 650;
    line-height: 1.45;
    pointer-events: auto;
    background: transparent;
    transform: none;
    transition: none;
}

.article-paragraph,
.article-list,
.article-quote {
    margin: 0 0 16px;
    color: var(--text);
    font-size: 1.12rem;
    line-height: 1.75;
}

.article-heading {
    max-width: none;
    margin: 14px 0 14px;
    font-size: 2rem;
    color: var(--accent-dark);
    position: relative;
    display: inline-block;
}

.article-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.16em;
    width: clamp(40px, 20%, 82px);
    height: 7px;
    border-radius: 999px;
    background: linear-gradient(90deg, #4bb8e8 0%, rgba(75, 184, 232, 0.16) 100%);
    z-index: -1;
}

.article-heading--h3 {
    margin-top: 12px;
    font-size: 1.55rem;
    line-height: 1.15;
}

.article-heading--h4 {
    margin-top: 12px;
    font-size: 1.22rem;
    color: #177a9b;
    line-height: 1.25;
}

.page-hero--article h1 {
    max-width: none;
    color: var(--accent-dark);
}

.page-hero--article .lead {
    max-width: none;
}

.article-table-wrap {
    margin: 0 0 28px;
    overflow-x: auto;
}

.article-table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid rgba(64, 74, 79, 0.14);
    border-radius: 18px;
    overflow: hidden;
    background: #ffffff;
    font-size: 1.05rem;
}

.article-table th,
.article-table td {
    padding: 14px 16px;
    border-bottom: 1px solid rgba(64, 74, 79, 0.12);
    text-align: left;
    vertical-align: top;
    line-height: 1.55;
}

.article-table th {
    color: var(--accent-dark);
    font-weight: 800;
    background: rgba(75, 184, 232, 0.08);
}

.article-table tr:last-child td {
    border-bottom: 0;
}

.article-edit-fab {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    color: #ffffff;
    background: #159947;
    box-shadow: 0 14px 32px rgba(21, 153, 71, 0.28);
    transition:
        background 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.article-edit-fab:hover,
.article-edit-fab:focus-visible {
    color: #ffffff;
    background: #0f7f39;
    box-shadow: 0 16px 36px rgba(15, 127, 57, 0.34);
    transform: translateY(-2px);
}

.article-edit-fab:focus-visible {
    outline: 3px solid rgba(21, 153, 71, 0.32);
    outline-offset: 4px;
}

@media (max-width: 720px) {
    .article-layout {
        padding: 24px 20px;
    }

    .article-listing__item {
        grid-template-columns: minmax(0, 1fr);
        align-items: start;
    }

    .article-hero {
        margin-top: 18px;
    }

    .article-hero__media {
        border-radius: 18px;
    }

    .article-hero__body {
        margin-top: 18px;
        text-align: left;
    }

    .article-hero__body .meta-line,
    .page-hero--article .hero__actions {
        justify-content: flex-start;
    }
}

.article-list {
    padding-left: 22px;
}

.article-quote {
    margin-left: 0;
    padding: 20px 24px;
    border-left: 4px solid var(--accent);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.7);
}

.article-quote cite {
    display: block;
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
    font-style: normal;
}

.article-image {
    margin: 0 0 28px;
}

.article-image--portrait {
    max-width: min(100%, 560px);
    margin-inline: auto;
}

.article-image--square {
    max-width: min(100%, 680px);
    margin-inline: auto;
}

.article-image img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
}

.article-image figcaption {
    margin-top: 10px;
    color: var(--muted);
    font-size: 0.95rem;
}

.article-divider {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid var(--line);
}

.faq-accordion {
    padding: 0;
    overflow: hidden;
}

.faq-accordion__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
    cursor: pointer;
    list-style: none;
}

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

.faq-accordion__title {
    display: block;
    color: var(--text);
    font-size: 1.45rem;
    font-weight: 700;
    line-height: 1.2;
}

.faq-accordion__icon {
    display: inline-grid;
    width: 34px;
    height: 34px;
    place-items: center;
    flex: 0 0 auto;
    color: #404a4f;
    font-size: 1.8rem;
    line-height: 1;
}

.faq-accordion[open] .faq-accordion__icon {
    transform: rotate(45deg);
}

.faq-accordion__content {
    padding: 0 26px 26px;
}

.faq-accordion__content p:last-child {
    margin-bottom: 0;
}

.faq-filter-row {
    margin-bottom: 24px;
}

.faq-filter-row .filter-chip {
    appearance: none;
    cursor: pointer;
    font: inherit;
}

.editor-form {
    display: grid;
    gap: 24px;
}

.studio-page-head {
    display: flex;
    gap: 20px;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 28px;
}

.studio-page-head h1 {
    margin-bottom: 0;
}

.auth-shell {
    max-width: 560px;
}

.auth-card {
    margin: 0 auto;
}

.auth-title {
    max-width: none;
    font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.auth-alert {
    padding: 14px 16px;
    border: 1px solid rgba(161, 57, 57, 0.22);
    border-radius: 16px;
    color: #8f2d2d;
    background: rgba(255, 236, 236, 0.75);
}

.faq-editor-list {
    display: grid;
    gap: 20px;
}

.slider-editor-card {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
    align-items: start;
}

.slider-editor-card__preview {
    align-self: start;
}

.slider-editor-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 7.4;
    border-radius: 18px;
    object-fit: cover;
}

.slider-editor-card__fields {
    display: grid;
    gap: 2px;
}

.editor-card-head,
.media-card__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.media-link {
    margin-top: 0;
}

.button--small {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.95rem;
}

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

.media-grid--compact {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.media-grid--editor {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 16px;
}

.media-card {
    padding: 18px;
}

.media-card--editor {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.5);
}

.media-card__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    margin-bottom: 14px;
    border-radius: 16px;
    object-fit: cover;
}

.media-card__title {
    margin-bottom: 10px;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.media-card__form {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}

.media-card__form .hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 0;
}

.media-card__form .button {
    min-width: 120px;
}

.editor-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
}

.studio-editor-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
}

.studio-editor-sidebar {
    display: grid;
    gap: 16px;
    align-self: start;
}

.editor-card-title {
    margin-bottom: 16px;
    font-weight: 700;
}

.cover-manager {
    display: grid;
    gap: 16px;
}

.cover-manager .editor-card-title {
    margin-bottom: 0;
}

.cover-manager__status {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    color: var(--muted);
    background: rgba(255, 255, 255, 0.7);
    font-size: 0.82rem;
    font-weight: 700;
}

.cover-manager__preview {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.72);
}

.cover-manager__image {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.cover-manager__preview--empty {
    border-style: dashed;
}

.cover-manager__preview--removed {
    border-color: rgba(161, 57, 57, 0.28);
    background: rgba(255, 236, 236, 0.6);
}

.cover-manager__placeholder {
    display: grid;
    min-height: 180px;
    place-items: center;
    align-content: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
}

.cover-manager__placeholder strong {
    color: var(--text);
}

.cover-manager__placeholder span,
.cover-manager__filename {
    color: var(--muted);
}

.cover-manager__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cover-manager__upload {
    cursor: pointer;
}

.cover-manager__upload input,
.cover-manager [data-cover-remove-input] {
    position: absolute;
    inline-size: 1px;
    block-size: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
}

.cover-manager__filename {
    margin: -4px 0 0;
}

.field {
    display: grid;
    gap: 8px;
    margin-bottom: 16px;
}

.field--choice span,
.field--checkbox span {
    display: inline-flex;
    gap: 10px;
    align-items: center;
    color: var(--text);
}

.field--choice,
.field--checkbox {
    display: flex;
    align-items: center;
}

.editor-category-grid .field--choice,
.editor-tag-grid .field--checkbox {
    min-height: 44px;
    margin-bottom: 0;
}

.editor-category-grid .field--choice span,
.editor-tag-grid .field--checkbox span {
    flex-wrap: nowrap;
    white-space: nowrap;
}

.field--choice input[type="radio"],
.field--checkbox input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    flex: 0 0 20px;
    margin: 0;
    border: 1.5px solid rgba(39, 85, 100, 0.34);
    border-radius: 50%;
    background: #ffffff;
    display: inline-grid;
    place-items: center;
}

.field--choice input[type="radio"]::before,
.field--checkbox input[type="checkbox"]::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #4bb8e8;
    transform: scale(0);
    transition: transform 140ms ease;
}

.field--choice input[type="radio"]:checked,
.field--checkbox input[type="checkbox"]:checked {
    border-color: #4bb8e8;
    background: #ffffff;
}

.field--choice input[type="radio"]:checked::before,
.field--checkbox input[type="checkbox"]:checked::before {
    transform: scale(1);
}

.field--choice input[type="radio"]:focus-visible,
.field--checkbox input[type="checkbox"]:focus-visible,
.studio-bulk-actions__select:focus-visible {
    outline: 0;
    box-shadow: 0 0 0 4px rgba(75, 184, 232, 0.16);
}

.studio-bulk-actions {
    margin-bottom: 20px;
    padding: 18px 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 252, 0.9));
}

.studio-bulk-actions__controls {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.studio-bulk-actions__checkbox {
    margin: 0;
    padding: 10px 14px;
    border: 1px solid rgba(39, 85, 100, 0.14);
    background: rgba(255, 255, 255, 0.9);
}

.studio-bulk-actions__select {
    min-width: 220px;
    min-height: 46px;
    padding: 0 42px 0 14px;
    border: 1px solid rgba(39, 85, 100, 0.18);
    background:
        linear-gradient(45deg, transparent 50%, #4bb8e8 50%),
        linear-gradient(135deg, #4bb8e8 50%, transparent 50%),
        linear-gradient(to right, rgba(75, 184, 232, 0.12), rgba(75, 184, 232, 0.12));
    background-position:
        calc(100% - 18px) calc(50% - 3px),
        calc(100% - 12px) calc(50% - 3px),
        calc(100% - 38px) 50%;
    background-size:
        6px 6px,
        6px 6px,
        1px 24px;
    background-repeat: no-repeat;
    color: var(--text);
    font: inherit;
    appearance: none;
    box-shadow: inset 0 1px 2px rgba(22, 52, 67, 0.05);
}

.studio-article-select {
    margin-bottom: 12px;
}

.studio-bulk-actions__checkbox span,
.studio-article-select span {
    font-weight: 600;
}

.studio-article-list {
    display: grid;
    gap: 16px;
}

.editor-tag-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-top: 10px;
}

.editor-category-grid {
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-top: 10px;
}

.studio-article-row {
    display: grid;
    gap: 18px;
    grid-template-columns: auto 96px minmax(0, 1fr) auto;
    align-items: center;
    padding: 18px 20px;
}

.studio-article-row--simple {
    grid-template-columns: minmax(0, 1fr) auto;
}

.taxonomy-list {
    margin-top: 18px;
}

.studio-article-row__select .studio-article-select {
    margin-bottom: 0;
}

.studio-article-row__media {
    width: 96px;
}

.studio-article-row__content h3 {
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.studio-article-row__actions .hero__actions {
    justify-content: flex-end;
    margin-top: 0;
    gap: 10px;
}

.studio-article-row__placeholder {
    display: grid;
    width: 96px;
    aspect-ratio: 16 / 10;
    place-items: center;
    border: 1px dashed var(--line);
    color: var(--muted);
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.58);
}

.studio-article-select span {
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--muted);
    font-weight: 500;
}

.field small {
    color: var(--muted);
    font-size: 0.9rem;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    font: inherit;
    color: var(--text);
    background: rgba(255, 255, 255, 0.8);
}

.field--password .field-input-wrap {
    position: relative;
}

.field--password .password-toggle {
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
    border: none;
    background: transparent;
    color: var(--muted);
    font-size: 1.1rem;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

.field--password .password-toggle:hover,
.field--password .password-toggle:focus-visible {
    color: var(--accent-dark);
}

.field--password .field-input-wrap input {
    padding-right: 46px;
}

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

.editorjs {
    min-height: 460px;
}

.editorjs--compact {
    min-height: 140px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.8);
}

.faq-answer-short-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
}

.faq-answer-short-meta strong.is-invalid {
    color: #b45309;
}

.editor-guide {
    align-self: start;
}

.preview-card {
    align-self: start;
}

.preview-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 12px;
    margin-bottom: 14px;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--accent-dark);
    background: var(--accent-soft);
}

.preview-badge[data-status="draft"] {
    color: #7c5a11;
    background: #f5ebc8;
}

.preview-badge[data-status="published"] {
    color: #1e5631;
    background: #dff3e6;
}

.preview-title {
    max-width: none;
    margin-bottom: 12px;
    font-size: 2.2rem;
    line-height: 1.02;
}

.preview-excerpt {
    max-width: none;
}

.preview-card .meta-line {
    margin-bottom: 10px;
}

.preview-content > *:last-child {
    margin-bottom: 0;
}

.preview-block-title {
    max-width: none;
    margin: 28px 0 12px;
    font-size: 1.5rem;
    line-height: 1.1;
}

.editor-steps {
    margin: 0;
    padding-left: 20px;
    color: var(--muted);
}

.editor-steps li + li {
    margin-top: 10px;
}

.studio-mini-list {
    display: grid;
    gap: 12px;
}

.studio-mini-link {
    display: grid;
    gap: 4px;
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.72);
}

.studio-mini-link span {
    color: var(--muted);
    font-size: 0.92rem;
}

.studio-shell .page-hero,
.studio-shell .auth-card,
.studio-shell .studio-bulk-actions,
.studio-shell .card,
.studio-app__bar,
.studio-app__mobilebar,
.studio-app__workspace,
.studio-theme-toggle,
.studio-app__site-link,
.studio-app__nav a,
.studio-app__sidebar-nav a,
.studio-kpi-card,
.studio-panel,
.studio-action-card,
.studio-status-card,
.studio-activity-item,
.studio-checklist__item,
.studio-searchbar,
.studio-table-card,
.studio-shell .studio-article-row,
.studio-shell .studio-article-row__placeholder,
.studio-shell .studio-card-cover,
.studio-shell .slider-editor-card__image,
.studio-shell .media-card--editor,
.studio-shell .media-card__image,
.studio-shell .field input,
.studio-shell .field textarea,
.studio-shell .field select,
.studio-shell .button,
.studio-shell .filter-chip,
.studio-badge,
.studio-shell .auth-alert,
.studio-shell .preview-badge,
.studio-shell .studio-mini-link,
.studio-shell .studio-bulk-actions__checkbox,
.studio-shell .studio-bulk-actions__select,
.studio-shell .studio-table__thumb,
.studio-shell .studio-table__thumb--placeholder {
    border-radius: 0.25rem;
}

.footer {
    padding: 56px 0 40px;
    color: #ffffff;
    background-color: #66b3d7;
    background-image: url('/images/footer/background-footer-sabine-1.webp');
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: cover;
}

.footer__inner {
    display: grid;
    gap: 36px;
    grid-template-columns: minmax(220px, 0.9fr) minmax(260px, 1fr) minmax(220px, 0.9fr);
    align-items: start;
}

.footer__column--brand {
    padding-right: 44px;
}

.footer__links {
    display: grid;
    gap: 10px;
}

.footer__column {
    min-width: 0;
}

.footer__logo {
    display: block;
    width: auto;
    height: 64px;
    margin-bottom: 18px;
}

.footer__title {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer__copy,
.footer__details p,
.footer__links a {
    color: #111111;
}

.footer__address-link {
    display: inline-flex;
    gap: 8px;
    align-items: flex-start;
}

.footer__address-link svg {
    flex: 0 0 auto;
    margin-top: 4px;
}

.footer__copy,
.footer__details p {
    line-height: 1.7;
}

.footer__details {
    display: grid;
    gap: 12px;
}

.footer__details p {
    margin: 0;
}

.footer__links a {
    font-weight: 600;
    transition: color 180ms ease;
}

.footer__links a:hover {
    color: #ffffff;
}

.footer__links a.is-active,
.footer__address-link:hover,
.footer__address-link:focus-visible {
    color: #ffffff;
}

.footer__bottom {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: center;
    margin-top: 76px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.footer__meta {
    margin: 0;
    color: rgba(255, 255, 255, 0.92);
    font-size: 0.95rem;
}

.footer__meta a {
    transition: color 180ms ease;
}

.footer__meta a:hover {
    color: #ffffff;
}

.footer__meta:nth-child(2) {
    text-align: center;
}

.footer__meta:nth-child(3) {
    text-align: right;
}

@media (max-width: 960px) {
    .topbar {
        position: static;
    }

    .hero__grid,
    .page-hero,
    .hero-summary__grid,
    .split,
    .contact,
    .hero__facts,
    .cards,
    .cards--stacked,
    .team-grid,
    .consult-grid,
    .tag-grid,
    .proof-list,
    .case-study-grid,
    .media-grid,
    .media-grid--compact,
    .media-grid--editor,
    .editor-grid,
    .editor-inline-fields,
    .slider-editor-card,
    .studio-editor-grid {
        grid-template-columns: 1fr;
    }

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

    .topbar__inner {
        gap: 16px;
        min-height: 78px;
        padding: 12px 0;
    }

    .nav,
    .header-actions {
        display: none;
    }

    .nav-group {
        width: 100%;
    }

    .nav-group__menu {
        position: static;
        min-width: 0;
        margin-top: 12px;
        box-shadow: none;
    }

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

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

    .footer__meta:nth-child(2),
    .footer__meta:nth-child(3) {
        text-align: left;
    }

    .contact-form-card__row {
        grid-template-columns: 1fr;
    }

    .studio-article-row {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .studio-article-row__media {
        width: 100%;
    }

    .studio-article-row__placeholder {
        width: 100%;
    }

    .studio-article-row__actions .hero__actions {
        justify-content: flex-start;
    }

    .cookie-banner__inner {
        grid-template-columns: 1fr;
    }

    .burger-button {
        display: inline-flex;
        margin-left: auto;
    }
}

@media (max-width: 640px) {
    .shell {
        width: min(100% - 24px, 1120px);
    }

    .hero {
        padding: 56px 0 44px;
    }

    .hero-slider,
    .hero-slide__inner {
        min-height: 82vh;
    }

    .hero-slide__inner {
        padding-top: 132px;
        padding-bottom: 112px;
    }

    .hero-slider__controls {
        inset: auto 0 28px 0;
        transform: none;
        pointer-events: auto;
    }

    .hero-slider__dots {
        position: static;
        transform: none;
        justify-content: center;
        margin-top: 18px;
    }

    .hero-slider__arrow {
        margin: 0;
    }

    .section {
        padding: 28px 0 52px;
    }

    .topbar__inner,
    .hero-card,
    .card,
    .contact,
    .faq-item {
        padding: 22px;
    }

    .case-study-card__compare {
        grid-template-columns: 1fr;
    }

    .case-study-card--visual .case-study-card__compare {
        grid-template-columns: 1fr;
    }

    .page-carousel__arrow {
        width: 46px;
        height: 46px;
    }

    .cookie-banner {
        left: 12px;
        bottom: 12px;
        width: calc(100% - 24px);
    }

    .cookie-launcher {
        left: 12px;
        bottom: 10%;
        width: 58px;
        height: 58px;
    }

    .cookie-banner {
        bottom: calc(10% + 72px);
    }

    .cookie-panel__dialog {
        margin-top: 20px;
        padding: 20px;
    }

    .cookie-option {
        grid-template-columns: 1fr;
    }
}
