/* ============================================
   REDVERS E-MOBILITY - HERO VIDEO STYLES
   Premium Video Background & Realistic Electricity Animation
   ============================================ */

/* ============================================
   ANNOUNCEMENT BANNER
   ============================================ */
.announcement-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8B5E 50%, #FFD23F 100%);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    transform: translateY(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.announcement-banner--hidden {
    transform: translateY(-100%);
}

.announcement-banner__content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-banner__pulse {
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    animation: banner-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
}

@keyframes banner-pulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 255, 255, 0);
    }
}

.announcement-banner__badge {
    background: var(--secondary);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    animation: badge-bounce 2s ease-in-out infinite;
}

@keyframes badge-bounce {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.announcement-banner__text {
    color: var(--secondary);
    font-size: 0.9375rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.announcement-banner__text strong {
    font-weight: 700;
}

.announcement-banner__text-secondary {
    opacity: 0.85;
}

.announcement-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--secondary);
    color: #fff;
    padding: 0.5rem 1.25rem;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.announcement-banner__cta:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.announcement-banner__cta i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.announcement-banner__cta:hover i {
    transform: translateX(4px);
}

.announcement-banner__close {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.15);
    border: none;
    color: var(--secondary);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.announcement-banner__close:hover {
    background: rgba(0, 0, 0, 0.25);
    transform: translateY(-50%) rotate(90deg);
}

/* Adjust navbar when banner is visible */
body.has-banner .navbar {
    top: 52px;
}

body.has-banner .hero-video {
    padding-top: 52px;
}

/* ============================================
   HERO VIDEO SECTION
   ============================================ */
.hero-video {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--secondary);
}

/* Video Background */
.hero-video__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video__media {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

/* Fallback when video doesn't load */
.hero-video--fallback .hero-video__bg {
    background: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.9) 0%, rgba(10, 22, 40, 0.7) 100%),
        url('../images/hero-poster.jpg') center/cover no-repeat;
}

.hero-video--fallback .hero-video__media {
    display: none;
}

/* Gradient Overlay - Less dark to show video */
.hero-video__overlay {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, rgba(10, 22, 40, 0.7) 0%, rgba(10, 22, 40, 0.4) 50%, rgba(10, 22, 40, 0.6) 100%),
        linear-gradient(to bottom, rgba(10, 22, 40, 0.2) 0%, transparent 30%, transparent 70%, rgba(10, 22, 40, 0.8) 100%);
    z-index: 1;
}

/* Animated Grid */
.hero-video__grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 210, 106, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 210, 106, 0.03) 1px, transparent 1px);
    background-size: 80px 80px;
    z-index: 2;
    animation: grid-move 20s linear infinite;
}

@keyframes grid-move {
    0% { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Particles Container */
.hero-video__particles {
    position: absolute;
    inset: 0;
    z-index: 3;
    overflow: hidden;
    pointer-events: none;
}

.hero-video__particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particle-float 15s linear infinite;
}

@keyframes particle-float {
    0% {
        opacity: 0;
        transform: translateY(100vh) scale(0);
    }
    10% {
        opacity: 0.8;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 0.8;
        transform: translateY(10vh) scale(1);
    }
    100% {
        opacity: 0;
        transform: translateY(0) scale(0);
    }
}

/* Content Container */
.hero-video__container {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 4rem;
    align-items: center;
    padding: 8rem 0 6rem;
    min-height: 100vh;
}

/* Hero Content */
.hero-video__content {
    max-width: 720px;
}

/* Tagline */
.hero-video__tagline {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.25);
    border-radius: 100px;
    margin-bottom: 1.5rem;
    animation: tagline-appear 0.8s ease forwards;
    animation-delay: 0.3s;
    opacity: 0;
}

@keyframes tagline-appear {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-video__tagline-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

@keyframes dot-pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(0, 210, 106, 0.5);
    }
    50% { 
        opacity: 0.7; 
        transform: scale(1.2);
        box-shadow: 0 0 0 8px rgba(0, 210, 106, 0);
    }
}

.hero-video__tagline-text {
    font-family: var(--font-mono);
    font-size: 0.875rem;
    color: var(--primary);
    letter-spacing: 0.05em;
}

