.hs-img {
    width: 100% !important;
    height: auto !important;
    /*aspect-ratio: 12 / 5 !important;*/
    object-fit: cover !important;
    display: block !important;
    border-radius: 12px !important;
}

.hs-slide {
    min-height: unset !important;
    grid-template-rows: auto auto !important;
    /*gap: clamp(10px, 1.8vw, 16px) !important;*/
}

/* --- 2) ALIGN BOTTOMS: slider text bottom == stats bottom --- */
.hero-grid {
    /*align-items: end !important;*/
    /* bottom-align the two columns */
}

.hero-left {
    display: flex !important;
    flex-direction: column !important;
}

.hero-left .stats {
    margin-top: auto !important;
    /* push stats to the very bottom of left column */
}

.hero-left .hero-cta {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* Make sure the slider's own padding doesn't add extra bottom space */
.hero-slider {
    padding-bottom: 0 !important;
    /* so hs-body’s last line is the true bottom */
}

:root {
    color-scheme: light dark;
    --bg: #f6f7fb;
    --surface: #ffffff;
    --surface-2: #f8fafc;
    --text: #0f172a;
    --muted: #475569;
    --muted-2: #64748b;
    --line: #e5e7eb;
    --line-2: #cbd5e1;
    --primary: #2563eb;
    --primary-500: #3b82f6;
    --primary-700: #1d4ed8;
    --accent: #10b981;
    --violet: #7c3aed;
    --cyan: #06b6d4;
    --glass-bg: rgba(255, 255, 255, .82);
    --glass-brd: rgba(15, 23, 42, .06);
    --glass-hl: rgba(255, 255, 255, .7);
    --shadow-sm: 0 6px 18px rgba(2, 6, 23, .06);
    --shadow-md: 0 12px 30px rgba(2, 6, 23, .10);
    --s-2: 8px;
    --s-3: 12px;
    --s-4: 16px;
    --s-5: 20px;
    --s-6: 24px;
    --s-8: 32px;
    --s-10: 40px;
    --s-12: 48px;
    --s-16: 64px;
}


* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    color: var(--text);
    background: radial-gradient(1200px 800px at 10% -10%, var(--surface) 0, var(--surface) 45%, var(--surface-2) 100%);
    font: 16px/1.65 Inter, system-ui, -apple-system, Segoe UI, Roboto, 'Helvetica Neue', Arial
}

.container {
    max-width: 1396px;
    margin: 0 auto;
    padding: 0 20px
}

.acc-a p {
    padding-left: 15px
}

.measure {
    max-width: 68ch
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden
}

.skip-link:focus {
    left: 12px;
    top: 12px;
    width: auto;
    height: auto;
    padding: 8px 10px;
    background: var(--primary);
    color: #fff;
    border-radius: 8px
}

/* Glass */
.glass {
    background: var(--glass-bg);
    border: 1px solid var(--glass-brd);
    box-shadow: 0 1px 0 var(--glass-hl) inset, var(--shadow-sm);
    backdrop-filter: blur(10px) saturate(120%);
    -webkit-backdrop-filter: blur(10px) saturate(120%);
    border-radius: 16px
}

.depth {
    transform-style: preserve-3d
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    border-bottom: 1px solid var(--line);
    background: color-mix(in oklab, var(--surface) 92%, transparent)
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-6);
    padding: 10px 0
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: var(--s-3);
    color: inherit;
    text-decoration: none
}

.nav {
    display: flex;
    gap: var(--s-6);
    align-items: center
}

.nav a {
    text-decoration: none;
    color: var(--muted-2);
    font-weight: 700
}

.nav a:hover, .nav a.is-active {
    color: var(--text)
}

.header-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    background: transparent;
    padding: 0 var(--s-6);
    border-radius: 12px;
    border: 1px solid var(--line);
    font-weight: 600;
    text-decoration: none;
    color: var(--text);
    transition: transform .15s ease, box-shadow .15s ease, background .15s
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm)
}

.btn--primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-500));
    color: #fff;
    border-color: transparent
}

