* {
    box-sizing: border-box;
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

body {
    margin: 0;
    background-color: #0f172a;
    color: #e5e7eb;
}

.container {
    max-width: 1100px;
    margin: auto;
    padding: 40px 20px;
}

.card {
    background-color: #020617;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

h1, h2 {
    color: #f8fafc;
    margin-bottom: 20px;
}

.subtitle {
    color: #94a3b8;
    margin-bottom: 30px;
}

form {
    display: flex;
    gap: 15px;
}

input[type="text"] {
    flex: 1;
    padding: 14px;
    border-radius: 6px;
    border: none;
    outline: none;
    background-color: #020617;
    color: #f8fafc;
    border: 1px solid #334155;
}

input::placeholder {
    color: #64748b;
}

button {
    padding: 14px 24px;
    background-color: #2563eb;
    border: none;
    border-radius: 6px;
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
}

button:hover {
    background-color: #1d4ed8;
}

.warning {
    margin-top: 20px;
    color: #fca5a5;
    font-size: 14px;
}

.table-container {
    overflow-x: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 25px;
}

th, td {
    padding: 14px;
    text-align: left;
}

th {
    background-color: #020617;
    color: #93c5fd;
    border-bottom: 2px solid #334155;
}

tr {
    border-bottom: 1px solid #1e293b;
}

tr:hover {
    background-color: #020617;
}

.badge {
    padding: 6px 10px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
}

.low {
    background-color: #064e3b;
    color: #6ee7b7;
}

.medium {
    background-color: #78350f;
    color: #fde68a;
}

.high {
    background-color: #7f1d1d;
    color: #fecaca;
}

.footer-link {
    margin-top: 25px;
    display: inline-block;
    color: #93c5fd;
    text-decoration: none;
}

.footer-link:hover {
    text-decoration: underline;
}
.hero {
    min-height: 100vh;
    background: radial-gradient(circle at top, #1e293b, #020617);
    padding: 30px 60px;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
}

.nav-btn {
    padding: 10px 18px;
    border-radius: 6px;
    background-color: #2563eb;
    color: white;
    text-decoration: none;
    font-weight: 600;
}

.nav-btn:hover {
    background-color: #1d4ed8;
}

.hero-content {
    max-width: 700px;
    margin-top: 120px;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    color: #cbd5f5;
    font-size: 18px;
    margin-bottom: 35px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

.primary-btn {
    padding: 14px 26px;
    background-color: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.primary-btn:hover {
    background-color: #1d4ed8;
}

.secondary-btn {
    padding: 14px 26px;
    border: 1px solid #334155;
    color: #e5e7eb;
    border-radius: 8px;
    text-decoration: none;
}

.secondary-btn:hover {
    background-color: #020617;
}

.features {
    background-color: #020617;
    padding: 80px 60px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 30px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: #93c5fd;
}

.feature-card p {
    color: #cbd5f5;
    font-size: 15px;
}

.footer {
    background-color: #020617;
    text-align: center;
    padding: 25px;
    color: #64748b;
    font-size: 14px;
}
/* ===== Loading Overlay (MetaMask-style) ===== */

#loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.92);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-box {
    text-align: center;
    padding: 40px;
    border-radius: 16px;
    background: linear-gradient(145deg, #020617, #020617);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.25);
    animation: fadeIn 0.4s ease;
}

.loader-box p {
    margin-top: 25px;
    font-size: 18px;
    color: #e5e7eb;
}

.loader-box span {
    display: block;
    margin-top: 8px;
    font-size: 14px;
    color: #94a3b8;
}

/* Spinner */
.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid #1e293b;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: auto;
}

/* Animations */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
/* ===== Product Page (MetaMask-style) ===== */

.prod-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 60px;
    background-color: #020617;
}

.prod-logo {
    font-size: 22px;
    font-weight: 700;
    color: #f8fafc;
}

.prod-btn {
    padding: 10px 18px;
    background-color: #2563eb;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

.prod-hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    padding: 100px 60px;
    background: radial-gradient(circle at top left, #1e293b, #020617);
}

.prod-text h1 {
    font-size: 48px;
    margin-bottom: 24px;
}

.prod-text p {
    font-size: 18px;
    color: #cbd5f5;
    max-width: 520px;
    margin-bottom: 36px;
}

.prod-primary {
    padding: 14px 28px;
    background-color: #2563eb;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
}

.prod-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-orb {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #2563eb, #020617);
    box-shadow: 0 0 120px rgba(37, 99, 235, 0.45);
    animation: float 6s ease-in-out infinite;
}

.prod-features {
    padding: 90px 60px;
    background-color: #020617;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.prod-card {
    border: 1px solid #1e293b;
    border-radius: 16px;
    padding: 35px;
}

.prod-card h3 {
    color: #93c5fd;
    margin-bottom: 14px;
}

.prod-card p {
    color: #cbd5f5;
    font-size: 15px;
}

.prod-trust {
    text-align: center;
    padding: 80px 40px;
    background-color: #020617;
}

.prod-footer {
    text-align: center;
    padding: 30px;
    color: #64748b;
    background-color: #020617;
}
/* Loader Overlay */

#loader-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.loader-box {
    text-align: center;
    color: #e5e7eb;
}

.spinner {
    width: 64px;
    height: 64px;
    border: 4px solid #1e293b;
    border-top: 4px solid #2563eb;
    border-radius: 50%;
    margin: 0 auto 20px;
    animation: spin 1s linear infinite;
}

.loader-box p {
    font-size: 18px;
    margin-bottom: 8px;
}

.loader-box span {
    font-size: 14px;
    color: #94a3b8;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
/* ===== Product Page — Modern Enterprise Style ===== */

.prod-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background: #020617;
}

.prod-logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.prod-menu a {
    margin: 0 15px;
    color: #cbd5f5;
    text-decoration: none;
    font-weight: 500;
}

.prod-menu a:hover {
    color: #fff;
}

.prod-btn {
    padding: 10px 20px;
    background: #2563eb;
    color: #fff;
    border-radius: 6px;
    font-weight: 600;
}

.prod-hero {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    padding: 100px 60px;
    background: radial-gradient(circle at top left, #1e293b, #020617);
    align-items: center;
    position: relative; /* needed for orb container positioning */
    overflow: hidden;
    z-index: 1;
}

.prod-content {
    position: relative;
    z-index: 2;
}

.prod-content p {
    font-size: 18px;
    color: #cbd5f5;
    margin-bottom: 30px;
}

.prod-primary-btn {
    padding: 14px 30px;
    background: #2563eb;
    color: #fff;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    margin-right: 15px;
}

.prod-secondary-btn {
    padding: 14px 30px;
    border: 2px solid #334155;
    color: #cbd5f5;
    border-radius: 8px;
    text-decoration: none;
}

.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.prod-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 25px;
    color: #cbd5f5;
}

.prod-card h3 {
    color: #93c5fd;
    margin-bottom: 12px;
}

.prod-section {
    padding: 80px 60px;
}

.prod-alt-section {
    background: #0f172a;
}

.prod-step h4 {
    color: #fff;
    margin-bottom: 8px;
}

.prod-highlight {
    text-align: center;
    font-size: 20px;
    color: #fff;
    margin: 20px 0;
}

.large-btn {
    display: inline-block;
    padding: 16px 40px;
    font-size: 20px;
}

.prod-footer {
    text-align: center;
    padding: 25px;
    color: #64748b;
    background: #020617;
}
/* ===== Animations ===== */
.animate { 
    opacity: 0; 
    transform: translateY(20px); 
    transition: all 0.8s ease-out; 
}

.prod-hero-img.float .prod-orb {
    animation: float 6s ease-in-out infinite;
}

/* Float animation for orb */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Icons */
.prod-icon {
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 12px;
}

/* Grid & Layout */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 1024px) {
    .prod-hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 80px 30px;
    }

    .prod-hero-img {
        margin-top: 30px;
    }

    .prod-menu {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 10px;
    }

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

@media (max-width: 600px) {
    .prod-content h1 { font-size: 32px; }
    .prod-content p { font-size: 16px; }
    .prod-primary-btn, .prod-secondary-btn, .large-btn {
        width: 100%;
        margin: 10px 0;
        text-align: center;
    }
}
/* ===== Hover Effects & Glow ===== */

/* Card Hover */
.prod-card {
    background: #020617;
    border: 1px solid #1e293b;
    border-radius: 12px;
    padding: 25px;
    color: #cbd5f5;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.prod-card:hover {
    border-color: #2563eb;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.25);
    transform: translateY(-5px);
}

/* Orb Glow on hover */
.prod-hero-img:hover .prod-orb {
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.6), 0 0 120px rgba(37, 99, 235, 0.4);
    transform: scale(1.05);
    transition: all 0.6s ease-in-out;
}

/* Primary Buttons Hover */
.prod-primary-btn:hover, .large-btn:hover {
    background-color: #1e40af;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
    transform: translateY(-2px);
}

/* Secondary Buttons Hover */
.prod-secondary-btn:hover {
    background-color: #1e293b;
    border-color: #2563eb;
    color: #2563eb;
}

/* Orb Glow Continuous Animation */
.prod-orb {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, #2563eb, #020617);
    box-shadow: 0 0 60px rgba(37, 99, 235, 0.25), 0 0 120px rgba(37, 99, 235, 0.1);
    transition: all 0.5s ease-in-out;
}

/* Feature Icons Hover Glow */
.prod-icon {
    transition: transform 0.3s ease-in-out, color 0.3s ease-in-out;
}

.prod-card:hover .prod-icon {
    color: #60a5fa;
    transform: scale(1.2);
}

/* Smooth section fade-in (for IntersectionObserver animation) */
.animate {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.animate.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Hero Orbs Container */
.prod-hero-orbs {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Common orb style */
.prod-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.6), rgba(2, 6, 23, 0.1));
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.3), 0 0 80px rgba(37, 99, 235, 0.15);
    width: 120px;
    height: 120px;
    animation: floatOrbs linear infinite;
}

