/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;700&family=Oswald:wght@500;700;800&display=swap');

/* ============================================================
   BUTTON COLOR TOKENS — change here to update all buttons
   ============================================================ */
:root {
    /* Solid CTA buttons: Register, Volunteer, Modal Submit */
    --btn-solid-bg:           #fdef32;
    --btn-solid-text:         #000000;
    --btn-solid-hover-bg:     #ffffff;
    --btn-solid-hover-text:   #000000;

    /* Outline-accent buttons: Partner CTA, About2 Explore */
    --btn-outline-accent:         #fdef32;   /* text + border */
    --btn-outline-hover-bg:       #fdef32;
    --btn-outline-hover-text:     #000000;

    /* Ghost/neutral outline: Legacy Spot button */
    --btn-ghost-text:             #ffffff;
    --btn-ghost-hover-bg:         #ffffff;
    --btn-ghost-hover-text:       #000000;

    /* Nav primary button */
    --btn-nav-bg:             #fdef32;
    --btn-nav-text:           #000000;
    --btn-nav-hover-bg:       #fdef32;
    --btn-nav-hover-text:     #000000;
}
/* ============================================================ */

/* --- Global Reset & Base Styles --- */
html {
    scroll-behavior: smooth;
}

@layer base {
    *,
    *::before,
    *::after {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0f1115;
    color: #ffffff;
    line-height: 1.6;
}

/* --- Navbar (Secure) --- */
.hs_nav_wrapper {
    width: 100%;
    background-color: #111318;
    border-bottom: 2px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
}

.hs_nav_container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.hs_nav_brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.05em;
    color: #fff;
    user-select: none;
    text-decoration: none;
}

.hs_nav_brand img {
    height: 130px;
    width: auto;
    display: block;
}

.hs_nav_logo_text {
    font-family: 'Oswald', sans-serif;
}

.hs_nav_links {
    display: flex;
    gap: 30px;
}

.hs_nav_link {
    text-decoration: none;
    color: #8890a0;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.hs_nav_link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #fff;
    transition: width 0.3s ease;
}

.hs_nav_link:hover {
    color: #fff;
}

.hs_nav_link:hover::after {
    width: 100%;
}

.hs_nav_actions {
    display: flex;
    align-items: center;
}

.hs_nav_btn_primary {
    text-decoration: none;
    background: var(--btn-nav-bg);
    color: var(--btn-nav-text);
    padding: 0.8rem 2rem;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hs_nav_btn_primary:hover {
    background: var(--btn-nav-hover-bg);
    color: var(--btn-nav-hover-text);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}

.hs_nav_toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.hs_nav_bar {
    width: 28px;
    height: 3px;
    background-color: #fff;
    transition: 0.3s;
}

/* Mobile Menu */
.hs_nav_mobile_menu {
    display: none;
    background-color: #161920;
    border-bottom: 2px solid #333;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
}

.hs_nav_mobile_menu.hs_active {
    display: flex;
}

.hs_nav_mobile_link {
    text-decoration: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 10px;
}

/* --- Footer (Secure) --- */
.hs_footer_section {
    width: 100%;
    background-color: #050608;
    border-top: 1px solid #333;
    color: #fff;
    padding: 100px 20px 40px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hs_footer_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #fdef32, transparent);
    box-shadow: 0 0 10px #fdef32;
}

.hs_footer_main {
    width: 100%;
    max-width: 1400px;
    margin-bottom: 80px;
}

.hs_footer_title {
    font-size: clamp(3.5rem, 10vw, 15rem);
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
    font-family: 'Oswald', sans-serif;
    user-select: none;
    background: linear-gradient(180deg, #fff 0%, #333 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0.2;
    white-space: nowrap;
    width: 100%;
    display: block;
}

.hs_footer_tagline {
    font-family: 'Courier New', monospace;
    color: #ffffff;
    font-size: clamp(0.8rem, 2vw, 1.2rem);
    letter-spacing: 0.5em;
    opacity: 0.4;
    text-transform: uppercase;
    margin-top: 20px;
    font-weight: 700;
}

.hs_footer_bottom {
    width: 100%;
    max-width: 1400px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.hs_footer_copyright {
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* --- Responsive --- */
@media (max-width: 900px) {

    .hs_nav_links,
    .hs_nav_actions {
        display: none;
    }

    .hs_nav_toggle {
        display: flex;
    }
}

@media (max-width: 768px) {
    .hs_footer_section {
        padding: 60px 20px 30px;
    }

    .hs_footer_bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .hs_footer_tagline {
        letter-spacing: 0.2em;
    }
}

/* --- Highly Secured Slider Section --- */
.cs_slider_main_display {
    width: 100%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

.cs_slider_container {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 20px;
    background-color: #1a1d24;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cs_slider_wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.cs_slider_item {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.cs_slider_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
    user-select: none;
    -webkit-user-drag: none;
}

.cs_slider_container:hover .cs_slider_img {
    transform: scale(1.05);
}

/* --- Content Overlay --- */
.cs_slider_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 60px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), rgba(0, 0, 0, 0.6), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1) 0.3s;
    pointer-events: none;
}

.cs_slider_item.cs_active_slide .cs_slider_content {
    transform: translateY(0);
    opacity: 1;
}

.cs_slider_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.5rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.cs_slider_description {
    font-size: clamp(0.9rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* --- Navigation Buttons --- */
.cs_slider_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
    outline: none;
}

.cs_slider_nav_btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
    border-color: #fdef32;
    color: #fdef32;
}

.cs_slider_nav_btn:active {
    transform: translateY(-50%) scale(0.9);
}

.cs_slider_prev_btn {
    left: 30px;
}

.cs_slider_next_btn {
    right: 30px;
}

/* --- Loader --- */
.cs_slider_loader {
    position: absolute;
    inset: 0;
    background: #0f1115;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 20;
    transition: opacity 0.8s ease;
    opacity: 1;
}

.cs_slider_loader.cs_loaded {
    opacity: 0;
    pointer-events: none;
}

.cs_slider_spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 255, 136, 0.1);
    border-left-color: #fdef32;
    border-radius: 50%;
    animation: cs_spin 1s linear infinite;
}

@keyframes cs_spin {
    to {
        transform: rotate(360deg);
    }
}

/* --- Responsive Adjustments --- */
@media (max-width: 1024px) {
    .cs_slider_container {
        aspect-ratio: 4/3;
        border-radius: 12px;
    }

    .cs_slider_nav_btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 768px) {
    .cs_slider_main_display {
        margin: 20px auto;
        padding: 0 10px;
    }

    .cs_slider_container {
        aspect-ratio: 1/1;
        max-height: 80vh;
    }

    .cs_slider_content {
        padding: 30px;
    }

    .cs_slider_nav_btn {
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.5);
    }

    .cs_slider_prev_btn {
        left: 15px;
    }

    .cs_slider_next_btn {
        right: 15px;
    }
}

/* --- Heavy Secured FAQ Section (Pluggable) --- */
.hs_faq_section {
    width: 100%;
    background-color: #0f1115;
    padding: 100px 20px;
}

.hs_faq_container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hs_faq_header {
    text-align: center;
    margin-bottom: 20px;
}

.hs_faq_title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hs_faq_grid {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hs_faq_item {
    background: #161920;
    border: 1px solid #333;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hs_faq_item.hs_active {
    border-color: #fdef32;
    /* Matching neon theme */
    background: #1a1d24;
}

.hs_faq_question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 25px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s;
}

.hs_faq_question:hover {
    color: #fdef32;
}

.hs_faq_icon {
    width: 20px;
    height: 20px;
    position: relative;
    transition: transform 0.4s ease;
}

.hs_faq_icon::before,
.hs_faq_icon::after {
    content: '';
    position: absolute;
    background: #fff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: background-color 0.3s;
}

.hs_faq_icon::before {
    width: 100%;
    height: 2px;
}

.hs_faq_icon::after {
    height: 100%;
    width: 2px;
}

.hs_faq_item.hs_active .hs_faq_icon {
    transform: rotate(45deg);
}

.hs_faq_item.hs_active .hs_faq_icon::before,
.hs_faq_item.hs_active .hs_faq_icon::after {
    background: #fdef32;
}

.hs_faq_answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0, 1, 0, 1);
}

.hs_faq_content {
    padding: 0 25px 25px 25px;
    color: #ccc;
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 0;
}

.hs_faq_item.hs_active .hs_faq_answer {
    max-height: 500px;
    transition: max-height 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .hs_faq_title {
        font-size: 3rem;
    }

    .hs_faq_section {
        padding: 60px 20px;
    }
}

/* --- Heavy Secured Marquee --- */
.hs_marquee_section {
    width: 100%;
    background-color: var(--btn-solid-bg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 10px 0;
    overflow: hidden;
    position: relative;
    user-select: none;
}

.hs_marquee_track {
    display: flex;
    white-space: nowrap;
    will-change: transform;
    animation: hs_scroll 30s linear infinite;
}

.hs_marquee_item {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--btn-solid-text);
    -webkit-text-stroke: 1px var(--btn-solid-text);
    margin-right: 50px;
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .hs_marquee_item:hover { */
    /* color: #fff; */
    /* Neon Accent */
    /* -webkit-text-stroke: 1px #fdef32; */
/* } */

.hs_marquee_divider {
    color: rgba(0, 0, 0, 0.897);
    font-size: 2.5rem;
    -webkit-text-stroke: 0;
}

@keyframes hs_scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hs_marquee_item {
        font-size: 2.5rem;
        margin-right: 25px;
    }

    .hs_marquee_section {
        padding: 20px 0;
    }
}

/* --- Vision for Revival Section --- */
.hs_about2_section {
    width: 100%;
    background-color: #f5f5f5;
    /* Clean light grey */
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
    color: #1a1a1a;
}

.hs_about2_bg_text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(10rem, 30vw, 30rem);
    font-weight: 900;
    color: rgba(0, 0, 0, 0.03);
    pointer-events: none;
    z-index: 1;
    line-height: 1;
    user-select: none;
}

