

       /* =========================
        GLOBAL CSS
========================= */

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #020617;
            color: #fff;
        }

        /* =========================
        HEADER
========================= */

        .header {
            width: 100%;
            position: sticky;
            top: 0;
            left: 0;
            z-index: 1000;
            background: rgba(2, 6, 23, 0.88);
            backdrop-filter: blur(14px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .container {
            width: 100%;
            max-width: 1350px;
            margin: auto;
            padding: 18px 25px;

            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        /* =========================
        LOGO
========================= */

        .logo {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .logo span {
            color: #38bdf8;
        }

        /* =========================
        NAVBAR
========================= */

        .navbar {
            display: flex;
            align-items: center;
            gap: 35px;
        }

        .navbar a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 15px;
            font-weight: 500;
            transition: 0.3s;
            position: relative;
        }

        .navbar a:hover {
            color: #38bdf8;
        }

        /* =========================
        BUTTON
========================= */

        .header-actions {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .login-btn {
            padding: 12px 20px;
            border-radius: 10px;
            background: #38bdf8;
            color: #000;
            font-weight: 700;
            text-decoration: none;
            transition: 0.3s;
        }

        .login-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(56, 189, 248, 0.35);
        }

        /* =========================
        MOBILE BUTTON
========================= */

        .menu-btn {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 28px;
            cursor: pointer;
        }

        /* =========================
        RESPONSIVE
========================= */

        @media(max-width:900px) {

            .navbar {
                display: none;
            }

            .header-actions {
                display: none;
            }

            .menu-btn {
                display: block;
            }

            .logo {
                font-size: 24px;
            }

        }







        /* =========================
    ANNOUNCEMENT BAR
========================= */

.announcement-bar{
    width:100%;
    padding:14px 25px;

    background:
    linear-gradient(
        90deg,
        rgba(56,189,248,0.12),
        rgba(14,165,233,0.05)
    );

    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.announcement-wrapper{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

/* =========================
    CONTENT
========================= */

.announcement-content{
    display:flex;
    align-items:center;
    gap:14px;
}

.live-dot{
    width:10px;
    height:10px;
    border-radius:50%;

    background:#22c55e;

    position:relative;
    flex-shrink:0;
}

.live-dot::before{
    content:"";
    position:absolute;

    top:50%;
    left:50%;

    width:22px;
    height:22px;

    border-radius:50%;

    background:rgba(34,197,94,0.25);

    transform:translate(-50%, -50%);

    animation:livePulse 1.8s infinite;
}

@keyframes livePulse{

    0%{
        transform:translate(-50%, -50%) scale(0.6);
        opacity:1;
    }

    100%{
        transform:translate(-50%, -50%) scale(1.8);
        opacity:0;
    }

}

.announcement-content p{
    color:#cbd5e1;
    font-size:15px;
    line-height:1.7;
}

/* =========================
    BUTTON
========================= */

.announcement-btn{
    padding:11px 18px;

    border-radius:10px;

    text-decoration:none;

    color:#38bdf8;
    font-size:14px;
    font-weight:700;

    border:1px solid rgba(56,189,248,0.2);

    background:rgba(56,189,248,0.08);

    transition:0.3s;
}

.announcement-btn:hover{
    transform:translateY(-2px);

    background:#38bdf8;
    color:#000;

    box-shadow:
    0 8px 25px rgba(56,189,248,0.25);
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:850px){

    .announcement-wrapper{
        flex-direction:column;
        align-items:flex-start;
    }

    .announcement-content{
        align-items:flex-start;
    }

}

@media(max-width:600px){

    .announcement-bar{
        padding:16px 18px;
    }

    .announcement-content p{
        font-size:14px;
    }

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

}















/* =========================
    STATUS BAR
========================= */

.status-bar{
    width:100%;
    padding:18px 25px;

    background:
    linear-gradient(
        90deg,
        rgba(56,189,248,0.08),
        rgba(15,23,42,0.9)
    );

    border-top:1px solid rgba(255,255,255,0.05);
    border-bottom:1px solid rgba(255,255,255,0.05);
}

.status-container{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
}

/* =========================
    LEFT
========================= */

.status-left{
    display:flex;
    flex-direction:column;
    gap:12px;
}

.status-live{
    display:flex;
    align-items:center;
    gap:12px;
}

.status-text{
    color:#38bdf8;
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

/* =========================
    PULSE DOT
========================= */

.pulse{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    position:relative;
}

.pulse::before{
    content:"";

    position:absolute;

    top:50%;
    left:50%;

    width:24px;
    height:24px;

    border-radius:50%;

    background:rgba(34,197,94,0.25);

    transform:translate(-50%, -50%);

    animation:pulseAnimation 1.8s infinite;
}

@keyframes pulseAnimation{

    0%{
        transform:translate(-50%, -50%) scale(0.5);
        opacity:1;
    }

    100%{
        transform:translate(-50%, -50%) scale(1.8);
        opacity:0;
    }

}

.status-left p{
    max-width:750px;

    color:#cbd5e1;
    font-size:15px;
    line-height:1.8;
}

/* =========================
    RIGHT
========================= */

.status-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.status-card{
    min-width:130px;

    padding:16px 18px;

    border-radius:16px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.06);
}

.status-card span{
    display:block;

    margin-bottom:6px;

    color:#94a3b8;
    font-size:13px;
}

.status-card strong{
    color:#fff;
    font-size:16px;
}

/* =========================
    RESPONSIVE
========================= */

@media(max-width:950px){

    .status-container{
        flex-direction:column;
        align-items:flex-start;
    }

    .status-right{
        width:100%;
    }

    .status-card{
        flex:1;
    }

}

@media(max-width:600px){

    .status-bar{
        padding:16px 18px;
    }

    .status-left p{
        font-size:14px;
    }

    .status-right{
        flex-direction:column;
    }

    .status-card{
        width:100%;
    }

}















/* =========================
        FEATURES SECTION
========================= */

.features-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at top right,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.features-container{
    width:100%;
    max-width:1350px;
    margin:auto;
}

/* =========================
        SECTION HEADING
========================= */

.section-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.section-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:22px;
}

.section-heading h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin-bottom:22px;
}

.section-heading p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
}

/* =========================
        FEATURES GRID
========================= */

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

/* =========================
        FEATURE CARD
========================= */

.feature-card{
    position:relative;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.06);

    overflow:hidden;

    transition:0.35s;
}

.feature-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#38bdf8;

    transform:scaleX(0);

    transform-origin:left;

    transition:0.35s;
}

