:root {
    --nord4: #D8DEE9;
    --nord6: #ECEFF4;
    --nord-grid: rgba(76, 86, 106, 0.15);
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100vh; /* Fallback for older browsers */
    height: 100dvh; /* Prevents mobile browser address bars from pushing the footer off-screen */
    background-color: #000000; /* Absolute black seamlessly merges with the image background */
    font-family: 'IBM Plex Mono', monospace;
    overflow: hidden; /* Prevents scrolling, keeping the poster static and framed */
}

/* Subtle architectural background grid */
.grid-matrix {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    pointer-events: none;
    z-index: 0;
    background-image:
        linear-gradient(var(--nord-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--nord-grid) 1px, transparent 1px);
    background-size: 3rem 3rem;
    background-position: center center;
}

/* The artwork acts as the structural center */
.hero-art {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    height: 85vh;
    height: 85dvh;
    max-width: 100vw;
    object-fit: contain;
    z-index: 1;
}

/* The typography sits on a higher layer and interacts visually with the image beneath */
.typography-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(1.5rem, 5vw, 3rem);
    box-sizing: border-box;
    color: var(--nord6);
    /* This property dynamically inverts the artwork colors inside the text */
    mix-blend-mode: difference; 
}

.top-bar {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.5rem;
    font-size: clamp(0.65rem, 2vw, 0.85rem);
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Massive, screen-spanning title */
.giant-title {
    font-size: clamp(4rem, min(14vw, 25dvh), 18rem);
    font-weight: 700;
    line-height: 0.8;
    margin: 0;
    text-align: center;
    letter-spacing: -0.04em;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-transform: uppercase;
}

.bottom-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    row-gap: 1.5rem;
    font-size: clamp(0.65rem, 2vw, 0.8rem);
}

.data-block {
    display: grid;
    grid-template-columns: max-content max-content;
    column-gap: clamp(0.8rem, 2vw, 1.2rem);
    row-gap: 0.4rem;
}

.data-block.left-align {
    justify-items: start;
}

.data-block.right-align {
    justify-items: end;
}

.data-label {
    color: var(--nord6);
    font-weight: 700;
    opacity: 0.6;
}

.data-value {
    color: var(--nord4);
}

.right-align {
    text-align: right;
    margin-left: auto;
}

/* Responsive Breakpoints */
@media (max-width: 768px) {
    .top-bar, .bottom-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    .right-align {
        text-align: left;
        margin-left: 0;
    }
    .data-block.right-align {
        justify-items: start;
    }
}