/* Home Twelve — global utilities */

/* AJAX loader (hidden by default; legacy themes load common.css — home_twelve does not) */
.request-loader {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1050;
    display: none;
}
.request-loader img {
    position: fixed;
    top: 50%;
    left: 50%;
    max-width: 120px;
    transform: translate(-50%, -50%);
    display: none;
}
.request-loader.show {
    display: block;
}
.request-loader.show img {
    display: block;
}

/* Home Twelve — nav dropdowns (desktop hover + mobile accordion) */

.he12-nav-dropdown {
    position: relative;
    padding-bottom: 10px;
    margin-bottom: -10px;
}
.he12-nav-drop-head {
    display: inline-flex;
    align-items: center;
}
.he12-nav-drop-link {
    display: inline-flex;
    align-items: center;
    padding: 4px 2px 4px 0;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.2s ease;
}
.he12-nav-drop-link:hover,
.he12-nav-dropdown:hover .he12-nav-drop-link {
    color: #fff;
}
.he12-nav-drop-chev {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 0 4px 4px;
    border: none;
    background: none;
    cursor: default;
    pointer-events: none;
    color: inherit;
}
.he12-nav-drop-chev svg {
    transition: transform 0.2s ease;
}
.he12-nav-submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    list-style: none;
    margin: 0;
    padding: 6px 0;
    background: var(--theme-card, #0b162c);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 60;
}
.he12-nav-dropdown:hover .he12-nav-submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}
.he12-nav-dropdown:hover .he12-nav-drop-chev svg {
    transform: rotate(180deg);
}
.he12-nav-submenu li a {
    display: block;
    padding: 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.82);
    white-space: nowrap;
    transition: background 0.15s ease, color 0.15s ease;
}
.he12-nav-submenu li a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: rgb(var(--color-primary));
}

.he12-mobile-sub-head {
    display: flex;
    align-items: center;
    width: 100%;
}
.he12-mobile-sub-link {
    flex: 1;
    padding: 10px 12px 10px 16px;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
}
.he12-mobile-sub-chev {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}
.he12-mobile-sub-chev svg {
    transition: transform 0.25s ease;
}
.he12-mobile-sub.is-open .he12-mobile-sub-chev svg {
    transform: rotate(180deg);
}
.he12-mobile-sub-list {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.18);
    border-radius: 8px;
}
.he12-mobile-sub.is-open .he12-mobile-sub-list {
    max-height: 360px;
}
.he12-mobile-sub-list a {
    display: block;
    padding: 8px 16px 8px 28px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
}
.he12-mobile-sub-list a:hover {
    color: #fff;
}

/* Team page hero — abstract image overlaps on the right (teams.html) */
.he12-team-hero .max-w-container {
    position: relative;
}
.he12-team-hero__abstract {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 120%;
    max-width: 800px;
    z-index: 0;
    opacity: 0.4;
    mix-blend-mode: screen;
}
@media (min-width: 768px) {
    .he12-team-hero__abstract {
        width: 60%;
        opacity: 1;
    }
}
@media (min-width: 1024px) {
    .he12-team-hero__abstract {
        width: 50%;
    }
}

/* Projects / orders DataTable (dark theme) */
.he12-projects-table-wrap {
    margin-top: 0;
}
.he12-projects-table-wrap .dataTables_wrapper {
    color: rgba(255, 255, 255, 0.72);
}
.he12-projects-dt-top label,
.he12-projects-dt-bottom .dataTables_info {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.875rem;
}
.he12-projects-dt-top select,
.he12-projects-dt-top input {
    background: #040d1f;
    border: 1px solid #1e2d4a;
    border-radius: 0.5rem;
    color: #fff;
    padding: 0.375rem 0.75rem;
    margin: 0 0.5rem;
    outline: none;
}
.he12-projects-dt-top input {
    padding: 0.5rem 1rem;
    min-width: 14rem;
}
.he12-projects-dt-top select:focus,
.he12-projects-dt-top input:focus {
    border-color: rgb(var(--color-primary));
}
.he12-projects-dt-paginate .pagination {
    display: flex;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.he12-projects-dt-paginate .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #1e2d4a;
    border-radius: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    background: transparent;
    text-decoration: none;
    font-size: 0.875rem;
}
.he12-projects-dt-paginate .page-item.active .page-link {
    background: rgb(var(--color-primary));
    border-color: rgb(var(--color-primary));
    color: #fff;
    font-weight: 600;
}
.he12-projects-dt-paginate .page-item:not(.active) .page-link:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.25);
}
.he12-projects-table.dataTable thead th {
    border-bottom: 1px solid #1e2d4a;
}
.he12-projects-table.dataTable tbody td {
    border-top: none;
    vertical-align: middle;
}