.feature-card:hover{
    transform:translateY(-8px);

    border-color:rgba(56,189,248,0.2);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.feature-card:hover::before{
    transform:scaleX(1);
}

/* =========================
        ICON
========================= */

.feature-icon{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.15);

    font-size:30px;

    margin-bottom:25px;
}

/* =========================
        TEXT
========================= */

.feature-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:18px;
}

.feature-card p{
    color:#94a3b8;
    font-size:16px;
    line-height:1.8;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .features-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .features-section{
        padding:90px 18px;
    }

    .section-heading h2{
        font-size:38px;
    }

    .section-heading p{
        font-size:16px;
    }

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

    .feature-card{
        padding:28px;
    }

}






















/* =========================
        USE CASES SECTION
========================= */

.use-cases-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at bottom left,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.use-cases-container{
    width:100%;
    max-width:1350px;
    margin:auto;
}

/* =========================
        SECTION HEADING
========================= */

.use-cases-heading{
    max-width:850px;
    margin:auto auto 70px;
    text-align:center;
}

.use-cases-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:22px;
}

.use-cases-heading h2{
    font-size:52px;
    line-height:1.2;
    color:#fff;
    margin-bottom:22px;
}

.use-cases-heading p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.8;
}

/* =========================
        GRID
========================= */

.use-cases-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;
}

/* =========================
        CARD
========================= */

.use-case-card{
    position:relative;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.06);

    overflow:hidden;

    transition:0.35s;
}

.use-case-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#38bdf8;

    transform:scaleX(0);

    transform-origin:left;

    transition:0.35s;
}

.use-case-card:hover{
    transform:translateY(-8px);

    border-color:rgba(56,189,248,0.2);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.use-case-card:hover::before{
    transform:scaleX(1);
}

/* =========================
        ICON
========================= */

.use-case-icon{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.15);

    font-size:30px;

    margin-bottom:25px;
}

/* =========================
        TEXT
========================= */

.use-case-card h3{
    font-size:24px;
    color:#fff;
    margin-bottom:18px;
}

