/* =========================================
   RESET
========================================= */

*,
*::before,
*::after{
    box-sizing:border-box;
    margin:0;
    padding:0;
}

html{
    scroll-behavior:smooth;
}

body{

    font-family:"Manrope",sans-serif;
    background:#ffffff;
    color:#111111;

    -webkit-font-smoothing:antialiased;
    text-rendering:optimizeLegibility;

}

img{

    display:block;
    width:100%;

}

a{

    color:inherit;
    text-decoration:none;

}


/* =========================================
   LAYOUT
========================================= */

main{

    width:100%;

}

.container{

    width:min(calc(100% - 48px), 600px);

    margin-inline:auto;

}

.narrow{

    max-width:600px;

    margin-inline:auto;

}


/* =========================================
   SECTIONS
========================================= */

.section{

    padding:76px 0;

}

.section:first-of-type{

    padding-top:0;

}

.section h2{

    font-size:clamp(2rem,4vw,3.2rem);

    line-height:.92;

    font-weight:300;

    letter-spacing:-.04em;

    margin-bottom:24px;

    color:#111;

}

.section p{

    font-size:1rem;

    line-height:1.4;

    color:#555;

    margin-bottom:16px;

}

.section .closing{

    color:#111;

    font-weight:500;

}

.section-image{

    width:100%;

    aspect-ratio:21/9;

    background:#ececec;

    margin:72px 0;

}


/* =========================================
   HERO
========================================= */

.hero{

    padding:24px 0 64px;

}

.logo{

    display:block;

    width:118px;

    margin:0 auto 28px;

}

.hero h1{

    font-size:clamp(2.8rem,6vw,4.5rem);

    line-height:.9;

    text-align:center;

    font-weight:200;

    letter-spacing:-.05em;

    margin-bottom:70px;

}

.hero-subtitle{

font-size:1rem;
font-weight:75;
text-align:left;

color:#555;

line-height:1;

margin-bottom:10px;

}

.hero-lead{

    font-size:1rem;

    font-weight:500;
    
    text-align:center;
    
    line-height:1.4;

    color:#111;

    margin-bottom:12px;

}

.hero-copy{

    font-size:1rem;
    font-weight:500;
    line-height:1.4;

    color:#333;

    margin-bottom:28px;

}

.submitted-email{

    margin:12px 0 10px;

    font-size:1.6rem;

    font-weight:600;

    letter-spacing:-.02em;

    line-height:1.2;

    color:#111111;

}

.email-check{

    margin:0 0 40px;

    font-size:.92rem;

    font-weight:500;

    color:#777777;

}

.video{

    width:100%;
    aspect-ratio:16/9;
}

.v-video{
    width:100%;
    max-width:420px;
    aspect-ratio:9 / 16;
    margin:72px auto;
    overflow:hidden;
}

.v-video iframe{
    display:block;
    width:100%;
    height:100%;
    border:0;
}

.video iframe{

    width:100%;
    height:100%;
    border:0;

}

.video-standard{

    position:relative;

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

    margin:56px 0;

}

.video-standard iframe{

    position:absolute;

    inset:0;

    width:100%;

    height:100%;

    border:0;

}

.hero-tagline{

    font-size:1rem;

    color:#111;

    font-weight:500;

    margin-bottom:28px;

}


/* =========================================
   NARRATIVE SECTIONS
========================================= */

.narrative .emphasis{

    font-size:clamp(.98rem,1.5vw,.98rem);

    line-height:1.35;

    color:#111;

    font-weight:400;

    margin:72px 0 34px;

}


/* =========================================
   HOW IT WORKS
========================================= */

.workflow .section-intro{

    font-size:1rem;

    line-height:1.35;

    color:#111;

    font-weight:500;

    margin-bottom:72px;

}

.steps{

    display:flex;
    flex-direction:column;
    gap:48px;
    margin-bottom:72px;

}

.step{

    display:flex;
    align-items:flex-start;
    gap:10px;

}

.step-number{

    flex:0 0 22px;

    font-size:1.15rem;
    font-weight:600;

}