/* Blogs list — sky gradient page background (blogs.html) */
.he12-page-sky {
    background-color: #030914;
}
.he12-sky-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    min-height: 640px;
    z-index: -10;
    pointer-events: none;
    overflow: hidden;
    background: linear-gradient(180deg, #000000 0%, #003079 50%, #0f6cc4 95%, #1172cc 100%);
}
.he12-sky-bg__texture {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    mix-blend-mode: screen;
    opacity: 0.8;
}
.he12-blog-hero {
    min-height: 640px;
}

/* Inner-page hero (career, services, portfolio, blog, contact) — faq-sphere sky pages */
.he12-page-sphere {
    --he12-header-h: 4.25rem;
    --he12-hero-h: clamp(15rem, 48vw, 22rem);
    --he12-main-gap: 2.5rem;
}
.he12-page-sphere .he12-sky-bg {
    min-height: calc(var(--he12-header-h) + var(--he12-hero-h));
}
.he12-page-sphere:has(.he12-page-hero--has-subtitle) {
    --he12-hero-h: clamp(19rem, 62vw, 28rem);
}
.he12-page-sphere .he12-page-hero + main {
    background-color: #030914;
    padding-top: var(--he12-main-gap);
    position: relative;
}
.he12-page-sphere .he12-page-hero + main > section:first-child,
.he12-page-sphere .he12-page-hero + main > .he12-svc-section:first-child {
    padding-top: 0;
}
.he12-page-hero {
    position: relative;
    z-index: 10;
    display: grid;
    align-items: center;
    box-sizing: border-box;
    width: 100%;
    min-height: var(--he12-hero-h);
    margin: 0;
    padding: 0;
    overflow: visible;
}
.he12-page-hero__inner {
    width: 100%;
    max-width: var(--container-max, 1200px);
    margin-inline: auto;
    padding-inline: 1.5rem;
}
.he12-page-hero__copy {
    width: 100%;
    max-width: 36rem;
}
.he12-page-hero__title {
    margin: 0;
    font-size: clamp(1.875rem, 6.8vw, 2.375rem);
    font-weight: 700;
    line-height: 1.08;
    letter-spacing: -0.025em;
}
.he12-page-hero__title--light {
    color: #fff;
}
.he12-page-hero__title--gradient {
    background-image: linear-gradient(90deg, rgb(var(--color-primary)) 0%, rgb(var(--color-secondary)) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.06em;
}
.he12-page-hero__title + .he12-page-hero__title {
    margin-top: 0.35rem;
}
.he12-page-hero__subtitle {
    margin: 1rem 0 0;
    max-width: 36rem;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.82);
    overflow-wrap: anywhere;
}
@media (max-width: 767px) {
    .he12-page-hero {
        display: block;
        min-height: 0;
        height: auto;
        padding-block: 1.25rem 2rem;
    }
    .he12-page-sphere {
        --he12-main-gap: 2.5rem;
    }
    .he12-page-sphere .he12-sky-bg {
        min-height: calc(var(--he12-header-h) + 16rem);
    }
    .he12-page-sphere:has(.he12-page-hero--has-subtitle) .he12-sky-bg {
        min-height: calc(var(--he12-header-h) + 22rem);
    }
    .he12-page-hero__title {
        font-size: clamp(1.625rem, 7.2vw, 2.125rem);
    }
    .he12-page-hero__subtitle {
        margin-top: 0.875rem;
        font-size: 0.8125rem;
        line-height: 1.55;
    }
}
@media (min-width: 768px) {
    .he12-page-sphere {
        --he12-header-h: 5rem;
        --he12-hero-h: 420px;
        --he12-main-gap: 3rem;
    }
    .he12-page-sphere:has(.he12-page-hero--has-subtitle) {
        --he12-hero-h: 460px;
    }
    .he12-page-hero__title {
        font-size: clamp(2.5rem, 4.2vw, 3.25rem);
    }
    .he12-page-hero__title + .he12-page-hero__title {
        margin-top: 0.5rem;
    }
    .he12-page-hero__subtitle {
        margin-top: 1.25rem;
        font-size: 1rem;
    }
}
@media (min-width: 1024px) {
    .he12-page-sphere {
        --he12-hero-h: 450px;
        --he12-main-gap: 3.5rem;
    }
    .he12-page-sphere:has(.he12-page-hero--has-subtitle) {
        --he12-hero-h: 450px;
    }
    .he12-page-hero__inner {
        padding-inline: 0;
    }
    .he12-page-hero__copy {
        width: 60%;
        max-width: none;
    }
    .he12-page-hero__title {
        font-size: clamp(2.75rem, 3.6vw, 3.75rem);
    }
    .he12-page-hero__subtitle {
        margin-top: 1.5rem;
    }
}

