:root {
    --wt-red: #1D455C;
    --wt-red-dark: #123246;
    --wt-red-soft: #edf4f7;
    --wt-pink: #f5f9fb;
    --wt-yellow: #ffc928;
    --wt-ink: #161313;
    --wt-muted: #665d5a;
    --wt-line: rgba(29, 69, 92, .14);
    --wt-white: #fffdfb;
    --wt-shadow: 0 24px 70px rgba(18, 50, 70, .12);
}

html {
    scroll-behavior: smooth;
}

body.wetech-home-page {
    margin: 0;
    color: var(--wt-ink);
    background: var(--wt-white);
    font-family: "Manrope", Arial, sans-serif;
}

.wetech-home-page .page-wrapper {
    overflow: visible;
}

.wt-site,
.wt-site * {
    box-sizing: border-box;
}

.wt-site {
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 8%, rgba(255, 201, 40, .18), transparent 24rem),
        linear-gradient(180deg, #fff9f8 0%, #fffdfb 42%, #fff7f5 100%);
}

.wt-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

.section-soft {
    position: relative;
    background:
        linear-gradient(135deg, rgba(255, 245, 242, .96), rgba(255, 253, 251, .98)),
        radial-gradient(circle at 85% 20%, rgba(29, 69, 92, .08), transparent 18rem);
}

.section-soft:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .42;
    background-image:
        linear-gradient(90deg, rgba(29, 69, 92, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(29, 69, 92, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 80% 10%, #000, transparent 42%);
}

.wt-eyebrow {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--wt-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1.8px;
    line-height: 1.2;
    text-transform: uppercase;
}

.wt-site h1,
.wt-site h2,
.wt-site h3,
.wt-site p {
    margin-top: 0;
}

.wt-site h1 {
    max-width: 690px;
    margin-bottom: 24px;
    color: var(--wt-ink);
    font-size: clamp(38px, 4.9vw, 64px);
    font-weight: 900;
    line-height: 1;
}

.wt-site h2 {
    color: var(--wt-ink);
    font-size: clamp(30px, 3.4vw, 50px);
    font-weight: 900;
    line-height: 1.04;
}

.wt-site h3 {
    color: var(--wt-ink);
    font-size: 18px;
    font-weight: 900;
    line-height: 1.18;
}

.wt-site p {
    color: var(--wt-muted);
    font-size: 16px;
    line-height: 1.7;
}

.wt-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    gap: 10px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
}

.wt-btn:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.wt-btn-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), var(--wt-red-dark));
    box-shadow: 0 18px 38px rgba(29, 69, 92, .24);
}

.wt-btn-primary:hover {
    color: #fff;
    box-shadow: 0 22px 46px rgba(29, 69, 92, .30);
}

.wt-btn-registration {
    min-height: 54px;
    padding: 0 28px;
    color: #211300;
    border: 1px solid rgba(255, 255, 255, .36);
    background: linear-gradient(135deg, #ffd84a 0%, #ffc928 48%, #ff9f1c 100%);
    box-shadow: 0 18px 34px rgba(255, 159, 28, .32), 0 8px 18px rgba(18, 50, 70, .18);
    font-size: 15px;
    letter-spacing: .01em;
    animation: wt-registration-pulse 2.8s ease-in-out infinite;
}

.wt-btn-registration:hover {
    color: #211300;
    background: linear-gradient(135deg, #ffe066 0%, #ffc928 42%, #ff8c00 100%);
    box-shadow: 0 22px 42px rgba(255, 159, 28, .42), 0 10px 22px rgba(18, 50, 70, .20);
    transform: translateY(-3px);
}

.wt-btn-registration i {
    transition: transform .22s ease;
}

.wt-btn-registration:hover i {
    transform: translateX(4px);
}

.wt-btn-outline {
    color: var(--wt-red);
    border: 1px solid rgba(29, 69, 92, .42);
    background: rgba(255, 255, 255, .66);
}

.wt-btn-outline:hover {
    color: var(--wt-red-dark);
    background: #fff;
}

.wt-btn-dark {
    color: #211300;
    border: 1px solid rgba(33, 19, 0, .16);
    background: rgba(255, 255, 255, .32);
}

.wt-btn-light {
    color: var(--wt-red);
    background: #fff;
}

.wt-btn-ghost-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .58);
    background: rgba(255, 255, 255, .08);
}

.wt-btn-light.wt-btn-registration,
.wt-btn-outline.wt-btn-registration {
    color: #211300;
    background: linear-gradient(135deg, #ffd84a 0%, #ffc928 48%, #ff9f1c 100%);
}

.wt-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.wt-general-info {
    position: relative;
    display: flex;
    min-height: 680px;
    align-items: center;
    padding: 88px 0 72px;
    color: #fff;
    background-color: #123246;
    background-image: var(--wt-general-info-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
    overflow: hidden;
}

.wt-general-info:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(8, 27, 38, .68) 0%, rgba(8, 27, 38, .28) 52%, rgba(8, 27, 38, .05) 78%),
        linear-gradient(180deg, rgba(5, 18, 26, .02) 24%, rgba(5, 18, 26, .62) 100%);
}

.wt-general-info:after {
    content: "";
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, #1D455C, rgba(255, 255, 255, .86), #1D455C);
}

.wt-general-info-content {
    position: relative;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .46);
}

.wt-general-info-primary {
    display: grid;
    grid-template-columns: minmax(140px, .7fr) minmax(140px, .7fr) minmax(360px, 1.6fr);
    max-width: 1080px;
    margin-right: auto;
    margin-bottom: 32px;
    margin-left: auto;
}

.wt-general-info-item {
    min-width: 0;
    padding: 4px 30px;
    border-left: 1px solid rgba(255, 255, 255, .42);
    text-align: center;
}

.wt-general-info-item:first-child {
    padding-left: 0;
    border-left: 0;
}

.wt-general-info-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 7px;
}

.wt-general-info-label i {
    flex: 0 0 auto;
    color: rgba(255, 255, 255, .9);
    font-size: 18px;
    line-height: 1;
    text-shadow: 0 2px 14px rgba(0, 0, 0, .48);
}

.wt-general-info-item span,
.wt-general-info-detail span {
    display: block;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.wt-general-info-item strong {
    display: block;
    color: #fff;
    font-size: clamp(17px, 1.65vw, 23px);
    font-weight: 900;
    line-height: 1.25;
}

.wt-general-info-item-location strong {
    font-size: clamp(16px, 1.45vw, 21px);
    line-height: 1.22;
}

.wt-general-info-details {
    display: grid;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 26px;
    border-top: 1px solid rgba(255, 255, 255, .36);
}

.wt-general-info-detail {
    text-align: center;
}

.wt-general-info-detail .wt-general-info-label {
    display: flex;
    width: fit-content;
}

.wt-general-info-detail p {
    margin: 0;
    color: rgba(255, 255, 255, .92);
    font-size: 14px;
    line-height: 1.62;
}

@media (max-width: 1100px) {
    .wt-general-info {
        min-height: 620px;
    }

    .wt-general-info-primary {
        grid-template-columns: minmax(120px, .65fr) minmax(120px, .65fr) minmax(300px, 1.7fr);
        max-width: none;
    }

    .wt-general-info-item {
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media (max-width: 640px) {
    .wt-general-info {
        min-height: 780px;
        padding: 48px 0;
        background-position: 58% center;
    }

    .wt-general-info:before {
        background:
            linear-gradient(180deg, rgba(5, 18, 26, .02) 0%, rgba(5, 18, 26, .18) 30%, rgba(5, 18, 26, .84) 72%, rgba(5, 18, 26, .92) 100%);
    }

    .wt-general-info-primary {
        grid-template-columns: 1fr;
        margin-bottom: 24px;
    }

    .wt-general-info-item,
    .wt-general-info-item:first-child {
        padding: 15px 0;
        border-top: 1px solid rgba(255, 255, 255, .3);
        border-left: 0;
    }

    .wt-general-info-item:first-child {
        border-top: 0;
    }

    .wt-general-info-details {
        grid-template-columns: 1fr;
        padding-top: 22px;
        gap: 22px;
    }

    .wt-general-info-detail p {
        font-size: 13px;
    }
}

.wt-registration {
    position: relative;
    padding: 112px 0;
    overflow: hidden;
    background:
        radial-gradient(circle at 8% 18%, rgba(29, 69, 92, .12), transparent 25rem),
        radial-gradient(circle at 92% 82%, rgba(255, 201, 40, .16), transparent 22rem),
        #f7fafb;
}

.wt-registration:before {
    content: "";
    position: absolute;
    top: 0;
    right: 8%;
    width: 1px;
    height: 100%;
    background: linear-gradient(transparent, rgba(29, 69, 92, .14), transparent);
}

.wt-registration-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, .8fr) minmax(520px, 1fr);
    align-items: center;
    gap: clamp(54px, 7vw, 104px);
}

.wt-registration-intro h2 {
    max-width: 460px;
    margin-bottom: 24px;
}

.wt-registration-intro > p {
    max-width: 520px;
    margin-bottom: 34px;
}

.wt-registration-highlight {
    display: flex;
    max-width: 480px;
    align-items: center;
    gap: 16px;
    padding-top: 22px;
    border-top: 1px solid rgba(29, 69, 92, .18);
    color: #294756;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.55;
}

.wt-registration-highlight i {
    display: grid;
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #1D455C;
    box-shadow: 0 14px 30px rgba(29, 69, 92, .2);
}

.wt-registration-form {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: clamp(78px, 8vw, 118px);
    padding: clamp(28px, 4vw, 48px);
    border: 3px solid transparent;
    border-radius: 28px;
    background:
        linear-gradient(#fff, #fff) padding-box,
        conic-gradient(from 135deg, #1D455C, #2DA9D7, #38B56C, #FFC928, #F15B3E, #7C5CFF, #1D455C) border-box;
    box-shadow: 0 30px 80px rgba(18, 50, 70, .12);
}

.wt-registration-field-full,
.wt-registration-feedback {
    grid-column: 1 / -1;
}

.wt-registration-field {
    display: flex;
    min-width: 0;
    flex-direction: column;
}

.wt-registration-field label {
    margin-bottom: 8px;
    color: #294756;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .03em;
}

.wt-registration-field input {
    width: 100%;
    height: 52px;
    padding: 0 16px;
    border: 1px solid rgba(29, 69, 92, .2);
    border-radius: 12px;
    outline: 0;
    color: #172c38;
    background: #fbfdfe;
    font: inherit;
    font-size: 15px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.wt-registration-field input:focus {
    border-color: #1D455C;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(29, 69, 92, .1);
}

.wt-registration-field input.is-invalid {
    border-color: #b73333;
}

.wt-registration-field small {
    margin-top: 6px;
    color: #a52929;
    font-size: 12px;
}

.wt-registration-feedback {
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 800;
}

.wt-registration-feedback.is-error {
    color: #8a2020;
    background: #fff0f0;
}

.wt-registration-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding-top: 8px;
}

.wt-registration-actions button {
    min-width: 148px;
    border: 0;
    cursor: pointer;
}

.wt-registration-actions span {
    color: #71828b;
    font-size: 11px;
    line-height: 1.4;
}

body.wt-modal-open {
    overflow: hidden;
}

.wt-registration-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .24s ease, visibility .24s ease;
}

.wt-registration-modal,
.wt-registration-modal * {
    box-sizing: border-box;
}

.wt-registration-modal.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wt-registration-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(13, 24, 31, .58);
    backdrop-filter: blur(8px);
}

.wt-registration-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: calc(100vh - 48px);
    max-height: calc(100dvh - 48px);
    padding: 36px;
    overflow-y: auto;
    overscroll-behavior: contain;
    border: 1px solid rgba(29, 69, 92, .1);
    border-radius: 30px;
    background:
        radial-gradient(circle at top right, rgba(243, 201, 105, .18), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(246, 250, 252, .98));
    box-shadow: 0 28px 80px rgba(10, 27, 39, .24);
    text-align: center;
}

.wt-registration-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: inline-flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 50%;
    color: #294756;
    background: rgba(29, 69, 92, .08);
    cursor: pointer;
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.wt-registration-modal-close:hover {
    color: #fff;
    background: #1D455C;
    transform: rotate(90deg);
}

.wt-registration-modal-logo {
    margin-bottom: 22px;
}

.wt-registration-modal-logo img {
    width: min(220px, 58vw);
    height: auto;
    margin: 0 auto;
}

