:root {
    --bg-color: #030303;
    /* Deeper black */
    --text-color: #eef1f5;
    --gold-primary: #D4AF37;
    --gold-accent: #f9d976;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass-bg: rgba(255, 255, 255, 0.01);
    --glass-border: rgba(255, 255, 255, 0.03);
    /* Thinner for layered look */
    --glass-blur: blur(40px);
    --premium-easing: cubic-bezier(0.16, 1, 0.3, 1);
    --transition-pro: 0.8s var(--premium-easing);

    /* Aesthetic 2.0 Depth */
    --glow-soft: rgba(255, 255, 255, 0.03);
    --glow-gold: rgba(212, 175, 55, 0.08);
    --glass-shadow: 0 50px 100px -30px rgba(0, 0, 0, 0.9);
}

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&family=Inter:wght@200;300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: default;
}

body,
html {
    width: 100%;
    min-height: 100%;
    background-color: var(--bg-color);
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    overflow-x: hidden;
    scroll-behavior: initial;
    /* Manual scroll control for pro effects */
}

/* --- Preloader --- */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s var(--premium-easing);
}

.preloader-content {
    text-align: center;
}

.preloader-title {
    font-family: 'Cinzel', serif;
    font-size: 3rem;
    letter-spacing: 1.5em;
    color: #fff;
    margin-bottom: 30px;
    display: block;
    text-align: center;
    width: 100%;
    transform: translateX(0.75em);
    /* Precise half-letter centering */
    animation: pro-shimmer 3s infinite;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-progress {
    width: 100%;
    height: 100%;
    background: var(--gold-primary);
    transform: translateX(-100%);
    animation: progress-slide 2s ease-in-out forwards;
}

@keyframes pro-shimmer {

    0%,
    100% {
        opacity: 0.3;
        filter: blur(2px);
    }

    50% {
        opacity: 1;
        filter: blur(0px);
    }
}

@keyframes progress-slide {
    to {
        transform: translateX(0);
    }
}

#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.5;
    mix-blend-mode: plus-lighter;
}

/* --- Scanline Overlay --- */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(18, 16, 16, 0) 50%, rgba(0, 0, 0, 0.05) 50%), linear-gradient(90deg, rgba(255, 0, 0, 0.01), rgba(0, 255, 0, 0.005), rgba(0, 0, 255, 0.01));
    background-size: 100% 2px, 3px 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.3;
}

/* --- Background Atmosphere --- */
.atmospheric-glow {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--glow-gold) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 1;
    filter: blur(100px);
    opacity: 0.5;
    transition: all 2s ease;
}

.content {
    position: relative;
    z-index: 10;
    opacity: 0;
    transition: opacity 1.5s var(--premium-easing);
}

.content.ready {
    opacity: 1;
}

/* --- Taskbar (Professional Pill) --- */
.taskbar {
    position: fixed;
    top: 32px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    padding: 12px 32px;
    border-radius: 100px;
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 40px;
    box-shadow: var(--glass-shadow);
    transition: all 0.8s var(--premium-easing);
    width: auto;
    max-width: 90vw;
}

.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 1.5rem;
}

.taskbar-logo {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: #fff;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s var(--premium-easing);
    pointer-events: none;
}

.taskbar-logo.active {
    opacity: 1;
    transform: translateX(0);
}

.mobile-close {
    display: none;
    position: absolute;
    top: 30px;
    right: 30px;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .mobile-close {
        display: block;
    }
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: var(--transition-pro);
}

.nav-links a:hover {
    color: #fff;
    transform: translateY(-2px);
}

/* --- Hero & "Project Explode" --- */
.bespoke-hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.title-container {
    text-align: center;
}

.main-title-wrap {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    gap: 0.2em;
    /* Reduced gap */
    margin-bottom: 2rem;
    width: 100%;
    padding: 0 20px;
    /* Safety padding */
    overflow: visible;
    max-width: 100vw;
}

.title-word {
    font-family: 'Cinzel', serif;
    font-size: clamp(2rem, 8vw, 8rem);
    /* Slightly smaller base and mid-scale */
    font-weight: 700;
    letter-spacing: 0.15em;
    /* Reduced from 0.3em for width stability */
    white-space: nowrap;
    /* PREVENT TEXT BREAK */
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 1s var(--premium-easing);
}

/* Cinematic Blur Out */
.project-word.exploded {
    filter: blur(80px);
    /* Deeper blur */
    opacity: 0;
    letter-spacing: 2em;
    transform: translateY(-50px) scale(1.1);
    /* Subtle float instead of drop */
    pointer-events: none;
}

.ragnar-word {
    transition: all 1s var(--premium-easing);
}

.ragnar-word.tracking {
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.618em;
    opacity: 0.3;
    text-transform: uppercase;
}

