/* ========================= */
/* ROOT */
/* ========================= */

:root {

    --bg:
    #f5f5f5;

    --text:
    #111111;

    --muted:
    #666666;

    --border:
    rgba(0,0,0,0.08);

    --card:
    rgba(255,255,255,0.72);

    --shadow:
    rgba(0,0,0,0.06);
}

/* ========================= */
/* BODY */
/* ========================= */

body {

    margin: 0;

    font-family:
    "Inter",
    sans-serif;

    background:
    var(--bg);

    color:
    var(--text);

    overflow-x: hidden;

    position: relative;
}

/* ========================= */
/* BACKGROUND */
/* ========================= */

.background-grid {

    position: fixed;

    inset: 0;

    background-image:

    linear-gradient(
        rgba(0,0,0,0.025) 1px,
        transparent 1px
    ),

    linear-gradient(
        90deg,
        rgba(0,0,0,0.025) 1px,
        transparent 1px
    );

    background-size:
    42px 42px;

    z-index: -2;
}

.background-glow {

    position: fixed;

    width: 700px;

    height: 700px;

    top: -220px;

    right: -200px;

    background:
    radial-gradient(
        circle,
        rgba(0,0,0,0.04),
        transparent 70%
    );

    z-index: -1;
}

/* ========================= */
/* HERO */
/* ========================= */

.hero {

    min-height: 100vh;

    display: flex;

    justify-content: center;

    align-items: center;

    padding:
    100px 24px;

    text-align: center;
}

.hero-content {

    max-width: 1050px;

    animation:
    reveal 1s ease;
}

/* MINI */

.hero-mini {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    padding: 12px 20px;

    border-radius: 999px;

    background:
    rgba(0,0,0,0.04);

    border:
    1px solid var(--border);

    font-size: 0.78rem;

    letter-spacing: 3px;

    text-transform: uppercase;

    margin-bottom: 34px;

    backdrop-filter:
    blur(10px);
}

/* TITLE */

.hero-title {

    display: flex;

    flex-direction: column;

    gap: 6px;

    font-size: 6.5rem;

    line-height: 0.9;

    letter-spacing: -5px;

    margin-bottom: 36px;

    font-weight: 800;
}

/* LINES */

.hero-title span {

    display: block;

    opacity: 0;

    transform:
    translateY(180px);

    filter:
    blur(10px);

    animation:
    heroLineReveal 1.2s
    cubic-bezier(
        0.22,
        1,
        0.36,
        1
    )
    forwards;
}

/* DELAYS */

.hero-title span:nth-child(1) {

    animation-delay:
    0.1s;
}

.hero-title span:nth-child(2) {

    animation-delay:
    0.32s;
}

.hero-title span:nth-child(3) {

    animation-delay:
    0.55s;
}

/* TEXT */

.hero-text {

    max-width: 780px;

    margin:
    0 auto 45px;

    color:
    var(--muted);

    line-height: 2;

    font-size: 1.08rem;
}

/* STATUS */

.hero-status {

    display: inline-flex;

    align-items: center;

    gap: 12px;

    padding: 14px 22px;

    border-radius: 999px;

    background:
    rgba(255,255,255,0.65);

    border:
    1px solid var(--border);

    font-size: 0.92rem;

    backdrop-filter:
    blur(16px);

    box-shadow:
    0 12px 30px var(--shadow);
}

.status-dot {

    width: 10px;

    height: 10px;

    border-radius: 50%;

    background:
    #00c853;

    box-shadow:
    0 0 14px rgba(0,200,83,0.8);

    animation:
    pulse 1.8s infinite;
}

/* ========================= */
/* ABOUT */
/* ========================= */

.about-section {

    max-width: 1300px;

    margin: 0 auto;

    padding:
    0 24px 150px;

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 80px;

    align-items: center;
}

.about-left h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;
}

.about-right p {

    color:
    var(--muted);

    line-height: 2;

    margin-bottom: 28px;

    font-size: 1rem;
}

