/* --- Home index: sama latar dengan Team Match / Klasemen (.ai-predict-body + override di bawah) --- */
.landing-body {
    min-height: 100vh;
    background-color: var(--bg-deep);
    background-image:
        radial-gradient(ellipse 120% 80% at 50% -20%, rgba(99, 102, 241, 0.25), transparent),
        radial-gradient(ellipse 80% 50% at 100% 50%, rgba(168, 85, 247, 0.12), transparent),
        radial-gradient(ellipse 60% 40% at 0% 80%, rgba(34, 211, 238, 0.08), transparent);
    background-attachment: fixed;
}

.landing-body.site-body--bg {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Hero 2-col: tailwind.landing.min.css omits md:grid-cols-2 / md:order-* from this template. */
.landing-hero-grid {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.landing-hero-col--form {
    order: 2;
}

.landing-hero-col--live {
    order: 1;
}

@media (min-width: 768px) {
    .landing-hero-grid {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
        gap: 2.5rem 2.5rem;
        align-items: start;
    }

    .landing-hero-col--form {
        order: 1;
    }

    .landing-hero-col--live {
        order: 2;
    }
}

@media (min-width: 1024px) {
    .landing-hero-grid {
        column-gap: 3.5rem;
    }
}

.hero-predict-head-accent {
    color: #7dd3fc;
    text-shadow: 0 0 18px rgba(125, 211, 252, 0.35);
}

.hero-feature-card {
    position: relative;
    border-radius: 1.15rem;
    padding: 1px;
    background: linear-gradient(
        145deg,
        rgba(139, 92, 246, 0.45),
        rgba(79, 70, 229, 0.25),
        rgba(124, 58, 237, 0.35)
    );
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.2),
        0 12px 48px -8px rgba(0, 0, 0, 0.55),
        0 0 40px -12px rgba(139, 92, 246, 0.35);
}

.hero-feature-card--glow-strong {
    box-shadow:
        0 0 0 1px rgba(167, 139, 250, 0.28),
        0 12px 48px -8px rgba(0, 0, 0, 0.55),
        0 0 52px -8px rgba(168, 85, 247, 0.42);
}

.hero-feature-card__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.35rem 1.35rem;
    border-radius: calc(1.15rem - 1px);
    background: linear-gradient(
        165deg,
        rgba(30, 27, 75, 0.92) 0%,
        rgba(15, 23, 42, 0.88) 55%,
        rgba(12, 10, 40, 0.94) 100%
    );
}