.hs_about2_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 2;
}

.hs_about2_content {
    flex: 1;
}

.hs_about2_title {
    font-family: 'Oswald', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -2px;
    margin-bottom: 35px;
    color: #000;
}

.hs_about2_description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 25px;
}

.hs_about2_stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 35px;
}

.hs_about2_stat_item {
    display: flex;
    flex-direction: column;
}

.hs_about2_stat_number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #000;
}

.hs_about2_stat_label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #888;
    margin-top: 5px;
}

.hs_about2_visual {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.hs_about2_img_main_wrapper {
    width: 85%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    box-shadow: 20px 20px 60px rgba(0, 0, 0, 0.05);
}

.hs_about2_img_main {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .hs_about2_img_main_wrapper:hover .hs_about2_img_main {
    filter: grayscale(0%);
    transform: scale(1.05);
} */

.hs_about2_img_sub_wrapper {
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 50%;
    aspect-ratio: 4/3;
    overflow: hidden;
    border: 8px solid #f5f5f5;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.hs_about2_img_sub {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* filter: grayscale(100%); */
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .hs_about2_img_sub_wrapper:hover .hs_about2_img_sub {
    filter: grayscale(0%);
} */

@media (max-width: 1024px) {
    .hs_about2_container {
        flex-direction: column;
        align-items: flex-start;
        gap: 50px;
    }

    .hs_about2_visual {
        width: 100%;
        justify-content: center;
        padding-bottom: 40px;
    }

    .hs_about2_title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hs_about2_section {
        padding: 80px 20px;
    }

    .hs_about2_stats {
        gap: 25px;
    }

    .hs_about2_stat_number {
        font-size: 2rem;
    }
}

/* --- Heavy Secured Pillars Section (Pluggable) --- */
.hs_pillars_section {
    width: 100%;
    background-color: #0b0d10;
    padding: 120px 20px;
    border-bottom: 2px solid #333;
    position: relative;
    overflow: hidden;
}

/* Background Hex Pattern */
.hs_pillars_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(#1a1d24 15%, transparent 16%);
    background-size: 30px 30px;
    opacity: 0.3;
}

.hs_pillars_container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hs_pillars_header {
    text-align: center;
    margin-bottom: 80px;
}

.hs_pillars_title {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin: 0;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
}

/* Three Pillars Grid */
.hs_pillars_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* New Image-Based Card Style */
.hs_pillar_card {
    position: relative;
    width: 100%;
    /* Aspect Ratio for Vertical Card (poster style) */
    aspect-ratio: 9 / 16;
    border-radius: 4px;
    overflow: hidden;
    background: #161920;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
}

.hs_pillar_card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
    border-color: #fdef32;
}

/* Image */
.hs_pillar_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    /* filter: grayscale(80%) brightness(0.8); */
}

.hs_pillar_card:hover .hs_pillar_img {
    transform: scale(1.1);
    /* filter: grayscale(0%) brightness(1); */
}

/* Gradient Overlay for Text Readability */
.hs_pillar_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 40%,
            rgba(0, 0, 0, 0.6) 60%,
            rgba(0, 0, 0, 0.95) 100%);
    z-index: 1;
    pointer-events: none;
}

/* Content Bottom */
.hs_pillar_content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    z-index: 3;
    transform: translateY(10px);
    transition: transform 0.5s ease;
}

.hs_pillar_card:hover .hs_pillar_content {
    transform: translateY(0);
}

.hs_pillar_name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hs_pillar_name::before {
    content: '';
    display: block;
    width: 4px;
    height: 24px;
    background: #fdef32;
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.hs_pillar_card:hover .hs_pillar_name::before {
    transform: scaleY(1);
}

.hs_pillar_desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
    max-width: 90%;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease 0.1s;
}

.hs_pillar_card:hover .hs_pillar_desc {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .hs_pillars_grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        justify-content: center;
    }

    .hs_pillar_card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* --- Heavy Secured Register Section (Pluggable) --- */
.hs_register_section {
    width: 100%;
    background-color: #0b0d10;
    padding: 120px 20px;
    position: relative;
    border-bottom: 2px solid #333;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

/* Diagonal Hazard Lines Background */
.hs_register_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg,
            rgba(255, 255, 255, 0.02),
            rgba(255, 255, 255, 0.02) 10px,
            transparent 10px,
            transparent 20px);
    pointer-events: none;
}

.hs_register_container {
    max-width: 800px;
    z-index: 2;
    position: relative;
    background: rgba(20, 22, 28, 0.8);
    backdrop-filter: blur(10px);
    padding: 60px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    clip-path: polygon(0 0, 100% 0,
            100% calc(100% - 20px), calc(100% - 20px) 100%,
            0 100%, 0 20px);
}

/* Decorative corner markers */
.hs_register_container::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid transparent;
    pointer-events: none;
    background:
        linear-gradient(90deg, #fdef32 2px, transparent 2px) bottom right / 20px 20px no-repeat,
        linear-gradient(180deg, #fdef32 2px, transparent 2px) bottom right / 20px 20px no-repeat;
}

.hs_register_title {
    font-family: 'Oswald', monospace;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hs_register_desc {
    opacity: 0.7;
    font-size: 1.2rem;
    color: #8890a0;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* CTA Button */
.hs_register_btn {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--btn-solid-text);
    background: var(--btn-solid-bg);
    padding: 20px 50px;
    text-decoration: none;
    letter-spacing: 0.1em;
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.hs_register_btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    transition: 0.5s;
}

.hs_register_btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 255, 136, 0.3);
    background: var(--btn-solid-hover-bg);
    color: var(--btn-solid-hover-text);
}

.hs_register_btn:hover::before {
    left: 100%;
}

.hs_register_note {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 400;
    opacity: 0.5;
    display: block;
    margin-top: 25px;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .hs_register_container {
        padding: 40px 20px;
        width: 100%;
    }

    .hs_register_title {
        font-size: 2rem;
    }

    .hs_register_btn {
        width: 100%;
        padding: 15px 30px;
    }
}

/* --- Heavy Secured Impact Section --- */
.hs_impact_section {
    width: 100%;
    background-color: #08090b;
    /* Deepest black for contrast */
    padding: 140px 20px;
    position: relative;
    overflow: hidden;
    color: #fff;
    border-bottom: 1px solid #1a1a1a;
}

/* Subtle Animated Background Elements */
.hs_impact_section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 40%;
    height: 60%;
    background: radial-gradient(circle, rgba(223, 255, 0, 0.03) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.hs_impact_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* Title Styling */
.hs_impact_title {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -0.01em;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hs_impact_title_small {
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 5px;
    color: #fff;
    text-transform: uppercase;
    display: block;
    line-height: 0.9;
}

.hs_impact_title_large {
    font-size: clamp(4rem, 12vw, 9rem);
    font-weight: 900;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #ffffff 0%, #adadad 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

/* Decorative Line */
.hs_impact_divider {
    width: 200px;
    height: 1px;
    background: #fdef32;
    margin-bottom: 50px;
    box-shadow: 0 0 20px rgba(223, 255, 0, 0.4);
}

/* Description Styling */
.hs_impact_content {
    max-width: 900px;
}

.hs_impact_desc {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.8;
    color: #a0a0a0;
    font-weight: 400;
}

/* Base visibility */
.hs_impact_section .hs_impact_title,
.hs_impact_section .hs_impact_desc {
    opacity: 0.9;
    transform: none;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .hs_impact_section {
        padding: 80px 20px;
    }

    .hs_impact_title {
        font-size: 3rem;
        margin-bottom: 10px;
    }

    .hs_impact_divider {
        width: 40px;
    }

}

/* --- Volunteer / Team Section --- */
.hs_volunteer_section {
    width: 100%;
    background-color: #050505;
    padding: 0 0 120px 0;
    /* Padding top removed to accommodate banner */
    position: relative;
    border-bottom: 2px solid #1a1a1a;
    overflow: hidden;
}

.hs_volunteer_visual_banner {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
}

.hs_volunteer_banner_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8) contrast(1.1);
    /* transition: transform 15s cubic-bezier(0.1, 0, 0.2, 1); */
    display: block;
}

/* .hs_volunteer_visual_banner:hover .hs_volunteer_banner_img {
    transform: scale(1.1);
} */

.hs_volunteer_banner_fade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(5, 5, 5, 0.8) 0%,
            transparent 20%,
            transparent 95%,
            #050505 100%);
    pointer-events: none;
}

.hs_volunteer_container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
    /* Restored side padding for container */
}

.hs_volunteer_title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 60px;
    line-height: 1.1;
}

