html {
    scroll-behavior: smooth;
}

/* 
    EXCELLENT PROWESS - PREMIUM DARK THEME (BLACK MODE)
    Description: True black theme for Excellent Prowess digital agency and Sunday Udogo Portfolio.
    Author: Antigravity Assistant
*/

:root {
    /* Color Palette */
    --ep-black: #000000;
    --ep-surface: #0a0a0a;
    --ep-card: #121214;
    --ep-primary: #3b82f6;
    --ep-primary-hover: #2563eb;
    --ep-accent: #ca8a04;
    --ep-text: #ffffff;
    --ep-text-muted: #a1a1aa;
    
    /* Utilities */
    --ep-border: rgba(255, 255, 255, 0.1);
    --ep-glass: rgba(0, 0, 0, 0.45);
    --ep-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --ep-transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   GLOBAL OVERRIDES
   ========================================================================== */
body {
    background-color: var(--ep-black) !important;
    color: var(--ep-text) !important;
    font-family: sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1, h2, h3, h4, .title {
    font-family: sans-serif;
    color: var(--ep-text);
}

/* Links: muted white, not blue */
a {
    color: var(--ep-text-muted);
    transition: var(--ep-transition);
}

p, .muted {
    color: var(--ep-text-muted);
}

/* ==========================================================================
   PORTFOLIO SPECIFIC STYLES
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.ep-navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--ep-border);
    background: var(--ep-glass);
}

.ep-navbar .container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.ep-nav-cta {
    display: flex;
    justify-content: flex-end;
}

.ep-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.ep-logo img {
    height: 20px;
    width: auto;
    object-fit: contain;
}


.ep-nav-links {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ep-nav-links a {
    text-decoration: none;
    color: var(--ep-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.ep-nav-links a:hover {
    color: var(--ep-text);
}

.ep-nav-cta .btn-nav {
    white-space: nowrap;
}

.btn-nav {
    padding: 0.6rem 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: var(--ep-text);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--ep-transition);
}

.btn-nav:hover {
    background: var(--ep-text);
    color: var(--ep-black);
    border-color: var(--ep-text);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('Background.jpeg');
    background-size: cover;
    background-position: center;
    position: relative;
    padding-top: 80px;
}

.hero h1 {
    font-size: clamp(2rem, 6vw, 4rem);
    letter-spacing: -2px;
    margin-bottom: 1.5rem;
    animation: slideIn 1.2s ease-out forwards;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-content {
    z-index: 1;
    max-width: 900px;
    animation: slideIn 1s ease-out forwards;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--ep-transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--ep-primary);
    color: white;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    color: white;
}

.btn-outline {
    border: 1px solid var(--ep-border);
    color: var(--ep-text);
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline:hover {
    background: var(--ep-text);
    color: var(--ep-black);
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

/* Grids & Cards */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.card {
    background: var(--ep-surface);
    border: 1px solid var(--ep-border);
    padding: 3rem;
    border-radius: 20px;
    transition: var(--ep-transition);
}

/* Card hover: white border, no blue */
.card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    background: #0c0c0e;
    transform: translateY(-10px);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Footer */
.ep-footer {
    padding: 4rem 0;
    border-top: 1px solid var(--ep-border);
    text-align: center;
    background: #050505;
}

@media (max-width: 768px) {
    .ep-navbar .container {
        column-gap: 2rem;
    }

    .ep-nav-links { 
        gap: 1.25rem;
    }

    .btn-nav {
        padding: 0.5rem 1rem;
        font-size: 0.75rem;
    }
    
    .ep-nav-links a {
        font-size: 0.8rem;
    }

    .hero h1 { 
        font-size: 2.5rem; 
        letter-spacing: -1px;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 1rem;
    }

    .section { padding: 4rem 0; }
    
    .grid {
        grid-template-columns: 1fr !important;
    }
    
    #typing-text {
        font-size: 0.9rem;
        white-space: normal;
        border-right: none;
    }
    
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .hero-btns .btn {
        margin: 0 !important;
        width: 80%;
    }
}

/* Typing Animation Cursor */
@keyframes blink {
    50% { border-color: transparent; }
}

#typing-text {
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    animation: blink 0.7s step-end infinite;
}

