:root {
    --gold: #c9a86a;
    --bg: #020205;
    --blue: #00d4ff;
    --red: #ff4444;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);
    --text-main: #eee;
    --text-dim: #888;
}

body.cyber-gothic {
    margin: 0;
    background: var(--bg);
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.kinetic-bg {
    position: fixed;
    inset: 0;
    z-index: -1;
    overflow: hidden;
}

.glass-card {
    background: rgba(10, 10, 15, 0.6);
    border: 1px solid var(--border);
    backdrop-filter: blur(40px);
    border-radius: 24px;
    box-shadow: 0 40px 100px rgba(0,0,0,0.8);
}

/* Hero Section */
.hero-section {
    padding: 100px 0;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(40px, 6vw, 72px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight-red { 
    color: var(--red); 
    text-shadow: 0 0 20px rgba(255, 68, 68, 0.4); 
}

.label {
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 12px;
    margin-bottom: 20px;
    display: block;
}

.cta-button {
    background: var(--gold);
    color: #000;
    border: none;
    padding: 18px 48px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 168, 106, 0.4);
}

.william-intro {
    padding: 40px;
    display: flex;
    gap: 30px;
    align-items: center;
}

.william-badge {
    width: 60px;
    height: 60px;
    background: var(--gold);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    flex-shrink: 0;
}

.william-quote p {
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-main);
}

/* Dashboard Section */
#dashboard {
    padding: 80px 0;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    gap: 40px;
}

.filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--glass);
    border: 1px solid var(--border);
    color: var(--text-dim);
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.filter-btn:hover {
    border-color: var(--gold);
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--gold);
    color: #000;
    border-color: var(--gold);
    font-weight: 600;
}

/* Lead Grid */
.lead-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

/* Lead Card */
.lead-card {
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.lead-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6), 0 0 20px rgba(201, 168, 106, 0.1);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.tier-tag {
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.tier-tag.critical { background: var(--red); color: #fff; }
.tier-tag.high { background: #ff8800; color: #fff; }
.tier-tag.med { background: var(--blue); color: #000; }

.tech-badge {
    font-size: 11px;
    color: var(--text-dim);
    background: rgba(255,255,255,0.05);
    padding: 4px 8px;
    border-radius: 4px;
}

.lead-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.contact-info {
    font-size: 0.95rem;
    color: var(--text-dim);
    margin: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.card-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.industry-label {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.visit-link {
    color: var(--text-main);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.visit-link:hover {
    opacity: 1;
    color: var(--gold);
}

/* Responsive */
@media (max-width: 900px) {
    .dashboard-header {
        flex-direction: column;
        align-items: flex-start;
    }
}


/* Simulation Section */
.sim-section { 
    padding: 80px 0; 
}

.sim-container { 
    padding: 50px; 
    display: grid; 
    grid-template-columns: 1fr 300px; 
    gap: 40px; 
}

.sim-header {
    grid-column: 1 / -1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.sim-header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
}

.pulse-indicator {
    color: var(--blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse-indicator::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--blue);
    border-radius: 50%;
    display: inline-block;
    animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(0, 212, 255, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 212, 255, 0); }
}

.chat-sim { 
    height: 350px; 
    overflow-y: auto; 
    background: rgba(0,0,0,0.3); 
    border-radius: 12px; 
    padding: 30px; 
    border: 1px solid var(--border);
}

.chat-sim::-webkit-scrollbar {
    width: 6px;
}

.chat-sim::-webkit-scrollbar-track {
    background: transparent;
}

.chat-sim::-webkit-scrollbar-thumb {
    background: var(--border);
    border-radius: 10px;
}

.message { 
    margin-bottom: 20px; 
    opacity: 0; 
    animation: fadeIn 0.5s forwards; 
    line-height: 1.5;
}

.message.william { 
    color: var(--gold); 
    font-weight: 600;
}

.message.lead {
    color: var(--text-main);
}

.lead-score-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border-radius: 20px;
    border: 1px solid var(--border);
    text-align: center;
}

.gauge-label {
    font-size: 13px;
    color: var(--text-dim);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.gauge-wrap { 
    height: 12px; 
    background: #111; 
    border-radius: 6px; 
    margin: 15px 0; 
    overflow: hidden; 
    border: 1px solid var(--border);
}

.gauge-fill { 
    height: 100%; 
    background: linear-gradient(to right, var(--gold), var(--blue)); 
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1); 
}

.gauge-value {
    font-size: 42px;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 10px;
}

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

@media (max-width: 850px) {
    .sim-container {
        grid-template-columns: 1fr;
    }
    .lead-score-box {
        order: -1;
    }
}

/* ROI Section */
.roi-section {
    padding: 100px 0;
}

.roi-card {
    padding: 60px;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.roi-card h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
}

.subtitle {
    color: var(--text-dim);
    font-size: 1.2rem;
    margin-bottom: 50px;
}

.calculator-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.input-group label {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    color: var(--gold);
}

.display-val {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-main);
    font-family: 'Playfair Display', serif;
}

/* Exquisite Slider */
.exquisite-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: var(--border);
    border-radius: 2px;
    outline: none;
    cursor: pointer;
}

.exquisite-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 28px;
    height: 28px;
    background: var(--gold);
    border: 4px solid #000;
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(201, 168, 106, 0.4);
    cursor: pointer;
    transition: transform 0.2s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.2s;
}

.exquisite-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(201, 168, 106, 0.6);
}

.roi-result {
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

#total-roi {
    display: block;
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    color: var(--gold);
    text-shadow: 0 0 40px rgba(201, 168, 106, 0.3);
    margin: 20px 0;
    transition: transform 0.1s cubic-bezier(0.175, 0.885, 0.32, 1.275), color 0.1s;
    line-height: 1;
}

.disclaimer {
    font-size: 12px;
    color: var(--text-dim);
    font-style: italic;
    opacity: 0.7;
}

/* Mission Spotlight Styles */
.mission-spotlight {
    margin-top: 80px;
    padding: 60px;
    text-align: left;
}

.spotlight-header {
    margin-bottom: 40px;
}

.spotlight-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 60px;
}