.use-case-card p{
    color:#94a3b8;
    font-size:16px;
    line-height:1.8;
    margin-bottom:25px;
}

/* =========================
        LABEL
========================= */

.use-case-label{
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:10px 16px;

    border-radius:50px;

    background:rgba(56,189,248,0.08);

    border:1px solid rgba(56,189,248,0.15);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .use-cases-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .use-cases-section{
        padding:90px 18px;
    }

    .use-cases-heading h2{
        font-size:38px;
    }

    .use-cases-heading p{
        font-size:16px;
    }

    .use-cases-grid{
        grid-template-columns:1fr;
    }

    .use-case-card{
        padding:28px;
    }

}













/* =========================
        API PREVIEW SECTION
========================= */

.api-preview-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at top right,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.api-preview-container{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

/* =========================
        LEFT CONTENT
========================= */

.api-preview-content{
    width:100%;
}

.api-preview-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:24px;
}

.api-preview-content h2{
    font-size:54px;
    line-height:1.2;
    color:#fff;

    margin-bottom:24px;
}

.api-preview-content p{
    color:#94a3b8;
    font-size:18px;
    line-height:1.9;

    margin-bottom:35px;
}

/* =========================
        FEATURE LIST
========================= */

.api-feature-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.api-feature-item{
    display:flex;
    align-items:center;
    gap:14px;

    padding:18px 22px;

    border-radius:18px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.06);

    color:#e2e8f0;

    font-size:16px;
    font-weight:500;
}

/* =========================
        CODE CARD
========================= */

.api-code-wrapper{
    width:100%;
}

.api-code-card{
    width:100%;

    border-radius:28px;

    overflow:hidden;

    background:#0f172a;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}

/* =========================
        TOP BAR
========================= */

.api-code-top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.api-dots{
    display:flex;
    align-items:center;
    gap:10px;
}

.api-dot{
    width:12px;
    height:12px;

    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#facc15;
}

.green{
    background:#22c55e;
}

.api-endpoint{
    color:#38bdf8;
    font-size:14px;
    font-weight:700;
}

/* =========================
        CODE
========================= */

.api-code-card pre{
    margin:0;

    padding:35px;

    overflow:auto;

    color:#38bdf8;

    font-size:15px;
    line-height:1.9;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .api-preview-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .api-preview-section{
        padding:90px 18px;
    }

    .api-preview-content h2{
        font-size:38px;
    }

    .api-preview-content p{
        font-size:16px;
    }

    .api-code-card pre{
        font-size:14px;
        padding:25px;
    }

}
















/* =========================
      DOCUMENTATION SECTION
========================= */

.docs-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at bottom left,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.docs-container{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

/* =========================
      LEFT CONTENT
========================= */

.docs-content{
    width:100%;
}

.docs-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:24px;
}

.docs-content h2{
    font-size:54px;
    line-height:1.2;

    color:#fff;

    margin-bottom:24px;
}

.docs-content p{
    color:#94a3b8;

    font-size:18px;
    line-height:1.9;

    margin-bottom:35px;
}

/* =========================
      BUTTONS
========================= */

.docs-buttons{
    display:flex;
    align-items:center;
    gap:18px;
}

.docs-primary-btn,
.docs-secondary-btn{
    padding:15px 26px;

    border-radius:12px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:0.3s;
}

.docs-primary-btn{
    background:#38bdf8;
    color:#000;
}

.docs-primary-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(56,189,248,0.35);
}

.docs-secondary-btn{
    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.03);

    color:#fff;
}

.docs-secondary-btn:hover{
    border-color:#38bdf8;
    color:#38bdf8;
}

/* =========================
      DOCS CARD
========================= */

.docs-preview{
    width:100%;
}

.docs-card{
    width:100%;

    border-radius:28px;

    overflow:hidden;

    background:#0f172a;

    border:1px solid rgba(255,255,255,0.06);

    box-shadow:
    0 25px 60px rgba(0,0,0,0.45);
}

/* =========================
      TOP BAR
========================= */

