body{
    margin:0;
    font-family:'Inter',sans-serif;
    background:#ffffff;
}

#topbar{
    position:fixed;
    top:0;
    left:0;
    right:0;
    height:72px;
    padding:0 200px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:rgba(255,255,255,.02);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    z-index:10;
}

.tb-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-ico{
    width:34px;
}

.brand-name{
    font-size:16px;
    font-weight:600;
    color:#020617;
}

.tb-mid{
    display:flex;
    gap:28px;
}

.tb-mid span{
    font-size:14px;
    font-weight:500;
    color:#ffffff;
}

.tb-right{
    display:flex;
    gap:10px;
}

.btn-alt{
    padding:8px 16px;
    border-radius:999px;
    background:transparent;
    border:1px solid rgba(255,255,255,.35);
    font-size:14px;
    color:#ffffff;
}

.btn-main{
    padding:8px 16px;
    border-radius:999px;
    background:#020617;
    color:#ffffff;
    border:none;
    font-size:14px;
}

.hero-wrap{
    background:url("bg-light.svg") no-repeat top center;
    background-size:cover;
    padding:160px 0 260px;
    text-align:center;
    position:relative;
    z-index:1;
}

.notice-pill{
    display:inline-flex;
    gap:10px;
    align-items:center;
    background:#0f766e;
    color:#ffffff;
    padding:8px 18px;
    border-radius:999px;
    margin-bottom:32px;
}

.pill-tag{
    background:#22c55e;
    padding:4px 10px;
    border-radius:999px;
    font-size:12px;
    font-weight:600;
}

.hero-copy{
    max-width:760px;
    margin:0 auto;
}

.hero-copy h1{
    font-size:56px;
    font-weight:700;
    color:#ffffff;
}

.hero-copy p{
    font-size:18px;
    color:rgba(255,255,255,.85);
}

.signup-box{
    display:flex;
    gap:6px;
    width:420px;
    margin:32px auto 0;
    padding:6px;
    background:rgba(255,255,255,.25);
    border-radius:999px;
}

.signup-box input{
    flex:1;
    border:none;
    background:transparent;
    padding:10px 14px;
    color:#ffffff;
}

.signup-box button{
    border:none;
    padding:10px 18px;
    border-radius:999px;
    background:#ffffff;
    font-weight:600;
}

.hero-shot{
    max-width:1100px;
    margin:120px auto 0;
}

.hero-shot img{
    width:100%;
    border-radius:18px;
}

.info-zone{
    padding:120px 200px;
    text-align:center;
}

.info-zone h2{
    font-size:44px;
    font-weight:700;
    color:#020617;
}

.info-sub{
    max-width:820px;
    margin:16px auto 72px;
    font-size:18px;
    color:#475569;
}

.info-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:32px;
}

.info-card{
    background:#f8fafc;
    border-radius:24px;
    padding:36px;
    text-align:left;
    display:flex;
    flex-direction:column;
}

.info-label{
    font-size:12px;
    font-weight:600;
    color:#16a34a;
}

.info-card h3{
    margin-top:14px;
    font-size:26px;
    color:#020617;
}

.info-card p{
    margin-top:12px;
    color:#475569;
    line-height:1.6;
}

.media-box{
    margin-top:32px;
    height:260px;
    background:#ffffff;
    border-radius:18px;
    position:relative;
    overflow:hidden;
}

.media-img{
    position:absolute;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    max-width:90%;
}

.media-img.small{
    max-width:75%;
}

@media(max-width:900px){
    #topbar{padding:0 24px}
    .info-zone{padding:80px 24px}
    .info-grid{grid-template-columns:1fr}
}

.ux-block{
    padding:140px 200px;
    text-align:center;
    background:#ffffff;
}

.ux-label{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    color:#16a34a;
    margin-bottom:14px;
}

.ux-title{
    font-size:42px;
    font-weight:700;
    color:#020617;
    margin-bottom:16px;
}

.ux-desc{
    max-width:760px;
    margin:0 auto 72px;
    font-size:18px;
    color:#475569;
    line-height:1.6;
}

.ux-frame{
    max-width:1100px;
    margin:0 auto;
    padding:48px;
    border-radius:28px;
    background:#f8fafc;
}

.ux-img{
    width:100%;
    border-radius:22px;
}

@media(max-width:900px){
    .ux-block{
        padding:100px 24px;
    }

    .ux-frame{
        padding:24px;
    }
}
.ent-wrap{
    background:#f6f7f8;
    padding:140px 0;
}

.ent-inner{
    max-width:1200px;
    margin:0 auto;
    padding:0 200px;
}