/* ========================= */
/* MINI SECTION */
/* ========================= */

.section-mini {

    letter-spacing: 4px;

    font-size: 0.78rem;

    text-transform: uppercase;

    color:
    var(--muted);

    margin-bottom: 24px;
}

/* ========================= */
/* INFO */
/* ========================= */

.info-section {

    max-width: 1350px;

    margin: 0 auto;

    padding:
    0 24px 150px;

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;
}

/* CARD */

.info-card {

    background:
    var(--card);

    border:
    1px solid var(--border);

    border-radius: 34px;

    padding: 42px;

    backdrop-filter:
    blur(16px);

    box-shadow:
    0 25px 60px var(--shadow);

    transition:
    0.35s ease;

    position: relative;

    overflow: hidden;
}

.info-card:hover {

    transform:
    translateY(-6px);

    box-shadow:
    0 35px 80px rgba(0,0,0,0.08);
}

/* ICON */

.info-icon {

    width: 64px;

    height: 64px;

    border-radius: 22px;

    background:
    rgba(0,0,0,0.05);

    display: flex;

    justify-content: center;

    align-items: center;

    margin-bottom: 28px;
}

.info-icon i {

    font-size: 1.2rem;

    color:
    #111;
}

/* TITLE */

.info-card h2 {

    font-size: 2rem;

    margin-bottom: 20px;

    line-height: 1.1;
}

/* TEXT */

.info-card p {

    color:
    var(--muted);

    line-height: 2;
}

/* ========================= */
/* PROCESS */
/* ========================= */

.process-section {

    padding:
    0 24px 150px;

    text-align: center;
}

.process-section h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 28px;
}

.process-text {

    max-width: 760px;

    margin:
    0 auto 70px;

    color:
    var(--muted);

    line-height: 2;
}

/* GRID */

.process-grid {

    max-width: 1300px;

    margin: 0 auto;

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;
}

/* CARD */

.process-card {

    background:
    #111;

    color:
    white;

    border-radius: 34px;

    padding: 50px 40px;

    text-align: left;

    position: relative;

    overflow: hidden;
}

.process-card span {

    font-size: 5rem;

    opacity: 0.08;

    position: absolute;

    top: 20px;

    right: 25px;

    font-weight: 800;
}

.process-card h3 {

    font-size: 2rem;

    margin-bottom: 20px;

    position: relative;

    z-index: 2;
}

.process-card p {

    line-height: 2;

    color:
    rgba(255,255,255,0.72);

    position: relative;

    z-index: 2;
}

/* ========================= */
/* FUTURE */
/* ========================= */

.future-section {

    padding:
    0 24px 150px;
}

.future-content {

    max-width: 1200px;

    margin: 0 auto;

    text-align: center;
}

.future-content h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.future-content p {

    max-width: 820px;

    margin: 0 auto;

    line-height: 2;

    color:
    var(--muted);
}

/* ========================= */
/* QUOTE */
/* ========================= */

.quote-section {

    padding:
    0 24px 150px;
}

.quote-box {

    max-width: 1200px;

    margin: 0 auto;

    padding:
    100px 50px;

    border-radius: 40px;

    background:
    #111;

    color:
    white;

    text-align: center;

    box-shadow:
    0 40px 90px rgba(0,0,0,0.14);
}

.quote-box p {

    font-size: 2.8rem;

    line-height: 1.3;

    letter-spacing: -1px;

    max-width: 850px;

    margin: 0 auto;
}

/* ========================= */
/* STATS */
/* ========================= */

.stats-section {

    max-width: 1300px;

    margin: 0 auto;

    padding:
    0 24px 150px;

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;
}

/* CARD */

.stats-card {

    background:
    rgba(255,255,255,0.72);

    border:
    1px solid var(--border);

    border-radius: 34px;

    padding: 50px 40px;

    text-align: center;

    backdrop-filter:
    blur(16px);

    box-shadow:
    0 25px 60px var(--shadow);
}