/* Title */
.hero-video__title {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-video__title-line {
    display: block;
    opacity: 0;
    animation: title-reveal 0.8s ease forwards;
}

.hero-video__title-line:nth-child(1) { animation-delay: 0.5s; }
.hero-video__title-line:nth-child(2) { animation-delay: 0.7s; }

@keyframes title-reveal {
    from {
        opacity: 0;
        transform: translateY(40px) skewY(2deg);
    }
    to {
        opacity: 1;
        transform: translateY(0) skewY(0);
    }
}

.hero-video__title-highlight {
    display: block;
    color: var(--primary);
    position: relative;
    opacity: 0;
    animation: highlight-reveal 1s ease forwards;
    animation-delay: 0.9s;
    text-shadow: 
        0 0 10px rgba(0, 210, 106, 0.3),
        0 0 20px rgba(0, 210, 106, 0.2),
        0 0 30px rgba(0, 210, 106, 0.1);
}

@keyframes highlight-reveal {
    from {
        opacity: 0;
        transform: translateY(40px);
        text-shadow: none;
    }
    to {
        opacity: 1;
        transform: translateY(0);
        text-shadow: 
            0 0 10px rgba(0, 210, 106, 0.3),
            0 0 20px rgba(0, 210, 106, 0.2),
            0 0 30px rgba(0, 210, 106, 0.1);
    }
}

/* ============================================
   REALISTIC ELECTRIC ANIMATION STYLES
   Like the stock image with dramatic sparks and lightning
   ============================================ */

/* Electric Animation Container */
.electric-animation-container {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    pointer-events: none;
    overflow: visible;
    z-index: 1;
}

/* Base Glow Layer */
.electric-glow-base {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(0, 210, 106, 0.3) 20%, 
        rgba(0, 168, 232, 0.4) 50%, 
        rgba(0, 210, 106, 0.3) 80%, 
        transparent 100%);
    border-radius: 4px;
    filter: blur(4px);
    animation: base-glow-pulse 3s ease-in-out infinite;
}

@keyframes base-glow-pulse {
    0%, 100% {
        opacity: 0.3;
        height: 6px;
        filter: blur(3px);
    }
    50% {
        opacity: 0.6;
        height: 10px;
        filter: blur(6px);
    }
}

/* Realistic Sparks */
.electric-spark-real {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: spark-appear 0.1s ease-out;
}