.btn--primary:hover {
    box-shadow: 0 8px 18px color-mix(in srgb, var(--primary) 25%, transparent);
    color: #ffffff;
}

.btn--primary:focus {
    color: #ffffff;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    margin-bottom: 10px
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px;
    color: #000;
    font-size: 18px;
    background: #ffffff;
    border: none;
    cursor: pointer;
    outline: none;
    transition: background .3s ease
}

/* Caret (SVG) animatsiyasi */
.acc-caret {
    flex: 0 0 auto;
    transform: rotate(-90deg); /* yopiq holatda o‘ngga qarab turadi */
    transition: transform .25s ease;
}

.faq-item.active .acc-caret {
    transform: rotate(0deg); /* ochilganda pastga qaraydi */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .25s ease;
    padding: 0 15px;
    background: #f9f9f9;
}

.faq-answer p {
    margin: 10px 0
}

.faq-item.active .faq-answer {
    max-height: 260px;
    padding: 15px
}

.btn--ghost {
    background: var(--surface);
    color: var(--primary);
    border-color: color-mix(in srgb, var(--primary) 35%, transparent)
}

.btn--lg {
    height: 46px;
    padding: 0 var(--s-8);
    border-radius: 14px
}

.burger {
    display: none;
    flex-direction: column;
    gap: 4px;
    border: 0;
    background: transparent
}

.header-panel.open {
    top: 40px;
}

.header-panel .btn {
    padding: 0 18px;
}

.lang-dd {
    margin-left: 0;
}

.burger span {
    width: 50px;
    height: 4px;
    margin-bottom: 3px;
    background: var(--text);
}

.lang-dd {
    position: relative;
    margin-left: 20px;
}

.lottie-icon svg {
    width: 70px !important;
    height: auto !important;
}

.lang-dd__toggle {
    display: inline-flex;
    align-items: center;
    background: transparent;
    gap: 6px;
    height: 40px;
    padding: 0;
    border: 0;
}

.lang-dd__toggle.btn:hover {
    transform: none;
    box-shadow: none;
}
button:focus{
    outline: none!important;
}
.lang-flag {
    width: 16px;
    height: 16px;
    display: inline-block;
    border-radius: 3px
}

.lang-dd__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 190px;
    border-radius: 12px;
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 6px;
    display: none;
    z-index: 1000
}

.lang-dd.is-open .lang-dd__menu {
    display: block;
    animation: ddIn .12s ease both
}

.lang-dd__item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 10px;
    border-radius: 10px;
    color: var(--text);
    text-decoration: none !important
}

.lang-dd__item:hover {
    background: color-mix(in srgb, var(--primary) 7%, transparent)
}

.lang-dd__item.is-active {
    background: color-mix(in srgb, var(--primary) 12%, transparent);
    color: var(--primary);
    pointer-events: none
}

.lang-dd__chev {
    transition: transform .15s ease
}

.lang-dd.is-open .lang-dd__chev {
    transform: rotate(180deg)
}

@keyframes ddIn {
    from {
        opacity: 0;
        transform: translateY(-4px)
    }
    to {
        opacity: 1;
        transform: none
    }
}

/* Progress & spotlight */
.scroll-progress {
    position: fixed;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-500), var(--violet));
    z-index: 80;
    transform-origin: left center
}

/*.spotlight {*/
/*    position: fixed;*/
/*    inset: 0;*/
/*    pointer-events: none;*/
/*    z-index: 0;*/
/*    background: radial-gradient(500px 500px at var(--mx, 50%) var(--my, 50%), color-mix(in srgb, var(--primary) 12%, transparent), transparent 70%);*/
/*    mix-blend-mode: multiply*/
/*}*/

/* Sections */
.section {
    /*padding: clamp(64px, 9vw, 140px) 0;*/
    padding: 40px 0;
    /*position: relative;*/
    overflow: hidden;
    /*z-index: 1*/
}
#catCloseModal{
    position: absolute;
    top: 12px;
    right: 20px;
}
.section--alt {
    background: linear-gradient(180deg, color-mix(in srgb, #000 3%, transparent), transparent)
}

.section-head {
    display: grid;
    gap: var(--s-3);
    margin-bottom: 28px;
}

#info .bottom p {
    max-width: 840px;
    font-size: 21px;
    line-height: 26px;
}

#info .bottom {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.eyebrow {
    font-weight: 900;
    letter-spacing: .08em;
    color: #2f72ff;
    text-transform: uppercase;
    font-size: 20px;
    margin: 0
}

