:root {
    --bg: #000000;
    --bg-alt: #0a0a0a;
    --text-primary: #ffffff;
    --text-secondary: #999999;
    --border: rgba(255, 255, 255, 0.05);
    --gold-muted: #c5a059; /* Subtle gold for elegance if needed, or stick to silver/gray */
    --silver: #e0e0e0;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg);
    color: var(--text-primary);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow-x: hidden;
}

h1, h2, h3, .serif {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: -1px;
}

.container {
    width: 100%;
    max-width: 480px; /* Mobile width */
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Transitions */
.fade-in {
    animation: fadeIn 2s ease-out;
}

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

/* Navigation */
nav {
    padding: 4rem 0;
    text-align: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    letter-spacing: 10px;
    text-transform: uppercase;
}

/* Hero */
.hero {
    padding: 10rem 0;
    text-align: center;
}

.hero span {
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 5px;
    color: var(--text-secondary);
    display: block;
    margin-bottom: 2rem;
}

h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero p {
    max-width: 500px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--text-secondary);
    font-style: italic;
}

/* Sections */
.section {
    padding: 12rem 0;
}

.section-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    display: block;
    text-align: center;
}

/* Force Single Column Stack */
.grid-2, .stats-grid {
    grid-template-columns: 1fr !important;
}

.verticals-grid {
    width: 100%;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
}

.content-block p {
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Financial Ledger (Replacing Dashboard) */
.ledger {
    background: var(--bg-alt);
    padding: 4rem;
    border: 1px solid var(--border);
}

.ledger-header {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
    margin-bottom: 2rem;
}

.ledger-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--silver);
}

.ledger-row {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    transition: 0.3s;
}

.ledger-row:hover {
    padding-left: 10px;
    background: rgba(255,255,255,0.01);
}

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

.ledger-row span:first-child { color: var(--text-secondary); }

/* Apply Form - Minimalist */
.apply-box {
    max-width: 450px;
    margin: 0 auto;
    text-align: center;
}

.apply-box input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 0;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    outline: none;
    transition: border-bottom 0.5s;
}

.apply-box input:focus {
    border-bottom: 1px solid white;
}

.btn-minimal {
    margin-top: 2rem;
    background: white;
    color: black;
    padding: 1.5rem 4rem;
    text-decoration: none;
    display: inline-block;
    font-size: 0.8rem;
    letter-spacing: 3px;
    font-weight: 700;
    transition: 0.3s;
}

.btn-minimal:hover {
    background: #e0e0e0;
}

footer {
    padding: 8rem 0 4rem;
    text-align: center;
    font-size: 0.6rem;
    letter-spacing: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
}

/* Serious Animations */
@keyframes glint {
    0% { left: -100%; }
    100% { left: 100%; }
}

.glint-effect {
    position: relative;
    overflow: hidden;
}

.glint-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.05), transparent);
    transform: skewX(-25deg);
    animation: glint 5s infinite;
}

.highlight-white {
    text-shadow: 0 0 15px rgba(255,255,255,0.3);
    color: white !important;
}

.btn-minimal:hover {
    background: white;
    box-shadow: 0 0 30px rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.ledger-row:hover span {
    color: white;
}

/* Vignette and Image Styling */
.image-block {
    position: relative;
    transition: transform 0.5s ease;
    filter: grayscale(0.5) contrast(1.1);
    overflow: hidden;
}

.image-block::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, transparent 40%, rgba(0,0,0,0.8) 100%);
    pointer-events: none;
}

/* Vignette and Background Integration */
.section {
    position: relative;
    padding: 8rem 0;
    background-color: black;
    overflow: hidden;
    display: flex;
    align-items: center;
    border: none;
}

/* 3D Floating Elements */
.section {
    perspective: 1500px; /* Base for 3D */
}

.section::before, .section::after {
    content: '';
    position: absolute;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.3) grayscale(0.7);
    mask-image: radial-gradient(circle, black 40%, transparent 90%);
    -webkit-mask-image: radial-gradient(circle, black 40%, transparent 90%);
    z-index: 0;
    pointer-events: none;
    
    /* 3D Base State */
    transform-style: preserve-3d;
    animation: float3d 12s infinite ease-in-out alternate;
}

@keyframes float3d {
    0% {
        transform: rotateY(15deg) rotateX(10deg) translateZ(0px);
    }
    100% {
        transform: rotateY(-15deg) rotateX(-5deg) translateZ(50px);
    }
}

/* Section 1 - Porsche & Watch */
.bg-graffiti::before {
    width: 450px; height: 450px;
    top: -5%; left: -5%;
    background-image: url('porsche.png');
}
.bg-graffiti::after {
    width: 300px; height: 300px;
    bottom: 5%; right: 5%;
    background-image: url('watch.png');
    animation-delay: -3s;
}

