:root {
    --PrimaryColor: #E1AC4C;
    /* Added specific gold for sections */
    --BlackColor: #000;
    --WhiteColor: #FFFFFF;


    --surface: #0F0F0F;
    --secondary-surface: #1A1A1A;

    --text-muted: #9CA3AF;
    --border-subtle: #2A2A2A;
    --dark-gray: #121212;

    --font-family: 'Inter', sans-serif;



}

/* Base Styles */
html {

    scroll-behavior: smooth;    scroll-padding-top: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--BlackColor);
    color: var(--WhiteColor);
    font-family: var(--font-family);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Questrial", sans-serif;
}

p {
    font-family: "Inter", sans-serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

img {
    max-width: 100%;
    display: block;
}



.same-section {
    padding: clamp(5rem, 7vw, 5rem) 0;
}

.same-heading {
    margin-bottom: 4rem;
}

.same-heading h2 {
    color: var(--BlackColor);
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.6rem;
}

.same-heading h3 {
    color: var(--BlackColor);
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0.6rem;
}

.same-heading p {
    color: #545454;
    font-size: 0.9rem;
    font-weight: 400;
    line-height: 1.7;
}

/* Typography Overrides */
h1 {
    font-size: 4.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 3rem;
    font-weight: 700;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

body {
    font-size: 1rem;
    font-weight: 400;
}

.small-text {
    font-size: 0.875rem;
    font-weight: 400;
}

.text-uppercase-label {
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* Section Spacing */
.section-padding {
    padding-top: 6rem;
    padding-bottom: 6rem;
}



/* Colors & Components */
.bg-surface {
    background-color: var(--surface);
}

.bg-dark-gray {
    background-color: var(--dark-gray);
}

.text-primary {
    color: var(--PrimaryColor) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Buttons */
.btn {
    border-radius: 0;
    font-size: 0.9rem;
    padding: 0.6rem 1.5rem;
    font-family: "Questrial", sans-serif;
    font-weight: 400;
    text-transform: capitalize;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.btn svg {
    width: 1rem;
}

.btn-primary {
    background-color: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
    color: var(--WhiteColor);
}

.btn-primary:hover {
    background-color: var(--BlackColor) !important;
    border-color: var(--PrimaryColor) !important;
    color: var(--PrimaryColor)!important;
}

.btn-outline-light {
    border-color: var(--WhiteColor);
    color: var(--WhiteColor);
}

.btn-outline-light:hover {
    background: var(--WhiteColor) !important;
    color: var(--BlackColor) !important;
    border-color: var(--WhiteColor) !important;
}

.btn-outline-primary {
    border-color: var(--PrimaryColor);
    color: var(--PrimaryColor);
}

.btn-outline-primary:hover {
    background: var(--PrimaryColor) !important;
    color: var(--BlackColor) !important;
    border-color: var(--PrimaryColor) !important;
}

.btn-dark {
    background-color: var(--BlackColor);
    border-color: var(--BlackColor);
    color: var(--WhiteColor);
}

.btn-dark:hover {
    background-color: var(--PrimaryColor) !important;
    border-color: var(--BlackColor) !important;
    color: var(--BlackColor) !important;
}


.btn-outline-dark {
    border-color: var(--BlackColor);
    color: var(--BlackColor);
    font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-outline-dark:hover {
    background: var(--BlackColor) !important;
    border-color: var(--BlackColor) !important;
    color: var(--WhiteColor) !important;
}






@media (max-width: 1920px) and (min-width: 1199px) {
    .container {
        max-width: 90%;
    }
}






/* =========================================
   1. NAVBAR
   ========================================= */


.header {
      /* position: relative;
  backdrop-filter: blur(8px); 
    padding: 1rem 0;     z-index: 999;
    transition: all 0.3s ease;*/

    position: relative;
    width: 100%;
    z-index: 999;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.65); /* ADD THIS */
    transition: background 0.3s ease, padding 0.3s ease;
}

.header.headerfix {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    background: #000;   /* SOLID background */
    padding: 0.9rem 0;
    z-index: 1001;  
    animation: headerfixdown 0.7s;

}

.inner-header {
    position: relative;
    background: #000;
}


@keyframes headerfixdown {
    0% {
        opacity: 0;
        transform: translateY(-100%);
    }

    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

.header.headerfix .header .logo {
    display: block;
}

.header .logo img {
    max-height: 3rem;
    transition: all 0.3s ease;
}

.header.headerfix .logo img {
    max-height: 3rem;
}

.header .nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border: none;
    gap: 3rem;
}



.header .nav-links a:not(.btn) {
    font-weight: 400;
    font-size: 0.9rem;
    font-family: "Questrial", sans-serif;

    text-transform: uppercase;
    color: var(--WhiteColor);
    padding: 0.5rem 0;
}

.header .nav-links .btn {
    text-transform: uppercase;
}


.header .nav-links a:hover:not(.btn) {
    color: var(--PrimaryColor);
}

.header .mobile-toggle {
    display: none;
}


.header .nav-actions.active {
    display: flex;
    justify-content: center;
    position: absolute;
    left: 0;
    right: 0;
    top: 360px;
    z-index: 101;
}

.header .mobile-toggle {
    font-size: 1.5rem;
    color: var(--WhiteColor);
    background: none;
    border: none;
    cursor: pointer;
}











/* Hero Section Redesign */
.hero-section {
    padding-top: 9rem;
    padding-bottom: 5.5rem;
    /* Space for the features bar */
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    min-height: 100vh;    margin-top: -5rem;
}

.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -2;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    /* Slight darkening for readability */
    z-index: -1;
}

.hero-section::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 10rem;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, #000, transparent);
}

.hero-section .hero-left-content {
    position: relative;
    z-index: 1;
    ;
}

.hero-section .hero-title {
    font-size: clamp(4rem, 7vw, 7rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    color: var(--WhiteColor);
    text-transform: uppercase;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 3rem 0 2rem;
}

.hero-actions .btn {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 400;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}


.hero-actions .hero-link {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: underline;
    text-underline-offset: 0.5rem;
    font-size: 0.9rem;
}

.hero-actions .hero-link:hover {
    color: var(--PrimaryColor);
}

.hero-section .hero-subtext {
    color: #858585;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 2;


}

.hero-section .hero-right-content {
    position: relative;
    top: 30px;
}

.hero-section .hero-secondary-title {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.3;
    color: var(--WhiteColor);
    max-width: 25rem;
}

.hero-section .hero-desc {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
    max-width: 28rem;
}

/* Hero Features Bar */
.hero-features-bar {
    padding: 2.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    border-top: 0.0625rem solid rgba(255, 255, 255, 0.1);
}

.hero-features-bar .feature-item {
    display: flex;
    align-items: start;
    gap: 0.6rem;
}

.hero-features-bar .gold-dot {
    width: 0.5rem;
    height: 0.5rem;
    background-color: var(--PrimaryColor);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.4rem;
}

.hero-features-bar .feature-text {
    font-size: 0.875rem;
    color: #fff;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", sans-serif;
}












/* About Section Redesign */
.about-section {
    background-color: #0F0F0F;
}

.section-title {
    font-size: clamp(2.4rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--WhiteColor);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.about-section .about-highlight-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--WhiteColor);
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 1rem;
}

.about-section .about-desc {
    color: #fff;
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.8;
    max-width: 32rem;
}

.about-section .about-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-family: "Questrial", sans-serif;
    padding: 0.4rem 0;
}

.about-section .feature-number {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--PrimaryColor);
}

.about-section .feature-title {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--WhiteColor);
}