/* --- Professional Scanner Interface --- */
.hero-main {
    margin-top: 60px;
    width: 100%;
    max-width: 800px;
}

.input-glass {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(40px);
    padding: 8px;
    border-radius: 100px;
    display: flex;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transition: var(--transition-pro);
}

.input-glass:focus-within {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

#url-input {
    background: transparent;
    border: none;
    color: #fff;
    padding: 16px 32px;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 200;
    outline: none;
}

.btn-scan {
    padding: 16px 40px;
    border-radius: 100px;
    background: #fff;
    color: #000;
    border: none;
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    cursor: pointer;
    transition: var(--transition-pro);
}

.btn-scan:hover {
    background: var(--gold-primary);
    transform: scale(1.05);
}

.scanner-viewport {
    margin-top: 50px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 40px;
}

.diagnostic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
}

.diag-item {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(30px);
    padding: 35px;
    border-radius: 20px;
    transition: all 0.5s var(--premium-easing);
    opacity: 0.3;
    margin-bottom: 25px;
    position: relative;
    overflow: hidden;
}

.diag-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05), transparent 60%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.diag-item.active {
    opacity: 1;
    border-color: rgba(212, 175, 55, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), inset 0 0 20px rgba(212, 175, 55, 0.05);
}

.diag-item.active::after {
    opacity: 1;
}

.diag-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 12px;
}

.diag-status {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    margin-bottom: 25px;
    color: var(--gold-primary);
    text-shadow: 0 0 10px var(--gold-glow);
}

.diag-bar-wrap {
    height: 4px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.diag-bar {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-primary), var(--gold-accent));
    box-shadow: 0 0 20px var(--gold-primary);
    transition: width 0.1s linear;
}

/* --- Real-Time Protocol Analysis --- */
.protocol-analysis-wrap {
    margin-top: 20px;
    height: 60px;
    /* Fixed height to prevent layout jumps */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.analyzing-text {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    color: var(--gold-primary);
    animation: pro-blink 1s infinite alternate;
}

.protocol-feedback {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 40px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.5s var(--premium-easing);
    border-left: 4px solid var(--gold-primary);
    min-width: 320px;
    justify-content: flex-start;
}

.protocol-feedback.safe {
    border-left-color: #00ff88;
    background: rgba(0, 255, 136, 0.02);
}

.protocol-feedback.warning {
    border-left-color: #ffcc00;
    background: rgba(255, 204, 0, 0.02);
}

.protocol-feedback.danger {
    border-left-color: #ff4444;
    background: rgba(255, 68, 68, 0.02);
}

.protocol-feedback.invalid {
    border-left-color: #999;
    color: #999;
    background: rgba(255, 255, 255, 0.02);
}

.protocol-icon-pro {
    width: 16px;
    height: 16px;
    stroke: currentColor;
}

@keyframes pro-blink {
    from {
        opacity: 0.2;
    }

    to {
        opacity: 1;
    }
}

/* --- Global Section Settings --- */
.section {
    padding: 80px 4%;
    /* Even tighter */
    min-height: 80vh;
    /* Reduced from 100vh to keep content visible */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10;
    overflow: hidden;
    /* Prevent bleed */
}

.section-bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Cinzel', serif;
    font-size: 15vw;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.02);
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    letter-spacing: 0.2em;
}

.glass-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, transparent 100%);
    backdrop-filter: var(--glass-blur);
    border-radius: 60px;
    padding: 80px 60px;
    /* Reduced from 120px 100px */
    width: 100%;
    max-width: 1300px;
    box-shadow: var(--glass-shadow);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.glass-container::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1.5px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent 50%, rgba(212, 175, 55, 0.05));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.industrial-header {
    font-size: 3.5rem;
    margin-bottom: 5rem;
    color: #fff;
    font-family: 'Cinzel', serif;
    letter-spacing: 0.3em;
    width: 100%;
    text-transform: uppercase;
    position: relative;
}

.industrial-header::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60px;
    height: 1px;
    background: var(--gold-primary);
    box-shadow: 0 0 20px var(--gold-glow);
}

.section:not(.about-section) :is(.industrial-header, .industrial-header::after) {
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
}

.about-section .industrial-header {
    text-align: left;
}

/* --- About Split Layout --- */
.split-layout {
    display: flex;
    align-items: center;
    gap: 120px;
    width: 100%;
}

.split-content {
    flex: 1.2;
    z-index: 2;
}

.split-visual {
    flex: 0.8;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

.visual-orb {
    width: 280px;
    height: 280px;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), transparent);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    backdrop-filter: blur(40px);
    box-shadow:
        0 0 80px rgba(212, 175, 55, 0.1),
        inset 0 0 40px rgba(255, 255, 255, 0.05);
    animation: orb-float 6s ease-in-out infinite;
}

