/* --- BASE & FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700;900&family=Playfair+Display:ital,wght@0,400;0,600;1,400&display=swap');

body {
    font-family: 'Playfair Display', serif;
    background-color: #050505;
    color: #F5E6D3;
    overflow-x: hidden;
}

/* --- LEATHER & TEXTURES --- */
.bg-leather {
    background-color: #2C1B18;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.08'/%3E%3C/svg%3E"),
                      linear-gradient(to bottom right, #2C1B18, #1a0f0d);
    box-shadow: inset 0 0 80px rgba(0,0,0,0.9);
}

.bg-black-matte {
    background: linear-gradient(145deg, #1a1a1a, #0d0d0d);
    box-shadow:  20px 20px 60px #050505, -20px -20px 60px #1a1a1a;
}

/* --- TYPOGRAPHY & EFFECTS --- */
.font-display { font-family: 'Cinzel', serif; }

.text-gold-gradient {
    background: linear-gradient(to bottom, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.3);
}

/* --- COMPONENTS --- */
.gold-border-frame {
    border: 1px solid #D4AF37;
    position: relative;
    background: rgba(10, 5, 3, 0.8);
}

/* The Monogram Logo */
.logo-box {
    border: 2px solid #D4AF37;
    padding: 5px 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.logo-box:hover {
    background: rgba(212, 175, 55, 0.1);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* Pricing Cards */
.pricing-card {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}
.pricing-card:hover {
    transform: translateY(-15px);
}
.pricing-card.sovereign {
    background: #000;
    border: 1px solid #333;
    background-image: linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111),
    linear-gradient(45deg, #111 25%, transparent 25%, transparent 75%, #111 75%, #111);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
}

/* Inputs */
.input-lux {
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid #4A2F28;
    color: #D4AF37;
    transition: all 0.3s;
}
.input-lux:focus {
    background: rgba(212, 175, 55, 0.05);
    border-bottom: 1px solid #D4AF37;
    outline: none;
}

/* Full Screen Loading Overlay */
#encryption-overlay {
    backdrop-filter: blur(10px);
}
.scanner-line {
    width: 100%;
    height: 2px;
    background: #D4AF37;
    box-shadow: 0 0 10px #D4AF37;
    animation: scan 2s linear infinite;
}
@keyframes scan {
    0% { transform: translateY(-50vh); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateY(50vh); opacity: 0; }
}