/* ==========================================
   AFRO BUSINESS CLUB - CORE DESIGN SYSTEM
   Aesthetic: Cyber-Premium Gold & Onyx Mode
   ========================================== */

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

:root {
    /* Color Tokens */
    --bg-onyx: #050505;          /* High contrast brand dark black */
    --bg-surface: rgba(26, 26, 26, 0.65); /* Translucent brand charcoal */
    --bg-surface-hover: rgba(38, 38, 38, 0.75);
    
    /* Dual Gold Accents */
    --accent-gold: #C5A059;       /* Signature Brand Gold */
    --accent-gold-hover: #A37E3A;
    --accent-gold-glow: rgba(197, 160, 89, 0.3);
    --accent-gold-light: rgba(197, 160, 89, 0.12);
    
    /* Warm Secondary Accent */
    --accent-bronze: #8B5A2B;
    --accent-bronze-glow: rgba(139, 90, 43, 0.2);
    
    /* Alert Indicators */
    --highlight-red: #EF4444;
    --highlight-red-glow: rgba(239, 68, 68, 0.25);
    
    /* Text Tokens */
    --text-primary: #FFFFFF;
    --text-muted: #A3A3A3;
    --text-dim: #737373;
    
    /* UI Borders & Shadows */
    --border-glass: rgba(255, 255, 255, 0.05);
    --border-glass-bright: rgba(197, 160, 89, 0.25);
    --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.75);
    --shadow-glow: 0 0 25px rgba(197, 160, 89, 0.2);
    
    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.amp-font {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
    font-style: normal !important;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-onyx);
    color: var(--text-primary);
    font-family: var(--font-body);
}

body {
    overflow-x: hidden;
    line-height: 1.6;
    background-color: var(--bg-onyx);
    position: relative;
    color: var(--text-muted);
}

/* Background Glowing Ambient Orbs */
.ambient-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    animation: pulseOrb 15s infinite alternate ease-in-out;
}

.orb-gold {
    top: -10%;
    right: 5%;
    width: 600px;
    height: 600px;
    background: var(--accent-gold);
}

.orb-bronze {
    bottom: 10%;
    left: -5%;
    width: 700px;
    height: 700px;
    background: var(--accent-bronze);
}

@keyframes pulseOrb {
    0% { transform: scale(1) translateY(0); opacity: 0.12; }
    100% { transform: scale(1.15) translateY(40px); opacity: 0.22; }
}

/* Typography */
h1, h2, h3, h4, .font-heading {
    font-family: var(--font-display);
    color: var(--text-primary);
    line-height: 1.2;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

/* Layout Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-center { text-align: center; }
.text-gold { color: var(--accent-gold); }
.text-white { color: var(--text-primary); }
.text-red { color: var(--highlight-red); }

/* Badges & Pills */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--accent-gold);
    margin-bottom: 20px;
}

.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--accent-gold);
    box-shadow: 0 0 10px var(--accent-gold);
}

.badge-red {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: var(--highlight-red);
}

.badge-red .badge-dot {
    background-color: var(--highlight-red);
    box-shadow: 0 0 10px var(--highlight-red);
}

/* Glassmorphism Cards */
.glass-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-radius: 20px;
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.glass-card:hover {
    border-color: var(--border-glass-bright);
    transform: translateY(-4px);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.925rem;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary {
    background: linear-gradient(135deg, #DFBA73 0%, #C5A059 100%);
    color: var(--bg-onyx);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.45);
    background: linear-gradient(135deg, #FFE1A5 0%, #DFBA73 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    border: 1px solid var(--border-glass);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--border-glass-bright);
    transform: translateY(-2px);
}

/* Header & Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 24px 0;
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    padding: 16px 0;
    background: rgba(5, 5, 5, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: var(--text-primary);
}

.brand-logo .logo-tag {
    font-size: 0.725rem;
    font-weight: 600;
    font-family: var(--font-body);
    color: var(--accent-gold);
    background: var(--accent-gold-light);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(197, 160, 89, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    list-style: none;
}

.nav-links a {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: var(--font-body);
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-gold);
}

.nav-controls {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Lang Toggle Button */
.btn-lang {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-glass);
    color: var(--text-primary);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-lang:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--border-glass-bright);
}