.wt-registration-modal-copy {
    max-width: 560px;
    margin: 0 auto 28px;
}

.wt-registration-modal-eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 7px 14px;
    border-radius: 999px;
    color: #1D455C;
    background: rgba(29, 69, 92, .08);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wt-registration-modal-copy h3 {
    margin-bottom: 16px;
    color: #152935;
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.08;
    letter-spacing: -.03em;
}

.wt-registration-modal-copy p {
    margin: 0;
    color: #4b6170;
    font-size: 16px;
    line-height: 1.7;
}

.wt-registration-modal-info {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 28px;
}

.wt-registration-modal-info-item {
    padding: 18px 16px;
    border: 1px solid rgba(29, 69, 92, .1);
    border-radius: 20px;
    background: rgba(255, 255, 255, .9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .7);
}

.wt-registration-modal-info-item span {
    display: block;
    margin-bottom: 7px;
    color: #637988;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wt-registration-modal-info-item strong {
    display: block;
    color: #18313f;
    font-size: 17px;
    line-height: 1.45;
}

.wt-registration-modal-action {
    min-width: 180px;
    border: 0;
    cursor: pointer;
}

@media (max-width: 980px) {
    .wt-registration-grid {
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .wt-registration-intro {
        max-width: 680px;
        text-align: center;
        margin: 0 auto;
    }

    .wt-registration-intro h2,
    .wt-registration-intro > p,
    .wt-registration-highlight {
        margin-right: auto;
        margin-left: auto;
    }

    .wt-registration-highlight {
        justify-content: center;
        text-align: left;
    }

    .wt-registration-modal-dialog {
        padding: 32px 26px;
    }

    .wt-registration-modal-info {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wt-registration {
        padding: 76px 0;
    }

    .wt-registration-grid {
        gap: 34px;
    }

    .wt-registration-form {
        grid-template-columns: 1fr;
        gap: 17px;
        padding: 24px 20px;
        border-radius: 20px;
    }

    .wt-registration-field-full,
    .wt-registration-feedback {
        grid-column: auto;
    }

    .wt-registration-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .wt-registration-actions button {
        width: 100%;
    }

    .wt-registration-actions span {
        text-align: center;
    }

    .wt-registration-modal {
        padding: 14px;
    }

    .wt-registration-modal-dialog {
        max-height: calc(100vh - 28px);
        max-height: calc(100dvh - 28px);
        padding: 28px 18px 22px;
        border-radius: 24px;
    }

    .wt-registration-modal-close {
        top: 12px;
        right: 12px;
        width: 40px;
        height: 40px;
    }

    .wt-registration-modal-copy {
        margin-bottom: 24px;
    }

    .wt-registration-modal-copy p {
        font-size: 15px;
        line-height: 1.6;
    }

    .wt-registration-modal-info {
        gap: 12px;
        margin-bottom: 22px;
    }

    .wt-registration-modal-info-item {
        padding: 16px 14px;
        border-radius: 18px;
    }

    .wt-registration-modal-action {
        width: 100%;
    }
}


.wt-about-decor {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: -1px;
    left: 0;
    display: flex;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(0, 22px, 0) scale(.96);
    transition: opacity .62s ease, transform .72s cubic-bezier(.22, 1, .36, 1);
    will-change: opacity, transform;
}

.wt-about-decor.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
}

.wt-about-decor img {
    display: block;
    width: clamp(300px, 34vw, 520px);
    max-width: min(92vw, 520px);
    height: auto;
    filter: drop-shadow(0 22px 34px rgba(0, 0, 0, .22));
}

.wt-registration-form-decor {
    position: absolute;
    right: 0;
    bottom: 100%;
    left: 0;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.wt-registration-form-decor img {
    display: block;
    width: clamp(220px, 24vw, 360px);
    max-width: min(82vw, 360px);
    height: auto;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, .16));
}

@media (max-width: 720px) {
    .wt-about-decor img {
        width: clamp(210px, 68vw, 330px);
        max-width: calc(100vw - 32px);
        filter: drop-shadow(0 14px 22px rgba(0, 0, 0, .18));
    }

    .wt-registration-form-decor img {
        width: clamp(180px, 56vw, 260px);
        max-width: calc(100vw - 40px);
    }
}

.wt-speakers {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 118px 0 128px;
    color: #fff;
    background: linear-gradient(145deg, #102f42 0%, #1d455c 54%, #143548 100%);
}

.wt-speakers:before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: .72;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 420'%3E%3Cpath d='M-40 190C120 48 256 350 450 196S760 52 950 176' fill='none' stroke='%23568faa' stroke-opacity='.34' stroke-width='1.5'/%3E%3Cpath d='M-50 236C115 90 274 390 466 234S774 92 960 214' fill='none' stroke='%236fc3e0' stroke-opacity='.18' stroke-width='1'/%3E%3C/svg%3E"),
        radial-gradient(circle at center, rgba(111, 195, 224, .22) 0 1.2px, transparent 1.4px);
    background-position: left 8% top 8%, left 5% top 13%;
    background-repeat: no-repeat, repeat;
    background-size: min(76vw, 980px) auto, 24px 24px;
    mask-image: linear-gradient(90deg, #000 0%, #000 78%, transparent 100%);
}

.wt-speakers:after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        conic-gradient(from 35deg at 8% 82%, transparent 0 12%, rgba(86, 143, 170, .10) 12% 12.8%, transparent 12.8% 100%),
        linear-gradient(120deg, transparent 0 72%, rgba(86, 143, 170, .08) 72% 72.8%, transparent 72.8%);
    pointer-events: none;
}

.wt-speakers-orbit {
    position: absolute;
    z-index: 0;
    top: 54px;
    right: -118px;
    width: 510px;
    height: 510px;
    border: 1px solid rgba(86, 143, 170, .34);
    border-radius: 50%;
    background: transparent;
    box-shadow: none;
    transform: rotate(-12deg);
}

.wt-speakers-orbit:before,
.wt-speakers-orbit:after {
    content: "";
    position: absolute;
    border: 1px solid rgba(86, 143, 170, .22);
    border-radius: 50%;
}

.wt-speakers-orbit:before {
    inset: 64px;
    border-style: dashed;
    border-color: rgba(111, 195, 224, .28);
}

.wt-speakers-orbit:after {
    inset: 142px;
    border-color: rgba(86, 143, 170, .34);
    background: transparent;
}

.wt-speakers > .wt-container,
.wt-speakers-orbit,
.wt-speakers:before,
.wt-speakers:after {
    pointer-events: none;
}

.wt-speakers > .wt-container {
    position: relative;
    z-index: 1;
    pointer-events: auto;
}

.wt-speakers-heading {
    margin-bottom: 66px;
    text-align: center;
}

.wt-speakers-heading h2 {
    display: block;
    width: max-content;
    max-width: 100%;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
    color: #fff;
    font-size: clamp(36px, 4.2vw, 56px);
    line-height: .98;
    white-space: nowrap;
}

.wt-speakers-list {
    display: grid;
    gap: 34px;
}

.wt-section-more {
    display: flex;
    justify-content: center;
    margin-top: 48px;
}

.wt-speaker-feature {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(390px, .92fr);
    min-height: 410px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 32px 10px 32px 10px;
    background: rgba(255, 255, 255, .075);
    box-shadow: 0 30px 80px rgba(4, 20, 29, .2);
    backdrop-filter: blur(10px);
}

.wt-speaker-feature:before {
    content: "";
    position: absolute;
    z-index: 2;
    top: 32px;
    left: 32px;
    width: 8px;
    height: 8px;
    border: 2px solid rgba(255, 201, 40, .84);
    border-radius: 50%;
}

.wt-speaker-feature.is-reversed {
    grid-template-columns: minmax(390px, .92fr) minmax(0, 1fr);
    border-radius: 10px 32px 10px 32px;
}

.wt-speaker-feature.is-reversed .wt-speaker-copy {
    order: 2;
}

.wt-speaker-feature.is-reversed .wt-speaker-photo {
    order: 1;
}

.wt-speaker-copy {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 64px clamp(42px, 6vw, 84px);
}

.wt-speaker-index {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 22px;
    color: #a8d1e4;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wt-speaker-index:before {
    content: "";
    width: 36px;
    height: 1px;
    background: #ffc928;
}

.wt-speaker-copy h3 {
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    letter-spacing: -.04em;
    line-height: 1;
}

.wt-speaker-copy p {
    max-width: 560px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .74);
    font-size: 16px;
    line-height: 1.75;
}

.wt-speaker-signature {
    display: block;
    width: 76px;
    height: 4px;
    border-radius: 99px;
    background: linear-gradient(90deg, #ffc928 0 36%, rgba(255, 255, 255, .25) 36%);
}

.wt-speaker-photo {
    position: relative;
    min-height: 410px;
    margin: 0;
    overflow: hidden;
    background: #0d2a3a;
}

.wt-speaker-photo:after {
    content: "";
    position: absolute;
    z-index: 2;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(16, 47, 66, .36), transparent 40%),
        linear-gradient(0deg, rgba(5, 24, 35, .46), transparent 42%);
    pointer-events: none;
}

.wt-speaker-feature.is-reversed .wt-speaker-photo:after {
    background:
        linear-gradient(270deg, rgba(16, 47, 66, .36), transparent 40%),
        linear-gradient(0deg, rgba(5, 24, 35, .46), transparent 42%);
}

.wt-speaker-photo img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;
    filter: saturate(.84) contrast(1.04);
    transition: transform .7s ease, filter .7s ease;
}

.wt-speaker-photo > span {
    position: absolute;
    z-index: 3;
    right: 24px;
    bottom: 22px;
    color: rgba(255, 255, 255, .8);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2.4px;
}

@media (max-width: 980px) {
    .wt-speakers {
        padding: 92px 0 100px;
    }

    .wt-speakers-heading {
        margin-bottom: 48px;
    }

    .wt-speaker-feature,
    .wt-speaker-feature.is-reversed {
        grid-template-columns: minmax(0, 1fr) minmax(330px, .86fr);
    }

    .wt-speaker-copy {
        padding: 48px 38px;
    }
}

@media (max-width: 720px) {
    .wt-speakers {
        padding: 76px 0 82px;
    }

    .wt-site .wt-speakers-heading h2 {
        font-size: clamp(25px, 7vw, 34px);
    }

    .wt-speakers-list {
        gap: 24px;
    }

    .wt-speaker-feature,
    .wt-speaker-feature.is-reversed {
        grid-template-columns: 1fr;
        min-height: 0;
        border-radius: 24px 8px 24px 8px;
    }

    .wt-speaker-feature .wt-speaker-copy,
    .wt-speaker-feature.is-reversed .wt-speaker-copy {
        order: 2;
    }

    .wt-speaker-feature .wt-speaker-photo,
    .wt-speaker-feature.is-reversed .wt-speaker-photo {
        order: 1;
    }

    .wt-speaker-photo {
        min-height: 320px;
        height: 320px;
    }

    .wt-speaker-copy {
        padding: 38px 28px 42px;
    }

    .wt-speaker-copy h3 {
        margin-bottom: 16px;
        font-size: 34px;
    }

    .wt-speaker-copy p {
        margin-bottom: 24px;
        font-size: 15px;
        line-height: 1.65;
    }
}

@media (max-width: 420px) {
    .wt-site .wt-speakers-heading h2 {
        font-size: clamp(25px, 6.3vw, 30px);
    }

    .wt-speaker-photo {
        min-height: 280px;
        height: 280px;
    }

    .wt-speaker-copy {
        padding: 34px 22px 36px;
    }
}

@media (max-width: 370px) {
    .wt-speakers-heading h2 {
        white-space: normal;
    }
}

.wt-schedule-decor {
    position: absolute;
    z-index: 1;
    top: 0;
    width: clamp(250px, 26vw, 430px);
    height: clamp(560px, 58vw, 780px);
    pointer-events: none;
}

.wt-schedule-decor img {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: clamp(560px, 58vw, 780px);
    max-width: none;
    height: auto;
    filter: drop-shadow(0 24px 38px rgba(0, 0, 0, .18));
}

.wt-schedule-decor--left {
    left: clamp(-104px, -5vw, -36px);
}

.wt-schedule-decor--left img {
    transform: translate(-50%, -50%) rotate(90deg);
}

.wt-schedule-decor--right {
    right: clamp(-104px, -5vw, -36px);
}

.wt-schedule-decor--right img {
    transform: translate(-50%, -50%) rotate(-90deg) scaleX(-1);
}

