/* =============================================
   NEW SPONSORS SECTION
   ============================================= */
.sponsors-section-new {
    min-height: auto;
    padding: 100px 0;
    background: var(--white);
}

.sponsors-container-new {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.sponsors-header-new .section-num {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.sponsors-header-new h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.sponsors-header-new p {
    font-size: 16px;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

.sponsor-tier-section {
    margin-bottom: 50px;
}

.tier-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.tier-header .tier-icon { font-size: 20px; }
.tier-header.gold .tier-icon { color: #F8BE19; }
.tier-header.technical .tier-icon { color: #8B5CF6; }
.tier-header.returning .tier-icon { color: #22C55E; }

.tier-header h3 {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
}

.tier-header .tier-amount {
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--dark-gray);
    padding: 4px 12px;
    background: var(--light-gray);
    border-radius: 999px;
}

.sponsor-tier-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.sponsor-card-new {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.sponsor-card-new::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--tier-color);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.sponsor-card-new:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    border-color: var(--tier-color);
}

.sponsor-card-new:hover::before { transform: scaleX(1); }

.sponsor-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sponsor-logo-wrap {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-logo-wrap img {
    max-width: 100%;
    max-height: 70px;
    object-fit: contain;
    transition: transform 0.4s;
}

.sponsor-card-new:hover .sponsor-logo-wrap img { transform: scale(1.05); }

.sponsor-card-info { text-align: center; }

.sponsor-name {
    display: block;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.sponsor-tier-badge {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light-gray);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 9px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.sponsor-card-new.gold .sponsor-tier-badge { background: rgba(248, 190, 25, 0.15); color: #D4A017; }
.sponsor-card-new.technical .sponsor-tier-badge { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }
.sponsor-card-new.returning .sponsor-tier-badge { background: rgba(34, 197, 94, 0.15); color: #22C55E; }

.sponsor-view-hint {
    font-size: 11px;
    color: var(--dark-gray);
    opacity: 0;
    transition: opacity 0.3s;
}

.sponsor-card-new:hover .sponsor-view-hint { opacity: 1; }

/* Sponsor Modal */
.sponsor-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
    animation: fadeIn 0.3s ease-out;
}

.sponsor-modal {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.sponsor-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--surface);
    color: var(--charcoal);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.sponsor-modal-close:hover { background: var(--charcoal); color: var(--white); }

.sponsor-modal-logo {
    padding: 50px;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    display: flex;
    align-items: center;
    justify-content: center;
}

.sponsor-modal-logo img { max-width: 200px; max-height: 100px; object-fit: contain; }

.sponsor-modal-content { padding: 30px; }

.sponsor-modal-content h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.sponsor-modal-desc {
    font-size: 15px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 25px;
}

.sponsor-modal-contribution {
    padding: 20px;
    background: var(--light-gray);
    border-radius: 12px;
    margin-bottom: 25px;
}

.contribution-label {
    display: block;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.sponsor-modal-contribution p { font-size: 14px; color: var(--charcoal); line-height: 1.6; }

.sponsor-website-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.sponsor-website-btn:hover { background: var(--dark-gray); transform: translateX(4px); }

/* Sponsorship Tiers Toggle Section */
.sponsorship-tiers-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.tiers-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 20px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
    cursor: pointer;
    transition: all 0.3s;
}

.tiers-toggle-btn:hover { background: var(--charcoal); color: var(--white); }
.tiers-toggle-btn.active { background: var(--charcoal); color: var(--white); border-radius: 12px 12px 0 0; }

.toggle-arrow { font-size: 10px; }

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    padding: 30px;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-top: none;
    border-radius: 0 0 12px 12px;
    animation: slideDown 0.3s ease-out;
}

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

.tier-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

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

.tier-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--tier-accent);
}

.tier-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.tier-price {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--tier-accent);
}

.tier-benefits { list-style: none; padding: 0; margin: 0; }

.tier-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: var(--dark-gray);
    margin-bottom: 10px;
    line-height: 1.4;
}

.tier-benefits li:last-child { margin-bottom: 0; }
.benefit-check { color: var(--tier-accent); font-weight: bold; flex-shrink: 0; }

/* Sponsor CTA Section */
.sponsor-cta-section {
    margin-top: 60px;
    padding: 50px;
    background: linear-gradient(135deg, var(--light-gray), var(--off-white));
    border: 1px solid var(--border);
    border-radius: 24px;
    text-align: center;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.cta-content > p {
    font-size: 15px;
    color: var(--dark-gray);
    max-width: 500px;
    margin: 0 auto 30px;
    line-height: 1.6;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 50px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.cta-stat { text-align: center; }

.cta-stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--charcoal);
}

.cta-stat-label {
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    text-transform: uppercase;
}

.sponsor-cta-btn {
    display: inline-block;
    padding: 16px 40px;
    background: var(--charcoal);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.sponsor-cta-btn:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* =============================================
   BUDGET & RESOURCES SECTION
   ============================================= */
.budget-section {
    min-height: auto;
    padding: 100px 0;
    background: var(--white);
}

.budget-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.budget-header .section-num {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 3px;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.budget-header h2 {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    letter-spacing: 4px;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.budget-header p {
    font-size: 16px;
    color: var(--dark-gray);
    letter-spacing: 1px;
}

/* Budget Table */
.budget-table-wrap {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 50px;
}

.budget-table {
    width: 100%;
    border-collapse: collapse;
}

.budget-table thead {
    background: var(--light-gray);
}

.budget-table th {
    padding: 18px 24px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--charcoal);
    text-align: left;
    text-transform: uppercase;
}

.budget-table td {
    padding: 18px 24px;
    font-size: 14px;
    color: var(--dark-gray);
    border-top: 1px solid var(--border);
}

.budget-table tbody tr:hover {
    background: var(--light-gray);
}

.budget-table .category { font-weight: 500; color: var(--charcoal); }

.budget-table .variance {
    font-family: var(--font-display);
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
}

.budget-table .variance.positive { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.budget-table .variance.negative { background: rgba(239, 68, 68, 0.15); color: #EF4444; }
.budget-table .variance.neutral { background: var(--light-gray); color: var(--dark-gray); }

.budget-table tfoot { background: var(--charcoal); }
.budget-table tfoot td { color: var(--white); font-weight: 600; }
.budget-table tfoot .variance { background: rgba(255,255,255,0.2); color: #fff; }

/* Budget Cards */
.budget-summary {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

.budget-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.budget-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.budget-card-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.budget-card-label {
    font-size: 12px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    text-transform: uppercase;
}

/* Resources/Downloads Section */
.resources-section {
    margin-top: 60px;
    padding-top: 60px;
    border-top: 1px solid var(--border);
}

.resources-header {
    text-align: center;
    margin-bottom: 40px;
}

.resources-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
    margin-bottom: 10px;
}

.resources-header p {
    font-size: 14px;
    color: var(--dark-gray);
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.resource-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s;
}

.resource-card:hover {
    border-color: var(--charcoal);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.resource-icon {
    width: 56px;
    height: 56px;
    background: var(--light-gray);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.resource-info { flex: 1; }

.resource-name {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--charcoal);
    margin-bottom: 4px;
}

.resource-desc {
    font-size: 12px;
    color: var(--dark-gray);
}

.resource-download {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--dark-gray);
    opacity: 0;
    transition: opacity 0.3s;
}

.resource-card:hover .resource-download { opacity: 1; }

/* =============================================
   IMPROVED TEAM PROFILE MODAL
   ============================================= */
.profile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: fadeIn 0.3s ease-out;
}

.profile-modal {
    background: var(--surface);
    border-radius: 24px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    overflow-x: hidden;
    animation: profileSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

@keyframes profileSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.profile-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    color: white;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.profile-close:hover {
    background: rgba(255,255,255,0.2);
    transform: rotate(90deg);
}

/* Profile Hero */
.profile-hero {
    position: relative;
    padding: 50px 30px 30px;
    overflow: hidden;
}

.profile-hero-bg {
    position: absolute;
    inset: 0;
    background: var(--member-gradient);
    opacity: 0.95;
}

.profile-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.profile-hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 24px;
}

.profile-avatar-large {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    animation: avatarPulse 2s infinite;
}

@keyframes avatarPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0.4); }
    50% { box-shadow: 0 0 0 15px rgba(255,255,255,0); }
}

.profile-avatar-large span {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: white;
    letter-spacing: 2px;
}

.profile-hero-info {
    flex: 1;
}

.profile-member-number {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 11px;
    letter-spacing: 3px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.profile-name {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 32px);
    font-weight: 700;
    color: white;
    margin: 0 0 8px;
    line-height: 1.1;
}

.profile-role {
    display: block;
    font-family: var(--font-display);
    font-size: 12px;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 6px;
}

.profile-tagline {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.9);
}

/* Achievements */
.profile-achievements {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.achievement-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 1px;
    color: white;
    text-transform: uppercase;
}

/* Profile Tabs */
.profile-tabs {
    display: flex;
    border-bottom: 1px solid var(--border);
    background: var(--light-gray);
}

.profile-tab {
    flex: 1;
    padding: 16px;
    background: transparent;
    border: none;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--dark-gray);
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
}

.profile-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--member-color);
    transition: all 0.3s;
    transform: translateX(-50%);
}

