/* Hero container constraints and styling */
.hg-d461076c-container {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: #ffffff;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    padding: 60px 20px;
    box-sizing: border-box;
    /* Custom CSS vars controlled via script & sliders */
    --mouse-x: 50%;
    --mouse-y: 50%;
    --spotlight-size: 350px;
}

/* Perspective view infinite animated grid */
.hg-d461076c-grid {
    position: absolute;
    inset: -100px -100px;
    z-index: 1;
    background-size: 60px 60px;
    transform: perspective(600px) rotateX(50deg) translateZ(0);
    transform-origin: center bottom;
    mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    animation: hg-grid-flow 18s linear infinite;
    pointer-events: none;
}

@keyframes hg-grid-flow {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 0 1080px;
    }
}

/* Mouse spotlight overlay reveal effect */
.hg-d461076c-spotlight {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    mix-blend-mode: screen;
    background: radial-gradient(
        var(--spotlight-size) circle at var(--mouse-x) var(--mouse-y),
        rgba(3, 131, 178, 0.22) 0%,
        rgba(7, 104, 148, 0.1) 50%,
        transparent 100%
    );
}

/* Base decorative glows using requested colors */
.hg-d461076c-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    opacity: 0.55;
    z-index: 1;
}

/* rgb(3, 131, 178) glow */
.hg-glow-cyan {
    width: 450px;
    height: 450px;
    background: rgb(3, 131, 178);
    left: 10%;
    top: 15%;
    animation: hg-pulse-one 12s ease-in-out infinite alternate;
}

/* rgb(7, 104, 148) glow */
.hg-glow-blue {
    width: 500px;
    height: 500px;
    background: rgb(7, 104, 148);
    right: 15%;
    bottom: 10%;
    animation: hg-pulse-two 15s ease-in-out infinite alternate;
}

@keyframes hg-pulse-one {
    0% { transform: translate(0, 0) scale(1); opacity: 0.45; }
    100% { transform: translate(50px, 40px) scale(1.2); opacity: 0.65; }
}

@keyframes hg-pulse-two {
    0% { transform: translate(0, 0) scale(1.2); opacity: 0.6; }
    100% { transform: translate(-60px, -30px) scale(0.9); opacity: 0.4; }
}

/* Main inner content wrapper */
.hg-d461076c-content-inner {
    position: relative;
    z-index: 10;
    max-width: 820px;
    text-align: center;
    margin: 0 auto;
}

/* Tagline */
.hg-d461076c-tagline {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.25em;
    margin-bottom: 24px;
    text-transform: uppercase;
    display: inline-block;
    padding: 6px 16px;
    border-radius: 30px;
    background: rgba(3, 131, 178, 0.1);
    border: 1px solid rgba(3, 131, 178, 0.25);
    backdrop-filter: blur(8px);
}

/* Title */
.hg-d461076c-title {
    font-size: clamp(32px, 5vw, 68px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin: 0 0 24px 0;
    background: linear-gradient(135deg, #ffffff 40%, rgb(3, 131, 178) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Description */
.hg-d461076c-desc {
    font-size: clamp(16px, 1.8vw, 19px);
    line-height: 1.6;
    font-weight: 400;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

/* CTA buttons wrapper */
.hg-d461076c-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Base button styles */
.hg-d461076c-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 32px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
}

/* Primary Button */
.hg-d461076c-btn-primary {
    border: none;
    box-shadow: 0 10px 25px -10px rgba(3, 131, 178, 0.5);
}

.hg-d461076c-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -8px rgba(3, 131, 178, 0.65);
}

/* Secondary Button */
.hg-d461076c-btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
}

.hg-d461076c-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* Icon layout within CTA */
.hg-btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.hg-btn-icon svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
    transition: transform 0.2s ease;
}

.hg-d461076c-btn:hover .hg-btn-icon svg {
    transform: translateX(2px);
}