.docs-top{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:18px 22px;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

.docs-dots{
    display:flex;
    align-items:center;
    gap:10px;
}

.docs-dot{
    width:12px;
    height:12px;

    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#facc15;
}

.green{
    background:#22c55e;
}

.docs-version{
    color:#38bdf8;

    font-size:14px;
    font-weight:700;
}

/* =========================
      BODY
========================= */

.docs-body{
    padding:28px;
}

.docs-item{
    display:flex;
    align-items:center;
    gap:18px;

    padding:18px 20px;

    border-radius:18px;

    background:rgba(255,255,255,0.02);

    border:1px solid rgba(255,255,255,0.04);

    margin-bottom:18px;

    transition:0.3s;
}

.docs-item:last-child{
    margin-bottom:0;
}

.docs-item:hover,
.docs-item.active{
    background:rgba(56,189,248,0.08);

    border-color:rgba(56,189,248,0.15);
}

/* =========================
      METHOD BADGES
========================= */

.method{
    min-width:80px;

    padding:10px 14px;

    border-radius:10px;

    text-align:center;

    font-size:13px;
    font-weight:800;
}

.get{
    background:rgba(34,197,94,0.15);
    color:#22c55e;
}

.post{
    background:rgba(59,130,246,0.15);
    color:#3b82f6;
}

.put{
    background:rgba(250,204,21,0.15);
    color:#facc15;
}

.delete{
    background:rgba(239,68,68,0.15);
    color:#ef4444;
}

/* =========================
      ENDPOINT TEXT
========================= */

.endpoint{
    color:#e2e8f0;

    font-size:15px;
    font-weight:500;
}

/* =========================
      RESPONSIVE
========================= */

@media(max-width:1100px){

    .docs-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .docs-section{
        padding:90px 18px;
    }

    .docs-content h2{
        font-size:38px;
    }

    .docs-content p{
        font-size:16px;
    }

    .docs-buttons{
        flex-direction:column;
    }

    .docs-primary-btn,
    .docs-secondary-btn{
        width:100%;
        text-align:center;
    }

    .docs-item{
        flex-direction:column;
        align-items:flex-start;
    }

}















/* =========================
          ROADMAP SECTION
========================= */

.roadmap-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at top left,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.roadmap-container{
    width:100%;
    max-width:1200px;
    margin:auto;
}

/* =========================
          HEADING
========================= */

.roadmap-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 80px;
}

.roadmap-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:24px;
}

.roadmap-heading h2{
    font-size:54px;
    line-height:1.2;

    color:#fff;

    margin-bottom:24px;
}

.roadmap-heading p{
    color:#94a3b8;

    font-size:18px;
    line-height:1.9;
}

/* =========================
          TIMELINE
========================= */

.roadmap-wrapper{
    position:relative;

    display:flex;
    flex-direction:column;
    gap:40px;
}

/* =========================
          ITEM
========================= */

.roadmap-item{
    position:relative;

    display:flex;
    gap:30px;
}

.roadmap-line{
    position:absolute;

    top:70px;
    left:28px;

    width:2px;
    height:calc(100% + 40px);

    background:rgba(255,255,255,0.08);
}

/* =========================
          ICON
========================= */

.roadmap-icon{
    position:relative;

    width:58px;
    height:58px;

    min-width:58px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#0f172a;

    border:2px solid rgba(56,189,248,0.3);

    color:#38bdf8;

    font-size:22px;
    font-weight:700;

    z-index:2;
}

/* =========================
          CONTENT
========================= */

.roadmap-content{
    flex:1;

    padding:32px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.06);

    transition:0.35s;
}