.profile-tab:hover {
    color: var(--charcoal);
    background: rgba(0,0,0,0.03);
}

.profile-tab.active {
    color: var(--charcoal);
    background: var(--surface);
}

.profile-tab.active::after {
    width: 100%;
}

/* Profile Content */
.profile-content {
    padding: 30px;
}

.profile-tab-content {
    animation: tabFadeIn 0.3s ease-out;
}

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

.profile-tab-content h4 {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* About Tab */
.about-bio p {
    font-size: 14px;
    line-height: 1.8;
    color: var(--dark-gray);
    white-space: pre-line;
}

.about-contact {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.profile-email-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: var(--charcoal);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-size: 13px;
    transition: all 0.3s;
}

.profile-email-btn:hover {
    background: #333;
    transform: translateX(4px);
}

.email-icon {
    font-size: 18px;
}

/* Skills Tab */
.skills-bars {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.skill-bar-item {
    animation: skillSlideIn 0.4s ease-out forwards;
    opacity: 0;
}

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

.skill-bar-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}

.skill-bar-name {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--charcoal);
}

.skill-bar-percent {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    color: var(--member-color);
}

.skill-bar-track {
    height: 8px;
    background: var(--light-gray);
    border-radius: 999px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: var(--member-gradient);
    border-radius: 999px;
    animation: skillFillIn 0.8s ease-out forwards;
    transform-origin: left;
    transform: scaleX(0);
}