.step h3{

    font-size:1.08rem;
    font-weight:600;
    line-height:1.45;
    margin-bottom:8px;

}

.step p{

    font-size:1rem;
    line-height:1.65;
    color:#555;
    margin-bottom:0;

}

.step-content{

    flex:1;

}


/* =========================================
   CONTACT
========================================= */

.contact .container{

    max-width:none;

}

.contact strong{

    font-weight:600;

    color:#111;

}

.contact-form{

    display:grid;

    gap:18px;

    margin:56px 0;

}

.contact-form input{

    width:100%;

    padding:20px 22px;

    border:1px solid #d9d9d9;

    background:#fff;

    font:inherit;

    font-size:.98rem;

}

.contact-form input:focus{

    outline:none;

    border-color:#111;

}

.contact-form button{

    padding:20px;

    border:none;

    background:#111;

    color:#fff;

    font:inherit;

    font-size:.95rem;

    letter-spacing:.08em;

    text-transform:uppercase;

    cursor:pointer;

    transition:.25s;

}

.contact-form button:hover{

    background:#333;

}

.nsfw{

    margin:56px 0 84px;

}

.nsfw p{

    color:#111;

    margin-bottom:10px;

}

.nsfw a{

    color:#1272cc;

    font-weight:700;

}

.final-image{

    width:100%;

    aspect-ratio:21/9;

    background:#ececec;

    margin-bottom:42px;

}

.final-line{

    font-size:clamp(1.5rem,2vw,2.2rem);

    line-height:1.3;

    color:#111;

    font-weight:1000;

}

.final-message .return-link{

    margin-top:56px;

}

.return-link{

    display:inline-block;

    margin-top:72px;

}

/* =========================================
   SUCCESS MODAL
========================================= */

.thank-you-line{

    font-size:1rem;
    font-weight:500;
    color:#111;
    max-width:560px;
    margin-top:40px;
    line-height:1.6;

}

/* =========================================
   FOOTER
========================================= */

footer{

    padding:80px 0 60px;

    border-top:1px solid #ececec;

}

.footer-content{

    display:flex;

    justify-content:space-between;

    align-items:flex-end;

    gap:40px;

    flex-wrap:wrap;

}

footer nav{

    display:flex;

    gap:28px;

}

footer nav a{

    color:#666;

}

footer p{

    color:#666;

    font-size:.95rem;

}

/* =========================================
   RESPONSIVE
========================================= */

@media (max-width:900px){

    .container{

        padding-inline:40px;

    }

    .section{

        padding:130px 0;

    }

    .steps{

        gap:52px;

    }

    .footer-content{

        flex-direction:column;

        align-items:flex-start;

    }

}

@media (max-width:600px){

    .container{

        padding-inline:1px;

    }

    .hero{

        padding-top:15px;
        padding-bottom:52px;

    }

    .logo{

        width:92px;

        margin-bottom:30px;

    }

    .hero h1{

        font-size:3rem;

        margin: bottom 10px;

    }

    .hero-subtitle{

        font-size:.98rem;

        font-weight:500;

        margin-bottom:60px;

    }

    .hero-lead,
    .hero-copy,
    .section p{

        font-size:.98rem;

        line-height:1.4;

    }

    .section{

        padding:84px 0;

    }

    .section h2{

        margin-bottom:32px;

    }

    .section-image,
    .final-image{

        margin:48px 0;

    }

    .video{

        margin-bottom:28px;

    }

    .video img{

        border-radius:0px;

    }

    .hero-tagline{

        font-size:.98rem;

        margin-bottom:22px;

    }

    .enter-link{

        font-size:.98rem;

    }

    .workflow .section-intro{

        margin-bottom:48px;

    }

    .step-number{

        font-size:2.4rem;

    }

    .step h3{

        font-size:.98rem;

    }

    .contact-form{

        margin:42px 0;

    }

    .contact-form input{

        padding:18px;

    }

    .contact-form button{

        padding:18px;

    }

    .nsfw{

        margin:42px 0 56px;

    }

    .final-line{

        font-size:.98rem;

    }

    footer{

        padding:60px 0 40px;

    }

}

