:root {
    --ut21-blue: #009ee0;
    --ut21-blue-deep: #0b4f7a;
    --ut21-orange: #f39200;
    --ut21-ink: #183247;
    --ut21-muted: #5f7385;
    --ut21-border: #d7e3ee;
    --ut21-surface: #f5f9fc;
    --ut21-white: #ffffff;
    --ut21-success: #12805c;
    --ut21-warning: #b46911;
    --ut21-danger: #c33a3a;
    --ut21-radius: 22px;
    --ut21-shadow: 0 16px 40px rgba(12, 56, 88, 0.08);
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    font-family: "Segoe UI", -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--ut21-ink);
    background:
        radial-gradient(circle at top left, rgba(0, 158, 224, 0.12), transparent 28%),
        linear-gradient(180deg, #eef7fd 0%, #ffffff 420px);
    overflow-x: hidden;
}

body {
    min-height: 100vh;
}

a {
    color: inherit;
}

img {
    max-width: 100%;
}

.ut21-shell {
    width: min(1180px, calc(100vw - 32px));
    margin: 0 auto;
}

.ut21-topbar {
    padding: 20px 0;
}

.ut21-nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(215, 227, 238, 0.9);
    border-radius: 999px;
    box-shadow: var(--ut21-shadow);
}

.ut21-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
}

.ut21-brand-logo {
    width: 68px;
    height: 68px;
    border-radius: 20px;
    object-fit: cover;
    flex: 0 0 auto;
    box-shadow: 0 12px 28px rgba(0, 83, 136, 0.16);
}

.ut21-brand-mark {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--ut21-blue);
    color: var(--ut21-white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    flex: 0 0 auto;
}

.ut21-brand-copy {
    min-width: 0;
}

.ut21-brand-copy strong,
.ut21-brand-copy span {
    display: block;
}

.ut21-brand-copy strong {
    font-size: 19px;
}

.ut21-brand-copy span {
    font-size: 13px;
    color: var(--ut21-muted);
}

.ut21-nav-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.ut21-link-pill,
.ut21-btn,
.ut21-btn-secondary,
.ut21-btn-ghost,
.ut21-btn-danger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 20px;
    border-radius: 16px;
    text-decoration: none;
    border: 1px solid transparent;
    font-weight: 700;
    cursor: pointer;
    transition: transform .18s ease, background-color .18s ease, border-color .18s ease, color .18s ease;
}

.ut21-link-pill {
    color: var(--ut21-blue-deep);
    background: rgba(0, 158, 224, 0.08);
}

.ut21-btn {
    background: var(--ut21-blue);
    color: var(--ut21-white);
}

.ut21-btn-secondary {
    background: var(--ut21-orange);
    color: var(--ut21-white);
}

.ut21-btn-ghost {
    background: var(--ut21-white);
    border-color: var(--ut21-border);
    color: var(--ut21-blue-deep);
}

.ut21-btn-danger {
    background: #fff3f3;
    border-color: #f0b4b4;
    color: var(--ut21-danger);
}

.ut21-link-pill:hover,
.ut21-btn:hover,
.ut21-btn-secondary:hover,
.ut21-btn-ghost:hover,
.ut21-btn-danger:hover {
    transform: translateY(-1px);
}

.ut21-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: 26px;
    align-items: stretch;
    margin: 28px 0 36px;
}

.ut21-panel {
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    box-shadow: var(--ut21-shadow);
}

.ut21-hero-copy {
    padding: 38px;
    background: linear-gradient(145deg, #ffffff 0%, #f6fbff 100%);
}

.ut21-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.1);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.ut21-hero-copy h1,
.ut21-section-title {
    margin: 20px 0 16px;
    font-size: clamp(34px, 4.6vw, 54px);
    line-height: 1.08;
}

.ut21-hero-copy p,
.ut21-section-lead {
    margin: 0;
    font-size: 20px;
    line-height: 1.6;
    color: var(--ut21-muted);
}

.ut21-cta-row,
.ut21-inline-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.ut21-cta-row {
    margin-top: 28px;
}

.ut21-inline-cta {
    margin-top: 22px;
}

.ut21-badge-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 28px;
}

.ut21-badge-card {
    padding: 16px;
    border-radius: 18px;
    background: #f5f9fc;
    border: 1px solid var(--ut21-border);
}

