/* ============================================
   STUDENT PLACEMENTS — LIGHT THEME
   ============================================ */

:root {
    --orange: #ff6b35;
    --black: #000000;
    --white: #ffffff;
}

.sp-page {
    background: #f5f3ef;
    color: #111;
    cursor: none;
}

.sp-page .menu-btn {
    border-color: #111 !important;
    color: #111 !important;
    background: transparent !important;
    opacity: 1 !important;
}
.sp-page .menu-btn:hover {
    background: #111 !important;
    color: #fff !important;
}

/* NAVBAR */
.sp-navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 40px;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(245,243,239,0.96) 0%, rgba(245,243,239,0) 100%);
}
.sp-nav-logo img { height: 44px; width: auto; display: block; }
.sp-menu-btn {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid #111 !important;
    color: #111 !important;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    letter-spacing: 2px;
    cursor: none;
    transition: all 0.3s ease;
    opacity: 1 !important;
}
.sp-menu-btn:hover { background: #111 !important; color: #fff !important; }

/* HERO */
.sp-hero {
    position: relative;
    overflow: hidden;
}
.sp-hero-img-wrap {
    position: relative;
    width: 100%;
    line-height: 0;
}
.sp-hero-img {
    width: 100%;
    height: auto;
    display: block;
}
.sp-hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.5) 0%,
        rgba(0,0,0,0.2) 45%,
        rgba(0,0,0,0.75) 100%
    );
}
.sp-hero-content {
    position: absolute;
    bottom: 60px; left: 80px;
    max-width: 580px;
    z-index: 2;
}
.sp-hero-label {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 20px;
    padding-left: 36px;
    position: relative;
}
.sp-hero-label::before {
    content: '';
    position: absolute; left: 0; top: 50%;
    width: 24px; height: 1px;
    background: var(--orange);
}
.sp-hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 9vw, 110px);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 24px;
}
.sp-hero-title span { color: var(--orange); }
.sp-hero-sub {
    font-size: 15px; font-weight: 400;
    color: rgba(255,255,255,0.88);
    line-height: 1.7;
    max-width: 440px;
}
.sp-hero-scroll {
    position: absolute; bottom: 40px; right: 60px;
    display: flex; flex-direction: column; align-items: center; gap: 12px;
    z-index: 2;
}
.sp-hero-scroll span {
    font-size: 10px; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    writing-mode: vertical-rl;
}
.sp-scroll-line {
    width: 1px; height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4), transparent);
    animation: sp-scroll 2s ease-in-out infinite;
}
@keyframes sp-scroll { 0%,100%{opacity:0.3;transform:scaleY(1)} 50%{opacity:1;transform:scaleY(0.6)} }

/* INTERNSHIP BANNER */
.sp-internship-banner {
    background: #111;
    padding: 40px 80px;
}
.sp-internship-inner {
    max-width: 1400px; margin: 0 auto;
    display: flex; align-items: center; gap: 32px;
}
.sp-internship-icon {
    width: 56px; height: 56px; flex-shrink: 0;
    background: var(--orange);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
}
.sp-internship-text { flex: 1; }
.sp-internship-text strong {
    display: block;
    font-size: 16px; font-weight: 700;
    color: #fff; margin-bottom: 8px;
}
.sp-internship-text p { font-size: 14px; color: #aaa; line-height: 1.6; margin: 0; }
.sp-internship-btn {
    flex-shrink: 0;
    display: inline-block;
    padding: 14px 28px;
    border: 1px solid #333;
    color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.sp-internship-btn:hover { border-color: var(--orange); color: var(--orange); }

/* SHARED SECTION STYLES */
.sp-section-inner { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.sp-section-header { text-align: center; margin-bottom: 60px; }
.sp-section-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 16px;
}
.sp-section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 400; letter-spacing: 2px;
    color: #111; line-height: 1;
    margin-bottom: 16px;
}
.sp-section-sub {
    font-size: 15px; color: #444; line-height: 1.7;
    max-width: 480px; margin: 0 auto;
}

/* ALUMNI GRID */
.sp-alumni { background: #f5f3ef; padding: 100px 0; }
.sp-alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #dedad3;
    border: 2px solid #dedad3;
}
.sp-alumni-card {
    background: #f5f3ef;
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 12px;
    transition: background 0.2s, transform 0.2s;
    position: relative;
}
.sp-alumni-card:hover {
    background: #fff;
    z-index: 1;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}
.sp-alumni-card--highlight::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 100%;
    background: var(--orange);
}
.sp-alumni-info { display: flex; flex-direction: column; gap: 4px; }
.sp-alumni-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px; letter-spacing: 0.5px;
    color: #111;
}
.sp-alumni-card:hover .sp-alumni-name { color: var(--orange); }
.sp-alumni-role {
    font-size: 11px; font-weight: 700;
    letter-spacing: 1px; text-transform: uppercase;
    color: #666;
}
.sp-alumni-company {
    font-size: 13px; font-weight: 700;
    letter-spacing: 0.5px;
    color: #111;
    padding-top: 10px;
    border-top: 1px solid #e0dbd3;
    display: flex;
    align-items: center;
    gap: 8px;
}

.sp-alumni-filler {
    background: #f5f3ef;
}

