﻿:root{

--bg:#060816;
--card:#0F172A;
--blue:#2563EB;
--purple:#7C3AED;
--text:#F8FAFC;
--muted:#94A3B8;
--danger:#EF4444;
--success:#22C55E;
--border:rgba(255,255,255,.08);

}

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

html{
scroll-behavior:smooth;
}

body{
font-family:'Inter',sans-serif;
background:var(--bg);
color:var(--text);
overflow-x:hidden;
opacity:1;
visibility:visible;
transition:opacity .28s ease;
}

body.app-loading{
opacity:0;
visibility:hidden;
}

/* =====================================================
BACKGROUND
===================================================== */

.bg-grid{

position:fixed;
inset:0;

background-image:
linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);

background-size:60px 60px;

z-index:-2;

}

.blur-one{

position:fixed;
width:500px;
height:500px;

background:var(--blue);

filter:blur(180px);

opacity:.12;

top:-100px;
left:-100px;

z-index:-1;

}

.blur-two{

position:fixed;
width:500px;
height:500px;

background:var(--purple);

filter:blur(180px);

opacity:.12;

bottom:-100px;
right:-100px;

z-index:-1;

}

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

nav{

position:fixed;

top:0;
left:0;

width:100%;

padding:22px 7%;

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

backdrop-filter:blur(20px);

background:rgba(6,8,22,.65);

border-bottom:1px solid var(--border);

z-index:999;

}

.logo{

display:flex;
align-items:center;
gap:12px;

font-size:1.3rem;
font-weight:800;

}

.logo img{
height:42px;
width:auto;
display:block;
object-fit:contain;
}

.logo-text{
display:inline-flex;
align-items:center;
}

.logo span{
color:var(--blue);
}

.nav-links{

display:flex;
gap:30px;

}

.nav-links a{

text-decoration:none;
color:var(--muted);
font-size:.95rem;
transition:.3s;

}

.nav-links a:hover{
color:white;
}

.nav-btn{

padding:12px 22px;

border-radius:14px;

background:linear-gradient(135deg,var(--blue),var(--purple));

color:white;

text-decoration:none;

font-weight:600;

}

.nav-actions{
display:flex;
align-items:center;
gap:14px;
}

.lang-switcher{
position:relative;
}

.lang-trigger{
display:inline-flex;
align-items:center;
gap:10px;
padding:12px 16px;
border:1px solid var(--border);
border-radius:14px;
background:rgba(255,255,255,.04);
color:var(--text);
font-weight:700;
cursor:pointer;
transition:.3s;
}

.lang-trigger:hover,
.lang-switcher.open .lang-trigger{
border-color:rgba(96,165,250,.35);
background:rgba(255,255,255,.07);
}

.lang-trigger svg{
width:18px;
height:18px;
stroke:currentColor;
fill:none;
stroke-width:1.8;
}

.lang-current{
min-width:26px;
text-align:center;
letter-spacing:.04em;
}

.lang-menu{
position:absolute;
top:calc(100% + 12px);
right:0;
min-width:190px;
padding:10px;
border:1px solid var(--border);
border-radius:18px;
background:rgba(6,8,22,.96);
backdrop-filter:blur(20px);
box-shadow:0 24px 60px rgba(2,6,23,.45);
display:none;
flex-direction:column;
gap:6px;
}

.lang-switcher.open .lang-menu{
display:flex;
}

.lang-option{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
padding:11px 12px;
border:none;
border-radius:12px;
background:transparent;
color:var(--text);
text-align:left;
cursor:pointer;
transition:.3s;
}

.lang-option:hover,
.lang-option.active{
background:rgba(37,99,235,.16);
color:#dbeafe;
}

.lang-option-label{
display:inline-flex;
align-items:center;
gap:10px;
min-width:0;
}

.lang-icon{
font-size:.92rem;
opacity:.92;
color:#93c5fd;
}

