.site-header{
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
}

h2{
    font-weight: 700;
    font-size: 94px;
    line-height: 1.03;
}

/*   H E R O   S E K C I J A   */
#hero {
    min-height: 47vw;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: center;
    padding: 180px 0;
}
.hero-content{
    max-width: 480px;
}
h1, h1 span{
    font-size: 48px;
    line-height: 1.08;
    color: #BFE0C0;
    margin-bottom: 70px;
    max-width: 470px;
}
.hero-desc{
    font-weight: 400;
    font-size: 20px;
    line-height: 1.3;
    color: #FFF7EB;
    margin-bottom: 60px;
}
.hero-content > span{
    display: flex;
    flex-flow: row nowrap;
    justify-content: start;
    align-items: start;
    column-gap: 15px;
    font-weight: 400;
    font-size: 16px;
    line-height: 2.125;
    color: #FFF7EB;
}

/*   C O N C E P T   S E K C I J A   */
#concept {
    padding: 160px 0;
    position: relative;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}
#concept h2 {
    color: #BFE0C0;
    margin-bottom: 60px;
}
#concept .container{
    z-index: 2;
    position: relative;
    overflow: hidden;
}
#concept .container > p {
    font-weight: 400;
    font-size: 24px;
    line-height: 1.42;
    color: #FFF7EB;
    max-width: 700px;
    margin-bottom: 20px;
}
#concept .container > *{
    z-index: 2;
}
#concept .list {
    border-left: 14px solid #50A583;
    padding-left: 30px;
    font-weight: 400;
    font-size: 24px;
    line-height: 1.42;
    color: #FFF7EB;
    margin: 80px 0 120px;
}
#concept .list ul {
    margin: 0;
    padding-left: 24px;
}
#concept .list ul li:not(:last-child){
    margin-bottom: 10px;
}
#concept .one-liner{
    font-weight: 700;
    font-size: 24px;
    line-height: 1.42;
    color: #FFF7EB;
}
#concept .cards{
    display: grid;
    grid-template-columns: repeat(3,minmax(0,1fr));
    grid-template-rows: auto;
    align-items: center;
    column-gap: 7%;
    margin: 90px 0 70px;
}
#concept .cards svg{
    width: 100%;
}
#concept .card{
    width: 100%;
    aspect-ratio: 0.93;
    background: linear-gradient(0deg, rgba(191, 224, 192, 0.1), rgba(191, 224, 192, 0.1)),
    linear-gradient(330.05deg, rgba(191, 224, 192, 0) 48.55%, rgba(191, 224, 192, 0.5) 100%);
    backdrop-filter: blur(50px);
    display: flex;
    flex-flow: column nowrap;
    justify-content: end;
    align-items: center;
}
#concept .card:last-child{
    background: linear-gradient(0deg, rgba(191, 224, 192, 0.1), rgba(191, 224, 192, 0.1)),
    linear-gradient(330.05deg, rgba(191, 224, 192, 0) 48.55%, rgba(191, 224, 192, 0.2) 100%);
    backdrop-filter: blur(50px);
}
#concept .card p{
    padding: 30px 40px;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.42;
    text-align: center;
    color: #50A583;
    width: 100%;
    opacity: 1;
    z-index: 10;
}
#concept .card p span{
    display: block;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.125;
    text-align: center;
    color: #BFE0C0;
    margin: 8px 0 0;
    min-height: 2.25em;
}
#concept .container > p:last-child{
    max-width: 800px;
    z-index: 2;
}
#concept .card img{
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}
#concept .card:first-of-type img{
    max-width: 114%;
}
#concept .card:nth-of-type(2) img{
    max-width: 125%;
    transform: translateX(-46%);
}
#concept .card:nth-of-type(3) img{
    max-width: 61%;
}
.progressive-blur{
    position: absolute;
    inset: auto 0 0;
    height: 40%;
    pointer-events: none;
}
.progressive-blur .layer{
    position: absolute;
    inset: 0;
    background: #00000003;
    mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0) 100%);
}
.progressive-blur .layer:nth-child(1){
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    opacity: 1;
}
.progressive-blur .layer:nth-child(2){
    -webkit-backdrop-filter: blur(7px);
    backdrop-filter: blur(7px);
    opacity: 0.8;
}
.progressive-blur .layer:nth-child(3){
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    opacity: 0.65;
}
.progressive-blur .layer:nth-child(4){
    -webkit-backdrop-filter: blur(21px);
    backdrop-filter: blur(21px);
    opacity: 0.5;
}
.progressive-blur .layer:nth-child(5){
    -webkit-backdrop-filter: blur(28px);
    backdrop-filter: blur(28px);
    opacity: 0.35;
}
.progressive-blur .layer:nth-child(6){
    -webkit-backdrop-filter: blur(36.1px);
    backdrop-filter: blur(36.1px);
    opacity: 0.25;
}