/* Individual orb positions & speeds */
.orb-1 { top: 20%; left: 10%; animation-duration: 12s; }
.orb-2 { top: 50%; left: 80%; animation-duration: 16s; }
.orb-3 { top: 70%; left: 30%; animation-duration: 20s; }
.orb-4 { top: 10%; left: 60%; animation-duration: 18s; }

/* Floating animation (up-down & slight sway) */
@keyframes floatOrbs {
    0% { transform: translateY(0) translateX(0); }
    25% { transform: translateY(-20px) translateX(10px); }
    50% { transform: translateY(0) translateX(0); }
    75% { transform: translateY(20px) translateX(-10px); }
    100% { transform: translateY(0) translateX(0); }
}
.prod-hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
    animation: rotateBG 60s linear infinite;
    top: -50%;
    left: -50%;
    z-index: 0;
}

@keyframes rotateBG {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.prod-hero::after {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.05), transparent 70%);
    animation: rotateBG 60s linear infinite;
    top: -50%;
    left: -50%;
    z-index: 0;
}

@keyframes rotateBG {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
/* Card Sparkle Glow on Hover */
.prod-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(37,99,235,0.1), transparent 70%);
    opacity: 0;
    transition: all 0.4s ease-in-out;
    border-radius: 50%;
    pointer-events: none;
}