.hs_volunteer_big_text {
    display: block;
    font-size: clamp(5rem, 15vw, 12rem);
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 2px var(--btn-solid-bg);
    letter-spacing: -0.02em;
    margin-top: 20px;
}

.hs_checkbox_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.hs_checkbox_item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    user-select: none;
    text-align: left;
}

.hs_checkbox_item:hover {
    background: rgba(223, 255, 0, 0.04);
    border-color: rgba(223, 255, 0, 0.2);
    transform: translateY(-5px);
}

.hs_checkbox_item input {
    display: none;
}

.hs_checkbox_mark {
    width: 24px;
    height: 24px;
    border: 2px solid var(--btn-solid-bg);
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.hs_checkbox_item input:checked+.hs_checkbox_mark {
    background: #fdef32;
    border-color: #fdef32;
    box-shadow: 0 0 15px rgba(223, 255, 0, 0.4);
}

.hs_checkbox_mark::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 6px;
    border-left: 3px solid #000;
    border-bottom: 3px solid #000;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
    opacity: 0;
    transition: all 0.2s ease;
}

.hs_checkbox_item input:checked+.hs_checkbox_mark::after {
    opacity: 1;
}

.hs_checkbox_label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.3s ease;
}

.hs_checkbox_item input:checked~.hs_checkbox_label {
    color: #fff;
}

.hs_volunteer_btn {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    text-transform: uppercase;
    background: var(--btn-solid-bg);
    color: var(--btn-solid-text);
    padding: 20px 80px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 30px rgba(223, 255, 0, 0.2);
    clip-path: polygon(15px 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%, 0 15px);
}

.hs_volunteer_btn:hover {
    transform: translateY(-5px);
    background: var(--btn-solid-hover-bg);
    color: var(--btn-solid-hover-text);
    box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .hs_volunteer_visual_banner {
        height: auto;
        min-height: unset;
        aspect-ratio: auto;
        margin-bottom: 40px;
    }

    .hs_volunteer_banner_img {
        height: auto;
        object-fit: contain;
    }

    .hs_volunteer_title {
        font-size: 1.8rem;
    }

    .hs_checkbox_grid {
        grid-template-columns: 1fr;
    }

    .hs_volunteer_big_text {
        font-size: 5rem;
    }

    .hs_volunteer_btn {
        width: 100%;
        padding: 15px 30px;
    }
}

/* --- Attractive Photo Gallery Band (Restored) --- */
.hs_photo_band {
    display: block;
    width: 100%;
    background: repeating-linear-gradient(
        -45deg,
        #000000 0px,
        #000000 22px,
        color-mix(in srgb, var(--btn-solid-bg) 10%, #000) 22px,
        color-mix(in srgb, var(--btn-solid-bg) 10%, #000) 44px
    );
    padding: 35px 20px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #fdef3265;
    border-bottom: 1px solid #fdef3265;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: 10;
}

.hs_photo_band_shimmer {
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 25%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0.18) 60%,
        transparent 75%
    );
    transform: skewX(-15deg);
    animation: hs_shimmer 5s infinite linear;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

@keyframes hs_shimmer {
    0% {
        left: -60%;
    }
    100% {
        left: 120%;
    }
}

.hs_photo_band::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        105deg,
        transparent 25%,
        rgba(255, 255, 255, 0.18) 40%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0.18) 60%,
        transparent 75%
    );
    transform: skewX(-15deg);
    animation: hs_shimmer 5s infinite linear;
    animation-delay: 2.5s;
    pointer-events: none;
    z-index: 1;
    will-change: transform;
}

.hs_photo_band_content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.hs_photo_band_text {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    font-weight: 800;
    text-transform: uppercase;
    color: var(--btn-solid-bg);
    letter-spacing: 0.05em;
    transition: all 0.3s ease;
    position: relative;
    z-index: 3;
}

.hs_photo_band_icon {
    width: 50px;
    height: 50px;
    background: var(--btn-solid-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    flex-shrink: 0;
}

.hs_photo_band_icon svg {
    width: 28px;
    height: 28px;
}

.hs_photo_band_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 200%;
    background: radial-gradient(circle, color-mix(in srgb, var(--btn-solid-bg) 12%, transparent) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.6s ease;
    pointer-events: none;
}

/* Hover State */
.hs_photo_band:hover {
    background: repeating-linear-gradient(
        -45deg,
        #020202 0px,
        #020202 22px,
        color-mix(in srgb, var(--btn-solid-bg) 16%, #000) 22px,
        color-mix(in srgb, var(--btn-solid-bg) 16%, #000) 44px
    );
}



.hs_photo_band:hover .hs_photo_band_icon {
    transform: translateX(20px) scale(1.15);
    background: #fff;
}


/* Responsive */
@media (max-width: 768px) {
    .hs_photo_band {
        padding: 25px 15px;
    }

    .hs_photo_band_text {
        font-size: 1.2rem;
        letter-spacing: 0.02em;
    }

    .hs_photo_band_icon {
        width: 35px;
        height: 35px;
    }

    .hs_photo_band_icon svg {
        width: 20px;
        height: 20px;
    }
}

/* --- Registration Modal --- */
.hs_modal_overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    /* Re-centered */
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    padding: 20px;
    overflow: hidden;
    /* Disabled scroll as requested */
    -webkit-overflow-scrolling: touch;
}

.hs_modal_overlay.hs_active {
    opacity: 1;
    visibility: visible;
}

.hs_modal_card {
    background: #161920;
    width: 100%;
    max-width: 550px;
    padding: 50px;
    position: relative;
    border: 1px solid rgba(223, 255, 0, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.8);
    transform: translateY(30px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    clip-path: polygon(0 20px, 20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 10px);
}

.hs_modal_overlay.hs_active .hs_modal_card {
    transform: translateY(0);
}

.hs_modal_close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.hs_modal_close:hover {
    color: #fdef32;
}

.hs_modal_header {
    text-align: center;
    margin-bottom: 35px;
}

.hs_modal_title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 10px;
}

.hs_modal_subtitle {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hs_input_group {
    margin-bottom: 25px;
    text-align: left;
}

.hs_input_label {
    display: block;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 600;
    color: #fdef32;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.hs_modal_input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.hs_modal_input:focus {
    outline: none;
    border-color: #fdef32;
    background: rgba(223, 255, 0, 0.02);
}

.hs_textarea {
    min-height: 100px;
    resize: none;
}

.hs_modal_submit_btn {
    width: 100%;
    background: var(--btn-solid-bg);
    color: var(--btn-solid-text);
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 18px;
    border: none;
    cursor: pointer;
    transition: all 0.4s ease;
    clip-path: polygon(10px 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%, 0 10px);
}

.hs_modal_submit_btn:hover {
    background: var(--btn-solid-hover-bg);
    color: var(--btn-solid-hover-text);
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    .hs_modal_overlay {
        padding: 10px;
    }

    .hs_modal_card {
        padding: 30px 20px 20px;
        margin: 0;
        max-height: 98vh;
        /* Safety backup */
    }

    .hs_modal_header {
        margin-bottom: 20px;
    }

    .hs_modal_title {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .hs_modal_subtitle {
        font-size: 0.75rem;
        letter-spacing: 0.05em;
    }

    .hs_input_group {
        margin-bottom: 12px;
    }

    .hs_input_label {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .hs_modal_input {
        padding: 10px 12px;
        font-size: 0.9rem;
    }

    .hs_textarea {
        min-height: 60px;
        height: 60px;
    }

    .hs_modal_submit_btn {
        padding: 14px;
        font-size: 1.1rem;
    }

    .hs_modal_close {
        top: 10px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* --- Custom Alert Modal Styles --- */
.hs_alert_card {
    max-width: 400px;
    text-align: center;
    border-color: #ff3e3e;
    /* Warning Red */
}

.hs_alert_icon {
    width: 60px;
    height: 60px;
    background: #ff3e3e;
    color: #fff;
    font-size: 2rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 62, 62, 0.4);
}

.hs_alert_modal.hs_active .hs_modal_card {
    animation: hs_shake 0.4s ease-in-out;
}

@keyframes hs_shake {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-10px);
    }

    50% {
        transform: translateX(10px);
    }

    75% {
        transform: translateX(-5px);
    }
}




/* --- HIWS Gallery & Lightbox --- */
/* --- HIWS Visual Archive Grid --- */
.hiws_gallery_section {
    background: #050505;
    padding: 100px 20px;
    border-top: 1px solid #1a1a1a;
}

.hiws_gallery_container {
    max-width: 1800px;
    width: 96%;
    margin: 0 auto;
}

.hiws_gallery_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 140px;
    /* Highly precise row unit */
    grid-auto-flow: dense;
    gap: 12px;
    width: 100%;
}

@media (max-width: 1400px) {
    .hiws_gallery_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hiws_gallery_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hiws_gallery_grid {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }
}

.hiws_gallery_item {
    position: relative;
    width: 100%;
    height: 100%;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    grid-row: span 2;
    /* Default height */
}

/* Portrait: Showing bigger size (Taller) */
.hiws_gallery_item.hiws_portrait {
    grid-row: span 4;
}

/* Landscape: Increased "little bit" width and height */
.hiws_gallery_item.hiws_landscape {
    grid-column: span 2;
    grid-row: span 3;
}

.hiws_gallery_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s cubic-bezier(0.1, 0, 0.3, 1);
}






.hiws_gallery_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hiws_gallery_item:hover .hiws_gallery_img {
    transform: scale(1.02);
}

.hiws_gallery_overlay {
    display: none;
}



/* --- HIWS Heavy Weighted Hero --- */
.hiws_hero_section {
    height: 90vh;
    width: 100%;
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hiws_hero_bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    filter: brightness(0.6) contrast(1.2);
    transform: scale(1.05);
    transition: transform 10s ease;
}

.hiws_hero_section:hover .hiws_hero_bg {
    transform: scale(1.1);
}

.hiws_hero_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, #050505 100%);
    z-index: 1;
}

.hiws_hero_content {
    position: relative;
    z-index: 10;
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    text-align: left;
}

.hiws_hero_subtitle {
    color: #dfff00;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 15px;
    margin-bottom: 15px;
    display: block;
    font-size: 1.2rem;
    opacity: 0.9;
}

.hiws_hero_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(6rem, 20vw, 22rem);
    color: #fff;
    font-weight: 950;
    line-height: 0.75;
    letter-spacing: -12px;
    margin: 0;
    text-transform: uppercase;
    text-shadow: 0 20px 80px rgba(0, 0, 0, 0.8);
}