.progressive-blur-section{
    position: absolute;
    inset: auto 0 0;
    height: 60%;
    pointer-events: none;
}
.progressive-blur-section .layer-section{
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.01), rgba(255, 255, 255, 0.01)),
    linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);

    mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to top,
    rgba(0,0,0,1) 0%,
    rgba(0,0,0,1) 40%,
    rgba(0,0,0,0) 100%);
}

/* 0 → 100 px progresivni blur (6 slojeva) */

.progressive-blur-section .layer-section:nth-child(1){
    -webkit-backdrop-filter: blur(0px);
    backdrop-filter: blur(0px);
    opacity: 1;
}
.progressive-blur-section .layer-section:nth-child(2){
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    opacity: 0.8;
}
.progressive-blur-section .layer-section:nth-child(3){
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    opacity: 0.65;
}
.progressive-blur-section .layer-section:nth-child(4){
    -webkit-backdrop-filter: blur(60px);
    backdrop-filter: blur(60px);
    opacity: 0.5;
}
.progressive-blur-section .layer-section:nth-child(5){
    -webkit-backdrop-filter: blur(80px);
    backdrop-filter: blur(80px);
    opacity: 0.35;
}
.progressive-blur-section .layer-section:nth-child(6){
    -webkit-backdrop-filter: blur(100px);
    backdrop-filter: blur(100px);
    opacity: 0.25;
}


#inspire{
    background: #2A5636;
    padding: 150px 0 120px;
}
#inspire h2{
    color: #BFE0C0;
    max-width: 790px;
    margin-bottom: 80px;
}
#inspire p{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.42;
    color: #FFF7EB;
    max-width: 780px;
}

#talks-classes{
    background: black;
    padding: 170px 0;
}
#talks-classes h2{
    color: #BFE0C0;
    max-width: 840px;
    margin-bottom: 80px;
}
#talks-classes .container div{
    display: grid;
    grid-template-columns: repeat(2, minmax(0,1fr));
    grid-template-rows: auto;
    column-gap: 20px;
    margin-bottom: 70px;
}
#talks-classes img {
    width: 100%;
}
#talks-classes .one-liner {
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: #50A583;
}

#conversation{
    background: #FFF0D8;
    padding: 200px 0;
}
#conversation h2{
    color: #2A5636;
    margin-bottom: 70px;
    max-width: 980px;
}
#conversation p{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.42;
    color: #333333;
    max-width: 720px;
}
#conversation .one-liner{
    font-weight: 400;
    font-size: 40px;
    line-height: 1.2;
    color: #50A583;
    margin-bottom: 70px;
    max-width: 100%;
}

#ecosystem{
    background: #50A583;
    padding: 130px 0;
}
#ecosystem h2{
    font-weight: 700;
    font-size: 48px;
    line-height: 1.42;
    color: #FFF7EB;
    margin-bottom: 70px;
}
#ecosystem p{
    font-weight: 400;
    font-size: 24px;
    line-height: 1.42;
    color: #FFF7EB;
}

#inspire p:not(:last-child),
#conversation p:not(:last-child):not(.one-liner),
#ecosystem p:not(:last-child){
    margin-bottom: 20px;
}

