body 
{
    margin: 0;
    padding: 8vw;
    background: #000000;
    height: 100vh;
    overflow: hidden;
}            

.maze-canvas 
{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 40px;
    left: auto !important;
    border-radius: 12px;
}

*, *::before, *::after 
{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.content 
{
    position: relative;
    z-index: 2;
    padding: 0 7vw;
    max-width: 680px;
}

h1 
{
    font-size: clamp(6.8rem, 10vw, 9.5rem);
    font-weight: 400;
    line-height: 0.9;
    letter-spacing: -0.02em;
    margin-bottom: 1.8rem;
    color: #f0f0f0;
}

.sub 
{
    font-family: 'Instrument Serif', serif;
    font-size: 1.6rem;
    font-weight: 300;
    color: #ffffff;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 3rem;
}

.cta 
{
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.9rem 2rem;
    border: 2px solid transparent;
    border-radius: 26px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Instrument Serif', serif;
    font-size: 1.15rem;
    background: #272727;
    transition: border-color 0.2s, color 0.2s, background 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

.cta:hover 
{
    background: #414141;
}