/* Section 2 - Money & Marker */
.bg-money::before {
    width: 400px; height: 400px;
    top: 5%; right: -5%;
    background-image: url('money.png');
    animation-delay: -6s;
}
.bg-money::after {
    width: 350px; height: 350px;
    bottom: 5%; left: -5%;
    background-image: url('hustle_marker.png');
    animation-delay: -2s;
}

#apply::before {
    width: 500px; height: 500px;
    top: -20%; left: 50%;
    transform: translateX(-50%) rotateX(15deg);
    background-image: url('porsche.png');
    opacity: 0.3;
}

.spacer-black {
    height: 15vh;
    background: black;
}

.container {
    position: relative;
    z-index: 1;
}

/* Floating Gallery Chaos */
.floating-gallery {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.art-float {
    position: absolute;
    height: 400px;
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0.2) grayscale(0.8);
    mask-image: radial-gradient(circle, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle, black 30%, transparent 80%);
    transform-style: preserve-3d;
    animation: float3d 15s infinite ease-in-out alternate;
    opacity: 0.6;
}

/* Graffiti Typography */
.graffiti-tag {
    position: absolute;
    font-family: 'Permanent Marker', cursive;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.15);
    pointer-events: none;
    z-index: 2;
    text-shadow: 0 0 20px rgba(255,255,255,0.05);
}

/* Verticals Infographic */
.verticals-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 4rem;
    text-align: left;
}

.vertical-item {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.vertical-item span:first-child {
    width: 100px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.bar-container {
    flex: 1;
    height: 4px;
    background: rgba(255,255,255,0.05);
    border-radius: 2px;
    overflow: hidden;
}

.bar {
    height: 100%;
    background: white;
    box-shadow: 0 0 10px white;
}

.bar-val {
    font-size: 0.7rem;
    color: var(--text-secondary);
    width: 100px;
}

/* Dashboard Modules */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 5rem;
}

.stat-card {
    padding: 2.5rem;
    text-align: center;
    border-radius: 20px;
    transition: 0.4s;
    background: rgba(255,255,255,0.01);
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-card:hover {
    background: rgba(255,255,255,0.05);
    transform: translateY(-10px);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: bold;
    display: block;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
    color: white;
}

.stat-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.glass {
    background: rgba(255, 255, 255, 0.02) !important;
    backdrop-filter: blur(40px) saturate(180%) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}

/* Lifecycle Infographic */
.lifecycle-container {
    margin-top: 3rem;
    padding: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255,255,255,0.01) !important;
}

.lifecycle-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.lifecycle-step .dot {
    width: 12px;
    height: 12px;
    background: #333;
    border-radius: 50%;
    transition: 0.5s;
}

.lifecycle-line {
    flex: 1;
    height: 1px;
    background: var(--border);
    margin: 0 1rem;
    position: relative;
    overflow: hidden;
}

.lifecycle-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: white;
    animation: pulseLine 4s infinite;
}

@keyframes pulseLine {
    0% { left: -100%; }
    50% { left: 0%; }
    100% { left: 100%; }
}

.lifecycle-step.active .dot {
    background: white;
    box-shadow: 0 0 15px white;
}