.target-intel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.intel-item {
    padding: 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}

.intel-item strong {
    display: block;
    color: var(--gold);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.intel-item span {
    font-size: 1.1rem;
    font-weight: 600;
}

.pitch-vault {
    position: relative;
    padding: 40px;
    background: rgba(0,0,0,0.2);
    border-radius: 24px;
    border-left: 4px solid var(--red);
}

.pitch-label {
    position: absolute;
    top: -12px;
    left: 40px;
    background: var(--red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pitch-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    line-height: 1.6;
    font-style: italic;
    margin: 0;
    color: var(--text-main);
}

.pitch-text strong {
    color: var(--gold);
}

@media (max-width: 1100px) {
    .spotlight-content {
        grid-template-columns: 1fr;
    }
}

/* Vault & Script Styles */
.mission-script-card {
    padding: 50px;
    margin-bottom: 60px;
}

.script-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.script-step {
    padding: 24px;
    background: rgba(255,255,255,0.02);
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: border-color 0.3s;
}

.script-step:hover {
    border-color: var(--gold);
}

.script-step strong {
    display: block;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
}

.script-step p {
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.outreach-link {
    color: var(--text-main);
    text-decoration: none;
    transition: color 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.outreach-link:hover {
    color: var(--gold);
}

.exquisite-input:focus {
    outline: none;
    border-color: var(--gold) !important;
    box-shadow: 0 0 15px rgba(201, 168, 106, 0.2);
}

@media (max-width: 1000px) {
    .script-content {
        grid-template-columns: 1fr;
    }
}

/* Matrix Section */
.matrix-section {
    padding: 80px 0;
}

.matrix-header {
    text-align: center;
    margin-bottom: 60px;
}

.matrix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    perspective: 1000px;
}

.matrix-cell {
    background: var(--glass);
    border: 1px solid var(--border);
    padding: 40px;
    border-radius: 20px;
    transition: all 0.4s ease;
}

.matrix-cell:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--gold);
    transform: translateZ(10px);
}

.cell-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.cell-desc {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    margin-bottom: 20px;
}

.matrix-cell p {
    color: var(--text-dim);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .matrix-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.price-card {
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.price-card:hover {
    transform: translateY(-15px);
}

.price-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
}

.price {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--gold);
    margin: 20px 0;
    font-family: 'Inter', sans-serif;
}

.feature-list {
    list-style: none;
    padding: 0;
    text-align: left;
    margin: 30px 0;
    width: 100%;
    flex-grow: 1;
}

.feature-list li {
    margin-bottom: 15px;
    font-size: 14px;
    opacity: 0.8;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-list li::before {
    content: '→';
    color: var(--gold);
    font-weight: 700;
}

.premium-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: #000;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
}

.price-card.dominion {
    border: 2px solid var(--gold);
    box-shadow: 0 0 40px rgba(201, 168, 106, 0.2);
    animation: glow-pulse 4s infinite alternate;
}

@keyframes glow-pulse {
    from { box-shadow: 0 0 20px rgba(201, 168, 106, 0.2); }
    to { box-shadow: 0 0 50px rgba(201, 168, 106, 0.4); }
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Footer */
.main-footer {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
}

.william-badge.small {
    width: 35px;
    height: 35px;
    font-size: 18px;
}

.footer-signature {
    text-align: right;
}

.footer-signature p {
    color: var(--text-dim);
    margin: 0 0 10px 0;
    font-size: 14px;
}

.topaz-anchor {
    color: var(--gold);
    font-weight: 800;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
}

.anchor-icon {
    font-size: 1.5rem;
}

@media (max-width: 600px) {
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    .footer-signature {
        text-align: center;
    }
    .topaz-anchor {
        justify-content: center;
    }
}

