:root {
    --primary: #4CAAA1;
    --accent: #F472B6;
    --secondary: #A78BFA;
    --background: #1C2526;
    --text: #F472B6;
    --text-light: #E2E8F0;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

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


body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #000000;
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    animation: glitch 8s infinite;
}

/* Glitch effect pseudo-elements */
h1::before,
h1::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h1::before {
    animation: glitchTop 3s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

h1::after {
    animation: glitchBottom 2.5s infinite reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    animation: glitch 10s infinite;
}

/* Glitch effect for h2 */
h2::before,
h2::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

h2::before {
    animation: glitchTop 4s infinite;
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
    text-shadow: -2px 0 var(--primary);
}

h2::after {
    animation: glitchBottom 3.5s infinite reverse;
    clip-path: polygon(0 67%, 100% 67%, 100% 100%, 0 100%);
    text-shadow: 2px 0 var(--accent);
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: rgba(226, 232, 240, 0.8);
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

/* Animated Gradient Backgrounds */
section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    z-index: 0;
    pointer-events: none;
}

section>* {
    position: relative;
    z-index: 1;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Header */
/* Header */
header {
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    border-bottom: none;
    pointer-events: none;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(28, 37, 38, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 10px 10px 10px 30px;
    width: fit-content;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    max-width: 95%;
}

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

.logo img {
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-left: 40px;
}

.nav-links a {
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-links .btn {
    border-radius: 50px;
}


/* Mobile Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-btn span {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Buttons */

.btn {
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary), var(--secondary), var(--primary));
    background-size: 200% 200%;
    animation: gradientShift 3s linear infinite;
    color: white;
    box-shadow: 0 4px 15px rgba(76, 170, 161, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 170, 161, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
}

/* Open state for hamburger menu */
.menu-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-btn.open span:nth-child(2) {
    opacity: 0;
}

.menu-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

.nav-links a:not(.btn):hover {
    color: var(--primary);
}

@media (max-width: 768px) {
    nav {
        width: 90%;
        max-width: 90%;
        padding: 10px 20px;
    }

    .menu-btn {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        /* Offset for floating header */
        right: 20px;
        width: auto;
        min-width: 250px;
        height: auto;
        background: rgba(28, 37, 38, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: all 0.3s ease;
        z-index: 1000;
        border-radius: 50px;
        border: 1px solid var(--glass-border);
        padding: 30px;
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none;
        margin-left: 0;
    }

    .nav-links.active {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-links a {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .hero .container {
        flex-direction: column;
        text-align: center;
        padding-top: 40px;
        gap: 20px !important;
    }

    .hero-content {
        order: 2;
    }

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

    .hero-visual {
        order: 1;
        height: 350px;
        width: 100%;
    }

    .globe-wrapper {
        width: 250px;
        height: 250px;
    }

    h1 {
        font-size: 2.5rem;
    }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 100px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 100%,
            rgba(20, 30, 48, 1) 0%,
            rgba(10, 10, 15, 1) 60%,
            #000000 100%);
    position: relative;
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.8;
    box-shadow: 0 0 10px white;
    animation: floatParticle 20s linear infinite;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0);
        opacity: 0;
    }

    10% {
        opacity: var(--opacity);
    }

    90% {
        opacity: var(--opacity);
    }

    100% {
        transform: translateY(-100vh);
        opacity: 0;
    }
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-visual {
    flex: 1;
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Browser Badges */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.browser-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 120px;
    height: 120px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    position: relative;
    transition: all 0.3s ease;
    text-decoration: none;
    overflow: hidden;
}

.browser-badge .browser-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
    transition: transform 0.3s ease;
}

.badge-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

/* Primary Badge (Chrome) */
.badge-primary {
    background: linear-gradient(135deg, rgba(76, 170, 161, 0.1) 0%, rgba(76, 170, 161, 0.05) 100%);
    border-color: rgba(76, 170, 161, 0.3);
    box-shadow: 0 4px 15px rgba(76, 170, 161, 0.15);
}

.badge-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(76, 170, 161, 0.3);
    border-color: var(--primary);
}

.badge-primary:hover .browser-icon {
    transform: scale(1.1);
}

/* Disabled Badge (Coming Soon) */
.badge-disabled {
    opacity: 0.7;
    cursor: default;
    background: rgba(255, 255, 255, 0.02);
}

.coming-soon-patch {
    position: absolute;
    top: 20px;
    right: -25px;
    background: var(--accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 4px 40px;
    transform: rotate(45deg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

/* 3D Neon Globe */
.globe-wrapper {
    width: 300px;
    height: 300px;
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.globe-grid {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    transform-style: preserve-3d;
    animation: globeRotate 30s infinite linear;
}

/* Globe sphere with neon glow */
/* Globe sphere with neon glow - Earth Colors */
.globe-sphere {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 35%,
            rgba(0, 100, 255, 0.2) 0%,
            rgba(0, 50, 150, 0.3) 40%,
            rgba(0, 10, 30, 0.8) 80%,
            rgba(0, 0, 0, 0.9) 100%);
    border: 1px solid rgba(0, 150, 255, 0.3);
    box-shadow:
        0 0 40px rgba(0, 100, 255, 0.3),
        inset -20px -20px 60px rgba(0, 0, 0, 0.8),
        inset 20px 20px 40px rgba(0, 150, 255, 0.2),
        0 0 80px rgba(0, 100, 255, 0.1);
    animation: pulse 4s ease-in-out infinite;
}

/* Latitude lines - using elliptical borders to appear curved */
/* Latitude lines - using elliptical borders to appear curved */
.latitude-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-radius: 50%;
    transform-origin: center;
    transform-style: preserve-3d;
}

.lat-1 {
    border-top: 1px solid rgba(0, 200, 255, 0.4);
    border-bottom: 1px solid rgba(0, 200, 255, 0.4);
    transform: translate(-50%, -50%) rotateX(60deg) scale(0.9);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
}

.lat-2 {
    border-top: 1px solid rgba(0, 200, 255, 0.3);
    border-bottom: 1px solid rgba(0, 200, 255, 0.3);
    transform: translate(-50%, -50%) rotateX(30deg) scale(0.95);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.15);
}

.lat-3 {
    border-top: 1px solid rgba(0, 200, 255, 0.3);
    border-bottom: 1px solid rgba(0, 200, 255, 0.3);
    transform: translate(-50%, -50%) rotateX(-30deg) scale(0.95);
    box-shadow: 0 0 12px rgba(0, 200, 255, 0.15);
}

.lat-4 {
    border-top: 1px solid rgba(0, 200, 255, 0.4);
    border-bottom: 1px solid rgba(0, 200, 255, 0.4);
    transform: translate(-50%, -50%) rotateX(-60deg) scale(0.9);
    box-shadow: 0 0 15px rgba(0, 200, 255, 0.2);
}

/* Longitude lines - ellipses rotated in 3D space */
.longitude-line {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-left: 1px solid rgba(0, 150, 255, 0.4);
    border-right: 1px solid rgba(0, 150, 255, 0.4);
    border-radius: 50%;
    transform-origin: center;
    transform-style: preserve-3d;
    box-shadow: 0 0 12px rgba(0, 150, 255, 0.2);
}

.lon-1 {
    transform: translate(-50%, -50%) rotateY(0deg);
}

.lon-2 {
    transform: translate(-50%, -50%) rotateY(30deg);
}

.lon-3 {
    transform: translate(-50%, -50%) rotateY(60deg);
}

.lon-4 {
    transform: translate(-50%, -50%) rotateY(90deg);
}

/* Data streams - animated particles */
.data-stream {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #00ffff;
    border-radius: 50%;
    box-shadow:
        0 0 15px #00ffff,
        0 0 25px rgba(0, 255, 255, 0.8),
        0 0 35px rgba(0, 100, 255, 0.6);
    animation: streamMove 8s ease-in-out infinite;
    opacity: 0;
}

.stream-1 {
    left: 20%;
    top: 30%;
    animation-delay: 0s;
}

.stream-2 {
    left: 70%;
    top: 40%;
    animation-delay: 1.3s;
}

.stream-3 {
    left: 40%;
    top: 60%;
    animation-delay: 2.6s;
}

.stream-4 {
    left: 80%;
    top: 20%;
    animation-delay: 4s;
}

.stream-5 {
    left: 30%;
    top: 70%;
    animation-delay: 5.3s;
}

.stream-6 {
    left: 60%;
    top: 50%;
    animation-delay: 6.6s;
}

@keyframes globeRotate {
    0% {
        transform: rotateX(15deg) rotateY(0deg) rotateZ(-5deg);
    }

    100% {
        transform: rotateX(15deg) rotateY(360deg) rotateZ(-5deg);
    }
}

@keyframes pulse {

    0%,
    100% {
        box-shadow:
            0 0 40px rgba(76, 170, 161, 0.5),
            inset -20px -20px 60px rgba(0, 0, 0, 0.5),
            inset 20px 20px 40px rgba(76, 170, 161, 0.2),
            0 0 80px rgba(76, 170, 161, 0.3);
    }

    50% {
        box-shadow:
            0 0 60px rgba(76, 170, 161, 0.7),
            inset -20px -20px 60px rgba(0, 0, 0, 0.5),
            inset 20px 20px 60px rgba(76, 170, 161, 0.3),
            0 0 100px rgba(76, 170, 161, 0.4);
    }
}

@keyframes streamMove {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.5);
    }

    5% {
        opacity: 1;
    }

    50% {
        opacity: 1;
        transform: translate(100px, -50px) scale(1);
    }

    95% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(200px, -100px) scale(0.5);
    }
}

.floating-icon {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
}

.icon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.icon-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.icon-3 {
    top: 40%;
    right: 0%;
    animation-delay: 4s;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Matrix-style hover effect */
.feature-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            transparent 0%,
            rgba(76, 170, 161, 0.05) 50%,
            transparent 100%);
    transition: top 0.6s ease;
    pointer-events: none;
}

