/* ==========================================
   HERO V2
========================================== */

.hero-v2{

    position:relative;

    overflow:hidden;

    padding:120px 0 100px;

    background:
        radial-gradient(circle at top right,#eef2ff 0,#ffffff 55%);

}

.hero-container{

    max-width:1280px;

    margin:auto;

    padding:0 24px;

    display:grid;

    gap:80px;

    align-items:start;




    grid-template-columns:55% 45%;

}

@media(max-width:992px){

.hero-container{

grid-template-columns:1fr;

gap:50px;

text-align:center;

}

}

.hero-badge{

display:inline-flex;

align-items:center;

gap:8px;

padding:8px 16px;

border-radius:999px;

background:#eef2ff;

color:#4f46e5;

font-weight:600;

font-size:14px;

margin-bottom:28px;

}

.hero-title{

font-size:68px;

line-height:1.05;

font-weight:800;

letter-spacing:-2px;

margin-bottom:28px;

}

.hero-title span{

color:#5B5CEB;

}

@media(max-width:992px){

.hero-title{

font-size:48px;

}

}

.hero-subtitle{

font-size:21px;

line-height:1.8;

color:#64748b;

max-width:620px;

margin-bottom:40px;

}

.hero-actions{

display:flex;

gap:18px;

flex-wrap:wrap;

margin-bottom:45px;

}

.btn-primary{

background:#5B5CEB;

color:#fff;

padding:16px 28px;

border-radius:14px;

text-decoration:none;

font-weight:600;

}

.btn-secondary{

border:1px solid #d1d5db;

padding:16px 28px;

border-radius:14px;

text-decoration:none;

color:#111827;

font-weight:600;

}


.hero-stats{

display:flex;

gap:45px;

flex-wrap:wrap;

}

.hero-stat strong{

display:block;

font-size:34px;

color:#5B5CEB;

}

.hero-stat span{

color:#64748b;

font-size:15px;

}

.hero-right{

display:flex;

justify-content:center;
 align-items:center;


}

.api-window{



background:#0f172a;

border-radius:20px;

overflow:hidden;

box-shadow:0 25px 60px rgba(15,23,42,.18);
  width:560px;
    max-width:100%;

    padding:24px;

}

.window-header{

display:flex;

align-items:center;

gap:8px;

padding:16px 20px;

background:#1e293b;

}

.dot{

width:12px;

height:12px;

border-radius:50%;

display:inline-block;

}

.red{background:#ef4444;}
.yellow{background:#f59e0b;}
.green{background:#22c55e;}

.window-title{

margin-left:12px;

color:#cbd5e1;

font-size:14px;

font-weight:600;

}

.api-window pre{

margin:0;

padding:10px 28px 10px 28px;

overflow:auto;
    font-size:14px;

    line-height:1.2;

}

.api-window code{

font-family:Consolas, Monaco, monospace;

font-size:15px;

line-height:1.2;

color:#e2e8f0;

}



.stats-section{

padding:100px 0;

background:#fff;

}

.container{

max-width:1280px;

margin:auto;

padding:0 24px;

}

.stats-grid{

display:grid;

grid-template-columns:repeat(3,1fr);

gap:28px;

margin-top:60px;

}

.stat-card{

background:#fff;

border:1px solid #e5e7eb;

border-radius:20px;

padding:36px;

text-align:center;

transition:.3s;

}

.stat-card:hover{

transform:translateY(-6px);

box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.stat-card h3{

font-size:48px;

color:#5B5CEB;

margin-bottom:12px;

font-weight:800;

}

.stat-card span{

color:#64748b;

font-size:17px;

}

@media(max-width:992px){

.stats-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:600px){

.stats-grid{

grid-template-columns:1fr;

}

}



/* ==========================================
   API Categories
========================================== */

.api-categories-section{

    padding:120px 0;

    background:#f8fafc;

}

.api-category-grid{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));

    gap:30px;

    margin-top:60px;

}

.api-category-card{

    background:#fff;

    border:1px solid #e5e7eb;

    border-radius:24px;

    padding:34px;

    transition:.35s ease;

    position:relative;

    overflow:hidden;

}

.api-category-card:hover{

    transform:translateY(-8px);

    border-color:#5B5CEB;

    box-shadow:0 25px 60px rgba(91,92,235,.15);

}

.category-icon{

    width:64px;

    height:64px;

    border-radius:18px;

    background:#EEF2FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:24px;

    transition:.3s;

}

.api-category-card:hover .category-icon{

    transform:rotate(-10deg) scale(1.1);

}

.api-category-card h3{

    font-size:26px;

    margin-bottom:10px;

    color:#111827;

}

.category-count{

    display:inline-block;

    background:#EEF2FF;

    color:#5B5CEB;

    padding:8px 16px;

    border-radius:999px;

    font-size:14px;

    font-weight:600;

    margin-bottom:24px;

}

.api-category-card ul{

    list-style:none;

    padding:0;

    margin:0 0 30px;

}

.api-category-card li{

    padding:10px 0;

    border-bottom:1px solid #f1f5f9;

    color:#475569;

}

.api-category-card li:last-child{

    border-bottom:none;

}

.api-category-card a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    color:#5B5CEB;

    text-decoration:none;

    font-weight:700;

    transition:.3s;

}

.api-category-card:hover a{

    transform:translateX(6px);

}



/*=================================================
WHY US
=================================================*/

.why-us-section{

    padding:120px 0;

    background:#ffffff;

}

.why-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

    margin-top:70px;

}

.why-card{

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:40px;

    transition:.35s;

}

.why-card:hover{

    transform:translateY(-8px);

    border-color:#5B5CEB;

    box-shadow:0 25px 60px rgba(91,92,235,.12);

}

.why-icon{

    width:70px;

    height:70px;

    border-radius:20px;

    background:#EEF2FF;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    margin-bottom:24px;

}

.why-card h3{

    margin-bottom:14px;

    font-size:24px;

}

.why-card p{

    color:#64748B;

    line-height:1.8;

}



@media(max-width:992px){

.why-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.why-grid{

grid-template-columns:1fr;

}

}



/*==========================================
LANGUAGES
==========================================*/

.languages-section{

padding:120px 0;

background:#f8fafc;

}

.languages-wrapper{

display:grid;

grid-template-columns:1fr 1fr;

gap:40px;

margin-top:70px;

}

.language-column{

background:#fff;

padding:40px;

border-radius:24px;

border:1px solid #e5e7eb;

}
.language-column h3{

font-size:28px;

margin-bottom:10px;

}

.language-column h3 span{

display:block;

margin-top:8px;

font-size:15px;

font-weight:500;

color:#64748B;

}

.language-grid{

display:flex;

flex-wrap:wrap;

gap:14px;

}

.language-pill{

display:flex;

flex-direction:column;

justify-content:center;

align-items:center;

padding:18px;

min-width:145px;

min-height:90px;

background:#EEF2FF;

border-radius:20px;

transition:.3s;

cursor:default;

border:1px solid transparent;

}

.language-native{

font-size:28px;

font-weight:700;

line-height:1.2;

}

.language-name{

margin-top:10px;

font-size:13px;

font-weight:600;

color:#64748B;

}

.language-pill:hover{

background:#5B5CEB;

color:#fff;

border-color:#5B5CEB;

transform:translateY(-5px);

box-shadow:0 12px 30px rgba(91,92,235,.18);

}
.language-pill:hover .language-name{

color:#E0E7FF;

}

.language-footer{

margin-top:60px;

padding:60px;

text-align:center;

background:#111827;

color:#fff;

border-radius:30px;

}

.language-footer h3{

font-size:34px;

margin-bottom:18px;

}

.language-footer p{

color:#CBD5E1;

margin-bottom:30px;

}


@media(max-width:992px){

.languages-wrapper{

grid-template-columns:1fr;

}

}

@media(max-width:768px){

.language-column{

padding:30px;

}

.language-footer{

padding:40px 30px;

}

}


.language-pill{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    min-width:130px;

    min-height:72px;

    padding:14px 18px;

    background:#EEF2FF;

    border-radius:18px;

    transition:.3s;

}

.native-language{

    font-size:20px;

    font-weight:700;

    line-height:1.2;

}

.english-language{

    margin-top:6px;

    font-size:13px;

    color:#64748B;

}

.language-pill:hover{

    background:#5B5CEB;

    color:#fff;

    transform:translateY(-4px);

}

.language-pill:hover .english-language{

    color:#E5E7EB;

}


.window-controls{

display:flex;
gap:8px;

}

.dot{

width:10px;
height:10px;
border-radius:50%;

}

.red{background:#ff5f57;}
.yellow{background:#febc2e;}
.green{background:#28c840;}


.code-header{

display:flex;

justify-content:space-between;

align-items:center;

margin-bottom:20px;

}

.copy-btn{

background:#1E293B;

color:#fff;

border:none;

padding:8px 14px;

border-radius:10px;

cursor:pointer;

transition:.3s;

}

.copy-btn:hover{

background:#5B5CEB;

}

.response-meta{

display:flex;

gap:12px;

margin:20px 0;

flex-wrap:wrap;

}

.response-meta span{

padding:6px 12px;

border-radius:999px;

font-size:13px;

font-weight:600;

}

.success{

background:#DCFCE7;

color:#15803D;

}

.latency{

background:#FEF3C7;

color:#B45309;

}

.format{

background:#DBEAFE;

color:#1D4ED8;

}

.json-key{

color:#60A5FA;

}

.json-string{

color:#4ADE80;

}

.json-number{

color:#FB923C;

}

.hero-code{

animation:floatCard 6s ease-in-out infinite;

}

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}

.code-title{

color:#CBD5E1;

font-weight:600;

}

.json-key{
color:#7DD3FC;
}

.json-string{
color:#86EFAC;
}

.json-number{
color:#FBBF24;
}

.json-comment{
color:#6B7280;
font-style:italic;
}

.json-brace{
color:#CBD5E1;
}


.api-window{

    width:520px;

    background:#0F172A;

    color:#E2E8F0;

    border-radius:22px;

    padding:24px;

    box-shadow:0 30px 70px rgba(15,23,42,.25);

    font-family:"JetBrains Mono","Fira Code",monospace;

    animation:floatCard 6s ease-in-out infinite;

}

.code-header{

    display:flex;

    align-items:center;

    justify-content:space-between;

    margin-bottom:18px;

}

.window-controls{

    display:flex;

    gap:8px;

}

.dot{

    width:10px;

    height:10px;

    border-radius:50%;

}

.red{background:#ff5f57;}

.yellow{background:#febc2e;}

.green{background:#28c840;}

.code-title{

    color:#E2E8F0;

    font-weight:700;

    font-size:15px;

}

.copy-btn{

    border:none;

    background:#1E293B;

    color:#fff;

    padding:8px 14px;

    border-radius:10px;

    cursor:pointer;

    transition:.3s;

    font-size:13px;

}

.copy-btn:hover{

    background:#4F46E5;

}

.endpoint-row{

    display:flex;

    align-items:center;

    gap:10px;

    margin-bottom:18px;

}

.method{

    font-size:12px;

    font-weight:700;

    color:#22C55E;

}

.endpoint-row code{

    color:#fff;

  font-size:15px;

    font-weight:700;

}

.response-meta{

    display:flex;

    gap:10px;

    flex-wrap:wrap;

    margin-bottom:22px;

}

.response-meta span{

    padding:6px 12px;

    border-radius:999px;

    font-size:12px;

    font-weight:700;

}

.success{

    background:#DCFCE7;

    color:#15803D;

}

.latency{

    background:#FEF3C7;

    color:#B45309;

}

.format{

    background:#DBEAFE;

    color:#1D4ED8;

}

.size{

    background:#EDE9FE;

    color:#6D28D9;

}

.request-title{

    color:#94A3B8;

    font-size:12px;

    font-weight:700;

    letter-spacing:2px;

    margin-bottom:10px;

}

.api-window pre{

    margin:0;

    white-space:pre-wrap;

    line-height:1.8;

    font-size:13px;

    overflow-x:auto;

}

.code-divider{

    border:none;

    border-top:1px dashed rgba(255,255,255,.12);

    margin:22px 0;

}

.json-key{

    color:#7DD3FC;

}

.json-string{

    color:#86EFAC;

}

.json-number{

    color:#FBBF24;

}

.json-comment{

    color:#64748B;

    font-style:italic;

}

@keyframes floatCard{

0%,100%{

transform:translateY(0);

}

50%{

transform:translateY(-8px);

}

}


.code-footer{

    margin-top:24px;

    text-align:center;

}

.code-footer a{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 20px;

    border-radius:12px;

    background:#1E293B;

    color:#60A5FA;

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.code-footer a:hover{

    background:#312E81;

    color:#fff;

}

.endpoint-row{

    background:#111827;

    padding:10px 14px;

    border-radius:12px;

    margin-bottom:18px;

}

.endpoint-row code{

    color:#E2E8F0;

    font-size:14px;

}

.response-meta{

    gap:12px;

    margin-bottom:24px;

}

.response-meta span{

    min-width:70px;

    text-align:center;

}

.api-window{

    transform:rotate(2deg);

}

.hero-right:hover .api-window{

    transform:rotate(0deg);

}

.final-cta{

    padding:110px 0;

    background:#fff;

}

.final-cta-box{

    max-width:900px;

    margin:auto;

    text-align:center;

    background:linear-gradient(135deg,#111827,#1E293B);

    color:#fff;

    padding:80px 60px;

    border-radius:28px;

    position:relative;

    overflow:hidden;

    box-shadow:0 30px 70px rgba(15,23,42,.18);

}

.final-cta-box::before{

    content:"";

    position:absolute;

    top:-120px;

    right:-120px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(99,102,241,.15);

}

.final-cta-box::after{

    content:"";

    position:absolute;

    bottom:-130px;

    left:-130px;

    width:260px;

    height:260px;

    border-radius:50%;

    background:rgba(255,255,255,.05);

}

.final-cta-box>*{

    position:relative;

    z-index:2;

}

.final-cta h2{

    margin:20px 0;

    font-size:48px;

    font-weight:800;

    line-height:1.2;

}

.final-cta p{

    max-width:700px;

    margin:0 auto 40px;

    color:#CBD5E1;

    font-size:18px;

    line-height:1.8;

}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:18px;

    flex-wrap:wrap;

    margin-bottom:40px;

}

.btn-primary-lg{

    background:#6366F1;

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    font-weight:700;

    transition:.3s;

}

.btn-primary-lg:hover{

    background:#ffffff;

    transform:translateY(-3px);

}

.btn-secondary-lg{

    background:rgba(255,255,255,.08);

    color:#fff;

    text-decoration:none;

    padding:18px 34px;

    border-radius:14px;

    border:1px solid rgba(255,255,255,.15);

    transition:.3s;

}

.btn-secondary-lg:hover{

    background:rgba(255,255,255,.14);

}

.cta-features{

    display:flex;

    justify-content:center;

    gap:30px;

    flex-wrap:wrap;

    color:#CBD5E1;

    font-size:15px;

}

@media(max-width:768px){

.final-cta-box{

padding:50px 30px;

}

.final-cta h2{

font-size:34px;

}

.final-cta p{

font-size:16px;

}

.cta-features{

gap:15px;

flex-direction:column;

}

}


.founder-section{

    padding:110px 0;

    background:#fff;

}

.founder-card{

    display:grid;

    grid-template-columns:260px 1fr;

    gap:60px;

    align-items:center;

    background:#fff;

    border:1px solid #E5E7EB;

    border-radius:24px;

    padding:60px;

    box-shadow:0 20px 60px rgba(15,23,42,.06);

}

.founder-photo{

    width:220px;

    height:220px;

    border-radius:50%;

    object-fit:cover;

    border:6px solid #EEF2FF;

}

.founder-right h2{

    margin:18px 0;

    font-size:42px;

    line-height:1.2;

}

.founder-right p{

    margin-bottom:22px;

    color:#64748B;

    font-size:17px;

    line-height:1.9;

}

.founder-stats{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:20px;

    margin:40px 0;

}

.founder-stats div{

    background:#F8FAFC;

    border-radius:16px;

    padding:22px;

    text-align:center;

}

.founder-stats strong{

    display:block;

    color:#4F46E5;

    font-size:30px;

    margin-bottom:8px;

}

.founder-stats span{

    font-size:14px;

    color:#64748B;

}

.founder-links{

    display:flex;

    gap:18px;

}



@media(max-width:900px){

.founder-card{

grid-template-columns:1fr;

text-align:center;

}

.founder-photo{

margin:auto;

}

.founder-stats{

grid-template-columns:repeat(2,1fr);

}

.founder-links{

justify-content:center;

}

}

.api-category-card{

transition:.3s;

}

.api-category-card:hover{

transform:translateY(-8px);

box-shadow:0 20px 40px rgba(0,0,0,.08);

}