.prod-card:hover::after {
    opacity: 1;
    transform: scale(1.05);
}
.prod-hero-orbs:hover .prod-orb {
    filter: drop-shadow(0 0 50px rgba(37,99,235,0.6));
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}
.prod-card, .prod-icon, .prod-primary-btn, .large-btn, .prod-secondary-btn, .prod-orb {
    transition: all 0.3s ease-in-out;
}
/* How It Works Step Animation */
.animate-step {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-step.visible {
    opacity: 1;
    transform: translateY(0);
}
.prod-step:nth-child(1) { transition-delay: 0.1s; }
.prod-step:nth-child(2) { transition-delay: 0.3s; }
.prod-step:nth-child(3) { transition-delay: 0.5s; }
/* Step Icon Animation */
.prod-step i {
    font-size: 36px;
    color: #2563eb;
    margin-bottom: 12px;
    display: inline-block;
    transition: transform 0.4s ease, color 0.4s ease;
}

/* Hover Effect */
.prod-step:hover i {
    transform: scale(1.2) rotate(-5deg);
    color: #60a5fa;
}

/* Scroll-triggered bounce */
.animate-step.visible i {
    animation: bounceIcon 0.6s ease forwards;
}

/* Bounce Keyframes */
@keyframes bounceIcon {
    0% { transform: translateY(0) scale(1); }
    30% { transform: translateY(-8px) scale(1.1); }
    50% { transform: translateY(0) scale(1); }
    70% { transform: translateY(-4px) scale(1.05); }
    100% { transform: translateY(0) scale(1); }
}
/* Navigation Menu Links */
.prod-menu a {
    position: relative;
    color: #cbd5f5;
    text-decoration: none;
    margin: 0 15px;
    padding: 5px 0;
    font-weight: 500;
    transition: color 0.3s ease-in-out;
}

/* Hover Color */
.prod-menu a:hover {
    color: #60a5fa;
}

/* Animated Underline */
.prod-menu a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #2563eb;
    transition: width 0.4s ease-in-out;
}

.prod-menu a:hover::after {
    width: 100%;
}