.roadmap-content:hover{
    transform:translateY(-5px);

    border-color:rgba(56,189,248,0.2);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.roadmap-phase{
    display:inline-block;

    margin-bottom:16px;

    color:#38bdf8;

    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
}

.roadmap-content h3{
    color:#fff;

    font-size:28px;

    margin-bottom:18px;
}

.roadmap-content p{
    color:#94a3b8;

    font-size:16px;
    line-height:1.9;
}

/* =========================
          STATES
========================= */

.completed .roadmap-icon{
    background:rgba(34,197,94,0.12);
    border-color:rgba(34,197,94,0.3);
    color:#22c55e;
}

.active .roadmap-icon{
    animation:roadmapPulse 1.8s infinite;
}

@keyframes roadmapPulse{

    0%{
        box-shadow:0 0 0 0 rgba(56,189,248,0.4);
    }

    70%{
        box-shadow:0 0 0 18px rgba(56,189,248,0);
    }

    100%{
        box-shadow:0 0 0 0 rgba(56,189,248,0);
    }

}

/* =========================
          RESPONSIVE
========================= */

@media(max-width:700px){

    .roadmap-section{
        padding:90px 18px;
    }

    .roadmap-heading h2{
        font-size:38px;
    }

    .roadmap-heading p{
        font-size:16px;
    }

    .roadmap-item{
        gap:18px;
    }

    .roadmap-content{
        padding:24px;
    }

    .roadmap-content h3{
        font-size:22px;
    }

    .roadmap-line{
        left:20px;
    }

    .roadmap-icon{
        width:42px;
        height:42px;
        min-width:42px;

        font-size:16px;
    }

}













/* =========================
        AUDIENCE SECTION
========================= */

.audience-section{
    width:100%;
    padding:120px 25px;

    background:
    radial-gradient(
        circle at top right,
        rgba(56,189,248,0.08),
        transparent 30%
    ),
    #020617;
}

.audience-container{
    width:100%;
    max-width:1350px;
    margin:auto;
}

/* =========================
        SECTION HEADING
========================= */

.audience-heading{
    text-align:center;
    max-width:850px;
    margin:auto auto 70px;
}

.audience-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:24px;
}

.audience-heading h2{
    font-size:54px;
    line-height:1.2;

    color:#fff;

    margin-bottom:24px;
}

.audience-heading p{
    color:#94a3b8;

    font-size:18px;
    line-height:1.9;
}

/* =========================
        GRID
========================= */

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

/* =========================
        CARD
========================= */

.audience-card{
    position:relative;

    padding:35px;

    border-radius:28px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.04),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.06);

    transition:0.35s;

    overflow:hidden;
}

.audience-card::before{
    content:"";

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:#38bdf8;

    transform:scaleX(0);

    transform-origin:left;

    transition:0.35s;
}

.audience-card:hover{
    transform:translateY(-8px);

    border-color:rgba(56,189,248,0.2);

    box-shadow:
    0 18px 40px rgba(0,0,0,0.35);
}

.audience-card:hover::before{
    transform:scaleX(1);
}

/* =========================
        ICON
========================= */

.audience-icon{
    width:72px;
    height:72px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:20px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.15);

    font-size:30px;

    margin-bottom:25px;
}

/* =========================
        TEXT
========================= */

.audience-card h3{
    color:#fff;

    font-size:24px;

    margin-bottom:18px;
}

.audience-card p{
    color:#94a3b8;

    font-size:16px;
    line-height:1.8;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .audience-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:700px){

    .audience-section{
        padding:90px 18px;
    }

    .audience-heading h2{
        font-size:38px;
    }

    .audience-heading p{
        font-size:16px;
    }

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

    .audience-card{
        padding:28px;
    }

}





















/* =========================
            CTA SECTION
========================= */

.cta-section{
    width:100%;
    padding:120px 25px;

    background:#020617;

    position:relative;

    overflow:hidden;
}

.cta-container{
    width:100%;
    max-width:1250px;
    margin:auto;

    position:relative;
}

/* =========================
            GLOW
========================= */

.cta-glow{
    position:absolute;

    top:50%;
    left:50%;

    width:700px;
    height:700px;

    background:rgba(56,189,248,0.12);

    filter:blur(120px);

    transform:translate(-50%, -50%);

    z-index:1;
}

/* =========================
            CONTENT
========================= */

.cta-content{
    position:relative;
    z-index:2;

    text-align:center;

    padding:90px 60px;

    border-radius:40px;

    background:
    linear-gradient(
        180deg,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.02)
    );

    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;

    backdrop-filter:blur(10px);
}

/* =========================
            TAG
========================= */

.cta-tag{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    background:rgba(56,189,248,0.1);

    border:1px solid rgba(56,189,248,0.2);

    color:#38bdf8;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:24px;
}

/* =========================
            TITLE
========================= */

.cta-content h2{
    font-size:62px;
    line-height:1.15;

    color:#fff;

    max-width:900px;
    margin:auto auto 24px;
}

/* =========================
            TEXT
========================= */

.cta-content p{
    max-width:800px;

    margin:auto auto 40px;

    color:#94a3b8;

    font-size:18px;
    line-height:1.9;
}

/* =========================
            BUTTONS
========================= */

.cta-buttons{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;

    margin-bottom:55px;
}

