body.billboard-page .nav-call-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    border-radius: 999px;
    border: 1px solid #0fee80;
    background: transparent;
    color: #111;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Clash Display", sans-serif;
    white-space: nowrap;
    transition:
        background 0.2s,
        color 0.2s,
        border-color 0.2s,
        transform 0.2s;
}

body.billboard-page .nav-call-btn:hover {
    transform: scale(1.03);
}

body.billboard-page .hero-content {
    max-width: 510px;
    gap: 26px;
}

@media (min-width: 961px) {
    body.billboard-page .hero-content {
        gap: 34px;
    }
}

body.billboard-page .billboard-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px 8px 14px;
    border-radius: 10px;
    background: rgba(15, 238, 128, 0.6);
}

body.billboard-page .badge-vu {
    font-size: 24px;
    font-weight: 500;
    color: black;
    padding-top: 5px;
}

body.billboard-page .badge-separator {
    width: 1px;
    height: 14px;
    background: rgba(0, 0, 0, 0.15);
}

body.billboard-page .badge-billboard {
    font-size: 22px;
    line-height: 1;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: black;
}

body.billboard-page .badge-billboard-logo {
    display: block;
    width: auto;
    height: 25px;
    flex: 0 0 auto;
}

body.billboard-page .hero-title {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: auto;
    max-width: 100%;
    font-size: clamp(20px, 2.2vw, 32px);
    line-height: 1.22;
    letter-spacing: 0px;
    font-weight: 500;
}

body.billboard-page .hero-title span,
body.billboard-page .hero-title .hero-title-line {
    display: block;
    white-space: nowrap;
}

body.billboard-page .hero-subtitle {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.65;
    font-weight: 300;
    color: #555;
}

body.billboard-page .hero-subtitle-mobile-next-line {
    display: inline-block;
}

body.billboard-page .hero-subtitle-mobile-break {
    display: none;
}

body.billboard-page .hero-cta-row {
    gap: 12px;
}

@property --billboard-beam-angle {
    syntax: "<angle>";
    initial-value: 0deg;
    inherits: false;
}

@keyframes billboard-beam-orbit {
    0% {
        --billboard-beam-angle: 0deg;
    }
    to {
        --billboard-beam-angle: 360deg;
    }
}

body.billboard-page .cta-primary,
body.billboard-page .cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 49px;
    padding: 13px 28px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: "Clash Display", sans-serif;
    white-space: nowrap;
    transition:
        transform 0.2s,
        box-shadow 0.2s,
        background 0.2s,
        border-color 0.2s;
}

body.billboard-page .cta-primary {
    padding: 14px 30px;
    background: #0fee80;
    color: #fff;
    box-shadow: 0 4px 24px rgba(15, 238, 128, 0.35);
}

body.billboard-page .cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(15, 238, 128, 0.5);
}

body.billboard-page .cta-secondary {
    background: #0fee80;
    color: #fff;
    box-shadow: none;
}

body.billboard-page .cta-secondary:hover {
    transform: none;
    box-shadow: none;
}

body.billboard-page .hero-cta-beam {
    position: relative;
    display: inline-flex;
    max-width: 100%;
    border-radius: 999px;
    padding: 1.5px;
    isolation: isolate;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition:
        transform 0.2s;
}

body.billboard-page .hero-cta-beam::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    padding: 1.5px;
    transform: translateZ(0);
    background: conic-gradient(
        from var(--billboard-beam-angle),
        rgba(255, 255, 255, 0.03) 0deg,
        rgba(255, 255, 255, 0.03) 180deg,
        rgba(64, 128, 216, 0) 185deg,
        rgba(64, 128, 216, 0.3) 210deg,
        rgba(64, 128, 216, 0.65) 240deg,
        #5a9ef0 265deg,
        #0fee80 290deg,
        #b8ffdf 308deg,
        #ffffff 320deg,
        rgba(255, 255, 255, 0.5) 330deg,
        rgba(255, 255, 255, 0.15) 345deg,
        rgba(255, 255, 255, 0.03) 355deg,
        rgba(255, 255, 255, 0.03) 360deg
    );
    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);
    mask-composite: exclude;
    animation: billboard-beam-orbit 3.5s linear infinite;
    pointer-events: none;
    z-index: 1;
}

body.billboard-page .hero-cta-beam::after {
    content: "";
    position: absolute;
    inset: -10px;
    border-radius: 999px;
    transform: translateZ(0);
    background: conic-gradient(
        from var(--billboard-beam-angle),
        transparent 0deg,
        transparent 190deg,
        rgba(64, 128, 216, 0.05) 215deg,
        rgba(64, 128, 216, 0.15) 245deg,
        rgba(15, 238, 128, 0.18) 285deg,
        rgba(200, 255, 230, 0.2) 310deg,
        rgba(255, 255, 255, 0.1) 325deg,
        transparent 345deg,
        transparent 360deg
    );
    filter: blur(16px);
    animation: billboard-beam-orbit 3.5s linear infinite;
    pointer-events: none;
    z-index: 0;
}

body.billboard-page .hero-cta-secondary {
    position: relative;
    z-index: 2;
    letter-spacing: -0.01em;
    background: #0fee80;
    color: #fff;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transition:
        transform 0.18s ease,
        background 0.18s ease;
}

body.billboard-page .hero-cta-secondary:hover {
    transform: translateZ(0);
}

body.billboard-page .hero-cta-beam:hover,
body.billboard-page .hero-cta-beam:focus-within {
    transform: translateY(-2px);
}

body.billboard-page .hero-cta-beam:hover .hero-cta-secondary,
body.billboard-page .hero-cta-beam:focus-within .hero-cta-secondary {
    box-shadow: none;
}

@media (prefers-reduced-motion: reduce) {
    body.billboard-page .hero-cta-beam,
    body.billboard-page .hero-cta-secondary {
        transition: none;
    }

    body.billboard-page .hero-cta-beam::before,
    body.billboard-page .hero-cta-beam::after {
        animation: none;
    }
}

@media (max-width: 960px) {
    body.billboard-page .hero-content {
        align-items: center;
        max-width: 600px;
    }

    body.billboard-page .badge-billboard-logo {
        height: 27px;
    }

    body.billboard-page .hero-title span,
    body.billboard-page .hero-title .hero-title-line {
        white-space: nowrap;
        text-align: center;
    }

    body.billboard-page .hero-subtitle {
        text-align: center;
    }

    body.billboard-page .hero-subtitle-mobile-break {
        display: block;
    }

    body.billboard-page .hero-cta-row {
        justify-content: center;
    }
}

@media (max-width: 820px) {
    body.billboard-page .nav-call-btn {
        display: none;
    }
}

@media (max-width: 600px) {
    body.billboard-page .hero-title {
        font-size: clamp(15px, 5.3vw, 30px);
    }

    body.billboard-page .badge-billboard-logo {
        height: 24px;
    }

    body.billboard-page .cta-primary.hero-cta-primary,
    body.billboard-page .hero-cta-beam {
        width: min(100%, 300px);
    }

    body.billboard-page .cta-secondary.hero-cta-secondary {
        width: 100%;
    }
}