.h1 {
    font-size: clamp(32px, 4.6vw, 40px);
    line-height: 1.15;
    margin: 0;
    color: white;
}

.h2 {
    font-size: clamp(24px, 3.2vw, 40px);
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
    text-align: center;
}

.section-lead {
    color: var(--muted);
    margin: 0
}


.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(0 20 60 / 79%);
    z-index: -1;
}


.hero-grid {
    display: grid;
    grid-template-columns:1.2fr .8fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center
}

.lead {
    font-size: clamp(19px, 1.5vw, 19px);
    color: white;
    margin-top: 15px
}

.stats {
    display: flex;
    gap: var(--s-8);
    list-style: none;
    padding: 0;
    margin: var(--s-8) 0 0
}

.stats-num {
    font-weight: 900;
    font-size: 28px;
    color: white;
}

.stats-label {
    display: block;
    color: #c3c3c3;
    font-size: 14px
}

/* Slider */
.hero-slider {
    position: relative;
    overflow: hidden;
    background: #ffffff2e;
    border-radius: 16px;
}

.hero-slider.desktop {
    display: block;
}

.hero-slider.mobile {
    display: none;
}

.hs-track {
    display: flex;
    gap: 0;
    will-change: transform;
    transition: transform .45s cubic-bezier(.2, .7, .2, 1)
}

.hs-slide {
    flex: 0 0 100%;
    /*display: grid;*/
    grid-template-rows:auto 1fr;
    /*gap: var(--s-4);*/
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.hs-body {
    display: grid;
    align-content: start;
    /*padding-bottom: 15px;*/
}

@media (max-width: 450px) {
    .lead {
        font-size: 22px;
    }

    .hero-slider.desktop {
        display: none;
    }

    .hero-slider.mobile {
        display: block;
    }
}

.hs-title {
    margin: 6px 0 0;
    font-size: 20px;
    font-weight: 500;
    color: white;
    line-height: 1.3
}

.hs-text {
    margin: 0;
    color: white
}

.hs-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    border: 1px solid var(--line);
    background: var(--surface);
    display: grid;
    color: black;
    place-items: center;
    cursor: pointer
}

.hs-prev {
    left: 8px
}

.hs-next {
    right: 8px
}

.hs-arrow:hover {
    box-shadow: var(--shadow-sm)
}

.hs-dots {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10px;
    display: flex;
    justify-content: center;
    gap: 8px
}

.hs-dots button {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    border: 0;
    background: color-mix(in srgb, var(--muted) 40%, transparent);
    opacity: .7
}

.hs-dots button[aria-selected="true"] {
    opacity: 1;
    width: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--primary-500))
}

/* About & feature cards */
.about-grid {
    display: grid;
    grid-template-columns:.9fr 1.1fr;
    gap: var(--s-10);
    align-items: start
}

.about-sticky {
    position: sticky;
    top: 86px;
    padding: 20px
}

.about-title {
    margin: 0 0 8px
}

.about-points {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 10px
}

.feature-grid {
    display: grid;
    grid-template-columns:1fr;
    gap: var(--s-8)
}

.fcard {
    padding: var(--s-8);
    gap: var(--s-3);
    position: relative;
    overflow: hidden
}