.he12-blog-toolbar__filters {
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.he12-blog-toolbar__filters::-webkit-scrollbar {
    display: none;
}
.he12-blog-card__meta {
    font-size: 10px;
    line-height: 1.4;
}

/* Blog listing cards — keep thumbnails proportional (preflight img{height:auto} fights utilities) */
.he12-blog-card__media {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: rgba(4, 13, 31, 0.35);
}
.he12-blog-card__media img,
.he12-blog-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: center;
    opacity: 0.9;
    transition: transform 0.5s ease;
}
.he12-blog-card:hover .he12-blog-card__img {
    transform: scale(1.05);
}

.he12-blog-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.he12-blog-load-more:hover {
    background-color: rgba(255, 255, 255, 0.06);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.2);
}
.he12-btn-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 2.75rem;
    padding: 0 1.5rem;
    border-radius: 9999px;
    border: none;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    color: #fff;
    text-decoration: none;
    background-image: linear-gradient(90deg, rgb(var(--color-primary)) 0%, rgb(var(--color-secondary)) 100%);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.he12-btn-pill:hover {
    opacity: 0.92;
    color: #fff;
}
.he12-btn-pill--sm {
    min-height: 2rem;
    padding: 0 1.25rem;
}
.he12-btn-pill--block {
    width: 100%;
}
.he12-btn-pill--ghost {
    background-image: none;
    background-color: transparent;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: normal;
}
.he12-btn-pill--ghost:hover {
    border-color: rgba(255, 255, 255, 0.28);
    color: #fff;
    opacity: 1;
}
.he12-page-detail {
    background-color: #030914;
}
.he12-listing-control {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}
.he12-listing-control::placeholder {
    color: rgba(255, 255, 255, 0.9);
}
.he12-listing-control:focus {
    outline: none;
    border-color: rgba(var(--color-primary), 0.5);
}
.he12-quote-field {
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}
.he12-quote-field::placeholder {
    color: rgba(255, 255, 255, 0.9);
}
.he12-quote-field:focus {
    outline: none;
    border-color: rgba(var(--color-primary), 0.5);
}
.he12-quote-form select option {
    background-color: #040d1f;
    color: #fff;
}
.he12-sky-select-wrap {
    position: relative;
    flex-shrink: 0;
    min-width: 9.5rem;
}
.he12-sky-select {
    display: block;
    width: 100%;
    padding: 0.75rem 2.5rem 0.75rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: 0.025em;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: none;
    transition: border-color 0.2s ease;
}
.he12-sky-select::-ms-expand {
    display: none;
}
.he12-sky-select:focus {
    outline: none;
    border-color: rgba(var(--color-primary), 0.5);
}
.he12-sky-select__chevron {
    position: absolute;
    top: 0;
    right: 0.875rem;
    bottom: 0;
    display: flex;
    align-items: center;
    pointer-events: none;
    color: rgba(255, 255, 255, 0.9);
}
.he12-sky-select__chevron svg {
    width: 0.875rem;
    height: 0.875rem;
}
.he12-sky-select option {
    background-color: #040d1f;
    color: #fff;
}
.he12-contact-info {
    width: 100%;
}

.he12-contact-form-section {
    width: 100%;
    background-color: rgb(var(--color-primary-dark) / 0.15);
}

.he12-contact-form-section__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

@media (min-width: 1024px) {
    .he12-contact-form-section__inner {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }
}
#he12ContactForm select option {
    background-color: #040d1f;
    color: #fff;
}