@media(max-width: 1024px){
    .site-header{
        top: 20px;
    }
    h2{
        font-size: 64px;
    }
    /*   H E R O   S E K C I J A   */
    #hero {
        padding: 160px 0 80px;
    }
    .hero-content{
        max-width: 380px;
    }
    h1, h1 span{
        font-size: 38px;
        margin-bottom: 50px;
        max-width: 370px;
    }
    .hero-desc{
        font-size: 18px;
        margin-bottom: 40px;
    }
    .hero-content > span{
        font-size: 14px;
    }

    /*   C O N C E P T   S E K C I J A   */
    #concept {
        padding: 100px 0;
    }
    #concept h2 {
        margin-bottom: 40px;
    }
    #concept .container > p {
        font-size: 20px;
        max-width: 62%;
    }
    #concept .list {
        font-size: 20px;
        margin: 40px 0 80px;
    }
    #concept .one-liner{
        font-size: 20px;
    }
    #concept .cards{
        margin: 80px 0 60px;
    }
    #concept .card  p{
        font-size: 18px;
        padding: 20px 20px;
    }
    #concept .card p span{
        font-size: 14px;
    }
    #concept .container > p:last-child{
        max-width: 67%;
    }

    #inspire{
        padding: 100px 0 80px;
    }
    #inspire h2{
        max-width: 600px;
        margin-bottom: 60px;
    }
    #inspire p{
        font-size: 20px;
        max-width: 680px;
    }

    #talks-classes{
        padding: 100px 0;
    }
    #talks-classes h2{
        max-width: 600px;
        margin-bottom: 50px;
    }
    #talks-classes .container div{
        margin-bottom: 50px;
    }
    #talks-classes .one-liner {
        font-size: 30px;
    }

    #conversation{
        padding: 120px 0;
    }
    #conversation h2{
        margin-bottom: 50px;
        max-width: 680px;
    }
    #conversation p{
        font-size: 20px;
        max-width: 600px;
    }
    #conversation .one-liner{
        font-size: 30px;
        margin-bottom: 50px;
    }

    #ecosystem{
        padding: 90px 0;
    }
    #ecosystem h2{
        font-size: 36px;
        margin-bottom: 50px;
    }
    #ecosystem p{
        font-size: 20px;
    }
}
@media(max-width: 767px){
    .site-header{
        top: 0;
    }
    h2{
        font-size: 32px;
    }
    /*   H E R O   S E K C I J A   */
    #hero {
        padding: calc(100vw * 0.78) 0 calc(100vw * 0.1);
        background-image: url("https://trinity-talks.com/wp-content/uploads/2025/12/trinity-background-mobile.webp") !important;
    }
    .hero-content{
        max-width: 380px;
    }
    h1, h1 span{
        font-size: 32px;
        margin-bottom: 30px;
        max-width: 310px;
    }
    .hero-desc{
        font-size: 16px;
        line-height: 1.62;
        margin-bottom: 80px;
    }
    .hero-content > span{
        font-size: 16px;
        line-height: 38px;
    }
    .hero-content > span svg{
        width: 16px;
    }

    /*   C O N C E P T   S E K C I J A   */
    #concept {
        padding: 60px 0 90px;
        overflow: hidden;
        background-image: url("https://trinity-talks.com/wp-content/uploads/2025/12/the-concept-mobile-scaled.webp") !important;
    }
    #concept h2 {
        margin-bottom: 40px;
    }
    #concept .container > p {
        font-size: 16px;
        line-height: 1.62;
        max-width: 100%;
    }
    #concept .container > p:nth-of-type(2){
        margin-bottom: calc(100vw * 1.43);
    }
    #concept .list {
        font-size: 16px;
        margin: 30px 0 60px;
        padding-left: 15px;
    }
    #concept .list > p{
        margin-bottom: 10px;
    }
    #concept .one-liner{
        display: block;
        font-size: 24px;
        padding-right: 20px;
    }
    #concept .cards{
        grid-template-columns: minmax(0,1fr);
        row-gap: 60px;
        margin: 80px auto 60px;
        max-width: 64%;
    }
    #concept .cards svg{
        transform: rotate(90deg);
        margin: 15px 0;
    }
    #concept .card p{
        width: 100%;
        font-size: 18px;
        padding: 30px 25px 20px;
    }
    #concept .card p span{
        font-size: 11px;
        line-height: 1.36;
        max-width: 184px;
        margin: 5px auto;
    }
    #concept .container > p:last-child{
        max-width: 100%;
    }
    .progressive-blur-section{
        height: 72%;
    }

    #inspire{
        padding: 100px 0 90px;
    }
    #inspire h2{
        max-width: 400px;
        margin-bottom: 30px;
    }
    #inspire p{
        font-size: 16px;
        line-height: 1.62;
        max-width: 100%;
    }

    #talks-classes{
        padding: 100px 0;
    }
    #talks-classes h2{
        max-width: 300px;
        margin-bottom: 40px;
    }
    #talks-classes .container div{
        grid-template-columns: minmax(0, 1fr);
        row-gap: 20px;
        margin-bottom: 30px;
    }
    #talks-classes .one-liner {
        font-size: 32px;
    }

    #conversation{
        padding: 100px 0 90px;
    }
    #conversation h2{
        margin-bottom: 30px;
        max-width: 330px;
    }
    #conversation p{
        line-height: 1.62;
        font-size: 16px;
        max-width: 100%;
    }
    #conversation .one-liner{
        font-size: 20px;
        margin-bottom: 30px;
        max-width: 280px;
    }

    #ecosystem{
        padding: 100px 0 90px;
    }
    #ecosystem h2{
        font-size: 32px;
        margin-bottom: 50px;
    }
    #ecosystem p{
        font-size: 16px;
        line-height: 1.62;
    }
}