.wt-schedule > .wt-container {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .wt-schedule-decor {
        width: clamp(160px, 26vw, 240px);
        height: clamp(360px, 58vw, 520px);
    }

    .wt-schedule-decor img {
        width: clamp(360px, 58vw, 520px);
    }

    .wt-schedule-decor--left {
        left: clamp(-82px, -9vw, -24px);
    }

    .wt-schedule-decor--right {
        right: clamp(-82px, -9vw, -24px);
    }
}

@media (max-width: 560px) {
    .wt-schedule-decor {
        width: 118px;
        height: 300px;
        opacity: .92;
    }

    .wt-schedule-decor img {
        width: 300px;
    }

    .wt-schedule-decor--left {
        left: -48px;
    }

    .wt-schedule-decor--right {
        right: -48px;
    }
}

.wt-schedule {
    position: relative;
    isolation: isolate;
    overflow: visible;
    padding: 110px 0 120px;
    background: #fff;
}

.wt-schedule:before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    opacity: 1;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cpath d='M-60 250C120 80 250 410 470 230S790 70 1060 220' fill='none' stroke='%231d455c' stroke-opacity='.13' stroke-width='2'/%3E%3Cpath d='M-70 300C120 125 270 455 490 278S810 115 1070 265' fill='none' stroke='%23568faa' stroke-opacity='.1' stroke-width='1.5'/%3E%3C/svg%3E");
    background-position: center 8%;
    background-repeat: no-repeat;
    background-size: min(92vw, 1180px) auto;
    pointer-events: none;
}

.wt-schedule > .wt-container {
    position: relative;
    z-index: 1;
}

.wt-schedule-heading {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-bottom: 58px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.wt-schedule-heading h2 {
    margin-bottom: 0;
}

.wt-schedule-days {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 44px;
}

.wt-schedule-day {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 30px;
}

.wt-schedule-date {
    position: sticky;
    top: 110px;
    align-self: start;
    display: flex;
    min-height: 150px;
    flex-direction: column;
    justify-content: center;
    padding: 24px;
    border: 1px solid rgba(29, 69, 92, .14);
    border-radius: 24px 8px 24px 8px;
    color: #fff;
    background: linear-gradient(145deg, #1d455c, #123246);
    box-shadow: 0 18px 42px rgba(18, 50, 70, .16);
}

.wt-schedule-date strong {
    font-size: 52px;
    font-weight: 900;
    line-height: .9;
}

.wt-schedule-date span {
    margin-top: 8px;
    color: #ffc928;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: 1.8px;
}

.wt-schedule-date small {
    margin-top: 12px;
    color: rgba(255, 255, 255, .72);
    font-size: 12px;
    text-transform: capitalize;
}

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

.wt-schedule-card {
    overflow: hidden;
    border: 1px solid rgba(29, 69, 92, .12);
    border-radius: 24px 8px 24px 8px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 20px 52px rgba(18, 50, 70, .09);
    transition: transform .3s ease, box-shadow .3s ease;
}

.wt-schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 26px 64px rgba(18, 50, 70, .15);
}

.wt-schedule-card figure {
    position: relative;
    aspect-ratio: 16 / 9;
    margin: 0;
    overflow: hidden;
    background: #123246;
}

.wt-schedule-card figure:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 38, 53, .42), transparent 60%);
}

.wt-schedule-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.wt-schedule-card:hover figure img {
    transform: scale(1.035);
}

.wt-schedule-card figure span {
    position: absolute;
    z-index: 1;
    right: 18px;
    bottom: 16px;
    padding: 8px 12px;
    border-radius: 999px;
    color: #15384d;
    background: #ffc928;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wt-schedule-copy {
    padding: 24px;
}

.wt-schedule-meta {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 16px;
    gap: 9px 18px;
}

.wt-schedule-meta span {
    color: #476477;
    font-size: 11px;
    font-weight: 800;
}

.wt-schedule-meta i {
    margin-right: 6px;
    color: #1d455c;
}

.wt-schedule-copy h3 {
    margin-bottom: 14px;
    color: #15384d;
    font-size: 19px;
    line-height: 1.25;
}

.wt-schedule-copy p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.65;
}

@media (max-width: 1100px) {
    .wt-schedule-day {
        grid-template-columns: 110px minmax(0, 1fr);
        gap: 22px;
    }

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

@media (max-width: 760px) {
    .wt-schedule-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .wt-schedule {
        padding: 78px 0 84px;
    }

    .wt-schedule-heading {
        margin-bottom: 38px;
    }

    .wt-schedule-day {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .wt-schedule-date {
        position: static;
        min-height: 0;
        flex-direction: row;
        align-items: baseline;
        justify-content: flex-start;
        padding: 18px 20px;
        gap: 10px;
    }

    .wt-schedule-date strong {
        font-size: 36px;
    }

    .wt-schedule-date span,
    .wt-schedule-date small {
        margin-top: 0;
    }

    .wt-schedule-date small {
        margin-left: auto;
    }

    .wt-schedule-copy {
        padding: 23px;
    }
}

.wt-public-page {
    min-height: 70vh;
    background: #f6f9fa;
}

.wt-public-hero {
    padding: 170px 0 72px;
    border-bottom: 1px solid rgba(29, 69, 92, .1);
    text-align: center;
    background: #fff;
}

.wt-public-hero h1 {
    max-width: 860px;
    margin: 0 auto 18px;
    color: #15384d;
    font-size: clamp(38px, 5vw, 64px);
}

.wt-public-hero p {
    max-width: 620px;
    margin: 0 auto;
}

.wt-public-content {
    padding: 76px 0 110px;
}

.wt-public-speakers .wt-speaker-feature {
    background: linear-gradient(145deg, #1d455c, #123246);
    box-shadow: 0 24px 64px rgba(18, 50, 70, .15);
}

.wt-public-speakers .wt-speaker-feature:before {
    border-color: #ffc928;
}

.wt-public-empty {
    padding: 40px;
    border: 1px solid rgba(29, 69, 92, .12);
    border-radius: 18px;
    text-align: center;
    background: #fff;
}

@media (max-width: 620px) {
    .wt-public-hero {
        padding: 132px 0 52px;
    }

    .wt-public-content {
        padding: 54px 0 76px;
    }
}

.wt-reveal {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: none;
    transition:
        opacity .56s ease,
        transform .56s cubic-bezier(.22, 1, .36, 1),
        filter .56s ease,
        clip-path .68s cubic-bezier(.22, 1, .36, 1);
    transition-delay: var(--wt-reveal-delay, 0ms);
    will-change: opacity, transform;
}

.wt-reveal.is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: none;
}

.wt-reveal-fade {
    transform: none;
}

.wt-reveal-left {
    transform: translate3d(-30px, 0, 0);
}

.wt-reveal-right {
    transform: translate3d(30px, 0, 0);
}

.wt-reveal-scale {
    transform: translate3d(0, 18px, 0) scale(.98);
}

.wt-reveal-title {
    position: relative;
    transform: translate3d(0, 16px, 0);
}

.wt-reveal-title.is-visible {
    animation: wt-title-signal .7s ease both;
}

.wt-reveal-title.is-visible:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -10px;
    width: min(120px, 42%);
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, currentColor, var(--wt-red), transparent);
    opacity: 0;
    pointer-events: none;
    animation: wt-title-line .7s ease .08s both;
}

.wt-reveal-text {
    transform: translate3d(0, 14px, 0);
    filter: blur(3px);
}

.wt-reveal-media {
    clip-path: inset(0 14% 0 0 round inherit);
    transform: translate3d(0, 14px, 0) scale(.99);
}

.wt-reveal-media.is-visible {
    clip-path: inset(0 0 0 0 round inherit);
}

.wt-reveal-card {
    transform: translate3d(0, 18px, 0) scale(.985);
    filter: saturate(.86) brightness(.96);
}

.wt-reveal-card.is-visible {
    animation: wt-card-boot .62s cubic-bezier(.22, 1, .36, 1) both;
}

.wt-reveal-cta {
    transform: translate3d(0, 12px, 0) scale(.99);
}

.wt-reveal-cta.is-visible {
    animation: wt-cta-power .58s ease both;
}

.wt-reveal-logo {
    transform: translate3d(0, 10px, 0) scale(.96);
    filter: grayscale(.35) brightness(.96);
}

.wt-reveal-logo.is-visible {
    filter: grayscale(0) brightness(1);
}

.wt-reveal-card:hover {
    filter: saturate(1.08) brightness(1.02);
}

.wt-number-card.wt-reveal-card.is-visible i,
.wt-service-card.wt-reveal-card.is-visible .wt-service-link-icon,
.wt-highlight-card.wt-reveal-card.is-visible i {
    animation: wt-icon-signal .6s ease .08s both;
}

.wt-reveal-cta .wt-btn i {
    transition: transform .2s ease;
}

.wt-reveal-cta .wt-btn:hover i {
    transform: translateX(3px);
}

.wt-header {
    position: fixed;
    z-index: 1000;
    top: 18px;
    left: 50%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    padding: 12px 14px 12px 20px;
    border: 1px solid rgba(29, 69, 92, .10);
    border-radius: 999px;
    background: #fffdfb;
    box-shadow: 0 16px 46px rgba(88, 0, 0, .12);
    transform: translateX(-50%);
    backdrop-filter: none;
}

.wt-header.is-scrolled {
    background: #fffdfb;
    box-shadow: 0 16px 46px rgba(88, 0, 0, .12);
    backdrop-filter: none;
}

.wt-logo {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    color: var(--wt-red);
    text-decoration: none;
}

.wt-logo:hover {
    color: var(--wt-red);
    text-decoration: none;
}

.wt-logo img {
    display: block;
    width: 300px;
    height: auto;
    opacity: 1;
    filter: none;
    image-rendering: auto;
    object-fit: contain;
    transform: none;
}

.wt-logo-mark {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px;
    color: #fff;
    background:
        linear-gradient(135deg, var(--wt-red), #356b88);
    font-size: 24px;
    font-weight: 900;
    line-height: 1;
}

.wt-logo-text {
    display: grid;
    color: var(--wt-red);
    font-size: 24px;
    font-weight: 900;
    line-height: .9;
}

.wt-logo-text small {
    margin-top: 5px;
    color: #356b88;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 2.1px;
    text-transform: uppercase;
}

.wt-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(12px, 1.4vw, 24px);
}

.wt-nav a {
    color: #332b29;
    font-size: 13.5px;
    font-weight: 900;
    text-decoration: none;
}

.wt-nav a:hover {
    color: var(--wt-red);
}

.wt-header-cta {
    min-height: 44px;
    padding: 0 18px;
    font-size: 12px;
}

.wt-header-cta.wt-btn-registration {
    min-height: 48px;
    padding: 0 22px;
    font-size: 14px;
}

.wt-menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: var(--wt-red);
}

.wt-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 4px auto;
    border-radius: 2px;
    background: #fff;
    transition: transform .2s ease, opacity .2s ease;
}

.wt-menu-toggle.is-open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.wt-menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
}

.wt-menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.wt-hero {
    position: relative;
    padding: 142px 0 54px;
    background: var(--wt-hero-bg-desktop, linear-gradient(135deg, #201716, #3a2220));
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    isolation: isolate;
    overflow: hidden;
    touch-action: pan-y;
    user-select: none;
}

.wt-hero:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(90deg, rgba(9, 8, 8, .78) 0%, rgba(9, 8, 8, .58) 42%, rgba(9, 8, 8, .12) 76%, rgba(9, 8, 8, 0) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, .08), rgba(0, 0, 0, .18));
    pointer-events: none;
}

.wt-hero-bg-track {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.wt-hero-bg-layer {
    position: absolute;
    inset: 0;
    opacity: 0;
    background-image: var(--wt-layer-bg-desktop);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    transform: scale(1.015);
    transition: opacity .85s ease, transform 5s ease;
    will-change: opacity, transform;
}

.wt-hero-bg-layer.is-active {
    opacity: 1;
    transform: scale(1);
}

.wt-hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(420px, .86fr);
    align-items: center;
    gap: 54px;
    min-height: 660px;
}

.wt-hero-copy {
    align-self: center;
    max-width: 620px;
    padding-top: 18px;
}

.wt-hero h1 {
    max-width: 620px;
    margin-bottom: 32px;
    color: #fff;
    font-size: clamp(34px, 4.15vw, 54px);
    line-height: 1.05;
    letter-spacing: -.035em;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .38);
    text-wrap: balance;
}