@keyframes spark-appear {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Electric Particles */
.electric-particle-real {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 2;
    animation: particle-appear 0.2s ease-out;
}

@keyframes particle-appear {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    100% {
        transform: scale(1) rotate(180deg);
        opacity: 1;
    }
}

/* Lightning Arcs */
.electric-arc {
    position: absolute;
    pointer-events: none;
    z-index: 1;
    animation: arc-strike 0.3s ease-out;
    filter: 
        drop-shadow(0 0 2px #00D26A)
        drop-shadow(0 0 4px #00A8E8)
        drop-shadow(0 0 8px #00D26A);
}

@keyframes arc-strike {
    0% {
        opacity: 0;
        transform: scaleX(0);
    }
    50% {
        opacity: 1;
        transform: scaleX(1.1);
    }
    100% {
        opacity: 1;
        transform: scaleX(1);
    }
}

/* Major Lightning Arcs */
.electric-major-arc {
    position: absolute;
    pointer-events: none;
    z-index: 3;
    background: linear-gradient(90deg, 
        transparent, 
        #00D26A, 
        #00A8E8, 
        #00D26A, 
        transparent);
    animation: major-arc-strike 0.5s ease-out;
    filter: 
        drop-shadow(0 0 4px #00D26A)
        drop-shadow(0 0 8px #00A8E8)
        drop-shadow(0 0 16px #00D26A);
}

@keyframes major-arc-strike {
    0% {
        opacity: 0;
        transform: scaleY(0);
        filter: 
            drop-shadow(0 0 0px #00D26A)
            drop-shadow(0 0 0px #00A8E8)
            drop-shadow(0 0 0px #00D26A);
    }
    20% {
        opacity: 1;
        transform: scaleY(1.2);
        filter: 
            drop-shadow(0 0 8px #00D26A)
            drop-shadow(0 0 16px #00A8E8)
            drop-shadow(0 0 32px #00D26A);
    }
    100% {
        opacity: 1;
        transform: scaleY(1);
        filter: 
            drop-shadow(0 0 4px #00D26A)
            drop-shadow(0 0 8px #00A8E8)
            drop-shadow(0 0 16px #00D26A);
    }
}

/* Add periodic intense flashes */
@keyframes intense-flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
}

/* Add to hero video title highlight for extra effect */
.hero-video__title-highlight::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 30px;
    background: radial-gradient(ellipse at center, 
        rgba(0, 210, 106, 0.2) 0%,
        rgba(0, 168, 232, 0.1) 30%,
        transparent 70%);
    filter: blur(10px);
    z-index: 0;
    animation: intense-flash 2s ease-in-out infinite;
    animation-delay: 1.5s;
}

/* Description */
.hero-video__description {
    font-size: 1.25rem;
    color: var(--gray-300);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 580px;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 1.1s;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Action Buttons */
.hero-video__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 1.3s;
}

.hero-video__btn {
    position: relative;
    overflow: hidden;
}

.hero-video__btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.hero-video__btn:hover::before {
    left: 100%;
}

/* Glass Button Style */
.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    color: var(--white);
}

/* Stats */
.hero-video__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 1.5s;
}

.hero-video__stat {
    text-align: left;
}

.hero-video__stat-value {
    display: flex;
    align-items: baseline;
    gap: 0.125rem;
}

.hero-video__stat-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.hero-video__stat-suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-video__stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.25rem;
}

.hero-video__stat-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, var(--gray-500), transparent);
}

/* Side Visual Badge */
.hero-video__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    animation: badge-appear 1s ease forwards;
    animation-delay: 1.7s;
}

@keyframes badge-appear {
    from {
        opacity: 0;
        transform: translateX(50px) rotate(-10deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotate(0);
    }
}

.hero-video__badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 2rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: badge-float 4s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.hero-video__badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    border-radius: 16px;
    font-size: 1.75rem;
    color: var(--secondary);
    box-shadow: 0 10px 30px var(--primary-glow);
}

.hero-video__badge-label {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.hero-video__badge-sublabel {
    display: block;
    font-size: 0.875rem;
    color: var(--gray-300);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Scroll Indicator */
.hero-video__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    z-index: 10;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 2s;
}

.hero-video__scroll-text {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.hero-video__scroll-line {
    width: 2px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 1px;
    position: relative;
    overflow: hidden;
}

.hero-video__scroll-dot {
    width: 100%;
    height: 20px;
    background: var(--primary);
    border-radius: 1px;
    position: absolute;
    top: 0;
    animation: scroll-dot 2s ease-in-out infinite;
}

@keyframes scroll-dot {
    0%, 100% { top: 0; opacity: 1; }
    50% { top: 40px; opacity: 0.5; }
}

/* Video Controls */
.hero-video__controls {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    display: flex;
    gap: 0.5rem;
    z-index: 10;
    opacity: 0;
    animation: fade-up 0.8s ease forwards;
    animation-delay: 2.2s;
}

.hero-video__control {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--white);
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-video__control:hover {
    background: var(--primary);
    color: var(--secondary);
    border-color: var(--primary);
}

.hero-video__control--active {
    background: var(--primary);
    color: var(--secondary);
}

/* ============================================
   INVESTMENT HIGHLIGHT SECTION
   ============================================ */
.investment-highlight {
    position: relative;
    background: var(--secondary);
    overflow: hidden;
    padding: 6rem 0;
}

.investment-highlight__bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 0% 50%, rgba(0, 210, 106, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 100% 0%, rgba(255, 107, 53, 0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 100%, rgba(0, 168, 232, 0.1) 0%, transparent 40%);
}

.investment-highlight__content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: center;
}

.investment-highlight__label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 106, 0.1);
    border: 1px solid rgba(0, 210, 106, 0.3);
    border-radius: 100px;
    font-family: var(--font-mono);
    font-size: 0.8125rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.investment-highlight__title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.investment-highlight__title span {
    color: var(--primary);
}

.investment-highlight__description {
    font-size: 1.125rem;
    color: var(--gray-300);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.investment-highlight__stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.investment-highlight__stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.investment-highlight__stat-label {
    font-size: 0.8125rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Investment Card */
.investment-highlight__card {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary-lighter) 100%);
    border: 1px solid rgba(0, 210, 106, 0.2);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

.investment-highlight__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--electric-blue), var(--accent));
}

.investment-highlight__card-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
}

.investment-highlight__card-badge {
    display: inline-block;
    padding: 0.375rem 1rem;
    background: var(--accent);
    color: var(--white);
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 100px;
    margin-bottom: 1rem;
    animation: badge-bounce 2s ease-in-out infinite;
}

.investment-highlight__card-header h3 {
    font-size: 1.5rem;
    color: var(--white);
    margin: 0;
}

.investment-highlight__card-body {
    padding: 1.5rem 2rem;
}

.investment-highlight__card-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.investment-highlight__card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    color: var(--gray-200);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.investment-highlight__card-features li:last-child {
    border-bottom: none;
}

.investment-highlight__card-features i {
    color: var(--primary);
    font-size: 1rem;
}

.investment-highlight__card-footer {
    padding: 1.5rem 2rem 2rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
}

/* Navbar Investor Link Highlight */
.navbar__link--highlight {
    color: var(--primary) !important;
    position: relative;
}

.navbar__link--highlight::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -8px;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: dot-pulse 2s ease-in-out infinite;
}

/* ============================================
   RESPONSIVE STYLES FOR HERO VIDEO
   ============================================ */
@media (max-width: 1199px) {
    .hero-video__container {
        grid-template-columns: 1fr;
    }
    
    .hero-video__visual {
        display: none;
    }
    
    .investment-highlight__content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .investment-highlight__card {
        max-width: 400px;
    }
}

@media (max-width: 991px) {
    .announcement-banner__text-secondary {
        display: none;
    }
    
    body.has-banner .navbar {
        top: 48px;
    }
    
    body.has-banner .hero-video {
        padding-top: 48px;
    }
}

@media (max-width: 767px) {
    .announcement-banner {
        padding: 0.625rem 3rem 0.625rem 1rem;
    }
    
    .announcement-banner__badge {
        display: none;
    }
    
    .announcement-banner__pulse {
        display: none;
    }
    
    .announcement-banner__text {
        font-size: 0.8125rem;
    }
    
    .announcement-banner__cta {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    body.has-banner .navbar {
        top: 44px;
    }
    
    body.has-banner .hero-video {
        padding-top: 44px;
    }
    
    .hero-video__container {
        padding: 7rem 0 5rem;
    }
    
    .hero-video__title {
        font-size: clamp(2rem, 8vw, 3rem);
    }
    
    .hero-video__description {
        font-size: 1.0625rem;
    }
    
    .hero-video__actions {
        flex-direction: column;
    }
    
    .hero-video__btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-video__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    .hero-video__stat-divider {
        display: none;
    }
    
    .hero-video__stat-number {
        font-size: 2rem;
    }
    
    .hero-video__scroll {
        display: none;
    }
    
    .hero-video__controls {
        bottom: 1rem;
        right: 1rem;
    }
    
    .investment-highlight__stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    
    /* Adjust electric animation for mobile */
    .hero-video__title-highlight::after {
        height: 20px;
        bottom: -10px;
        filter: blur(8px);
    }
    
    .electric-animation-container {
        height: 20px;
        bottom: -10px;
    }
    
    .electric-glow-base {
        height: 6px;
    }
}

@media (max-width: 480px) {
    .announcement-banner__content {
        gap: 0.5rem;
    }
    
    .announcement-banner__text strong {
        font-size: 0.75rem;
    }
    
    .hero-video__tagline {
        padding: 0.5rem 1rem;
    }
    
    .hero-video__tagline-text {
        font-size: 0.75rem;
    }
    
    .hero-video__stat {
        flex: 1 1 100%;
        text-align: center;
    }
    
    /* Further adjust electric animation for small screens */
    .hero-video__title-highlight::after {
        height: 15px;
        bottom: -8px;
        filter: blur(6px);
    }
    
    .electric-animation-container {
        height: 15px;
        bottom: -8px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .hero-video__particle,
    .hero-video__grid,
    .hero-video__badge,
    .hero-video__scroll-dot,
    .announcement-banner__pulse,
    .announcement-banner__badge,
    .navbar__link--highlight::before,
    .investment-highlight__card-badge,
    .electric-glow-base,
    .hero-video__title-highlight::after {
        animation: none;
    }
    
    .hero-video__tagline,
    .hero-video__title-line,
    .hero-video__title-highlight,
    .hero-video__description,
    .hero-video__actions,
    .hero-video__stats,
    .hero-video__visual,
    .hero-video__scroll,
    .hero-video__controls {
        opacity: 1;
        animation: none;
    }
    
    /* Show simple static glow for reduced motion */
    .hero-video__title-highlight::after {
        opacity: 0.3;
    }
    
    /* Disable dynamic electric animation */
    .electric-animation-container {
        display: none;
    }
}