/* Optional: Active Section Highlight */
.prod-menu a.active::after {
    width: 100%;
}
.prod-card ul {
    list-style: none;
    padding: 0;
    margin: 15px 0;
}

.prod-card ul li {
    padding: 6px 0;
    border-bottom: 1px solid #1e293b;
    font-size: 15px;
}

.prod-card .price {
    font-size: 24px;
    font-weight: bold;
    color: #2563eb;
    margin: 12px 0;
}

.prod-card a.prod-primary-btn {
    display: inline-block;
    margin-top: 15px;
    text-align: center;
    width: 100%;
}
.contact-form {
    max-width: 500px;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    padding: 14px;
    border-radius: 8px;
    border: 1px solid #1e293b;
    background: #020617;
    color: #fff;
}

.contact-form button {
    margin-top: 10px;
}
.sidebar{
width:220px;
position:fixed;
top:0;
bottom:0;
background:#020617;
padding:20px;
border-right:1px solid #1e293b;
}

.sidebar a{
display:block;
padding:10px;
margin:8px 0;
color:white;
text-decoration:none;
}
.hero-stats{
display:flex;
gap:40px;
margin-top:30px;
}

.hero-stats div{
text-align:center;
}

.trust-bar{
text-align:center;
padding:30px;
background:#020617;
border-top:1px solid #1e293b;
border-bottom:1px solid #1e293b;
}

.trust-logos span{
margin:0 20px;
opacity:.7;
}

.enterprise-grid{
display:grid;
grid-template-columns:1fr 1fr;
gap:30px;
}

.enterprise-item{
background:#020617;
padding:25px;
border:1px solid #1e293b;
border-radius:12px;
}

.testimonial{
text-align:center;
padding:80px 20px;
font-size:20px;
opacity:.9;
}

.final-cta{
text-align:center;
padding:80px 20px;
background:#020617;
}

.footer-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
max-width:900px;
margin:auto;
}

.featured{
border:2px solid #2563eb;
transform:scale(1.05);
}
/* =========================================================
   SAFEWEB GLASSMORPHISM VISUAL UPGRADE
   ========================================================= */

/* Smooth rendering */
body{
    background:
        radial-gradient(circle at 20% 20%, rgba(37,99,235,0.12), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,0.08), transparent 40%),
        #020617;
}

/* ---------- NAVBAR GLASS ---------- */
.prod-nav{
    background: rgba(2,6,23,0.55);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(148,163,184,0.15);
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}

/* subtle glow on logo */
.prod-logo{
    background: linear-gradient(90deg,#60a5fa,#2563eb);
    -webkit-background-clip:text;
    color:transparent;
}

/* ---------- HERO GLASS DEPTH ---------- */
.prod-hero{
    background:
        radial-gradient(circle at 30% 10%, rgba(59,130,246,0.15), transparent 40%),
        radial-gradient(circle at 80% 90%, rgba(37,99,235,0.12), transparent 40%),
        #020617;
}

/* glass content panel effect */


/* premium headline glow */
.prod-content h1{
    font-size: 52px;
    line-height: 1.1;
    background: linear-gradient(90deg,#ffffff,#93c5fd);
    -webkit-background-clip:text;
    color:transparent;
}

/* ---------- BUTTON PREMIUM ---------- */
.prod-primary-btn{
    background: linear-gradient(135deg,#2563eb,#1d4ed8);
    box-shadow:
        0 10px 25px rgba(37,99,235,0.35),
        inset 0 0 12px rgba(255,255,255,0.08);
}

.prod-primary-btn:hover{
    transform: translateY(-3px);
    box-shadow:
        0 20px 45px rgba(37,99,235,0.55),
        inset 0 0 18px rgba(255,255,255,0.1);
}

/* ---------- GLASS CARDS ---------- */
.prod-card{
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(148,163,184,0.15);
    box-shadow:
        0 20px 50px rgba(0,0,0,0.5),
        inset 0 0 25px rgba(255,255,255,0.02);
}

/* hover light sweep */
.prod-card::before{
    content:'';
    position:absolute;
    top:0;
    left:-100%;
    width:100%;
    height:100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,0.08),
        transparent
    );
    transition:0.6s;
}

.prod-card:hover::before{
    left:100%;
}

/* stronger floating feel */
.prod-card:hover{
    transform: translateY(-8px) scale(1.02);
}

/* ---------- ICON GLOW ---------- */
.prod-icon{
    text-shadow: 0 0 20px rgba(37,99,235,0.6);
}

/* ---------- SECTION SURFACE ---------- */
.prod-section{
    background:
        linear-gradient(
            to bottom,
            rgba(255,255,255,0.02),
            rgba(255,255,255,0.01)
        );
}

/* ---------- GLASS PRICING CARDS ---------- */
.prod-card .price{
    text-shadow: 0 0 20px rgba(37,99,235,0.5);
}

/* ---------- FLOATING ORB REAL LIGHT ---------- */
.prod-orb{
    filter: blur(1px);
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.6), transparent 40%),
        radial-gradient(circle, rgba(37,99,235,0.9), rgba(2,6,23,0.2));
}