/* Hamburger / Drawer Mobile */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.3rem;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    padding: 30px 24px;
    z-index: 999;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mobile-nav-link {
    font-size: 1rem;
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-section {
    padding-top: 180px;
    padding-bottom: 80px;
    position: relative;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
    line-height: 1.25;
}

.hero-title span.gold-glow-text {
    color: var(--accent-gold);
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 510px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glass);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
    aspect-ratio: 4 / 3;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(85%) contrast(102%);
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover img {
    filter: brightness(100%) contrast(105%);
    transform: scale(1.03);
}

.hero-badge-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    padding: 16px 20px;
    background: rgba(5, 5, 5, 0.82);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glass-bright);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Strategic Metrics Bar */
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 60px;
}

.metric-card {
    padding: 24px;
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 6px;
    text-shadow: 0 0 10px rgba(197, 160, 89, 0.15);
}

.metric-label {
    font-size: 0.825rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Section Header */
.section-header {
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.6;
}

.w-24-gold-line {
    width: 80px;
    height: 2px;
    background: var(--accent-gold);
    margin: 20px auto 0;
}

/* Ecosystem Pillars Grid */
.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.pillar-card {
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.pillar-img-header {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--border-glass);
}

.pillar-img-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(80%) grayscale(20%);
    transition: var(--transition-smooth);
}

.pillar-card:hover .pillar-img-header img {
    filter: brightness(95%) grayscale(0%);
    transform: scale(1.04);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    opacity: 0;
    transition: var(--transition-smooth);
}

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

.pillar-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--accent-gold-light);
    border: 1px solid rgba(197, 160, 89, 0.25);
    color: var(--accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.pillar-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.pillar-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pillar-features {
    list-style: none;
    margin-bottom: 28px;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.pillar-features li svg {
    color: var(--accent-gold);
}

/* Vetting / Join Container */
.form-stage-card {
    max-width: 680px;
    margin: 0 auto;
    padding: 50px 40px;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(197, 160, 89, 0.1);
}

.form-select option {
    background-color: var(--bg-onyx);
    color: var(--text-primary);
}

.form-textarea {
    resize: vertical;
}



/* Timeline structure */
.timeline-wrapper {
    position: relative;
    max-width: 800px;
    margin: 40px auto 0;
}

.timeline-track {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-highlight-line {
    position: absolute;
    left: 50%;
    top: 0;
    height: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent-gold), transparent);
    transform: translateX(-50%);
    z-index: 2;
}

.timeline-step {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    margin-bottom: 50px;
}

.timeline-step:last-child {
    margin-bottom: 0;
}

.timeline-badge-node {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg-onyx);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: var(--shadow-card);
    transition: var(--transition-smooth);
}

.timeline-step.active .timeline-badge-node {
    border-color: var(--accent-gold);
    color: var(--bg-onyx);
    background: var(--accent-gold);
    box-shadow: 0 0 20px rgba(197, 160, 89, 0.35);
}

.timeline-content-box {
    width: 45%;
    padding: 24px;
}

.timeline-step:nth-child(odd) .timeline-content-box {
    margin-right: auto;
    text-align: right;
}

.timeline-step:nth-child(even) .timeline-content-box {
    margin-left: auto;
    text-align: left;
}

.timeline-step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-step-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Timeline Horizontal (Wizards) */
.wizard-progress-bar {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 100%;
    max-width: 680px;
    margin: 40px auto 0;
}

.wizard-line-back {
    position: absolute;
    top: 20px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.wizard-line-front {
    position: absolute;
    top: 20px;
    left: 10%;
    width: 40%;
    height: 2px;
    background: var(--accent-gold);
    z-index: 2;
    box-shadow: 0 0 10px var(--accent-gold);
}

.wizard-step {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30%;
}

.wizard-node {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg-onyx);
    border: 2px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-card);
}

.wizard-step.active .wizard-node {
    border-color: var(--accent-gold);
    background: var(--accent-gold);
    color: var(--bg-onyx);
    box-shadow: 0 0 18px rgba(197, 160, 89, 0.4);
}

.wizard-label {
    margin-top: 14px;
    text-align: center;
}