/* Festival Engine Section */
.engine-section .section-title {
    margin-bottom: 4rem;
}

.engine-glow-card {
    height: 100%;
    min-height: 20rem;
    padding: 3rem 1.5rem;
    background: #0A0A0A;
    border-radius: 0.25rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.engine-glow-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.engine-glow-card.glow-gold::before {
    background: linear-gradient(to top, transparent, #E1AC4C4D, transparent);
}


.engine-glow-card.glow-green::before {
    background: linear-gradient(to top, transparent, #90945B4D, transparent);
}

.engine-glow-card.glow-red::before {
    background: linear-gradient(to top, transparent, #804B494D, transparent);

}

.engine-glow-card.glow-blue::before {
    background: linear-gradient(to top, transparent, #46777D4D, transparent);

}

.engine-glow-card.glow-purple::before {
    background: linear-gradient(to top, transparent, #E1AC4C4D, transparent);
}

.engine-glow-card:hover {
    transform: translateY(-0.5rem);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.engine-glow-card:hover::before {
    opacity: 0.3;
}

.engine-glow-card .card-title {
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--WhiteColor);
    margin-bottom: 1rem;
    text-transform: uppercase;
    width: 100%;
    max-width: 60%;

}

.engine-glow-card .card-desc {
    font-size: 0.85rem;
    color: #fff;
    line-height: 1.6;
    font-weight: 400;
}













/* Founders Section */
.founders-section {
    position: relative;
    background: var(--PrimaryColor);
    padding: 8rem 0;
}

.founders-section .section-title {
    color: var(--BlackColor);
    line-height: 1;

}

.section-bottom-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-bottom-btn .btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.founders-section .section-bottom-btn .btn-dark {
    color: var(--PrimaryColor);
}
.founders-section .section-bottom-btn .btn-dark:hover{color: var(--BlackColor);}

.founders-section .founders-desc {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: #1B1B1B;
    max-width: 32rem;
    margin-bottom: 2rem;
}

.founders-section .founders-list li {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--BlackColor);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: "Plus Jakarta Sans", sans-serif;
    padding: 0.2rem 0;
}

.founders-section .list-marker {
    width: 0;
    height: 0;
    border-top: 0.25rem solid transparent;
    border-bottom: 0.25rem solid transparent;
    border-left: 0.35rem solid #000000;
}


.the-cut-section .cut-desc {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;
    max-width: 75%;
    margin: 1rem 0;
}

.cut-logo-img {
    max-height: 12rem;
    opacity: 0.9;
    filter: invert(1) brightness(0.8);
}

.miami-world-section {
    background: url(../images/miami-bg.png)no-repeat center center/cover;
}

.miami-world-section .section-title {
    margin-bottom: 0;
}

.miami-world-section .section-peragraph {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 500;
    font-family: "Plus Jakarta Sans", sans-serif;
    margin-bottom: 3rem;
}

.season {
    padding-bottom: 0;
}

.season .section-title {
    font-size: clamp(3rem, 9vw, 5.5rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-align: center;
    margin-bottom: 3rem;

    background: url(../images/title-texture.png) no-repeat center center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: cover;
    white-space: pre;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-weight: 800;
}



.audience-section .audience-card {
    background: #070707;
    border: 1px solid #191818;
    padding: 2rem;
    height: 100%;

}

.audience-section .audience-card .audience-tag {
    font-family: "Questrial", sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--PrimaryColor);
    margin-bottom: 1.2rem;
}

.audience-section .audience-card .audience-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.audience-section .audience-card .audience-text {
    font-size: 0.9rem;
    color: #787878;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-family: "Plus Jakarta Sans", sans-serif;
}

.audience-section .audience-card .btn {
    font-family: "Plus Jakarta Sans", sans-serif;
}

.cta-section {
    background: url(../images/cta-bg.png)no-repeat top center/cover;
}

.cta-section .cta-section-text {
    font-size: 1.2rem;
    color: #fff;
    line-height: 1.5;
    font-weight: 400;
    font-family: "Plus Jakarta Sans", sans-serif;
    width: 100%;
    max-width: 60%;
    margin: 1rem 0;
}

.footer {
    background: #080808;
    padding: 0.6rem 0;
    text-align: center;
}

.footer .cta-footer-copy {
    font-size: 0.8rem;
    color: #787878;
    line-height: 1.5;
    font-weight: 400;
    margin-bottom: 0;
    font-family: "Plus Jakarta Sans", sans-serif;
}









.gallery-slider {
    width: 100%;
}

.gallery-slider .masonry-grid {
    display: grid;
    grid-template-columns: repeat(10, 1fr);
    grid-auto-rows: 220px;
    gap: 0;
}

.gallery-slider .grid-item {
    overflow: hidden;
    border-radius: 0px;
    position: relative;
}

.gallery-slider .grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-slider .grid-item.tall {
    grid-row: span 2;
}

.grid-item.wide {
    grid-column: span 2;
}

.gallery-slider .grid-item:before {
    content: " ";
    transition: all .2s ease;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    z-index: 1
}

.grid-item:hover:before {
    background: rgba(0, 0, 0, 0.4);
}







/* =========================================
   PROGRAM PAGE SECTIONS
   ========================================= */

.founder-life-section {
    background: var(--BlackColor);
    position: relative;
    overflow: hidden;
}

.founder-life-section .founder-tag {
    display: block;
    color: var(--PrimaryColor);
    font-size: 0.85rem;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 0.15em;
}

.founder-life-section .founder-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--WhiteColor);
    text-transform: uppercase;
}

.founder-life-section h3 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--WhiteColor);
    max-width: 25rem;
}

.founder-life-section .founder-img-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.founder-life-section .founder-img-bg {
    position: absolute;
    width: 100%;
    height: 90%;
    background-color: var(--PrimaryColor);
    z-index: -1;
    bottom: -27px;
    left: 50%;
    transform: translateX(-50%);
}

.founder-life-section .founder-main-img {
    max-height: 550px;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.founder-life-section .founder-img-wrapper:hover .founder-main-img {
    filter: grayscale(0);
    transform: scale(1.02);
}


.founder-life-section .founder-details {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.founder-life-section .founder-desc-text {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
    max-width: 28rem;
}

/* Specific button styles for this section */
.founder-actions .btn-outline-light {
    border: 1px solid #fff;
    min-width: 140px;
}

.founder-actions .btn-outline-primary {
    border: 1px solid var(--PrimaryColor);
    color: var(--PrimaryColor);
    min-width: 180px;
}

.founder-actions .btn-outline-primary:hover {
    background: var(--PrimaryColor);
    color: #000;
}

/* The Cut Highlight Section */
.the-cut-highlight-section {
    background: #0F0F0F;

}

.hightlight-tag {
    display: block;
    color: var(--PrimaryColor);
    font-size: 0.85rem;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 0.15em;
}



.the-cut-highlight-section .cut-highlight-subtitle {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1rem;
    font-weight: 400;
}

.the-cut-highlight-section .cut-accent-text {
    color: var(--PrimaryColor);
    font-size: 1.5rem;
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-bottom: 1.1rem;
}

.the-cut-highlight-section .cut-highlight-desc {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
    max-width: 28rem;
}

.the-cut-highlight-section .cut-logo-highlight {
    /* filter: brightness(0.7) contrast(1.1); */
    max-height: 20rem;
    margin: 0 auto;
    /* opacity: 0.8; */
}

.the-cut-highlight-section .hosted-by {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 4rem;
}

.the-cut-highlight-section .hosted-label {
    font-size: 1rem;
    color: var(--WhiteColor);
    font-family: 'Plus Jakarta Sans', sans-serif;
    margin-right: 1rem;
}

.the-cut-highlight-section .hosts-list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--WhiteColor);
}


/* Dots between names */
.hosts-list li:not(:last-child)::after {
    content: "•";
    margin-left: 0.8rem;
    opacity: 1;
    color: var(--WhiteColor);
}

/* Remove dot after label */
.hosts-list .hosts-label::after {
    content: "";
}


.steps {
    background-color: #0F0F0F;
    border-top: 1px solid #ffffff21;
    padding: 2rem 0;
    color: #ffffff;
}

/* Item */
.steps .steps-item {
    position: relative;
    padding: 1rem;
    min-height: 7rem;
    display: flex;
    align-items: self-start;
    gap: 1rem;
}

/* Number */
.steps .steps-number {
    font-size: 2.4rem;
    line-height: n;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.10);
    margin-bottom: 0.0;
}