.sheen:before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 60%;
    height: 100%;
    transform: skewX(-22deg);
    background: linear-gradient(90deg, transparent, color-mix(in srgb, #fff 8%, transparent), transparent);
    transition: left .6s ease
}

.sheen:hover:before {
    left: 120%
}

/* Categories */
.cat-grid {
    display: grid;
    grid-template-columns:repeat(4, 1fr);
    /*gap: var(--s-10)*/
    gap: 20px;
}

.cat-card {
    display: flex;
    cursor:pointer;
    position: relative;
    overflow: hidden
}

.cat-body {
    /*padding: var(--s-8);*/
    padding: 15px;
    gap: var(--s-3);
    display: flex;
    width: 100%;
    align-items: center;
}

.cat-body .cat-title {
    margin: 0;
    line-height: normal;
    font-weight: 500;
    font-size: 20px;

}

/* Timeline */
.steps-wrap .step-title {
    margin: 0;
}

.steps-wrap {
    position: relative;
    display: flex;
}

.steps-wrap .step_left {

}

.steps-wrap .step_right {

}

.steps-wrap .step_right .steps_img {
    width: 500px;
    height: 350px;
}

.steps-wrap .step_right .steps_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

/* Timeline
      */
.timeline {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    padding: 0 62px 0 0;
    margin: 0;
    list-style: none;
}

.timeline::before {
    position: absolute;
    top: 0;
    height: 100%;
    padding-right: 11px;
    border-right: 2px solid #F2F2F2;
    content: "";
}

.timeline__item {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: stretch;
    align-items: stretch;
    padding: 18px 0;
}

.timeline__step {
    padding-right: 32px;
    display: flex;
    align-items: center;
}

.timeline__step__marker {
    position: relative;
    display: table-cell;
    height: 24px;
    min-height: 24px;
    width: 24px;
    min-width: 24px;
    border: 4px solid #F2F2F2;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    background-color: white;
    z-index: 0;
}

.timeline__step__marker--red {
    border-color: #FF3467;
}

.timeline__step__marker--blue {
    border-color: #18D0BF;
}

.timeline__step__marker--salmon {
    border-color: #F48A6D;
}

.timeline__step__marker--purple {
    border-color: #C178FA;
}

.timeline__time {
    font-size: 22px;
    min-width: 155px;
    display: flex;
    align-items: center;
}

.hero-left .stats li {
    color: #ffffff;
}

.timeline .line {
    padding: 0 40px;
    font-size: 30px;
    line-height: normal;
    display: flex;
    align-items: center;
}

#closeModal {
    position: absolute;
    top: 20px;
    right: 20px;
    height: auto;
    padding: 8px 12px;
    border-radius: 10px;
    cursor: pointer;
}

.timeline__title {
    /*padding-bottom: 15px;*/
    font-size: 23px;
}

.timeline__title p {
    margin: 0;
}

.timeline__points {
    padding: 0;
    list-style: none;
    font-size: 24px;
    color: #77777D;
}

.timeline__points > * {
    padding: 0 0 12px 0;
}

.steps {
    position: relative;
    display: grid;
    gap: var(--s-8);
    /*max-width: 900px;*/
    /*margin: 0 auto*/
}

.steps-rail {
    position: absolute;
    left: 28px;
    top: 10px;
    bottom: 10px;
    width: 4px;
    background: var(--line);
    border-radius: 999px;
    overflow: hidden
}

.steps-fill {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(180deg, var(--primary-500), var(--violet))
}

.step {
    display: grid;
    grid-template-columns:56px 1fr;
    gap: var(--s-6)
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--primary), var(--primary-500));
    color: #fff;
    font-weight: 900;
    box-shadow: var(--shadow-sm)
}

.step-body {
    padding: var(--s-6)
}

/* People */
.people-grid {
    display: grid;
    grid-template-columns:repeat(2, 1fr);
    gap: var(--s-8);
    margin: auto 320px;
}

.person {
    padding: 18px;
    text-align: center;
    display: grid;
    gap: var(--s-3);
    position: relative;
    overflow: hidden
}

.person .person-role {
    line-height: normal;
    font-size: 18px;
    padding: 0 20px;
}

.person .person-name {
    font-size: 24px;
    font-weight: 600;
    line-height: normal;
    margin: 5px 0 0;
}

