/* =====================================================
   SAGA ENT - Premium Design System v2.0
   Career Management Group – Epic Revamp
   ===================================================== */

/* =====================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ===================================================== */
:root {
    /* Base Colors */
    --color-bg-primary: #08080e;
    --color-bg-secondary: #0c0c14;
    --color-bg-tertiary: #10101a;
    --color-bg-card: rgba(16, 16, 26, 0.85);

    /* Accent Colors — from the splash video palette */
    --color-accent-gold: #f5a623;
    --color-accent-orange: #e8790c;
    --color-accent-blue: #4fc3f7;
    --color-accent-crimson: #dc2626;
    --color-accent-cyan: #00d4ff;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #f5a623 0%, #e8790c 50%, #dc2626 100%);
    --gradient-chrome: linear-gradient(135deg, #4fc3f7 0%, #2196f3 50%, #1565c0 100%);
    --gradient-fire: linear-gradient(135deg, #f5a623 0%, #e8790c 35%, #dc2626 100%);
    --gradient-glow: linear-gradient(135deg, rgba(245, 166, 35, 0.25) 0%, rgba(79, 195, 247, 0.15) 100%);
    --gradient-hero: linear-gradient(135deg, #f5a623 0%, #e8790c 30%, #dc2626 60%, #4fc3f7 100%);

    /* Text Colors */
    --color-text-primary: #ffffff;
    --color-text-secondary: #a8a8b8;
    --color-text-muted: #5e5e70;

    /* UI Colors */
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-hover: rgba(245, 166, 35, 0.3);
    --color-overlay: rgba(8, 8, 14, 0.88);

    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Font Sizes (Major Third Scale) */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.563rem;
    --text-3xl: 1.953rem;
    --text-4xl: 2.441rem;
    --text-5xl: 3.052rem;
    --text-6xl: 3.815rem;
    --text-7xl: 4.768rem;

    /* Spacing */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;

    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow-gold: 0 0 40px rgba(245, 166, 35, 0.3);
    --shadow-glow-blue: 0 0 40px rgba(79, 195, 247, 0.25);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-full: 9999px;

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-splash: 500;
    --z-cursor: 600;
}

/* =====================================================
   CSS RESET & BASE
   ===================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--color-bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

::selection {
    background: var(--color-accent-gold);
    color: var(--color-bg-primary);
}

a {
    color: var(--color-accent-gold);
    text-decoration: none;
    transition: color var(--transition-fast);
    cursor: none;
}

a:hover {
    color: var(--color-accent-blue);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button,
input,
select,
textarea {
    cursor: none;
}

/* =====================================================
   CUSTOM CURSOR
   ===================================================== */
.cursor-dot {
    position: fixed;
    width: 8px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.2s, height 0.2s, background 0.2s;
}

.cursor-dot.hover {
    width: 14px;
    height: 14px;
    background: var(--color-accent-blue);
}

.cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 2px solid rgba(245, 166, 35, 0.4);
    border-radius: 50%;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.3s, height 0.3s, border-color 0.3s, opacity 0.3s;
}

.cursor-ring.hover {
    width: 60px;
    height: 60px;
    border-color: rgba(79, 195, 247, 0.5);
}

.cursor-ring.clicking {
    width: 30px;
    height: 30px;
    border-color: var(--color-accent-gold);
}

@media (hover: none) and (pointer: coarse) {

    .cursor-dot,
    .cursor-ring {
        display: none;
    }

    body,
    a,
    button,
    input,
    select,
    textarea {
        cursor: auto;
    }
}

/* =====================================================
   SCROLL PROGRESS BAR
   ===================================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: var(--gradient-gold);
    z-index: var(--z-fixed);
    transition: width 0.05s linear;
    box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

/* =====================================================
   ENTRANCE GATE (audio unlock)
   ===================================================== */
.entrance-gate {
    position: fixed;
    inset: 0;
    z-index: calc(var(--z-splash) + 10);
    background: var(--color-bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.entrance-gate.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.gate-content {
    text-align: center;
    animation: gate-fade-in 1s ease;
}

@keyframes gate-fade-in {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.gate-logo {
    width: 160px;
    height: auto;
    margin: 0 auto var(--space-8);
    filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.35));
    animation: gate-logo-pulse 3s ease-in-out infinite;
}

@keyframes gate-logo-pulse {

    0%,
    100% {
        filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.35));
    }

    50% {
        filter: drop-shadow(0 0 60px rgba(245, 166, 35, 0.55));
    }
}

.gate-divider {
    width: 60px;
    height: 2px;
    background: var(--gradient-gold);
    margin: 0 auto var(--space-8);
    opacity: 0.6;
}

.gate-enter {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-10);
    background: transparent;
    border: 1px solid rgba(245, 166, 35, 0.4);
    border-radius: var(--radius-full);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.gate-enter::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: -1;
}