.wt-hero-meta {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    max-width: 620px;
    margin-bottom: 30px;
}

.wt-hero-meta-item {
    min-height: 108px;
    padding: 18px 20px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 22px;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, .18);
}

.wt-hero-meta-item-location {
    width: min(560px, calc(100vw - 40px));
    max-width: 560px;
}

.wt-hero-meta-label {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .74);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.wt-hero-meta-label i {
    color: #f3c969;
    font-size: 14px;
}

.wt-hero-meta-item strong {
    display: block;
    color: #fff;
    font-size: 18px;
    line-height: 1.35;
    letter-spacing: -.01em;
}

.wt-hero h1.is-entering {
    animation: wt-hero-text-in .9s cubic-bezier(.22, 1, .36, 1) both;
}

.wt-hero .wt-btn-primary {
    box-shadow: 0 18px 42px rgba(0, 0, 0, .28), 0 18px 38px rgba(29, 69, 92, .30);
}

.wt-hero .wt-btn-outline {
    color: #fff;
    border-color: rgba(255, 255, 255, .72);
    background: rgba(10, 8, 8, .34);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .22);
}

.wt-hero .wt-btn-outline:hover {
    color: var(--wt-red-dark);
    border-color: #fff;
    background: #fff;
}

.wt-hero-visual {
    position: relative;
    min-height: 540px;
}

.wt-hero-dots {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transform: translateX(-50%);
}

.wt-hero-dots button {
    width: 10px;
    height: 10px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .78);
    border-radius: 50%;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: width .2s ease, background .2s ease, border-color .2s ease;
}

.wt-hero-dots button.is-active {
    width: 28px;
    border-radius: 999px;
    border-color: #fff;
    background: #fff;
}

.mockup-laptop {
    position: absolute;
    right: 5%;
    bottom: 88px;
    width: min(94%, 580px);
    height: 340px;
    padding: 18px;
    border: 14px solid #24201f;
    border-bottom-width: 32px;
    border-radius: 28px;
    background: linear-gradient(145deg, #102c3d, #1D455C 58%, #17384c);
    box-shadow: 0 38px 80px rgba(75, 0, 4, .22);
}

.mockup-laptop:after {
    content: "";
    position: absolute;
    right: 8%;
    bottom: -54px;
    width: 84%;
    height: 18px;
    border-radius: 0 0 38px 38px;
    background: linear-gradient(90deg, #bbb, #f5f5f5, #aaa);
}

.mockup-topbar {
    display: flex;
    gap: 7px;
    margin-bottom: 20px;
}

.mockup-topbar span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .78);
}

.mockup-dashboard {
    display: grid;
    grid-template-columns: 102px 1fr;
    gap: 18px;
    height: 240px;
}

.dash-sidebar,
.dash-content {
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: 18px;
    background: rgba(255, 255, 255, .10);
}

.dash-sidebar {
    background-image: linear-gradient(#fff 0 0), linear-gradient(#fff 0 0), linear-gradient(#fff 0 0), linear-gradient(#fff 0 0);
    background-repeat: no-repeat;
    background-size: 64px 7px, 54px 7px, 70px 7px, 48px 7px;
    background-position: 20px 30px, 20px 70px, 20px 110px, 20px 150px;
    opacity: .86;
}

.dash-content {
    position: relative;
    padding: 26px;
}

.dash-content span {
    display: block;
    width: 100%;
    height: 36px;
    margin-bottom: 16px;
    border-radius: 12px;
    background: rgba(255, 255, 255, .18);
}

.dash-content strong {
    position: absolute;
    right: 24px;
    bottom: 20px;
    color: #fff;
    font-size: 24px;
}

.mockup-phone {
    position: absolute;
    right: 0;
    bottom: 36px;
    width: 156px;
    height: 316px;
    padding: 28px 16px;
    border: 10px solid #241f1e;
    border-radius: 34px;
    background: linear-gradient(145deg, #f12b33, #9d0007);
    box-shadow: -28px 32px 62px rgba(85, 0, 5, .26);
}

.phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    width: 54px;
    height: 7px;
    border-radius: 999px;
    background: #241f1e;
    transform: translateX(-50%);
}

.phone-logo {
    display: grid;
    width: 58px;
    height: 58px;
    margin: 18px auto 26px;
    place-items: center;
    border-radius: 18px;
    color: var(--wt-red);
    background: #fff;
    font-size: 30px;
    font-weight: 900;
}

.mockup-phone span {
    display: block;
    height: 12px;
    margin-bottom: 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .55);
}

.code-chip {
    position: absolute;
    display: grid;
    width: 84px;
    height: 84px;
    place-items: center;
    border-radius: 24px;
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), #123246);
    box-shadow: var(--wt-shadow);
    font-weight: 900;
}

.chip-a {
    top: 98px;
    left: 8%;
}

.chip-b {
    top: 160px;
    right: 0;
}

.circuit-line {
    position: absolute;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, rgba(29, 69, 92, .48), transparent);
}

.line-a {
    top: 118px;
    right: 5%;
    width: 72%;
}

.line-b {
    bottom: 72px;
    left: 10%;
    width: 68%;
}

.circuit-line:before,
.circuit-line:after {
    content: "";
    position: absolute;
    top: 50%;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--wt-red);
    transform: translateY(-50%);
}

.circuit-line:before {
    left: 18%;
}

.circuit-line:after {
    right: 14%;
}

.wt-trust {
    padding: 28px 0;
    background: #fff;
    border-top: 1px solid rgba(29, 69, 92, .08);
    border-bottom: 1px solid rgba(29, 69, 92, .08);
}

.wt-trust-grid {
    display: grid;
    grid-template-columns: 190px 1fr;
    align-items: center;
    gap: 34px;
}

.wt-trust p {
    margin: 0;
    color: #4b4140;
    font-size: 12px;
    font-weight: 900;
    line-height: 1.35;
    text-transform: uppercase;
}

.wt-client-carousel {
    position: relative;
    overflow: hidden;
}

.wt-client-carousel:before,
.wt-client-carousel:after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 52px;
    pointer-events: none;
}

.wt-client-carousel:before {
    left: 0;
    background: linear-gradient(90deg, #fff, rgba(255, 255, 255, 0));
}

.wt-client-carousel:after {
    right: 0;
    background: linear-gradient(270deg, #fff, rgba(255, 255, 255, 0));
}

.wt-client-track {
    display: flex;
    align-items: center;
    gap: 18px;
}

.wt-client-carousel.is-animated .wt-client-track {
    width: max-content;
    animation: wt-client-marquee var(--wt-client-duration, 24s) linear infinite;
}

.wt-client-carousel:not(.is-animated) .wt-client-list-clone {
    display: none;
}

.wt-client-list {
    display: flex;
    align-items: center;
    gap: 18px;
    flex: 0 0 auto;
}

.wt-client-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: clamp(124px, 13vw, 180px);
    height: 100px;
    border-radius: 16px;
    background: #faf7f6;
    padding: 14px 18px;
    overflow: visible;
}

.wt-client-logo img {
    display: block;
    flex: 0 1 auto;
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
    object-position: center center;
}

@keyframes wt-client-marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - 9px));
    }
}

@keyframes wt-title-signal {
    0% {
        text-shadow: 0 0 0 rgba(29, 69, 92, 0);
    }

    38% {
        text-shadow: 0 0 18px rgba(29, 69, 92, .22);
    }

    100% {
        text-shadow: 0 0 0 rgba(29, 69, 92, 0);
    }
}

@keyframes wt-hero-text-in {
    0% {
        opacity: 0;
        clip-path: inset(0 100% 0 0);
        transform: translate3d(0, 22px, 0);
        filter: blur(5px);
    }

    45% {
        opacity: 1;
    }

    100% {
        opacity: 1;
        clip-path: inset(0 0 0 0);
        transform: translate3d(0, 0, 0);
        filter: blur(0);
    }
}

@keyframes wt-title-line {
    0% {
        opacity: 0;
        transform: scaleX(.12);
        transform-origin: left center;
    }

    42% {
        opacity: .7;
    }

    100% {
        opacity: 0;
        transform: scaleX(1);
        transform-origin: left center;
    }
}

@keyframes wt-card-boot {
    0% {
        filter: saturate(.86) brightness(.96);
    }

    46% {
        filter: saturate(1.08) brightness(1.04);
    }

    100% {
        filter: saturate(1) brightness(1);
    }
}

@keyframes wt-cta-power {
    0% {
        box-shadow: none;
    }

    44% {
        box-shadow: 0 0 0 5px rgba(255, 201, 40, .14), 0 0 28px rgba(29, 69, 92, .18);
    }

    100% {
        box-shadow: none;
    }
}

@keyframes wt-registration-pulse {
    0%,
    100% {
        box-shadow: 0 18px 34px rgba(255, 159, 28, .32), 0 8px 18px rgba(18, 50, 70, .18);
    }

    50% {
        box-shadow: 0 22px 42px rgba(255, 159, 28, .46), 0 10px 24px rgba(18, 50, 70, .2);
    }
}

@keyframes wt-icon-signal {
    0% {
        transform: scale(.9);
        filter: brightness(.92);
    }

    48% {
        transform: scale(1.08);
        filter: brightness(1.14);
    }

    100% {
        transform: scale(1);
        filter: brightness(1);
    }
}

@keyframes wt-zoom-hint-pulse {
    0% {
        opacity: .72;
        transform: scale(.88);
    }

    70%,
    100% {
        opacity: 0;
        transform: scale(1.32);
    }
}

@media (prefers-reduced-motion: reduce) {
    .wt-reveal {
        opacity: 1;
        clip-path: none;
        filter: none;
        transform: none;
        transition: none;
    }

    .wt-reveal.is-visible,
    .wt-reveal-title.is-visible,
    .wt-reveal-card.is-visible,
    .wt-reveal-cta.is-visible,
    .wt-btn-registration,
    .wt-number-card.wt-reveal-card.is-visible i,
    .wt-service-card.wt-reveal-card.is-visible .wt-service-link-icon,
    .wt-highlight-card.wt-reveal-card.is-visible i {
        animation: none;
    }

    .wt-reveal-title.is-visible:after {
        display: none;
    }

    .wt-testimonial-zoom-hint:after {
        animation: none;
    }
}

.wt-numbers {
    position: relative;
    padding: 76px 0;
    color: #fff;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 201, 40, .22), transparent 20rem),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .16), transparent 19rem),
        linear-gradient(135deg, #123246 0%, #1D455C 48%, #17384c 100%);
}

.wt-numbers:before,
.wt-final-cta:before,
.wt-footer:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .18;
    pointer-events: none;
    background-image:
        linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.45) 49%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 120px 80px, 18px 18px;
}

.wt-numbers:after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -170px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .22);
    background: radial-gradient(circle, rgba(255, 255, 255, .08), transparent 64%);
    pointer-events: none;
}

.wt-numbers-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(220px, .95fr) repeat(4, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.wt-numbers-intro {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 190px;
    padding: 30px 28px 30px 0;
}

.wt-numbers-intro span {
    display: block;
    max-width: 300px;
    margin-bottom: 16px;
    color: #fff;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.2;
    text-transform: uppercase;
}

.wt-numbers-intro p {
    max-width: 280px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, .82);
    font-size: 15px;
    line-height: 1.6;
}

.wt-number-card {
    position: relative;
    display: flex;
    min-height: 190px;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px 22px 24px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .14), rgba(255, 255, 255, .06));
    box-shadow: 0 24px 54px rgba(54, 0, 0, .16);
    overflow: hidden;
}

.wt-number-card:before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 42%);
    opacity: .46;
    pointer-events: none;
}

.wt-number-card i {
    position: absolute;
    top: 22px;
    right: 22px;
    display: grid;
    width: 64px;
    height: 64px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 20px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .10);
    font-size: 28px;
}

.wt-number-card strong {
    position: relative;
    display: block;
    margin-bottom: 12px;
    color: #fff;
    font-size: clamp(44px, 4.1vw, 62px);
    font-weight: 900;
    line-height: 1;
}

.wt-number-card span {
    position: relative;
    display: block;
    max-width: 150px;
    color: rgba(255, 255, 255, .9);
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
    text-transform: uppercase;
}

.wt-about {
    padding: 96px 0 clamp(170px, 16vw, 230px);
}

.wt-split {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .86fr) minmax(420px, 1.05fr);
    align-items: center;
    gap: 78px;
}

