/* ============================================
   IN THE SHADAUX - Global Styles
   Purple / Black / Void Shadow Aesthetic
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    /* Core palette */
    --void-black: #09090b;
    --deep-black: #0c0a13;
    --shadow-dark: #110e1a;
    --shadow-mid: #1a1525;
    --shadow-light: #241e33;

    /* Purple spectrum */
    --purple-deep: #4c1d95;
    --purple-core: #7c3aed;
    --purple-bright: #a78bfa;
    --purple-glow: #c4b5fd;
    --purple-mist: #ede9fe;

    /* Accents */
    --violet-neon: #8b5cf6;
    --violet-hot: #6d28d9;

    /* Text */
    --text-primary: #f5f3ff;
    --text-secondary: #c4b5fd;
    --text-muted: #8b82a8;
    --text-dim: #5b5276;

    /* Gradients */
    --gradient-void: linear-gradient(135deg, #09090b 0%, #1a1525 50%, #09090b 100%);
    --gradient-purple: linear-gradient(135deg, #4c1d95 0%, #7c3aed 50%, #6d28d9 100%);
    --gradient-glow: linear-gradient(135deg, rgba(124, 58, 237, 0.2) 0%, rgba(139, 92, 246, 0.05) 100%);
    --gradient-card: linear-gradient(145deg, rgba(36, 30, 51, 0.6) 0%, rgba(17, 14, 26, 0.8) 100%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 40px rgba(124, 58, 237, 0.15);
    --shadow-glow-strong: 0 0 60px rgba(124, 58, 237, 0.3);

    /* Layout */
    --nav-height: 72px;
    --container-max: 1200px;
    --container-narrow: 800px;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Border */
    --border-subtle: 1px solid rgba(124, 58, 237, 0.1);
    --border-glow: 1px solid rgba(124, 58, 237, 0.25);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--void-black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a:hover {
    color: var(--purple-glow);
}

img {
    max-width: 100%;
    height: auto;
}

::selection {
    background: rgba(124, 58, 237, 0.4);
    color: var(--text-primary);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 100px 0;
    position: relative;
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all var(--transition-base);
    background: rgba(9, 9, 11, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: var(--border-subtle);
}

.navbar.scrolled {
    background: rgba(9, 9, 11, 0.95);
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
}

.logo-text {
    color: var(--text-muted);
    font-weight: 500;
}

.logo-accent {
    color: var(--purple-bright);
    font-weight: 700;
}

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

.nav-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-primary);
    background: rgba(124, 58, 237, 0.1);
}

.nav-cta {
    color: var(--purple-bright) !important;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.nav-cta:hover {
    background: rgba(124, 58, 237, 0.15) !important;
    border-color: rgba(124, 58, 237, 0.5);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger,
.hamburger::before,
.hamburger::after {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: all var(--transition-base);
    position: relative;
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    left: 0;
}

.hamburger::before { top: -7px; }
.hamburger::after { top: 7px; }

.nav-toggle.active .hamburger {
    background: transparent;
}
.nav-toggle.active .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}
.nav-toggle.active .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 12px;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-purple);
    color: white;
    box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
    color: white;
}

.btn-outline {
    background: transparent;
    color: var(--purple-bright);
    border: 1px solid rgba(124, 58, 237, 0.4);
}

.btn-outline:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.7);
    color: var(--purple-glow);
    transform: translateY(-2px);
}

.btn-youtube {
    background: #ff0000;
    color: white;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.15);
}

.btn-youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.25);
    color: white;
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 40px) 24px 40px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-void);
    overflow: hidden;
}

.void-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.void-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(76, 29, 149, 0.5) 0%, transparent 70%);
    top: -10%;
    right: -10%;
    animation-delay: 0s;
}

.void-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    bottom: -15%;
    left: -5%;
    animation-delay: -7s;
}

.void-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(109, 40, 217, 0.35) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation-delay: -14s;
}

.void-orb-sm {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.3) 0%, transparent 70%);
    top: -20%;
    right: -10%;
    animation-delay: -5s;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 60% 60% at 50% 50%, black 20%, transparent 80%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--purple-bright);
    margin-bottom: 32px;
    animation: fadeInUp 0.6s ease backwards;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--purple-core);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(124, 58, 237, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(124, 58, 237, 0); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.title-line {
    display: block;
}

.title-accent {
    background: linear-gradient(135deg, var(--purple-bright) 0%, var(--purple-glow) 50%, var(--purple-bright) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

.hero-subtitle {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 60px;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    padding-top: 40px;
    border-top: var(--border-subtle);
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat {
    text-align: center;
}

.stat-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-dim);
    margin-bottom: 4px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--purple-bright);
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(124, 58, 237, 0.15);
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.scroll-line {
    width: 1px;
    height: 48px;
    background: linear-gradient(to bottom, var(--purple-core), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; height: 48px; }
    50% { opacity: 1; height: 64px; }
}

/* --- Section Headers --- */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--purple-bright);
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 100px;
    margin-bottom: 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
}

/* --- Philosophy Section --- */
.philosophy {
    background: var(--gradient-void);
}

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

.philosophy-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 40px 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.philosophy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-purple);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.philosophy-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

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

.card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 14px;
    margin-bottom: 24px;
    font-size: 1.3rem;
    color: var(--purple-bright);
}

.philosophy-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* --- Mission Section --- */
.mission {
    background: var(--deep-black);
    overflow: hidden;
}