/* Text */
.steps .steps-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 68%;
}



.deal-flow {
    background: linear-gradient(90deg,
            #000000 5%,
            #3a2c10 50%,
            #000000 95%);
    padding: 5rem 0;
    color: #ffffff;
}

/* Title */
.deal-flow .deal-flow-title {
    font-size: 3.2rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.1rem;
    margin-bottom: 2.5rem;
}

/* Button */
.deal-flow .deal-flow-btn {
    font-size: 0.9rem;
    padding: 0.6rem 1.6rem;
    border: 1px solid #d4af37;
    color: #d4af37;
    border-radius: 0;
    background: transparent;
    text-decoration: none;
}

.deal-flow .deal-flow-btn:hover {
    background-color: #d4af37;
    color: #000000;
}

/* Right content */
.deal-flow .deal-flow-info {
    margin-bottom: 2.5rem;
}

/* List */
.deal-flow .deal-flow-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0 0;
}

.deal-flow .deal-flow-list li {
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    padding: 0.7rem 0;
}


.video-section {
    position: relative;
    background-color: #000000;
}



/* Overlay */
.video-section .video-section-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Play button */
.video-section .video-section-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4.5rem;
    height: 4.5rem;
    border-radius: 50%;
    background-color: #d4af37;
    color: #000000;
    font-size: 1.5rem;
    border: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.video-section .video-section-play:hover {
    transform: translate(-50%, -50%) scale(1.05);
}