.cta-primary-btn,
.cta-secondary-btn{
    padding:16px 28px;

    border-radius:14px;

    text-decoration:none;

    font-size:15px;
    font-weight:700;

    transition:0.3s;
}

.cta-primary-btn{
    background:#38bdf8;
    color:#000;
}

.cta-primary-btn:hover{
    transform:translateY(-3px);

    box-shadow:
    0 10px 25px rgba(56,189,248,0.35);
}

.cta-secondary-btn{
    border:1px solid rgba(255,255,255,0.08);

    background:rgba(255,255,255,0.03);

    color:#fff;
}

.cta-secondary-btn:hover{
    border-color:#38bdf8;
    color:#38bdf8;
}

/* =========================
            STATS
========================= */

.cta-stats{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:25px;

    flex-wrap:wrap;
}

.cta-stat-box{
    min-width:180px;

    padding:22px;

    border-radius:20px;

    background:rgba(255,255,255,0.03);

    border:1px solid rgba(255,255,255,0.05);
}

.cta-stat-box strong{
    display:block;

    color:#38bdf8;

    font-size:26px;

    margin-bottom:8px;
}

.cta-stat-box span{
    color:#cbd5e1;

    font-size:14px;
}

/* =========================
            RESPONSIVE
========================= */

@media(max-width:900px){

    .cta-content{
        padding:70px 30px;
    }

    .cta-content h2{
        font-size:46px;
    }

}

@media(max-width:700px){

    .cta-section{
        padding:90px 18px;
    }

    .cta-content{
        padding:55px 22px;
        border-radius:28px;
    }

    .cta-content h2{
        font-size:34px;
    }

    .cta-content p{
        font-size:16px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta-primary-btn,
    .cta-secondary-btn{
        width:100%;
    }

    .cta-stat-box{
        width:100%;
    }

}











/* =========================
            FOOTER
========================= */

.footer{
    width:100%;
    padding:90px 25px 30px;

    background:
    radial-gradient(
        circle at top,
        rgba(56,189,248,0.06),
        transparent 30%
    ),
    #020617;

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

.footer-container{
    width:100%;
    max-width:1350px;
    margin:auto;
}

/* =========================
            TOP
========================= */

.footer-top{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;

    padding-bottom:60px;

    border-bottom:1px solid rgba(255,255,255,0.06);
}

/* =========================
            BRAND
========================= */

.footer-brand{
    max-width:520px;
}

.footer-logo{
    display:inline-block;

    margin-bottom:22px;

    text-decoration:none;

    color:#fff;

    font-size:38px;
    font-weight:900;
}

.footer-logo span{
    color:#38bdf8;
}

.footer-brand p{
    color:#94a3b8;

    font-size:17px;
    line-height:1.9;

    margin-bottom:28px;
}

/* =========================
            STATUS
========================= */

.footer-status{
    display:flex;
    align-items:center;
    gap:12px;

    color:#cbd5e1;

    font-size:14px;
    font-weight:500;
}

.footer-live{
    width:10px;
    height:10px;

    border-radius:50%;

    background:#22c55e;

    position:relative;
}

.footer-live::before{
    content:"";

    position:absolute;

    top:50%;
    left:50%;

    width:22px;
    height:22px;

    border-radius:50%;

    background:rgba(34,197,94,0.25);

    transform:translate(-50%, -50%);

    animation:footerPulse 1.8s infinite;
}

@keyframes footerPulse{

    0%{
        transform:translate(-50%, -50%) scale(0.5);
        opacity:1;
    }

    100%{
        transform:translate(-50%, -50%) scale(1.8);
        opacity:0;
    }

}

/* =========================
            LINKS
========================= */

.footer-links-wrapper{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:40px;
}

.footer-links h3{
    color:#fff;

    font-size:18px;

    margin-bottom:24px;
}

.footer-links a{
    display:block;

    margin-bottom:16px;

    text-decoration:none;

    color:#94a3b8;

    font-size:15px;

    transition:0.3s;
}

.footer-links a:hover{
    color:#38bdf8;
}

/* =========================
            BOTTOM
========================= */

.footer-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;

    gap:20px;

    padding-top:30px;
}

.footer-bottom p{
    color:#64748b;

    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:22px;
}

.footer-bottom-links a{
    text-decoration:none;

    color:#64748b;

    font-size:14px;

    transition:0.3s;
}

.footer-bottom-links a:hover{
    color:#38bdf8;
}

/* =========================
            RESPONSIVE
========================= */

@media(max-width:1000px){

    .footer-top{
        grid-template-columns:1fr;
    }

}

@media(max-width:700px){

    .footer{
        padding:80px 18px 25px;
    }

    .footer-logo{
        font-size:32px;
    }

    .footer-brand p{
        font-size:16px;
    }

    .footer-links-wrapper{
        grid-template-columns:1fr;
        gap:30px;
    }

    .footer-bottom{
        flex-direction:column;
        align-items:flex-start;
    }

}







/* =========================
        HERO SECTION
========================= */

.hero{
    width:100%;
    min-height:100vh;
    padding:120px 25px 80px;
    background:
    radial-gradient(circle at top left,
    rgba(56,189,248,0.15),
    transparent 35%),
    #020617;
}

.hero-container{
    width:100%;
    max-width:1350px;
    margin:auto;

    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

/* =========================
        HERO CONTENT
========================= */

.hero-content{
    width:100%;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:10px 18px;
    border-radius:50px;

    background:rgba(56,189,248,0.12);
    border:1px solid rgba(56,189,248,0.25);

    color:#38bdf8;
    font-size:14px;
    font-weight:600;

    margin-bottom:25px;
}

.hero-content h1{
    font-size:68px;
    line-height:1.1;
    font-weight:900;
    color:#fff;
    margin-bottom:25px;
}

.hero-content h1 span{
    color:#38bdf8;
}

.hero-content p{
    font-size:18px;
    line-height:1.8;
    color:#94a3b8;
    max-width:650px;
    margin-bottom:35px;
}

/* =========================
        BUTTONS
========================= */

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:45px;
}

.primary-btn,
.secondary-btn{
    padding:15px 26px;
    border-radius:12px;
    text-decoration:none;
    font-size:15px;
    font-weight:700;
    transition:0.3s;
}

.primary-btn{
    background:#38bdf8;
    color:#000;
}

.primary-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(56,189,248,0.35);
}