/* Blog detail hero + article (blog-details.html) */
.he12-blog-detail-hero__thumb {
    border-radius: 1rem;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    position: relative;
}
.he12-blog-detail-hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(1.1) saturate(1.5);
}
.he12-blog-detail-hero__thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(var(--color-primary), 0.4), rgba(var(--color-secondary), 0.25));
    pointer-events: none;
}
.he12-blog-detail-hero__thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top right, rgba(3, 9, 20, 0.4), transparent);
    pointer-events: none;
    z-index: 1;
}
.he12-blog-detail-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, rgb(var(--color-primary)), rgb(var(--color-secondary)));
}
.he12-detail-share {
    list-style: none;
    margin: 0;
    padding: 0;
}
.he12-detail-share__link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 9999px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}
button.he12-detail-share__link {
    background: transparent;
    cursor: pointer;
    padding: 0;
    font: inherit;
}
.he12-detail-share__link:hover,
button.he12-detail-share__link.is-copied {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.08);
}
.he12-detail-article {
    width: 100%;
}
.he12-rich-content {
    color: rgba(255, 255, 255, 0.72) !important;
    font-size: 0.875rem;
    line-height: 1.75;
}
@media (min-width: 768px) {
    .he12-rich-content {
        font-size: 1rem;
    }
}
.he12-rich-content.summernote-content * {
    margin: revert;
}
.he12-rich-content p,
.he12-rich-content li,
.he12-rich-content td,
.he12-rich-content th,
.he12-rich-content span,
.he12-rich-content div,
.he12-rich-content figcaption {
    color: rgba(255, 255, 255, 0.72) !important;
}
.he12-rich-content > p:first-of-type {
    color: #fff !important;
    font-weight: 600;
    font-size: 1.125rem;
    line-height: 1.65;
}
@media (min-width: 768px) {
    .he12-rich-content > p:first-of-type {
        font-size: 1.25rem;
    }
}
.he12-rich-content p {
    margin-bottom: 1.5rem;
}
.he12-rich-content h1,
.he12-rich-content h2,
.he12-rich-content h3,
.he12-rich-content h4,
.he12-rich-content h5,
.he12-rich-content h6 {
    color: #fff !important;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}
.he12-rich-content h2 {
    font-size: 1.875rem;
}
.he12-rich-content h3 {
    font-size: 1.5rem;
}
.he12-rich-content a {
    color: rgb(var(--color-primary)) !important;
    text-decoration: underline;
}
.he12-rich-content a:hover {
    color: rgb(var(--color-secondary)) !important;
}
.he12-rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
    margin: 1.5rem 0;
}
.he12-rich-content ul,
.he12-rich-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.25rem;
    color: rgba(255, 255, 255, 0.72) !important;
}
.he12-rich-content ul li,
.he12-rich-content ol li {
    color: rgba(255, 255, 255, 0.72) !important;
    margin-bottom: 0.5rem;
}
.he12-rich-content blockquote {
    border-left: 3px solid rgb(var(--color-primary));
    padding-left: 1rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 600;
}
.he12-rich-content strong,
.he12-rich-content b {
    color: #fff !important;
    font-weight: 600;
}
.he12-rich-content em,
.he12-rich-content i {
    color: rgba(255, 255, 255, 0.72) !important;
}
.he12-rich-content hr {
    border-color: rgba(255, 255, 255, 0.15) !important;
    margin: 2rem 0;
}
.he12-rich-content table,
.he12-rich-content .table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}
.he12-rich-content table td,
.he12-rich-content table th,
.he12-rich-content .table td,
.he12-rich-content .table th {
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    padding: 0.5rem 0.75rem;
    color: rgba(255, 255, 255, 0.72) !important;
    vertical-align: top;
}
.he12-rich-content pre,
.he12-rich-content code {
    color: rgba(255, 255, 255, 0.9) !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border-radius: 0.375rem;
}
.he12-rich-content pre {
    padding: 0.75rem 1rem;
    overflow-x: auto;
    margin: 1.5rem 0;
}
.he12-rich-content code {
    padding: 0.1rem 0.35rem;
    font-size: 0.875em;
}
.he12-rich-content pre code {
    background: transparent !important;
    padding: 0;
}
.he12-rich-content figure {
    margin: 1.5rem 0;
}
.he12-rich-content iframe,
.he12-rich-content video {
    max-width: 100%;
    border-radius: 1rem;
    margin: 1.5rem 0;
}

/* Pricing page — CTA buttons (anchors must match HTML <button> layout) */
.he12-pricing-cta {
    display: block;
    width: 100%;
    box-sizing: border-box;
    padding: 0.75rem 1rem;
    margin-bottom: 2rem;
    border-radius: 0.75rem;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 600;
    letter-spacing: 0.025em;
    text-align: center;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.he12-pricing-cta:hover,
.he12-pricing-cta:focus {
    color: #fff;
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}
.he12-pricing-cta--featured {
    font-weight: 700;
    border: none;
    background-image: linear-gradient(
        to right,
        rgb(var(--color-primary-dark)),
        rgb(var(--color-primary)),
        rgb(var(--color-primary-dark))
    );
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.1),
        0 2px 4px -2px rgba(0, 0, 0, 0.1),
        0 0 20px rgba(var(--color-primary), 0.2);
}
.he12-pricing-cta--featured:hover,
.he12-pricing-cta--featured:focus {
    opacity: 0.95;
    background-color: transparent;
    border: none;
    color: #fff;
}

/* Case study CTA pills */
.he12-case-study-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    background-image: linear-gradient(90deg, rgb(var(--color-primary)) 0%, rgb(var(--color-secondary)) 100%);
    color: #fff;
    font-size: 0.75rem;
    line-height: 1rem;
    font-weight: 700;
    letter-spacing: 0.025em;
    text-decoration: none;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: opacity 0.2s ease;
}
.he12-case-study-cta:hover,
.he12-case-study-cta:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.95;
}

