:root {
    --bg-dark: #0c0f12;
    --text-dark: #ffffff;
    --bg-light: #f4f4f4;
    --text-light: #111111;
    --accent: #888888;
    
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-dark);
    overflow-x: hidden;
    cursor: none;
}

/* Custom Cursor */
.cursor {
    width: 20px; height: 20px; background-color: white; border-radius: 50%;
    position: fixed; top: 0; left: 0; pointer-events: none; mix-blend-mode: difference;
    z-index: 9999; transform: translate(-50%, -50%); transition: width 0.3s, height 0.3s, background-color 0.3s;
}
.cursor.hovering { width: 60px; height: 60px; background-color: transparent; border: 1px solid white; }

/* Themes */
.theme-light { background-color: var(--bg-light); color: var(--text-light); }
.theme-dark { background-color: var(--bg-dark); color: var(--text-dark); }

/* Typography */
.huge-title {
    font-family: var(--font-heading); font-size: clamp(5rem, 12vw, 15rem);
    font-weight: 800; line-height: 0.9; letter-spacing: -0.04em; text-transform: uppercase;
}
h2.section-title {
    font-family: var(--font-body); font-size: 0.875rem; text-transform: uppercase;
    letter-spacing: 0.1em; color: var(--accent); margin-bottom: 2rem;
}
h3 {
    font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600; line-height: 1.1; letter-spacing: -0.02em;
}
p { font-size: 1.125rem; line-height: 1.6; max-width: 600px; }

/* Layout Utilities */
.container { padding: 8rem 5%; max-width: 1600px; margin: 0 auto; }
.container-fluid { padding: 8rem 0 8rem 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 8rem; }
.text-center { text-align: center; }

/* Navbar */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; padding: 2rem 5%;
    display: flex; justify-content: space-between; align-items: center; z-index: 100; mix-blend-mode: difference; color: white;
}
.logo { font-family: var(--font-heading); font-weight: 800; font-size: 1.5rem; letter-spacing: -0.02em; }
.menu-links a { color: white; text-decoration: none; margin-left: 2rem; font-size: 0.875rem; text-transform: uppercase; letter-spacing: 0.05em; transition: opacity 0.3s; }
.menu-links a:hover { opacity: 0.6; }