.ut21-badge-card strong,
.ut21-badge-card span {
    display: block;
}

.ut21-badge-card strong {
    font-size: 18px;
    margin-bottom: 6px;
}

.ut21-badge-card span {
    color: var(--ut21-muted);
    font-size: 14px;
}

.ut21-hero-side {
    padding: 32px;
    background: linear-gradient(180deg, #0c6ea7 0%, var(--ut21-blue) 100%);
    color: var(--ut21-white);
}

.ut21-hero-side h2 {
    margin: 0 0 18px;
    font-size: clamp(27px, 3.2vw, 34px);
    line-height: 1.14;
    max-width: 12ch;
}

.ut21-feature-list {
    display: grid;
    gap: 14px;
}

.ut21-home-news {
    display: grid;
    gap: 18px;
    margin: 28px 0 34px;
}

.ut21-home-news-list {
    display: grid;
    gap: 18px;
}

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

.ut21-home-news-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    min-height: 100%;
    padding: 0 0 22px;
    border-radius: 24px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    overflow: hidden;
}

.ut21-home-news-image,
.ut21-article-image {
    display: block;
    aspect-ratio: 16 / 9;
    background: #d9ebf7;
    overflow: hidden;
}

.ut21-home-news-image img,
.ut21-article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ut21-home-news-card h2 {
    margin: 0;
    padding: 0 22px;
    font-size: clamp(22px, 2.2vw, 28px);
    line-height: 1.12;
    overflow-wrap: anywhere;
}

.ut21-home-news-card p,
.ut21-collectif-card p {
    margin: 0;
    padding: 0 22px;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-home-news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    padding: 0 22px;
}

.ut21-home-news-meta span,
.ut21-home-news-meta time {
    display: inline-flex;
    align-items: center;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 700;
}

.ut21-home-news-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding: 0 22px;
}

.ut21-home-news-footer small {
    color: var(--ut21-muted);
}