.wt-about .wt-copy h2 {
    margin-bottom: 28px;
    font-size: clamp(28px, 2.8vw, 42px);
}

.wt-copy p {
    max-width: 600px;
    margin-bottom: 28px;
}

.wt-about-visual {
    position: relative;
    min-height: 430px;
}

.wt-office-scene {
    position: absolute;
    inset: 0 54px 24px 0;
    overflow: hidden;
    border-radius: 28px;
    background:
        linear-gradient(180deg, rgba(18, 15, 15, .12), rgba(18, 15, 15, .52)),
        linear-gradient(135deg, #2a2a2a, #f4f1ee 42%, #111);
    box-shadow: var(--wt-shadow);
}

.wt-office-scene:before {
    content: "";
    position: absolute;
    inset: 34px 30px auto;
    height: 118px;
    border-radius: 20px;
    background:
        linear-gradient(90deg, rgba(255,255,255,.25) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.18) 1px, transparent 1px);
    background-size: 36px 36px;
}

.wt-office-scene.has-image:before {
    display: none;
}

.wt-office-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.office-screen {
    position: absolute;
    border-radius: 12px;
    background: linear-gradient(135deg, #151313, #bd0008);
    box-shadow: 0 18px 35px rgba(0, 0, 0, .25);
}

.office-screen.main {
    right: 78px;
    bottom: 104px;
    width: 178px;
    height: 106px;
}

.office-screen.side {
    left: 74px;
    bottom: 94px;
    width: 136px;
    height: 86px;
}

.office-people {
    position: absolute;
    left: 58px;
    right: 58px;
    bottom: 48px;
    display: flex;
    justify-content: space-between;
}

.office-people span {
    width: 58px;
    height: 82px;
    border-radius: 36px 36px 10px 10px;
    background: linear-gradient(#1b1818 0 32%, var(--wt-red) 33% 100%);
}

.wt-highlight-card {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 232px;
    padding: 32px;
    border-radius: 24px;
    background: linear-gradient(135deg, #ffd650, #ffb600);
    box-shadow: 0 24px 54px rgba(151, 98, 0, .22);
}

.wt-highlight-card i {
    display: block;
    margin-bottom: 26px;
    color: #251800;
    font-size: 30px;
}

.wt-highlight-card strong {
    color: #402800;
    font-size: 17px;
    line-height: 1.35;
}

.wt-services {
    position: relative;
    padding: 116px 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(29, 69, 92, .28), transparent 36%),
        linear-gradient(165deg, #171110 0%, #261614 48%, #110d0c 100%);
}

.wt-services:before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.wt-services:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red), var(--wt-yellow));
    pointer-events: none;
}

.wt-services-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
    gap: 54px;
}

.wt-services-callout {
    position: relative;
    min-height: auto;
    padding: 0;
}

.wt-services-callout:before {
    content: "";
    display: block;
    width: 92px;
    height: 6px;
    margin-bottom: 24px;
    border-radius: 999px;
    background: var(--wt-yellow);
}

.wt-services .wt-eyebrow {
    color: var(--wt-yellow);
}

.wt-services-callout h2 {
    max-width: 420px;
    margin-bottom: 22px;
    color: #fff;
    font-size: clamp(36px, 3.8vw, 58px);
}

.wt-services-callout p {
    max-width: 360px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, .76);
}

.wt-services-callout .wt-btn {
    border-color: rgba(255, 255, 255, .18);
    color: #251800;
    background: linear-gradient(135deg, #ffe071, var(--wt-yellow));
    box-shadow: 0 18px 38px rgba(0, 0, 0, .20);
}

.wt-service-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
}

.wt-service-card {
    position: relative;
    display: block;
    flex: 1 1 230px;
    max-width: 290px;
    min-height: 318px;
    padding: 12px 12px 58px;
    border: 1px solid rgba(255, 255, 255, .62);
    border-radius: 22px;
    background: #fffdfb;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .18);
    color: var(--wt-ink);
    text-decoration: none;
    overflow: hidden;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.wt-service-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 201, 40, .86);
    color: var(--wt-ink);
    text-decoration: none;
    box-shadow: 0 30px 66px rgba(0, 0, 0, .24);
}

.wt-service-media {
    position: relative;
    aspect-ratio: 16 / 10.5;
    margin-bottom: 20px;
    overflow: hidden;
    border-radius: 16px;
    background: #fff4f1;
}

.wt-service-media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.wt-service-content {
    min-width: 0;
}

.wt-service-card h3 {
    position: relative;
    margin-bottom: 10px;
    padding: 0 4px;
}

.wt-service-card p {
    position: relative;
    display: -webkit-box;
    max-width: 100%;
    margin-bottom: 0;
    padding: 0 4px;
    font-size: 14px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

.wt-service-link-icon {
    position: absolute;
    right: 22px;
    bottom: 20px;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: linear-gradient(135deg, var(--wt-red), var(--wt-red-dark));
    font-size: 16px;
}

.wt-process {
    padding: 86px 0;
    background: linear-gradient(180deg, #fff7f5, #fffdfb);
}

.wt-section-head {
    margin-bottom: 42px;
}

.wt-section-head.compact {
    max-width: 430px;
}

.wt-section-head.inline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
}

.wt-section-head.inline a {
    color: var(--wt-red);
    font-weight: 900;
    text-decoration: none;
}

.wt-section-head.center {
    max-width: 650px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.wt-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 26px;
}

.wt-timeline:before {
    content: "";
    position: absolute;
    top: 22px;
    left: 52px;
    right: 52px;
    height: 2px;
    background: linear-gradient(90deg, var(--wt-red), rgba(29, 69, 92, .18));
}

.wt-step {
    position: relative;
    z-index: 1;
}

.wt-step span {
    display: grid;
    width: 44px;
    height: 44px;
    margin-bottom: 24px;
    place-items: center;
    border: 5px solid #fff7f5;
    border-radius: 50%;
    color: #fff;
    background: var(--wt-red);
    font-size: 11px;
    font-weight: 900;
}

.wt-step h3 {
    margin-bottom: 10px;
    font-size: 15px;
}

.wt-step p {
    margin-bottom: 0;
    font-size: 13px;
    line-height: 1.55;
}

.wt-cases {
    position: relative;
    padding: 86px 0 96px;
    overflow: hidden;
    border-top: 1px solid rgba(29, 69, 92, .08);
    border-bottom: 1px solid rgba(29, 69, 92, .08);
    background:
        linear-gradient(180deg, #fff 0%, #fff8f6 52%, #fff3ef 100%);
}

.wt-cases-head {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin-bottom: 0;
}

.wt-cases-head .wt-eyebrow {
    color: var(--wt-red);
    background: #fff0ee;
    border-color: rgba(29, 69, 92, .10);
}

.wt-cases-head h2 {
    max-width: 620px;
    color: var(--wt-ink);
    font-size: 40px;
    line-height: 1.08;
}

.wt-cases-head h2 strong {
    color: var(--wt-red);
    font-weight: 900;
}

.wt-cases-head p {
    max-width: 580px;
    margin: 14px 0 0;
    color: var(--wt-muted);
    font-size: 15px;
    line-height: 1.62;
}

.wt-portfolio-stage {
    position: relative;
    z-index: 1;
    width: min(100% - 36px, 1380px);
    margin: 34px auto 0;
}

.wt-portfolio-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    grid-auto-rows: 1fr;
    gap: 26px;
}

.wt-portfolio-card {
    position: relative;
    min-width: 0;
    aspect-ratio: 6 / 7;
    border: 0;
    border-radius: 0;
    background: #181313;
    box-shadow: 0 26px 68px rgba(80, 0, 0, .16);
    overflow: hidden;
    isolation: isolate;
    transition: transform .28s ease, box-shadow .28s ease;
}

.wt-portfolio-card:before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: rgba(0, 0, 0, .44);
    transition: background-color .28s ease;
}

.wt-portfolio-card:after {
    content: "";
    position: absolute;
    inset: 16px;
    z-index: 2;
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, .18);
    transition: inset .28s ease, border-color .28s ease;
}

.wt-portfolio-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 34px 86px rgba(80, 0, 0, .22);
}

.wt-portfolio-card:hover:before {
    background: rgba(0, 0, 0, .62);
}

.wt-portfolio-card:hover:after {
    inset: 12px;
    border-color: rgba(255, 255, 255, .32);
}

.wt-portfolio-frame {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background: #181313;
}

.wt-portfolio-image-trigger {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: zoom-in;
}

.wt-portfolio-frame img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .46s ease;
}

.wt-portfolio-card:hover .wt-portfolio-frame img {
    transform: scale(1.08);
}

.wt-portfolio-info {
    position: absolute;
    z-index: 3;
    left: 50%;
    bottom: 0;
    width: min(100% - 38px, 300px);
    padding: 0 0 30px;
    text-align: center;
    transform: translateX(-50%);
    min-width: 0;
}

.wt-portfolio-info span {
    display: inline-flex;
    justify-content: center;
    max-width: 100%;
    margin-bottom: 8px;
    padding: 0;
    border-radius: 0;
    color: rgba(255, 255, 255, .76);
    background: transparent;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.wt-portfolio-info h3 {
    display: -webkit-box;
    margin: 0;
    color: #fff;
    font-size: 25px;
    font-weight: 900;
    line-height: 1.08;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    transition: margin-bottom .28s ease;
}

.wt-portfolio-info p {
    display: -webkit-box;
    max-height: 0;
    margin: 0;
    color: rgba(255, 255, 255, .72);
    font-size: 13px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    opacity: 0;
    transition: max-height .28s ease, opacity .28s ease;
}

.wt-portfolio-card:hover .wt-portfolio-info h3 {
    margin-bottom: 10px;
}

.wt-portfolio-card:hover .wt-portfolio-info p {
    max-height: 42px;
    opacity: 1;
}

.wt-portfolio-lightbox {
    position: fixed;
    z-index: 9999;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(10, 8, 8, .88);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .2s ease, visibility .2s ease;
}

.wt-portfolio-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wt-portfolio-lightbox-content {
    position: relative;
    width: min(1120px, 100%);
    max-height: calc(100vh - 96px);
    margin: 0;
    overflow: hidden;
    transition: transform .24s ease, max-width .24s ease;
}

.wt-portfolio-lightbox-content img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 130px);
    object-fit: contain;
    border-radius: 12px;
    background: #121010;
    box-shadow: 0 34px 110px rgba(0, 0, 0, .45);
    cursor: zoom-in;
    transition: transform .24s ease;
    transform-origin: center center;
}

.wt-portfolio-lightbox.is-zoomed .wt-portfolio-lightbox-content {
    overflow: auto;
}

.wt-portfolio-lightbox.is-zoomed .wt-portfolio-lightbox-content img {
    transform: scale(1.65);
    cursor: zoom-out;
}

.wt-portfolio-lightbox-content figcaption {
    margin-top: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 800;
    text-align: center;
}