/* Hero */
.hero { position: relative; height: 100vh; display: flex; align-items: center; padding: 0 5%; overflow: hidden; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 120%; background-size: cover; background-position: center; z-index: -1; filter: brightness(0.7); will-change: transform; }
.hero-content { position: relative; z-index: 1; max-width: 1200px; }
.hero-sub { margin-top: 2rem; font-size: 1.5rem; max-width: 500px; color: #e0e0e0; }

/* Team Horizontal Swipe */
.team-swipe-container {
    display: flex; gap: 2rem; overflow-x: auto; padding-bottom: 2rem; padding-left: 5%; padding-right: 5%; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.team-swipe-container::-webkit-scrollbar { display: none; }
.team-card { flex: 0 0 80%; max-width: 400px; scroll-snap-align: start; }
.team-img { width: 100%; aspect-ratio: 3/4; background-size: cover; background-position: center; border-radius: 12px; margin-bottom: 1.5rem; filter: grayscale(100%); transition: filter 0.4s, transform 0.4s; }
.team-card:hover .team-img { filter: grayscale(0%); transform: scale(1.02); }
.team-info h3 { font-size: 1.5rem; }
.team-info p { color: var(--accent); font-size: 1rem; }

/* History Timeline */
.history-wrapper {
    overflow: hidden;
    transition: max-height 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.history-list { display: flex; flex-direction: column; gap: 3rem; border-left: 1px solid var(--accent); padding-left: 2rem; margin-left: 1rem; }
.history-item { position: relative; }
.history-item::before { content: ''; position: absolute; left: -2.35rem; top: 0.5rem; width: 12px; height: 12px; border-radius: 50%; background: var(--text-dark); }
.history-year { font-family: var(--font-heading); font-size: 1.2rem; color: var(--accent); margin-bottom: 0.5rem; }
.history-details h3 { font-size: 2rem; margin-bottom: 0.5rem; }

.btn { display: inline-block; padding: 1rem 2rem; background: var(--text-light); color: var(--bg-light); text-decoration: none; font-weight: 500; border-radius: 50px; transition: transform 0.3s, background 0.3s; cursor: pointer; border: none; font-family: var(--font-body); font-size: 1rem; }
.btn:hover { transform: translateY(-5px); background: var(--accent); }
.history-more-btn { background: transparent; color: var(--text-dark); border: 1px solid var(--text-dark); }
.history-more-btn:hover { background: var(--text-dark); color: var(--bg-dark); }

/* Video Swipe Container */
.video-swipe-container {
    display: flex; gap: 2rem; overflow-x: auto; padding-bottom: 2rem; padding-left: 5%; padding-right: 5%; scroll-snap-type: x mandatory; -ms-overflow-style: none; scrollbar-width: none;
}
.video-swipe-container::-webkit-scrollbar { display: none; }
.video-card { flex: 0 0 85%; max-width: 800px; scroll-snap-align: center; }
.video-card h3 { font-size: 1.5rem; margin-bottom: 1rem; color: var(--text-light); }
.video-wrapper { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; border-radius: 12px; background: #000; }
.video-wrapper iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; }

/* Footer */
.footer { padding: 8rem 5%; }
.footer-link { display: inline-block; font-size: 2rem; color: var(--text-dark); text-decoration: none; border-bottom: 2px solid transparent; transition: border-color 0.3s; }
.footer-link:hover { border-color: var(--text-dark); }

/* Animations */
.fade-up { opacity: 0; transform: translateY(50px); transition: opacity 1s cubic-bezier(0.25, 1, 0.5, 1), transform 1s cubic-bezier(0.25, 1, 0.5, 1); }
.fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }

/* Split External Links Section */
.split-container {
    display: flex;
    flex-direction: column;
}
@media (min-width: 768px) {
    .split-container { flex-direction: row; }
}
.split-card {
    flex: 1;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.split-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -1;
    transition: transform 0.8s ease, filter 0.5s ease;
}
.blog-card::before { background-color: #03C75A; filter: brightness(0.7); }
.notion-card::before { background-color: #1a1a1a; filter: brightness(0.7); }
.split-card:hover::before { transform: scale(1.05); filter: brightness(1); }
.split-content { text-align: center; z-index: 1; }
.split-content p { margin-top: 1rem; font-size: 1.2rem; text-transform: uppercase; letter-spacing: 0.1em; color: rgba(255,255,255,0.8); }

/* History Clickable */
.history-clickable {
    cursor: pointer;
    padding: 1rem;
    border-radius: 8px;
    transition: background 0.3s, transform 0.3s;
}
.history-clickable:hover {
    background: rgba(255,255,255,0.05);
    transform: translateX(10px);
}
.video-icon {
    font-size: 0.8rem;
    background: #e50914;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    margin-left: 10px;
    vertical-align: middle;
    display: inline-block;
    transition: transform 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.history-clickable:hover .video-icon {
    transform: scale(1.1);
}

/* Profile Modal */
.profile-modal {
    position: fixed; top: 100%; left: 0; width: 100vw; height: 100vh;
    background: var(--bg-dark); z-index: 1000; transition: top 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    display: flex; overflow: hidden;
}
.profile-modal.active { top: 0; }
.modal-close {
    position: absolute; top: 2rem; right: 3rem; font-size: 3rem; color: white; background: none; border: none; cursor: pointer; z-index: 1010; font-family: var(--font-body); transition: transform 0.3s;
}
.modal-close:hover { transform: rotate(90deg); }
.modal-content {
    display: flex; flex-direction: column; width: 100%; height: 100%;
}
@media (min-width: 768px) {
    .modal-content { flex-direction: row; }
}
.modal-left {
    flex: 1; background-size: cover; background-position: center; height: 50vh;
}
@media (min-width: 768px) {
    .modal-left { height: 100vh; position: sticky; top: 0; }
}
.modal-right {
    flex: 1; padding: 4rem 5%; overflow-y: auto; display: flex; flex-direction: column; justify-content: center;
}
.insta-btn {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white !important; border: none;
}
.insta-btn:hover { background: linear-gradient(45deg, #bc1888 0%, #cc2366 25%, #dc2743 50%, #e6683c 75%, #f09433 100%); }