/* Services list row — gradient title shifts to theme primary on card hover */
.he12-service-row {
    text-decoration: none;
    color: inherit;
}
.he12-service-row__title {
    background-image: linear-gradient(90deg, rgb(var(--color-primary)) 0%, rgb(var(--color-secondary)) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    transition: color 0.3s ease, background 0.3s ease;
}
.he12-service-row:hover .he12-service-row__title {
    background-image: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: rgb(var(--color-primary));
}
.he12-case-study-cta--sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.6875rem;
}
.he12-case-study-cta--block {
    width: 100%;
    justify-content: center;
}

/* Portfolio listing cards — force cover so portrait assets cannot inflate the card */
.he12-portfolio-card__media {
    position: relative;
    width: 100%;
    background: rgba(3, 9, 20, 0.2);
    overflow: hidden;
    flex-shrink: 0;
}
.he12-portfolio-card__media img {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    opacity: 0.85;
    transition: transform 0.7s ease;
}
.group:hover .he12-portfolio-card__media img {
    transform: scale(1.02);
}
.he12-portfolio-card__media--featured {
    aspect-ratio: 16 / 11;
    min-height: 260px;
}
.he12-portfolio-card__media--wide {
    /* Side column: fixed frame so portrait photos cannot inflate the card */
    height: 18rem;
    max-height: 18rem;
    aspect-ratio: auto;
}
.he12-portfolio-card__media--narrow {
    aspect-ratio: 16 / 10;
    max-height: 18rem;
}
.he12-portfolio-card__media--standard {
    aspect-ratio: 16 / 11;
    height: 15rem;
    max-height: 15rem;
}
@media (min-width: 640px) {
    .he12-portfolio-card--wide {
        align-items: stretch;
    }
    .he12-portfolio-card__media--wide {
        height: 20rem;
        min-height: 20rem;
        max-height: 20rem;
    }
}
@media (min-width: 1024px) {
    .he12-portfolio-card__media--featured {
        min-height: 320px;
        max-height: 28rem;
    }
    .he12-portfolio-card__media--wide {
        height: 22rem;
        min-height: 22rem;
        max-height: 22rem;
    }
    .he12-portfolio-card__media--narrow {
        max-height: 20rem;
    }
    .he12-portfolio-card__media--standard {
        height: 16rem;
        max-height: 16rem;
    }
}

.he12-portfolio-card__badge-shell {
    display: inline-flex;
    padding: 1px;
    border-radius: 9999px;
    background-image: linear-gradient(90deg, rgb(var(--color-primary)) 0%, rgb(var(--color-secondary)) 100%);
}
.he12-portfolio-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.75rem;
    border-radius: 9999px;
    background: rgba(3, 9, 20, 0.92);
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    line-height: 1.2;
}
.he12-portfolio-card__badge--clear {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
}

/* Portfolio details image slider — fill frame; crop portrait/landscape consistently */
.he12-portfolio-slider {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(3, 9, 20, 0.45);
}

.he12-portfolio-slider__viewport {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    max-height: min(70vh, 34rem);
    background: rgba(255, 255, 255, 0.03);
    overflow: hidden;
}

.he12-portfolio-slider__slide {
    position: absolute !important;
    inset: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    height: 100% !important;
    opacity: 0;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.45s ease;
    overflow: hidden;
}

.he12-portfolio-slider__slide.is-active {
    opacity: 1;
    z-index: 10;
    pointer-events: auto;
}

.he12-portfolio-slider__slide img {
    position: absolute !important;
    inset: 0 !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
}

.he12-portfolio-slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    margin: 0;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9999px;
    background: rgba(3, 9, 20, 0.78);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.35);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    line-height: 1;
    -webkit-appearance: none;
    appearance: none;
}

.he12-portfolio-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
    color: #fff;
}

.he12-portfolio-slider__arrow--prev {
    left: 0.75rem;
}

.he12-portfolio-slider__arrow--next {
    right: 0.75rem;
}

.he12-portfolio-slider__arrow i {
    display: block;
    font-size: 0.85rem;
    line-height: 1;
    margin: 0;
    pointer-events: none;
}

@media (max-width: 639px) {
    .he12-portfolio-slider__viewport {
        aspect-ratio: 4 / 3;
        max-height: 20rem;
    }

    .he12-portfolio-slider__arrow {
        width: 2.25rem;
        height: 2.25rem;
    }

    .he12-portfolio-slider__arrow--prev {
        left: 0.5rem;
    }

    .he12-portfolio-slider__arrow--next {
        right: 0.5rem;
    }

    .he12-portfolio-card__media--wide {
        aspect-ratio: 16 / 10;
        height: auto;
        min-height: 0;
        max-height: 14rem;
    }
}