.ring {
    position: absolute;
    inset: -2px;
    border-radius: 18px;
    border: 2px solid transparent;
    background: linear-gradient(120deg, color-mix(in srgb, var(--primary) 50%, transparent), color-mix(in srgb, var(--violet) 50%, transparent)) border-box;
    -webkit-mask: linear-gradient(#000 0 0) padding-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: .0;
    transition: opacity .25s
}

.person:hover .ring {
    opacity: .6
}

.avatar {
    width: 300px;
    height: 250px;
    border-radius: 12px;
    margin: 0 auto;
    background: var(--surface-2);
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line)
}

.avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

/* Partners */
.partners-viewport {
    position: relative;
    overflow: hidden;
    padding: var(--s-6) 0
}

.partners-track {
    --gap: 22px;
    --speed: 42s;
    display: flex;
    align-items: center;
    gap: var(--gap);
    list-style: none;
    margin: 0;
    padding: 0;
    width: max-content;
    animation: partners-scroll var(--speed) linear infinite
}

.partners-viewport:hover .partners-track {
    animation-duration: calc(var(--speed) * 1.4)
}

.partner-card {
    flex: 0 0 auto;
    width: 220px;
    height: 92px;
    display: grid;
    place-items: center
}

.partner-link {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    padding: 10px
}

.partner-logo {
    width: 170px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(0%) contrast(105%);
    transition: transform .2s ease
}

.partner-card:hover .partner-logo {
    transform: scale(1.05)
}

.partners-fade {
    pointer-events: none;
    position: absolute;
    top: 0;
    bottom: 0;
    width: 90px;
    z-index: 2
}

.partners-fade--left {
    left: 0;
    background: linear-gradient(to right, var(--surface), rgba(255, 255, 255, 0))
}

.partners-fade--right {
    right: 0;
    background: linear-gradient(to left, var(--surface), rgba(255, 255, 255, 0))
}

@keyframes partners-scroll {
    0% {
        transform: translateX(0)
    }
    100% {
        transform: translateX(-50%)
    }
}

/* Accordion */
.acc {
    padding: 0;
    margin: 0 0 var(--s-6);
    transition: all .2s ease
}

.acc[open] {
    box-shadow: var(--shadow-md)
}

.acc-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--s-4);
    padding: 14px 16px;
    list-style: none;
    cursor: pointer;
    font-weight: 800
}

.acc-q:hover {
    background: color-mix(in srgb, #000 4%, transparent)
}

.acc-caret {
    transition: transform .2s ease
}

.acc[open] .acc-caret {
    transform: rotate(180deg)
}

.acc-a {
    color: var(--muted);
    max-height: 0;
    overflow: hidden;
    transition: max-height .2s ease, padding .2s ease
}

/* Footer */
.site-footer {
    background: var(--surface);
    color: var(--text);
    margin-top: 25px;
    padding-top: var(--s-12);
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--line)
}

.footer-grid {
    display: grid;
    grid-template-columns:2fr 1fr 1fr;
    gap: var(--s-8);
    padding: 8px 0 var(--s-8)
}

.foot-title {
    margin: 0 0 var(--s-4)
}


.foot-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: var(--s-3)
}

.foot-bottom {
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--s-6) 0 var(--s-8)
}

/* Auroras */
.aurora {
    position: absolute;
    inset: -20% -10%;
    filter: blur(40px);
    pointer-events: none;
    opacity: .55
}

.aurora--hero {
    background: radial-gradient(600px 300px at 20% 20%, color-mix(in srgb, var(--primary) 15%, transparent), transparent 60%), radial-gradient(700px 380px at 90% 50%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 60%)
}

.aurora--about {
    background: radial-gradient(500px 260px at 80% 0, color-mix(in srgb, var(--accent) 18%, transparent), transparent 60%), radial-gradient(700px 360px at 0 100%, color-mix(in srgb, var(--primary) 14%, transparent), transparent 60%)
}

.aurora--cats {
    background: radial-gradient(600px 320px at 20% 80%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 60%), radial-gradient(600px 300px at 100% 20%, color-mix(in srgb, var(--cyan) 12%, transparent), transparent 60%)
}

.aurora--timeline {
    background: radial-gradient(700px 360px at 10% 30%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%), radial-gradient(600px 380px at 90% 100%, color-mix(in srgb, var(--accent) 12%, transparent), transparent 60%)
}