.stats-card h2 {

    font-size: 3rem;

    margin-bottom: 16px;

    letter-spacing: -2px;
}

.stats-card p {

    color:
    var(--muted);

    line-height: 1.8;
}

/* ========================= */
/* FINAL */
/* ========================= */

.final-section {

    text-align: center;

    padding:
    0 24px 150px;
}

.final-mini {

    letter-spacing: 4px;

    font-size: 0.78rem;

    text-transform: uppercase;

    color:
    var(--muted);

    margin-bottom: 22px;
}

.final-section h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.final-section p {

    max-width: 720px;

    margin: 0 auto;

    color:
    var(--muted);

    line-height: 2;
}

/* ========================= */
/* FOOTER */
/* ========================= */

.footer {

    padding:
    60px 24px;

    border-top:
    1px solid var(--border);

    text-align: center;
}

.footer-logo {

    font-size: 1.2rem;

    letter-spacing: 8px;

    margin-bottom: 16px;

    font-weight: 700;
}

.footer p {

    color:
    var(--muted);

    font-size: 0.92rem;
}

/* ========================= */
/* ANIMATIONS */
/* ========================= */

@keyframes reveal {

    from {

        opacity: 0;

        transform:
        translateY(30px);

        filter:
        blur(10px);
    }

    to {

        opacity: 1;

        transform:
        translateY(0);

        filter:
        blur(0);
    }
}

