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

html {
    scroll-behavior: smooth;
}

html, body {
    width: 100vw;
    min-height: 100vh;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1210 50%, #0f0f0f 100%);
    color: #ffffff;
    font-family: 'Georgia', 'Times New Roman', serif;
}

/* Golden ambient background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(184, 134, 11, 0.06) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 223, 0, 0.04) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
    animation: goldenShift 20s ease infinite;
}

@keyframes goldenShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: linear-gradient(180deg, rgba(10, 10, 10, 0.98) 0%, rgba(10, 10, 10, 0.8) 70%, transparent 100%);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
}

.nav-logo {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-link {
    color: #b8860b;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffd700, #ffed4e);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #ffd700;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Angel Model Container - FULLSCREEN */
.angel-model {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    z-index: 500;
    pointer-events: none;
    filter: drop-shadow(0 0 100px rgba(255, 215, 0, 0.4)) 
            drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
    animation: angelGlow 8s ease-in-out infinite;
    transition: filter 0.3s ease;
}

/* Jumpscare mode */
.angel-model.jumpscare {
    z-index: 9999 !important;
    filter: drop-shadow(0 0 200px rgba(255, 0, 0, 0.9)) 
            drop-shadow(0 0 100px rgba(255, 255, 255, 1))
            brightness(1.5) contrast(1.3);
    animation: jumpscareShake 0.1s infinite, angelGlow 8s ease-in-out infinite;
}

@keyframes jumpscareShake {
    0% { transform: translate(0, 0); }
    25% { transform: translate(-5px, 5px); }
    50% { transform: translate(5px, -5px); }
    75% { transform: translate(-5px, -5px); }
    100% { transform: translate(5px, 5px); }
}

@keyframes angelGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 100px rgba(255, 215, 0, 0.4)) 
                drop-shadow(0 0 50px rgba(255, 255, 255, 0.2));
    }
    50% { 
        filter: drop-shadow(0 0 130px rgba(255, 215, 0, 0.6)) 
                drop-shadow(0 0 70px rgba(255, 255, 255, 0.3));
    }
}

canvas {
    width: 100% !important;
    height: 100% !important;
    display: block;
}

/* Typography */
h1 {
    font-size: clamp(2.5rem, 8vw, 6rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffd700 0%, #ffffff 50%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    text-align: center;
    position: relative;
}

h2 {
    font-size: clamp(1.5rem, 3.5vw, 2.8rem);
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 0.02em;
    color: #d4af37;
    font-style: italic;
}

h3 {
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 600;
    color: #ffd700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

p {
    font-size: clamp(1rem, 1.2vw, 1.125rem);
    font-weight: 300;
    line-height: 1.9;
    letter-spacing: 0.02em;
    color: #c9c9c9;
}

/* Sections */
section {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5em;
    z-index: 2;
    padding: 6rem 2rem;
}

/* Hero Section */
.hero-law {
    position: relative;
    padding-top: 10rem;
}

.hero-law::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.05) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.8em;
    padding: 0.8em 2em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border: 2px solid rgba(255, 215, 0, 0.3);
    border-radius: 50px;
    margin-bottom: 2em;
    animation: fadeInDown 1s ease-out;
}

.badge-icon {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(255, 215, 0, 0.8));
}

.badge-text {
    color: #ffd700;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-size: 0.85rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.hero-law h1 {
    margin-bottom: 0.8em;
    animation: fadeInUp 1.2s ease-out;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.3));
}

.hero-law h2 {
    animation: fadeInUp 1.4s ease-out;
    margin-bottom: 0.8em;
    text-align: center;
}

.hero-law p {
    max-width: 700px;
    text-align: center;
    animation: fadeInUp 1.6s ease-out;
    margin-bottom: 2em;
    font-size: 1.15rem;
    line-height: 2;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 1.8s ease-out;
}

.btn-primary,
.btn-secondary {
    padding: 1.2em 3em;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.btn-primary {
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    color: #0a0a0a;
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #ffd700;
    border: 2px solid #ffd700;
}

.btn-secondary:hover {
    background: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 25px rgba(255, 215, 0, 0.3);
}

/* Expertise Section */
.expertise {
    background: linear-gradient(180deg, transparent 0%, rgba(26, 18, 16, 0.5) 50%, transparent 100%);
    border-top: 1px solid rgba(255, 215, 0, 0.1);
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 4em;
}

.section-badge {
    display: inline-block;
    padding: 0.6em 1.8em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(184, 134, 11, 0.05) 100%);
    border: 1px solid rgba(255, 215, 0, 0.3);
    border-radius: 30px;
    color: #ffd700;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    width: 100%;
    padding: 0 2rem;
}