/* light reflection when orb crosses glass */
.prod-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            120deg,
            transparent,
            rgba(255,255,255,0.04),
            transparent
        );
    pointer-events:none;
}

/* ---------- FOOTER GLASS ---------- */
.prod-footer{
    background: rgba(2,6,23,0.7);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(148,163,184,0.1);
}

/* ---------- SMOOTH SCROLL FEEL ---------- */
html{
    scroll-behavior:smooth;
}
/* =====================================================
   LEVEL 2 CYBER HERO ENVIRONMENT
   ===================================================== */

.prod-hero{
    position:relative;
    overflow:hidden;
    background:#020617;
}

/* glowing atmosphere layers */
.prod-hero::before{
    content:'';
    position:absolute;
    inset:0;
    background:
        radial-gradient(circle at 20% 30%, rgba(37,99,235,0.25), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(59,130,246,0.18), transparent 40%);
    animation: heroBreath 8s ease-in-out infinite;
}

@keyframes heroBreath{
    0%,100%{opacity:.6}
    50%{opacity:1}
}

/* CYBER GRID FLOOR */
.prod-hero::after{
    content:'';
    position:absolute;
    bottom:-200px;
    left:-50%;
    width:200%;
    height:400px;
    background-image:
        linear-gradient(rgba(37,99,235,0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.2) 1px, transparent 1px);
    background-size:60px 60px;
    transform: perspective(600px) rotateX(70deg);
    animation: gridMove 15s linear infinite;
}