.feature-card:hover::after {
    top: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(76, 170, 161, 0.2),
        0 0 20px rgba(76, 170, 161, 0.1) inset;
    background: rgba(76, 170, 161, 0.02);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--accent);
}

/* CISO Section */
.ciso-section {
    background: linear-gradient(180deg, rgba(28, 37, 38, 0) 0%, rgba(76, 170, 161, 0.05) 100%);
}

.ciso-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    align-items: center;
}

.ciso-content h2 {
    text-align: left;
}

.ciso-list {
    list-style: none;
}

.ciso-list li {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.check-icon {
    color: var(--primary);
    font-weight: bold;
    font-size: 1.2rem;
}

.ciso-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.enterprise-illustration {
    width: 100%;
    max-width: 400px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.enterprise-illustration:hover {
    transform: scale(1.02);
}

.cta-box {
    text-align: center;
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(76, 170, 161, 0.3);
    backdrop-filter: blur(10px);
    width: 100%;
}

.cta-box h4 {
    margin-bottom: 10px;
    color: var(--text-light);
}

.cta-box p {
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.cta-box .btn {
    width: 100%;
    justify-content: center;
}

/* M3 Framework */
.m3-section {
    text-align: center;
    background: rgba(167, 139, 250, 0.05);
    border-top: 1px solid rgba(167, 139, 250, 0.1);
    border-bottom: 1px solid rgba(167, 139, 250, 0.1);
}

.m3-logo {
    height: 60px;
    margin-bottom: 20px;
}

/* Author Section */
.author-section {
    background: linear-gradient(135deg, rgba(76, 170, 161, 0.05) 0%, rgba(167, 139, 250, 0.05) 100%);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.author-card {
    display: flex;
    align-items: center;
    gap: 40px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: var(--card-shadow);
}

.author-info h3 {
    color: var(--text-light);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.author-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.certs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1.5rem;
}

.cert-tag {
    background: rgba(76, 170, 161, 0.1);
    border: 1px solid rgba(76, 170, 161, 0.3);
    color: var(--primary);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(180deg, rgba(76, 170, 161, 0.05) 0%, rgba(28, 37, 38, 0) 100%);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: rgba(76, 170, 161, 0.3);
}

.pricing-card.enterprise {
    background: linear-gradient(145deg, rgba(76, 170, 161, 0.05), rgba(28, 37, 38, 0.4));
    border: 1px solid rgba(76, 170, 161, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(76, 170, 161, 0.4);
    z-index: 10;
}

.card-header {
    text-align: center;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 20px;
}

.pricing-card h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.pricing-card .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 5px;
}

.pricing-card .price .period {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.6);
    font-weight: 400;
}

.core-feature {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 5px;
}

.audience {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.6);
    margin-bottom: 0;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-light);
}

.pricing-features li.unavailable {
    color: rgba(226, 232, 240, 0.4);
    text-decoration: line-through;
}

.pricing-features .check {
    color: var(--primary);
    font-weight: bold;
}

.pricing-features .cross {
    color: rgba(226, 232, 240, 0.4);
    font-weight: bold;
}

.card-footer {
    text-align: center;
}

.card-footer .btn {
    width: 100%;
    justify-content: center;
}

/* Footer Styles */
footer {
    background: linear-gradient(180deg, rgba(10, 10, 15, 1) 0%, rgba(20, 30, 48, 1) 100%);
    position: relative;


    border-top: 1px solid var(--glass-border);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-brand {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    height: 30px;
    margin-bottom: 15px;
}

.footer-brand p {
    font-size: 0.9rem;
    max-width: 300px;
    color: rgba(226, 232, 240, 0.7);
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.6);
}

.ukraine-msg {
    font-size: 0.85rem;
    color: rgba(226, 232, 240, 0.5);
    font-style: italic;
}

.ukraine-flag {
    background: linear-gradient(180deg, #8888FF 50%, #FFD700 50%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    font-style: normal;
}

/* Button Icons */
.btn svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.btn-primary svg {
    fill: white;
}

.browser-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.gromy-logo {
    height: 18px;
    object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .author-card {
        flex-direction: column;
        text-align: center;
        padding: 30px;
    }

    .certs-list {
        justify-content: center;
    }

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

    .footer-content {
        flex-direction: column;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* Glitch Animations */
@keyframes glitch {

    0%,
    90%,
    100% {
        transform: translate(0);
    }

    91% {
        transform: translate(-2px, 2px);
    }

    92% {
        transform: translate(2px, -2px);
    }

    93% {
        transform: translate(-2px, 1px);
    }

    94% {
        transform: translate(2px, -1px);
    }
}

@keyframes glitchTop {

    0%,
    85%,
    100% {
        transform: translate(0);
        opacity: 1;
    }

    87% {
        transform: translate(-3px, 0);
        opacity: 0.8;
        filter: hue-rotate(90deg);
    }

    89% {
        transform: translate(3px, 0);
        opacity: 0.8;
        filter: hue-rotate(-90deg);
    }
}

@keyframes glitchBottom {

    0%,
    80%,
    100% {
        transform: translate(0);
        opacity: 1;
    }

    83% {
        transform: translate(3px, 0);
        opacity: 0.8;
        filter: hue-rotate(90deg);
    }

    86% {
        transform: translate(-3px, 0);
        opacity: 0.8;
        filter: hue-rotate(-90deg);
    }
}

/* Enterprise shield */
#enterprise-shield-container {
    width: 100%;
    height: 400px;
    position: relative;
    overflow: hidden;
}

#shieldCanvas {
    display: block;
    width: 100%;
    height: 100%;
}

@media (max-width: 768px) {
    #enterprise-shield-container {
        height: 300px;
        margin-top: 30px;
    }
}

/* Support Page Styles */
.support-hero {
    padding-top: 120px;
    padding-bottom: 60px;
    text-align: center;
}

.support-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.support-section {
    margin-bottom: 60px;
}

.support-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--card-shadow);
    backdrop-filter: blur(10px);
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-light);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 0 3px rgba(76, 170, 161, 0.1);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Accordion Styles */
.accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.accordion-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: transparent;
    border: none;
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.05);
}