.abstract-grid {
    position: absolute;
    width: 140%;
    height: 140%;
    background-image:
        linear-gradient(var(--glass-border) 1px, transparent 1px),
        linear-gradient(90deg, var(--glass-border) 1px, transparent 1px);
    background-size: 40px 40px;
    transform: rotateX(60deg) rotateZ(45deg);
    opacity: 0.15;
    z-index: -1;
}

/* --- About Features List --- */
.feature-list {
    list-style: none;
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.feature-list .dot {
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* --- Principles Section --- */
/* --- Principles Section --- */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Timeline Line */
.principles-grid::before {
    content: '';
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2) 20%, rgba(212, 175, 55, 0.2) 80%, transparent);
    z-index: -1;
}

.principle-item {
    display: flex;
    flex-direction: column;
    gap: 24px;
    text-align: left;
    position: relative;
    padding: 40px;
    background: rgba(255, 255, 255, 0.015);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition-pro);
}

.principle-item:hover {
    background: rgba(255, 255, 255, 0.03);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(212, 175, 55, 0.3);
}

.principle-num {
    font-family: 'Cinzel', serif;
    font-size: 1.2rem;
    color: var(--gold-primary);
    opacity: 0.5;
    letter-spacing: 0.2em;
}

.principle-content h4 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
    color: #fff;
}

.principle-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.5);
}

.pro-illustration {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(212, 175, 55, 0.2)) brightness(0.8);
    z-index: 1;
    animation: float-pro 10s ease-in-out infinite;
}

.orb-img {
    width: 120%;
    height: 120%;
}

@keyframes float-pro {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(10px, -20px) scale(1.02);
    }
}

@keyframes orb-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* --- Security Section --- */
.security-pro-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    width: 100%;
    align-items: stretch;
    /* Cards same height */
}

.pro-card {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    /* Reduced padding */
    border-radius: 40px;
    transition: var(--transition-pro);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    position: relative;
    overflow: hidden;
    height: 100%;
    /* Ensure uniform height in grid */
}

.pro-card:hover {
    background: rgba(212, 175, 55, 0.02);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.pro-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent, rgba(212, 175, 55, 0.02), transparent);
    transform: translateX(-100%);
    transition: transform 1s var(--premium-easing);
}

.pro-card:hover::after {
    transform: translateX(100%);
}

.pro-icon-wrap {
    width: 64px;
    height: 64px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.2));
    margin-bottom: 10px;
}

.pro-icon-wrap svg {
    width: 100%;
    height: 100%;
    stroke-width: 1.5;
}

.pro-card:hover {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-10px);
}

.pro-icon {
    font-size: 2.5rem;
    opacity: 0.8;
}

/* --- Contact Section --- */
.pro-form {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.form-row {
    display: flex;
    gap: 32px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: left;
}

.input-group label {
    font-family: 'Cinzel', serif;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    opacity: 0.4;
    text-transform: uppercase;
}

.pro-input {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 18px 24px;
    border-radius: 12px;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    transition: var(--transition-pro);
    width: 100%;
}

.pro-input:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.05);
}

.btn-scan {
    padding: 16px 60px;
    background: var(--gold-primary);
    border: none;
    border-radius: 100px;
    color: #000;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    cursor: pointer;
    transition: all 0.5s var(--premium-easing);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.2);
}

.btn-scan:hover {
    transform: translateY(-5px) scale(1.05);
    background: #fff;
    box-shadow: 0 20px 60px rgba(255, 255, 255, 0.2);
}

.btn-scan:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #333;
    color: #888;
}

.pro-btn {
    padding: 22px 60px;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 100px;
    font-family: 'Cinzel', serif;
    font-weight: 700;
    letter-spacing: 0.3em;
    cursor: pointer;
    transition: var(--transition-pro);
    align-self: center;
    text-transform: uppercase;
}

.pro-btn:hover {
    background: var(--gold-primary);
    transform: scale(1.05);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

/* --- Donate Section --- */
.industrial-donate-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.01) 0%, rgba(0, 0, 0, 0.4) 100%);
    backdrop-filter: var(--glass-blur);
    border: 1px solid rgba(212, 175, 55, 0.1);
    padding: 100px 80px;
    border-radius: 60px;
    text-align: center;
    width: 100%;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.industrial-donate-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 60px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), transparent, rgba(212, 175, 55, 0.1));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.donate-header {
    margin-bottom: 50px;
}

.pix-visual {
    width: 120px;
    height: 120px;
    margin: 0 auto 40px;
    background: rgba(212, 175, 55, 0.03);
    border: 1px dashed var(--gold-primary);
    border-radius: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    opacity: 0.6;
}