.hiws_hero_accent_text {
    position: absolute;
    bottom: -40px;
    right: 40px;
    font-family: 'Oswald', sans-serif;
    font-size: 8rem;
    font-weight: 900;
    color: transparent;
    -webkit-text-stroke: 10px rgb(0, 0, 0);
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: -2px;
}

@media (max-width: 1024px) {
    .hiws_hero_title {
        font-size: 12rem;
        letter-spacing: -6px;
    }

    .hiws_hero_accent_text {
        font-size: 5rem;
    }
}

/* --- HIWS 3D Vision Cube (Light Mode) --- */
:root {
    --cube-size: 500px;
    --cube-translate: 250px;
    --phase-font: 2.2rem;
}

@media (max-width: 1024px) {
    :root {
        --cube-size: 400px;
        --cube-translate: 200px;
        --phase-font: 1.8rem;
    }
}

@media (max-width: 600px) {
    :root {
        --cube-size: 280px;
        --cube-translate: 140px;
        --phase-font: 1.3rem;
    }
}

.hs_chennai_body {
    background: #000000;
    color: #111;
}

.hiws_cube_section {
    height: 90vh;
    /* Hero specific height */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 2000px;
    overflow: hidden;
    position: relative;
    touch-action: none;
    background: linear-gradient(-45deg, #ffffff, #f7f7f7, #f0f0f0, #e9e9e9);
    background-size: 400% 400%;
    animation: hiws_gradientWave 12s ease infinite;
}

@keyframes hiws_gradientWave {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.hiws_cube_container {
    width: var(--cube-size);
    height: var(--cube-size);
    position: relative;
    transform-style: preserve-3d;
    cursor: move;
}

.hiws_cube_face {
    position: absolute;
    width: var(--cube-size);
    height: var(--cube-size);
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    backface-visibility: visible;
    user-select: none;
    pointer-events: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.05);
}

.hiws_cube_face img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    transition: all 0.5s ease;
}

.hiws_cube_face .phase_label {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #111;
    background: rgba(255, 255, 255, 0.9);
    padding: 5px 12px;
    border: 1px solid #111;
    font-family: 'Oswald', sans-serif;
    font-weight: 950;
    font-size: var(--phase-font);
    text-transform: uppercase;
    z-index: 10;
}

.face_front {
    transform: translateZ(var(--cube-translate));
}

.face_back {
    transform: rotateY(180deg) translateZ(var(--cube-translate));
}

.face_left {
    transform: rotateY(-90deg) translateZ(var(--cube-translate));
}

.face_right {
    transform: rotateY(90deg) translateZ(var(--cube-translate));
}

.face_top {
    transform: rotateX(90deg) translateZ(var(--cube-translate));
}

.face_bottom {
    transform: rotateX(-90deg) translateZ(var(--cube-translate));
}

.hiws_cube_bg_text_large {
    position: absolute;
    font-family: 'Oswald', sans-serif;
    font-size: 20vw;
    font-weight: 950;
    color: rgba(0, 0, 0, 0.12);
    pointer-events: none;
    z-index: 0;
    white-space: nowrap;
}




.hiws_swipe_prompt {
    position: absolute;
    bottom: 30px;
    color: #888;
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    opacity: 0.5;
    animation: hiws_pulse 2s infinite;
}

@keyframes hiws_pulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.8;
    }
}

/* --- HIWS YouTube Archive Section (Dark Mode) --- */
.hiws_media_section {
    padding: 100px 20px;
    background: #050505;
}

.hiws_media_container {
    max-width: 1400px;
    margin: 0 auto;
}

.hiws_media_header {
    text-align: center;
    margin-bottom: 60px;
}

.hiws_media_title {
    font-family: 'Oswald', sans-serif;
    font-weight: 900;
    font-size: 3rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #fff;
}

.hiws_media_subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #dfff00;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.hiws_video_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

@media (max-width: 1200px) {
    .hiws_video_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hiws_video_grid {
        grid-template-columns: 1fr;
    }
}

.hiws_video_item {
    background: #0a0a0a;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.hiws_video_item:hover {
    transform: translateY(-5px);
    border-color: rgba(223, 255, 0, 0.2);
}