.aurora--jury {
    background: radial-gradient(600px 360px at 15% 80%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 60%), radial-gradient(600px 260px at 95% 10%, color-mix(in srgb, var(--cyan) 12%, transparent), transparent 60%)
}

.aurora--partners {
    background: radial-gradient(700px 320px at 10% 50%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%), radial-gradient(700px 360px at 90% 50%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 60%)
}

.aurora--faq {
    background: radial-gradient(600px 320px at 30% 70%, color-mix(in srgb, var(--violet) 12%, transparent), transparent 60%), radial-gradient(600px 320px at 80% 20%, color-mix(in srgb, var(--primary) 12%, transparent), transparent 60%)
}

.aurora--footer {
    background: radial-gradient(700px 360px at 10% 70%, color-mix(in srgb, var(--primary) 10%, transparent), transparent 60%), radial-gradient(700px 360px at 90% 30%, color-mix(in srgb, var(--violet) 10%, transparent), transparent 60%)
}

/* RESPONSIVE */

/* --- HERO SCALE CONTROLS --- */
:root {
    /*--hero-cols: 1fr 1.6fr;*/
    --hero-cols: 1fr 1.2fr;
    /*--hero-img-h: clamp(380px, 55vh, 500px);*/
    --hero-img-h: clamp(250px, 55vh, 400px);
    --hero-maxw: 1440px;
    --hero-gap: clamp(28px, 7.2vw, 100px);
    --hero-pad-y: clamp(110px, 12vw, 180px);
}

/*.hero .hs-img {*/
/*    height: var(--hero-img-h) !important;*/
/*}*/

/*.hero .container {*/
/*    max-width: var(--hero-maxw);*/
/*}*/

.hero {
    min-height: 100svh;
}

.hero {
    position: relative;
    min-height: calc(100vh - 80px);
    background-size: cover;
    padding: clamp(92px, 11vw, 100px) 0;
    z-index: 0;
}

.measure {
    max-width: 78ch;
}

/* bigger slide viewport */
.hero-slider {
    padding: clamp(16px, 2.2vw, 15px);
}

/* TALLER image: fills much more of the card */
.hs-img {
    height: var(--hero-img-h);
    border-radius: 16px;
    object-fit: cover;
}

/* roomier slide text */
.hs-body {
    /*gap: clamp(10px, 1.4vw, 16px);*/
    padding: 15px 0;
}

.hs-title {
    font-size: clamp(22px, 2.4vw, 25px);
    line-height: 1.25;
    margin: 0;
}

.hs-text {
    font-size: clamp(15px, 1.5vw, 17px);
    line-height: 1.65;
    color: white;
}

/*.hero-slider {*/
/*    overflow: clip;*/
/*}*/

.hs-slide {
    visibility: hidden;
    opacity: 0;
    transition: opacity .25s ease;
    overflow: hidden;
}

.hs-slide.is-active {
    visibility: visible;
    opacity: 1;
}

.hs-track {
    gap: 0;
}

.hs-arrow {
    width: 46px;
    height: 46px;
    border-radius: 12px;
}

.hs-dots {
    bottom: 14px;
}

.hs-dots button {
    width: 9px;
    height: 9px;
}

.hs-dots button[aria-selected="true"] {
    width: 26px;
}

.stats {
    gap: clamp(20px, 4vw, 40px);
}

.stats-num {
    font-size: clamp(28px, 3.2vw, 36px);
}

.stats-label {
    font-size: clamp(13px, 1.5vw, 15px);
}

.hero-grid {
    grid-template-columns: var(--hero-cols);
    gap: var(--hero-gap);
    align-items: center;
}

.hero-left {
    display: grid;
    gap: clamp(14px, 2.6vw, 26px);
}

/*@media (prefers-reduced-motion: reduce) {*/
/*    .partners-track {*/
/*        animation: none*/
/*    }*/

/*    .sheen:before, .spotlight {*/
/*        animation: none*/
/*    }*/

/*    .reveal, .reveal-head {*/
/*        transition: none*/
/*    }*/
/*}*/

a {
    text-decoration: none !important;
}