/* Premium Hero Block Styles */
.piscys-hero-addfd159 {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: #0A1C2F;
    background-image: radial-gradient(circle at center, #002F75 0%, #0A1C2F 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #FFFFFF;
}

@media screen and (max-width: 768px) {
    .piscys-hero-addfd159 {
        height: 90vh;
    }
}

/* Background canvas */
.piscys-grid-canvas-addfd159 {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    opacity: 0.65;
}

/* Restrained starburst / light bloom */
.piscys-flare-addfd159 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(16, 177, 247, 0.4) 0%, rgba(0, 47, 117, 0) 70%);
    border-radius: 50%;
    z-index: 2;
    pointer-events: none;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.8s ease;
    opacity: 0;
}

.piscys-flare-addfd159.ignite {
    transform: translate(-50%, -50%) scale(1.6);
    opacity: 1;
}

.piscys-flare-addfd159.settle {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
    background: radial-gradient(circle, rgba(16, 177, 247, 0.2) 0%, rgba(0, 47, 117, 0) 70%);
}

/* Layout container */
.piscys-hero-container-addfd159 {
    position: relative;
    z-index: 3;
    max-width: 1200px;
    padding: 0 40px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Brand composition layout: horizontally aligned desktop */
.piscys-brand-group-addfd159 {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

/* Logo Sizing & Alignment */
.piscys-logo-wrapper-addfd159 {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    position: relative;
}

.piscys-logo-svg-addfd159 {
    width: 100%;
    height: 100%;
    display: block;
    filter: drop-shadow(0 0 4px rgba(16, 177, 247, 0.2));
}

/* Shield outline animation setup */
.piscys-shield-path-addfd159 {
    fill: none;
    stroke: #10B1F7;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    transition: stroke-dashoffset 1s cubic-bezier(0.25, 1, 0.5, 1);
}

.piscys-shield-path-addfd159.active {
    stroke-dashoffset: 0;
    stroke: #FFFFFF;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.8)) drop-shadow(0 0 15px #10B1F7);
    transition: stroke-dashoffset 0.9s cubic-bezier(0.25, 1, 0.5, 1), stroke 0.4s ease, filter 0.4s ease;
}

.piscys-shield-path-addfd159.settle {
    stroke: #10B1F7;
    filter: drop-shadow(0 0 3px rgba(16, 177, 247, 0.3));
    transition: stroke 1.5s ease, filter 1.5s ease;
}

/* Lotus animation setup */
.piscys-lotus-g-addfd159 {
    opacity: 0;
    transform: scale(0.8);
    transform-origin: center;
    transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.piscys-lotus-g-addfd159.active {
    opacity: 1;
    transform: scale(1);
}

.piscys-lotus-petal-addfd159 {
    fill: rgba(16, 177, 247, 0.15);
    stroke: #10B1F7;
    stroke-width: 1.5;
    transition: fill 1s ease, stroke 1s ease;
}

.piscys-lotus-g-addfd159.active .piscys-lotus-petal-addfd159 {
    fill: rgba(16, 177, 247, 0.4);
    stroke: #FFFFFF;
}

.piscys-lotus-g-addfd159.settle .piscys-lotus-petal-addfd159 {
    fill: rgba(16, 177, 247, 0.2);
    stroke: #10B1F7;
    transition: fill 1.5s ease, stroke 1.5s ease;
}

/* Brand Text Group Styling */
.piscys-text-wrapper-addfd159 {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
}

.piscys-title-addfd159 {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.12em;
    margin: 0;
    text-transform: uppercase;
    color: #FFFFFF;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.9s cubic-bezier(0.25, 1, 0.5, 1), transform 0.9s cubic-bezier(0.25, 1, 0.5, 1);
}

.piscys-title-addfd159.active {
    opacity: 1;
    transform: translateY(0);
}

.piscys-separator-addfd159 {
    width: 1px;
    height: 24px;
    background-color: rgba(255, 255, 255, 0.25);
    opacity: 0;
    transition: opacity 0.8s ease;
}

.piscys-separator-addfd159.active {
    opacity: 1;
}

.piscys-motto-addfd159 {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    opacity: 0;
    transform: translateX(15px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
    white-space: nowrap;
}

.piscys-motto-addfd159.active {
    opacity: 1;
    transform: translateX(0);
}

/* Scroll Cue */
.piscys-scroll-cue-addfd159 {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.piscys-scroll-cue-addfd159.active {
    opacity: 0.75;
}

.piscys-chevron-addfd159 {
    fill: #FFFFFF;
    animation: piscysBounce-addfd159 2s infinite ease-in-out;
}

@keyframes piscysBounce-addfd159 {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(6px);
    }
}

/* Mobile responsive adjustments */
@media screen and (max-width: 900px) {
    .piscys-brand-group-addfd159 {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .piscys-text-wrapper-addfd159 {
        flex-direction: column;
        gap: 12px;
    }
    
    .piscys-separator-addfd159 {
        width: 40px;
        height: 1px;
    }
    
    .piscys-motto-addfd159 {
        white-space: normal;
        font-size: 14px;
    }
}

/* Respect prefers-reduced-motion */
@media (prefers-reduced-motion: reduce) {
    .piscys-shield-path-addfd159 {
        stroke-dashoffset: 0 !important;
        stroke: #10B1F7 !important;
        filter: none !important;
    }
    .piscys-lotus-g-addfd159 {
        opacity: 1 !important;
        transform: scale(1) !important;
    }
    .piscys-lotus-petal-addfd159 {
        fill: rgba(16, 177, 247, 0.2) !important;
        stroke: #10B1F7 !important;
    }
    .piscys-title-addfd159,
    .piscys-separator-addfd159,
    .piscys-motto-addfd159,
    .piscys-scroll-cue-addfd159 {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
    .piscys-chevron-addfd159 {
        animation: none !important;
    }
}