/* Modal */
.video-modal .modal-content {
    background-color: #000000;
    border: none;
}

/* Close button */
.video-modal .video-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    filter: invert(1);
}




.layer-bg {
    background: url(../images/cta-bg.png)no-repeat center top/cover #000;
}





.video-section {
    position: relative;
}


/* Play button */
.video-section .video-section-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background-color: var(--PrimaryColor);
    color: #000000;
    font-size: 1.5rem;
    border: none;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    animation: play-pulse 2s infinite;
}

.video-section .video-section-play:hover {
    transform: translate(-50%, -50%);
}

/* Keyframes */
@keyframes play-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.6);
    }

    70% {
        box-shadow: 0 0 0 1.2rem rgba(212, 175, 55, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(212, 175, 55, 0);
    }
}





.video-modal-dialog .modal-content {
    border-width: 0.4375rem;
    /* 7px */
    border-style: solid;
    border-color: var(--WhiteColor);
    border-image: initial;
}

.video-modal-dialog .close {
    position: absolute;
    width: 1.875rem;
    height: 1.875rem;
    z-index: 1;
    opacity: 1;
    text-align: center;
    line-height: 1.875rem;
    right: -1.125rem;
    top: -1.125rem;
    font-size: 1.25rem;
    border-radius: 50%;
    background: var(--WhiteColor);
    transition: all 0.2s ease 0s;
    outline: none !important;
}

.video-modal-dialog .btn-close {
    position: absolute;
    background: var(--PrimaryColor);
    color: #ffffff;
    z-index: 1;
    opacity: 1;
    text-align: center;
    right: -1.125rem;
    top: -1.125rem;
    font-size: 1rem;
    transition: all 0.2s ease 0s;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.video-modal-dialog .modal-body {
    padding: 0;
}

.video-player {
    text-align: center;
    overflow: hidden;
}

.video-modal-dialog video {
    width: 100%;
    display: block;
}

.life-app .life-app-screens {
    margin: 3rem 0 0;
}
.life-app .life-app-stores{display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap;}
.life-app .life-app-stores .btn-primary:hover img {
    filter: invert(1);
}

.life-app .life-app-screens .app-screen-item {
    max-height: 70%;

}

.life-app .life-app-screens .app-screen-item img {
    border: solid 1px #2e2e2e;
    border-radius: 10px;
    width: 100%;
    max-width: 70%;
}


.founders-presenting {
    background-color: #060606;
    color: #ffffff;
}

/* Title */
.founders-presenting .founders-presenting-title {
    font-size: 2.6rem;
    font-weight: 400;
    line-height: 1.2;
    letter-spacing: 0.1rem;
    margin-bottom: 3rem;
}



/* Card */
.founders-presenting .founders-presenting-card {
    min-height: 18rem;
    padding: 1rem;
    background: #d9d9d917;
    border: 1px solid #EEB54E4D;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.founders-presenting-card .img-bx {
    height: 11rem;
    overflow: hidden;
    margin-bottom: 1rem;
}

.founders-presenting-card .img-bx img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    filter: grayscale(1);
}

/* Name */
.founders-presenting .founders-presenting-card h3 {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--WhiteColor);
    max-width: 50%;
    text-transform: uppercase;
    margin-bottom: 0;
}

/* Company */
.founders-presenting .founders-presenting-card p {
    font-size: 0.75rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 400;
    color: var(--PrimaryColor);
    margin: 0;
}


.schedule {
    background-color: var(--PrimaryColor);
    color: var(--BlackColor);
}

/* Title */
.schedule .section-title {
    color: var(--BlackColor);
}

/* List */
.schedule .schedule-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Default row (normal) */

.schedule .schedule-item {
    display: flex;
    align-items: center;
    padding: 0.9rem 0;
    border-top: 1px solid #000;
    font-size: 0.9rem;
    font-weight: 400;
    text-transform: uppercase;
    font-family: 'Quicksand', sans-serif;
    transition:
        background-color 0.35s ease,
        color 0.35s ease,
        transform 0.35s ease;
}