.expertise-card {
    padding: 3em 2.5em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(26, 18, 16, 0.8) 100%);
    border: 2px solid rgba(255, 215, 0, 0.2);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.6s;
}

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

.expertise-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255, 215, 0, 0.5);
    box-shadow: 0 15px 50px rgba(255, 215, 0, 0.3);
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(26, 18, 16, 0.9) 100%);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.2em;
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
}

.expertise-card h3 {
    margin-bottom: 0.8em;
    font-size: 1.3rem;
}

.expertise-card p {
    color: #b8b8b8;
    line-height: 1.8;
}

/* Justice Section */
.justice-section {
    padding: 8rem 2rem;
}

.justice-content {
    max-width: 1200px;
    width: 100%;
}

.scales-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4em;
    padding: 4em 3em;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.03) 0%, rgba(26, 18, 16, 0.5) 100%);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
    backdrop-filter: blur(20px);
}

.scale-left,
.scale-right {
    text-align: center;
}

.scale-left h3,
.scale-right h3 {
    margin-bottom: 0.8em;
    font-size: 2rem;
}

.scale-left p,
.scale-right p {
    font-size: 1.05rem;
    color: #d0d0d0;
}

.scales-balance {
    font-size: 5rem;
    filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.8));
    animation: scaleBalance 4s ease-in-out infinite;
}

@keyframes scaleBalance {
    0%, 100% { transform: rotate(-5deg); }
    50% { transform: rotate(5deg); }
}

.justice-quote {
    text-align: center;
    font-size: 1.8rem;
    font-style: italic;
    color: #ffd700;
    line-height: 1.8;
    padding: 3em;
    position: relative;
}

.justice-quote::before {
    content: '"';
    position: absolute;
    top: -0.3em;
    left: 0.5em;
    font-size: 8rem;
    color: rgba(255, 215, 0, 0.2);
    font-family: Georgia, serif;
}

.justice-quote cite {
    display: block;
    margin-top: 1.5em;
    font-size: 1.2rem;
    color: #b8860b;
    font-style: normal;
}

/* Stats Section */
.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    max-width: 1400px;
    width: 100%;
    padding: 6rem 3rem;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05) 0%, rgba(26, 18, 16, 0.3) 100%);
    border-radius: 30px;
    border: 2px solid rgba(255, 215, 0, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, #ffd700 0%, #ffed4e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.3em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.4));
}

.stat-label {
    font-size: 1.1rem;
    color: #b8b8b8;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Outro Section */
.outro-law {
    background: linear-gradient(180deg, transparent 0%, rgba(255, 215, 0, 0.03) 50%, transparent 100%);
    text-align: center;
}

.outro-law h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    background: linear-gradient(135deg, #ffffff 0%, #d4af37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-style: normal;
    text-transform: uppercase;
    margin-bottom: 1em;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.outro-law p {
    max-width: 800px;
    margin: 0 auto 2.5em;
    font-size: 1.2rem;
    line-height: 2;
}

/* Responsive */
@media (max-width: 768px) {
    .main-nav {
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        gap: 1.5rem;
    }
    
    /* .angel-model is always fullscreen now */
/* Premium Loading Overlay */
#premium-loading-overlay {
    position: fixed;
    z-index: 100000;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(135deg, #0a0a0a 80%, #ffd700 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s cubic-bezier(.4,0,.2,1);
}
.premium-loading-content {
    background: rgba(20, 20, 20, 0.97);
    border-radius: 2rem;
    padding: 2.5rem 2rem;
    box-shadow: 0 8px 48px 0 rgba(255,215,0,0.25);
    text-align: center;
    max-width: 90vw;
    color: #ffd700;
    border: 2px solid #ffd700;
}
.premium-warning-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px #ffd700);
}
#premium-loading-overlay h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffd700;
}
#premium-loading-overlay p {
    color: #fffbe6;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}
#enter-site-btn {
    padding: 1em 2.5em;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(90deg, #ffd700 0%, #ffed4e 100%);
    color: #1a1a1a;
    border: none;
    border-radius: 2em;
    cursor: pointer;
    box-shadow: 0 2px 16px 0 rgba(255,215,0,0.18);
    transition: background 0.3s, color 0.3s, transform 0.2s;
}
#enter-site-btn:hover {
    background: linear-gradient(90deg, #ffed4e 0%, #ffd700 100%);
    color: #000;
    transform: scale(1.05);
}

/* Red overlay for jumpscare */
#jumpscare-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255,0,0,0.7);
    z-index: 100001;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
    
    .scales-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

/* Smooth scroll behavior */
.lenis.lenis-smooth {
    scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain !important;
}

.lenis.lenis-stopped {
   overflow: clip !important;
}

.lenis.lenis-smooth iframe {
    pointer-events: none !important;
}