/* =========================================
   AGE GATE
========================================= */

.age-actions{

    display:flex;
    flex-direction:column;
    gap:18px;

    margin-top:52px;

}

.primary-button{

    display:inline-flex;
    justify-content:center;
    align-items:center;

    padding:18px;

    background:#111;

    color:#fff;

    text-transform:uppercase;
    letter-spacing:.08em;

}

.secondary-link{

    text-align:center;

    color:#666;

}

/* =========================================
   LEGAL PAGES
========================================= */

.legal{

    padding:120px 0;

}

.legal h1{

    font-size:3rem;

    font-weight:300;

    margin-bottom:12px;

}

.legal-date{

    color:#777;

    margin-bottom:72px;

}

.legal h2{

    font-size:1.4rem;

    font-weight:600;

    margin-top:56px;

    margin-bottom:18px;

}

.legal p{

    color:#555;

    line-height:1.7;

    margin-bottom:22px;

}

.legal ul{

    margin:18px 0 28px 24px;

}

.legal li{

    margin-bottom:12px;

    color:#555;

}

/* =========================================
   INVEST
========================================= */

.transition-line{

    text-align:center;

    font-size:1.4rem;

    font-weight:300;

    color:#222;

    margin:18px 0;

}

.investment-highlight{

    margin:56px auto;

}

.investment-item{

    text-align:center;

    padding:24px 0;

}

.investment-divider{

    width:70px;

    height:1px;

    background:#ddd;

    margin:0 auto;

}

.investment-number{

    display:block;

    font-size:clamp(1.8rem,3vw,2rem);

    font-weight:300;

    letter-spacing:-.03em;

    color:#111;

}

.investment-label{

    display:block;

    margin-top:10px;

    color:#666;

    font-size:.95rem;

}

.whatsapp-cta{

    display:flex;

    justify-content:center;

    margin-top:72px;

}

.whatsapp-cta img{

    width:50px;

    transition:transform .25s ease, opacity .25s ease;

}

.whatsapp-cta img:hover{

    transform:scale(1.08);

    opacity:.85;

}

/* =========================================
   CLOSING IMAGE
========================================= */

.closing-image{

    margin:50px 0 56px;

}

.closing-image img{

    display:block;

    width:100%;

    border-radius:0px;

}

/* =========================================
   READING PROGRESS
========================================= */

#progress-bar{

    position:fixed;

    top:0;

    left:0;

    width:0;

    height:3px;

    background:#1272cc;

    z-index:9999;

    transition:width .08s linear;

}

/* =========================================
   MANIFESTO
========================================= */

.manifesto{

    text-align:center;

    margin:36px 0;

}

.manifesto p{

    font-size:clamp(1.6rem,3vw,2.2rem);

    line-height:1.15;

    font-weight:300;

    letter-spacing:-.03em;

    color:#111;

    margin:18px 0;

}

/* =========================================
   TIMELINE
========================================= */

.timeline{

    margin:56px 0 64px;

}

.timeline-item{

    text-align:center;

    padding:20px 0;

}

.timeline-divider{

    width:72px;

    height:1px;

    background:#ddd;

    margin:0 auto;

}

.timeline-year{

    display:block;

    font-size:2rem;

    font-weight:300;

    letter-spacing:-.03em;

    color:#111;

}

.timeline-label{

    display:block;

    margin-top:10px;

    font-size:.95rem;

    line-height:1.45;

    color:#666;

}

.soft-bold{

    font-weight:525;

}

.guide-image{
    width:100%;
    margin:72px 0;
}

.guide-image img{
    display:block;
    width:100%;
    height:auto;
}

/* =========================================================
   OPPORTUNITY PAGE
   ========================================================= */

.opportunity-hero {

    padding-bottom: 72px;

}

.opportunity-hero .hero-copy {

    max-width: 560px;

}