.secondary-btn{
    border:1px solid rgba(255,255,255,0.1);
    color:#fff;
    background:rgba(255,255,255,0.03);
}

.secondary-btn:hover{
    border-color:#38bdf8;
    color:#38bdf8;
}

/* =========================
        STATS
========================= */

.hero-stats{
    display:flex;
    align-items:center;
    gap:20px;
    flex-wrap:wrap;
}

.stat-box{
    min-width:160px;
    padding:22px;
    border-radius:18px;

    background:rgba(255,255,255,0.03);
    border:1px solid rgba(255,255,255,0.06);
}

.stat-box h3{
    font-size:26px;
    color:#38bdf8;
    margin-bottom:8px;
}

.stat-box span{
    color:#94a3b8;
    font-size:14px;
}

/* =========================
        API PREVIEW
========================= */

.hero-preview{
    width:100%;
    display:flex;
    justify-content:center;
}

.api-card{
    width:100%;
    max-width:550px;

    border-radius:24px;

    background:#0f172a;
    border:1px solid rgba(255,255,255,0.08);

    overflow:hidden;

    box-shadow:
    0 20px 60px rgba(0,0,0,0.45);
}

.api-top{
    display:flex;
    align-items:center;
    gap:10px;

    padding:18px 20px;
    border-bottom:1px solid rgba(255,255,255,0.06);
}

.dot{
    width:12px;
    height:12px;
    border-radius:50%;
}

.red{
    background:#ef4444;
}

.yellow{
    background:#facc15;
}

.green{
    background:#22c55e;
}

.api-card pre{
    margin:0;
    padding:30px;

    overflow:auto;

    color:#38bdf8;

    font-size:15px;
    line-height:1.8;
}

/* =========================
        RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero-container{
        grid-template-columns:1fr;
    }

    .hero-content{
        text-align:center;
    }

    .hero-content p{
        margin:auto auto 35px;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        justify-content:center;
    }

}

@media(max-width:700px){

    .hero{
        padding-top:100px;
    }

    .hero-content h1{
        font-size:46px;
    }

    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        flex-direction:column;
    }

    .primary-btn,
    .secondary-btn{
        width:100%;
    }

    .stat-box{
        width:100%;
    }

}