.ent-tag{
    display:inline-block;
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    color:#16a34a;
    margin-bottom:18px;
}

.ent-top{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:40px;
    margin-bottom:72px;
}

.ent-copy h2{
    font-size:48px;
    font-weight:700;
    color:#020617;
    max-width:640px;
}

.ent-copy p{
    margin-top:14px;
    font-size:18px;
    color:#475569;
    max-width:560px;
}

.ent-btn{
    padding:12px 22px;
    border-radius:999px;
    background:#020617;
    color:#ffffff;
    border:none;
    font-size:14px;
    cursor:pointer;
}

.ent-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:64px;
}

.ent-item h3{
    margin-top:14px;
    font-size:20px;
    color:#020617;
}

.ent-item p{
    margin-top:10px;
    font-size:16px;
    color:#475569;
    line-height:1.6;
    max-width:420px;
}

.ent-ico{
    width:36px;
    height:36px;
    border-radius:50%;
    background:#dcfce7;
}

.ent-ico.shield{
    background:#e0f2fe;
}

@media(max-width:900px){
    .ent-inner{
        padding:0 24px;
    }

    .ent-top{
        flex-direction:column;
    }

    .ent-grid{
        grid-template-columns:1fr;
        gap:40px;
    }
}
.cs-wrap{
    padding:120px 200px;
    background:#ffffff;
}

.cs-wrap input{
    display:none;
}

.cs-card{
    border-radius:28px;
    padding:72px;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,.45),
            rgba(0,0,0,.75)
        ),
        url("success.svg") center/cover no-repeat;
    color:#ffffff;
}


.cs-copy{
    display:none;
    max-width:520px;
}

.cs-tag{
    font-size:12px;
    font-weight:600;
    letter-spacing:.14em;
    opacity:.9;
}

.cs-copy h2{
    margin-top:18px;
    font-size:36px;
    font-weight:700;
    line-height:1.3;
}

.cs-copy a{
    display:inline-block;
    margin-top:18px;
    color:#ffffff;
    text-decoration:none;
}

.cs-stats{
    display:flex;
    gap:64px;
    margin-top:48px;
}

.cs-stats strong{
    display:block;
    font-size:32px;
}

.cs-stats span{
    font-size:14px;
    opacity:.85;
}

#s1:checked ~ .cs-card .cs-a,
#s2:checked ~ .cs-card .cs-b,
#s3:checked ~ .cs-card .cs-c,
#s4:checked ~ .cs-card .cs-d,
#s5:checked ~ .cs-card .cs-e{
    display:block;
}

.cs-logos{
    display:flex;
    justify-content:center;
    gap:48px;
    margin-top:48px;
}

.cs-logos label{
    font-size:16px;
    font-weight:600;
    color:#94a3b8;
    cursor:pointer;
}

#s1:checked ~ .cs-logos label[for="s1"],
#s2:checked ~ .cs-logos label[for="s2"],
#s3:checked ~ .cs-logos label[for="s3"],
#s4:checked ~ .cs-logos label[for="s4"],
#s5:checked ~ .cs-logos label[for="s5"]{
    color:#020617;
}

@media(max-width:900px){
    .cs-wrap{
        padding:80px 24px;
    }

    .cs-card{
        padding:48px 28px;
    }

    .cs-stats{
        flex-direction:column;
        gap:24px;
    }

    .cs-logos{
        flex-wrap:wrap;
        gap:24px;
    }
}
.ind-wrap{
    padding:140px 200px;
    background:#ffffff;
}

.ind-title{
    text-align:center;
    font-size:44px;
    font-weight:700;
    color:#020617;
}

.ind-sub{
    text-align:center;
    max-width:760px;
    margin:16px auto 72px;
    font-size:18px;
    color:#475569;
}

.ind-scroll{
    display:flex;
    gap:32px;
    overflow-x:auto;
    padding-bottom:16px;
}

.ind-scroll::-webkit-scrollbar{
    height:8px;
}

.ind-scroll::-webkit-scrollbar-thumb{
    background:#e5e7eb;
    border-radius:999px;
}

.ind-card{
    width:360px;
    flex-shrink:0;
}


.ind-media{
    position:relative;
    width:100%;
    aspect-ratio: 1 / 1;
    border-radius:22px;
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.ind-media::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.25);
}

.ind-name{
    position:absolute;
    left:24px;
    bottom:24px;
    z-index:1;
    font-size:32px;
    font-weight:700;
    color:#ffffff;
}

.ind-text{
    margin-top:16px;
    font-size:16px;
    color:#334155;
    line-height:1.6;
}