.accordion-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.3s ease;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background-color: var(--primary);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 2px;
}

.accordion-icon::before {
    width: 16px;
    height: 2px;
}

.accordion-icon::after {
    width: 2px;
    height: 16px;
    transition: height 0.3s ease;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-icon::after {
    height: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    background: rgba(0, 0, 0, 0.1);
}

.accordion-body {
    padding: 20px;
    color: rgba(226, 232, 240, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

/* Contact Info */
.contact-info {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, rgba(76, 170, 161, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-email {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    transition: color 0.3s ease;
}

.contact-email:hover {
    color: var(--accent);
}

/* Entry Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
    will-change: opacity, transform;
}

.fade-in-section.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered delays for child elements if needed */
.delay-100 {
    transition-delay: 100ms;
}

.delay-200 {
    transition-delay: 200ms;
}

.delay-300 {
    transition-delay: 300ms;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    width: 90%;
    max-width: 600px;
    background: rgba(28, 37, 38, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    pointer-events: none;
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.5;
}

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

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 15px;
        width: 95%;
        padding: 15px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-buttons .btn {
        flex: 1;
        justify-content: center;
    }
}

article h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
}

article h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

article p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

article ul,
article ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
    color: rgba(226, 232, 240, 0.8);
}

article li {
    margin-bottom: 0.8rem;
}
/* Works With Section */
.works-with-section {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 600px;
}

.works-with-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(226, 232, 240, 0.5);
    margin-bottom: 1rem;
    font-weight: 600;
}

.works-with-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    align-items: center;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
    cursor: pointer;
}

.logo-item:hover {
    opacity: 1;
    animation: logo-glitch 0.3s cubic-bezier(.25, .46, .45, .94) both infinite;
}

@keyframes logo-glitch {
    0% {
        transform: translate(0);
        filter: drop-shadow(0 0 0 transparent);
    }
    20% {
        transform: translate(-2px, 2px) skewX(1deg);
        filter: drop-shadow(2px 0 0 rgba(255, 0, 0, 0.5));
    }
    40% {
        transform: translate(-2px, -2px) skewX(-1deg);
        filter: drop-shadow(-2px 0 0 rgba(0, 255, 255, 0.5));
    }
    60% {
        transform: translate(2px, 2px) skewX(1deg);
        filter: drop-shadow(2px 0 0 rgba(255, 0, 0, 0.5));
    }
    80% {
        transform: translate(2px, -2px) skewX(-1deg);
        filter: drop-shadow(-2px 0 0 rgba(0, 255, 255, 0.5));
    }
    100% {
        transform: translate(0);
        filter: drop-shadow(0 0 0 transparent);
    }
}

.logo-item img {
    display: block;
    filter: invert(1);
}

.logo-item img.logo-icon {
    height: 24px;
    width: 24px;
}

.logo-item img.logo-text {
    height: 18px;
    width: auto;
    margin-top: 2px;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    color: #E2E8F0;
    line-height: 1;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .works-with-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        border-top: none;
        padding-top: 0;
        margin-top: 2rem;
    }
    
    .works-with-logos {
        justify-content: center;
        gap: 20px;
    }
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: rgba(76, 170, 161, 0.3);
}