/* ---------------------------------------------------------
   BUSINESS MODEL
   --------------------------------------------------------- */

.business-model {

    margin: 48px 0;

    border-top: 1px solid #dddddd;

}


.business-model-row {

    display: flex;

    justify-content: space-between;
    align-items: center;

    gap: 24px;

    padding: 20px 0;

    border-bottom: 1px solid #dddddd;

}


.business-model-row span {

    font-size: .95rem;
    font-weight: 400;

    color: #555555;

}


.business-model-row strong {

    font-size: 1.15rem;
    font-weight: 600;

    color: #111111;

}


/* ---------------------------------------------------------
   FINANCIAL TABLE
   --------------------------------------------------------- */

.financial-table {

    margin-top: 48px;

    border-top: 1px solid #dddddd;

}


.financial-row {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 24px;

    padding: 20px 0;

    border-bottom: 1px solid #dddddd;

}


.financial-row span,
.financial-row strong {

    font-size: .95rem;

}


.financial-row span {

    color: #555555;

}


.financial-row strong {

    font-weight: 600;
    color: #111111;

}


.financial-header span {

    font-size: .75rem;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .08em;

    color: #888888;

}


.table-note {

    margin-top: 20px;

    font-size: .78rem;

    line-height: 1.5;

    color: #888888;

}


/* ---------------------------------------------------------
   USE OF FUNDS
   --------------------------------------------------------- */

.funds-list {

    margin-top: 48px;

    border-top: 1px solid #dddddd;

}


.fund-item {

    display: grid;

    grid-template-columns: 48px 1fr;

    gap: 20px;

    align-items: baseline;

    padding: 20px 0;

    border-bottom: 1px solid #dddddd;

}


.fund-item span {

    font-size: .72rem;

    font-weight: 600;

    letter-spacing: .08em;

    color: #999999;

}


.fund-item p {

    margin: 0;

    font-size: 1rem;

    color: #222222;

}


/* ---------------------------------------------------------
   CURRENT POSITION
   --------------------------------------------------------- */

.position-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1px;

    margin-top: 48px;

    background: #dddddd;

    border: 1px solid #dddddd;

}


.position-item {

    padding: 28px;

    background: #ffffff;

}


.position-item strong {

    display: block;

    margin-bottom: 10px;

    font-size: 1rem;

    font-weight: 600;

    color: #111111;

}


.position-item p {

    margin: 0;

    font-size: .9rem;

    line-height: 1.5;

    color: #666666;

}


/* ---------------------------------------------------------
   INVESTMENT STRUCTURE
   --------------------------------------------------------- */

.structure-list {

    margin-top: 48px;

    border-top: 1px solid #dddddd;

}


.structure-item {

    padding: 28px 0;

    border-bottom: 1px solid #dddddd;

}


.structure-item h3 {

    margin-bottom: 10px;

    font-size: 1.05rem;

    font-weight: 600;

    color: #111111;

}


.structure-item p {

    margin: 0;

    max-width: 540px;

    font-size: .92rem;

    line-height: 1.6;

    color: #555555;

}


/* ---------------------------------------------------------
   FOUNDER
   --------------------------------------------------------- */

.founder-image {

    max-width: 100%;

    margin: 72px auto;

    aspect-ratio: auto;

    background: transparent;

}

.founder-image img {

    display: block;

    width: 100%;

}


/* ---------------------------------------------------------
   RESPONSIVE
   --------------------------------------------------------- */

@media (max-width: 640px) {

    .opportunity-video {

        margin-top: 36px;

    }


    .business-model {

        margin-top: 36px;

    }


    .business-model-row {

        padding: 18px 0;

    }


    .financial-row {

        grid-template-columns: 1.3fr .7fr;

        gap: 16px;

    }


    .position-grid {

        grid-template-columns: 1fr;

    }


    .position-item {

        padding: 24px;

    }


    .fund-item {

        grid-template-columns: 38px 1fr;

        gap: 16px;

    }


    .structure-item {

        padding: 24px 0;

    }

}