.event-card {
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: 20px;
    overflow: hidden;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.06),
        0 8px 32px rgba(0, 0, 0, 0.55);
    transition: box-shadow 0.4s ease, border-color 0.4s ease;
}

.event-card:hover {
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.12),
        0 16px 48px rgba(0, 0, 0, 0.7);
}

.event-card:hover img {
    transform: scale(1.05);
}

.masonry-grid {
    columns: 2;
    column-gap: 2rem;
}

@media (max-width: 900px) {
    .masonry-grid {
        columns: 1;
    }
}

.masonry-item {
    break-inside: avoid;
    margin-bottom: 2rem;
    display: block;
}

.episode-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 4rem 0 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ep-border);
    color: var(--ep-text);
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.modal.active {
    display: flex;
}

.modal.active img {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}

/* ==========================================================================
   BUSINESS GROWTH ROUNDTABLE — NEW SECTIONS
   ========================================================================== */

/* ---- Badge (neutral, not blue) ---- */
.cta-badge {
    display: inline-block;
    background: transparent;
    color: var(--ep-text-muted);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    padding: 0.4rem 1.2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
}

/* ---- Silent Killer Hook ---- */
.roundtable-hook {
    padding: 7rem 0;
    background: #050508;
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
}

.roundtable-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
    gap: 5rem;
}

@media (max-width: 900px) {
    .roundtable-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.hook-quote {
    font-family: sans-serif;
    font-size: clamp(1.6rem, 3.8vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    color: var(--ep-text);
    margin-bottom: 2rem;
}

.hook-quote span { color: var(--ep-primary); }

.hook-body {
    font-size: 0.98rem;
    line-height: 1.8;
    color: var(--ep-text-muted);
    max-width: 820px;
    margin-bottom: 1.2rem;
}

.hook-callout {
    border-left: 3px solid rgba(255, 255, 255, 0.18);
    padding: 1.2rem 1.8rem;
    margin: 2rem 0;
    background: rgba(255, 255, 255, 0.025);
    border-radius: 0 12px 12px 0;
    font-family: sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 600;
    color: var(--ep-text);
    font-style: italic;
    max-width: 820px;
}

/* ---- Pillar Cards ---- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.pillar-card {
    background: var(--ep-card);
    border: 1px solid var(--ep-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--ep-transition);
}

.pillar-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: #111114;
}

.pillar-number {
    font-family: sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--ep-text);
    opacity: 0.07;
    line-height: 1;
    margin-bottom: 0.75rem;
    transition: var(--ep-transition);
}

.pillar-card:hover .pillar-number { opacity: 0.18; }

.pillar-card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--ep-text);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 0;
}

/* ---- Persona Label ---- */
.persona-label {
    font-family: sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--ep-text-muted);
    opacity: 0.45;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

/* ---- Persona Cards ---- */
.persona-card {
    background: var(--ep-card);
    border: 1px solid var(--ep-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: var(--ep-transition);
    position: relative;
    overflow: hidden;
}

.persona-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: var(--ep-transition);
}

.persona-card:hover::before { opacity: 1; }

.persona-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-8px);
    background: #111114;
}

.persona-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--ep-text);
}

.persona-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* ---- Why Stack ---- */
.why-stack {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-item {
    padding: 2.5rem;
    background: var(--ep-card);
    border: 1px solid var(--ep-border);
    border-left: 3px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    transition: var(--ep-transition);
}

.why-item:hover {
    border-color: rgba(255, 255, 255, 0.15);
    border-left-color: rgba(255, 255, 255, 0.4);
    background: #111114;
}

.why-item h4 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    color: var(--ep-text);
    font-family: sans-serif;
}

.why-item p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Framework Grid ---- */
.framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 1rem;
}

.framework-label {
    color: var(--ep-text-muted);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    margin-bottom: 2.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--ep-border);
}

.framework-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    align-items: flex-start;
}