.ut21-feature {
    padding: 18px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.ut21-feature strong,
.ut21-feature p {
    display: block;
}

.ut21-feature strong {
    font-size: 18px;
    margin-bottom: 6px;
}

.ut21-feature p {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.ut21-section-heading {
    max-width: 920px;
    margin-bottom: 18px;
}

.ut21-highlight-card {
    background: linear-gradient(145deg, #f7fbff 0%, #eef7fd 100%);
}

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

.ut21-action-card {
    grid-column: span 4;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 28px;
    border-radius: 26px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
    min-height: 100%;
}

.ut21-action-card h2 {
    margin: 0;
    font-size: clamp(24px, 2.5vw, 32px);
    line-height: 1.1;
    overflow-wrap: anywhere;
}

.ut21-action-card p {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-action-card-primary {
    background: linear-gradient(180deg, #0b75b2 0%, #009ee0 100%);
    color: var(--ut21-white);
}

.ut21-action-card-primary p,
.ut21-action-card-primary .ut21-action-kicker {
    color: rgba(255, 255, 255, 0.92);
}

.ut21-btn-contrast {
    background: var(--ut21-white);
    color: var(--ut21-blue-deep);
}

.ut21-action-card-locked {
    background: linear-gradient(145deg, #f7fbff 0%, #eef4fa 100%);
}

.ut21-action-grid-main .ut21-action-card,
.ut21-action-grid-main .ut21-action-card-primary,
.ut21-action-grid-main .ut21-action-card-main {
    grid-column: span 4;
}

.ut21-action-grid-secondary .ut21-action-card,
.ut21-action-grid-secondary .ut21-action-card-news,
.ut21-action-grid-secondary .ut21-action-card-locked {
    grid-column: span 6;
}

.ut21-action-top {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ut21-action-cover {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: 164px;
    padding: 16px;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ecf6fd 0%, #d6ecfb 100%);
}

.ut21-action-cover img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ut21-action-cover-help {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.06) 100%);
}

.ut21-action-cover-militant {
    background: linear-gradient(145deg, #eff8fe 0%, #d8eefc 100%);
}

.ut21-action-cover-locked {
    background: linear-gradient(145deg, #eef6fd 0%, #dfeef9 100%);
}

.ut21-action-cover-label {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.88);
    color: var(--ut21-blue-deep);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.ut21-action-card-primary .ut21-action-cover-label {
    background: rgba(255, 255, 255, 0.16);
    color: var(--ut21-white);
}

.ut21-action-icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
    font-weight: 800;
    font-size: 18px;
    flex: 0 0 auto;
}

.ut21-action-card-primary .ut21-action-icon {
    background: rgba(255, 255, 255, 0.18);
    color: var(--ut21-white);
}

.ut21-action-kicker {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--ut21-blue-deep);
}

.ut21-mini-news {
    display: grid;
    gap: 10px;
}

.ut21-mini-news-item {
    display: block;
    padding: 14px 16px;
    border-radius: 16px;
    background: #f6fbff;
    border: 1px solid var(--ut21-border);
    text-decoration: none;
}

.ut21-mini-news-item strong,
.ut21-mini-news-item span {
    display: block;
}

.ut21-mini-news-item strong {
    margin-bottom: 6px;
}

.ut21-mini-news-item span {
    color: var(--ut21-muted);
    font-size: 13px;
}

.ut21-choice-card {
    text-align: left;
}

.ut21-choice-card h2 {
    margin: 0 0 10px;
    font-size: 30px;
}

.ut21-section-heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    max-width: none;
}

.ut21-home-heading {
    margin: 14px 0 0;
    font-size: clamp(32px, 4.1vw, 48px);
    line-height: 1.08;
}

.ut21-heading-action {
    flex: 0 0 auto;
}

.ut21-choice-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 14px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 158, 224, 0.12);
    color: var(--ut21-blue-deep);
    font-weight: 800;
    font-size: 22px;
}

.ut21-pricing-panel {
    padding: 32px;
}

.ut21-title-md {
    font-size: clamp(30px, 4vw, 42px);
}

.ut21-bullet-list {
    margin: 0;
    padding-left: 18px;
    display: grid;
    gap: 10px;
    color: var(--ut21-muted);
    line-height: 1.65;
}

.ut21-bullet-list li::marker {
    color: var(--ut21-blue);
}

.ut21-pricing-header {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    gap: 20px;
    align-items: end;
    margin-bottom: 22px;
}

.ut21-pricing-title {
    margin: 16px 0 0;
    font-size: clamp(28px, 3.6vw, 42px);
    line-height: 1.12;
}

.ut21-pricing-copy {
    margin: 0;
    color: var(--ut21-muted);
    line-height: 1.7;
    font-size: 18px;
}

.ut21-pricing-desktop {
    display: block;
}

.ut21-pricing-mobile {
    display: none;
}

.ut21-pricing-table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
    overflow: hidden;
    border-radius: 18px;
}

.ut21-pricing-col-label {
    width: 42%;
}

.ut21-pricing-col-value {
    width: 14.5%;
}

.ut21-pricing-table th,
.ut21-pricing-table td {
    padding: 16px 14px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

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

.ut21-pricing-table thead th {
    background: rgba(255, 255, 255, 0.2);
    font-size: clamp(16px, 2vw, 18px);
}

.ut21-pricing-table tbody td {
    font-size: clamp(16px, 1.8vw, 19px);
}

.ut21-pricing-table tbody tr:nth-child(1) td {
    background: rgba(243, 146, 0, 0.94);
}

.ut21-pricing-table tbody tr:nth-child(2) td {
    background: rgba(255, 255, 255, 0.22);
}

.ut21-pricing-table tbody tr:nth-child(3) td {
    background: rgba(11, 79, 122, 0.88);
}

.ut21-price-value {
    white-space: nowrap;
}

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

.ut21-article-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 22px;
    overflow: hidden;
}

.ut21-article-card h3 {
    margin: 0;
    padding: 0 22px;
}

.ut21-article-card p {
    margin: 0;
    padding: 0 22px;
}

.ut21-article-meta {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--ut21-muted);
    padding: 0 22px;
}

.ut21-article-meta span {
    display: inline-flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 158, 224, 0.08);
    color: var(--ut21-blue-deep);
    font-weight: 700;
}

.ut21-article-footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
    padding: 0 22px;
}

.ut21-article-footer small {
    color: var(--ut21-muted);
}

.ut21-main {
    padding-bottom: 48px;
}

.ut21-section {
    margin: 0 0 30px;
}

