/* ========================================
   RESET
======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #ffffff;

    background:
        linear-gradient(
            rgba(4, 8, 15, 0.45),
            rgba(4, 8, 15, 0.45)
        ),
        url("assets/images/background.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;

    min-height: 100vh;

    overflow-x: hidden;
}


/* ========================================
   GLOBAL
======================================== */

a {
    color: inherit;
    text-decoration: none;
}

.section {
    width: 100%;

    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 120px 24px 80px;
}

.glass-panel {
    width: min(1200px, 100%);

    padding: 64px;

    background: rgba(10, 15, 24, 0.36);

    border: 1px solid rgba(255, 255, 255, 0.15);

    border-radius: 28px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.section-label {
    margin-bottom: 18px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 4px;

    opacity: 0.75;
}

.section-title {
    max-width: 850px;

    font-size: clamp(36px, 5vw, 68px);

    line-height: 1.05;

    letter-spacing: -2px;

    margin-bottom: 28px;
}

.section-description {
    max-width: 720px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}


/* ========================================
   HEADER
======================================== */

.header {
    position: fixed;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;

    padding: 18px 24px;
}

.navbar {
    width: min(1400px, 100%);

    margin: 0 auto;

    min-height: 66px;

    padding: 0 26px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(10, 15, 24, 0.28);

    border: 1px solid rgba(255, 255, 255, 0.12);

    border-radius: 18px;

    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
}

.brand-name {
    font-size: 18px;
    font-weight: 800;

    letter-spacing: 5px;
}

.nav-menu {
    display: flex;

    align-items: center;

    gap: 34px;
}

.nav-link {
    position: relative;

    font-size: 14px;

    color: rgba(255, 255, 255, 0.78);

    transition: 0.3s ease;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: #ffffff;

    transition: 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}


/* ========================================
   HERO
======================================== */

.hero-section {
    padding-top: 140px;
}

.hero-content {
    min-height: 70vh;

    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 42px;

    align-items: center;
}

.hero-content h1 {
    font-size: clamp(68px, 11vw, 160px);

    line-height: 0.88;

    letter-spacing: -6px;

    margin-bottom: 30px;

    font-weight: 800;
}
.hero-content {
    min-height: 70vh;

    display: grid;

    grid-template-columns: 1.15fr 0.85fr;

    gap: 48px;

    align-items: center;
}

.hero-description {
    max-width: 720px;

    font-size: 18px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}

.hero-buttons {
    display: flex;

    gap: 14px;

    margin-top: 38px;

    flex-wrap: wrap;
}
.hero-video {
    width: 100%;
    max-width: 480px;

    aspect-ratio: 16 / 9;

    justify-self: end;
    align-self: center;

    border-radius: 18px;
    overflow: hidden;

    background: #000;

    border: 1px solid rgba(255, 255, 255, 0.12);

    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    transform: translateY(-90px);
}

.hero-video video {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* ========================================
   BUTTONS
======================================== */

.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 28px;

    border-radius: 999px;

    font-size: 14px;

    font-weight: 700;

    transition:
        transform 0.25s ease,
        background 0.25s ease,
        border-color 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #ffffff;

    color: #0b1018;
}

.button-primary:hover {
    background: rgba(255, 255, 255, 0.88);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.06);

    border: 1px solid rgba(255, 255, 255, 0.2);

    color: #ffffff;
}

.button-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}


/* ========================================
   INTRO
======================================== */

.intro-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 56px;
}

.intro-card {
    padding: 34px;

    min-height: 260px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    transition: 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.075);
}

.intro-number {
    display: block;

    margin-bottom: 56px;

    font-size: 13px;

    letter-spacing: 2px;

    opacity: 0.5;
}

.intro-card h3 {
    margin-bottom: 14px;

    font-size: 24px;
}

.intro-card p {
    color: rgba(255, 255, 255, 0.65);

    line-height: 1.7;
}


/* ========================================
   WORKS
======================================== */

.works-grid {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 20px;

    margin-top: 56px;
}

.work-card {
    overflow: hidden;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 22px;

    transition: 0.3s ease;
}

.work-card:hover {
    transform: translateY(-6px);

    background: rgba(255, 255, 255, 0.07);
}

.video-placeholder {
    width: 100%;

    aspect-ratio: 16 / 9;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            rgba(255, 255, 255, 0.08),
            rgba(255, 255, 255, 0.015)
        );

    font-size: 12px;

    letter-spacing: 5px;

    color: rgba(255, 255, 255, 0.4);
}