.mission-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.mission-text .section-tag {
    margin-bottom: 20px;
}

.mission-text .section-title {
    margin-bottom: 24px;
}

.mission-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.mission-description:last-of-type {
    margin-bottom: 32px;
}

.mission-visual {
    display: flex;
    justify-content: center;
}

.quote-card {
    background: var(--gradient-card);
    border: var(--border-glow);
    border-radius: 20px;
    padding: 48px 40px;
    position: relative;
    box-shadow: var(--shadow-glow);
}

.quote-icon {
    font-size: 2rem;
    color: var(--purple-core);
    opacity: 0.5;
    margin-bottom: 20px;
}

.quote-card blockquote {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 20px;
}

.quote-card cite {
    font-size: 0.9rem;
    font-style: normal;
    color: var(--purple-bright);
    font-weight: 600;
}

/* --- YouTube CTA Section --- */
.youtube-cta {
    background: var(--void-black);
}

.youtube-card {
    position: relative;
    overflow: hidden;
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: 80px 48px;
    text-align: center;
}

.youtube-card-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.youtube-card-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.youtube-icon {
    font-size: 3rem;
    color: #ff0000;
    margin-bottom: 24px;
    display: block;
}

.youtube-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.youtube-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 32px;
}

/* --- Page Hero (About, Journey) --- */
.page-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: calc(var(--nav-height) + 60px) 24px 60px;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
}

.page-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* --- About Page --- */
.about-content {
    background: var(--deep-black);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
}

.about-text h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 32px 28px;
    transition: all var(--transition-base);
}

.value-card:hover {
    border-color: rgba(124, 58, 237, 0.3);
    transform: translateY(-2px);
}

.value-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    color: var(--purple-core);
    opacity: 0.3;
    margin-bottom: 12px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.value-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

/* San Antonio Section */
.sa-section {
    background: var(--void-black);
    overflow: hidden;
    position: relative;
}

.sa-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.sa-text {
    max-width: 600px;
}

.sa-text .section-title {
    margin-bottom: 20px;
}

.sa-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.sa-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: var(--gradient-card);
    border: var(--border-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex-shrink: 0;
    box-shadow: var(--shadow-glow);
}

.sa-badge i {
    color: var(--purple-bright);
    font-size: 1.2rem;
}

.sa-badge span {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--purple-bright);
}

/* --- Journey / Timeline --- */
.timeline-section {
    background: var(--deep-black);
}

.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 32px;
    padding-bottom: 48px;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.marker-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--purple-core);
    border: 3px solid var(--shadow-dark);
    box-shadow: 0 0 12px rgba(124, 58, 237, 0.4);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.marker-dot-pulse {
    animation: pulse 2s ease-in-out infinite;
    background: var(--purple-bright);
}

.marker-line {
    width: 2px;
    flex: 1;
    background: linear-gradient(to bottom, var(--purple-core), rgba(124, 58, 237, 0.1));
    margin-top: 4px;
}

.timeline-content {
    padding-top: 0;
}

.timeline-date {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--purple-bright);
    padding: 4px 12px;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 100px;
    margin-bottom: 12px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-muted);
}

.timeline-future .timeline-content h3 {
    color: var(--purple-bright);
}

/* What's Coming */
.whats-coming {
    background: var(--void-black);
    overflow: hidden;
    position: relative;
}

.coming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.coming-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 36px 32px;
    transition: all var(--transition-base);
}

.coming-card:hover {
    transform: translateY(-4px);
    border-color: rgba(124, 58, 237, 0.3);
    box-shadow: var(--shadow-glow);
}

.coming-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--purple-bright);
}

.coming-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* Join Section */
.join-section {
    background: var(--deep-black);
}

.join-card {
    text-align: center;
    background: var(--gradient-card);
    border: var(--border-glow);
    border-radius: 24px;
    padding: 64px 48px;
    box-shadow: var(--shadow-glow);
}

.join-card h2 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
}

.join-card p {
    font-size: 1.05rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Footer --- */
.footer {
    background: var(--void-black);
    border-top: var(--border-subtle);
    padding: 64px 0 32px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 200px;
    background: radial-gradient(ellipse, rgba(124, 58, 237, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.footer-tagline {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.footer-location {
    font-size: 0.9rem;
    color: var(--text-dim);
}

.footer-location i {
    color: var(--purple-bright);
    margin-right: 4px;
}

.footer-links h4,
.footer-social h4 {
    font-family: var(--font-display);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: color var(--transition-fast);
}

.footer-links a:hover {
    color: var(--purple-bright);
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 12px;
    color: var(--purple-bright);
    font-size: 1.1rem;
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    transform: translateY(-2px);
    color: var(--purple-glow);
}

.footer-bottom {
    padding-top: 32px;
    border-top: var(--border-subtle);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-dim);
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .mission-content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(9, 9, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: var(--border-subtle);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all var(--transition-base);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .section {
        padding: 72px 0;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        flex-direction: column;
        gap: 20px;
    }

    .stat-divider {
        width: 40px;
        height: 1px;
    }

    .about-values {
        grid-template-columns: 1fr;
    }

    .coming-grid {
        grid-template-columns: 1fr;
    }

    .sa-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .youtube-card {
        padding: 48px 24px;
    }

    .join-card {
        padding: 48px 24px;
    }

    .quote-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .page-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