/* PARTNER WORDCLOUD */
.sp-partners {
    background: #111;
    padding: 100px 0;
}
.sp-partners .sp-section-header .sp-section-tag { color: rgba(255,107,53,0.9); }
.sp-partners .sp-section-header .sp-section-title { color: #fff; }
.sp-partners .sp-section-header .sp-section-sub { color: #666; }

.sp-wordcloud {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 6px 20px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 0;
    line-height: 1;
}
.sp-wordcloud span {
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 1.5px;
    color: #e8e3db;
    transition: color 0.2s, transform 0.2s;
    cursor: default;
    display: inline-block;
}
.sp-wordcloud span:hover {
    color: #fff;
    transform: scale(1.06);
}
.wc-accent { color: var(--orange) !important; }
.wc-accent:hover { color: #ff8c5a !important; }

/* Size tiers */
.wc-xl {
    font-size: clamp(38px, 5vw, 60px);
    color: #fff;
    letter-spacing: 2px;
}
.wc-lg {
    font-size: clamp(26px, 3.5vw, 40px);
    color: #d4cfc7;
    letter-spacing: 1.5px;
}
.wc-md {
    font-size: clamp(18px, 2.5vw, 27px);
    color: #b0aa9f;
    letter-spacing: 1px;
}
.wc-sm {
    font-size: clamp(14px, 1.8vw, 19px);
    color: #888278;
    letter-spacing: 0.5px;
}
.wc-xs {
    font-size: clamp(11px, 1.3vw, 14px);
    color: #615c54;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Separators between words */
.sp-wordcloud span:not(:last-child)::after {
    content: '';
}



/* AWARDS */
.sp-awards { background: #f5f3ef; padding: 100px 0; }
.sp-awards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: #dedad3;
    border: 2px solid #dedad3;
}
.sp-award-card {
    background: #f5f3ef;
    padding: 40px 32px;
    transition: background 0.2s;
}
.sp-award-card:hover { background: #fff; }
.sp-award-badge {
    display: inline-block;
    font-size: 10px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    color: var(--orange);
    border: 1px solid rgba(255,107,53,0.3);
    padding: 5px 10px;
    margin-bottom: 16px;
}
.sp-award-film {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px; letter-spacing: 1px;
    color: #111; margin-bottom: 10px; font-weight: 400;
}
.sp-award-fest {
    font-size: 13px; color: #555; line-height: 1.5;
}

/* CTA */
.sp-cta {
    background: #111;
    padding: 120px 80px;
    text-align: center;
    position: relative; overflow: hidden;
}
.sp-cta::before {
    content: 'PLACED';
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(80px, 16vw, 240px);
    color: transparent;
    -webkit-text-stroke: 1px rgba(255,255,255,0.04);
    pointer-events: none; white-space: nowrap; letter-spacing: 10px;
}
.sp-cta-inner { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; }
.sp-cta-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--orange); margin-bottom: 20px;
}
.sp-cta-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 7vw, 96px);
    font-weight: 400; letter-spacing: 2px;
    color: #fff; line-height: 0.95;
    margin-bottom: 24px;
}
.sp-cta-sub {
    font-size: 15px; color: rgba(255,255,255,0.65);
    line-height: 1.7; margin-bottom: 40px;
}
.sp-cta-btn {
    display: inline-flex; align-items: center; gap: 12px;
    padding: 18px 40px;
    background: var(--orange); color: #fff;
    font-size: 12px; font-weight: 700;
    letter-spacing: 2px; text-transform: uppercase;
    text-decoration: none;
    transition: background 0.3s, transform 0.2s;
}
.sp-cta-btn:hover { background: #e55a26; transform: translateY(-2px); }
.sp-cta-btn svg { transition: transform 0.2s; }
.sp-cta-btn:hover svg { transform: translateX(4px); }

/* Footer vars override */
.sp-page .site-footer { position: relative; z-index: 2; }
.sp-page .site-footer, .sp-page .site-footer * { --orange: #ff6b35; --black: #000000; --white: #ffffff; }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .sp-section-inner { padding: 0 40px; }
    .sp-internship-banner { padding: 32px 40px; }
    .sp-alumni-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-awards-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-cta { padding: 80px 40px; }
}
@media (max-width: 768px) {
    .sp-navbar { padding: 16px 20px; }
    .sp-hero { min-height: 300px; }
    .sp-hero-content { left: 20px; right: 20px; bottom: 30px; }
    .sp-hero-title { font-size: 52px; }
    .sp-hero-scroll { display: none; }
    .sp-internship-banner { padding: 28px 20px; }
    .sp-internship-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
    .sp-alumni-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-awards-grid { grid-template-columns: 1fr; }
    .sp-section-inner { padding: 0 20px; }
    .sp-alumni { padding: 60px 0; }
    .sp-partners { padding: 60px 0; }
    .sp-wordcloud { gap: 4px 14px; }
    .wc-xl { font-size: 32px; }
    .wc-lg { font-size: 22px; }
    .wc-md { font-size: 16px; }
    .wc-sm { font-size: 13px; }
    .wc-xs { font-size: 10px; }
    .sp-awards { padding: 60px 0; }
    .sp-cta { padding: 60px 20px; }
}
@media (max-width: 480px) {
    .sp-alumni-grid { grid-template-columns: 1fr; }
}