.gate-enter:hover {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 30px rgba(245, 166, 35, 0.25);
    transform: translateY(-2px);
}

.gate-enter:hover::before {
    opacity: 0.15;
}

.gate-enter svg {
    transition: transform var(--transition-base);
}

.gate-enter:hover svg {
    transform: translateX(4px);
}

/* =====================================================
   SPLASH VIDEO OVERLAY
   ===================================================== */
.splash-overlay {
    position: fixed;
    inset: 0;
    z-index: var(--z-splash);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
}

.splash-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.splash-overlay video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.splash-skip {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--color-text-primary);
    padding: 12px 28px;
    border-radius: var(--radius-full);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    cursor: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 2;
}

.splash-skip.visible {
    opacity: 1;
    transform: translateY(0);
}

.splash-skip:hover {
    background: rgba(245, 166, 35, 0.2);
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
}

/* =====================================================
   PARALLAX SHAPES
   ===================================================== */
.parallax-shapes {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.pshape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
    filter: blur(80px);
}

.pshape-1 {
    width: 500px;
    height: 500px;
    background: var(--color-accent-gold);
    top: -100px;
    left: -100px;
}

.pshape-2 {
    width: 400px;
    height: 400px;
    background: var(--color-accent-blue);
    top: 30%;
    right: -80px;
}

.pshape-3 {
    width: 350px;
    height: 350px;
    background: var(--color-accent-crimson);
    bottom: 10%;
    left: 20%;
}

.pshape-4 {
    width: 250px;
    height: 250px;
    background: var(--color-accent-gold);
    top: 60%;
    right: 30%;
}

.pshape-5 {
    width: 300px;
    height: 300px;
    background: var(--color-accent-blue);
    bottom: -50px;
    right: 10%;
}

.pshape-6 {
    width: 200px;
    height: 200px;
    background: var(--color-accent-orange);
    top: 15%;
    left: 40%;
}

/* =====================================================
   GRADIENT ORB (mouse tracker)
   ===================================================== */
.gradient-orb {
    position: fixed;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
}

/* =====================================================
   NAVIGATION
   ===================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-4) 0;
    transition: all var(--transition-base);
    opacity: 0;
    transform: translateY(-20px);
}

.navbar.visible {
    opacity: 1;
    transform: translateY(0);
}

.navbar.scrolled {
    background: rgba(8, 8, 14, 0.92);
    backdrop-filter: blur(20px);
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--color-border);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-6);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--text-xl);
    letter-spacing: 0.1em;
}

.nav-logo img {
    width: 45px;
    height: auto;
    transition: transform var(--transition-base);
}

.nav-logo:hover img {
    transform: rotate(-10deg) scale(1.1);
    filter: drop-shadow(0 0 10px rgba(245, 166, 35, 0.5));
}

.nav-logo:hover {
    color: var(--color-text-primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: var(--space-8);
    list-style: none;
}

.nav-link {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    position: relative;
    padding: var(--space-2) 0;
    transition: color var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--color-accent-gold);
}

.nav-link.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--gradient-gold);
    color: var(--color-text-primary) !important;
    padding: var(--space-3) var(--space-6) !important;
    border-radius: var(--radius-full);
    font-weight: 600;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: none;
    padding: var(--space-2);
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: var(--transition-base);
}

/* Mobile Navigation */
@media (max-width: 900px) {
    .nav-toggle {
        display: flex;
        z-index: var(--z-modal);
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: var(--color-bg-primary);
        flex-direction: column;
        justify-content: center;
        gap: var(--space-8);
        transition: right var(--transition-base);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        font-size: var(--text-xl);
    }
}