.ut21-grid-3,
.ut21-grid-2 {
    display: grid;
    gap: 18px;
}

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

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

.ut21-card,
.ut21-status,
.ut21-form-shell,
.ut21-auth-shell,
.ut21-dashboard-panel {
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: var(--ut21-radius);
    box-shadow: var(--ut21-shadow);
}

.ut21-card {
    padding: 24px;
}

.ut21-account-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.ut21-action-card-reserved {
    padding: 28px;
}

.ut21-scope-strip {
    padding: 22px 26px;
    font-size: 18px;
    line-height: 1.75;
}

.ut21-card h3,
.ut21-dashboard-panel h2,
.ut21-form-shell h1,
.ut21-auth-shell h1 {
    margin: 0 0 12px;
    font-size: 28px;
}

.ut21-card p,
.ut21-card li,
.ut21-dashboard-panel p,
.ut21-status p,
.ut21-auth-shell p,
.ut21-form-shell p {
    color: var(--ut21-muted);
    line-height: 1.6;
}

.ut21-card ul {
    margin: 16px 0 0;
    padding-left: 18px;
}

.ut21-form-shell,
.ut21-auth-shell,
.ut21-dashboard-panel,
.ut21-status {
    padding: 30px;
}

.ut21-form-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 24px;
    align-items: start;
}

.ut21-sticky {
    position: sticky;
    top: 24px;
}

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

.ut21-form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ut21-form-group.ut21-span-2 {
    grid-column: span 2;
}

.ut21-form-group label {
    font-weight: 700;
    font-size: 15px;
}

.ut21-form-input,
.ut21-form-select,
.ut21-form-textarea {
    width: 100%;
    min-width: 0;
    border: 1px solid var(--ut21-border);
    border-radius: 16px;
    padding: 14px 16px;
    font: inherit;
    color: var(--ut21-ink);
    background: #fbfdff;
}

.ut21-form-textarea {
    min-height: 128px;
    resize: vertical;
}

.ut21-form-input:focus,
.ut21-form-select:focus,
.ut21-form-textarea:focus {
    outline: 3px solid rgba(0, 158, 224, 0.18);
    border-color: rgba(0, 158, 224, 0.7);
}

.ut21-hint {
    font-size: 13px;
    color: var(--ut21-muted);
}

.ut21-note {
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid #f9d49b;
    background: #fff6e8;
    color: #8f4e00;
}

.ut21-alert {
    padding: 16px 18px;
    border-radius: 18px;
    margin-bottom: 18px;
    border: 1px solid;
}

.ut21-alert-success {
    background: #effbf6;
    color: var(--ut21-success);
    border-color: #b5e7d1;
}

.ut21-alert-danger {
    background: #fff5f5;
    color: var(--ut21-danger);
    border-color: #efc0c0;
}

.ut21-alert-info {
    background: #eef7fd;
    color: var(--ut21-blue-deep);
    border-color: #bfdeef;
}

.ut21-summary-list {
    display: grid;
    gap: 12px;
}

.ut21-summary-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--ut21-border);
}

.ut21-summary-row:last-child {
    border-bottom: 0;
}

.ut21-summary-row strong {
    white-space: nowrap;
}

.ut21-inline-code {
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 15px;
}

.ut21-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 700;
    white-space: nowrap;
}

.ut21-status-pending {
    background: #fff4dc;
    color: var(--ut21-warning);
}

.ut21-status-approved {
    background: #eefbf6;
    color: var(--ut21-success);
}

.ut21-status-rejected {
    background: #fff5f5;
    color: var(--ut21-danger);
}

