/* ==========================================================================
   RESET & FOUNDATIONS (PREMIUM MINIMAL WHITE)
   ========================================================================== */
:root {
    --bg-light: #ffffff;
    --bg-card: #f9f9fb;
    --border-subtle: #e4e4e7;
    --text-main: #09090b;
    --text-muted: #52525b;
    
    /* Professional Corporate Accents */
    --accent-dark: #18181b;
    --accent-vibrant: #2563eb;
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --transition-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

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

body {
    font-family: var(--font-primary);
    background-color: var(--bg-light);
    color: var(--text-main);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* ==========================================================================
   MINIMAL STRUCTURAL BACKGROUND CORES
   ========================================================================== */
.bg-gradient-layers {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -2;
    overflow: hidden;
    background-color: var(--bg-light);
}

.grid-overlay {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(9, 9, 11, 0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(9, 9, 11, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
}

/* ==========================================================================
   HIGH-LEVEL NAVIGATION
   ========================================================================== */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 24px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-main);
}

.accent-brand {
    color: var(--text-muted);
    font-weight: 400;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.25s var(--transition-smooth);
    position: relative;
    padding: 4px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--text-main);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.35s var(--transition-smooth);
}

.nav-link:hover {
    color: var(--text-main);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.give-pill {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ffffff;
    background-color: var(--text-main);
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 8px;
    transition: transform 0.25s var(--transition-smooth), opacity 0.2s ease;
}

.give-pill:hover {
    transform: translateY(-1.5px);
    opacity: 0.9;
}

/* ==========================================================================
   LAYOUT STRUCTURE WRAPPER
   ========================================================================== */
.content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ==========================================================================
   ACADEMY HERO DESIGN
   ========================================================================== */
.academy-hero-section {
    min-height: 85vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 160px;
    padding-bottom: 60px;
}

.hero-content {
    max-width: 820px;
}

.badge-container {
    margin-bottom: 24px;
}

.badge {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--text-main);
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    padding: 6px 16px;
    border-radius: 6px;
    display: inline-block;
}

.hero-main-title {
    font-size: clamp(3rem, 6.5vw, 5.5rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--text-main);
    margin-bottom: 25px;
}

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

.hero-p {
    font-size: clamp(1.05rem, 1.8vw, 1.2rem);
    font-weight: 400;
    color: var(--text-muted);
    max-width: 640px;
    margin-bottom: 35px;
    line-height: 1.7;
}

.admissions-pill {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #f0fdf4;
    border: 1px solid #bbf7d0;
    padding: 12px 20px;
    border-radius: 8px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #16a34a;
    border-radius: 50%;
    position: relative;
}

.pulse-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background-color: #16a34a;
    animation: pulseActive 2s infinite ease-in-out;
}

.pill-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: #14532d;
    letter-spacing: 0.01em;
}

@keyframes pulseActive {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(2.5); opacity: 0; }
}

/* ==========================================================================
   INSTITUTIONAL INFORMATION GRID
   ========================================================================== */
.info-overview-section {
    padding: 40px 0 80px 0;
}

.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.soft-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: 16px;
    padding: 50px;
    position: relative;
    transition: transform 0.3s var(--transition-smooth), box-shadow 0.3s ease;
}

.soft-card h2 {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
    color: var(--text-main);
}

.soft-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.75;
}

.card-mini-tag {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 12px;
}

.highlight-border {
    border-color: var(--text-main);
    background-color: var(--bg-light);
}

.scripture-footer {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid var(--border-subtle);
}

.scripture-tag {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.02em;
}

.scripture-divider {
    color: var(--border-subtle);
}

/* ==========================================================================
   CORE MANDATE & MISSION SEGMENT
   ========================================================================== */
.mandate-mission-section {
    padding: 80px 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-mini-tag {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    display: block;
    margin-bottom: 10px;
}

.section-label {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

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

.pillar-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 40px;
}

.pillar-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 30px;
}

.pillar-num {
    font-size: 0.8rem;
    font-weight: 800;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
}

.pillar-card h3 {
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

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

.pillar-list li {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.pillar-list li:last-child {
    margin-bottom: 0;
}

.list-bullet {
    width: 5px;
    height: 5px;
    background-color: var(--text-main);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Specialty Framework Card Custom Styling */
.specialty-card {
    background-color: var(--bg-card);
}

.specialty-p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.specialty-tags-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-tag {
    font-size: 0.75rem;
    font-weight: 600;
    background-color: var(--bg-light);
    border: 1px solid var(--border-subtle);
    color: var(--text-main);
    padding: 8px 14px;
    border-radius: 6px;
}

/* ==========================================================================
   PREMIUM CALL TO ACTION STRUCTURE
   ========================================================================== */
.final-cta {
    padding: 60px 0 140px 0;
}

.cta-box {
    background-color: var(--text-main);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
}

.cta-box p.italic {
    font-size: 1.05rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    margin-bottom: 40px;
}

.cta-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.enter-btn {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000000;
    background-color: #ffffff;
    padding: 16px 36px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.25s var(--transition-smooth);
}

.enter-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.25s var(--transition-smooth);
}

.enter-btn:hover {
    transform: translateY(-2px);
}

.enter-btn:hover svg {
    transform: translateX(3px);
}

.outline-btn {
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 16px 36px;
    border-radius: 8px;
    transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.25s var(--transition-smooth);
}

.outline-btn:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* ==========================================================================
   CLEAN MINIMAL FOOTER
   ========================================================================== */
.simple-footer {
    padding: 40px 0;
    border-top: 1px solid var(--border-subtle);
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
}

.simple-footer p {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

/* ==========================================================================
   METICULOUS MOBILE OPTIMIZATION SYSTEM (BREAKPOINTS)
   ========================================================================== */
@media (max-width: 1024px) {
    .mandate-grid {
        grid-template-columns: 1fr 1fr;
    }
    .pillar-card.specialty-card {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    /* Layout Adjustments */
    .nav-container { 
        padding: 20px; 
    }
    .content-wrapper { 
        padding: 0 20px; 
    }
    
    /* Navigation Link Control */
    .nav-links {
        gap: 20px;
    }
    .nav-link {
        font-size: 0.65rem;
    }
    .give-pill {
        font-size: 0.65rem;
        padding: 8px 16px;
    }

    /* Hero Optimization */
    .academy-hero-section {
        padding-top: 140px;
        padding-bottom: 40px;
        min-height: auto;
    }

    /* Info Grid Stacking */
    .info-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .soft-card {
        padding: 35px 24px;
    }

    /* Mandate Section Stacking */
    .mandate-mission-section {
        padding: 50px 0;
    }
    .section-header {
        margin-bottom: 35px;
    }
    .mandate-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .pillar-card.specialty-card {
        grid-column: span 1;
    }
    .pillar-card {
        padding: 30px 24px;
    }

    /* Action Modules Alignment */
    .cta-box {
        padding: 60px 20px;
        border-radius: 16px;
    }
    .cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .enter-btn, .outline-btn {
        width: 100%;
        justify-content: center;
        padding: 15px 20px;
    }
    .final-cta {
        padding-bottom: 80px;
    }
}