.pulse {
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Auto-advancing infographic mock */
#step-cc .dot { animation: activateStep 8s infinite 2s; }
#step-profit { animation: profitReveal 8s infinite 4s; }

@keyframes activateStep {
    0%, 20% { background: #333; box-shadow: none; }
    30%, 100% { background: white; box-shadow: 0 0 15px white; }
}

@keyframes profitReveal {
    0%, 40% { opacity: 0; transform: translateY(10px); }
    50%, 100% { opacity: 1; transform: translateY(0); }
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal-content {
    width: 450px;
    padding: 4rem;
    position: relative;
    background: rgba(255, 255, 255, 0.05) !important;
    backdrop-filter: blur(50px) saturate(200%) !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0.5;
    z-index: 10;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Liquid Border Effect */
.modal-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, transparent, transparent, white);
    animation: rotateBorder 4s linear infinite;
    z-index: -1;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.modal-content::after {
    content: '';
    position: absolute;
    inset: 2px;
    background: #000;
    border-radius: inherit;
    z-index: -1;
    opacity: 0.95;
}

.modal-tabs {
    display: flex;
    gap: 3rem;
    margin-bottom: 3.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.tab-btn {
    padding-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    opacity: 0.4;
    transition: 0.4s;
    font-family: 'Playfair Display', serif;
}

.tab-btn.active {
    opacity: 1;
    border-bottom: 2px solid white;
    text-shadow: 0 0 10px white;
}

.modal-content input {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.2rem 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
    outline: none;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.modal-content input::placeholder {
    color: rgba(255,255,255,0.3);
}

.modal-content input:focus {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 0 15px rgba(255,255,255,0.1);
}

.error-msg {
    color: #ff4444;
    font-size: 0.75rem;
    margin-top: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    height: 1.2rem;
    text-align: center;
}

/* Progressive Blur Management */
#main-content {
    width: 100%;
    transition: filter 1s ease;
}

#main-content.initial-blur {
    filter: blur(18px); /* Initial ~39% */
}

#main-content.heavy-blur {
    filter: blur(45px); /* Active ~66% */
}

/* Verification Overlays Global */
.verify-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(10px); /* Subtle on overlay itself, primary blur on content */
    -webkit-backdrop-filter: blur(10px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

/* 1. Cookie Consent Styles */
.cookie-content {
    background: white;
    width: 400px;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.cookie-content h3 {
    color: #000;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.cookie-content p {
    font-size: 0.85rem;
    line-height: 1.4;
    color: #666;
    margin-bottom: 1.5rem;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

.cookie-text strong {
    display: block;
    font-size: 0.9rem;
    color: #333;
}

.cookie-text span {
    font-size: 0.75rem;
    color: #888;
}

.cookie-btn {
    width: 100%;
    background: #000;
    color: white;
    border: none;
    padding: 1rem;
    margin-top: 1.5rem;
    font-weight: bold;
    cursor: pointer;
    border-radius: 4px;
}

/* Switch Styles */
.switch { position: relative; display: inline-block; width: 40px; height: 20px; }
.switch input { opacity: 0; width: 0; height: 0; }
.slider { position: absolute; cursor: pointer; top: 0; left: 0; right: 0; bottom: 0; background-color: #ccc; transition: .4s; border-radius: 20px; }
.slider:before { position: absolute; content: ""; height: 16px; width: 16px; left: 2px; bottom: 2px; background-color: white; transition: .4s; border-radius: 50%; }
input:checked + .slider { background-color: #000; }
input:checked + .slider:before { transform: translateX(20px); }

/* 2. reCAPTCHA Mock Styles */
.captcha-box {
    background: #f9f9f9;
    border: 1px solid #d3d3d3;
    padding: 10px;
    width: 300px;
    border-radius: 3px;
}

.captcha-flex {
    display: flex;
    align-items: center;
    gap: 15px;
}

.captcha-check-container {
    width: 28px;
    height: 28px;
    border: 2px solid #c1c1c1;
    background: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.captcha-spinner {
    width: 24px;
    height: 24px;
    border: 3px solid #4d90fe;
    border-top-color: transparent;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    display: none;
}

.captcha-error-text {
    color: #d93025;
    font-size: 0.7rem;
    margin-top: 10px;
    display: none;
}

.captcha-text { font-size: 14px; color: #555; flex-grow: 1; }
.captcha-logo { display: flex; flex-direction: column; align-items: center; font-size: 8px; color: #9b9b9b; }

/* 3. Final Verification Window (Screenshot Match) */
.verification-window {
    background: white;
    width: 350px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.4);
    position: relative;
}

.v-header {
    background: #2196f3;
    color: white;
    padding: 20px;
}

.v-header span { font-size: 14px; text-transform: none; }
.v-header h2 { font-size: 24px; margin-top: 5px; font-family: sans-serif; font-weight: bold; }

.v-body { padding: 20px; color: #444; font-size: 13px; }
.v-body ol { margin: 15px 0; padding-left: 20px; }
.v-body li { margin-bottom: 12px; line-height: 1.5; }
.v-key { background: #eee; padding: 2px 6px; border-radius: 3px; border-bottom: 2px solid #ccc; font-weight: bold; }

.v-agree { border-top: 1px solid #eee; padding-top: 15px; display: flex; align-items: center; gap: 10px; color: #888; font-size: 11px; }

.v-footer {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fdfdfd;
}

.v-footer span { font-size: 11px; color: #888; max-width: 140px; line-height: 1.3; }

.v-btn {
    background: #4285f4;
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 2px;
    font-weight: bold;
    cursor: pointer;
}

.v-loading-side {
    position: absolute;
    left: -40px;
    top: 120px;
    width: 40px;
    height: 80px;
    background: #f1f1f1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px 0 0 4px;
}

.v-spin {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #666;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

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

@media (max-width: 768px) {
    h1 { font-size: 3rem; }
    .grid-2 { grid-template-columns: 1fr; gap: 4rem; }
}