.wt-portfolio-lightbox-close {
    position: absolute;
    top: 22px;
    right: 22px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.wt-portfolio-lightbox-close:hover {
    background: rgba(255, 255, 255, .18);
    transform: scale(1.04);
}

body.wt-lightbox-open {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
}

body.wt-lightbox-open .wt-site {
    width: 100%;
}

.wt-image-lightbox {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: grid;
    grid-template-rows: 1fr;
    background: rgba(5, 5, 6, .92);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .18s ease, visibility .18s ease;
}

.wt-image-lightbox.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.wt-image-lightbox-stage {
    display: grid;
    width: 100%;
    height: 100%;
    padding: 86px 24px 34px;
    place-items: center;
    overflow: hidden;
    overscroll-behavior: contain;
    touch-action: none;
}

.wt-image-lightbox-content {
    display: grid;
    justify-items: center;
    width: min(1180px, 100%);
    margin: 0;
}

.wt-image-lightbox-content img {
    display: block;
    max-width: 100%;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    border-radius: 12px;
    background: #111;
    box-shadow: 0 30px 100px rgba(0, 0, 0, .55);
    cursor: zoom-in;
    touch-action: none;
    user-select: none;
    -webkit-user-drag: none;
    transform-origin: center center;
    transition: transform .12s ease;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content {
    justify-items: center;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content img {
    cursor: grab;
}

.wt-image-lightbox.is-zoomed .wt-image-lightbox-content img:active {
    cursor: grabbing;
}

.wt-image-lightbox-content figcaption {
    margin-top: 14px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-align: center;
}

.wt-image-lightbox-close,
.wt-image-lightbox-controls button {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 50%;
    color: #fff;
    background: rgba(18, 18, 20, .86);
    box-shadow: 0 16px 42px rgba(0, 0, 0, .30);
    cursor: pointer;
    transition: background .18s ease, transform .18s ease, opacity .18s ease;
}

.wt-image-lightbox-close {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    right: max(18px, env(safe-area-inset-right));
    z-index: 2;
}

.wt-image-lightbox-controls {
    position: fixed;
    top: max(18px, env(safe-area-inset-top));
    left: 50%;
    z-index: 2;
    display: flex;
    gap: 10px;
    transform: translateX(-50%);
}

.wt-image-lightbox-close:hover,
.wt-image-lightbox-controls button:hover {
    background: rgba(29, 69, 92, .92);
    transform: translateY(-1px);
}

.wt-image-lightbox-controls button:disabled {
    cursor: default;
    opacity: .42;
    transform: none;
}

.wt-tech {
    padding: 86px 0;
    background: #fff;
}

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

.wt-tech-card {
    display: grid;
    min-height: 126px;
    place-items: center;
    gap: 12px;
    border: 1px solid rgba(29, 69, 92, .10);
    border-radius: 18px;
    background: #fff9f8;
}

.wt-tech-card i {
    color: var(--wt-red);
    font-size: 32px;
}

.wt-tech-card span {
    color: var(--wt-ink);
    font-size: 14px;
    font-weight: 900;
}

.wt-testimonials {
    position: relative;
    padding: 108px 0 112px;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(29, 69, 92, .28), transparent 36%),
        linear-gradient(165deg, #171110 0%, #261614 48%, #110d0c 100%);
    overflow: hidden;
}

.wt-testimonials:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .28;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(255, 255, 255, .10) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 18%, #000 82%, transparent 100%);
}

.wt-testimonials:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 10px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red), var(--wt-yellow));
    pointer-events: none;
}

.wt-testimonials .wt-container {
    position: relative;
    z-index: 1;
}

.wt-testimonials-copy {
    display: grid;
    justify-items: center;
    margin: 0 auto 34px;
    text-align: center;
}

.wt-testimonials-copy h2 {
    max-width: 760px;
    margin-bottom: 22px;
    color: #fff;
}

.wt-testimonials .wt-eyebrow {
    color: var(--wt-yellow);
}

.wt-testimonial-art {
    position: relative;
    margin: 0;
    width: min(1320px, calc(100vw - 36px));
    margin-inline: calc((min(1320px, calc(100vw - 36px)) - min(1180px, calc(100vw - 40px))) / -2);
    padding: clamp(14px, 2.3vw, 34px);
    border-radius: 30px;
    background: transparent;
    overflow: visible;
}

.wt-testimonial-art img {
    position: relative;
    display: block;
    width: 100%;
    max-height: min(76vh, 760px);
    object-fit: contain;
    border-radius: 16px;
    transition: opacity .32s ease;
}

.wt-testimonial-art img.is-changing {
    opacity: 0;
}

.wt-testimonial-zoom-hint {
    position: absolute;
    right: clamp(24px, 4vw, 56px);
    bottom: clamp(30px, 4.5vw, 62px);
    z-index: 3;
    display: none;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .58);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .26);
    pointer-events: none;
}

.wt-testimonial-zoom-hint:after {
    content: "";
    position: absolute;
    inset: -7px;
    border: 1px solid rgba(255, 255, 255, .20);
    border-radius: inherit;
    opacity: .7;
    animation: wt-zoom-hint-pulse 2.4s ease-out infinite;
}

.wt-testimonial-nav {
    position: absolute;
    top: 50%;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 50%;
    color: #fff;
    background: rgba(0, 0, 0, .46);
    transform: translateY(-50%);
    transition: background .2s ease, border-color .2s ease;
}

.wt-testimonial-nav:hover {
    border-color: rgba(255, 255, 255, .52);
    background: rgba(0, 0, 0, .64);
}

.wt-testimonial-nav-prev {
    left: clamp(20px, 3vw, 48px);
}

.wt-testimonial-nav-next {
    right: clamp(20px, 3vw, 48px);
}

.wt-testimonial-dots {
    position: absolute;
    left: 50%;
    bottom: clamp(24px, 3vw, 48px);
    z-index: 2;
    display: flex;
    gap: 9px;
    align-items: center;
    justify-content: center;
    transform: translateX(-50%);
}

.wt-testimonial-dots button {
    width: 9px;
    height: 9px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 50%;
    background: rgba(255, 255, 255, .35);
}

.wt-testimonial-dots button.is-active {
    background: #fff;
}

.wt-testimonial-viewer {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    padding: 20px 14px;
    background: rgba(0, 0, 0, .94);
    overflow: hidden;
}

.wt-testimonial-viewer.is-open {
    display: grid;
    place-items: center;
}

.wt-testimonial-viewer-close {
    position: fixed;
    top: 16px;
    right: 16px;
    z-index: 1;
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 50%;
    color: #fff;
    background: rgba(255, 255, 255, .10);
}

.wt-testimonial-viewer-scroll {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wt-testimonial-viewer img {
    display: block;
    width: min(100%, 1120px);
    max-width: 100%;
    max-height: calc(100vh - 88px);
    margin: 0 auto;
    border-radius: 10px;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform .24s ease;
    transform-origin: center center;
}

.wt-testimonial-viewer.is-zoomed img {
    transform: scale(1.72);
    cursor: zoom-out;
}

.wt-regions {
    position: relative;
    padding: 96px 0 88px;
    border-top: 1px solid rgba(29, 69, 92, .08);
    border-bottom: 1px solid rgba(29, 69, 92, .08);
    background:
        linear-gradient(180deg, #fffdfb 0%, #fff8f6 52%, #fffdfb 100%);
    overflow: hidden;
}

.wt-regions:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .42;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(29, 69, 92, .08) 1px, transparent 1px),
        linear-gradient(0deg, rgba(29, 69, 92, .06) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(circle at 50% 18%, #000, transparent 46%);
}

.wt-regions:after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(29, 69, 92, .18), transparent);
    pointer-events: none;
}

.wt-regions .wt-container {
    position: relative;
    z-index: 1;
}

.wt-regions-head {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.wt-regions-head h2 {
    max-width: 680px;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: auto;
    font-size: 40px;
    line-height: 1.08;
}

.wt-regions-head h2 strong,
.wt-about-reach h2 strong {
    color: var(--wt-red);
    font-weight: 900;
}

.wt-coverage-map {
    position: relative;
    z-index: 1;
    margin-top: 34px;
    padding: clamp(14px, 2.2vw, 28px);
    border: 1px solid rgba(29, 69, 92, .12);
    border-radius: 26px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 249, 248, .96) 52%, rgba(255, 255, 255, .98) 100%);
    box-shadow: 0 28px 76px rgba(80, 0, 0, .10);
    overflow: hidden;
}

.wt-coverage-map:before,
.wt-about-map:before {
    content: "";
    position: absolute;
    inset: 12px;
    border: 1px solid rgba(29, 69, 92, .08);
    border-radius: 18px;
    pointer-events: none;
}

.wt-coverage-map img {
    position: relative;
    display: block;
    width: min(100%, 1120px);
    height: auto;
    margin: 0 auto;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(43, 25, 25, .10));
}

.wt-final-cta {
    position: relative;
    padding: 58px 0 34px;
    background: linear-gradient(180deg, #fff6f4, #fffdfb);
}

.wt-cta-panel {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(280px, .82fr) minmax(0, 1fr);
    align-items: center;
    min-height: 340px;
    overflow: hidden;
    border-radius: 28px;
    color: #fff;
    background:
        radial-gradient(circle at 16% 16%, rgba(255, 255, 255, .20), transparent 18rem),
        radial-gradient(circle at 88% 18%, rgba(255, 201, 40, .20), transparent 16rem),
        linear-gradient(135deg, #101b22 0%, #17384c 46%, var(--wt-red) 100%);
    box-shadow: 0 30px 80px rgba(130, 0, 0, .20);
}

.wt-cta-visual {
    position: relative;
    height: 100%;
    min-height: 340px;
    padding: 22px 0 22px 22px;
}

.wt-cta-visual:after {
    content: "";
    position: absolute;
    inset: 22px 0 22px 22px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 22px;
    pointer-events: none;
}

.wt-cta-visual img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 296px;
    border-radius: 22px;
    object-fit: cover;
    filter: saturate(1.05) contrast(1.04);
}

.wt-cta-copy {
    max-width: 680px;
    padding: 54px 58px;
}

.wt-cta-copy h2 {
    margin-bottom: 16px;
    color: #fff;
}

.wt-cta-copy p {
    max-width: 560px;
    margin-bottom: 26px;
    color: rgba(255, 255, 255, .82);
}

.wt-about-page {
    position: relative;
    padding: 132px 0 88px;
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f6 52%, #fffdfb 100%);
    overflow: hidden;
}

.wt-about-page:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .5;
    pointer-events: none;
    background-image:
        linear-gradient(90deg, rgba(22, 19, 19, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 19, 19, .035) 1px, transparent 1px);
    background-size: 78px 78px;
}

.wt-about-page .wt-container {
    position: relative;
    z-index: 1;
}

.wt-about-page-card {
    position: relative;
    max-width: 1020px;
    margin: 0 auto;
    padding: clamp(18px, 2.5vw, 34px) clamp(18px, 3.4vw, 46px) clamp(34px, 4.2vw, 58px);
    border: 1px solid rgba(22, 19, 19, .10);
    border-radius: 26px;
    background: rgba(255, 255, 255, .84);
    box-shadow: 0 26px 72px rgba(70, 0, 0, .10);
}

.wt-about-page-hero {
    margin: 0 0 clamp(30px, 4vw, 46px);
    border-radius: 20px;
    background: #f6f0ee;
    overflow: hidden;
}

.wt-about-page-hero img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 560px;
    object-fit: contain;
}

.wt-about-page-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.wt-about-page-content h1 {
    max-width: 780px;
    margin: 0 auto 22px;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.wt-about-page-content h1:after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--wt-yellow), var(--wt-red));
}

.wt-rich-text {
    max-width: 780px;
    margin: 0 auto;
    padding: 0;
    color: var(--wt-muted);
    font-size: 17px;
    line-height: 1.8;
    text-align: left;
}

.wt-rich-text > *:first-child {
    margin-top: 0;
}

.wt-rich-text > *:last-child {
    margin-bottom: 0;
}

.wt-rich-text h1,
.wt-rich-text h2,
.wt-rich-text h3,
.wt-rich-text h4 {
    margin: 1.45em 0 .55em;
    color: var(--wt-ink);
}

.wt-rich-text p,
.wt-rich-text ul,
.wt-rich-text ol,
.wt-rich-text blockquote {
    margin-bottom: 1.1em;
}

.wt-rich-text img {
    max-width: 100%;
    height: auto;
    border-radius: 18px;
}

.wt-about-numbers,
.wt-about-reach {
    position: relative;
    padding: 86px 0;
    overflow: hidden;
}

.wt-about-numbers {
    color: #fff;
    background:
        radial-gradient(circle at 12% 20%, rgba(255, 201, 40, .22), transparent 20rem),
        radial-gradient(circle at 88% 22%, rgba(255, 255, 255, .16), transparent 19rem),
        linear-gradient(135deg, #123246 0%, #1D455C 48%, #17384c 100%);
}

.wt-about-numbers:before,
.wt-about-reach:before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .16;
    pointer-events: none;
    background-image:
        linear-gradient(110deg, transparent 0 48%, rgba(255,255,255,.45) 49%, transparent 50%),
        radial-gradient(circle, rgba(255,255,255,.4) 1px, transparent 1px);
    background-size: 120px 80px, 18px 18px;
}

.wt-about-numbers .wt-container,
.wt-about-reach .wt-container {
    position: relative;
    z-index: 1;
}

.wt-about-numbers .wt-eyebrow,
.wt-about-numbers h2 {
    color: #fff;
}

.wt-about-number-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.wt-about-number-card {
    min-height: 170px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 20px;
    background: rgba(255, 255, 255, .10);
}

.wt-about-number-card i {
    display: grid;
    width: 46px;
    height: 46px;
    margin-bottom: 20px;
    place-items: center;
    border-radius: 14px;
    color: var(--wt-red);
    background: #fff;
    font-size: 20px;
}

.wt-about-number-card strong,
.wt-about-number-card span {
    display: block;
}