@keyframes skillFillIn {
    to { transform: scaleX(1); }
}

/* Tasks Tab */
.raci-legend-new {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 12px;
}

.raci-item-new {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--dark-gray);
}

.raci-code {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 700;
    color: white;
}

.raci-code[data-code="R"] { background: #22C55E; }
.raci-code[data-code="A"] { background: #3B82F6; }
.raci-code[data-code="C"] { background: #F59E0B; }
.raci-code[data-code="I"] { background: #8B5CF6; }

.tasks-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.task-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.2s;
}

.task-item:hover {
    background: var(--charcoal);
}

.task-item:hover .task-name {
    color: white;
}

.task-name {
    font-size: 13px;
    color: var(--charcoal);
    transition: color 0.2s;
}

.task-level {
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 6px;
    color: white;
}

.task-level[data-level="R+A"] { background: linear-gradient(90deg, #22C55E, #3B82F6); }
.task-level[data-level="R"] { background: #22C55E; }
.task-level[data-level="A"] { background: #3B82F6; }
.task-level[data-level="C"] { background: #F59E0B; }
.task-level[data-level="I"] { background: #8B5CF6; }

/* Responsive */
@media (max-width: 768px) {
    .sponsors-container-new { padding: 0 20px; }
    .sponsor-tier-grid { grid-template-columns: 1fr; }
    .tiers-grid { grid-template-columns: 1fr; padding: 20px; }
    .sponsor-cta-section { padding: 30px 20px; }
    .cta-stats { gap: 30px; }
    .sponsor-modal-overlay { padding: 20px; }

    .budget-container { padding: 0 20px; }
    .budget-table th, .budget-table td { padding: 12px 16px; font-size: 12px; }
    .budget-summary { grid-template-columns: repeat(2, 1fr); }
    .resources-grid { grid-template-columns: 1fr; }

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

    .profile-avatar-large {
        width: 80px;
        height: 80px;
    }

    .profile-avatar-large span {
        font-size: 28px;
    }

    .profile-achievements {
        justify-content: center;
    }

    .profile-content {
        padding: 20px;
    }

    .raci-legend-new {
        flex-direction: column;
        gap: 8px;
    }

    .task-item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}

/* =============================================
   RISK ASSESSMENT SECTION
   ============================================= */
.risk-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--charcoal);
    text-align: center;
    margin-bottom: 30px;
}

.risk-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.risk-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px 24px;
    transition: all 0.3s;
}

.risk-card:hover {
    border-color: var(--charcoal);
    transform: translateX(4px);
}

.risk-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.risk-name {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--charcoal);
}

.risk-badges {
    display: flex;
    gap: 8px;
}

.risk-badge {
    padding: 4px 12px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
}

.risk-badge.likelihood.low { background: rgba(34, 197, 94, 0.15); color: #22C55E; }
.risk-badge.likelihood.medium { background: rgba(245, 158, 11, 0.15); color: #F59E0B; }
.risk-badge.likelihood.high { background: rgba(239, 68, 68, 0.15); color: #EF4444; }

.risk-badge.impact.low { background: rgba(59, 130, 246, 0.15); color: #3B82F6; }
.risk-badge.impact.medium { background: rgba(139, 92, 246, 0.15); color: #8B5CF6; }
.risk-badge.impact.high { background: rgba(236, 72, 153, 0.15); color: #EC4899; }

.risk-mitigation {
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.5;
}

.risk-mitigation strong {
    color: var(--charcoal);
}

/* =============================================
   SWOT ANALYSIS SECTION
   ============================================= */
.swot-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border);
}

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

.swot-card {
    background: var(--surface);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s;
}

.swot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.swot-card.strengths { border-color: rgba(34, 197, 94, 0.3); }
.swot-card.weaknesses { border-color: rgba(239, 68, 68, 0.3); }
.swot-card.opportunities { border-color: rgba(59, 130, 246, 0.3); }
.swot-card.threats { border-color: rgba(245, 158, 11, 0.3); }

.swot-card.strengths:hover { border-color: #22C55E; }
.swot-card.weaknesses:hover { border-color: #EF4444; }
.swot-card.opportunities:hover { border-color: #3B82F6; }
.swot-card.threats:hover { border-color: #F59E0B; }

.swot-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.swot-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    color: white;
}

.swot-card.strengths .swot-icon { background: linear-gradient(135deg, #22C55E, #16A34A); }
.swot-card.weaknesses .swot-icon { background: linear-gradient(135deg, #EF4444, #DC2626); }
.swot-card.opportunities .swot-icon { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.swot-card.threats .swot-icon { background: linear-gradient(135deg, #F59E0B, #D97706); }

.swot-header span:last-child {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--charcoal);
    text-transform: uppercase;
}

.swot-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.swot-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--dark-gray);
    line-height: 1.4;
}

.swot-card li:last-child {
    margin-bottom: 0;
}

.swot-card li::before {
    content: '\2022';
    position: absolute;
    left: 0;
    font-weight: bold;
}

.swot-card.strengths li::before { color: #22C55E; }
.swot-card.weaknesses li::before { color: #EF4444; }
.swot-card.opportunities li::before { color: #3B82F6; }
.swot-card.threats li::before { color: #F59E0B; }

/* Budget Card Highlight */
.budget-card.highlight {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(34, 197, 94, 0.05));
    border-color: rgba(34, 197, 94, 0.3);
}

.budget-card-value.savings {
    color: #22C55E;
}

/* Responsive SWOT */
@media (max-width: 768px) {
    .swot-grid {
        grid-template-columns: 1fr;
    }

    .risk-header {
        flex-direction: column;
    }
}

/* =============================================
   LOADING SCREEN
   ============================================= */
#loading-screen {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* EK3 Watermark */
.loading-watermark {
    position: absolute;
    font-family: var(--font-display);
    font-size: clamp(200px, 40vw, 500px);
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    letter-spacing: -10px;
    user-select: none;
    pointer-events: none;
    animation: watermarkPulse 4s ease-in-out infinite;
}

@keyframes watermarkPulse {
    0%, 100% { opacity: 0.03; transform: scale(1); }
    50% { opacity: 0.06; transform: scale(1.02); }
}

/* Eclipse Rings */
.eclipse-rings {
    position: absolute;
    width: 400px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eclipse-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid transparent;
    animation: ringRotate 8s linear infinite;
}

.eclipse-ring.ring-1 {
    width: 280px;
    height: 280px;
    border-color: rgba(62, 12, 112, 0.4);
    animation-duration: 8s;
}

.eclipse-ring.ring-2 {
    width: 320px;
    height: 320px;
    border-color: rgba(248, 190, 25, 0.3);
    animation-duration: 12s;
    animation-direction: reverse;
}

.eclipse-ring.ring-3 {
    width: 360px;
    height: 360px;
    border-color: rgba(139, 92, 246, 0.2);
    animation-duration: 16s;
}

@keyframes ringRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Add gradient arc to rings */
.eclipse-ring::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    border-radius: 2px;
    transform: translateX(-50%);
}

.eclipse-ring.ring-1::before { background: linear-gradient(90deg, transparent, #3E0C70, transparent); }
.eclipse-ring.ring-2::before { background: linear-gradient(90deg, transparent, #F8BE19, transparent); }
.eclipse-ring.ring-3::before { background: linear-gradient(90deg, transparent, #8B5CF6, transparent); }

/* Loading Content */
.loading-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Logo */
.loading-logo-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(62, 12, 112, 0.5) 0%, rgba(248, 190, 25, 0.2) 40%, transparent 70%);
    border-radius: 50%;
    animation: logoGlow 3s ease-in-out infinite;
    filter: blur(30px);
}

@keyframes logoGlow {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 1; }
}

.loading-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: logoFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 30px rgba(62, 12, 112, 0.5));
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Title */
.loading-title {
    font-family: var(--font-display);
    font-size: clamp(24px, 5vw, 36px);
    font-weight: 700;
    letter-spacing: 8px;
    color: white;
    margin: 0;
    text-shadow: 0 0 40px rgba(62, 12, 112, 0.5);
    animation: titleFadeIn 1s ease-out 0.3s both;
}

@keyframes titleFadeIn {
    from { opacity: 0; transform: translateY(20px); letter-spacing: 20px; }
    to { opacity: 1; transform: translateY(0); letter-spacing: 8px; }
}

/* Tagline */
.loading-tagline {
    font-family: var(--font-body);
    font-size: 14px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    animation: taglineFadeIn 1s ease-out 0.6s both;
}

@keyframes taglineFadeIn {
    from { opacity: 0; }
    to { opacity: 0.5; }
}

/* Progress Bar */
.loading-progress-wrap {
    width: 280px;
    margin-top: 20px;
    animation: progressFadeIn 1s ease-out 0.8s both;
}

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

.loading-progress-track {
    position: relative;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: visible;
}

.loading-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #3E0C70, #F8BE19);
    border-radius: 999px;
    transition: width 0.15s ease-out;
    box-shadow: 0 0 20px rgba(248, 190, 25, 0.5);
}

.loading-progress-glow {
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: #F8BE19;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    filter: blur(10px);
    opacity: 0.8;
    transition: left 0.15s ease-out;
}

.loading-progress-info {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
}

.loading-text {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.6);
}

.loading-percent {
    font-family: var(--font-display);
    font-size: 10px;
    letter-spacing: 1px;
    color: #F8BE19;
    font-weight: 600;
}

/* Bottom Accent Line */
.loading-accent-line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #3E0C70, #F8BE19, #3E0C70, transparent);
    animation: accentSlide 2s ease-in-out infinite;
}

@keyframes accentSlide {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* Responsive Loading Screen */
@media (max-width: 600px) {
    .loading-watermark {
        font-size: 150px;
    }

    .eclipse-rings {
        transform: scale(0.7);
    }

    .loading-logo {
        width: 80px;
        height: 80px;
    }

    .loading-title {
        font-size: 20px;
        letter-spacing: 4px;
    }

    .loading-tagline {
        font-size: 11px;
        letter-spacing: 2px;
    }

    .loading-progress-wrap {
        width: 220px;
    }
}