/* =====================================================
   HERO SECTION
   ===================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: var(--space-20) var(--space-6);
}

.hero-canvas {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, transparent 0%, var(--color-bg-primary) 75%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
}

.hero-logo {
    width: 180px;
    height: auto;
    margin: 0 auto var(--space-10);
    filter: drop-shadow(0 0 40px rgba(245, 166, 35, 0.4));
    animation: hero-float 4s ease-in-out infinite;
}

@keyframes hero-float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-18px) rotate(2deg);
    }
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-4xl), 8vw, var(--text-7xl));
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-6);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(40px);
    animation: title-reveal 0.8s ease forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.5s;
}

.title-line:nth-child(3) {
    animation-delay: 0.8s;
}

@keyframes title-reveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.title-line.accent {
    background: var(--gradient-hero);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: title-reveal 0.8s ease forwards, gradient-shift 4s ease-in-out infinite;
    animation-delay: 0.8s, 0s;
}

@keyframes gradient-shift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.hero-subtitle {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-10);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0;
    animation: fade-up 0.8s ease 1.2s forwards;
}

@keyframes fade-up {
    to {
        opacity: 1;
        transform: translateY(0);
    }

    from {
        opacity: 0;
        transform: translateY(20px);
    }
}

.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fade-up 0.8s ease 1.5s forwards;
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-10);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-text-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    opacity: 0;
    animation: fade-up 0.8s ease 2s forwards;
}

.scroll-indicator {
    width: 24px;
    height: 40px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    position: relative;
}

.scroll-indicator::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-accent-gold);
    border-radius: var(--radius-full);
    animation: scroll-bounce 2s ease-in-out infinite;
}

@keyframes scroll-bounce {

    0%,
    100% {
        top: 8px;
        opacity: 1;
    }

    50% {
        top: 22px;
        opacity: 0.3;
    }
}

/* =====================================================
   BUTTONS
   ===================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    padding: var(--space-4) var(--space-8);
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    border: none;
    cursor: none;
    transition: all var(--transition-base);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.1);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::before {
    opacity: 1;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--color-text-primary);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
    color: var(--color-text-primary);
}

.btn-secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 2px solid var(--color-border);
}

.btn-secondary:hover {
    border-color: var(--color-accent-gold);
    background: rgba(245, 166, 35, 0.1);
    color: var(--color-accent-gold);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* =====================================================
   MARQUEE STRIP
   ===================================================== */
.marquee-strip {
    position: relative;
    z-index: var(--z-base);
    overflow: hidden;
    padding: var(--space-5) 0;
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.marquee-track {
    display: flex;
    gap: var(--space-8);
    white-space: nowrap;
    animation: marquee-scroll 25s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 800;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.marquee-dot {
    font-size: var(--text-xl);
    color: var(--color-accent-gold);
    opacity: 0.6;
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =====================================================
   SECTIONS (Common)
   ===================================================== */
.section {
    position: relative;
    padding: var(--space-24) var(--space-6);
    z-index: 1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-16);
}

.section-tag {
    display: inline-block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-accent-gold);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: var(--space-4);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-3xl), 5vw, var(--text-5xl));
    font-weight: 800;
    margin-bottom: var(--space-4);
}

.section-title .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Reveal text animation (triggered by JS) */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
.about {
    background: var(--color-bg-secondary);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }
}