.step-number {
    font-family: sans-serif;
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--ep-text);
    opacity: 0.1;
    line-height: 1;
    flex-shrink: 0;
    width: 44px;
}

.step-content h4 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--ep-text);
    font-family: sans-serif;
}

.step-content p {
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- Proof Cards ---- */
.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.proof-card {
    background: var(--ep-card);
    border: 1px solid var(--ep-border);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    transition: var(--ep-transition);
    position: relative;
    overflow: hidden;
}

.proof-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0.12), transparent);
}

.proof-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.2);
}

/* Proof stat numbers keep blue — single purposeful accent */
.proof-stat {
    font-family: sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--ep-primary);
    line-height: 1;
    margin-bottom: 1.25rem;
}

.proof-card h4 {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 1rem;
    color: var(--ep-text);
}

.proof-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ---- FAQ Accordion ---- */
.faq-list {
    max-width: 820px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--ep-border);
    border-radius: 16px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-item.open { border-color: rgba(255, 255, 255, 0.2); }

.faq-question {
    width: 100%;
    background: var(--ep-card);
    border: none;
    padding: 1.6rem 2rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    color: var(--ep-text);
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.faq-question:hover { background: #131318; }

.faq-chevron {
    font-size: 0.85rem;
    color: var(--ep-text-muted);
    opacity: 0.6;
    transition: transform 0.35s ease;
    flex-shrink: 0;
}

.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--ep-card);
}

.faq-item.open .faq-answer { max-height: 400px; }

.faq-answer-inner {
    padding: 1.5rem 2rem 2rem;
    font-size: 0.96rem;
    line-height: 1.8;
    color: var(--ep-text-muted);
    border-top: 1px solid var(--ep-border);
}

/* ---- Roundtable CTA ---- */
.roundtable-cta {
    text-align: center;
    background: #050508 !important;
    border-top: 1px solid var(--ep-border);
    border-bottom: 1px solid var(--ep-border);
}

.roundtable-cta h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.2;
    margin: 1rem 0 1.5rem;
}

.roundtable-cta p {
    max-width: 520px;
    margin: 0 auto 3rem;
    font-size: 1rem;
    line-height: 1.7;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .framework-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
    .pillars-grid { grid-template-columns: repeat(2, 1fr); }
    .hook-quote { font-size: 1.6rem; }
    .hook-callout { font-size: 1rem; padding: 1.2rem 1.5rem; }
    .proof-stat { font-size: 3rem; }
    .roundtable-hook { padding: 4rem 0; }
    .faq-question { font-size: 0.92rem; padding: 1.3rem 1.5rem; }
    .faq-answer-inner { padding: 1.2rem 1.5rem 1.5rem; }
}

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

/* ==========================================================================
   VICTOR OKAFO-INSPIRED PREMIUM CONCEPTS
   ========================================================================== */

/* ---- Logo Marquee ---- */
.brand-marquee {
    padding: 3.5rem 0;
    background: #000;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.marquee-content {
    display: flex;
    gap: 6rem;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.marquee-content span {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ---- Credential Dossier ---- */
.dossier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.dossier-item {
    padding: 2rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-left: 2px solid transparent;
    transition: var(--ep-transition);
}

.dossier-item:hover {
    background: rgba(255,255,255,0.04);
    border-left: 2px solid var(--ep-primary);
    transform: translateY(-5px);
}

.dossier-item p {
    margin: 0;
    font-size: 1rem;
    color: var(--ep-text);
    font-weight: 500;
    line-height: 1.5;
}

/* ---- Irrelevance / The Truth Block ---- */
.truth-section {
    padding: 12rem 0;
    background: #000;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.truth-title {
    font-size: clamp(2.2rem, 6vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 2.5rem;
    color: var(--ep-text);
    line-height: 1.1;
}

.truth-body {
    font-size: 1.25rem;
    line-height: 1.9;
    color: var(--ep-text-muted);
    max-width: 850px;
    margin: 0 auto;
}

.truth-body span {
    color: var(--ep-text);
    font-weight: 600;
}