.work-info {
    padding: 28px;
}

.work-category {
    display: block;

    margin-bottom: 10px;

    font-size: 11px;

    letter-spacing: 3px;

    opacity: 0.5;
}

.work-info h3 {
    margin-bottom: 12px;

    font-size: 28px;
}

.work-info p {
    color: rgba(255, 255, 255, 0.65);

    line-height: 1.7;
}


/* ========================================
   ABOUT
======================================== */

.about-content {
    max-width: 850px;
}

.about-content p {
    margin-bottom: 22px;

    font-size: 20px;

    line-height: 1.8;

    color: rgba(255, 255, 255, 0.72);
}


/* ========================================
   CONTACT
======================================== */

.contact-content {
    text-align: center;
}

.contact-content .section-title,
.contact-content .section-description {
    margin-left: auto;
    margin-right: auto;
}

.contact-content .button {
    margin-top: 34px;
}


/* ========================================
   FOOTER
======================================== */

.footer {
    padding: 0 24px 30px;
}

.footer-content {
    width: min(1400px, 100%);

    margin: 0 auto;

    padding: 32px;

    text-align: center;

    background: rgba(10, 15, 24, 0.28);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 20px;

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    color: rgba(255, 255, 255, 0.55);
}

.footer-brand {
    display: block;

    margin-bottom: 8px;

    color: #ffffff;

    font-weight: 800;

    letter-spacing: 5px;
}

.copyright {
    margin-top: 14px;

    font-size: 12px;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 900px) {

    .glass-panel {
        padding: 44px 30px;
    }

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .works-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 18px;
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .header {
        padding: 12px;
    }

    .navbar {
        min-height: 58px;

        padding: 0 18px;
    }

    .brand-name {
        font-size: 13px;

        letter-spacing: 3px;
    }

    .nav-menu {
        gap: 12px;
    }

    .nav-link {
        font-size: 11px;
    }

    .section {
        padding:
            100px
            14px
            50px;
    }

    .glass-panel {
        padding: 34px 22px;

        border-radius: 20px;
    }

    .hero-content h1 {
        letter-spacing: -3px;
    }

    .hero-description,
    .section-description {
        font-size: 16px;
    }

    .about-content p {
        font-size: 17px;
    }

    .intro-card {
        padding: 26px;
    }

    .work-info {
        padding: 22px;
    }

}


/* ========================================
   VERY SMALL SCREENS
======================================== */

@media (max-width: 480px) {

    .nav-menu {
        display: none;
    }

    .hero-content h1 {
        font-size: 58px;
    }

    .hero-content h2 {
        font-size: 29px;
    }

}
/* ========================================
   BRAND / LOGO
======================================== */

.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.brand-logo {
    display: block;

    width: auto;
    height: 42px;

    max-width: 180px;

    object-fit: contain;
}
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-shrink: 0;
}

.brand-logo {
    display: block;
    width: auto;
    height: 42px;
    max-width: 180px;
    object-fit: contain;
}

.brand-text {
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 6px;
    color: #ffffff;
    line-height: 1;
    white-space: nowrap;
}
.hero-left {
    min-width: 0;
}

.hero-left h1 {
    font-size: clamp(64px, 7vw, 120px);
}
/* ========================================
   CONTACT PAGE
======================================== */

.contact-options {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;

    margin-top: 34px;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 18px;

    margin-top: 60px;

    text-align: left;
}

.contact-item {
    padding: 28px;

    background: rgba(255, 255, 255, 0.045);

    border: 1px solid rgba(255, 255, 255, 0.1);

    border-radius: 18px;
}

.contact-label {
    display: block;

    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 3px;

    opacity: 0.5;
}

.contact-item p {
    line-height: 1.7;

    color: rgba(255, 255, 255, 0.72);
}
/* ========================================
   HERO TITLE OVERRIDE
======================================== */

.hero-content h1 {
    font-size: clamp(52px, 6vw, 88px);
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 22px;
    font-weight: 800;
    white-space: nowrap;
}

.hero-left {
    min-width: 0;
    max-width: 640px;
}

.hero-description {
    max-width: 620px;
    font-size: 16px;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.72);
}
.hero-content h1 {
    font-size: 52px !important;
    line-height: 1;
    letter-spacing: -1px;
    white-space: nowrap;
    max-width: 560px;
}