/* About page — partner / brand logos */
.he12-partner-logo {
    display: block;
    height: 1.5rem;
    width: auto;
    max-width: 8.5rem;
    min-height: 1.25rem;
    object-fit: contain;
    object-position: center;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: opacity 0.2s ease;
}
.he12-partner-logo:hover {
    opacity: 1;
}
@media (min-width: 768px) {
    .he12-partner-logo {
        height: 2rem;
        max-width: 9.5rem;
    }
}
.he12-partner-logo.is-placeholder {
    filter: none;
    opacity: 0.85;
    width: 3.5rem;
    height: 2.25rem;
    max-width: 3.5rem;
    min-height: 2.25rem;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background-color: rgba(255, 255, 255, 0.06);
}
@media (min-width: 768px) {
    .he12-partner-logo.is-placeholder {
        width: 4rem;
        height: 2.5rem;
        max-width: 4rem;
        min-height: 2.5rem;
    }
}

/* Home testimonials — partner logo slider */
.he12-partner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.he12-partner-slider__track {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    width: max-content;
}
@media (min-width: 768px) {
    .he12-partner-slider__track {
        gap: 4rem;
    }
}
.he12-partner-slider__track.is-animated {
    animation: he12-partner-marquee 28s linear infinite;
}
.he12-partner-slider:hover .he12-partner-slider__track.is-animated {
    animation-play-state: paused;
}
.he12-partner-slider__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 6rem;
}
@keyframes he12-partner-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@media (prefers-reduced-motion: reduce) {
    .he12-partner-slider__track.is-animated {
        animation: none;
    }
}

/* Home page — header sits on hero gradient, no solid bar */
.he12-page-home {
    background-color: #030914;
}

.he12-page-home .he12-home-header {
    background: transparent !important;
    background-color: transparent !important;
    box-shadow: none;
}

/* Home hero — full viewport on laptops, capped on large desktops */
.he12-home-hero-shell {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
}

.he12-home-hero {
    flex: 1;
    width: 100%;
    min-height: 640px;
    padding-top: 2.5rem;
    padding-bottom: 3rem;
}

.he12-home-hero__media img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.he12-home-hero__copy {
    min-width: 0;
}

.he12-home-hero__media {
    min-width: 0;
}

@media (min-width: 1024px) {
    .he12-home-hero-shell {
        min-height: clamp(680px, 100svh, 1120px);
    }

    .he12-home-hero {
        min-height: 0;
        padding-top: clamp(1.25rem, 2vh, 2rem);
        padding-bottom: clamp(1.25rem, 2vh, 2rem);
        column-gap: 3rem;
    }

    .he12-home-hero__copy {
        padding-right: 1rem;
    }

    .he12-home-hero__media img {
        max-height: clamp(300px, 58svh, 560px);
    }
}

@media (min-width: 1280px) {
    .he12-home-hero {
        column-gap: 3.5rem;
    }
}

.he12-home details summary::-webkit-details-marker {
    display: none;
}
.he12-home details summary::marker {
    content: '';
}

/* Career list + detail */
.he12-job-detail-meta {
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(4, 13, 31, 0.55);
    backdrop-filter: blur(8px);
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
}
.he12-job-detail-meta__item {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.he12-job-detail-meta__item:nth-child(2n) {
    border-right: none;
}
.he12-job-detail-meta__item:nth-last-child(-n+2) {
    border-bottom: none;
}
.he12-job-detail-meta__label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.35rem;
}
.he12-job-detail-meta__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
}

.he12-job-detail-salary {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 1rem;
    padding: 1.5rem 1.75rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.he12-job-detail-salary__label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 0.75rem;
}

.he12-job-detail-salary__value {
    color: rgba(255, 255, 255, 0.92);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.6;
}

.he12-job-detail-salary__value p {
    margin: 0;
    color: inherit;
}

.he12-404__visual img {
    opacity: 0.95;
}
.he12-404__visual img[src$="404.svg"] {
    filter: brightness(1.35) contrast(1.05);
}

/* Grid column spans (missing from Tailwind build) */
.col-span-12 {
    grid-column: span 12 / span 12;
}

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

@media (min-width: 1024px) {
    .lg\:col-span-8 {
        grid-column: span 8 / span 8;
    }
}

/* Home — Impact image card (shape PNG mask + overlay) */
.he12-impact-media {
    margin-top: 0;
}

@media (min-width: 1024px) {
    .he12-impact-media {
        margin-top: -4rem;
    }
}

.he12-impact-media__frame {
    isolation: isolate;
    -webkit-mask-image: var(--he12-impact-mask);
    mask-image: var(--he12-impact-mask);
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    border-radius: 6.25rem 0 6.25rem 0;
}

.he12-impact-media__overlay {
    background: linear-gradient(
        120deg,
        rgb(var(--color-primary)) 29%,
        rgb(var(--color-secondary)) 100%
    );
    mix-blend-mode: color;
    opacity: 0.62;
}

