.bp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: safe center;
    padding-top: 7.5rem;
    padding-bottom: 4rem;
    background-image: url('../../../images/event-types/c-vision/bg-hero-desktop.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    overflow: hidden;
}

.bp-hero-inner {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.75rem;
}

.bp-hero-logo {
    display: block;
    width: 100%;
    max-width: 460px;
    height: auto;
    margin: 0;
    transform-origin: center;
    animation: bp-hero-logo-in 1000ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes bp-hero-logo-in {
    0%   { opacity: 0; transform: scale(0.92) translateY(-12px); }
    60%  { opacity: 1; }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

/* Date + venue */
.bp-hero-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    margin: 0;
    font-weight: 400;
}
.bp-hero-meta div { margin: 0; display: contents; }
.bp-hero-meta dt {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
}
.bp-hero-meta dd {
    margin: 0;
    font-size: 1.125rem;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.6;
}

/* Countdown — transparent, white text only */
.bp-hero-countdown {
    display: inline-flex;
    align-items: flex-start;
    gap: 1.5rem;
    margin: 0.5rem 0;
}
.bp-hero-countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 96px;
    background: transparent;
    border: 0;
    padding: 0;
}
.bp-hero-countdown-num {
    font-size: 4.5rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    letter-spacing: 0.02em;
    transform-origin: center;
    transition: transform 250ms ease, opacity 250ms ease;
}
.bp-hero-countdown-num.is-tick {
    animation: bp-hero-tick 600ms ease;
}
@keyframes bp-hero-tick {
    0%   { transform: scale(1);    opacity: 1; }
    35%  { transform: scale(1.08); opacity: 0.85; }
    100% { transform: scale(1);    opacity: 1; }
}
.bp-hero-countdown-label {
    font-size: 1rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
    letter-spacing: 0.02em;
}
.bp-hero-countdown-sep {
    font-size: 4rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1;
    margin-top: 0.25rem;
    animation: bp-hero-blink 1s ease-in-out infinite;
}
@keyframes bp-hero-blink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.25; }
}
@media (prefers-reduced-motion: reduce) {
    .bp-hero-countdown-sep,
    .bp-hero-countdown-num.is-tick,
    .bp-hero-logo,
    .bp-hero-cta-group { animation: none; }
}

/* CTA — centered, button + note grouped tightly */
.bp-hero-cta-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    animation: bp-hero-cta-in 800ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
    animation-delay: 700ms;
}
@keyframes bp-hero-cta-in {
    0%   { opacity: 0; transform: translateY(20px) scale(0.96); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}
.bp-hero-cta {
    display: inline-block;
    background: rgba(0, 0, 0, 0.1);
    color: #ffffff !important;
    text-decoration: none;
    padding: 0.95rem 3.5rem;
    border-radius: 28px;
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 1.3;
    border: 0;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow:
        0 1px 6px 0 rgba(0, 0, 0, 0.08),
        inset 0 0 12px 0 rgba(242, 242, 242, 0.18),
        inset 0 0 1px 1px rgba(153, 153, 153, 0.25),
        inset -1px -1px 1px 0.5px rgba(255, 255, 255, 0.40),
        inset 1px 1px 1px 0.5px rgba(255, 255, 255, 0.40);
    transition: background 150ms ease, transform 150ms ease;
}
.bp-hero-cta:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-1px);
}
.bp-hero-cta-note {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-align: center;
}

/* Registration closed — logo only, scale up */
.bp-hero--closed .bp-hero-logo { max-width: 640px; }
@media (max-width: 767px) {
    .bp-hero--closed .bp-hero-logo { max-width: 92%; }
}

/* Mobile */
@media (max-width: 767px) {
    .bp-hero {
        background-image: url('../../../images/event-types/c-vision/bg-hero-mobile.jpg');
        min-height: 100vh;
        padding-top: 5rem;
        padding-bottom: 3rem;
    }
    .bp-hero-inner {
        padding: 0 1.25rem;
        gap: 1.25rem;
    }
    .bp-hero-logo { max-width: 88%; }
    .bp-hero-meta dd { font-size: 1rem; }

    .bp-hero-countdown { gap: 0.75rem; }
    .bp-hero-countdown-block { min-width: 64px; }
    .bp-hero-countdown-num { font-size: 3rem; }
    .bp-hero-countdown-label { font-size: 0.85rem; margin-top: 0.35rem; }
    .bp-hero-countdown-sep { font-size: 2.5rem; }

    .bp-hero-cta { padding: 0.6rem 2rem; font-size: 1.2rem; border-radius: 20px; }
    .bp-hero-cta-note { font-size: 0.85rem; }
}