@keyframes gridMove{
    from{ background-position:0 0 }
    to{ background-position:0 60px }
}
.cyber-particles{
    position:absolute;
    inset:0;
    pointer-events:none;
    background-image:
        radial-gradient(2px 2px at 20% 30%, #60a5fa, transparent),
        radial-gradient(2px 2px at 70% 60%, #3b82f6, transparent),
        radial-gradient(2px 2px at 40% 80%, #2563eb, transparent);
    animation: particlesMove 20s linear infinite;
    opacity:.4;
}

@keyframes particlesMove{
    from{ transform:translateY(0) }
    to{ transform:translateY(-200px) }
}
.prod-hero .scan-light{
    position:absolute;
    inset:0;
    background: linear-gradient(
        120deg,
        transparent 40%,
        rgba(59,130,246,0.15),
        transparent 60%
    );
    animation: scanSweep 6s linear infinite;
    pointer-events:none;
}

@keyframes scanSweep{
    from{ transform:translateX(-100%) }
    to{ transform:translateX(100%) }
}
.shield3d{
    position:absolute;
    right:12%;
    top:45%;
    font-size:120px;
    color:#60a5fa;
    opacity:.25;
    animation: shieldFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(37,99,235,.6));
}

@keyframes shieldFloat{
    0%,100%{ transform:translateY(0) rotateY(0deg)}
    50%{ transform:translateY(-25px) rotateY(20deg)}
}
.prod-content{
    position:relative;
    z-index:5;
    max-width:650px;
}

.prod-content h1{
    font-size:60px;
    line-height:1.05;
    background:linear-gradient(90deg,#fff,#93c5fd);
    -webkit-background-clip:text;
    color:transparent;
    text-shadow:0 0 40px rgba(37,99,235,.35);
}

.prod-content p{
    font-size:20px;
    color:#cbd5f5;
    opacity:.9;
}
.radar-scan{
    position:absolute;
    width:600px;
    height:600px;
    border-radius:50%;
    border:1px solid rgba(37,99,235,.25);
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    animation: radarRotate 8s linear infinite;
    pointer-events:none;
}

.radar-scan::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:50%;
    background:conic-gradient(
        transparent 0deg,
        rgba(59,130,246,.25) 20deg,
        transparent 60deg
    );
}

@keyframes radarRotate{
    from{ transform:translate(-50%,-50%) rotate(0deg); }
    to{ transform:translate(-50%,-50%) rotate(360deg); }
}
.holo-rings span{
    position:absolute;
    top:50%;
    left:50%;
    border-radius:50%;
    border:1px solid rgba(59,130,246,.3);
    transform:translate(-50%,-50%);
    animation: ringPulse 6s ease-in-out infinite;
}

.holo-rings span:nth-child(1){ width:300px;height:300px; }
.holo-rings span:nth-child(2){ width:450px;height:450px; animation-delay:1s;}
.holo-rings span:nth-child(3){ width:600px;height:600px; animation-delay:2s;}

@keyframes ringPulse{
    0%,100%{opacity:.4; transform:translate(-50%,-50%) scale(1)}
    50%{opacity:1; transform:translate(-50%,-50%) scale(1.05)}
}
.dashboard-pulse{
    position:absolute;
    right:8%;
    bottom:20%;
    width:300px;
    height:180px;
    border-radius:18px;
    background:linear-gradient(135deg,#020617,#0f172a);
    box-shadow:
        0 0 40px rgba(37,99,235,.25),
        inset 0 0 40px rgba(37,99,235,.15);
    animation: dashboardGlow 4s ease-in-out infinite;
}

@keyframes dashboardGlow{
    0%,100%{ box-shadow:0 0 40px rgba(37,99,235,.2)}
    50%{ box-shadow:0 0 80px rgba(37,99,235,.5)}
}
.live-counter{
    position:absolute;
    bottom:12%;
    left:8%;
    background:rgba(2,6,23,.7);
    backdrop-filter:blur(14px);
    border:1px solid rgba(37,99,235,.3);
    padding:18px 26px;
    border-radius:14px;
    box-shadow:0 0 30px rgba(37,99,235,.25);
}

.live-counter strong{
    display:block;
    font-size:32px;
    color:#60a5fa;
}

.live-counter span{
    font-size:13px;
    color:#94a3b8;
}
.center-title{
    text-align:center;
    margin-bottom:40px;
}

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

.benefit{
    padding:30px;
    border-radius:16px;
    background:rgba(255,255,255,0.02);
    backdrop-filter:blur(10px);
    border:1px solid rgba(37,99,235,.2);
    transition:.3s;
}

.benefit:hover{
    transform:translateY(-6px);
    box-shadow:0 0 40px rgba(37,99,235,.3);
}

.benefit i{
    font-size:28px;
    color:#60a5fa;
    margin-bottom:12px;
}

.cta-block{
    text-align:center;
    margin-top:70px;
}
/* ===== GLASS ENTERPRISE NAVBAR ===== */

.glass-nav{
    position:fixed;
    top:20px;
    left:50%;
    transform:translateX(-50%);
    width:92%;
    max-width:1200px;
    padding:14px 26px;
    display:flex;
    justify-content:space-between;
    align-items:center;

    border-radius:16px;
    background:rgba(2,6,23,.55);
    backdrop-filter:blur(18px);
    border:1px solid rgba(59,130,246,.2);

    box-shadow:
        0 10px 40px rgba(0,0,0,.6),
        inset 0 0 40px rgba(59,130,246,.08);

    z-index:1000;
    transition:all .35s ease;
}
.prod-logo{
    font-size:20px;
    font-weight:700;
    letter-spacing:.5px;
    color:#fff;
}
.prod-menu{
    display:flex;
    gap:28px;
}

.prod-menu a{
    position:relative;
    color:#cbd5f5;
    text-decoration:none;
    font-size:14px;
    font-weight:500;
    transition:.3s;
}

/* hover glow */
.prod-menu a:hover{
    color:#60a5fa;
}

/* animated underline */
.prod-menu a::after{
    content:'';
    position:absolute;
    bottom:-6px;
    left:0;
    width:0%;
    height:2px;
    background:linear-gradient(90deg,#2563eb,#60a5fa);
    transition:.35s;
}

.prod-menu a:hover::after{
    width:100%;
}
.nav-right{
    display:flex;
    align-items:center;
    gap:16px;
}

/* sign in */
.nav-login{
    color:#cbd5f5;
    text-decoration:none;
    font-size:14px;
    transition:.3s;
}

.nav-login:hover{
    color:#60a5fa;
}
.nav-cta{
    padding:10px 20px;
    border-radius:10px;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:white;
    font-weight:600;
    text-decoration:none;

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

    transition:.3s;
}

.nav-cta:hover{
    transform:translateY(-2px);
    box-shadow:
        0 12px 30px rgba(37,99,235,.55);
}