/* --- HIWS YouTube Thumbnail Style --- */
.hiws_video_link {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hiws_video_thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hiws_play_btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(223, 255, 0, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: all 0.3s ease;
    z-index: 5;
}

.hiws_video_link:hover .hiws_play_btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.hiws_play_icon {
    width: 0;
    height: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 20px solid #000;
    margin-left: 5px;
}

.hiws_video_wrapper {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.hiws_video_wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hiws_video_info {
    padding: 15px 5px;
}

.hiws_video_label {
    font-family: 'Oswald', sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

/* --- HS Testimonies Grid (Expanding Panels) --- */
.hs_testimonies_section {
    padding: 120px 20px;
    background: #0a0b0d;
    overflow: hidden;
}

.hs_testimonies_header {
    text-align: center;
    margin-bottom: 60px;
}

.hs_testimonies_title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    line-height: 1;
    margin-bottom: 10px;
}

.hs_testimonies_subtitle {
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.hs_testimony_flex {
    display: flex;
    width: 100%;
    height: 600px;
    gap: 15px;
    max-width: 1400px;
    margin: 0 auto;
}

.hs_testimony_item {
    position: relative;
    flex: 1;
    height: 100%;
    background: #111;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}

.hs_testimony_item.active {
    flex: 5;
}

.hs_testimony_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) brightness(0.7);
    transition: all 0.7s ease;
}

.hs_testimony_item.active .hs_testimony_img {
    filter: grayscale(0%) brightness(1);
}

.hs_testimony_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease 0.005s;
}

.hs_testimony_item.active .hs_testimony_overlay {
    opacity: 1;
    transform: translateY(0);
}

.hs_testimony_name {
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: #fdef32;
    margin-bottom: 15px;
    text-transform: uppercase;
    transition: all 0.4s ease;
}

/* Vertical Name for Collapsed Items (Desktop Only) */
@media (min-width: 901px) {
    .hs_testimony_item:not(.active) .hs_testimony_overlay {
        opacity: 1;
        transform: none;
        background: #fdef32e5;
        /* Dramatic solid brand color overlay */
        justify-content: center;
        align-items: center;
        padding: 0;
    }

    .hs_testimony_item:not(.active) .hs_testimony_name {
        transform: rotate(-90deg);
        white-space: nowrap;
        font-size: 1.8rem;
        color: #000;
        /* High contrast black text on green foundation */
        letter-spacing: 0.1em;
        margin: 0;
    }

    .hs_testimony_item:not(.active) .hs_testimony_text {
        display: none;
    }
}

@media (max-width: 900px) {
    .hs_testimony_flex {
        height: auto;
        flex-direction: column;
        gap: 10px;
    }

    .hs_testimony_item {
        flex: none;
        width: 100%;
        height: 80px;
        /* Thinner horizontal panels */
        border-radius: 4px;
    }

    .hs_testimony_item.active {
        height: 500px;
        /* Expands vertically */
    }

    .hs_testimony_overlay {
        padding: 30px 20px;
        /* background: rgba(0, 0, 0, 0.85); */
        justify-content: flex-end;
    }

    /* Solid identity for collapsed mobile bars */
    .hs_testimony_item:not(.active) .hs_testimony_overlay {
        opacity: 1;
        background: #fdef32;
        justify-content: center;
        align-items: center;
        padding: 0;
        transform: none;
    }

    .hs_testimony_item:not(.active) .hs_testimony_name {
        margin: 0;
        font-size: 1.2rem;
        color: #000;
        letter-spacing: 0.1em;
        /* Names are horizontal on mobile bars */
    }

    .hs_testimony_item:not(.active) .hs_testimony_text {
        display: none;
    }

    .hs_testimony_name {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

@media (min-width: 0px) {

    /* Legacy Spotlight Section - Architectural Grid Style */
    .hs_legacy_spot_section {
        padding: 100px 0;
        background: #08090b;
    }

    .hs_legacy_spot_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1px;
        background: #1a1a1a;
        border: 1px solid #1a1a1a;
        max-width: 1400px;
        margin: 0 auto;
    }

    .hs_legacy_spot_content {
        background: #08090b;
        padding: 100px 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hs_legacy_spot_label {
        color: #fdef32;
        font-family: 'Inter', sans-serif;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        font-size: 0.85rem;
        font-weight: 800;
        margin-bottom: 20px;
    }

    .hs_legacy_spot_title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(2.5rem, 5vw, 4rem);
        color: #fff;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 1.1;
        margin-bottom: 30px;
    }

    .hs_legacy_spot_desc {
        font-family: 'Inter', sans-serif;
        font-size: 1.1rem;
        color: #888;
        line-height: 1.8;
        margin-bottom: 40px;
    }

    .hs_legacy_spot_btn {
        display: inline-block;
        padding: 15px 40px;
        background: var(--btn-solid-bg);
        border: 1px solid #1a1a1a;
        color: var(--btn-solid-text);
        font-family: 'Inter', sans-serif;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.2em;
        font-size: 0.9rem;
        transition: all 0.4s ease;
        width: fit-content;
        text-decoration: none;
    }

    .hs_legacy_spot_btn:hover {
        background: var(--btn-ghost-hover-bg);
        color: var(--btn-ghost-hover-text);
        border-color: var(--btn-ghost-hover-bg);
        transform: translateY(-5px);
    }

    .hs_legacy_spot_visual {
        background: #08090b;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
    }

    .hs_legacy_spot_img {
        width: 100%;
        height: auto;
        display: block;
        object-fit: unset;
        filter: grayscale(30%) brightness(0.8);
        transition: transform 8s ease;
    }

    .hs_legacy_spot_grid:hover .hs_legacy_spot_img {
        transform: scale(1.1);
    }

    @media (max-width: 1024px) {
        .hs_legacy_spot_grid {
            grid-template-columns: 1fr;
            margin: 0 20px;
        }

        .hs_legacy_spot_content {
            padding: 60px 40px;
        }

        .hs_legacy_spot_visual {
            height: 400px;
            order: -1;
        }
    }
}

@media (min-width: 0px) {

    /* Vision for Revival: Layered Architectural UI */
    .hs_about2_section {
        padding: 140px 20px;
        background: #08090b;
        position: relative;
        overflow: hidden;
    }

    .hs_about2_container {
        max-width: 1400px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 1.15fr 0.85fr;
        gap: 120px;
        align-items: center;
    }

    /* Visual Stack on Left */
    .hs_about2_visual_stack {
        position: relative;
        padding-left: 60px;
    }

    .hs_about2_img_main_box {
        position: relative;
        width: 100%;
        aspect-ratio: 5/5;
        background: #111;
        overflow: hidden;
        clip-path: polygon(0 0, 100% 0, 100% 90%, 90% 100%, 0 100%);
    }

    .hs_about2_img_main {
        width: 100%;
        height: 100%;
        object-fit: cover;
        filter: grayscale(20%) contrast(1.1);
        transition: transform 1.5s ease;
    }

    .hs_about2_img_accent_line {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100px;
        height: 100px;
        border-left: 2px solid #fdef32;
        border-bottom: 2px solid #fdef32;
        z-index: 5;
    }

    .hs_about2_img_floating {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hs_about2_floating_label {
        position: absolute;
        bottom: 20px;
        right: 20px;
        color: #fdef32;
        font-family: 'Oswald', sans-serif;
        font-size: 0.8rem;
        font-weight: 800;
        letter-spacing: 0.2em;
    }

    /* Content on Right */
    .hs_about2_content_layered {
        position: relative;
    }

    .hs_about2_upper_label {
        display: block;
        font-family: 'Inter', sans-serif;
        color: #fdef32;
        font-size: 0.8rem;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: 0.4em;
        margin-bottom: 20px;
    }

    .hs_about2_main_title {
        font-family: 'Oswald', sans-serif;
        font-size: clamp(3rem, 7vw, 5.5rem);
        color: #fff;
        text-transform: uppercase;
        font-weight: 900;
        line-height: 0.95;
        margin-bottom: 40px;
    }

    .hs_about2_main_title span {
        color: transparent;
        -webkit-text-stroke: 1px rgba(255, 255, 255, 0.6);
    }

    .hs_about2_para {
        font-family: 'Inter', sans-serif;
        font-size: 1.15rem;
        color: #888;
        line-height: 1.9;
        margin-bottom: 50px;
        max-width: 500px;
    }

    .hs_about2_impact_row {
        display: flex;
        gap: 60px;
        margin-bottom: 60px;
        padding-top: 40px;
        border-top: 1px solid #1a1a1a;
    }

    .hs_about2_impact_val {
        display: block;
        font-family: 'Oswald', sans-serif;
        font-size: 2.5rem;
        color: #fff;
        font-weight: 900;
    }

    .hs_about2_impact_txt {
        font-family: 'Inter', sans-serif;
        font-size: 0.8rem;
        color: #555;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .hs_about2_explore_btn {
        display: inline-block;
        padding: 18px 45px;
        background: transparent;
        border: 1px solid var(--btn-outline-accent);
        color: var(--btn-outline-accent);
        font-family: 'Oswald', sans-serif;
        text-transform: uppercase;
        font-weight: 700;
        letter-spacing: 0.2em;
        text-decoration: none;
        transition: all 0.4s ease;
    }

    .hs_about2_explore_btn:hover {
        background: var(--btn-outline-hover-bg);
        color: var(--btn-outline-hover-text);
        transform: translateX(10px);
    }

    @media (max-width: 1200px) {
        .hs_about2_section {
            padding: 80px 20px;
        }

        .hs_about2_container {
            grid-template-columns: 1fr;
            gap: 80px;
        }

        .hs_about2_visual_stack {
            padding-left: 0;
            max-width: 600px;
            margin: 0 auto;
        }
    }

    @media (max-width: 1024px) {
        .hs_about2_main_title {
            font-size: clamp(3.0rem, 10vw, 5rem);
        }
    }

    @media (max-width: 768px) {
        .hs_about2_main_title {
            font-size: 2.8rem;
            margin-bottom: 25px;
        }

        .hs_about2_para {
            font-size: 1.1rem;
            margin-bottom: 35px;
        }

        .hs_about2_impact_row {
            flex-direction: column;
            gap: 30px;
            padding-top: 30px;
            margin-bottom: 40px;
        }

        .hs_about2_explore_btn {
            width: 100%;
            text-align: center;
        }
    }

    @media (max-width: 480px) {
        .hs_about2_section {
            padding: 60px 15px;
        }

        .hs_about2_img_main_box {
            clip-path: none;
            border-radius: 4px;
        }

        .hs_about2_img_accent_line {
            display: none;
        }

        .hs_about2_main_title {
            font-size: 2.2rem;
        }

        .hs_about2_impact_val {
            font-size: 2.2rem;
        }
    }
}

/* --- Impact of Freedom Page Styles --- */
.hs_impact_hero {
    height: 80vh;
    background: #050608;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hs_impact_hero_bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 210, 255, 0.15) 0%, transparent 50%),
        #050608;
    z-index: 1;
}

.hs_impact_hero_mesh {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 2;
    opacity: 0.5;
    mask-image: radial-gradient(circle, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black, transparent 80%);
}

.hs_impact_hero_glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.1) 0%, transparent 60%);
    transform: translate(-50%, -50%);
    z-index: 3;
    filter: blur(100px);
    animation: hs_glow_pulse 8s infinite alternate ease-in-out;
}

@keyframes hs_glow_pulse {
    from {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.8;
    }
}

.hs_impact_hero_content {
    position: relative;
    z-index: 10;
    max-width: 1200px;
}

.hs_impact_hero_label {
    display: block;
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.8em;
    font-size: clamp(0.9rem, 1.5vw, 1.2rem);
    font-weight: 800;
    margin-bottom: 30px;
    opacity: 0;
    animation: hs_fade_up 1s forwards 0.3s;
}

.hs_impact_hero_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 15vw, 12rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 950;
    line-height: 0.85;
    letter-spacing: -0.04em;
    opacity: 0;
    animation: hs_fade_up 1s forwards 0.5s;
}

.hs_impact_hero_title span {
    background: linear-gradient(90deg, #fdef32, #00d2ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

@keyframes hs_fade_up {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hs_impact_hero {
        height: 60vh;
    }

    .hs_impact_hero_label {
        letter-spacing: 0.4em;
    }
}

/* --- Dynamic Impact Section Styles --- */
.hs_impact_tabs_section {
    padding-top: 70px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
    background: #08090b;
}

.hs_impact_tabs_container {
    max-width: 1400px;
    margin: 0 auto;
}

.hs_impact_tabs_grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 100px;
    align-items: flex-start;
}

.hs_impact_sublabel {
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 20px;
    display: block;
}

.hs_impact_main_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 950;
    line-height: 1;
    margin-bottom: 60px;
}

.hs_impact_tabs_wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hs_impact_tab_item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px 0;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
}

.hs_tab_header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.hs_tab_num {
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    color: #444;
    transition: color 0.4s ease;
}

.hs_tab_title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: all 0.4s ease;
}

.hs_tab_body {
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    opacity: 0;
}

.hs_tab_body p {
    font-family: 'Inter', sans-serif;
    color: #888;
    line-height: 1.8;
    padding-top: 25px;
    font-size: 1rem;
    max-width: 500px;
}

