@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Inter:wght@100..900&display=swap');

:root {
    /* Luxury Branding: Infinite Obsidian & Gold */
    --obsidian: #050505;
    --charcoal: #0c0c0c;
    --gold: #c5a059;
    --gold-bright: #e5c48b;
    --gold-dim: rgba(197, 160, 89, 0.2);
    --silk-cream: #fafaf9;
    --text-muted: #737373;
    
    --glass: rgba(10, 10, 10, 0.4);
    --glass-border: rgba(197, 160, 89, 0.15);
    
    --serif: 'Playfair Display', serif;
    --sans: 'Inter', sans-serif;
    
    --transition: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    background-color: var(--obsidian);
    color: var(--silk-cream);
    font-family: var(--sans);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Luxury Textures */
.metal-mesh {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: radial-gradient(circle at 50% -20%, #c5a05911 0%, transparent 50%),
                linear-gradient(to bottom, #050505 0%, #0c0c0c 100%);
}

.gold-flare {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

/* Elite Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4rem;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(to bottom, var(--obsidian), transparent);
}

.brand {
    font-family: var(--serif);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
    text-decoration: none;
    color: var(--silk-cream);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.brand span {
    background: linear-gradient(135deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.nav-buttons {
    display: flex;
    gap: 1.5rem;
}

.btn-luxury {
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 700;
    text-decoration: none;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: var(--transition);
}

.btn-gold {
    background: var(--gold);
    color: var(--obsidian);
    box-shadow: 0 10px 30px rgba(197, 160, 89, 0.2);
}

.btn-gold:hover {
    transform: translateY(-2px);
    background: var(--gold-bright);
    box-shadow: 0 15px 40px rgba(197, 160, 89, 0.4);
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--gold);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--gold);
    background: rgba(197, 160, 89, 0.05);
}

/* Cinematic Hero */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 2rem;
}

.hero h1 {
    font-family: var(--serif);
    font-size: clamp(3.5rem, 8vw, 7rem);
    line-height: 1;
    font-weight: 400;
    margin-bottom: 2.5rem;
    letter-spacing: -0.01em;
}

.italic { font-style: italic; font-weight: 300; }

.hero-sub {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 4rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* Bespoke Killer Payplan Table */
.payplan-section {
    padding: 10rem 0;
    max-width: 1200px;
    margin: 0 auto;
}

.title-gold {
    font-family: var(--serif);
    text-align: center;
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 4rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
}

.killer-table-container {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 2px;
    border-radius: 12px;
    overflow: hidden;
}

.killer-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--charcoal);
}

.killer-table th {
    background: var(--obsidian);
    color: var(--gold);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 1.5rem 1rem;
    border-bottom: 1px solid var(--glass-border);
    font-weight: 900;
    text-align: center;
}

.killer-table td {
    padding: 1.25rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--silk-cream);
    transition: 0.3s;
}

.killer-table tr:hover td {
    background: rgba(197, 160, 89, 0.03);
    color: var(--gold-bright);
}

.lvl-col { font-weight: 900; color: var(--gold) !important; font-family: var(--serif); font-size: 1.25rem !important; }

.highlight-row { background: rgba(197, 160, 89, 0.05); }

/* Impact Cards */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 8rem 0;
}

.luxury-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 4rem 3rem;
    transition: var(--transition);
}

.luxury-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0,0,0,0.6);
}

.luxury-card h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.luxury-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer */
.foundation-footer {
    padding: 8rem 0 4rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
}

.footer-logo {
    font-family: var(--serif);
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 2rem;
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .navbar { padding: 1.5rem 2rem; }
    .hero h1 { font-size: 3rem; }
    .impact-grid { grid-template-columns: 1fr; }
    .killer-table-container { overflow-x: auto; }
}