.ut21-dashboard-top {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.ut21-stat {
    padding: 20px;
    border-radius: 20px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    box-shadow: var(--ut21-shadow);
}

.ut21-stat strong,
.ut21-stat span {
    display: block;
}

.ut21-stat strong {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 6px;
}

.ut21-stat span {
    color: var(--ut21-muted);
}

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

.ut21-list-item {
    padding: 22px;
    border-radius: 20px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-list-head,
.ut21-list-meta,
.ut21-list-actions {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.ut21-list-head {
    justify-content: space-between;
}

.ut21-list-head h3 {
    margin: 0;
    font-size: 22px;
}

.ut21-list-meta {
    color: var(--ut21-muted);
    font-size: 14px;
    margin-top: 10px;
}

.ut21-list-body {
    margin-top: 16px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 18px;
}

.ut21-list-body div {
    min-width: 0;
}

.ut21-list-body strong,
.ut21-list-body span {
    display: block;
}

.ut21-list-body strong {
    font-size: 13px;
    color: var(--ut21-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 4px;
}

.ut21-list-actions {
    margin-top: 18px;
}

.ut21-resource-list {
    display: grid;
    gap: 16px;
}

.ut21-resource {
    padding: 20px;
    border-radius: 18px;
    background: #fbfdff;
    border: 1px solid var(--ut21-border);
}

.ut21-footer {
    padding: 34px 0 48px;
    color: var(--ut21-muted);
    font-size: 14px;
}

.ut21-footer-card {
    padding: 22px;
    background: var(--ut21-white);
    border: 1px solid var(--ut21-border);
    border-radius: 20px;
    box-shadow: var(--ut21-shadow);
}

.ut21-empty {
    padding: 26px;
    border: 1px dashed var(--ut21-border);
    border-radius: 18px;
    background: #fbfdff;
    color: var(--ut21-muted);
    text-align: center;
}

.ut21-nowrap {
    white-space: nowrap;
}

@media (max-width: 1080px) {
    .ut21-hero,
    .ut21-home-news,
    .ut21-form-layout,
    .ut21-grid-3,
    .ut21-grid-2,
    .ut21-pricing-header,
    .ut21-article-grid,
    .ut21-action-grid {
        grid-template-columns: 1fr;
    }

    .ut21-action-card,
    .ut21-action-card-primary,
    .ut21-action-card-news,
    .ut21-action-card-main,
    .ut21-action-card-reserved {
        grid-column: auto;
    }

    .ut21-home-news-grid {
        grid-template-columns: 1fr;
    }

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

    .ut21-sticky {
        position: static;
    }
}

@media (max-width: 760px) {
    .ut21-shell {
        width: min(100vw - 20px, 1180px);
    }

    .ut21-nav {
        border-radius: 28px;
        padding: 16px;
        flex-direction: column;
        align-items: stretch;
    }

    .ut21-nav-links {
        width: 100%;
        justify-content: stretch;
    }

    .ut21-brand {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-brand-logo {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .ut21-link-pill,
    .ut21-btn,
    .ut21-btn-secondary,
    .ut21-btn-ghost,
    .ut21-btn-danger {
        width: 100%;
    }

    .ut21-hero-copy,
    .ut21-hero-side,
    .ut21-form-shell,
    .ut21-auth-shell,
    .ut21-dashboard-panel,
    .ut21-status,
    .ut21-card {
        padding: 22px;
    }

    .ut21-hero-copy h1,
    .ut21-section-title,
    .ut21-home-heading {
        font-size: 34px;
    }

    .ut21-hero-copy p,
    .ut21-section-lead,
    .ut21-pricing-copy {
        font-size: 17px;
    }

    .ut21-badge-grid,
    .ut21-form-grid,
    .ut21-list-body,
    .ut21-dashboard-top,
    .ut21-action-grid {
        grid-template-columns: 1fr;
    }

    .ut21-form-group.ut21-span-2 {
        grid-column: span 1;
    }

    .ut21-list-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .ut21-summary-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-home-news-meta,
    .ut21-home-news-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .ut21-section-heading-row {
        align-items: stretch;
        flex-direction: column;
    }

    .ut21-heading-action {
        width: 100%;
    }

    .ut21-pricing-desktop {
        display: none;
    }

    .ut21-pricing-mobile {
        display: grid;
        gap: 14px;
    }

    .ut21-pricing-mobile-card {
        border: 1px solid var(--ut21-border);
        border-radius: 18px;
        overflow: hidden;
        background: #fbfdff;
    }

    .ut21-pricing-mobile-card strong {
        display: block;
        padding: 14px 16px;
        background: var(--ut21-blue);
        color: var(--ut21-white);
        font-size: 18px;
    }

    .ut21-pricing-mobile-row {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 16px;
        border-top: 1px solid var(--ut21-border);
    }

    .ut21-pricing-mobile-row span:first-child {
        color: var(--ut21-muted);
    }
}
