#top.hero {
    background-image: linear-gradient(180deg, rgba(15, 28, 46, 0.31), rgba(15, 28, 46, 0.51)),
        url("../assets/matrix-ade/hero.webp");

    background-position: 80% 40%;
}
.register-form {
    margin: 0;
    background: var(--color-off-white);
    color: var(--color-navy);
}
#webinar-signup-root * {
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif !important;
    box-sizing: border-box;
}
#webinar-signup-root .webinar-wrapper {
    color: var(--color-navy) !important;
}
#webinar-signup-root .webinar-card input[type="email"] {
    background: #fff !important;
    color: var(--color-navy) !important;
}
#webinar-signup-root .webinar-submit {
    background: var(--color-gold) !important;
    color: var(--color-navy) !important;
}
.webinar-wrapper {
    max-width: 900px;
    font-family: Inter, -apple-system, BlinkMacSystemFont, sans-serif;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
/* .list-style li + li {
    margin-top: var(--space-2);
} */
.webinar-top {
    top: 0;
    background: transparent;
    padding: 12px 32px 12px 32px;
    z-index: 5;
}
.webinar-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--color-navy);
    margin-bottom: 10px;
}
.webinar-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: 10px;
}
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}
.schedule-card {
    padding: 22px 28px;
}
.schedule-header {
    text-align: center;
    font-weight: 500;
    margin-bottom: 6px;
}
.schedule-date {
    text-align: center;
    margin-bottom: 6px;
}
.schedule-live {
    font-weight: 600;
}
.schedule-datetime {
    font-weight: 700;
}
.schedule-tz {
    text-align: center;
    font-size: 12px;
    color: var(--color-anthracite);
    margin-bottom: 10px;
}
.schedule-details {
    margin: 0 0 12px;
    line-height: 1.4;
    text-align: center;
}
.schedule-status {
    text-align: center;
    font-weight: 600;
    margin-top: 6px;
}
.countdown-title {
    text-align: center;
    font-size: 12px;
    color: var(--color-anthracite);
    margin-top: 10px;
}
.countdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin: 8px auto 0;
    border: 1px solid rgba(194, 161, 77, 0.5);
    border-radius: 16px;
    overflow: hidden;
    background: var(--color-off-white);
    max-width: 320px;
}
.countdown-cell {
    padding: 8px 6px;
    text-align: center;
    border-right: 1px solid rgba(194, 161, 77, 0.35);
}
.countdown-cell:last-child {
    border-right: none;
}
.countdown-value {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--color-navy);
}
.countdown-label {
    display: block;
    font-size: 12px;
    color: var(--color-anthracite);
}
.webinar-card label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--color-navy);
}
.webinar-card input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 8px;
    border: 1px solid #ccc;
    margin-bottom: 8px;
    font-size: 15px;
    transition: .2s;
}
.webinar-card input:focus {
    border-color: #007aff;
    box-shadow: 0 0 0 3px rgba(0, 122, 255, 0.2);
    outline: none;
}
.webinar-card input:-webkit-autofill:focus {
    -webkit-text-fill-color: #111;
    -webkit-box-shadow: 0 0 0 1000px #fff inset;
    box-shadow: 0 0 0 1000px #fff inset;
    transition: background-color 9999s ease-in-out 0s;
}
.webinar-submit {
    width: 100%;
    background: var(--color-gold);
    color: var(--color-navy);
    padding: 15px;
    margin-top: 18px;
    font-size: 17px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: .2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.webinar-submit:hover {
    background: #b8933f;
}
.webinar-submit:disabled {
    background: #b8933f;
    cursor: not-allowed;
    opacity: 0.7;
}
.webinar-submit.loading {
    pointer-events: none;
}
.webinar-submit.loading::before {
    content: "";
    width: 20px;
    height: 20px;
    border: 2px solid white;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    flex-shrink: 0;
}
.cta-note {
    font-size: 12px;
    color: var(--color-navy);
    opacity: 0.7;
    margin-top: 10px;
    text-align: center;
}
.cta-note-secondary {
    font-size: 11px;
    color: var(--color-navy);
    opacity: 0.45;
    text-align: center;
    margin-top: 4px;
}
.marketing-note {
    font-size: 14px;
    color: var(--color-navy);
    margin: 0 0 14px;
}
.marketing-incentive {
    font-size: 14px;
    color: var(--color-navy);
    font-weight: 500;
    margin: 0 0 14px;
}
.webinar-checkbox {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 0 0 12px;
    color: var(--color-navy);
    font-size: 14px;
}
.webinar-checkbox input[type="checkbox"] {
    width: 16px !important;
    height: 16px !important;
    margin-top: 3px;
    flex-shrink: 0;
    appearance: auto !important;
}
.webinar-checkbox label {
    margin: 0;
    font-weight: 400;
}
.youtube-component_layout {
    display: grid;
    grid-template-columns: minmax(0, 50%) minmax(0, 1fr);
    gap: var(--space-6);
    align-items: start;
}
.youtube-component_media {
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--image-border-radius);
    overflow: hidden;
    background: var(--color-navy);
    box-shadow: 0 18px 40px rgba(15, 28, 46, 0.18);
    position: relative;
}
.youtube-component_media iframe {
    border: 0;
    width: 100%;
    height: 100%;
    display: block;
}
.youtube-component_play {
    position: absolute;
    inset: 0;
    border: 0;
    background: transparent;
    color: var(--color-off-white);
    font: inherit;
    display: grid;
    place-content: center;
    gap: var(--space-2);
    cursor: pointer;
}
.youtube-component_play-icon {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: rgba(15, 28, 46, 0.68);
    display: grid;
    place-items: center;
    font-size: 20px;
    line-height: 1;
}
.youtube-component_play-text {
    font-size: var(--fs-small);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.image-component p+h4 {
    margin-top: var(--space-5);
}
#section-6 .image-flex-component_media {
    aspect-ratio: 2 / 1;
    height: auto;
}
@media (max-width: 980px) {
    .hero {
        padding: 36px 0;
        min-height: 60vh;
    }

    #top.hero {
        background-position: 75% 50%;
        background-size: cover;
    }

    .hero-grid {
        min-height: calc(60vh - 72px);
    }

    .youtube-component_layout {
        grid-template-columns: 1fr;
    }

    .youtube-component_media {
        margin: 0 0 var(--space-4);
    }

}