/* ================== ROOT ================== */
:root {
    --bg-main: #050b12;
    --bg-secondary: #0a1624;
    --accent: #20c6ff;
    --accent-soft: rgba(32, 198, 255, 0.35);
    --text-main: #e6f4ff;
    --text-muted: #8aa4b8;
    --glow: 0 0 15px rgba(32,198,255,0.6);
    --radius: 14px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: radial-gradient(circle at top, #08121d, #02060c);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
}

/* ================== HEADER ================== */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: rgba(5,11,18,0.75);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(32,198,255,0.15);
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Orbitron', sans-serif;
    font-size: 22px;
    font-weight: 700;
}

.logo img {
    width: 42px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(32,198,255,0.7));
}

.logo span {
    color: var(--accent);
    text-shadow: var(--glow);
}

.nav a {
    margin-left: 22px;
    text-decoration: none;
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
}

.nav a::after {
    content: "";
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

/* ================== HERO ================== */
.hero {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    padding: 90px 5%;
    align-items: center;
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(32,198,255,0.3);
}

.hero-text {
    color: var(--text-muted);
    max-width: 600px;
}

.hero-visual img {
    width: 100%;
    max-width: 550px;
    animation: float 2s ease-in-out infinite;
    filter:
        drop-shadow(0 0 55px rgba(32,198,255,0.35))
        drop-shadow(0 0 75px rgba(32,198,255,0.2));
}


/* ================== CTA ================== */
.cta-box {
    margin-top: 35px;
    padding: 28px;
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(32,198,255,0.15), rgba(32,198,255,0.03));
    border: 1px solid rgba(32,198,255,0.25);
    box-shadow: var(--glow);
}

.cta-label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--accent);
}

.cta-button {
    display: inline-block;
    margin-top: 14px;
    padding: 14px 34px;
    background: linear-gradient(135deg, #20c6ff, #1b9ad6);
    color: #001018;
    font-weight: 700;
    text-decoration: none;
    border-radius: 40px;
    box-shadow: 0 0 25px rgba(32,198,255,0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 45px rgba(32,198,255,1);
}

.cta-note {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* ================== TRUST BLOCK ================== */
.trust {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding: 60px 5%;
}

.glow-box {
    background: rgba(10,22,36,0.85);
    border-radius: var(--radius);
    padding: 26px;
    border: 1px solid rgba(32,198,255,0.18);
    box-shadow: 0 0 18px rgba(32,198,255,0.25);
    transition: transform 0.3s ease;
}

.glow-box:hover {
    transform: translateY(-6px);
}

/* ================== CONTENT ================== */
.content {
    padding: 80px 5%;
    max-width: 1200px;
    margin: auto;
}

.content h2 {
    font-family: 'Orbitron', sans-serif;
    margin: 60px 0 20px;
    color: var(--accent);
}

.content h3 {
    margin-top: 30px;
}

.content p {
    color: var(--text-muted);
    margin-bottom: 18px;
}

.styled-list li {
    margin-left: 18px;
    list-style: square;
    color: var(--text-main);
}

/* ================== FOOTER ================== */
.footer {
    padding: 40px 5%;
    text-align: center;
    background: #02060c;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid rgba(32,198,255,0.1);
}

/* ================== ANIMATION ================== */
@keyframes float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0); }
}

/* ================== MOBILE ================== */
@media (max-width: 900px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .nav {
        display: none;
    }

    .trust {
        grid-template-columns: 1fr;
    }
}
/* ================== BRAND TITLE ================== */
.brand-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 34px;
    line-height: 1;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    letter-spacing: 1px;
}

.brand-main {
    background: linear-gradient(
        90deg,
        #1bb9ff,
        #6fe3ff,
        #1bb9ff
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: neonFlow 6s linear infinite;
    text-shadow:
        0 0 25px rgba(32,198,255,0.45),
        0 0 50px rgba(32,198,255,0.25);
}

.brand-sub {
    font-size: 9px;
    margin-top: 4px;
    color: var(--text-muted);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* ================== ANIMATION ================== */
@keyframes neonFlow {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}