.btn-whatsapp-pro {
    display: inline-block;
    padding: 22px 50px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    border-radius: 100px;
    font-weight: 700;
    letter-spacing: 0.15em;
    transition: var(--transition-pro);
}

.btn-whatsapp-pro:hover {
    box-shadow: 0 0 40px rgba(37, 211, 102, 0.3);
}

/* --- Pro Verdict Color States --- */
.pro-verdict {
    margin-top: 40px;
    padding: 40px;
    border-radius: 24px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid var(--glass-border);
    transition: all 0.5s var(--premium-easing);
    text-align: center;
}

.pro-verdict.safe {
    border-color: #00ff00;
    box-shadow: 0 0 30px rgba(0, 255, 0, 0.1);
}

.pro-verdict.warning {
    border-color: #ffaa00;
    box-shadow: 0 0 30px rgba(255, 170, 0, 0.1);
}

.pro-verdict.danger {
    border-color: #ff3333;
    box-shadow: 0 0 30px rgba(255, 51, 51, 0.1);
}

.verdict-title {
    font-family: 'Cinzel', serif;
    font-size: 1.5rem;
    letter-spacing: 0.3em;
    margin-bottom: 20px;
}

.verdict-message {
    font-size: 0.9rem;
    opacity: 0.6;
}

.tip-badge {
    background: rgba(255, 255, 255, 0.05);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

/* --- Footer --- */
footer {
    padding: 100px 10% 60px;
    border-top: 1px solid var(--glass-border);
    width: 100%;
}

.footer-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    opacity: 0.3;
}

.copyright {
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.footer-credit {
    font-family: 'Cinzel', serif;
    font-size: 0.6rem;
    letter-spacing: 0.5em;
    text-transform: uppercase;
}

/* --- Reveal System --- */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1.2s var(--premium-easing);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hidden {
    display: none !important;
}

/* --- Responsive Overhaul 2.0 --- */
/* --- Responsive Architecture 3.0 --- */
@media (max-width: 1024px) {
    .taskbar {
        width: 100%;
        max-width: 95vw;
        top: 15px;
        padding: 10px 20px;
        border-radius: 15px;
        justify-content: space-between;
        gap: 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 100%;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(30px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transform: translateX(100%);
        transition: transform 0.6s var(--premium-easing);
        z-index: 3000;
        display: flex;
        /* Override previous display:none */
    }

    .nav-links.mobile-active {
        transform: translateX(0);
    }

    .nav-links li a {
        font-size: 1.5rem;
        color: #fff;
    }

    .mobile-toggle {
        display: flex;
        order: 3;
        z-index: 2001;
        /* Keep z-index from original */
    }

    .taskbar-logo {
        opacity: 1;
        transform: none;
        order: 1;
        font-size: 1.1rem;
        /* Keep font-size from original */
    }

    .lang-selector {
        order: 2;
    }

    .main-title-wrap {
        gap: 0.1em;
        padding: 0 10px;
    }

    .title-word {
        font-size: clamp(1.5rem, 12vw, 5rem);
        letter-spacing: 0.05em;
    }

    .glass-container {
        padding: 40px 20px;
        margin: 0 10px;
        border-radius: 20px;
    }

    .principles-grid,
    .security-pro-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .section-bg-title {
        display: none;
        /* Cleaner mobile */
    }

    .donation-toast {
        min-width: 90vw;
    }
}

@media (max-width: 480px) {
    .title-word {
        font-size: 15vw;
    }

    .protocol-feedback {
        min-width: 100%;
        padding: 15px;
        flex-direction: column;
        text-align: center;
    }

    .diag-item {
        padding: 20px;
    }
}

/* --- Donation Toasts --- */
#notification-container {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
    width: 100%;
}

.donation-toast {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 15px 30px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    margin-top: 10px;
    opacity: 0;
    transform: translateY(20px) scale(0.9);
    transition: all 0.6s var(--premium-easing);
    min-width: 320px;
}

.donation-toast.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.toast-icon-wrap {
    width: 32px;
    height: 32px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold-primary);
}

.toast-icon-wrap svg {
    width: 16px;
    height: 16px;
}

.toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-user {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #fff;
}

.toast-msg {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

.toast-msg strong {
    color: var(--gold-primary);
}

@media (max-width: 768px) {
    .donation-toast {
        min-width: 280px;
        padding: 12px 20px;
    }
}

/* --- Mobile Gate --- */
#mobile-gate {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: 20000;
    display: none;
    /* Desktop hidden */
    justify-content: center;
    align-items: center;
    text-align: center;
}

@media (max-width: 1024px) {
    #mobile-gate {
        display: flex;
    }

    body {
        overflow: hidden !important;
    }
}