.pricing-card.enterprise {
    background: linear-gradient(145deg, rgba(76, 170, 161, 0.05), rgba(28, 37, 38, 0.4));
    border: 1px solid rgba(76, 170, 161, 0.3);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(76, 170, 161, 0.3);
}

.plan-name {
    font-size: 1.5rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price .period {
    font-size: 1rem;
    color: rgba(226, 232, 240, 0.6);
    font-weight: 400;
}

.core-feature {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 0.5rem;
}

.target-audience {
    font-size: 0.9rem;
    color: rgba(226, 232, 240, 0.7);
    margin-bottom: 2rem;
    font-style: italic;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1.5rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(226, 232, 240, 0.9);
}

.pricing-features .check {
    color: var(--primary);
    font-weight: bold;
}

.pricing-features .cross {
    color: #ef4444;
    font-weight: bold;
}

.btn.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}
/* 404 Page Styles */
.error-page {
    background-color: #050505 !important;
}

.error-hero {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    z-index: 1;
}

#stars-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.3;
    animation: twinkle var(--duration) infinite ease-in-out var(--delay);
}

@keyframes twinkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.error-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.error-hero h1 {
    font-size: clamp(6rem, 15vw, 12rem);
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
    letter-spacing: -5px;
    filter: drop-shadow(0 0 30px rgba(76, 170, 161, 0.4));
}