.hs_impact_tab_item.active .hs_tab_num {
    color: #fdef32;
}

.hs_impact_tab_item.active .hs_tab_title {
    color: #fff;
    letter-spacing: 0.15em;
}

.hs_impact_tab_item.active .hs_tab_body {
    max-height: 200px;
    opacity: 1;
}

.hs_tab_progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.02);
    overflow: hidden;
}

.hs_tab_progress_bar {
    width: 0%;
    height: 100%;
    background: #fdef32;
    transition: width 0.1s linear;
}

.hs_impact_tabs_right {
    position: sticky;
    top: 140px;
}

.hs_impact_visual_frame {
    position: relative;
    background: #111;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.7);
}

.hs_impact_tab_img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: all 1s ease;
    transform: scale(1.1);
    filter: grayscale(30%) brightness(0.7);
}

.hs_impact_tab_img.active {
    opacity: 1;
    transform: scale(1);
    filter: grayscale(0%) brightness(1);
    z-index: 5;
}

.hs_impact_visual_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.2), transparent);
    z-index: 6;
    pointer-events: none;
}

@media (max-width: 1024px) {
    .hs_impact_tabs_grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hs_impact_tabs_right {
        position: relative;
        top: 0;
        order: -1;
    }
}

/* --- Global Transformation Dossier: Blog-Style Narrative --- */
.hs_impact_article {
    padding-top: 20px;
    padding-bottom: 50px;
    padding-right: 20px;
    padding-left: 20px;
    background: #08090b;
}

.hs_impact_article_container {
    max-width: 900px;
    margin: 0 auto;
}

.hs_impact_article_intro {
    margin-bottom: 80px;
}

.hs_impact_article_label {
    display: block;
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5em;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.hs_impact_article_subhead {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: #fff;
    text-transform: uppercase;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 40px;
}

.hs_impact_article_para {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    color: #888;
    line-height: 1.9;
    margin-bottom: 40px;
}

.hs_impact_article_para strong {
    color: #fff;
}

.hs_impact_cinematic_break {
    width: 100%;
    margin: 80px 0;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    overflow: hidden;
}

.hs_impact_cinematic_img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    filter: brightness(0.7) contrast(1.1);
    display: block;
}

.hs_impact_article_title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: #fff;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 30px;
    margin-top: 80px;
}

/* Archival Grids */
.hs_impact_archival_grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 80px 0;
}

.hs_impact_archival_item {
    position: relative;
}

.hs_impact_archival_img {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border: 1px solid #1a1a1a;
    filter: grayscale(40%) contrast(1.1);
    transition: all 0.5s ease;
}

.hs_impact_archival_img:hover {
    filter: grayscale(0%) contrast(1.2);
}

.hs_impact_img_caption {
    display: block;
    margin-top: 15px;
    font-family: 'Courier New', monospace;
    font-size: 0.75rem;
    color: #444;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

/* Editorial Pull Quote */
.hs_impact_editorial_callout {
    background: rgba(0, 255, 136, 0.03);
    border-left: 4px solid #fdef32;
    padding: 60px;
    margin: 80px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 2.2rem;
    color: #fff;
    line-height: 1.3;
    text-transform: uppercase;
    backdrop-filter: blur(20px);
}

@media (max-width: 1024px) {
    .hs_impact_cinematic_img {
        height: 400px;
        width: 100%;
        left: 0;
        right: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .hs_impact_archival_grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hs_impact_editorial_callout {
        padding: 40px 30px;
        font-size: 1.6rem;
    }

    .hs_impact_article_para {
        font-size: 1.1rem;
    }
}

/* --- Miracles & Testimonies Page Components --- */
.hs_miracles_hero {
    position: relative;
    width: 100%;
    height: 60vh;
    background: #08090b;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    border-bottom: 2px solid #1a1a1a;
}

.hs_miracles_hero_bg {
    position: absolute;
    inset: 0;
    opacity: 0.15;
    background: radial-gradient(circle, #fdef32 0%, transparent 70%);
    pointer-events: none;
}

.hs_miracles_hero_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 0.9;
}

.hs_miracles_hero_subtitle {
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.4em;
    font-size: 1rem;
    margin-top: 20px;
}

/* --- Miracles & Testimonies Premium Grid --- */
.hs_miracle_chronicle {
    padding: 120px 0;
    background: #08090b;
    position: relative;
    overflow: hidden;
    counter-reset: miracle-counter;
}

/* Atmospheric Digital Grid & Orbs */
.hs_miracle_chronicle::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 255, 136, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 145, 241, 0.05) 0%, transparent 50%),
        radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 100% 100%, 100% 100%, 40px 40px;
    pointer-events: none;
    z-index: 0;
}

/* Background Watermark Text */
.hs_miracle_chronicle::after {
    content: 'REVIVAL';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-10deg);
    font-family: 'Oswald', sans-serif;
    font-size: clamp(10rem, 30vw, 40rem);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.015);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    z-index: 0;
    letter-spacing: -0.05em;
}

.hs_miracle_grid {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr;
    position: relative;
    z-index: 1;
}

/* Tablet & Desktop: 3 columns */
@media (min-width: 768px) {
    .hs_miracle_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

.hs_miracle_item {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    counter-increment: miracle-counter;
}

/* Decorative Number */
.hs_miracle_item::before {
    content: counter(miracle-counter, decimal-leading-zero);
    position: absolute;
    top: 20px;
    right: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    z-index: 2;
    transition: all 0.4s ease;
    pointer-events: none;
}

.hs_miracle_item:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: rgba(0, 255, 136, 0.3);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 255, 136, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.hs_miracle_item:hover::before {
    color: rgba(0, 255, 136, 0.2);
    transform: translateY(-5px);
}

.hs_miracle_visual_wrapper {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative;
}

.hs_miracle_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.hs_miracle_item:hover .hs_miracle_img {
    transform: scale(1.1);
}

/* Shine effect on hover */
.hs_miracle_visual_wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.1),
            transparent);
    transform: skewX(-25deg);
    transition: 0.75s;
    pointer-events: none;
}

.hs_miracle_item:hover .hs_miracle_visual_wrapper::after {
    left: 150%;
}

.hs_miracle_content_wrapper {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
}

.hs_miracle_desc {
    color: #9ca3af;
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

.hs_miracle_desc p {
    margin: 0;
}

@media (max-width: 600px) {
    .hs_miracles_hero_title {
        font-size: 3.5rem;
    }

    .hs_miracle_grid {
        padding: 0 20px;
    }
}

/* --- Archive Timeline Section --- */
.timeline-line::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(3rem - 2px);
    width: 4px;
    background: #333;
    z-index: 0;
}

.text-outline {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
    color: transparent;
}

@media (min-width: 768px) {
    .timeline-line::before {
        left: 50%;
        transform: translateX(-50%);
    }
}