.schedule-list .schedule-time {
    width: 10%;
}


.schedule .schedule-item:first-child {
    border-top: none;
}

/* Hover highlight */
.schedule .schedule-item:hover {
    background-color: #000000;

    /* transform: translateY(-0.15rem); */
}

/* Ensure time & text inherit hover color */
.schedule .schedule-item:hover .schedule-time,
.schedule .schedule-item:hover .schedule-text {
    color: var(--PrimaryColor);
    transition: color 0.35s ease;
}

.schedule .schedule-item:hover .schedule-text {
    font-size: 1.1rem;
}

/* Badge stays clean */
.schedule .schedule-badge {
    transition: background-color 0.35s ease, color 0.35s ease;
    background: #ffffff7a;
    color: var(--BlackColor);
    padding: 0.2rem 0.5rem;
    font-size: 0.7rem;
    margin: 0 3px;
}

.schedule-item-highlight {
    border-bottom: 1px solid #000;
    background: #ffffff1a;
}

.schedule .schedule-item.schedule-item-highlight:hover {
    background: #000;
    color: var(--PrimaryColor);
}


.performers-list-section {
    background-color: #131313;
    color: #ffffff;
}

.performers-list-section .performers-list {
    list-style: none;
    padding: 0;
    margin: 3rem 0;
}

.performers-list-section .performers-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;

}

/* Thumbnail */
.performers-list-section .performers-thumb {
    width: 3.2rem;
    height: 3.2rem;
    background-color: #d1d1d1;
    flex-shrink: 0;
}

.performers-list-section .performers-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Text */
.performers-list-section .performers-content {
    flex: 1;
}

.performers-list-section .performers-title {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--WhiteColor);
    text-transform: uppercase;
    margin: 0 0 0.3rem;
}

.performers-list-section .performers-meta {
    font-size: 0.75rem;

    margin: 0;
    color: #7D7D7D;
}

/* Play button */
.performers-list-section .performers-play {
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    background-color: #0D0D0D;
    border: solid 1px #0D0D0D;
    color: var(--PrimaryColor);
    font-size: 0.9rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.performers-list-section .performers-play svg {
    width: 1rem;
}

.performers-list-section .performers-play:hover {
    transform: scale(1.1);
}



.location-section {
    color: #ffffff;
    position: relative;
}

/* Title */
.location-section .location-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
}

/* Info */
.location-section .location-info h4 {
    font-size: 1.4rem;
    text-transform: uppercase;
    color: var(--PrimaryColor);
    /* margin-bottom: 0.4rem; */
}

.location-section .location-info p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--WhiteColor);
}

.location-section .location-info .timing {
    font-size: 0.9rem;
    margin: 0.5rem 0 0;
    color: #919191;
}


.tickets-access {
    background-color: var(--BlackColor);
    color: #ffffff;
}



/* Cards wrapper */
.tickets-access .tickets-access-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Card */
.tickets-access .tickets-access-card {
    background: #070707;
    border: 1px solid #191818;
    padding: 1.5rem;
}

/* Tag */
.tickets-access .tickets-access-tag {
    display: block;
    font-size: 0.95rem;
    font-family: 'Quicksand', sans-serif;
    color: var(--PrimaryColor);
    margin-bottom: 0.3rem;
}

/* Text */
.tickets-access .tickets-access-text {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

/* Note */
.tickets-access .tickets-access-note {
    display: block;
    font-size: 0.8rem;
    font-family: 'Quicksand', sans-serif;
    color: var(--PrimaryColor);
    margin-bottom: 0.3rem;
}

/* .vote-section .section-heading {
    margin-bottom: 8rem;
} */

.vote-section .section-peragraph {
    max-width: 50%;
    font-size: 0.95rem;
    color: rgb(133, 133, 133);
    font-weight: 300;
    line-height: 2;
}

.vote-section .nav {
    margin-bottom: 4rem;
}

.vote-section .nav .nav-link {
    border: 0;
    margin: 0 5px;
    background: transparent;
    font-weight: 600;
    font-size: 1.2rem;
    padding: 0.5rem 1rem;
    color: #6F6F6F;
    border-bottom: solid 2px transparent;
}

.vote-section .nav .nav-link.active {
    color: var(--PrimaryColor);
    border-bottom-color: var(--PrimaryColor);
}

.pitch-card {
    border: 1px solid #dddddd3b;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
    position: relative;
}





.pitch-card .card-ribbon {
    position: absolute;
    top: 27px;
    left: -50px;
    background: #00bfff;
    color: var(--whiteColor);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 3px 50px;
    transform: rotate(-45deg);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.pitch-card .card-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.pitch-card .card-content {
    padding: 16px;
}

.pitch-card .card-content h3 {
    font-size: 1.3rem;
    line-height: normal;
    color: var(--WhiteColor);
    font-weight: 500;
    margin-bottom: 0.8rem;
}

.pitch-card .card-content h4 {
    font-size: 1rem;
    line-height: normal;
    color: var(--WhiteColor);
    font-weight: 500;
    margin: 0 0 6px;
}

.pitch-card .card-content p {
    color: #707070;
    font-size: 0.9rem;
    min-height: 6rem;

}

.pitch-card .card-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    border-top: 1px dashed #eeeeee4a;
}

.pitch-card .vote-buttons button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: 2px solid #54A10C;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 16px;
    cursor: pointer;
    transition: border 0.3s;
}
.pitch-card .vote-buttons button svg{width: 1.2rem;}
.pitch-card .vote-buttons button.dislike-btn {
    border-color: #f44336;
}