.error-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
    line-height: 1.4;
}

.error-actions {
    display: flex;
    justify-content: center;
}

/* Black Hole Animation */
.black-hole-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    z-index: 0;
    opacity: 0.6;
    pointer-events: none;
}

.black-hole {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-horizon {
    width: 150px;
    height: 150px;
    background: #000;
    border-radius: 50%;
    box-shadow: 0 0 30px #000, 
                0 0 60px rgba(76, 170, 161, 0.4),
                0 0 100px rgba(167, 139, 250, 0.2);
    z-index: 2;
}

.accretion-disk {
    position: absolute;
    width: 100%;
    height: 40px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(76, 170, 161, 0.3) 20%, 
        rgba(244, 114, 182, 0.5) 50%, 
        rgba(76, 170, 161, 0.3) 80%, 
        transparent 100%);
    border-radius: 50%;
    filter: blur(5px);
    animation: rotateDisk 10s linear infinite;
    transform: rotateX(75deg);
    z-index: 1;
}

.accretion-disk::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 10%;
    right: 10%;
    height: 80px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(76, 170, 161, 0.2);
    animation: pulseDisk 4s ease-in-out infinite;
}

@keyframes rotateDisk {
    0% { transform: rotateX(75deg) rotateZ(0deg); }
    100% { transform: rotateX(75deg) rotateZ(360deg); }
}

@keyframes pulseDisk {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.05); }
}

@media (max-width: 768px) {
    .black-hole-wrapper {
        width: 300px;
        height: 300px;
    }
    .event-horizon {
        width: 80px;
        height: 80px;
    }
}