.reveal-node {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-node.active {
    opacity: 1;
    transform: translateY(0);
}

.gallery-img {
    transition: transform 0.4s ease, opacity 0.6s ease;
}

.gallery-img:hover {
    transform: scale(1.05);
}


/* New Testimony Grid Style */
.hs_testimony_grid_section {
    padding: 100px 0;
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.hs_testimony_grid_container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.hs_tg_header {
    text-align: center;
    margin-bottom: 60px;
}

.hs_tg_subtitle {
    display: block;
    color: #dfff00;
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.hs_tg_title {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    text-transform: uppercase;
}

.hs_tg_grid {
    display: grid;
    gap: 30px;
    margin-bottom: 60px;
}

/* Default Mobile: 1 grid */
.hs_tg_grid {
    grid-template-columns: 1fr;
}

/* Tablet: 3 grid */
@media (min-width: 768px) and (max-width: 1199px) {
    .hs_tg_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Desktop: 4 grid */
@media (min-width: 1200px) {
    .hs_tg_grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.hs_tg_card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--btn-outline-hover-bg);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    backdrop-filter: blur(10px);
    border-color: rgba(221, 255, 0, 0.213);
}

.hs_tg_card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(223, 255, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(223, 255, 0, 0.05);
}

.hs_tg_img_box {
    width: 100%;
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative;
}


.hs_tg_img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hs_tg_card:hover .hs_tg_img {
    transform: scale(1.08);
}

.hs_tg_content {
    padding: 15px;
}

.hs_tg_name {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.3;
}

.hs_tg_text {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
    display: -webkit-box;

    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hs_tg_footer {
    text-align: center;
}

.hs_tg_yt_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    padding: 8px 16px;
    border: 1px solid var(--btn-solid-bg);
    color: var(--btn-solid-bg);
    background: transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hs_tg_yt_btn:hover {
    background: #ff0000;
    border-color: #ff0000;
    color: #fff;
}

.hs_tg_yt_icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

img[loading="lazy"] {
    opacity: 0;
}

img.loaded {
    opacity: 1;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
body { background-color: #08090b; color: #ffffff; }

.hs_about_hero {
    position: relative; width: 100%; height: 90vh;
    background: #08090b; display: flex;
    align-items: center; justify-content: flex-end;
    padding-right: 10%; overflow: hidden;
    border-bottom: 3px solid #1a1a1a;
}
.hs_about_hero_left {
    position: absolute; top: 0; left: 0;
    width: 50%; height: 100%; z-index: 1; overflow: hidden;
}
.hs_about_hero_img { width: 100%; height: 100%; object-fit: cover; }
.hs_about_hero_overlay_glow {
    position: absolute; top: 0; left: 50%; width: 50%; height: 100%;
    background: linear-gradient(90deg, rgba(0,255,136,0.05) 0%, transparent 100%);
    z-index: 2; pointer-events: none;
}
.hs_about_hero_right { position: relative; z-index: 10; max-width: 800px; text-align: right; }
.hs_about_hero_tagline {
    font-family: 'Inter', sans-serif; font-size: 1.2rem; color: #fdef32;
    letter-spacing: 0.8em; text-transform: uppercase; font-weight: 800;
    margin-bottom: 20px; display: block; text-shadow: 0 0 20px rgba(0,255,136,0.3);
}
.hs_about_hero_title {
    font-family: 'Oswald', sans-serif; font-size: clamp(4rem, 10vw, 11rem);
    font-weight: 950; text-transform: uppercase; color: #fff;
    line-height: 0.8; margin: 0; letter-spacing: -0.04em;
}
.hs_about_hero_title span {
    display: block;
    background: linear-gradient(135deg, #fdef32 0%, #00d2ff 100%);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: clamp(3rem, 7vw, 7.5rem); margin-bottom: -10px;
}
.hs_about_hero_accent_line {
    width: 120px; height: 4px; background: #fdef32;
    margin-left: auto; margin-top: 40px;
    box-shadow: 0 0 20px rgba(0,255,136,0.5);
}

.hs_about_mission_section { padding: 30px 20px; background: #08090b; }
.hs_about_container { max-width: 1200px; margin: 0 auto; }
.hs_mission_grid {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: #1a1a1a;
    border: 1px solid #1a1a1a; margin-top: 50px;
}
.hs_mission_text_item { position: relative; background: #08090b; padding: 80px 40px; }
.hs_mission_label {
    color: #fdef32; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 0.3em;
    font-size: 0.9rem; margin-bottom: 15px; display: block;
}
.hs_mission_title {
    font-family: 'Oswald', sans-serif; font-size: 3rem; color: #fff;
    text-transform: uppercase; margin-bottom: 25px; line-height: 1.1;
}
.hs_mission_desc { font-family: 'Inter', sans-serif; color: #999; line-height: 1.8; font-size: 1.1rem; }

.hs_founder_section {
    padding: 140px 20px; background: #0a0b0d;
    border-top: 1px solid #1a1a1a; border-bottom: 1px solid #1a1a1a;
}
.hs_founder_grid {
    display: grid; grid-template-columns: 0.8fr 1.2fr;
    gap: 100px; align-items: center;
    max-width: 1400px; margin: 0 auto;
}
.hs_founder_img_wrapper {
    position: relative; aspect-ratio: 4/5;
    border-radius: 4px; overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.hs_founder_img { width: 100%; height: 100%; object-fit: cover; }
.hs_founder_content { text-align: left; }
.hs_about_quote {
    font-family: 'Oswald', sans-serif; font-size: 2.2rem;
    font-weight: 700; color: #fff; line-height: 1.3;
    margin-bottom: 40px; position: relative;
    padding-left: 30px; border-left: 4px solid #fdef32;
}
.hs_founder_bio { color: #888; font-family: 'Inter', sans-serif; line-height: 1.8; margin-bottom: 30px; }
.hs_founder_name { font-family: 'Oswald', sans-serif; font-size: 1.5rem; color: #fdef32; text-transform: uppercase; font-weight: 800; }
.hs_founder_title_label { color: #555; font-family: 'Inter', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; font-size: 0.8rem; }

.hs_values_section { padding: 20px 20px; text-align: center; }
.hs_values_grid {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 0; background: transparent;
    border: 1px solid #1a1a1a; margin-top: 60px;
}
.hs_value_card { background: #08090b; padding: 80px 40px; transition: all 0.4s ease; }
.hs_value_card:hover { background: #0a0b0d; }
.hs_value_icon { font-size: 2.5rem; color: #fdef32; margin-bottom: 25px; display: block; }
.hs_value_title { font-family: 'Oswald', sans-serif; font-size: 1.8rem; color: #fff; margin-bottom: 15px; text-transform: uppercase; }
.hs_value_desc { color: #666; line-height: 1.6; font-size: 0.95rem; }

.hs_about_impact_section {
    padding: 140px 20px; background: #08090b;
    text-align: center; border-top: 1px solid #1a1a1a;
}
.hs_impact_stats_grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 80px; }
.hs_stat_item { position: relative; }
.hs_stat_value {
    font-family: 'Oswald', sans-serif; font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 950; color: #fff; line-height: 1; margin-bottom: 10px;
    background: linear-gradient(180deg, #fff, rgba(255,255,255,0.2));
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hs_stat_label { font-family: 'Inter', sans-serif; font-size: 1.1rem; color: #fdef32; text-transform: uppercase; letter-spacing: 0.3em; font-weight: 700; }


.hs_about_cta {
    padding: 160px 20px;
    background: linear-gradient(rgba(0,0,0,0.582), rgba(0,0,0,0.541)), url('/images/about/freedom-is-not-just-a-concert.webp');
    background-size: cover; background-position: center;
    background-attachment: fixed; text-align: center; position: relative;
}
.hs_cta_content { max-width: 800px; margin: 0 auto; }
.hs_cta_title {
    font-family: 'Oswald', sans-serif; font-size: clamp(3rem, 7vw, 5rem);
    color: #fff; text-transform: uppercase; font-weight: 900;
    line-height: 1; margin-bottom: 30px;
}

/* --- OUR CORE VALUES: dashed top + left lines + dashed line under icon --- */
.hs_value_card {
    position: relative;
    border-top: 2px dashed rgba(253, 239, 50, 0.22);
}
.hs_value_card:not(:first-child) { border-left: 2px dashed rgba(253, 239, 50, 0.22); }
.hs_value_card:hover { border-top-color: rgba(253, 239, 50, 0.6); border-left-color: rgba(253, 239, 50, 0.6); }
.hs_value_icon::after {
    content: '';
    display: block;
    width: 48px;
    margin: 10px auto 0;
    border-top: 1px dashed rgba(253, 239, 50, 0.4);
}

/* --- OUR GLOBAL IMPACT: short centered dashed line above + vertical dashes between stats --- */
.hs_stat_item { padding-top: 32px; }
.hs_stat_item::before {
    content: '';
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 56px;
    border-top: 2px dashed rgba(253, 239, 50, 0.4);
}
.hs_stat_item:not(:first-child) { border-left: 2px dashed rgba(253, 239, 50, 0.22); }


@media (max-width: 1024px) {
    .hs_about_hero { height: auto; padding: 100px 20px; justify-content: center; }
    .hs_about_hero_left { display: none; }
    .hs_about_hero_right { text-align: center; }
    .hs_about_hero_tagline { letter-spacing: 0.4em; }
    .hs_about_hero_accent_line { margin: 30px auto; }
    .hs_mission_grid, .hs_founder_grid { grid-template-columns: 1fr; gap: 60px; }
    .hs_founder_img_wrapper { max-width: 500px; margin: 0 auto; }
    .hs_impact_stats_grid { grid-template-columns: 1fr; }
    .hs_values_grid { grid-template-columns: 1fr; }
    .hs_value_card:not(:first-child) { border-left: none; }
    .hs_stat_item:not(:first-child) { border-left: none; }
    .hs_journey_grid { grid-template-columns: 1fr 1fr; }
    .hs_journey_card:nth-child(odd) { border-left: none; }
}

@media (max-width: 640px) {
    .hs_journey_grid { grid-template-columns: 1fr; }
    .hs_journey_card:not(:first-child) { border-left: none; }
    .hs_cta_content .hs_nav_btn_primary { padding: 14px 28px !important; font-size: 1rem !important; }
}


/* ============================================================
   GENESIS PAGE
   ============================================================ */
.hs_genesis_hero {
    height: 70vh;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), #08090b), url('/images/freedom-chennai-2026-stage.webp');
    background-size: cover; background-position: center;
    display: flex; align-items: center; justify-content: center;
    text-align: center; padding: 0 20px;
}
.hs_genesis_hero_content { max-width: 1000px; }
.hs_genesis_label {
    color: #fdef32; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 0.5em;
    font-size: 1rem; font-weight: 800;
    margin-bottom: 20px; display: block;
}
.hs_genesis_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 5vw, 8rem);
    color: #fff; text-transform: uppercase;
    font-weight: 950; line-height: 0.9;
}

.hs_genesis_article { background: #08090b; padding: 20px 0 100px; }
.hs_genesis_container { max-width: 900px; margin: 0 auto; padding: 0 20px; }

.hs_genesis_para {
    font-family: 'Inter', sans-serif; font-size: 1.25rem;
    color: #aaa; line-height: 2; margin-bottom: 40px;
}
.hs_genesis_para strong { color: #fff; font-weight: 700; }

.hs_genesis_full_img {
    width: 100%; height: auto; object-fit: cover;
    margin: 20px 0; border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    filter: brightness(0.8) contrast(1.1);
}
.hs_genesis_grid_imgs {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 1px; background: #1a1a1a;
    border: 1px solid #1a1a1a; margin: 80px 0;
}
.hs_genesis_grid_img {
    width: 100%; aspect-ratio: 16/10; object-fit: cover;
    display: block; filter: grayscale(30%); transition: all 0.5s ease;
}
.hs_genesis_grid_img:hover { filter: grayscale(0%); }

.hs_genesis_callout {
    background: rgba(255,255,255,0.03);
    border-left: 4px solid #fdef32;
    padding: 40px; margin: 80px 0;
    backdrop-filter: blur(10px);
}
.hs_genesis_callout_text {
    font-family: 'Oswald', sans-serif; font-size: 1.5rem;
    color: #fff; line-height: 1.5; text-transform: uppercase;
}
.hs_genesis_subhead {
    font-family: 'Oswald', sans-serif; font-size: 2.5rem;
    color: #fff; text-transform: uppercase;
    margin-bottom: 40px; margin-top: 80px; letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .hs_genesis_grid_imgs { grid-template-columns: 1fr; }
    .hs_genesis_callout { padding: 40px 30px; }
    .hs_genesis_callout_text { font-size: 1.5rem; }
    .hs_genesis_subhead { font-size: 2rem; }
    .hs_genesis_para { font-size: 1.1rem; }
}


/* ============================================================
   PARTNERS PAGE
   ============================================================ */
.hs_partners_hero {
    position: relative; width: 100%; height: 85vh;
    background: #000; display: flex;
    align-items: center; justify-content: center;
    overflow: hidden; text-align: center;
}
.hs_partners_map_bg { position: absolute; inset: 0; z-index: 1; }
.hs_partners_map_img {
    width: 100%; height: 100%; object-fit: cover;
    filter: brightness(0.9) contrast(1.2) saturate(1.1);
}
.hs_partners_hero_overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, #08090b 5%, transparent 40%, #08090b 95%);
    z-index: 2;
}
.hs_partners_hero_content { position: relative; z-index: 10; }
.hs_partners_hero_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(3.5rem, 12vw, 9rem);
    font-weight: 950; text-transform: uppercase;
    color: #fff; line-height: 0.9;
    margin-bottom: 25px; letter-spacing: -0.01em;
    text-shadow: 0 10px 40px rgba(0,0,0,0.9);
}
.hs_partners_hero_title span {
    display: block;
    background: linear-gradient(90deg, #fdef32, #00d2ff);
    background-clip: text; -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hs_partners_hero_tagline {
    font-family: 'Inter', sans-serif; font-size: 1.2rem;
    color: #fdef32; letter-spacing: 0.5em;
    text-transform: uppercase; font-weight: 700; opacity: 0.9;
}

.hs_partners_section { padding: 20px 20px; background: #08090b; }
.hs_partners_container { max-width: 1400px; margin: 0 auto; }
.hs_partners_header { text-align: center; margin-bottom: 80px; }
.hs_partners_subtitle {
    color: #fdef32; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 0.3em;
    font-size: 0.9rem; margin-bottom: 10px; display: block;
}
.hs_partners_main_title {
    font-family: 'Oswald', sans-serif; font-size: 3.5rem;
    color: #fff; text-transform: uppercase;
}

.hs_partner_grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px; margin-bottom: 100px;
}
.hs_partner_card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px; padding: 50px 40px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23,1,0.32,1);
    position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.hs_partner_card:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.06);
    border-color: rgba(0,255,136,0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.hs_partner_icon_bg {
    width: 80px; height: 80px;
    background: rgba(0,255,136,0.1);
    border-radius: 50%; display: flex;
    align-items: center; justify-content: center;
    margin-bottom: 25px; color: #fdef32;
    font-size: 2rem; transition: all 0.4s ease;
}
.hs_partner_tier_name {
    font-family: 'Oswald', sans-serif; font-size: 2rem;
    color: #fff; margin-bottom: 15px; text-transform: uppercase;
}
.hs_partner_tier_desc {
    font-family: 'Inter', sans-serif; color: #999;
    line-height: 1.6; margin-bottom: 30px;
}
.hs_partner_cta {
    padding: 12px 30px; border: 1px solid var(--btn-outline-accent);
    background: transparent; color: var(--btn-outline-accent);
    font-family: 'Oswald', sans-serif; text-transform: uppercase;
    font-weight: 700; border-radius: 4px; cursor: pointer;
    transition: all 0.3s ease; text-decoration: none;
}
.hs_partner_cta:hover { background: var(--btn-outline-hover-bg); color: var(--btn-outline-hover-text); }

.hs_partner_stats {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px; padding: 80px 40px;
    background: rgba(255,255,255,0.02);
    border-radius: 12px; text-align: center;
}
.hs_stat_num {
    font-family: 'Oswald', sans-serif; font-size: 3.5rem;
    font-weight: 800; color: #fff; display: block;
}
.hs_stat_label {
    color: #fdef32; font-family: 'Inter', sans-serif;
    text-transform: uppercase; letter-spacing: 0.15em; font-size: 1rem;
}

.hs_partner_form_section { padding: 100px 20px; background: #050608; position: relative; }
.hs_partner_form_container {
    max-width: 800px; margin: 0 auto;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(10px); border-radius: 12px;
    padding: 60px; box-shadow: 0 40px 100px rgba(0,0,0,0.5);
}
.hs_form_group { margin-bottom: 25px; }
.hs_form_label {
    display: block; font-family: 'Oswald', sans-serif;
    text-transform: uppercase; color: #ccc;
    margin-bottom: 8px; font-size: 0.8rem; letter-spacing: 0.1em;
}
.hs_form_input, .hs_form_select, .hs_form_textarea {
    width: 100%; background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 4px; padding: 15px; color: #fff;
    font-family: 'Inter', sans-serif; font-size: 1rem;
    transition: all 0.3s ease;
}
.hs_form_input:focus, .hs_form_select:focus, .hs_form_textarea:focus {
    outline: none; border-color: #fdef32;
    background: rgba(255,255,255,0.08);
    box-shadow: 0 0 15px rgba(0,255,136,0.2);
}
.hs_form_select option { background-color: #1a1c22; color: #fff; }
.hs_form_grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hs_form_submit {
    width: 100%;
    background: linear-gradient(90deg, #fdef32, #00d2ff);
    border: none; padding: 18px; color: #000;
    font-family: 'Oswald', sans-serif; font-size: 1.1rem;
    font-weight: 800; text-transform: uppercase;
    letter-spacing: 0.1em; border-radius: 4px;
    cursor: pointer; transition: all 0.4s cubic-bezier(0.23,1,0.32,1);
    margin-top: 20px;
}
.hs_form_submit:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,255,136,0.4);
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .hs_form_grid { grid-template-columns: 1fr; }
    .hs_partner_form_container { padding: 40px 20px; }
    .hs_partners_main_title { font-size: 2.5rem; }
    .hs_partner_card { padding: 40px 20px; }
}


/* ============================================================
   FREEDOM 2026 — MASONRY GALLERY
   ============================================================ */

.hs_mason_section {
    background: #08090b;
    padding: 100px 0 0;
}

.hs_mason_header {
    text-align: center;
    padding: 0 20px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hs_mason_sublabel {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fdef32;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.55em;
    text-transform: uppercase;
    margin-bottom: 20px;
}
.hs_mason_sublabel::before,
.hs_mason_sublabel::after {
    content: '';
    display: block;
    width: 50px;
    height: 1px;
    background: #fdef32;
    opacity: 0.5;
}

.hs_mason_title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    line-height: 0.95;
    margin: 0;
}
.hs_mason_title em {
    font-style: normal;
    color: #fdef32;
}

/* Grid */
.hs_mason_grid {
    column-count: 4;
    column-gap: 4px;
    padding: 0 4px;
}

.hs_mason_item {
    break-inside: avoid;
    display: block;
    position: relative;
    margin-bottom: 4px;
    overflow: hidden;
    cursor: default;
    text-decoration: none;
    background: #111;
}

.hs_mason_img {
    width: 100%;
    height: auto;
    display: block;
}


.hs_mason_item_overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.72) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.35s ease;
    display: flex;
    align-items: flex-end;
    padding: 14px 16px;
}
.hs_mason_item:hover .hs_mason_item_overlay {
    opacity: 1;
}

.hs_mason_size_tag {
    font-family: 'Oswald', sans-serif;
    font-size: 0.7rem;
    color: #fdef32;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 255, 136, 0.35);
    padding: 3px 9px;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
}


/* ── Divider ── */
.hs_mason_divider {
    margin-top: 60px;
    padding: 36px 40px;
    display: flex;
    align-items: center;
    gap: 0;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.06);
    position: relative;
}
.hs_mason_divider_ticker {
    display: flex;
    align-items: center;
    gap: 32px;
    animation: hs_ticker_scroll 22s linear infinite;
    white-space: nowrap;
    flex-shrink: 0;
}
.hs_mason_divider_ticker span {
    font-family: 'Oswald', sans-serif;
    font-size: 0.72rem;
    letter-spacing: 0.45em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.18);
}
.hs_mason_divider_ticker span.hs_mason_accent {
    color: #fdef32;
    opacity: 0.6;
}
@keyframes hs_ticker_scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ── Responsive ── */
@media (max-width: 1200px) {
    .hs_mason_grid { column-count: 3; }
}
@media (max-width: 768px) {
    .hs_mason_section { padding: 60px 0 0; }
    .hs_mason_grid { column-count: 2; }
}
@media (max-width: 420px) {
    .hs_mason_grid { column-count: 1; }
}