.group:hover .he12-impact-media__overlay {
    opacity: 0.58;
}

.he12-impact-media__arrow {
    width: 5.625rem;
    height: 5.625rem;
    transition: color 0.3s ease;
}

.he12-impact-media__arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #fff;
    -webkit-mask-image: url("../../img/theme-content/default/home_twelve/subtract.svg");
    mask-image: url("../../img/theme-content/default/home_twelve/subtract.svg");
    -webkit-mask-size: 100% 100%;
    mask-size: 100% 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    transition: background-color 0.3s ease;
}

.group:hover .he12-impact-media__arrow::before {
    background: rgb(var(--color-secondary));
}

.group:hover .he12-impact-media__arrow {
    color: #fff;
}

@media (max-width: 767px) {
    .he12-impact-media__arrow {
        top: 1rem;
        right: 1rem;
        width: 4.5rem;
        height: 4.5rem;
    }
}

/* Home — How We Work (workflow) */
.he12-workflow {
    overflow-x: clip;
}

.he12-workflow__grid {
    display: grid;
    gap: 2rem;
    align-items: start;
    grid-template-columns: minmax(0, 1fr);
}

.he12-workflow__list,
.he12-workflow__media,
.he12-workflow__bottom {
    min-width: 0;
    max-width: 100%;
}

.he12-workflow__item-title,
.he12-workflow__item-text,
.he12-workflow__title {
    overflow-wrap: anywhere;
    word-break: break-word;
}

.he12-workflow__item-title-label {
    max-width: 100%;
    box-sizing: border-box;
}

.he12-workflow__bottom {
    margin-top: 0;
}

@media (max-width: 1023px) {
    .he12-workflow__grid {
        gap: 2.25rem;
    }

    .he12-workflow__media {
        width: 100%;
    }

    .he12-workflow__media-frame {
        position: relative;
        top: auto;
        width: 100%;
        max-width: 100%;
        aspect-ratio: 3 / 4;
        min-height: clamp(20rem, 78vw, 30rem);
    }

    .he12-workflow__item-title {
        font-size: 1.25rem;
        line-height: 1.35;
    }

    .he12-workflow__bottom h3 {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) {
    .he12-workflow__grid {
        gap: 2.5rem;
    }
}

@media (min-width: 1024px) {
    .he12-workflow__grid {
        grid-template-columns: minmax(0, 1fr) minmax(0, 0.46fr);
        grid-template-rows: auto auto;
        gap: 0 4rem;
        align-items: stretch;
    }

    .he12-workflow__list {
        grid-column: 1;
        grid-row: 1;
    }

    .he12-workflow__bottom {
        grid-column: 1;
        grid-row: 2;
        align-self: start;
        margin-top: 2.5rem;
    }

    .he12-workflow__media {
        grid-column: 2;
        grid-row: 1 / -1;
        display: flex;
        flex-direction: column;
        min-height: 100%;
    }

    .he12-workflow__media-frame {
        flex: 1 1 auto;
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto;
        position: sticky;
        top: 2.5rem;
    }
}

.he12-workflow__list {
    display: flex;
    flex-direction: column;
}

.he12-workflow__item {
    border-bottom-width: 1px;
    padding: 1.25rem 0;
}

.he12-workflow__item:last-of-type {
    border-bottom-width: 0;
}

.he12-workflow--light .he12-workflow__item:not(.is-active) {
    border-color: rgb(0 0 0 / 0.1);
    background: transparent;
}

.he12-workflow--dark .he12-workflow__item:not(.is-active) {
    border-color: rgb(255 255 255 / 0.1);
    background: transparent;
}

.he12-workflow__item:not(.is-active) .he12-workflow__item-text {
    display: none;
}

.he12-workflow__item.is-active {
    padding: 1.25rem 0;
    border-bottom-width: 1px;
}

.he12-workflow__item.is-active .he12-workflow__item-title-label {
    box-decoration-break: clone;
    -webkit-box-decoration-break: clone;
}

.he12-workflow--light .he12-workflow__item.is-active .he12-workflow__item-text {
    margin-top: 1.5rem;
    color: rgb(0 0 0 / 0.7);
}

.he12-workflow--dark .he12-workflow__item.is-active .he12-workflow__item-text {
    margin-top: 1.5rem;
    color: rgb(255 255 255 / 0.7);
}

.he12-workflow__item.is-active + .he12-workflow__item {
    border-top-width: 0;
}

.he12-workflow__media-frame {
    position: relative;
    width: 100%;
    min-height: 20rem;
    aspect-ratio: 3 / 4;
    border-radius: 1.5rem;
    overflow: hidden;
    border: 1px solid rgb(255 255 255 / 0.1);
}

@media (min-width: 640px) and (max-width: 1023px) {
    .he12-workflow__media-frame {
        min-height: clamp(24rem, 62vw, 34rem);
        aspect-ratio: 3 / 4;
    }
}

@media (min-width: 1024px) {
    .he12-workflow__media-frame {
        min-height: 20rem;
        aspect-ratio: auto;
    }
}

.he12-workflow__media-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.he12-workflow__media-overlay {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to bottom,
        rgb(var(--color-primary) / 0.22) 0%,
        rgb(var(--color-secondary) / 0.22) 100%
    );
}