.about-content .lead {
    font-size: var(--text-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.about-content p {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-4);
}

.about-stats {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-10);
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-4xl);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-card {
    position: relative;
    padding: var(--space-10);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all var(--transition-base);
}

.visual-card img {
    width: 200px;
    margin: 0 auto var(--space-6);
    filter: drop-shadow(0 0 30px rgba(245, 166, 35, 0.3));
    transition: filter var(--transition-base);
}

.visual-card:hover img {
    filter: drop-shadow(0 0 50px rgba(245, 166, 35, 0.5));
}

.card-glow {
    position: absolute;
    inset: -1px;
    background: var(--gradient-gold);
    border-radius: var(--radius-xl);
    z-index: -1;
    opacity: 0.15;
    filter: blur(25px);
    transition: opacity var(--transition-base);
}

.visual-card:hover .card-glow {
    opacity: 0.3;
}

.card-label {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-text-secondary);
    letter-spacing: 0.1em;
}

/* =====================================================
   MISSION SECTION
   ===================================================== */
.mission {
    background: var(--color-bg-primary);
    overflow: hidden;
}

.mission-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at top, rgba(245, 166, 35, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.mission-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.mission-statement {
    font-family: var(--font-heading);
    font-size: clamp(var(--text-2xl), 4vw, var(--text-4xl));
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-8);
    border: none;
    padding: 0;
}

.mission-statement .accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-12);
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 700px) {
    .mission-values {
        grid-template-columns: 1fr;
    }
}

.value-item {
    padding: var(--space-8);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.value-item:hover {
    border-color: var(--color-accent-gold);
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow-gold);
}

.value-icon {
    font-size: var(--text-4xl);
    margin-bottom: var(--space-4);
}

.value-item h4 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-2);
}

.value-item p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

/* =====================================================
   SERVICES SECTION
   ===================================================== */
.services {
    background: var(--color-bg-secondary);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

.service-card {
    padding: var(--space-8);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.service-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
    opacity: 1;
}

/* Glowing border trail effect */
.card-border-glow {
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
    background: conic-gradient(from var(--glow-angle, 0deg), transparent, var(--color-accent-gold), transparent, transparent);
    z-index: -1;
    filter: blur(2px);
}

.service-card:hover .card-border-glow {
    opacity: 0.6;
    animation: border-glow-rotate 3s linear infinite;
}

@keyframes border-glow-rotate {
    to {
        --glow-angle: 360deg;
    }
}

@property --glow-angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

.service-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glow);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    color: var(--color-accent-gold);
    transition: all var(--transition-base);
}

.service-card:hover .service-icon {
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.3);
    transform: scale(1.05);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
}

.service-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
}

/* =====================================================
   BLUEPRINT VIDEO SECTION
   ===================================================== */
.blueprint {
    background: var(--color-bg-primary);
}

.video-wrapper {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.video-glow {
    position: absolute;
    inset: -20px;
    background: var(--gradient-gold);
    border-radius: var(--radius-2xl);
    opacity: 0.15;
    filter: blur(50px);
    pointer-events: none;
}

.cinema-bars {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
}

.cinema-bar-top,
.cinema-bar-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    background: #000;
}

.cinema-bar-top {
    top: 0;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.cinema-bar-bottom {
    bottom: 0;
    border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.video-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 14, 0.6);
    transition: opacity var(--transition-base);
    cursor: none;
}

.video-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.play-btn {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-gold);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    cursor: none;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-glow-gold);
}

.play-btn:hover {
    transform: scale(1.1);
}

.play-btn svg {
    margin-left: 5px;
}

.film-grain {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.03;
    z-index: 2;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 200px;
}

/* =====================================================
   TEAM SECTION
   ===================================================== */
.team {
    background: var(--color-bg-secondary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.team-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-glow-gold);
}

.team-image {
    position: relative;
    height: 220px;
    background: linear-gradient(135deg, var(--color-bg-tertiary) 0%, var(--color-bg-primary) 100%);
}

.image-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text-muted);
    background: var(--gradient-glow);
}