.wt-about-number-card strong {
    margin-bottom: 6px;
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1;
}

.wt-about-number-card span {
    color: rgba(255, 255, 255, .82);
    font-size: 14px;
    font-weight: 900;
}

.wt-about-reach {
    background: linear-gradient(180deg, #fffdfb 0%, #fff8f6 54%, #fffdfb 100%);
}

.wt-about-reach:before {
    opacity: .5;
    background-image:
        linear-gradient(90deg, rgba(22, 19, 19, .04) 1px, transparent 1px),
        linear-gradient(0deg, rgba(22, 19, 19, .035) 1px, transparent 1px);
    background-size: 78px 78px;
}

.wt-about-map {
    position: relative;
    margin-top: 28px;
    padding: clamp(14px, 2.2vw, 26px);
    border: 1px solid rgba(29, 69, 92, .12);
    border-radius: 24px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98) 0%, rgba(255, 249, 248, .96) 52%, rgba(255, 255, 255, .98) 100%);
    box-shadow: 0 28px 86px rgba(70, 0, 0, .10);
    overflow: hidden;
}

.wt-about-map img {
    position: relative;
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
    object-fit: contain;
    filter: drop-shadow(0 18px 36px rgba(43, 25, 25, .10));
}

.wt-footer {
    position: relative;
    padding: 52px 0 18px;
    color: #fff;
    background: linear-gradient(135deg, #070707, #171110 56%, #000);
}

.wt-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.45fr 1fr 1.35fr;
    gap: 34px;
}

.wt-footer .wt-logo-text,
.wt-footer .wt-logo {
    color: #fff;
}

.wt-footer .wt-logo img {
    height: 58px;
    width: auto;
    max-width: 100%;
    padding: 8px;
    border-radius: 8px;
    background: #fff;
    filter: none;
}

.wt-footer .wt-logo-mark {
    color: var(--wt-red);
    background: #fff;
}

.wt-footer .wt-logo-text small {
    color: rgba(255, 255, 255, .78);
}

.wt-footer p {
    max-width: 260px;
    margin: 18px 0 0;
    color: rgba(255, 255, 255, .75);
    font-size: 14.5px;
    font-weight: 500;
}

.wt-footer h3 {
    margin-bottom: 18px;
    color: #fff;
    font-size: 15.5px;
    font-weight: 900;
}

.wt-footer a,
.wt-footer span {
    display: block;
    margin-bottom: 9px;
    color: rgba(255, 255, 255, .76);
    font-size: 14.5px;
    font-weight: 500;
    text-decoration: none;
}

.wt-footer span i {
    width: 18px;
    margin-right: 8px;
    color: rgba(255, 255, 255, .9);
}

.wt-footer a:hover {
    color: #fff;
}

.wt-footer-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 14px 0 6px;
}

.wt-footer-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    margin: 0;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 12px;
    color: #fff;
    background: rgba(255, 255, 255, .08);
}

.wt-footer-socials a:hover {
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .14);
}

.wt-footer .wt-logo {
    display: inline-flex;
}

.wt-footer .wt-logo-mark {
    display: grid;
    margin-bottom: 0;
}

.wt-footer .wt-logo-text {
    display: grid;
    margin-bottom: 0;
}

