﻿@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=IBM+Plex+Mono:wght@400;500;600&family=Public+Sans:wght@400;500;600;700&display=swap');

:root {
    --void: #faf9f4;
    --panel: #ffffff;
    --panel-2: #f2f0e7;
    --line: #e1ddd0;
    --vault: #0f8a5f;
    --vault-dim: #0c6d4a;
    --vault-light: #e3f3ea;
    --amber: #c07a1f;
    --amber-light: #faedd6;
    --terra: #c9573b;
    --terra-light: #fbe6df;
    --paper: #161c19;
    --paper-dim: #565f5a;
    --paper-faint: #8a9089;
    --radius: 14px;
    /* Force Bootstrap to strictly use our 3 fonts */
    --bs-font-sans-serif: 'Public Sans', system-ui, -apple-system, sans-serif;
    --bs-body-font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
    --bs-font-monospace: 'IBM Plex Mono', monospace;
}
html{
    overflow-x:hidden;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--void);
    color: var(--paper);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    cursor: default;
}

    body::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 0;
        pointer-events: none;
        background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
        background-size: 64px 64px;
        opacity: .5;
        mask-image: radial-gradient(ellipse 90% 60% at 50% 0%, black 30%, transparent 85%);
    }

h1,
h2,
h3,
h4 {
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.02em;
    font-weight: 700;
}

.mono {
    font-family: 'IBM Plex Mono', monospace;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-size: .72rem;
}

a {
    color: inherit;
    text-decoration: none;
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
}

/* ---------- reveal ---------- */
.rv {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s cubic-bezier(.2, .7, .2, 1), transform .7s cubic-bezier(.2, .7, .2, 1);
}

    .rv.show {
        opacity: 1;
        transform: translateY(0);
    }

.rv-d1 {
    transition-delay: .08s;
}

.rv-d2 {
    transition-delay: .16s;
}

.rv-d3 {
    transition-delay: .24s;
}

.rv-d4 {
    transition-delay: .32s;
}

/* ---------- blobs ---------- */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.blob-anim {
    animation: float 14s ease-in-out infinite;
}

@keyframes float {

    0%, 100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(24px, -30px) scale(1.08);
    }
}

/* ---------- nav ---------- */
/*header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(250, 249, 244, .78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

nav.wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Bricolage Grotesque', sans-serif;
    font-weight: 800;
    font-size: 1.28rem;
}

    .logo .mark {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: linear-gradient(150deg, var(--vault), var(--vault-dim));
        color: #fff;
        font-weight: 800;
        font-family: 'IBM Plex Mono', monospace;
        font-size: .8rem;
        box-shadow: 0 4px 16px rgba(15, 138, 95, .35);
        transition: transform .4s ease;
    }

    .logo:hover .mark {
        transform: rotate(-12deg) scale(1.08);
    }

.navlinks {
    display: flex;
    align-items: center;
    gap: 40px;
}

    .navlinks a {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 0.875rem;
        letter-spacing: .06em;
        text-transform: uppercase;
        color: var(--paper-dim);
        position: relative;
        padding: 6px 0;
        transition: color .25s ease;
    }

        .navlinks a.active {
            color: var(--vault);
        }

        .navlinks a:hover {
            color: var(--vault);
        }

        .navlinks a::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 2px;
            width: 0;
            background: var(--vault);
            transition: width .3s ease;
            border-radius: 2px;
        }

        .navlinks a:hover::after,
        .navlinks a.active::after {
            width: 100%;
        }*/

.btn {
    font-family: 'IBM Plex Mono', monospace;
    font-size: 0.81rem;
    letter-spacing: .05em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    position: relative;
    overflow: hidden;
    min-height:61px;
    font-weight:600;
}

    .btn.btn-lg {
        font-size: 0.85rem;
        padding: 18px 15px;
    }

@media (max-width: 576px) {
    .btn.btn-lg {
        font-size: 0.75rem;
        padding: 14px 20px;
    }
}

.btn-solid {
    background: var(--vault);
    color: #fff;
    font-weight: 600;
}

    .btn-solid::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .35), transparent);
        transform: translateX(-120%);
        transition: transform .6s ease;
    }

    .btn-solid:hover::before {
        transform: translateX(120%);
    }

    .btn-solid:hover {
         background: var(--vault-dim);
        box-shadow: 0 10px 26px rgba(15, 138, 95, .32);
        transform: translateY(-2px);
        color: #fff;
    }
.btn-bg-vault:hover {
    background: #137ff5;
}

.btn-ghost {
    border-color: var(--line);
    color: var(--paper);
    background: var(--panel);
}

    .btn-ghost:hover {
        border-color: var(--vault);
        color: var(--vault);
        transform: translateY(-2px);
    }

.btn-dark {
    border-color: #333333;
    color: #e8e8e8;
    background: #1e1e1e;
}

    .btn-dark:hover {
        border-color: var(--vault);
        /*color: var(--vault);*/
        color:#fff !important;
        transform: translateY(-2px);
    }

.btn-white {
    background: #ffffff;
    color: #121212;
}

    .btn-white:hover {
        background: #f0f0f0;
        box-shadow: 0 10px 26px rgba(255, 255, 255, .2);
        transform: translateY(-2px);
        color: #121212;
    }