.hero-feature-card__copy {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-feature-kicker {
    margin: 0 0 0.35rem;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fbbf24;
}

.hero-feature-title {
    margin: 0;
    font-size: clamp(1.15rem, 2.8vw, 1.5rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #f8fafc;
}

.hero-feature-sub {
    margin: 0.4rem 0 0;
    font-size: 0.8rem;
    font-weight: 500;
    color: rgba(226, 232, 240, 0.82);
    line-height: 1.35;
}

.hero-feature-cta {
    margin-top: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.25rem;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    color: #fff;
    background: linear-gradient(180deg, #fbbf24 0%, #f97316 48%, #ea580c 100%);
    border: 1px solid rgba(251, 191, 36, 0.45);
    box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
    transition: filter 0.15s ease, transform 0.1s ease;
}

.hero-feature-cta:hover {
    filter: brightness(1.06);
}

.hero-feature-card__art {
    flex: 0 0 auto;
    width: 5.5rem;
    height: 5.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-feature-robot {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: rgba(88, 28, 135, 0.35);
    border: 1px solid rgba(196, 181, 253, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.hero-feature-robot-svg {
    width: 70%;
    height: 70%;
}

.hero-feature-custom-wrap {
    display: flex;
    flex-direction: row;
    gap: 0.35rem;
    width: 100%;
    max-width: 5.5rem;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 1rem;
    padding: 2px;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(100, 116, 139, 0.35);
}

.hero-feature-custom-img {
    flex: 0 0 auto;
    width: 5rem;
    height: 5rem;
    object-fit: cover;
    border-radius: 0.75rem;
}

@media (min-width: 768px) {
    .hero-feature-card__inner {
        padding: 1.5rem 1.5rem 1.6rem;
        gap: 1.25rem;
    }

    .hero-feature-card__art {
        width: 6.25rem;
        height: 6.25rem;
    }

    .hero-feature-custom-wrap {
        max-width: 6.25rem;
    }

    .hero-feature-custom-img {
        width: 5.75rem;
        height: 5.75rem;
    }
}

.landing-provider-pill--tech {
    text-transform: none;
    letter-spacing: 0.04em;
    font-weight: 700;
    font-size: 0.8rem;
    color: rgba(241, 245, 249, 0.95);
}

.landing-header-cta {
    background: linear-gradient(180deg, #0ea5e9 0%, #0284c7 45%, #0369a1 100%);
    border: 1px solid rgba(125, 211, 252, 0.45);
    color: #fff;
    box-shadow: 0 0 20px rgba(14, 165, 233, 0.35);
}

.landing-header-cta:hover {
    filter: brightness(1.06);
}

/* AI Live card — magenta / fuchsia neon frame */
.hero-live-shell {
    filter: drop-shadow(0 0 22px rgba(236, 72, 153, 0.35));
}

.hero-live-neon {
    --live-pad: 4px;
    --live-radius: 1.35rem;
    position: relative;
    padding: var(--live-pad);
    border-radius: var(--live-radius);
    background: linear-gradient(
        135deg,
        rgba(236, 72, 153, 0.95),
        rgba(168, 85, 247, 0.85),
        rgba(59, 130, 246, 0.75),
        rgba(236, 72, 153, 0.9)
    );
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.2),
        0 0 28px rgba(236, 72, 153, 0.45),
        0 0 56px rgba(168, 85, 247, 0.25),
        0 12px 40px rgba(0, 0, 0, 0.5);
}

.hero-live-neon:not(.hero-live-neon--on) {
    background: rgba(168, 85, 247, 0.35);
    box-shadow:
        0 0 0 1px rgba(236, 72, 153, 0.35),
        0 8px 32px rgba(0, 0, 0, 0.4);
}

.hero-live-inner picture img,
.hero-live-inner > img {
    object-fit: cover;
    object-position: 68% 32%;
}

.hero-generate-btn {
    background: linear-gradient(180deg, #38bdf8 0%, #0284c7 40%, #0369a1 100%);
    border: 1px solid rgba(125, 211, 252, 0.5);
    box-shadow:
        0 0 24px rgba(14, 165, 233, 0.35),
        0 4px 14px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hero-generate-btn:hover {
    filter: brightness(1.05);
}

.landing-providers {
    text-align: center;
}

.landing-providers__label {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 1rem;
}

.landing-providers__logos {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1rem;
}

.landing-provider-pill {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(226, 232, 240, 0.85);
    padding: 0.45rem 0.85rem;
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(100, 116, 139, 0.35);
}

.landing-telegram-btn {
    text-decoration: none;
    background: linear-gradient(90deg, #22d3ee 0%, #0ea5e9 45%, #2563eb 100%);
    border: 1px solid rgba(125, 211, 252, 0.45);
    box-shadow: 0 0 28px rgba(14, 165, 233, 0.35);
    letter-spacing: 0.04em;
}

.landing-telegram-btn:hover {
    filter: brightness(1.06);
}

.landing-telegram-btn--inverse {
    color: #0c1222;
    text-shadow: none;
    box-shadow:
        0 0 32px rgba(34, 211, 238, 0.45),
        0 4px 20px rgba(0, 0, 0, 0.35);
}

.landing-telegram-btn--inverse:hover {
    filter: brightness(1.04);
}

html {
    overflow-x: hidden;
    max-width: 100%;
}
    overflow-x: hidden;
    max-width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #374151;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4B5563;
}

.hide-scrollbar::-webkit-scrollbar {
    display: none;
}

.hide-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.scroll-smooth {
    scroll-behavior: smooth;
}

.hero-primary-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    line-height: 1.25;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35);
    background-color: #0369a1;
    background-image: linear-gradient(
        to top,
        #075985 0%,
        #0369a1 22%,
        #0284c7 48%,
        #0ea5e9 78%,
        #38bdf8 100%
    );
    border: 1px solid rgba(125, 211, 252, 0.45);
    box-shadow:
        0 0 22px rgba(14, 165, 233, 0.5),
        0 4px 14px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-primary-cta:hover {
    background-image: linear-gradient(
        to top,
        #0c4a6e 0%,
        #0284c7 35%,
        #0ea5e9 65%,
        #7dd3fc 100%
    );
    border-color: rgba(186, 230, 253, 0.65);
    box-shadow:
        0 0 28px rgba(56, 189, 248, 0.55),
        0 4px 16px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.hero-primary-cta:active {
    transform: scale(0.98);
}

@media (max-width: 767px) {
    .hero-primary-cta {
        min-height: 2.75rem;
        padding: 0.7rem 0.875rem;
        font-size: 0.875rem;
        line-height: 1.35;
        letter-spacing: 0.04em;
        white-space: normal;
        word-break: break-word;
        text-wrap: balance;
    }
}

@media (min-width: 768px) {
    .hero-primary-cta {
        font-size: 1.25rem;
        padding-top: 0.95rem;
        padding-bottom: 0.95rem;
    }
}

.hero-form-panel {
    width: 100%;
    max-width: 36rem;
    padding: 1rem 1rem 0.75rem;
    border-radius: 1rem;
    background: rgba(26, 34, 53, 0.9);
    border: 1px solid rgba(56, 189, 248, 0.32);
    box-shadow:
        0 0 0 1px rgba(15, 23, 42, 0.35) inset,
        0 12px 40px -16px rgba(0, 0, 0, 0.55);
}

@media (min-width: 768px) {
    .hero-form-panel {
        padding: 1.2rem 1.25rem 0.85rem;
    }
}

.hero-form-panel.hero-form-panel--neon {
    position: relative;
    border: 1px solid transparent;
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.94), rgba(15, 23, 42, 0.9)) padding-box,
        linear-gradient(
            135deg,
            rgba(56, 189, 248, 0.85),
            rgba(217, 70, 239, 0.75),
            rgba(59, 130, 246, 0.8)
        )
            border-box;
    background-origin: border-box;
    background-clip: padding-box, border-box;
    box-shadow:
        0 0 28px rgba(56, 189, 248, 0.18),
        0 0 40px rgba(217, 70, 239, 0.12),
        0 12px 40px -12px rgba(0, 0, 0, 0.55),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* Hero predict — field gelap + border biru (landing.html) */
.landing-predict-fields {
    display: flex;
    flex-direction: column;
    gap: 1.05rem;
}

.landing-field-group {
    display: block;
}

.landing-field-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.landing-field-select {
    appearance: none;
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0.7rem;
    border: 1.5px solid rgba(59, 130, 246, 0.65);
    background-color: rgba(11, 15, 28, 0.92);
    color: rgba(248, 250, 252, 0.95);
    padding: 0.72rem 2.5rem 0.72rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    color-scheme: dark;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 24 24' stroke='%2394a3b8' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    outline: none;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.25);
}

.landing-field-select:focus {
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow:
        0 0 0 3px rgba(59, 130, 246, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-field-select option {
    background: #0f172a;
    color: #f1f5f9;
}

.landing-field-input {
    width: 100%;
    border-radius: 0.7rem;
    border: 1.5px solid rgba(59, 130, 246, 0.65);
    background-color: rgba(11, 15, 28, 0.92);
    color: rgba(248, 250, 252, 0.95);
    padding: 0.72rem 0.95rem;
    font-size: 0.875rem;
    font-weight: 500;
    outline: none;
    color-scheme: dark;
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.25);
}

.landing-field-input:focus {
    border-color: rgba(96, 165, 250, 0.95);
    box-shadow:
        0 0 0 3px rgba(59, 130, 246, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.landing-field-input::placeholder {
    color: rgba(148, 163, 184, 0.85);
}

.landing-teams-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
}

@media (max-width: 380px) {
    .landing-teams-grid {
        grid-template-columns: 1fr;
    }
}

.hero-input-with-prefix {
    display: flex;
    align-items: stretch;
    border-radius: 0.375rem;
    border: 1px solid rgba(55, 65, 81, 0.95);
    background-color: #0b0f19;
    overflow: hidden;
}

.hero-input-with-prefix:focus-within {
    border-color: rgba(14, 165, 233, 0.65);
    box-shadow: 0 0 0 1px rgba(14, 165, 233, 0.2);
}

.hero-input-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 0.7rem;
    color: #d1d5db;
    border-right: 1px solid rgba(75, 85, 99, 0.85);
    background: rgba(0, 0, 0, 0.22);
}

.hero-input-prefix-svg {
    width: 1.125rem;
    height: 1.125rem;
}

.hero-input-affixed {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #f9fafb;
    outline: none;
}

.hero-input-affixed::placeholder {
    color: #6b7280;
}

.hero-form-panel .hero-stats-bar {
    margin-top: 0.85rem;
    margin-bottom: 0;
    padding-top: 0.7rem;
    border-top: 1px solid rgba(75, 85, 99, 0.45);
}

.hero-form-panel .hero-stats-list {
    background: transparent;
    padding: 0.2rem 0;
}

.hero-stats-bar {
    margin-top: 0.125rem;
}

.hero-stats-list {
    list-style: none;
    margin: 0;
    padding: 0.3rem 0.4rem;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0.35rem 0.5rem;
    background: rgba(26, 34, 53, 0.92);
    border: none;
    border-radius: 0;
}

.hero-stats-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.4rem;
    flex: 0 0 auto;
    max-width: 100%;
    padding: 0.2rem 0.25rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #f9fafb;
    line-height: 1.25;
    text-align: left;
}

.hero-stats-ic {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
}

.hero-stats-svg {
    width: 1.125rem;
    height: 1.125rem;
}

.hero-stats-item--live .hero-stats-ic {
    color: #22c55e;
}

.hero-stats-item--stack .hero-stats-ic {
    color: #22c55e;
}

.hero-stats-item--bolt .hero-stats-ic {
    color: #facc15;
}

.hero-stats-txt {
    word-break: break-word;
}

.hero-stats-cyan {
    color: #22d3ee;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-stats-list {
        flex-wrap: nowrap;
        gap: 0;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .hero-stats-item {
        flex: 0 0 auto;
        width: auto;
        padding-left: 0.35rem;
        padding-right: 0.35rem;
    }

    .hero-stats-item:not(:last-child) {
        border-right: 1px solid rgba(107, 114, 128, 0.55);
        margin-right: 0.35rem;
        padding-right: 0.5rem;
    }
}

/* Trust-only under hero on small screens; hidden md+ when trust renders beside the banner. */
@media (min-width: 768px) {
    .hero-trust-under-hero--hide-md-up {
        display: none !important;
    }
}

.trust-strip--in-hero {
    margin: 0.5rem 0 0;
}

.trust-strip {
    position: relative;
    overflow: visible;
    margin: 0.35rem 0 0.15rem;
    background: none;
    border: none;
    --trust-medal-width: 3.35rem;
    --trust-medal-max-height: 6.25rem;
}

.trust-strip--medal-xl {
    --trust-medal-width: 4rem;
    --trust-medal-max-height: 7.5rem;
}

.trust-strip__pattern {
    display: none;
}

.trust-strip__glow {
    display: none;
}

.trust-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem 1.25rem;
}

.trust-strip__laurel {
    display: flex;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    color: #c9a227;
}

.trust-strip-laurel-img {
    width: var(--trust-medal-width);
    height: auto;
    max-height: var(--trust-medal-max-height);
    display: block;
    object-fit: contain;
}

.trust-strip__main {
    flex: 0 1 auto;
    min-width: 0;
    max-width: 36rem;
    text-align: center;
}

.trust-strip__headline {
    margin: 0 0 0.85rem;
    font-size: clamp(0.7rem, 2.8vw, 1.125rem);
    font-weight: 700;
    line-height: 1.25;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.trust-strip__head-muted {
    color: #f8fafc;
}

.trust-strip__head-gold {
    color: #f5d547;
    text-shadow: 0 0 18px rgba(245, 213, 71, 0.35);
    margin: 0 0.2em;
}

.trust-strip__row2 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.65rem 0.85rem;
}

.trust-strip__avatars {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.trust-strip__avatar {
    position: relative;
    width: 2.75rem;
    height: 2.75rem;
    flex-shrink: 0;
    border-radius: 9999px;
    border: none;
    box-shadow: none;
    overflow: hidden;
    background: transparent;
}

.trust-strip__avatar--overlap {
    margin-left: 0;
}

.trust-strip__avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.trust-strip__avatar-fallback {
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #64748b, #334155);
}

.trust-strip__avatar-fallback--1 {
    background: linear-gradient(145deg, #b91c1c, #7f1d1d);
}

.trust-strip__avatar-fallback--2 {
    background: linear-gradient(145deg, #dc2626, #991b1b);
}

.trust-strip__avatar-fallback--3 {
    background: linear-gradient(145deg, #84cc16, #4d7c0f);
}

.trust-strip__avatar-fallback--4 {
    background: linear-gradient(145deg, #65a30d, #3f6212);
}

.trust-strip__pill {
    padding: 0.4rem 1rem 0.42rem;
    font-size: clamp(0.62rem, 2.2vw, 0.8125rem);
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #22d3ee;
    border: 1px solid rgba(34, 211, 238, 0.55);
    border-radius: 9999px;
    background: rgba(8, 20, 35, 0.75);
    box-shadow:
        0 0 14px rgba(34, 211, 238, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.06);
    white-space: nowrap;
}

@media (max-width: 639px) {
    .trust-strip {
        --trust-medal-width: 2.5rem;
        --trust-medal-max-height: 5rem;
    }

    .trust-strip__inner {
        gap: 0.5rem;
    }

    .trust-strip__headline {
        margin-bottom: 0.65rem;
        letter-spacing: 0.03em;
    }

    .trust-strip__avatar {
        width: 2.35rem;
        height: 2.35rem;
    }

    .trust-strip__pill {
        white-space: normal;
        text-align: center;
        line-height: 1.3;
        max-width: 100%;
    }
}

@media (max-width: 380px) {
    .trust-strip {
        margin-top: 0.2rem;
    }

    .trust-strip__row2 {
        flex-direction: column;
        gap: 0.55rem;
    }

    .trust-strip__avatars {
        padding: 0 0.25rem;
    }
}

.hero-banner-viewport {
    touch-action: manipulation;
}

.hero-banner-scroll {
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
}

.hero-banner-scroll.hero-banner-scroll--dragging {
    cursor: grabbing;
    scroll-behavior: auto;
}

.hero-banner-slide {
    scroll-snap-align: start;
}

.hero-banner-slide-img {
    display: block;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    object-position: center center;
}

@media (max-width: 767.98px) {
    .hero-banner-slide {
        position: relative;
    }

    .hero-banner-slide-img {
        position: absolute;
        inset: 0;
    }
}

.hero-banner-neon-frame {
    --neon-pad: 4px;
    --neon-radius: 1rem;
    position: relative;
    padding: var(--neon-pad);
    border-radius: var(--neon-radius);
    background: conic-gradient(
        from 0deg at 50% 50%,
        #2dd4bf 0deg,
        #38bdf8 52deg,
        #3b82f6 108deg,
        #6366f1 156deg,
        #7c3aed 202deg,
        #a855f7 248deg,
        #e879f9 292deg,
        #f43f5e 328deg,
        #2dd4bf 360deg
    );
    box-shadow:
        0 0 3px rgba(255, 255, 255, 0.5),
        0 0 14px rgba(34, 211, 238, 0.62),
        0 0 28px rgba(59, 130, 246, 0.45),
        0 0 48px rgba(139, 92, 246, 0.28),
        0 0 64px rgba(236, 72, 153, 0.12),
        0 6px 24px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.hero-banner-neon-frame .hero-banner-viewport {
    border-radius: calc(var(--neon-radius) - var(--neon-pad));
    background-color: #0b0f19;
    box-shadow: none;
}

.hero-banner-neon-frame .hero-banner-slide {
    background-color: #0b0f19;
}

.hero-banner-slide--placeholder {
    background-color: transparent;
    background-image: linear-gradient(to top right, #2a6496, #0ea5e9);
}

.hero-banner-viewport--plain {
    background-color: #0b0f19;
    border: 1px solid rgba(55, 65, 81, 0.95);
}

.hero-banner-viewport--plain .hero-banner-slide {
    background-color: #0b0f19;
}

@media (max-width: 767.98px) {
    .hero-banner-mobile-aside {
        margin-left: 0;
    }

    .hero-banner-viewport.hero-banner-match.hero-banner-viewport--inline-mobile {
        width: calc(4.5rem * 1.1);
        max-width: none;
        min-width: 0;
        aspect-ratio: 1;
        height: auto;
    }
}

@media (min-width: 768px) {
    .hero-banner-mobile-aside {
        display: none !important;
    }
}

.hero-banner-neon-frame--inline {
    --neon-pad: 3px;
    --neon-radius: 0.75rem;
}

.hero-banner-viewport.hero-banner-match {
    width: min(100%, 20rem);
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
}

@supports (width: 1cqmin) {
    @media (min-width: 768px) {
        .hero-banner-viewport.hero-banner-match {
            width: min(100%, 100cqmin, 22rem);
        }
    }
}

.hero-banner-viewport.hero-banner-viewport--stack-trust {
    display: flex;
    flex-direction: column;
    aspect-ratio: unset;
    height: auto;
}

.hero-banner-viewport.hero-banner-viewport--stack-trust .hero-banner-carousel-slot {
    width: 100%;
    aspect-ratio: 1;
    flex-shrink: 0;
    min-height: 0;
}

.hero-banner-viewport.hero-banner-viewport--stack-trust .hero-banner-scroll {
    height: 100%;
}

.hero-banner-trust-below {
    background-color: #0b0f19;
}

@media (prefers-reduced-motion: reduce) {
    .hero-banner-scroll {
        scroll-behavior: auto;
        scroll-snap-type: proximity;
    }
}