.wizard-title {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.wizard-desc {
    font-size: 0.725rem;
    color: var(--text-muted);
    max-width: 140px;
    line-height: 1.4;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.star-rating {
    display: flex;
    gap: 4px;
    color: var(--accent-gold);
    font-size: 0.85rem;
    margin-bottom: 18px;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.725rem;
    color: var(--accent-gold);
    margin-top: 3px;
}

/* Video Stage (dinners.html) */
.video-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.video-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.video-player-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 16px;
    cursor: pointer;
    background: #000;
}

.aspect-video-h {
    aspect-ratio: 16 / 9;
}

.aspect-video-v {
    aspect-ratio: 9 / 16;
}

.video-iframe-wrap {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    transform: scale(1.15);
}

.video-iframe-wrap iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.video-play-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-smooth);
}

.play-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(197, 160, 89, 0.9);
    color: var(--bg-onyx);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.5);
    transition: var(--transition-fast);
}

.video-player-card:hover .play-icon {
    transform: scale(1.12);
    background: #FFE1A5;
}

.video-label-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(5, 5, 5, 0.8);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text-primary);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    z-index: 20;
}

/* FAQ Accordion Details Styles */
.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-details {
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid var(--border-glass);
    transition: var(--transition-smooth);
    background: var(--bg-surface);
}

.faq-details[open] {
    border-color: rgba(197, 160, 89, 0.3);
}

.faq-summary {
    padding: 24px;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    list-style: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary-icon {
    color: var(--accent-gold);
    transition: transform var(--transition-smooth);
}

.faq-details[open] .faq-summary-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 24px;
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 18px;
}

/* Carousel Section (mastermind.html) */
.carousel-card {
    padding: 0;
    overflow: hidden;
    position: relative;
    border-radius: 20px;
}

.carousel-title-bar {
    background: var(--bg-onyx);
    padding: 16px 24px;
    border-bottom: 1px solid var(--border-glass);
    font-weight: 600;
    color: var(--text-primary);
}

.carousel-viewport {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

@media(max-width: 768px) {
    .carousel-viewport {
        height: 360px;
    }
}

.carousel-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.carousel-slide-img {
    min-width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(5, 5, 5, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: var(--transition-fast);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.carousel-nav-btn:hover {
    background: var(--accent-gold);
    color: var(--bg-onyx);
    border-color: var(--accent-gold);
}

.carousel-nav-prev { left: 20px; }
.carousel-nav-next { right: 20px; }

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.carousel-dot.active {
    background: var(--accent-gold);
    width: 22px;
    border-radius: 4px;
}

/* Mastermind Features Info Block */
.features-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

.info-feature-box {
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-glass);
    padding: 20px;
}

.info-feature-tag {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 8px;
}

.info-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.info-feature-desc {
    font-size: 0.8rem;
    color: var(--text-muted);
    line-height: 1.4;
}

/* Fit / Unfit Elite Cards */
.fit-unfit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 40px;
}

.fit-card {
    border-color: rgba(197, 160, 89, 0.25);
    background: rgba(28, 24, 20, 0.5);
    padding: 36px;
}

.unfit-card {
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(28, 20, 20, 0.5);
    padding: 36px;
}

.fit-unfit-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.fit-unfit-list {
    list-style: none;
}

.fit-unfit-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.925rem;
    line-height: 1.5;
}

.fit-unfit-list li svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.fit-unfit-list li.fit-item svg {
    color: var(--accent-gold);
}

.fit-unfit-list li.unfit-item svg {
    color: var(--highlight-red);
}

.note-box {
    margin-top: 24px;
    padding: 16px;
    border-radius: 8px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-glass);
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Logo Slider loop */
.logo-slider-section {
    padding: 36px 0;
    background: rgba(5, 5, 5, 0.5);
    border-top: 1px solid var(--border-glass);
    border-bottom: 1px solid var(--border-glass);
    overflow: hidden;
}

.logo-slider-title {
    text-align: center;
    font-size: 0.725rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 600;
}

.logo-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.logo-slider-track {
    display: flex;
    width: max-content;
    animation: scrollLogos 35s linear infinite;
}

.logo-item {
    padding: 0 45px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-body);
    opacity: 0.5;
    transition: opacity var(--transition-fast);
}

.logo-item:hover {
    opacity: 1;
    color: var(--accent-gold);
}

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