.pitch-card .vote-buttons button:hover {
    border-width: 3px;
}


.vote-content-wrap {
    text-align: center;
}

.vote-content-wrap .vote-no-bx {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.vote-content-wrap .vote-no-bx .vote-no {
    font-weight: 600;
}

.vote-content-wrap .vote-percents {
    font-weight: 600;
    font-size: 13px;
    color: #54A10C;
    margin-top: 3px;
}

.vote-content-wrap .vote-percents.dislike-percents {
    color: #f44336;
}





.deal-card .card-content {
    position: relative;
    padding-top: 2rem;
}


.deal-card .img-box {
    padding: 0;
    height: 23rem;
    overflow: hidden;
}

.deal-card .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
}

.deal-card .logo-badge {
    width: 7.6rem;
    height: 7.6rem;
    padding: 10px;
    text-align: center;
    border-radius: 9px;
    position: absolute;
    top: -55px;
    background: var(--whiteColor);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
}

.deal-card .investment-amount {
    margin-top: 3rem;
}

.deal-card .investment-amount .investment-label {
    font-size: 12px;
    color: var(--BlackColor);
    font-weight: 400;
}

.deal-card .investment-amount .price {
    font-size: 2.1rem;
    color: var(--BlackColor);
    font-weight: 600;
}

.deal-card :is(.action-buttons, .vote-buttons) {
    display: flex;
    align-items: center;
    gap: 5px
}

.deal-card .action-buttons {
    gap: 6px;
}

.deal-card .action-buttons .btn {
    padding: 0.5rem;
}

.deal-card :is(.action-buttons, .vote-buttons) p {
    font-size: 16px;
    margin-bottom: 0;
    font-weight: 500;
    padding-left: 10px;
}

.deal-card .progress {
    height: 1.5rem;
    border: solid 1px var(--PrimaryColor);
    background-color: #fff;
    border-radius: 4px;
}

.deal-card .progress .progress-bar {
    background: var(--PrimaryColor);

    font-size: 0.7rem;
    font-weight: 400;
    border-radius: 0 4px 4px 0;
}



/* Sponsors Hero Section */
.sponsors-hero-section {
    position: relative;
    background-color: var(--BlackColor);
    z-index: 1;
    min-height: 80vh;

}

.hero-globe-bg {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 80%;
    margin: auto;
    z-index: -1;
    pointer-events: none;
    text-align: center;
}

.sponsors-hero-tag {
    display: block;
    color: var(--PrimaryColor);
    font-size: 0.85rem;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 0.15em;
}

.sponsors-hero-title {
    font-size: clamp(2.2rem, 5.5vw, 4.2rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--WhiteColor);
    margin: 0;
}

.sponsors-hero-main-text {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    font-weight: 400;
    color: var(--PrimaryColor);
    line-height: 1.6;
    margin: 0;
}

.sponsors-hero-sub-text {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;

}


.sponsors-hero-btn .btn-outline-primary:hover {
    background: var(--PrimaryColor);
    border-color: var(--PrimaryColor);
    color: var(--BlackColor);
}


.sponsors-hero-section .sponsors-hero-details {
    width: 100%;
    max-width: 28rem;
    margin-left: auto;
    margin-top: 1rem;
}

/* Sponsors Key Features */
.sponsors-key-features {
    background-color: #0F0F0F;
    padding: 3rem 0;
}

.sponsors-feature-card {
    position: relative;
    padding: 2rem;
    min-height: 10rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: solid 1px #292929;
}

.feature-bg-number {
    /* position: absolute; */
    /* top: 2.5rem; */
    /* left: 3.5rem; */

    font-size: 3rem;
    font-weight: 600;
    line-height: 1;

    color: transparent;
    /* text fill removed */
    -webkit-text-stroke: 0.1rem rgba(255, 255, 255, 0.15);
    text-stroke: 0.1rem rgba(255, 255, 255, 0.15);
    /* fallback */
    pointer-events: none;
    margin-bottom: 1rem;
}

.feature-content {
    position: relative;
    z-index: 2;
}

.feature-title {
    color: var(--PrimaryColor);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Questrial', sans-serif;
}

.feature-desc {
    color: #9E9E9E;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    max-width: 16rem;
}

/* Sponsors Heading Section */
.sponsors-heading-section {
    background-color: var(--BlackColor);
}

.keystone-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--WhiteColor);
    margin: 0 auto;
}

/* Sponsor Detail Sections */
.founding-tag,
.key-tag {
    color: var(--PrimaryColor);
    font-size: 0.85rem;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 0.15em;
}

.key-tag {
    color: var(--BlackColor);
    opacity: 0.8;
}

.founding-sponsor-section .sponsor-detail-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--WhiteColor);
}

.key-sponsor-section .sponsor-detail-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 400;
    line-height: 1.1;
    color: var(--BlackColor);
}

.sponsor-desc-main {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
    max-width: 28rem;
}

.founding-sponsor-section .text-gold {
    color: var(--PrimaryColor) !important;
}

.founding-sponsor-section .ticker-label {
    font-size: 0.75rem;
    color: var(--PrimaryColor);
    letter-spacing: 0.1em;
}