.lang-icon.flag-br{ color:#22c55e; }
.lang-icon.flag-us{ color:#60a5fa; }
.lang-icon.flag-es{ color:#f59e0b; }
.lang-icon.flag-fr{ color:#3b82f6; }
.lang-icon.flag-de{ color:#eab308; }

.lang-option.active .lang-icon,
.lang-option:hover .lang-icon{
color:#dbeafe;
}

.lang-option-code{
color:var(--muted);
font-size:.78rem;
font-weight:800;
letter-spacing:.08em;
}

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

.hero{

min-height:100vh;

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

padding:120px 7%;

gap:80px;

}

.hero-left{
flex:1;
}

.badge{

display:inline-flex;
align-items:center;
gap:10px;

padding:12px 18px;

border-radius:100px;

background:rgba(37,99,235,.12);

border:1px solid rgba(37,99,235,.25);

margin-bottom:30px;

font-size:.9rem;

color:#cbd5e1;

}

.hero h1{

font-size:4.5rem;
line-height:1.05;

font-weight:900;

margin-bottom:30px;

max-width:780px;

}

.hero h1 span{

background:linear-gradient(135deg,var(--blue),var(--purple));

-webkit-background-clip:text;
-webkit-text-fill-color:transparent;

}

.hero p{

font-size:1.15rem;
line-height:1.8;

color:var(--muted);

max-width:680px;

margin-bottom:40px;

}

.hero-buttons{

display:flex;
gap:18px;
flex-wrap:wrap;

}

.primary-btn{

padding:18px 28px;

border-radius:16px;

background:linear-gradient(135deg,var(--blue),var(--purple));

text-decoration:none;

color:white;

font-weight:700;

box-shadow:0 10px 40px rgba(37,99,235,.35);

}

.secondary-btn{

padding:18px 28px;

border-radius:16px;

border:1px solid var(--border);

text-decoration:none;

color:white;

font-weight:600;

background:rgba(255,255,255,.03);

}

/* =====================================================
HERO IMAGE
===================================================== */

.hero-right{
flex:1;
display:flex;
justify-content:center;
}

/*
========================================================
IMAGEM HERO

COLOCAR:
wallet holográfica protegida

PROMPT:

Futuristic cybersecurity interface protecting a crypto wallet,
dark blue premium background,
holographic shield,
web3 security dashboard,
cinematic lighting,
ultra realistic,
modern SaaS style,
glowing blue and purple accents,
high-end fintech design
========================================================
*/

.hero-image{

width:100%;
max-width:520px;
height:620px;

border-radius:34px;

border:1px solid var(--border);

background:rgba(255,255,255,.03);

overflow:hidden;

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

backdrop-filter:blur(30px);

}

.asset-image{
width:100%;
height:100%;
display:block;
object-fit:cover;
transform:scale(1.01);
transition:transform .55s ease, filter .55s ease;
}

.asset-fallback{
width:100%;
height:100%;
display:flex;
align-items:center;
justify-content:center;
padding:24px;
text-align:center;
color:var(--muted);
line-height:1.6;
background:
radial-gradient(circle at top, rgba(37,99,235,.22), rgba(15,23,42,.08) 45%, rgba(2,6,23,.92) 100%);
}

.asset-fallback span{
max-width:260px;
}

@keyframes floatSoft{
0%,100%{
transform:translateY(0);
}
50%{
transform:translateY(-10px);
}
}

@keyframes glowDrift{
0%,100%{
box-shadow:0 18px 48px rgba(37,99,235,.10);
}
50%{
box-shadow:0 24px 68px rgba(124,58,237,.16);
}
}

/* =====================================================
SECTIONS
===================================================== */

section{

padding:120px 7%;

}

.section-title{

font-size:3rem;
font-weight:800;

margin-bottom:25px;

}

.section-subtitle{

color:var(--muted);

font-size:1.1rem;
line-height:1.8;

max-width:800px;

margin-bottom:70px;

}

/* =====================================================
PROBLEM
===================================================== */

.problem-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:30px;

}

.problem-card{

padding:35px;

background:rgba(255,255,255,.03);

border:1px solid var(--border);

border-radius:28px;

transition:.4s;

}

.problem-card-media{
height:190px;
margin-bottom:24px;
border-radius:20px;
overflow:hidden;
border:1px solid var(--border);
background:rgba(255,255,255,.02);
animation:floatSoft 7s ease-in-out infinite;
animation-delay:calc(var(--float-delay, 0) * .8s);
}

.problem-card:hover{

transform:translateY(-10px);

border-color:rgba(37,99,235,.4);

}

.problem-card h3{

font-size:1.3rem;

margin-bottom:15px;

}

.problem-card p{

color:var(--muted);
line-height:1.7;

}

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

1 APPROVE INFINITO
prompt:
crypto wallet infinite approval warning futuristic

2 CONTRATO MALICIOSO
prompt:
malicious smart contract alert web3 futuristic

3 DAPP FALSA
prompt:
fake crypto website phishing warning dark ui

4 ROUBO SILENCIOSO
prompt:
crypto wallet balance draining cinematic futuristic
========================================================
*/

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

.features{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
gap:30px;

}

.feature-card{

padding:40px;

border-radius:30px;

background:linear-gradient(
180deg,
rgba(255,255,255,.04),
rgba(255,255,255,.02)
);

border:1px solid var(--border);

backdrop-filter:blur(20px);

}

.feature-card-media{
height:180px;
margin-bottom:24px;
border-radius:22px;
overflow:hidden;
border:1px solid var(--border);
background:rgba(255,255,255,.02);
animation:floatSoft 7.5s ease-in-out infinite;
animation-delay:calc(var(--float-delay, 0) * .8s);
}

.feature-card h3{

font-size:1.4rem;

margin-bottom:20px;

}

.feature-card p{

color:var(--muted);
line-height:1.8;

}

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

.timeline{

display:flex;
flex-direction:column;
gap:30px;

}

.timeline-item{

padding:35px;

border-radius:24px;

border:1px solid var(--border);

background:rgba(255,255,255,.03);

}

.timeline-item-media{
height:170px;
margin-bottom:24px;
border-radius:22px;
overflow:hidden;
border:1px solid var(--border);
background:rgba(255,255,255,.02);
animation:floatSoft 8s ease-in-out infinite;
animation-delay:calc(var(--float-delay, 0) * .8s);
}

.timeline-item span{

color:var(--blue);
font-weight:700;

display:block;

margin-bottom:12px;

}

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

.api-layout{
display:grid;
grid-template-columns:minmax(280px,420px) minmax(0,1fr);
gap:30px;
align-items:stretch;
}

.api-preview{
min-height:320px;
border-radius:30px;
border:1px solid var(--border);
overflow:hidden;
background:rgba(255,255,255,.03);
backdrop-filter:blur(20px);
animation:floatSoft 8.5s ease-in-out infinite, glowDrift 9s ease-in-out infinite;
}

.api-box{

padding:40px;

background:#020617;

border-radius:30px;

border:1px solid var(--border);

overflow:auto;

}

.api-box pre{

color:#cbd5e1;

font-size:.95rem;
line-height:1.8;

}

.api-docs-shell{
display:grid;
grid-template-columns:minmax(210px,240px) minmax(0,1fr);
gap:22px;
}

.api-docs-sidebar{
position:sticky;
top:105px;
align-self:start;
max-height:calc(100vh - 140px);
overflow:auto;
padding-right:6px;
}

.api-docs-sidebar h3{
font-size:.95rem;
letter-spacing:.04em;
text-transform:uppercase;
color:#93c5fd;
margin-bottom:12px;
}

.api-docs-nav{
display:flex;
flex-direction:column;
gap:6px;
}

.api-docs-nav a{
text-decoration:none;
color:#94a3b8;
padding:8px 10px;
border-radius:10px;
font-size:.9rem;
transition:.25s;
border:1px solid transparent;
}

.api-docs-nav a:hover,
.api-docs-nav a.active{
color:#dbeafe;
background:rgba(37,99,235,.16);
border-color:rgba(96,165,250,.25);
}

.api-docs-content{
display:flex;
flex-direction:column;
gap:28px;
}

.api-doc-section{
padding:22px;
border-radius:18px;
border:1px solid rgba(148,163,184,.16);
background:rgba(15,23,42,.52);
scroll-margin-top:112px;
}

.api-doc-section h3{
margin-bottom:10px;
font-size:1.25rem;
}

.api-doc-section p{
color:#cbd5e1;
line-height:1.8;
margin:0 0 10px;
}

.api-doc-section code{
padding:2px 6px;
border-radius:6px;
background:rgba(148,163,184,.14);
color:#dbeafe;
font-size:.85rem;
font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

.api-doc-section pre{
margin:12px 0;
padding:14px;
border-radius:12px;
border:1px solid rgba(148,163,184,.2);
background:#020617;
overflow:auto;
}

.api-doc-section pre code{
padding:0;
border-radius:0;
background:none;
font-size:.86rem;
color:#bfdbfe;
}

.api-note{
padding:10px 12px;
border-radius:10px;
font-size:.9rem;
line-height:1.6;
}

.api-note.warning{
background:rgba(245,158,11,.12);
border:1px solid rgba(245,158,11,.3);
color:#fcd34d;
}

.api-endpoint-badge{
display:inline-flex;
align-items:center;
gap:10px;
padding:8px 10px;
border-radius:10px;
border:1px solid rgba(148,163,184,.24);
background:rgba(15,23,42,.5);
margin-bottom:10px;
}

.method{
display:inline-flex;
align-items:center;
justify-content:center;
min-width:44px;
padding:4px 8px;
border-radius:999px;
font-size:.72rem;
font-weight:900;
letter-spacing:.05em;
text-transform:uppercase;
}

.method.get{
background:rgba(34,197,94,.16);
border:1px solid rgba(34,197,94,.34);
color:#86efac;
}

.method.post{
background:rgba(59,130,246,.16);
border:1px solid rgba(59,130,246,.34);
color:#93c5fd;
}

.api-table-wrap{
overflow:auto;
}

.api-table{
width:100%;
border-collapse:collapse;
border:1px solid rgba(148,163,184,.2);
border-radius:12px;
overflow:hidden;
background:rgba(2,6,23,.52);
}

.api-table th,
.api-table td{
text-align:left;
padding:10px 12px;
border-bottom:1px solid rgba(148,163,184,.14);
font-size:.9rem;
}

.api-table th{
background:rgba(15,23,42,.85);
color:#bfdbfe;
font-weight:800;
}

.api-table td{
color:#dbeafe;
}

.api-table tbody tr:last-child td{
border-bottom:none;
}

/* =====================================================
PRICING EXPANSION
===================================================== */

.section-header{
max-width:760px;
margin:0 auto 70px;
text-align:center;
}

.section-tag{
display:inline-flex;
align-items:center;
justify-content:center;
padding:10px 16px;
border-radius:999px;
margin-bottom:18px;
font-size:.82rem;
font-weight:800;
letter-spacing:.08em;
text-transform:uppercase;
color:#bfdbfe;
background:rgba(37,99,235,.12);
border:1px solid rgba(96,165,250,.2);
}

.section-header h2,
.pricing-header h2,
.enterprise-header h2{
font-size:3rem;
margin-bottom:18px;
}

.section-header p,
.pricing-header p,
.enterprise-header p{
color:var(--muted);
font-size:1.05rem;
line-height:1.8;
}

.pricing-section{
padding-top:120px;
}

.pricing-audience-panel{
display:none;
flex-direction:column;
gap:34px;
}

.pricing-audience-panel.active{
display:flex;
}

.pricing-header,
.enterprise-header{
max-width:860px;
margin:0 auto;
text-align:center;
}

.billing-toggle{
display:flex;
align-items:center;
justify-content:center;
gap:14px;
flex-wrap:wrap;
margin-bottom:56px;
}

.toggle-btn{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:14px 22px;
border-radius:999px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
color:var(--text);
font-weight:700;
cursor:pointer;
transition:.3s;
}

.toggle-save{
padding:5px 10px;
border-radius:999px;
background:rgba(34,197,94,.14);
color:#86efac;
font-size:.75rem;
font-weight:800;
letter-spacing:.03em;
}

.toggle-btn.active{
border-color:rgba(96,165,250,.38);
background:linear-gradient(135deg, rgba(37,99,235,.24), rgba(124,58,237,.14));
box-shadow:0 16px 44px rgba(37,99,235,.18);
}

.pricing-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
gap:30px;
}

.price-card{
position:relative;
display:flex;
flex-direction:column;
padding:30px;
border-radius:32px;
border:1px solid var(--border);
background:linear-gradient(180deg, rgba(15,23,42,.92), rgba(2,6,23,.92));
box-shadow:0 24px 70px rgba(2,6,23,.28);
overflow:hidden;
transition:transform .3s, border-color .3s, box-shadow .3s;
}

.price-card:hover{
transform:translateY(-6px);
border-color:rgba(96,165,250,.24);
box-shadow:0 28px 80px rgba(15,23,42,.45);
}

.featured-plan,
.featured-enterprise{
border-color:rgba(96,165,250,.42);
box-shadow:0 24px 85px rgba(37,99,235,.22);
}

.premium-plan{
border-color:rgba(124,58,237,.34);
box-shadow:0 24px 85px rgba(124,58,237,.16);
}

.price-card-media{
height:190px;
margin-bottom:24px;
border-radius:24px;
overflow:hidden;
border:1px solid var(--border);
background:rgba(255,255,255,.02);
animation:floatSoft 8s ease-in-out infinite;
animation-delay:calc(var(--float-delay, 0) * .8s);
}

.price-card-media .asset-fallback span,
.chain-logo .asset-fallback span,
.integration-logo .asset-fallback span,
.cta-visual .asset-fallback span{
max-width:320px;
}

.plan-badge,
.popular-badge,
.premium-badge{
display:inline-flex;
align-items:center;
justify-content:center;
align-self:flex-start;
padding:8px 14px;
border-radius:999px;
margin-bottom:18px;
font-size:.76rem;
font-weight:900;
letter-spacing:.08em;
text-transform:uppercase;
}

.plan-badge{
background:rgba(148,163,184,.14);
border:1px solid rgba(148,163,184,.24);
color:#e2e8f0;
}

.popular-badge{
background:rgba(37,99,235,.16);
border:1px solid rgba(96,165,250,.32);
color:#bfdbfe;
}

.premium-badge{
background:rgba(124,58,237,.16);
border:1px solid rgba(167,139,250,.28);
color:#ddd6fe;
}

.price-card h3{
font-size:1.7rem;
margin-bottom:16px;
}

.price{
display:flex;
align-items:flex-end;
gap:8px;
margin-bottom:18px;
}

.price-value{
font-size:3rem;
font-weight:900;
line-height:1;
}

.price-period{
padding-bottom:6px;
font-size:1rem;
font-weight:700;
color:var(--muted);
}

.custom-price .price-value{
font-size:2.1rem;
}

.plan-description{
color:var(--muted);
line-height:1.8;
margin-bottom:24px;
}

.features-list{
list-style:none;
display:flex;
flex-direction:column;
gap:14px;
margin-bottom:28px;
}

.features-list li{
position:relative;
padding-left:20px;
color:#dbe7fb;
line-height:1.6;
}

.features-list li::before{
content:'';
position:absolute;
left:0;
top:11px;
width:8px;
height:8px;
border-radius:999px;
background:linear-gradient(135deg, #60a5fa, #a78bfa);
box-shadow:0 0 18px rgba(96,165,250,.5);
}

.plan-btn{
margin-top:auto;
width:100%;
padding:16px 20px;
border:none;
border-radius:18px;
background:rgba(255,255,255,.05);
color:white;
font-size:1rem;
font-weight:800;
cursor:pointer;
transition:.3s;
}

.plan-btn:hover{
transform:translateY(-2px);
background:rgba(255,255,255,.08);
}

.featured-btn{
background:linear-gradient(135deg,var(--blue),var(--purple));
box-shadow:0 14px 40px rgba(37,99,235,.28);
}

.premium-btn{
background:linear-gradient(135deg,#4F46E5,#7C3AED);
box-shadow:0 14px 40px rgba(124,58,237,.24);
}

.enterprise-header{
margin-top:0;
}

.enterprise-grid{
margin-bottom:0;
}

.trust-section{
padding-top:30px;
}

.trust-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(200px,1fr));
gap:24px;
}

.trust-card{
padding:32px 24px;
border-radius:28px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
text-align:center;
backdrop-filter:blur(18px);
}

.trust-card h3{
font-size:2.4rem;
margin-bottom:10px;
}

.trust-card p{
color:var(--muted);
line-height:1.6;
}

.chains-grid,
.integrations-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(150px,1fr));
gap:22px;
}

.chain-item,
.integration-item{
display:flex;
flex-direction:column;
align-items:center;
gap:16px;
padding:24px 18px;
border-radius:24px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
text-align:center;
}

.chain-item span,
.integration-item span{
font-weight:700;
}

.chain-logo,
.integration-logo{
width:100%;
max-width:104px;
aspect-ratio:1;
border-radius:22px;
overflow:hidden;
border:1px solid var(--border);
background:rgba(255,255,255,.02);
animation:floatSoft 7.5s ease-in-out infinite;
}

.chain-item-dark-logo .chain-logo{
background:#050913;
border-color:rgba(148,163,184,.32);
box-shadow:inset 0 0 0 1px rgba(15,23,42,.72),0 10px 24px rgba(2,6,23,.45);
}

.chain-logo .asset-fallback,
.integration-logo .asset-fallback{
padding:16px;
}

.chain-logo .asset-fallback span,
.integration-logo .asset-fallback span{
max-width:110px;
font-size:.82rem;
line-height:1.4;
}

.faq-container{
max-width:900px;
margin:0 auto;
display:flex;
flex-direction:column;
gap:18px;
}

.faq-item{
border-radius:24px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
overflow:hidden;
}

.faq-question{
width:100%;
display:flex;
align-items:center;
justify-content:space-between;
gap:20px;
padding:24px 28px;
border:none;
background:none;
color:var(--text);
font-size:1.02rem;
font-weight:700;
text-align:left;
cursor:pointer;
}

.faq-question::after{
content:'+';
font-size:1.4rem;
line-height:1;
color:#93c5fd;
transition:transform .3s;
}

.faq-item.open .faq-question::after{
content:'-';
}

.faq-answer{
display:grid;
grid-template-rows:0fr;
transition:grid-template-rows .3s ease;
}


.legal-section{
padding:30px 7% 110px;
}

.legal-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
gap:22px;
}

.legal-card{
border-radius:26px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
padding:30px 26px;
backdrop-filter:blur(18px);
}

.legal-card h3{
font-size:1.25rem;
margin-bottom:12px;
}

.legal-card p{
color:var(--muted);
line-height:1.75;
margin-bottom:12px;
}

.legal-card p:last-child{
margin-bottom:0;
}
.faq-item.open .faq-answer{
grid-template-rows:1fr;
}

.faq-answer p{
overflow:hidden;
padding:0 28px 26px;
color:var(--muted);
line-height:1.8;
}

.final-cta{
position:relative;
margin:0 7% 120px;
padding:0;
border-radius:36px;
overflow:hidden;
border:1px solid var(--border);
background:
radial-gradient(circle at top left, rgba(37,99,235,.28), transparent 32%),
radial-gradient(circle at bottom right, rgba(124,58,237,.18), transparent 30%),
rgba(2,6,23,.95);
}

.cta-overlay{
position:absolute;
inset:0;
background:linear-gradient(135deg, rgba(15,23,42,.24), rgba(2,6,23,.65));
pointer-events:none;
}

.final-cta-grid{
position:relative;
z-index:1;
display:grid;
grid-template-columns:minmax(0,1.1fr) minmax(320px,.9fr);
align-items:stretch;
}

.cta-content{
padding:72px 60px;
}

.cta-content h2{
font-size:3.35rem;
line-height:1.08;
margin-bottom:22px;
max-width:620px;
}

.cta-content p{
max-width:620px;
color:var(--muted);
line-height:1.8;
margin-bottom:34px;
}

.cta-buttons{
display:flex;
gap:16px;
flex-wrap:wrap;
}

.cta-visual{
min-height:100%;
border-left:1px solid var(--border);
background:rgba(255,255,255,.02);
position:relative;
display:flex;
align-items:stretch;
justify-content:stretch;
animation:floatSoft 9s ease-in-out infinite, glowDrift 10s ease-in-out infinite;
}

.cta-video{
width:100%;
height:100%;
display:none;
object-fit:cover;
filter:saturate(1.02);
background:#020617;
}

.cta-audio-toggle{
position:absolute;
right:20px;
bottom:20px;
z-index:2;
display:none;
padding:12px 16px;
border:1px solid rgba(255,255,255,.14);
border-radius:999px;
background:rgba(2,6,23,.78);
backdrop-filter:blur(14px);
color:#f8fafc;
font-weight:800;
cursor:pointer;
transition:.3s;
}

.cta-audio-toggle:hover{
background:rgba(15,23,42,.92);
transform:translateY(-1px);
}

.cta-audio-toggle[aria-pressed="true"]{
background:rgba(37,99,235,.9);
border-color:rgba(96,165,250,.4);
}

.cta-visual.has-video .cta-video{
display:block;
}

.cta-visual.has-video .cta-audio-toggle{
display:inline-flex;
align-items:center;
justify-content:center;
}

.cta-visual.has-video .asset-image,
.cta-visual.has-video .asset-fallback{
display:none;
}

.hero-image{
animation:floatSoft 8.5s ease-in-out infinite, glowDrift 9.5s ease-in-out infinite;
}

.hero-image:hover .asset-image,
.problem-card:hover .asset-image,
.feature-card:hover .asset-image,
.timeline-item:hover .asset-image,
.price-card:hover .asset-image,
.chain-item:hover .asset-image,
.integration-item:hover .asset-image,
.cta-visual:hover .asset-image,
.api-preview:hover .asset-image{
transform:scale(1.06);
filter:saturate(1.08);
}

.cta-visual:hover .cta-video{
transform:scale(1.03);
filter:saturate(1.06);
}

.problem-card:nth-child(1) .problem-card-media,
.feature-card:nth-child(1) .feature-card-media,
.timeline-item:nth-child(1) .timeline-item-media,
.price-card:nth-child(1) .price-card-media{
--float-delay:0;
}

.problem-card:nth-child(2) .problem-card-media,
.feature-card:nth-child(2) .feature-card-media,
.timeline-item:nth-child(2) .timeline-item-media,
.price-card:nth-child(2) .price-card-media{
--float-delay:1;
}

.problem-card:nth-child(3) .problem-card-media,
.feature-card:nth-child(3) .feature-card-media,
.timeline-item:nth-child(3) .timeline-item-media,
.price-card:nth-child(3) .price-card-media{
--float-delay:2;
}

.problem-card:nth-child(4) .problem-card-media,
.feature-card:nth-child(4) .feature-card-media,
.timeline-item:nth-child(4) .timeline-item-media{
--float-delay:3;
}

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

footer{

padding:80px 7%;

border-top:1px solid var(--border);

}

.footer-grid{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
gap:40px;

}

.footer-column h4{

margin-bottom:25px;

font-size:1.1rem;

}

.footer-brand-header{
margin-bottom:25px;
}

.footer-column img{
height:36px;
width:auto;
display:block;
margin-bottom:12px;
object-fit:contain;
}

.footer-brand-text{
margin:0;
}

.footer-column p{
margin:0 0 14px;
color:var(--muted);
line-height:1.7;
}

.footer-column a{

display:block;

margin-bottom:14px;

text-decoration:none;

color:var(--muted);

transition:.3s;

}

.footer-column a:hover{
color:white;
}

.footer-doc-viewer{
margin-top:26px;
padding:22px;
border-radius:20px;
border:1px solid var(--border);
background:rgba(255,255,255,.03);
backdrop-filter:blur(16px);
}

.footer-doc-head{
display:flex;
align-items:center;
justify-content:space-between;
gap:14px;
margin-bottom:12px;
}

.footer-doc-head h4{
margin:0;
font-size:1.05rem;
}

.footer-doc-close{
padding:8px 12px;
border-radius:10px;
border:1px solid var(--border);
background:rgba(255,255,255,.05);
color:var(--text);
font-weight:700;
cursor:pointer;
transition:.25s;
}

.footer-doc-close:hover{
background:rgba(255,255,255,.1);
}

.footer-doc-body{
color:var(--muted);
line-height:1.8;
}

.footer-doc-body p{
margin:0 0 12px;
}

.footer-doc-body p:last-child{
margin-bottom:0;
}

.footer-doc-body code{
padding:2px 6px;
border-radius:6px;
background:rgba(148,163,184,.16);
color:#dbeafe;
font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
font-size:.85rem;
}

.footer-doc-body pre{
margin:12px 0;
padding:14px;
border-radius:12px;
border:1px solid var(--border);
background:rgba(2,6,23,.72);
overflow:auto;
}

.footer-doc-body pre code{
padding:0;
border-radius:0;
background:none;
color:#bfdbfe;
}

.status-pills{
display:flex;
flex-wrap:wrap;
gap:8px;
margin-bottom:12px;
}

.status-pill{
display:inline-flex;
align-items:center;
padding:6px 10px;
border-radius:999px;
font-size:.76rem;
font-weight:800;
letter-spacing:.04em;
text-transform:uppercase;
border:1px solid transparent;
}

.status-pill.operational{
background:rgba(34,197,94,.16);
border-color:rgba(34,197,94,.3);
color:#86efac;
}

.status-pill.monitoring{
background:rgba(59,130,246,.16);
border-color:rgba(96,165,250,.3);
color:#93c5fd;
}

.status-pill.maintenance{
background:rgba(245,158,11,.16);
border-color:rgba(251,191,36,.3);
color:#fcd34d;
}

.cookie-banner{
position:fixed;
left:20px;
right:20px;
bottom:20px;
z-index:1200;
display:flex;
align-items:flex-end;
justify-content:space-between;
gap:18px;
padding:18px;
border:1px solid var(--border);
border-radius:18px;
background:rgba(2,6,23,.94);
backdrop-filter:blur(16px);
box-shadow:0 20px 60px rgba(2,6,23,.55);
}

.cookie-banner[hidden]{
display:none !important;
}

.cookie-content h4{
margin:0 0 8px;
font-size:1rem;
}

.cookie-content p{
margin:0;
max-width:760px;
color:var(--muted);
line-height:1.6;
}

.cookie-actions{
display:flex;
gap:10px;
flex-shrink:0;
}

.cookie-btn{
padding:10px 14px;
border-radius:10px;
border:1px solid var(--border);
font-weight:800;
cursor:pointer;
}

.cookie-btn.ghost{
background:rgba(255,255,255,.04);
color:#dbeafe;
}

.cookie-btn.primary{
background:linear-gradient(135deg,var(--blue),var(--purple));
color:#fff;
border-color:transparent;
}

.bottom{

margin-top:70px;

padding-top:30px;

border-top:1px solid var(--border);

display:flex;
justify-content:space-between;
flex-wrap:wrap;
gap:20px;

color:var(--muted);

}

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

@media(max-width:980px){

.hero{
flex-direction:column;
padding-top:180px;
}

.hero h1{
font-size:3rem;
}

.section-title,
.section-header h2,
.pricing-header h2,
.enterprise-header h2{
font-size:2.3rem;
}

.cta-content h2{
font-size:2.5rem;
}

.nav-links{
display:none;
}

.api-layout,
.final-cta-grid{
grid-template-columns:1fr;
}

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

.api-docs-sidebar{
position:static;
max-height:none;
padding-right:0;
}

.api-docs-nav{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
gap:8px;
}

nav{
padding:18px 6%;
}

.nav-actions{
gap:10px;
}

.lang-menu{
right:auto;
left:0;
}

.cta-content{
padding:48px 32px;
}

.cta-visual{
min-height:320px;
border-left:none;
border-top:1px solid var(--border);
}

.final-cta{
margin:0 7% 100px;
}

.toggle-btn{
flex:1 1 220px;
}

}

@media(max-width:640px){

section{
padding:90px 6%;
}

.hero{
gap:50px;
}

.nav-actions{
margin-left:auto;
}

.nav-btn{
padding:12px 18px;
font-size:.92rem;
line-height:1;
white-space:nowrap;
min-width:112px;
text-align:center;
}

.lang-trigger{
padding:12px 14px;
}

.hero h1{
font-size:2.4rem;
}

.price-card,
.trust-card{
padding:24px;
}

.price-value{
font-size:2.5rem;
}

.faq-question{
padding:22px 20px;
}

.faq-answer p{
padding:0 20px 22px;
}

.cta-content{
padding:40px 22px;
}

.cta-content h2{
font-size:2rem;
}

.final-cta{
margin:0 6% 90px;
}

.cookie-banner{
left:12px;
right:12px;
bottom:12px;
flex-direction:column;
align-items:stretch;
}

.cookie-actions{
width:100%;
}

.cookie-btn{
flex:1;
}

}