@keyframes pulse {

    0% {

        transform:
        scale(1);

        opacity: 1;
    }

    50% {

        transform:
        scale(1.4);

        opacity: 0.6;
    }

    100% {

        transform:
        scale(1);

        opacity: 1;
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1100px) {

    .about-section,
    .info-section,
    .process-grid,
    .stats-section {

        grid-template-columns:
        1fr;
    }

    .about-left h2,
    .process-section h2,
    .future-content h2,
    .final-section h2 {

        font-size: 3rem;
    }

    .quote-box p {

        font-size: 2rem;
    }
}

@media (max-width: 768px) {

    .hero {

        min-height: auto;

        padding:
        140px 20px 120px;
    }

    .hero h1 {

        font-size: 3rem;

        letter-spacing: -2px;
    }

    .hero-text {

        font-size: 0.96rem;
    }

    .about-left h2,
    .process-section h2,
    .future-content h2,
    .final-section h2 {

        font-size: 2.3rem;
    }

    .quote-box {

        padding:
        70px 28px;
    }

    .quote-box p {

        font-size: 1.6rem;
    }

    .info-card,
    .stats-card {

        padding: 34px;
    }

    .process-card {

        padding: 42px 32px;
    }
}

/* ========================= */
/* TRAILER */
/* ========================= */

.trailer-section {

    max-width: 1350px;

    margin: 0 auto;

    padding:
    0 24px 160px;

    display: grid;

    grid-template-columns:
    1fr 1fr;

    gap: 70px;

    align-items: center;
}

/* ========================= */
/* LEFT */
/* ========================= */

.trailer-left h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

.trailer-left p {

    color:
    var(--muted);

    line-height: 2;

    margin-bottom: 26px;

    font-size: 1rem;
}

/* ========================= */
/* GRID */
/* ========================= */

.trailer-info-grid {

    display: flex;

    flex-direction: column;

    gap: 18px;

    margin-top: 40px;
}

/* CARD */

.trailer-info-card {

    display: flex;

    align-items: center;

    gap: 18px;

    padding: 22px 24px;

    border-radius: 24px;

    background:
    rgba(255,255,255,0.72);

    border:
    1px solid var(--border);

    backdrop-filter:
    blur(16px);

    box-shadow:
    0 18px 45px var(--shadow);

    transition:
    0.3s ease;
}

/* HOVER */

.trailer-info-card:hover {

    transform:
    translateY(-4px);

    box-shadow:
    0 28px 60px rgba(0,0,0,0.08);
}

/* ICON */

.trailer-info-card i {

    width: 52px;

    height: 52px;

    border-radius: 18px;

    background:
    rgba(0,0,0,0.05);

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 1rem;

    color:
    #111;
}

/* TEXT */

.trailer-info-card span {

    font-size: 0.96rem;

    font-weight: 500;

    color:
    var(--text);
}

/* ========================= */
/* RIGHT */
/* ========================= */

.trailer-right {

    position: relative;
}

/* VIDEO WRAPPER */

.trailer-video-wrapper {

    position: relative;

    border-radius: 36px;

    overflow: hidden;

    background:
    #111;

    box-shadow:
    0 40px 90px rgba(0,0,0,0.14);
}

/* LIGHT */

.trailer-video-wrapper::before {

    content: "";

    position: absolute;

    top: -120px;

    right: -120px;

    width: 260px;

    height: 260px;

    border-radius: 50%;

    background:
    radial-gradient(
        circle,
        rgba(255,255,255,0.14),
        transparent 70%
    );

    z-index: 2;

    pointer-events: none;
}

/* VIDEO */

.trailer-video {

    width: 100%;

    display: block;

    object-fit: cover;

    aspect-ratio: 16 / 9;
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1100px) {

    .trailer-section {

        grid-template-columns:
        1fr;

        gap: 50px;
    }

    .trailer-left h2 {

        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .trailer-section {

        padding:
        0 20px 120px;
    }

    .trailer-left h2 {

        font-size: 2.4rem;

        letter-spacing: -2px;
    }

    .trailer-info-card {

        padding: 20px;
    }

    .trailer-video-wrapper {

        border-radius: 26px;
    }
}

/* ========================= */
/* MUSIC BUTTON */
/* ========================= */

.music-toggle {

    position: fixed;

    right: 24px;

    bottom: 24px;

    width: 62px;

    height: 62px;

    border: none;

    border-radius: 50%;

    background:
    rgba(255,255,255,0.72);

    backdrop-filter:
    blur(18px);

    border:
    1px solid rgba(0,0,0,0.08);

    color:
    #111;

    font-size: 1rem;

    cursor: pointer;

    z-index: 99999;

    display: flex;

    justify-content: center;

    align-items: center;

    box-shadow:
    0 20px 45px rgba(0,0,0,0.08);

    transition:
    0.3s ease;

    overflow: hidden;
}

/* ========================= */
/* LIGHT */
/* ========================= */

.music-toggle::before {

    content: "";

    position: absolute;

    top: -150%;

    left: -40%;

    width: 45%;

    height: 400%;

    background:
    linear-gradient(
        90deg,
        transparent,
        rgba(255,255,255,0.85),
        transparent
    );

    transform:
    rotate(25deg);

    transition:
    0.9s ease;
}

/* ========================= */
/* HOVER */
/* ========================= */

.music-toggle:hover {

    transform:
    translateY(-4px)
    scale(1.04);

    background:
    rgba(255,255,255,0.92);

    box-shadow:
    0 30px 60px rgba(0,0,0,0.12);
}

.music-toggle:hover::before {

    left: 130%;
}

/* ========================= */
/* ACTIVE */
/* ========================= */

.music-toggle:active {

    transform:
    scale(0.96);
}

/* ========================= */
/* ICON */
/* ========================= */

.music-toggle i {

    position: relative;

    z-index: 2;
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

    .music-toggle {

        right: 18px;

        bottom: 18px;

        width: 56px;

        height: 56px;
    }
}

/* ========================= */
/* HERO LINE REVEAL */
/* ========================= */

@keyframes heroLineReveal {

    0% {

        opacity: 0;

        transform:
        translateY(180px)
        scale(0.9);

        filter:
        blur(12px);
    }

60% {

    opacity: 1;

    transform:
    translateY(-18px)
    scale(1.02);

    filter:
    blur(2px);
}

    78% {

        transform:
        translateY(10px)
        scale(0.995);
    }

    92% {

        transform:
        translateY(-4px);
    }

100% {

    opacity: 1;

    transform:
    translateY(0)
    scale(1);

    filter:
    blur(0);
}
}

/* ========================= */
/* PRELOADER */
/* ========================= */

.preloader {

    position: fixed;

    inset: 0;

    background:
    #f5f5f5;

    z-index: 999999;

    display: flex;

    justify-content: center;

    align-items: center;

    transition:
    opacity 1s ease,
    visibility 1s ease;
}

/* HIDE */

.preloader.hide {

    opacity: 0;

    visibility: hidden;
}

/* CONTENT */

.preloader-content {

    text-align: center;
}

/* TITLE */

.preloader-content h1 {

    color:
    #111111;

    font-size: 4rem;

    letter-spacing: 10px;

    margin-bottom: 34px;

    font-weight: 800;

    animation:
    preloadGlow 2s ease infinite alternate;
}

/* LINE */

.loader-line {

    width: 260px;

    height: 2px;

    background:
    rgba(0,0,0,0.08);

    border-radius: 999px;

    overflow: hidden;

    margin:
    0 auto 24px;
}

/* BAR */

.loader-line span {

    display: block;

    width: 0%;

    height: 100%;

    background:
    #111111;

    animation:
    loadingBar 2.2s ease forwards;
}

/* TEXT */

.preloader-content p {

    color:
    rgba(0,0,0,0.45);

    letter-spacing: 4px;

    font-size: 0.78rem;
}

/* ========================= */
/* PRELOADER ANIMATIONS */
/* ========================= */

@keyframes loadingBar {

    0% {

        width: 0%;
    }

    100% {

        width: 100%;
    }
}

@keyframes preloadGlow {

    from {

        opacity: 0.7;

        transform:
        scale(0.98);
    }

    to {

        opacity: 1;

        transform:
        scale(1);
    }
}

/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

    .preloader-content h1 {

        font-size: 2.7rem;

        letter-spacing: 6px;
    }

    .loader-line {

        width: 200px;
    }
}

/* ========================= */
/* REVEAL */
/* ========================= */

.reveal {

    opacity: 0;

    transform:
    translateY(80px)
    scale(0.98);

    filter:
    blur(12px);

    transition:
    opacity 1s ease,
    transform 1s ease,
    filter 1s ease;
}

/* ACTIVE */

.reveal.active {

    opacity: 1;

    transform:
    translateY(0)
    scale(1);

    filter:
    blur(0);
}

/* ========================= */
/* SECRET MESSAGE */
/* ========================= */

.secret-section {

    padding:
    40px 24px 140px;

    text-align: center;
}

/* TEXT */

.secret-section p {

    font-size: 1.1rem;

    letter-spacing: 8px;

    text-transform: uppercase;

    color:
    rgba(0,0,0,0.32);

    font-weight: 600;

    position: relative;

    display: inline-block;
}

/* LINE */

.secret-section p::after {

    content: "";

    position: absolute;

    left: 50%;

    bottom: -18px;

    transform:
    translateX(-50%);

    width: 80px;

    height: 1px;

    background:
    rgba(0,0,0,0.15);
}

/* MOBILE */

@media (max-width: 768px) {

    .secret-section p {

        font-size: 0.82rem;

        letter-spacing: 4px;
    }
}

/* ========================= */
/* EVOLUTION */
/* ========================= */

.evolution-section {

    padding:
    0 24px 160px;
}

/* ========================= */
/* CONTENT */
/* ========================= */

.evolution-content {

    max-width: 900px;

    margin: 0 auto 80px;

    text-align: center;
}

/* TITLE */

.evolution-content h2 {

    font-size: 4rem;

    line-height: 1;

    letter-spacing: -3px;

    margin-bottom: 30px;
}

/* TEXT */

.evolution-text {

    max-width: 760px;

    margin: 0 auto;

    color:
    var(--muted);

    line-height: 2;

    font-size: 1rem;
}

/* ========================= */
/* GRID */
/* ========================= */

.evolution-grid {

    max-width: 1300px;

    margin: 0 auto 90px;

    display: grid;

    grid-template-columns:
    repeat(3,1fr);

    gap: 24px;
}

/* ========================= */
/* CARD */
/* ========================= */

.evolution-card {

    background:
    rgba(255,255,255,0.72);

    border:
    1px solid var(--border);

    border-radius: 34px;

    padding: 42px;

    backdrop-filter:
    blur(16px);

    box-shadow:
    0 25px 60px var(--shadow);

    transition:
    0.35s ease;

    position: relative;

    overflow: hidden;
}

/* HOVER */

.evolution-card:hover {

    transform:
    translateY(-6px);

    box-shadow:
    0 35px 80px rgba(0,0,0,0.08);
}

/* TITLE */

.evolution-card h3 {

    font-size: 2rem;

    margin-bottom: 20px;

    line-height: 1.1;
}

/* TEXT */

.evolution-card p {

    color:
    var(--muted);

    line-height: 2;
}

/* ========================= */
/* BRAND TRANSITION */
/* ========================= */

.brand-transition {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 34px;

    flex-wrap: wrap;

    margin-bottom: 70px;
}

/* OLD */

.brand-old {

    font-size: 2rem;

    font-weight: 700;

    letter-spacing: 8px;

    opacity: 0.35;
}

/* ARROW */

.brand-arrow {

    font-size: 2.5rem;

    opacity: 0.5;
}

/* NEW */

.brand-new {

    font-size: 2rem;

    font-weight: 800;

    letter-spacing: 8px;
}

/* ========================= */
/* MONOGRAMS */
/* ========================= */

.monograms {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 30px;

    flex-wrap: wrap;
}

/* BOX */

.logo-box {

    width: 180px;

    height: 180px;

    padding: 24px;

    border-radius: 30px;

    background:
    #111111;

    border:
    1px solid rgba(255,255,255,0.06);

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 18px;

    text-align: center;

    transition:
    0.35s ease;

    box-shadow:
    0 25px 60px rgba(0,0,0,0.12);
}

/* HOVER */

.logo-box:hover {

    transform:
    translateY(-6px);

    box-shadow:
    0 35px 80px rgba(0,0,0,0.18);
}

/* ========================= */
/* IMAGE */
/* ========================= */

.logo-box img {

    width: 100px;

    height: 100px;

    object-fit: contain;

    margin-bottom: 8px;

    filter:
    drop-shadow(0 12px 30px rgba(255,255,255,0.08));
}

/* ========================= */
/* NORTH LETTER */
/* ========================= */

.logo-box:nth-child(3) img {

    width: 120px;

    height: auto;

    transform:
    none;
}

/* TEXT */

.logo-box span {

    font-size: 0.72rem;

    letter-spacing: 4px;

    text-transform: uppercase;

    color:
    rgba(255,255,255,0.5);

    margin: 0;
}


/* ========================= */
/* MOBILE */
/* ========================= */

@media (max-width: 768px) {

    .logo-box {

        width: 140px;

        padding: 28px 18px;
    }

    .logo-box img {

        width: 70px;

        height: 70px;
    }

    .logo-box span {

        font-size: 0.65rem;

        letter-spacing: 2px;
    }
}

/* ========================= */
/* RESPONSIVE */
/* ========================= */

@media (max-width: 1100px) {

    .evolution-grid {

        grid-template-columns:
        1fr;
    }

    .evolution-content h2 {

        font-size: 3rem;
    }
}

@media (max-width: 768px) {

    .evolution-section {

        padding:
        0 20px 120px;
    }

    .evolution-content h2 {

        font-size: 2.4rem;

        letter-spacing: -2px;
    }

    .evolution-card {

        padding: 34px;
    }

    .brand-old,
    .brand-new {

        font-size: 1.1rem;

        letter-spacing: 4px;
    }

    .brand-arrow {

        font-size: 1.8rem;
    }

    .monograms {

        gap: 24px;
    }

    .monograms img {

        width: 90px;

        height: 90px;
    }
}