.wt-footer-cta {
    display: inline-flex !important;
    align-items: center;
    width: fit-content;
    margin-top: 14px;
    padding: 13px 18px;
    gap: 9px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    color: #fff !important;
    background: linear-gradient(135deg, var(--wt-red), #356b88);
    box-shadow: 0 14px 32px rgba(29, 69, 92, .28);
    font-weight: 900;
}

.wt-footer-cta:hover {
    transform: translateY(-1px);
}

.wt-footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 16px;
    margin-top: 34px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.wt-footer-bottom .wt-footer-credit {
    display: inline-flex;
    align-items: center;
    gap: .3em;
    margin: 0;
    font-size: 13.5px;
    white-space: nowrap;
}

.wt-footer-bottom .wt-footer-credit > span {
    display: inline-block;
    margin: 0;
    color: inherit;
    font-size: inherit;
    line-height: inherit;
    white-space: nowrap;
}

.wt-footer-heart {
    color: inherit;
    transform-origin: center;
    animation: wt-footer-heartbeat 1.35s ease-in-out infinite;
}

@keyframes wt-footer-heartbeat {
    0%, 100% {
        transform: scale(1);
    }

    18% {
        transform: scale(1.12);
    }

    32% {
        transform: scale(0.98);
    }

    48% {
        transform: scale(1.08);
    }

    64% {
        transform: scale(1);
    }
}

.wt-floating-whatsapp {
    position: fixed;
    z-index: 999;
    right: 24px;
    bottom: 24px;
    display: grid;
    width: 58px;
    height: 58px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: #24d365;
    box-shadow: 0 14px 32px rgba(36, 211, 101, .34);
    font-size: 30px;
    text-decoration: none;
}

.wt-floating-whatsapp:hover {
    color: #fff;
}

@media (max-width: 1180px) {
    .wt-header {
        grid-template-columns: auto auto;
        justify-content: space-between;
        border-radius: 28px;
    }

    .wt-menu-toggle {
        display: block;
    }

    .wt-header-cta {
        display: none;
    }

    .wt-nav {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        display: none;
        grid-template-columns: repeat(4, 1fr);
        padding: 18px;
        border: 1px solid rgba(29, 69, 92, .12);
        border-radius: 24px;
        background: #fff;
        box-shadow: var(--wt-shadow);
    }

    .wt-nav.is-open {
        display: grid;
    }

    .wt-nav a {
        display: grid;
        min-height: 42px;
        place-items: center;
        border-radius: 12px;
        background: #fff7f6;
    }

    .wt-hero-grid,
    .wt-split {
        grid-template-columns: 1fr;
    }

    .wt-hero-grid {
        gap: 26px;
        min-height: 560px;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .wt-service-card {
        flex-basis: calc(50% - 12px);
        max-width: none;
    }

    .wt-numbers-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wt-numbers-intro {
        grid-column: 1 / -1;
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
        min-height: auto;
        padding: 0 0 8px;
    }

    .wt-numbers-intro span,
    .wt-numbers-intro p {
        max-width: 360px;
    }

    .wt-timeline {
        grid-template-columns: repeat(3, 1fr);
    }

    .wt-timeline:before {
        display: none;
    }

    .wt-about-page-hero img {
        max-height: 520px;
    }

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

    .wt-tech-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .wt-footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 820px) {
    .wt-container {
        width: min(100% - 28px, 680px);
    }

    .wt-header {
        top: 10px;
        width: calc(100% - 24px);
        min-height: 62px;
        padding: 9px 10px 9px 14px;
    }

    .wt-logo-mark {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        font-size: 22px;
    }

    .wt-logo-text {
        font-size: 21px;
    }

    .wt-logo img {
        width: 166px;
        height: auto;
        max-height: 42px;
    }

    .wt-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .wt-hero {
        padding: 110px 0 54px;
        background: var(--wt-hero-bg-mobile, var(--wt-hero-bg-desktop, linear-gradient(135deg, #201716, #3a2220)));
        background-position: center top;
        background-repeat: no-repeat;
        background-size: cover;
    }

    .wt-hero:after {
        background:
            linear-gradient(180deg, rgba(9, 8, 8, .82) 0%, rgba(9, 8, 8, .58) 54%, rgba(9, 8, 8, .24) 100%),
            linear-gradient(90deg, rgba(0, 0, 0, .18), rgba(0, 0, 0, .06));
    }

    .wt-hero-bg-layer {
        background-image: var(--wt-layer-bg-mobile, var(--wt-layer-bg-desktop));
        background-position: center top;
    }

    .wt-hero-grid {
        min-height: 560px;
    }

    .wt-hero-copy {
        max-width: 560px;
        padding-top: 8px;
    }

    .wt-hero h1 {
        max-width: 560px;
        font-size: clamp(32px, 7vw, 46px);
    }

    .wt-hero-meta {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }

    .wt-hero-meta-item-location {
        width: auto;
        max-width: none;
    }

    .wt-hero-meta-item {
        min-height: 0;
        padding: 16px 18px;
        border-radius: 18px;
        background: rgba(255, 255, 255, .1);
    }

    .wt-hero-meta-item strong {
        font-size: 17px;
    }

    .wt-hero-dots {
        bottom: 16px;
    }

    .wt-actions .wt-btn {
        flex: 1 1 220px;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .mockup-laptop {
        right: 4%;
        bottom: 56px;
        width: 92%;
        height: 244px;
        border-width: 10px;
        border-bottom-width: 24px;
        border-radius: 22px;
    }

    .mockup-dashboard {
        grid-template-columns: 76px 1fr;
        height: 160px;
    }

    .dash-content {
        padding: 18px;
    }

    .dash-content strong {
        font-size: 18px;
    }

    .mockup-phone {
        width: 104px;
        height: 216px;
        border-width: 7px;
        border-radius: 26px;
    }

    .phone-logo {
        width: 44px;
        height: 44px;
        margin-top: 6px;
        margin-bottom: 18px;
        font-size: 24px;
    }

    .code-chip {
        width: 60px;
        height: 60px;
        border-radius: 18px;
    }

    .wt-trust-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .wt-client-logo {
        width: clamp(118px, 28vw, 160px);
    }

    .wt-numbers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .wt-numbers-intro {
        display: block;
        padding-bottom: 2px;
    }

    .wt-number-card {
        min-height: 174px;
        padding: 24px 22px 22px;
    }

    .wt-about {
        padding: 72px 0 clamp(112px, 32vw, 150px);
    }

    .wt-split {
        gap: 34px;
    }

    .wt-about-visual {
        min-height: 360px;
    }

    .wt-office-scene {
        inset: 0 0 56px 0;
    }

    .wt-highlight-card {
        right: 18px;
        width: 205px;
        padding: 24px;
    }

    .wt-services-grid {
        grid-template-columns: 1fr;
        gap: 34px;
        width: 100%;
    }

    .wt-services .wt-container {
        width: min(100% - 36px, 680px);
    }

    .wt-services {
        padding: 76px 0;
    }

    .wt-services-callout {
        min-height: auto;
        padding: 0;
    }

    .wt-services-callout h2 {
        max-width: 620px;
        margin-bottom: 16px;
    }

    .wt-services-callout p {
        max-width: 560px;
        margin-bottom: 24px;
    }

    .wt-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .wt-step {
        padding: 18px;
        border: 1px solid rgba(29, 69, 92, .10);
        border-radius: 18px;
        background: #fff;
    }

    .wt-step span {
        margin-bottom: 16px;
    }

    .wt-cases-head h2 {
        max-width: 560px;
        font-size: 34px;
    }

    .wt-portfolio-stage {
        width: calc(100% - 32px);
    }

    .wt-portfolio-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }

    .wt-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 10px;
    }

    .wt-tech-card {
        min-height: 104px;
        border-radius: 14px;
    }

    .wt-tech-card i {
        font-size: 26px;
    }

    .wt-tech-card span {
        font-size: 12px;
    }

    .wt-testimonials {
        padding: 78px 0 82px;
    }

    .wt-testimonials-copy {
        justify-items: start;
        text-align: left;
    }

    .wt-testimonial-art {
        width: 100%;
        margin-inline: 0;
        border-radius: 20px;
        cursor: zoom-in;
        padding: 10px;
    }

    .wt-testimonial-zoom-hint {
        display: grid;
    }

    .wt-testimonial-art img {
        max-height: 620px;
        border-radius: 12px;
    }

    .wt-testimonial-viewer {
        padding: 18px 10px;
    }

    .wt-testimonial-viewer-scroll {
        overflow: hidden;
    }

    .wt-testimonial-viewer img {
        width: min(100%, 980px);
    }

    .wt-testimonial-viewer.is-zoomed img {
        transform: scale(1.62);
    }

    .wt-cta-panel {
        grid-template-columns: 1fr;
    }

    .wt-cta-visual {
        min-height: 240px;
        padding: 18px 18px 0;
    }

    .wt-cta-visual:after {
        inset: 18px 18px 0;
    }

    .wt-cta-visual img {
        min-height: 240px;
    }

    .wt-cta-copy {
        padding: 44px 24px;
    }

    .wt-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wt-footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 560px) {
    .wt-site h1 {
        font-size: 36px;
    }

    .wt-site h2 {
        font-size: 30px;
    }

    .wt-btn {
        min-height: 46px;
        padding: 0 16px;
        font-size: 13px;
    }

    .wt-logo-text small {
        display: none;
    }

    .wt-hero-visual {
        display: none;
        min-height: 0;
    }

    .mockup-laptop {
        bottom: 44px;
        height: 212px;
    }

    .mockup-dashboard {
        grid-template-columns: 58px 1fr;
        gap: 10px;
        height: 136px;
    }

    .dash-sidebar {
        background-size: 34px 6px, 28px 6px, 38px 6px, 32px 6px;
        background-position: 12px 24px, 12px 54px, 12px 84px, 12px 114px;
    }

    .mockup-phone {
        right: -4px;
        bottom: 20px;
    }

    .chip-a {
        top: 18px;
        left: 0;
    }

    .chip-b {
        top: 70px;
        right: 5px;
    }

    .wt-client-logo {
        width: clamp(112px, 42vw, 148px);
    }

    .wt-numbers {
        padding: 58px 0;
    }

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

    .wt-numbers-intro {
        grid-column: 1 / -1;
    }

    .wt-numbers-intro span,
    .wt-numbers-intro p {
        max-width: none;
    }

    .wt-number-card {
        min-height: 142px;
        padding: 18px 14px;
        border-radius: 16px;
    }

    .wt-number-card i {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 18px;
    }

    .wt-number-card strong {
        margin-bottom: 8px;
        font-size: 32px;
    }

    .wt-number-card span {
        max-width: 112px;
        font-size: 10px;
        line-height: 1.25;
    }

    .wt-timeline {
        grid-template-columns: 1fr;
    }

    .wt-cases {
        padding: 58px 0 64px;
    }

    .wt-cases-head h2 {
        font-size: 26px;
        line-height: 1.12;
    }

    .wt-cases-head p {
        margin-top: 10px;
        font-size: 13px;
        line-height: 1.5;
    }

    .wt-portfolio-stage {
        width: calc(100% - 28px);
        margin-top: 24px;
    }

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

    .wt-portfolio-card {
        box-shadow: 0 16px 38px rgba(80, 0, 0, .14);
    }

    .wt-portfolio-card:after {
        inset: 9px;
    }

    .wt-portfolio-info {
        width: calc(100% - 22px);
        padding-bottom: 16px;
    }

    .wt-portfolio-info span {
        margin-bottom: 6px;
        font-size: 9px;
        line-height: 1.2;
    }

    .wt-portfolio-info h3 {
        font-size: 15px;
        line-height: 1.16;
    }

    .wt-portfolio-info p {
        display: none;
    }

    .wt-portfolio-lightbox {
        padding: 16px;
    }

    .wt-portfolio-lightbox-content img {
        max-height: calc(100vh - 104px);
        border-radius: 8px;
    }

    .wt-portfolio-lightbox-close {
        top: 14px;
        right: 14px;
        width: 40px;
        height: 40px;
    }

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

    .wt-services .wt-container {
        width: calc(100% - 32px);
    }

    .wt-services {
        padding: 62px 0;
    }

    .wt-services-callout h2 {
        margin-bottom: 12px;
        font-size: 30px;
        line-height: 1.08;
    }

    .wt-services-callout p {
        margin-bottom: 20px;
        font-size: 14px;
        line-height: 1.55;
    }

    .wt-service-card {
        max-width: none;
        min-height: 252px;
        padding: 8px 8px 46px;
        border-radius: 18px;
    }

    .wt-service-media {
        height: auto;
        margin-bottom: 12px;
        border-radius: 14px;
        aspect-ratio: 1.18 / 1;
    }

    .wt-service-card h3 {
        margin-bottom: 8px;
        padding: 0 2px;
        font-size: 14px;
        line-height: 1.18;
    }

    .wt-service-card p {
        padding: 0 2px;
        font-size: 12px;
        line-height: 1.38;
        -webkit-line-clamp: 3;
    }

    .wt-service-link-icon {
        right: 12px;
        bottom: 10px;
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    .wt-section-head.inline {
        display: block;
    }

    .wt-about-page {
        padding: 106px 0 64px;
    }

    .wt-about-page-card {
        border-radius: 22px;
        padding: 14px 14px 30px;
    }

    .wt-about-page-hero {
        margin-bottom: 26px;
        border-radius: 16px;
    }

    .wt-about-page-hero img {
        min-height: 0;
    }

    .wt-about-page-content {
        padding: 0 6px;
    }

    .wt-about-page-content h1:after {
        margin-top: 18px;
    }

    .wt-rich-text {
        font-size: 15px;
        line-height: 1.7;
    }

    .wt-about-numbers,
    .wt-about-reach {
        padding: 66px 0;
    }

    .wt-about-number-grid {
        grid-template-columns: 1fr;
    }

    .wt-about-number-card {
        min-height: 142px;
        padding: 20px;
    }

    .wt-about-map {
        border-radius: 18px;
    }

    .wt-tech-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .wt-testimonial-art {
        width: calc(100vw - 24px);
        margin-left: calc((100vw - 100%) / -2 + 12px);
        padding: 8px;
        border-radius: 16px;
    }

    .wt-testimonial-art img {
        max-height: 540px;
        border-radius: 10px;
    }

    .wt-testimonial-viewer {
        padding: 16px 8px;
    }

    .wt-testimonial-viewer img {
        width: min(100%, 860px);
    }

    .wt-testimonial-viewer.is-zoomed img {
        transform: scale(1.58);
    }

    .wt-regions {
        padding: 72px 0 66px;
    }

    .wt-footer-grid {
        grid-template-columns: 1fr;
    }

    .wt-footer-bottom {
        display: block;
    }

    .wt-floating-whatsapp {
        right: 16px;
        bottom: 16px;
        width: 52px;
        height: 52px;
        font-size: 26px;
    }
}

/* Final visual alignment for the EBAT identity. */
.wt-site {
    background: #fff;
}

.section-soft,
.wt-registration,
.wt-about-page,
.wt-about-reach {
    background: #f7f8f9;
}

.section-soft:not(.wt-schedule):before,
.wt-registration:before,
.wt-about-page:before,
.wt-about-reach:before {
    display: none;
    content: none;
}

@media (min-width: 1181px) {
    .wt-header {
        border-radius: 30px 10px 30px 10px;
    }
}

.wt-about-visual {
    min-height: 400px;
}

.wt-office-scene {
    inset: 0;
    border-radius: 32px 10px 32px 10px;
}

.wt-registration-form {
    border-radius: 32px 10px 32px 10px;
}

.wt-about-page-card,
.wt-about-map,
.wt-about-number-card {
    border-radius: 26px 8px 26px 8px;
}

.wt-about-page-hero,
.wt-about-page-hero img {
    border-radius: 20px 7px 20px 7px;
}

.wt-footer {
    isolation: isolate;
    overflow: hidden;
    padding: 72px 0 22px;
    color: #fff;
    background: linear-gradient(145deg, #102f42 0%, var(--main-color, #1D455C) 54%, #143548 100%);
}

.wt-footer:before {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    display: block;
    opacity: .56;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 900 420'%3E%3Cpath d='M-40 190C120 48 256 350 450 196S760 52 950 176' fill='none' stroke='%23568faa' stroke-opacity='.34' stroke-width='1.5'/%3E%3Cpath d='M-50 236C115 90 274 390 466 234S774 92 960 214' fill='none' stroke='%236fc3e0' stroke-opacity='.18' stroke-width='1'/%3E%3C/svg%3E"),
        radial-gradient(circle at center, rgba(111, 195, 224, .22) 0 1.2px, transparent 1.4px);
    background-position: left -4% top -18%, left 0 top 0;
    background-repeat: no-repeat, repeat;
    background-size: min(82vw, 900px) auto, 24px 24px;
    mask-image: linear-gradient(90deg, #000 0%, #000 80%, transparent 100%);
    pointer-events: none;
}

.wt-footer:after {
    content: "";
    position: absolute;
    z-index: 0;
    inset: 0;
    background:
        radial-gradient(circle at 91% 42%, transparent 0 68px, rgba(86, 143, 170, .28) 69px 70px, transparent 71px 108px, rgba(86, 143, 170, .18) 109px 110px, transparent 111px),
        conic-gradient(from 35deg at 8% 82%, transparent 0 12%, rgba(86, 143, 170, .10) 12% 12.8%, transparent 12.8% 100%),
        linear-gradient(120deg, transparent 0 72%, rgba(86, 143, 170, .08) 72% 72.8%, transparent 72.8%);
    pointer-events: none;
}

.wt-footer > .wt-container {
    position: relative;
    z-index: 1;
}

.wt-footer-main {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 1.35fr) minmax(160px, .7fr) minmax(280px, 1fr);
    gap: clamp(36px, 6vw, 84px);
    padding-bottom: 52px;
}

.wt-footer-brand {
    max-width: 390px;
}

.wt-footer .wt-logo img {
    width: auto;
    height: 66px;
    max-width: min(100%, 280px);
    max-height: none;
    padding: 0;
    border-radius: 0;
    background: transparent;
    filter: brightness(0) invert(1);
}

.wt-footer p {
    max-width: 360px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 15.5px;
    font-weight: 500;
    line-height: 1.7;
}

.wt-footer h3 {
    margin-bottom: 22px;
    color: #fff;
    font-size: 13.5px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.wt-footer-links,
.wt-footer-contact {
    padding-top: 8px;
}

.wt-footer a,
.wt-footer span {
    margin-bottom: 11px;
    color: rgba(255, 255, 255, .76);
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.55;
}

.wt-footer-contact span {
    display: flex;
    align-items: flex-start;
}

.wt-footer span i {
    margin-top: 4px;
    color: #fff;
}

.wt-footer-socials {
    margin-top: 24px;
}

.wt-footer-socials a {
    border-radius: 14px 5px 14px 5px;
    background: rgba(255, 255, 255, .08);
    font-size: 14.5px;
    font-weight: 600;
}

.wt-footer-cta {
    margin-top: 20px;
    border-radius: 16px 5px 16px 5px;
    background: rgba(255, 255, 255, .12);
    box-shadow: none;
    font-size: 14.5px;
    font-weight: 900;
}

.wt-footer-bottom {
    margin-top: 0;
    padding-top: 22px;
    border-top-color: rgba(255, 255, 255, .16);
}

@media (max-width: 980px) {
    .wt-footer-main {
        grid-template-columns: 1.2fr .8fr;
    }

    .wt-footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 820px) {
    .wt-about-visual {
        min-height: 340px;
    }

    .wt-office-scene {
        inset: 0;
    }

    .wt-footer {
        padding-top: 58px;
    }
}

@media (max-width: 640px) {
    .wt-registration-form {
        border-radius: 24px 8px 24px 8px;
    }

    .wt-footer-main {
        grid-template-columns: 1fr;
        gap: 34px;
        padding-bottom: 40px;
    }

    .wt-footer-contact {
        grid-column: auto;
    }

    .wt-footer-links,
    .wt-footer-contact {
        padding-top: 0;
    }

    .wt-footer .wt-logo img {
        height: 58px;
    }
}

.wt-section-more {
    flex-wrap: wrap;
    gap: 14px;
}

.wt-about-pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin: 6px 0 28px;
}

.wt-about-pillar {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
    padding: 20px;
    border: 1px solid rgba(29, 69, 92, .12);
    border-radius: 22px 7px 22px 7px;
    background: #fff;
    box-shadow: 0 14px 38px rgba(18, 50, 70, .06);
}

.wt-about-pillar > i {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border-radius: 14px 5px 14px 5px;
    color: #fff;
    background: var(--wt-red);
}

.wt-about-pillar h3 {
    margin-bottom: 8px;
    color: #17384c;
    font-size: 14px;
}

.wt-about-pillar p {
    margin-bottom: 0;
    color: #62737c;
    font-size: 12px;
    line-height: 1.55;
}

.wt-general-info-detail {
    text-align: left;
}

.wt-general-info-action {
    display: flex;
    justify-content: center;
    margin-top: 34px;
}

@media (max-width: 1180px) {
    .wt-nav a {
        color: #24495d;
        background: #edf4f7;
    }

    .wt-nav a:hover {
        color: #123246;
        background: #dfecef;
    }
}

@media (max-width: 640px) {
    .wt-about-pillars {
        grid-template-columns: 1fr;
    }

    .wt-about-pillar {
        padding: 18px;
    }

    .wt-general-info-item {
        justify-content: flex-start;
        text-align: left;
    }
}