/* Footer styling */
.footer {
    background: #000;
    border-top: 1px solid var(--border-glass);
    padding: 60px 0 40px;
}

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

.footer-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.75rem;
    color: var(--text-dim);
}

/* Modal Overlay & RSVP */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-container {
    width: 100%;
    max-width: 540px;
    padding: 40px;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    color: var(--text-primary);
}

/* Extra Generic Grid / Spacing utilities for HTML cleanup */
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.gap-6 { gap: 24px; }
.gap-8 { gap: 32px; }
.gap-12 { gap: 48px; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-10 { margin-top: 40px; }
.mt-12 { margin-top: 48px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.mb-8 { margin-bottom: 32px; }
.mb-10 { margin-bottom: 40px; }
.mb-16 { margin-bottom: 64px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.w-full { width: 100%; }

/* Testimonials Slider Viewport default */
.testimonials-slider-viewport {
    width: 100%;
    overflow: visible;
}
.testimonials-dots {
    display: none;
}

/* Responsive adjustments */
@media(max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-title {
        font-size: 2.6rem;
    }
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .ecosystem-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .video-grid-2col {
        grid-template-columns: 1fr;
    }
    .video-grid-4col {
        grid-template-columns: repeat(2, 1fr);
    }
    .fit-unfit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media(max-width: 768px) {
    /* Responsive Text Sizing & Margins */
    .hero-title {
        font-size: 2rem !important;
        line-height: 1.3 !important;
    }
    .hero-subtitle {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        margin-bottom: 28px !important;
    }
    .section-title {
        font-size: 1.75rem !important;
        line-height: 1.35 !important;
    }
    .section-subtitle {
        font-size: 0.925rem !important;
        line-height: 1.5 !important;
    }

    /* Mobile 3-Column Metrics Grid */
    .metrics-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        margin-top: 30px !important;
        width: 100% !important;
    }
    .metric-card {
        padding: 8px 4px !important;
        min-width: 0 !important;
    }
    .metric-number {
        font-size: 1.2rem !important;
        margin-bottom: 2px !important;
    }
    .metric-label {
        font-size: 0.55rem !important;
        letter-spacing: 0.01em !important;
    }

    .navbar {
        padding: 16px 0;
    }
    .nav-links {
        display: none;
    }
    .navbar .btn-primary {
        display: none;
    }
    .menu-toggle {
        display: block;
    }
    .timeline-track, .timeline-highlight-line {
        left: 20px;
    }
    .timeline-badge-node {
        left: 20px;
    }
    .timeline-step {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 50px;
    }
    .timeline-content-box {
        width: 100%;
        padding: 10px 0;
    }
    .timeline-step:nth-child(odd) .timeline-content-box {
        text-align: left;
    }
    .wizard-progress-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding-left: 20px;
    }
    .wizard-line-back, .wizard-line-front {
        display: none;
    }
    .wizard-step {
        width: 100%;
        flex-direction: row;
        gap: 20px;
        align-items: center;
    }
    .wizard-label {
        margin-top: 0;
        text-align: left;
    }
    .features-info-grid {
        grid-template-columns: 1fr;
    }
    
    /* Testimonials mobile carousel slider */
    .testimonials-slider-viewport {
        overflow: hidden;
        width: 100%;
        position: relative;
    }
    .testimonials-grid {
        display: flex !important;
        grid-template-columns: none !important;
        width: 300% !important;
        gap: 0 !important;
        margin-top: 30px;
        transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    .testimonial-card {
        flex: 0 0 33.333% !important;
        width: 33.333% !important;
        box-sizing: border-box;
        padding: 24px;
        height: auto;
    }
    .testimonials-dots {
        display: flex !important;
        justify-content: center;
        gap: 8px;
        margin-top: 24px;
    }
    .testimonials-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.25);
        cursor: pointer;
        transition: background 0.3s, transform 0.3s;
    }
    .testimonials-dot.active {
        background: var(--accent-gold);
        transform: scale(1.2);
    }
}

@media(max-width: 480px) {
    .hero-title {
        font-size: 1.7rem !important;
    }
    .section-title {
        font-size: 1.45rem !important;
    }
    .video-grid-4col {
        grid-template-columns: 1fr;
    }
    .form-stage-card {
        padding: 30px 20px;
    }
}