/* Service detail + services list — section spacing (static) */
.he12-page-service-detail,
.he12-page-services {
    overflow-x: clip;
}

.he12-page-service-detail .he12-svc-hero,
.he12-page-services .he12-svc-hero {
    padding-top: 4rem;
    padding-bottom: 2.5rem;
}

.he12-page-service-detail .he12-svc-detail,
.he12-page-services .he12-svc-detail {
    padding-bottom: 4rem;
}

.he12-page-services .he12-svc-detail--no-hero {
    padding-top: 4rem;
}

.he12-page-service-detail .he12-svc-section,
.he12-page-services .he12-svc-section {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
}

.he12-page-service-detail .he12-svc-section + .he12-svc-section,
.he12-page-services .he12-svc-section + .he12-svc-section {
    padding-top: 0;
}

.he12-page-service-detail .he12-svc-section__head,
.he12-page-services .he12-svc-section__head {
    margin-bottom: 2rem;
}

.he12-page-services .he12-svc-services-list {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

@media (min-width: 768px) {
    .he12-page-service-detail .he12-svc-hero,
    .he12-page-services .he12-svc-hero {
        padding-top: 5rem;
        padding-bottom: 3rem;
    }

    .he12-page-service-detail .he12-svc-section,
    .he12-page-services .he12-svc-section {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .he12-page-service-detail .he12-svc-section__head,
    .he12-page-services .he12-svc-section__head {
        margin-bottom: 2.5rem;
    }

    .he12-page-services .he12-svc-services-list {
        gap: 6rem;
    }

    .he12-page-services .he12-svc-detail--no-hero {
        padding-top: 5rem;
    }
}

@media (min-width: 1024px) {
    .he12-page-service-detail .he12-svc-hero,
    .he12-page-services .he12-svc-hero {
        padding-top: 4rem;
        padding-bottom: 3.5rem;
    }

    .he12-page-service-detail .he12-svc-section,
    .he12-page-services .he12-svc-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }

    .he12-page-service-detail .he12-svc-section__head,
    .he12-page-services .he12-svc-section__head {
        margin-bottom: 3rem;
    }

    .he12-page-services .he12-svc-services-list {
        gap: 8rem;
    }

.he12-page-services .he12-svc-hero.he12-page-hero,
.he12-page-service-detail .he12-svc-hero.he12-page-hero {
    padding-top: 0;
    padding-bottom: 0;
}

/* AJAX contact form feedback */
.ajax-form-message {
    display: none;
    align-items: flex-start;
    gap: 0.75rem;
    width: 100%;
    margin: 0 0 0.5rem;
    padding: 0.95rem 1.1rem;
    border-radius: 12px;
    border: 1px solid transparent;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
}
.ajax-form-message:not([hidden]) {
    display: flex;
}
.ajax-form-message__icon {
    flex-shrink: 0;
    width: 1.35rem;
    height: 1.35rem;
    margin-top: 0.05rem;
}
.ajax-form-message__text {
    flex: 1;
}
.ajax-form-message.is-success {
    color: #b7f0c8;
    background: rgba(31, 107, 58, 0.28);
    border-color: rgba(183, 224, 196, 0.35);
}
.ajax-form-message.is-error {
    color: #fecaca;
    background: rgba(155, 28, 28, 0.28);
    border-color: rgba(242, 184, 181, 0.35);
}
.btn-loading-label {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
}
.btn-loading-dots {
    display: inline-flex;
    width: 1.1em;
    overflow: hidden;
    margin-left: 0.05em;
}
.btn-loading-dots span {
    opacity: 0;
    animation: he12-btn-dot 1.2s infinite;
}
.btn-loading-dots span:nth-child(1) { animation-delay: 0s; }
.btn-loading-dots span:nth-child(2) { animation-delay: 0.2s; }
.btn-loading-dots span:nth-child(3) { animation-delay: 0.4s; }
@keyframes he12-btn-dot {
    0%, 20% { opacity: 0; }
    40%, 100% { opacity: 1; }
}
#he12ContactForm button[type="submit"].is-loading,
#he12QuoteForm button[type="submit"].is-loading {
    pointer-events: none;
    opacity: 0.88;
    cursor: wait;
}