.btn-line {
    border-bottom: 1px solid var(--paper-faint);
    padding: 6px 0;
    color: var(--paper-dim);
    border-radius: 0;
}

    .btn-line:hover {
        border-color: var(--vault);
        color: var(--vault);
    }


/* ================= HEADER ================= */
.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 40px;
    background-color: #faf8f5;
    border-bottom: 1px solid #eee2dc;
    position: relative;
    z-index: 1001;
}

.logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
}

/*.logo-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, #d63384, #6f42c1);
}*/

.logo-text-main {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #111;
    line-height: 1.1;
}

.logo-text-sub {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
}

/* Desktop nav */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 34px;
    margin: 0;
    padding: 0;
}

.main-nav a {
    text-decoration: none;
    color: #444;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

    .main-nav a:hover {
        color: var(--vault);
    }

/* Hamburger button - hidden on desktop */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 26px;
    height: 18px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1002;
}

    .hamburger-btn span {
        display: block;
        height: 2.5px;
        width: 100%;
        background-color: #222;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

/* ================= HERO ================= */
.hero {
    padding: 90px 40px 60px 40px;
    max-width: 700px;
}

.hero-tag {
    font-size: 12px;
    letter-spacing: 1px;
    color: #2fa88a;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-title {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 20px 0;
    color: #111;
}

.hero-desc {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    max-width: 560px;
}

/* ================= SIDEBAR (mobile) ================= */
.sidebar-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

    .sidebar-overlay.active {
        display: block;
        opacity: 1;
    }

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    max-width: 80%;
    height: 100vh;
    background-color: #ffffff;
    box-shadow: -2px 0 14px rgba(0, 0, 0, 0.15);
    z-index: 1010;
    transition: right 0.35s ease;
    overflow-y: auto;
}

    .mobile-sidebar.active {
        right: 0;
    }

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    border-bottom: 1px solid #eee;
}

.sidebar-title {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 1px;
    color: #111;
    text-transform: uppercase;
}

.sidebar-close {
    background: none;
    border: none;
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    color: #555;
}

.sidebar-links {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

    .sidebar-links li a {
        display: block;
        padding: 16px 22px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 600;
        letter-spacing: 0.5px;
        text-transform: uppercase;
        border-bottom: 1px solid #f2f2f2;
    }

        .sidebar-links li a:hover {
            background-color: #faf8f5;
            color: var(--vault);
        }

/* ================= MOBILE BREAKPOINT ================= */
@media screen and (max-width: 768px) {
    .main-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .hero {
        padding: 60px 22px 40px 22px;
    }

    .hero-title {
        font-size: 30px;
    }

    .site-header {
        padding: 16px 20px;
    }
}

/* ---------- section heads ---------- */
section {
    position: relative;
    padding: 110px 0;
    z-index: 2;
}

.section-head {
    max-width: 700px;
    margin-bottom: 64px;
}

    .section-head .mono {
        color: var(--vault);
        display: block;
        margin-bottom: 16px;
    }

    .section-head h2 {
        font-size: clamp(2rem, 3.4vw, 2.7rem);
        margin-bottom: 18px;
    }

    .section-head p {
        color: var(--paper-dim);
        font-size: 1.02rem;
    }

.divider {
    height: 1px;
    background: var(--line);
}

/* ---------- hero ---------- */
.hero {
    position: relative;
    padding: 50px 0 50px;
    overflow: hidden;
    background-color: #121212;
    /* Dark background */
    color: #e8e8e8;
    /* Override variables for just this section */
    --void: #121212;
    --panel: #1e1e1e;
    --panel-2: #2a2a2a;
    --line: #333333;
    --paper: #e8e8e8;
    --paper-dim: #999999;
    --paper-faint: #666666;
}

.blob1 {
    width: 520px;
    height: 520px;
    background: var(--vault);
    opacity: .14;
    top: -220px;
    right: -140px;
}

.blob2 {
    width: 340px;
    height: 340px;
    background: var(--terra);
    opacity: .10;
    bottom: -160px;
    left: -120px;
}

.blob3 {
    width: 220px;
    height: 220px;
    background: var(--amber);
    opacity: .14;
    top: 120px;
    left: 40%;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--vault);
    margin-bottom: 26px;
}

    .eyebrow::before {
        content: "";
        width: 7px;
        height: 7px;
        background: var(--vault);
        border-radius: 50%;
        box-shadow: 0 0 0 4px var(--vault-light);
        animation: pulse 2s ease-in-out infinite;
    }