.founding-sponsor-section .logo-img img {
    max-height: 10rem;
}

.founding-sponsor-section .ticker-symbol {
    font-size: 1.25rem;
    color: var(--WhiteColor);
    font-weight: 500;
}

.founding-sponsor-section .ticker-img {
    max-height: 3rem;
}

.founding-sponsor-section .sponsor-desc-side {
    margin-top: 11rem;
}

.sponsor-desc-side p {
    font-size: 1rem;
    color: #B9B9B9;
    line-height: 1.9;
}

.key-sponsor-section {
    background-color: var(--PrimaryColor);
}

.key-sponsor-section .sponsor-desc-main {
    color: var(--BlackColor);
    opacity: 0.8;
}

.pill-intro {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--BlackColor);
    line-height: 1.4;
}

.utah-logo-img {
    max-height: 12rem;
}

.sponsor-main-logo {
    max-height: 15rem;
}




.gold-sponsors {
    background-color: #000000;
    color: #ffffff;
}

/* Title */


/* Grid */
.gold-sponsors .gold-sponsors-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

/* Item */
.gold-sponsors .gold-sponsors-item {
    min-height: 9.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

/* Hover */
.gold-sponsors .gold-sponsors-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Disabled item */
.gold-sponsors .gold-sponsors-item-disabled {
    cursor: default;
    pointer-events: none;
}

/* Logo */
.gold-sponsors .gold-sponsors-item img {
    max-width: 8rem;
    max-height: 3.2rem;
    object-fit: contain;
}

/* Helper text */
.gold-sponsors .gold-sponsors-item span {
    font-size: 0.7rem;
    letter-spacing: 0.08rem;
    color: var(--PrimaryColor);
}

.silver-sponsors {
    background: #0F0F0F;
}



.arts-partners {
    background-color: #000000;

    color: #ffffff;
}


/* Image */
.arts-partners .arts-partners-image img {
    max-width: 100%;
    filter: grayscale(100%);
}

/* Content */
.arts-partners .arts-partners-content {
    max-width: 26rem;
    margin-left: auto;
}

/* Studio name */
.arts-partners .arts-partners-name {
    font-size: 1.3rem;
    letter-spacing: 0.08rem;
    color: #ffffff;
    margin-bottom: 0.4rem;
}

/* Subtitle */
.arts-partners .arts-partners-subtitle {
    display: block;
    font-size: 1rem;
    color: var(--PrimaryColor);
    margin-bottom: 0.5rem;
}

/* Founded */
.arts-partners .arts-partners-founded {
    font-size: 0.8rem;
    color: var(--PrimaryColor);
    margin-bottom: 1.5rem;
}

/* Text */
.arts-partners .arts-partners-text {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
}




.digital-partners {
    background-color: #0F0F0F;
    padding: 5rem 0;
    color: #ffffff;
}


/* Intro text */
.digital-partners .digital-partners-intro {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
}

/* Logos section */
.digital-partners .digital-partners-logos {
    margin-top: 4rem;
    width: 100%;
    max-width: 80%;
    margin-left: auto;
}

/* Label */
.digital-partners .digital-partners-label {
    color: var(--PrimaryColor);
    font-size: 0.85rem;
    font-family: 'Questrial', sans-serif;
    margin-bottom: 1rem;
}

/* Grid */
.digital-partners .digital-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

/* Item */
.digital-partners .digital-partners-item {
    border: 1px solid rgba(255, 255, 255, 0.08);
    height: 5rem;
    min-height: 6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.digital-partners .digital-partners-item img {
    max-width: 70%;
    max-height: 60%;
    object-fit: contain;
    opacity: 0.9;
}


.global-exchange {
    background-color: #000000;
    padding: 5rem 0;
    overflow: hidden;
}

/* Header */
.global-exchange .global-exchange-label {
    font-size: 1.2rem;
    letter-spacing: 0.1rem;
    color: var(--PrimaryColor);
}



.global-exchange .global-exchange-card {
    border: 1px solid #252525;
    padding: 1.5rem;
    transition:
        border-color 0.3s ease,
        background-color 0.3s ease;
    border-radius: 10px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.global-exchange .global-exchange-card .img-bx {

    margin-bottom: 3rem;
}

.global-exchange .global-exchange-card .img-bx img {
    filter: invert(0) brightness(10.5);
}

.global-exchange .global-exchange-card h4 {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--WhiteColor);
    margin-bottom: 0.3rem;
}

.global-exchange .global-exchange-card .learn-more {
    font-size: 0.75rem;
    color: var(--PrimaryColor);
    text-decoration: none;
}

.global-exchange .global-exchange-card .learn-more svg {
    width: 1rem;
}

/* Active card */


/* Hover */
.global-exchange .global-exchange-card:hover {
    border-color: var(--PrimaryColor);
    background: linear-gradient(180deg,
            rgba(212, 175, 55, 0.15),
            rgba(0, 0, 0, 0));
}

/* Map */
.global-exchange .global-exchange-map {
    position: relative;
    margin-top: 4rem;
    text-align: center;
}


.sundance-ventures {
    background-color: #000000;
    padding: 5rem 0;
    color: #ffffff;
}

/* Title */
.sundance-ventures .sundance-ventures-title {
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 0.1rem;
    margin-bottom: 1rem;
}

/* Subtitle */
.sundance-ventures .sundance-ventures-subtitle {
    font-size: 1.2rem;
    color: var(--PrimaryColor);
    margin-bottom: 1rem;
}

/* Description */
.sundance-ventures .sundance-ventures-desc {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
}

/* Logos row */
.sundance-ventures .sundance-ventures-logos {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 4rem;
}

/* Logo item */
.sundance-ventures .sundance-ventures-item {
    height: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.sundance-ventures .sundance-ventures-item img {
    max-width: 70%;
    max-height: 50%;
    object-fit: contain;
    opacity: 0.9;
}

/* Sponsorship Tiers Table */
.sponsorship-section {
    background-color: var(--PrimaryColor);
    color: var(--BlackColor);
}

.sponsorship-section .section-title {
    color: var(--BlackColor);
}


.sponsorship-section .sponsorship-table-wrapper {
    width: 100%;
    overflow-x: auto;
    margin-top: 4rem;
}
.sponsorship-section .sponsorship-table-wrapper::-webkit-scrollbar {
    width: 3px;      /* reduce width */
    height: 3px;     /* for horizontal scroll */
}

.sponsorship-section .sponsorship-table-wrapper::-webkit-scrollbar-track {
    background: transparent;
}

.sponsorship-section .sponsorship-table-wrapper::-webkit-scrollbar-thumb {
    background-color: #dbdbdb;
    border-radius: 6px;
}



.sponsorship-section .sponsorship-grid {
    min-width: 900px;
    display: flex;
    flex-direction: column;
}

.sponsorship-section .sponsorship-row {
    display: flex;
    align-items: center;
}

.sponsorship-section .sponsorship-cell {
    flex: 1;
    padding: 1rem;
    text-align: center;
    font-size: 0.9rem;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsorship-section .sponsorship-cell.feature-cell {
    flex: 1.5;
    font-weight: 400;
    font-size: 0.8rem;
    padding-left: 0;
    justify-content: flex-end;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.sponsorship-section .header-row {
    height: auto;
}

.sponsorship-section .header-row .sponsorship-cell {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
    height: auto;
    flex-direction: column;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
}

.sponsorship-section .tier-name {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    opacity: 0.8;
}

.sponsorship-section .tier-price {
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1;
}

/* Progressive Backgrounds */
.sponsorship-section .bronze-col {
    background-color: #D8A643;
}

.sponsorship-section .silver-col {
    background-color: #CC9D3E;
}

.sponsorship-section .gold-col {
    background-color: #B5872C;
}

.sponsorship-section .platinum-col {
    background-color: #5D481C;
    color: var(--WhiteColor);
}

.sponsorship-section .sponsorship-cell i[data-lucide="check"] {
    width: 1.2rem;
    height: 1.2rem;
    stroke-width: 2.5;
}


.sponsorship-section .footer-row .sponsorship-cell {
    padding-top: 2rem;
    padding-bottom: 2rem;
    height: auto;
}


.sponsorship-section .btn-outline-primary {
    color: var(--BlackColor);
    border-color: var(--BlackColor);
}






.founders-stewards {
    background-color: #000000;
    color: #ffffff;
}



/* Row */
.founders-stewards .founder-row {
    display: flex;
    align-items: center;

    position: relative;
}

.founders-stewards .founder-row:before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    width: 100%;
    height: 80%;
    background: linear-gradient(90deg, transparent, #e1ac4c38, transparent);
}



/* Image */
.founders-stewards .founder-image img {
    width: 18rem;

}

.founders-stewards .founder-row.reverse {
    flex-direction: row-reverse;
}

/* Content */
.founders-stewards .founder-content {
    flex: 1;
    padding: 2rem;
    z-index: 2;
    position: relative;
}

.founders-stewards .founder-image {
    position: relative;
    z-index: 2;
}

/* Name */
.founders-stewards .founder-row.reverse .founder-content {
    text-align: right;
}

.founders-stewards .founder-content h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.4rem;
}

/* Role */
.founders-stewards .founder-role {
    font-size: 0.8rem;
    color: var(--PrimaryColor);
    display: block;
    margin-bottom: 1.2rem;
}

/* Highlight */
.founders-stewards .founder-highlight {
    font-size: 0.8rem;
    opacity: 0.8;
    margin-bottom: 0.8rem;
}

/* Text */
.founders-stewards .founder-text {
    font-size: 0.8rem;
    line-height: 1.7;
    opacity: 0.6;
    margin-bottom: 0.8rem;
}

.attendees-section {
    background-color: var(--PrimaryColor);
}

.attendees-section .section-title {
    color: var(--BlackColor);
}

.properties-stewardship {
    background-color: #000000;
    padding: 5rem 0;
    color: #ffffff;
}

/* Title */
.properties-stewardship .properties-stewardship-title {
    font-size: 2.8rem;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: 0.1rem;
}


/* List */
.properties-stewardship .properties-stewardship-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem;
}

.properties-stewardship .properties-stewardship-list li {
    font-size: 0.95rem;
    font-weight: 400;
    font-family: 'Quicksand', sans-serif;
    color: var(--PrimaryColor);
    margin-bottom: 0.9rem;
    position: relative;
    padding-left: 1rem;
}

.properties-stewardship .properties-stewardship-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--PrimaryColor);
}

/* Note */
.properties-stewardship .properties-stewardship-note {
    font-size: 0.95rem;
    color: #858585;
    font-weight: 300;
    line-height: 2;
}