.team-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, var(--color-bg-card), transparent);
}

.team-info {
    padding: var(--space-6);
    text-align: center;
}

.team-info h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: var(--space-1);
}

.team-role {
    display: block;
    font-size: var(--text-sm);
    color: var(--color-accent-gold);
    margin-bottom: var(--space-3);
}

.team-info p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.team-note {
    text-align: center;
    margin-top: var(--space-10);
    color: var(--color-text-muted);
    font-style: italic;
}

/* =====================================================
   ROSTER TEASER SECTION
   ===================================================== */
.roster-teaser {
    background: var(--color-bg-primary);
    padding: var(--space-16) var(--space-6);
}

.roster-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-12);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    position: relative;
    transition: all var(--transition-base);
}

.roster-content:hover {
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-glow-gold);
}

.roster-badge {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 80px;
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-3);
}

.roster-badge img {
    width: 100%;
}

.roster-content h3 {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-top: var(--space-6);
    margin-bottom: var(--space-4);
}

.roster-text {
    color: var(--color-text-secondary);
    margin-bottom: var(--space-8);
}

/* =====================================================
   CONTACT SECTION
   ===================================================== */
.contact {
    background: var(--color-bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--space-12);
    align-items: start;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.info-card {
    padding: var(--space-6);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    transition: all var(--transition-base);
}

.info-card:hover {
    border-color: var(--color-accent-gold);
    box-shadow: var(--shadow-glow-gold);
}

.info-card h4 {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    font-weight: 700;
    margin-bottom: var(--space-3);
    color: var(--color-accent-gold);
}

.info-card p {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.social-links {
    display: flex;
    gap: var(--space-4);
    margin-top: var(--space-6);
}

.social-link {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text-secondary);
    transition: all var(--transition-base);
}

.social-link:hover {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow-gold);
}

/* Contact Form */
.contact-form {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: var(--space-6);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    margin-bottom: var(--space-2);
    color: var(--color-text-secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    background: var(--color-bg-primary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15), 0 0 20px rgba(245, 166, 35, 0.1);
}

.form-group select {
    cursor: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23a8a8b8' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

#honeypot {
    display: none;
}

.form-status {
    margin-top: var(--space-4);
    padding: var(--space-4);
    border-radius: var(--radius-md);
    text-align: center;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.5);
    color: #22c55e;
}

.form-status.error {
    display: block;
    background: rgba(239, 68, 68, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;
}

/* =====================================================
   FOOTER
   ===================================================== */
.footer {
    background: var(--color-bg-primary);
    padding: var(--space-12) var(--space-6);
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
}

.footer-brand img {
    width: 40px;
}

.footer-brand span {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    letter-spacing: 0.1em;
}

.footer-tagline {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-4);
}

.footer-copy {
    color: var(--color-text-muted);
    font-size: var(--text-xs);
}

/* =====================================================
   SIGNATURE MODAL
   ===================================================== */
.signature-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    z-index: var(--z-modal);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
    text-align: center;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-glow-gold);
}

.signature-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.signature-close {
    position: absolute;
    top: var(--space-4);
    right: var(--space-4);
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: var(--text-2xl);
    cursor: none;
    transition: color var(--transition-fast);
    line-height: 1;
}

.signature-close:hover {
    color: var(--color-text-primary);
}

.signature-content p {
    font-family: var(--font-heading);
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
}

.signature-content strong {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* =====================================================
   TILT CARD (3D perspective)
   ===================================================== */
.tilt-card {
    transform-style: preserve-3d;
    transform: perspective(1000px) rotateX(0deg) rotateY(0deg);
    transition: transform 0.15s ease;
}

/* =====================================================
   UTILITIES
   ===================================================== */
.accent {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive */
@media (max-width: 600px) {
    .hero-logo {
        width: 140px;
    }

    .about-stats {
        flex-wrap: wrap;
        justify-content: center;
    }

    .splash-skip {
        bottom: 20px;
        right: 20px;
    }
}