@keyframes pulse {

    0%, 100% {
        box-shadow: 0 0 0 4px var(--vault-light);
    }

    50% {
        box-shadow: 0 0 0 8px var(--vault-light);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1.02;
    margin-bottom: 26px;
}

    .hero h1 .grad {
        background: linear-gradient(100deg, var(--vault), var(--amber) 60%, var(--terra));
        background-size: 200% auto;
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
        animation: gradflow 6s ease-in-out infinite;
    }

@keyframes gradflow {

    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero p.lede {
    font-size: 1.12rem;
    color: var(--paper-dim);
    max-width: 520px;
    margin-bottom: 38px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

    .hero-actions a, .fp-actions a, .cta-content a  {
        width: 180px;
        justify-content: center;
    }
    .hero-actions a {
        margin: auto;
    }
.cta-content a span {
    justify-content: center;
}

.vault-visual {
    position: relative;
    aspect-ratio: 1/1.05;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(160deg, var(--panel), var(--panel-2));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(22, 28, 25, .08);
}

.vault-ring {
    width: 60%;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 1px dashed rgba(15, 138, 95, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: spin 24s linear infinite;
}

    .vault-ring::before {
        content: "";
        position: absolute;
        inset: -34px;
        border-radius: 50%;
        border: 1px solid rgba(15, 138, 95, .14);
    }

    .vault-ring::after {
        content: "";
        position: absolute;
        inset: -68px;
        border-radius: 50%;
        border: 1px dotted rgba(192, 122, 31, .25);
        animation: spin 40s linear infinite reverse;
    }

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.lock-icon {
    animation: spin 24s linear infinite reverse;
    color: var(--vault);
    filter: drop-shadow(0 6px 14px rgba(15, 138, 95, .3));
}

.vault-tag {
    position: absolute;
    font-family: 'IBM Plex Mono', monospace;
    font-size: .68rem;
    color: var(--paper-faint);
    letter-spacing: .06em;
    background: var(--panel);
    padding: 5px 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    animation: bob 5s ease-in-out infinite;
}

.vt-1 {
    top: 24px;
    left: 24px;
}

.vt-2 {
    bottom: 24px;
    right: 24px;
    animation-delay: 1.4s;
}

@keyframes bob {

    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

/* ---------- features ---------- */

.feat-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 34px 26px;
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

    .feat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(22, 28, 25, .08);
        border-color: var(--vault);
    }

.feat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--vault-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    transition: transform .4s ease;
}

.feat-card:hover .feat-icon {
    transform: rotate(-8deg) scale(1.08);
}

.feat-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.feat-card p {
    color: var(--paper-dim);
    font-size: .92rem;
}

/* ---------- featured products ---------- */
.products {
    background: var(--panel-2);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}


.feat-prod-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    transition: box-shadow .4s ease;
}

    .feat-prod-card:hover {
        box-shadow: 0 30px 60px rgba(22, 28, 25, .1);
    }

    .feat-prod-card .glow {
        position: absolute;
        width: 220px;
        height: 220px;
        border-radius: 50%;
        filter: blur(50px);
        opacity: .25;
        top: -60px;
        right: -60px;
        z-index: 0;
        transition: transform .5s ease;
    }

    .feat-prod-card:hover .glow {
        transform: scale(1.3);
    }

.fp-1 .glow {
    background: var(--vault);
}

.fp-2 .glow {
    background: var(--terra);
}

.fp-thumb {
    width: 76px;
    height: 76px;
    border-radius: 16px;
    background: var(--panel-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

    .fp-thumb img {
        width: 58%;
        height: 58%;
        object-fit: contain;
    }

.feat-prod-card .mono {
    color: var(--amber);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.feat-prod-card h3 {
    font-size: 1.6rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feat-prod-card p {
    color: var(--paper-dim);
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.fp-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.view-all-wrap {
    text-align: center;
    margin-top: 44px;
}

/* ---------- stats ---------- */
.stats-band {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
}

.stat-cell {
    background: var(--panel);
    padding: 44px 30px;
    text-align: center;
}

    .stat-cell h3 {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 2.6rem;
        color: var(--vault);
        margin-bottom: 10px;
    }

    .stat-cell span {
        color: var(--paper-faint);
    }

/* ---------- about teaser ---------- */
.universe {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.universe-copy p {
    color: var(--paper-dim);
    margin-bottom: 18px;
    max-width: 480px;
}

.orbit {
    position: relative;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orbit-core {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--vault), var(--vault-dim));
    box-shadow: 0 20px 50px rgba(15, 138, 95, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'IBM Plex Mono', monospace;
    color: #fff;
    font-weight: 700;
    font-size: .85rem;
    text-align: center;
    z-index: 2;
}

.ring {
    position: absolute;
    border: 1px solid var(--line);
    border-radius: 50%;
}

.ring1 {
    width: 70%;
    height: 70%;
    animation: spin 30s linear infinite;
}

.ring2 {
    width: 100%;
    height: 100%;
    animation: spin 46s linear infinite reverse;
}

.ring-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--amber-light);
    border: 1px solid var(--amber);
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
}

/* ---------- CTA banner ---------- */
.cta-band {
    background: linear-gradient(120deg, var(--vault-dim), var(--vault));
    border-radius: 28px;
    padding: 70px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

    .cta-band h2 {
        color: #fff;
        font-size: clamp(1.8rem, 3vw, 2.5rem);
        margin-bottom: 16px;
    }

    .cta-band p {
        color: rgba(255, 255, 255, .85);
        margin-bottom: 34px;
    }

    .cta-band .btn-solid {
        background: #fff;
        color: var(--vault-dim);
    }

        .cta-band .btn-solid:hover {
            background: var(--amber-light);
            box-shadow: 0 10px 30px rgba(0, 0, 0, .2);
        }

@media (max-width: 900px) {

    .hero-grid,
    .universe {
        grid-template-columns: 1fr;
    }



    .feat-prod-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        grid-template-columns: 1fr;
    }
}

/* -- Product --*/
.pg-hero {
    position: relative;
    padding: 30px 0 70px;
    overflow: hidden;
}

.blob1 {
    width: 460px;
    height: 460px;
    background: var(--vault);
    opacity: .13;
    top: -200px;
    right: -120px;
}

.blob2 {
    width: 300px;
    height: 300px;
    background: var(--amber);
    opacity: .13;
    bottom: -140px;
    left: -100px;
}

.pg-hero h1 {
    font-size: clamp(2.4rem, 4.4vw, 3.6rem);
    margin-bottom: 18px;
}

.pg-hero p {
    color: var(--paper-dim);
    max-width: 560px;
    font-size: 1.05rem;
}

.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.chip {
    font-family: 'IBM Plex Mono', monospace;
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .05em;
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--line);
    background: var(--panel);
    cursor: pointer;
    transition: all .25s ease;
    color: var(--paper-dim);
}

    .chip.active,
    .chip:hover {
        border-color: var(--vault);
        color: var(--vault);
        background: var(--vault-light);
    }

.prod-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 50px;
}

.prod-card {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 38px 32px;
    position: relative;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), box-shadow .4s ease;
    display: flex;
    flex-direction: column;
}

    .prod-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 30px 60px rgba(22, 28, 25, .1);
    }

    .prod-card .glow {
        position: absolute;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        filter: blur(50px);
        opacity: .22;
        top: -60px;
        right: -60px;
        z-index: 0;
        transition: transform .5s ease;
    }

    .prod-card:hover .glow {
        transform: scale(1.35);
    }

.pc-1 .glow {
    background: var(--vault);
}

.pc-2 .glow {
    background: var(--amber);
}

.pc-3 .glow {
    background: var(--terra);
}

.prod-thumb {
    width: 78px;
    height: 78px;
    border-radius: 16px;
    background: var(--panel-2);
    border: 1px solid var(--line);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

    .prod-thumb img {
        width: 85%;
        height: 85%;
        object-fit: contain;
    }

.prod-card .mono {
    color: var(--amber);
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.prod-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.prod-card p {
    color: var(--paper-dim);
    font-size: .94rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.tag-list {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

    .tag-list span {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .66rem;
        text-transform: uppercase;
        letter-spacing: .04em;
        padding: 5px 10px;
        border-radius: 100px;
        background: var(--panel-2);
        color: var(--paper-faint);
        border: 1px solid var(--line);
    }

.pc-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

    .pc-actions .btn {
        flex: 1;
        justify-content: center;
        padding: 11px 16px;
    }
    .pc-actions a{
        width:50%;
    }

    @media (max-width: 900px) {
        .prod-grid {
        grid-template-columns: 1fr;
    }
}


/* ---------- footer ---------- */
footer {
    background: var(--panel);
    border-top: 1px solid var(--line);
    padding: 56px 0 34px;
    position: relative;
    z-index: 2;
    color: #e8e8e8;
    /* Override variables for just this section */
    --void: #121212;
    --panel: #1e1e1e;
    --panel-2: #2a2a2a;
    --line: #333333;
    --paper: #e8e8e8;
    --paper-dim: #999999;
    --paper-faint: #666666;
}

.foot-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 40px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--line);
}

.foot-links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

    .foot-links a {
        font-family: 'IBM Plex Mono', monospace;
        font-size: .74rem;
        color: var(--paper-dim);
        text-transform: uppercase;
        letter-spacing: .05em;
    }

        .foot-links a:hover {
            color: var(--vault);
        }

.foot-bottom {
    display: flex;
    justify-content: center;
    color: var(--paper-faint);
    font-size: .8rem;
    flex-wrap: wrap;
    gap: 10px;
}

/* ---------- marquee ---------- */
.marquee-track {
    display: flex;
    gap: 0;
    overflow: hidden;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background-color: #ffffff;
}

    .marquee-track .set {
        display: flex;
        flex-shrink: 0;
        animation: scroll 26s linear infinite;
    }

        .marquee-track .set span {
            font-family: 'Bricolage Grotesque', sans-serif;
            font-weight: 700;
            font-size: 1.4rem;
            color: var(--paper-faint);
            padding: 22px 40px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 16px;
        }

            .marquee-track .set span::after {
                content: "◆";
                color: var(--vault);
                font-size: .7rem;
            }

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}


/* ---------- Utility Classes from Inline Styles Extraction ---------- */
.full-hero-slider-wrap-custom {
    position: relative;
    width: 100%;
    min-height: 600px;
    height: 82vh;
    max-height: 700px;
    overflow: hidden;
}

.fh-slide-custom {
    position: absolute;
    inset: 0;
}

.bg-dark-121212 {
    background: #121212;
    color: #fff;
}

.bg-dark-0f172a {
    background: #0f172a;
    color: #fff;
}

.blob-delay-4 {
    animation-delay: -4s;
}

.blob-delay-8 {
    animation-delay: -8s;
}

.pt-100 {
    padding-top: 100px;
}

.z1-pt100 {
    z-index: 1;
    padding-top: 100px;
}

.hero-title-clamp {
    font-size: clamp(3.2rem, 6.5vw, 4.8rem);
    line-height: 1.05;
    letter-spacing: -0.01em;
}

.hero-title-clamp-sm {
    font-size: clamp(2rem, 4vw, 2.5rem);
    letter-spacing: -0.01em;
}

.text-gradient-emerald {
    background: linear-gradient(135deg, #10b981, #38bdf8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    color: #a1a1aa;
    max-width: 650px;
    font-size: 1.25rem;
}

.fs-095 {
    font-size: 0.95rem;
}

.fs-09-muted {
    font-size: 0.9rem;
    color: #a1a1aa;
}

.text-muted-custom {
    color: #a1a1aa;
}

.icon-20 {
    width: 20px;
    height: 20px;
}

.icon-18 {
    width: 18px;
    height: 18px;
}

.icon-16-invert {
    width: 16px;
    height: 16px;
    opacity: 0.9;
    filter: invert(1) brightness(2);
}

.icon-14-invert {
    width: 14px;
    opacity: 0.8;
    filter: invert(1) brightness(2);
}

.icon-14-rel {
    position: relative;
    width: 14px;
    height: 14px;
}

.position-relative {
    position: relative;
}

.hero-visual-custom {
    width: 120%;
    max-width: 950px;
    position: relative;
    z-index: 2;
    margin-top: 20px;
}

.hero-visual-custom-2 {
    width: 100%;
    max-width: 850px;
    margin-top: 20px;
}

.w-100 {
    width: 100%;
}

.d-block {
    display: block;
}

.drop-shadow-custom {
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
}

.pulse-ring-1 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.25);
    animation: pulse-ring 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    z-index: 1;
    pointer-events: none;
}

.pulse-ring-2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    border-radius: 50%;
    border: 2px solid rgba(16, 185, 129, 0.15);
    animation: pulse-ring 4s cubic-bezier(0.215, 0.61, 0.355, 1) infinite 1.5s;
    z-index: 1;
    pointer-events: none;
}

.ping-dot-tl {
    position: absolute;
    top: 25%;
    left: 15%;
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 15px 3px rgba(16, 185, 129, 0.6);
    animation: float-up-down 3.5s ease-in-out infinite;
    z-index: 3;
}

.ping-dot-br {
    position: absolute;
    bottom: 35%;
    right: 5%;
    width: 6px;
    height: 6px;
    background: #38bdf8;
    border-radius: 50%;
    box-shadow: 0 0 12px 2px rgba(56, 189, 248, 0.6);
    animation: float-alt 4s ease-in-out infinite 1s;
    z-index: 3;
}

.ping-base {
    position: absolute;
    inset: 0;
    background: #10b981;
    border-radius: 50%;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.ping-center {
    position: absolute;
    inset: 2px;
    background: #10b981;
    border-radius: 50%;
}

.float-widget-tr {
    position: absolute;
    top: 0%;
    right: -15px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 12px 20px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    animation: float-up-down 4s ease-in-out infinite;
    z-index: 3;
}

.float-widget-bl {
    position: absolute;
    bottom: 20%;
    left: -20px;
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 14px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    animation: float-alt 5s ease-in-out infinite;
    z-index: 3;
}

.status-text-protected {
    color: #10b981;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.d-flex-col {
    display: flex;
    flex-direction: column;
}

.status-text-bold {
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    line-height: 1.2;
}

.status-subtext-blue {
    color: #38bdf8;
    font-size: 0.75rem;
    letter-spacing: 0.5px;
}

.glow-purple-tl {
    position: absolute;
    top: -50px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: #a855f7;
    filter: blur(150px);
    opacity: 0.25;
    z-index: 0;
    border-radius: 50%;
}

.glow-pink-tr {
    position: absolute;
    top: 100px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: #ec4899;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
    border-radius: 50%;
}

.glow-blue-bl {
    position: absolute;
    bottom: 0;
    left: -100px;
    width: 600px;
    height: 600px;
    background: #38bdf8;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.glow-indigo-tr {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: #818cf8;
    filter: blur(150px);
    opacity: 0.15;
    z-index: 0;
}

.btn-bg-vault {
    background: #007aff;
}


@media (max-width: 900px) {
    /*.navlinks {
        display: none !important;
    }*/

    .hide-mobile {
        display: none !important;
    }

    .full-hero-slider-wrap {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        padding: 0 !important;
    }

    .full-hero-slide {
        position: relative !important;
        height: 950px !important;
        padding: 60px 0 !important;
        display: none !important;
    }

    .fh-container {
        padding-top: 0px !important;
    }

    .full-hero-slide.active {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    .hero-visual > div {
        margin: 0 auto 30px !important;
        width: 100% !important;
        max-width: 100% !important;
        transform: none !important;
    }

    .split-right-text {
        padding-left: 15px !important;
    }

    .hero h1,
    .pg-hero h1 {
        font-size: 2.2rem !important;
    }

    section {
        padding: 60px 0 !important;
    }
}

/* Mobile Nav Styles */
.mobile-menu-btn {
    cursor: pointer;
    color: var(--paper-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

    .mobile-menu-btn:hover {
        color: var(--vault);
    }

.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(22, 28, 25, 0.4);
    backdrop-filter: blur(8px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

    .mobile-nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }

.mobile-nav-content {
    position: absolute;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--void);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-nav-overlay.active .mobile-nav-content {
    right: 0;
}

.mobile-nav-close {
    align-self: flex-end;
    cursor: pointer;
    color: var(--paper-dim);
    margin-bottom: 40px;
    transition: color 0.2s;
}

    .mobile-nav-close:hover {
        color: var(--vault);
    }

.mobile-navlinks {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

    .mobile-navlinks a {
        font-family: 'IBM Plex Mono', monospace;
        font-size: 1.25rem;
        letter-spacing: 0.04em;
        text-transform: uppercase;
        color: var(--paper-dim);
        text-decoration: none;
        font-weight: 600;
        transition: color 0.2s;
    }

        .mobile-navlinks a:hover,
        .mobile-navlinks a.active {
            color: var(--vault);
        }

/* Upgraded design for policy pages */
.policy-header {
    padding: 80px 20px 40px;
    text-align: center;
    position: relative;
}

    .policy-header h1 {
        font-size: clamp(2rem, 4vw, 3rem);
        margin-bottom: 10px;
        background: linear-gradient(135deg, var(--paper), var(--paper-dim));
        -webkit-background-clip: text;
        background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.page-content {
    padding: 0 20px 80px;
    max-width: 1180px;
    margin: 0 auto;
    color: var(--paper);
}

    .page-content h1,
    .page-content h2,
    .page-content h3 {
        color: var(--paper);
        margin-top: 40px;
        margin-bottom: 15px;
    }

    .page-content p {
        margin-bottom: 20px;
        line-height: 1.7;
        font-size: 1.05rem;
    }

    .page-content ul {
        margin-bottom: 20px;
        padding-left: 20px;
    }

    .page-content li {
        margin-bottom: 10px;
        line-height: 1.6;
    }

    .page-content a {
        color: var(--vault);
        text-decoration: none;
        border-bottom: 1px solid transparent;
        transition: border-color 0.2s;
    }

        .page-content a:hover {
            border-color: var(--vault);
        }

.main-box {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

/* Active Tab Styles */
header .navlinks a.active {
    color: var(--vault) !important;
    font-weight: 700;
    border-bottom: 1px solid var(--vault);
}

footer a.active {
    color: var(--vault) !important;
    font-weight: 700;
    text-decoration: underline;
}

/* Contact Us New Design */
.contact-box {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 80px;
    box-shadow: none;
}

.contact-info h2 {
    color: var(--paper);
    font-size: 2rem;
    margin-bottom: 40px;
    line-height: 1.2;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
}

    .contact-item:last-child {
        margin-bottom: 0;
    }

.c-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    color: var(--vault);
}

    .c-icon svg {
        width: 100%;
        height: 100%;
    }

.c-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

    .c-text .mono {
        font-size: 0.75rem;
        font-weight: 700;
        color: var(--paper-faint);
        letter-spacing: 1px;
    }

    .c-text p,
    .c-text a {
        color: var(--paper-dim);
        font-size: 0.95rem;
        line-height: 1.6;
        text-decoration: none;
        margin: 0;
    }

        .c-text a:hover {
            color: var(--vault);
        }

.contact-form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .contact-form form {
        display: flex;
        flex-direction: column;
        gap: 20px;
        margin: 0;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    position: relative;
}

    .form-group input,
    .form-group textarea {
        width: 100%;
        background: var(--panel);
        border: 1px solid var(--line);
        border-radius: 12px;
        padding: 16px 20px;
        color: var(--paper);
        font-family: 'Public Sans';
        /*font-family: inherit;*/
        font-size: 0.95rem;
        transition: border-color 0.3s, box-shadow 0.3s;
    }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--vault);
            box-shadow: 0 0 0 3px var(--vault-light);
        }

        .form-group input::placeholder,
        .form-group textarea::placeholder {
            color: var(--paper-faint);
        }

.email-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    pointer-events: none;
    color: var(--vault);
}

    .email-icon svg {
        width: 100%;
        height: 100%;
    }

.btn-submit {
    width: 100%;
    background: var(--vault);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'IBM Plex Mono', monospace;
    cursor: pointer;
    transition: opacity 0.2s, background-color 0.2s;
    margin-top: 0;
}

    .btn-submit:hover {
        background: var(--vault-dim);
    }

/* iSecure VPN Banner */
.vpn-banner {
    background: linear-gradient(135deg, #0f111a 0%, #1a1625 100%);
    border-radius: 20px;
    padding: 60px 40px;
    margin: 60px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(139, 92, 246, 0.2);
}

    .vpn-banner::before {
        content: '';
        position: absolute;
        top: -100px;
        right: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(32, 206, 255, 0.15) 0%, rgba(139, 92, 246, 0.1) 50%, transparent 70%);
        border-radius: 50%;
        pointer-events: none;
    }

.vpn-banner-content {
    flex: 1;
    z-index: 1;
}

.vpn-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

    .vpn-logo img {
        height: 60px;
    }

    .vpn-logo span {
        background: linear-gradient(120deg, #20ceff, #8b5cf6);
        background-clip: text;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

.vpn-banner h2 {
    font-size: 2.5rem;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.vpn-banner p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 30px;
    max-width: 500px;
}

.vpn-features {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.vpn-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    font-weight: 500;
}

    .vpn-feature svg {
        width: 18px;
        height: 18px;
        color: #20ceff;
    }

.btn-vpn {
    display: inline-block;
    background: linear-gradient(90deg, #20ceff, #8b5cf6);
    color: #fff;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 10px 20px rgba(139, 92, 246, 0.3);
}

    .btn-vpn:hover {
        transform: translateY(-2px);
        box-shadow: 0 15px 25px rgba(139, 92, 246, 0.4);
    }

.vpn-banner-visual {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.vpn-shield {
    width: 100%;
    max-width: 250px;
    filter: drop-shadow(0 0 30px rgba(32, 206, 255, 0.2));
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

/* ---------- Header & Footer Restored Styles ---------- */
header {
    position: sticky;
    top: 0;
    z-index: 1050;
    background: rgba(250, 249, 244, 0.78);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}



@media (max-width: 900px) {
    .contact-box {
        grid-template-columns: 1fr;
        padding: 30px 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .vpn-banner {
        flex-direction: column;
        padding: 40px 20px;
        text-align: center;
        gap: 30px;
    }

    .vpn-logo {
        justify-content: center;
    }

    .vpn-features {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .vpn-banner h2 {
        font-size: 2rem;
    }
}

/* -- Stylish About Section Redesign -- */
.about-overlap-card {
    position: absolute;
    bottom: -40px;
    right: 60px;
    background: var(--panel);
    padding: 40px;
    border-radius: 28px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    max-width: 380px;
    border: 1px solid var(--line);
}

.stylish-card {
    background: var(--panel-2);
    padding: 50px;
    border-radius: 32px;
    border: 1px solid var(--line);
    transition: transform 0.3s ease, background 0.3s ease;
}

    .stylish-card:hover {
        transform: translateY(-5px);
        background: var(--panel);
    }

@media (max-width: 900px) {
    .about-overlap-card {
        position: relative;
        bottom: auto;
        right: auto;
        margin: -60px auto 40px;
        width: 90%;
        max-width: none;
    }
}

/* -- Stylish CTA Redesign -- */
.stylish-cta {
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 32px;
    padding: 80px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 60px 0;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.05);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.cta-shapes {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 50%;
    z-index: 1;
    pointer-events: none;
}

    .cta-shapes .shape-1 {
        position: absolute;
        top: -50%;
        right: -20%;
        width: 500px;
        height: 500px;
        background: var(--vault);
        filter: blur(120px);
        opacity: 0.3;
        border-radius: 50%;
    }

    .cta-shapes .shape-2 {
        position: absolute;
        bottom: -50%;
        right: 20%;
        width: 400px;
        height: 400px;
        background: var(--amber);
        filter: blur(100px);
        opacity: 0.2;
        border-radius: 50%;
    }

@media (max-width: 900px) {
    .stylish-cta {
        padding: 60px 40px;
        flex-direction: column;
        text-align: center;
    }

    .cta-content {
        max-width: 100%;
    }

        .cta-content p {
            margin-left: auto;
            margin-right: auto;
        }

    .cta-shapes {
        width: 100%;
    }

        .cta-shapes img {
            display: none;
            /* hide logo on small screens to prevent overlap */
        }
}

/* ---------- Custom VPN Widget Dashboard ---------- */
.vpn-widget-container {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 480px;
    margin: 0 auto;
    transform: perspective(1000px) rotateY(-10deg) rotateX(5deg);
    transform-style: preserve-3d;
    transition: transform 0.5s ease;
}

    .vpn-widget-container:hover {
        transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    }

.vpn-main-panel {
    position: absolute;
    inset: 20px;
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 1;
}

.vpn-header {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.vpn-status-badge {
    background: rgba(15, 138, 95, 0.2);
    color: var(--vault);
    padding: 6px 12px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(15, 138, 95, 0.3);
}

.vpn-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    background: radial-gradient(circle at center, rgba(15, 138, 95, 0.1) 0%, transparent 60%);
}

.vpn-status-ring {
    position: relative;
    width: 140px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.vpn-ring-pulse {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid var(--vault);
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

.vpn-ring-core {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--vault), #095d40);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(15, 138, 95, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.3);
    color: #fff;
    z-index: 2;
}

    .vpn-ring-core svg {
        width: 40px;
        height: 40px;
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    }

.vpn-conn-text {
    text-align: center;
}

    .vpn-conn-text .mono {
        font-size: 0.75rem;
        color: var(--paper-faint);
        letter-spacing: 2px;
        display: block;
        margin-bottom: 8px;
    }

    .vpn-conn-text h4 {
        font-size: 1.25rem;
        color: #fff;
        margin: 0;
        font-weight: 500;
    }

.vpn-float-card {
    position: absolute;
    background: rgba(40, 40, 40, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 2;
    transform: translateZ(40px);
    transition: transform 0.3s ease;
}

    .vpn-float-card:hover {
        transform: translateZ(60px) scale(1.05);
    }

.fc-1 {
    top: 60px;
    right: -30px;
}

.fc-2 {
    bottom: 80px;
    left: -20px;
}

.fc-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--vault);
}

    .fc-icon svg {
        width: 20px;
        height: 20px;
    }

.fc-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.fc-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--paper-faint);
    letter-spacing: 1px;
}

.fc-value {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    font-family: 'IBM Plex Mono', monospace;
}

/* Slider Overrides */
.hero-slider-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    height: 520px;
    margin: 0 auto;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    z-index: 1;
}

    .slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }

.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .slider-dot:hover {
        background: rgba(255, 255, 255, 0.5);
    }

    .slider-dot.active {
        background: var(--vault);
        transform: scale(1.2);
    }

/* Slide 2 Specifics */
.node-pulse {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.node-pulse-2 {
    animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    animation-delay: 1s;
}

/* Slide 3 Specifics */
.shield-glow svg {
    filter: drop-shadow(0 0 20px rgba(56, 189, 248, 0.4));
}

/* Full Hero Slider Styles */
.full-hero-slider-wrap {
    position: relative;
    width: 100%;
    /*min-height: 70vh;*/
    min-height:690px;
    /* Adjusts based on content */
    overflow: hidden;
}

/*.full-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
    z-index: 1;
}
*/

.full-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    transition: opacity 1s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
    /*.full-hero-slide.active {
        opacity: 1;
        visibility: visible;
        z-index: 2;
    }*/
    .full-hero-slide.active {
        opacity: 1;
        z-index: 2;
    }

.fh-slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.fh-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(150, 150, 150, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

    .fh-dot:hover {
        background: rgba(150, 150, 150, 0.8);
    }

    .fh-dot.active {
        background: #121212;
        transform: scale(1.3);
    }

.fh-slide-1.active ~ .fh-slider-nav .fh-dot.active,
.fh-slide-3.active ~ .fh-slider-nav .fh-dot.active {
    background: #fff;
}

.fh-slide-1.active ~ .fh-slider-nav .fh-dot,
.fh-slide-3.active ~ .fh-slider-nav .fh-dot {
    background: rgba(255, 255, 255, 0.3);
}

    .fh-slide-1.active ~ .fh-slider-nav .fh-dot:hover,
    .fh-slide-3.active ~ .fh-slider-nav .fh-dot:hover {
        background: rgba(255, 255, 255, 0.6);
    }

/* Ensure original hero-grid works in slide */
.full-hero-slide .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    height: 100%;
}
@media screen and (max-width:991px){
    .stylish-cta {
        padding: 60px 30px !important;
        flex-direction: column-reverse !important;
        text-align: center !important;
        gap: 40px !important;
    }
    .cta-shapes {
        position: relative !important;
        width: 100% !important;
        display: flex !important;
        justify-content: center !important;
    }
    .cta-box-img {
        position: relative !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        width: 250px !important;
        max-width: 100% !important;
    }

    .cta-shapes img {
        display: none;
    }
    .cta-content {
        max-width: 100%;
    }
}

@media (max-width: 900px) {
    .full-hero-slide .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 80px;
        padding-bottom: 80px;
    }

    /*.full-hero-slide .split-right-text {
        padding-left: 0 !important;
    }*/
}

/* Moved from index.html inline styles */

.cta-box-img {
    position: absolute;
    right: 10%;
    top: 56%;
    transform: translateY(-50%);
    width: 360px;
    z-index: 10;
    opacity: 0.9;
}

@media (max-width: 900px) {
   
   

    @keyframes float-up-down {

        0%, 100% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(-10px);
        }
    }

    @keyframes float-perspective {

        0%, 100% {
            transform: perspective(1000px) rotateY(5deg) translateY(0);
        }

        50% {
            transform: perspective(1000px) rotateY(5deg) translateY(-10px);
        }
    }

    @keyframes sweep {
        0% {
            transform: rotate(0deg);
        }

        25% {
            transform: rotate(-15deg);
        }

        75% {
            transform: rotate(15deg);
        }

        100% {
            transform: rotate(0deg);
        }
    }

    @keyframes ping {

        75%, 100% {
            transform: scale(2);
            opacity: 0;
        }
    }

    @keyframes pulse-ring {
        0% {
            transform: scale(0.6);
            opacity: 0.8;
        }

        100% {
            transform: scale(1.6);
            opacity: 0;
        }
    }

    @keyframes float-alt {

        0%, 100% {
            transform: translateY(0) rotate(0deg);
        }

        50% {
            transform: translateY(15px) rotate(-2deg);
        }
    }
}

@media screen and (max-width:575px){
    /*.fp-actions{
        flex-wrap:wrap !important;
    }*/
    hero-actions
    .fp-actions a, .stylish-cta div.gap-2 a {
        width: 100%;
    }

    .btn{
        min-height: 50px;
    }
    /*.icon-googleplay {
        height:50px !important;
    }*/

    .btn.btn-lg{
        justify-content:center;
    }
}

@media screen and (max-width:480px){
    .pc-actions.flex-nowrap, .hero-actions.flex-nowrap, .cta-content div.flex-nowrap {
        flex-wrap: wrap !important;
    }
        .hero-actions.flex-nowrap{
            width:100%;
        }

            .pc-actions.flex-nowrap a, .hero-actions.flex-nowrap a, .cta-content div.flex-nowrap a{
                width: 100%;
                flex: initial;
            }

            .hero-actions.flex-nowrap a{
                margin:5px 0px;
            }
    .full-hero-slider-wrap a.btn, .full-hero-slider-wrap a span.btn {
        font-size: 1rem !important;
    }
}