.ind-link{
    display:inline-block;
    margin-top:10px;
    font-size:15px;
    color:#16a34a;
    font-weight:500;
}

.bg-perp{
    background-image:url("background/perplexity (1).webp");
}

.bg-x{
    background-image:url("background/x.webp");
}

.bg-kal{
    background-image:url("background/kalshi.webp");
}

.bg-cog{
    background-image:url("background/cognition.webp");
}

@media(max-width:900px){
    .ind-wrap{
        padding:100px 24px;
    }

    .ind-card{
        min-width:300px;
    }

    .ind-name{
        font-size:26px;
    }
}
#join-block{
    padding:160px 200px;
    text-align:center;
    background:#ffffff;
}

.join-head{
    font-size:48px;
    font-weight:700;
    color:#020617;
    line-height:1.2;
}

.join-note{
    margin:18px auto 42px;
    max-width:620px;
    font-size:18px;
    color:#475569;
}

.join-actions{
    display:flex;
    justify-content:center;
    gap:14px;
    margin-bottom:84px;
}

.btn-dark{
    padding:14px 26px;
    border-radius:999px;
    background:#020617;
    color:#ffffff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

.btn-light{
    padding:14px 26px;
    border-radius:999px;
    border:1px solid #e5e7eb;
    color:#020617;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

.join-bottom{
    display:flex;
    justify-content:center;
    align-items:flex-start;
    gap:64px;
    max-width:920px;
    margin:0 auto;
}

.info-piece{
    width:260px;
}

.info-piece h3{
    margin-top:16px;
    font-size:18px;
    color:#020617;
}

.info-piece p{
    margin-top:6px;
    font-size:15px;
    color:#475569;
}

.info-piece a{
    display:inline-block;
    margin-top:10px;
    font-size:15px;
    color:#16a34a;
    text-decoration:none;
    font-weight:500;
}

.mid-divider{
    width:1px;
    height:140px;
    background:#e5e7eb;
}

.icon-wrap{
    width:48px;
    height:48px;
    margin:0 auto;
    border-radius:12px;
    background:#ecfdf5;
    display:flex;
    align-items:center;
    justify-content:center;
}

.icon-wrap.alt{
    background:#eff6ff;
}

.icon-dot{
    width:18px;
    height:18px;
    background:#16a34a;
    border-radius:4px;
}

.icon-wrap.alt .icon-dot{
    background:#2563eb;
}

@media(max-width:900px){
    #join-block{
        padding:120px 24px;
    }

    .join-bottom{
        flex-direction:column;
        gap:40px;
    }

    .mid-divider{
        display:none;
    }
}
#site-end{
    padding:120px 200px 60px;
    background:#ffffff;
    border-top:1px solid #f1f5f9;
}

.foot-top{
    margin-bottom:64px;
}

.brand-row{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.brand-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.brand-icon{
    width:28px;
}

.brand-name{
    font-size:16px;
    font-weight:600;
    color:#020617;
}

.brand-socials{
    display:flex;
    gap:14px;
}

.brand-socials a{
    text-decoration:none;
    font-size:15px;
    color:#64748b;
}

.foot-links{
    display:grid;
    grid-template-columns:repeat(5,1fr);
    gap:48px;
    margin-bottom:80px;
}

.link-col h4{
    font-size:13px;
    font-weight:600;
    letter-spacing:.06em;
    color:#64748b;
    margin-bottom:14px;
    text-transform:uppercase;
}

.link-col a{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    color:#020617;
    text-decoration:none;
}

.foot-mid{
    padding:32px 0 48px;
    border-top:1px solid #f1f5f9;
}

.trust-note{
    display:flex;
    align-items:center;
    gap:14px;
    font-size:15px;
    color:#020617;
}

.badge-round{
    font-size:12px;
    padding:6px 10px;
    border-radius:999px;
    border:1px solid #e5e7eb;
    color:#64748b;
}

.foot-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:40px;
    font-size:14px;
    color:#64748b;
}

.sys-status{
    display:flex;
    align-items:center;
    gap:8px;
}

.sys-status .dot{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#22c55e;
}

.view-tools{
    display:flex;
    gap:10px;
    font-size:16px;
}

@media(max-width:1000px){
    #site-end{
        padding:100px 24px 48px;
    }

    .foot-links{
        grid-template-columns:repeat(2,1fr);
        gap:32px;
    }

    .foot-bottom{
        flex-direction:column;
        gap:18px;
    }
}

.brand-mark{
    max-height:26px;
    max-width:180px;
}
