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

body {
    background: #000000;
    font-family: 'Inter', 'Helvetica Neue', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    color: #ffffff;
    padding: 2rem;
}

/* background */
.bg-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.01) 2px,
            rgba(255, 255, 255, 0.01) 4px
        ),
        radial-gradient(circle at 20% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
}

/* texture */
.bg-overlay::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 5%;
    width: 90%;
    height: 80%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 800 600'%3E%3Cpath fill='none' stroke='rgba(255,255,255,0.02)' stroke-width='0.5' d='M150,100 L200,80 L280,120 L350,90 L420,130 L500,70 L580,110 L650,80 M100,300 L180,280 L250,320 L330,290 L400,340 L490,300 L560,330 L650,290 M200,450 L270,430 L340,470 L430,440 L510,480 L600,450 L680,490' /%3E%3C/svg%3E") no-repeat center/cover;
    opacity: 0.3;
    pointer-events: none;
}

.container {
    position: relative;
    z-index: 2;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
}

main {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(0px);
    padding: 3rem 2rem;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.2s ease;
}

@supports not (backdrop-filter: blur(0px)) {
    main {
        background: #000000;
    }
}

h1 {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin-bottom: 1rem;
    text-transform: lowercase;
    line-height: 1.1;
}

h1 span {
    font-weight: 400;
    color: rgba(255, 255, 255, 0.5);
}

.subhead {
    font-size: 0.75rem;
    letter-spacing: 2px;
    font-weight: 400;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

.quote-block {
    margin: 2rem 0 2rem 0;
    position: relative;
    border-left: 2px solid rgba(255, 255, 255, 0.3);
    padding: 0.5rem 0 0.5rem 1.5rem;
}

.quote-mark {
    font-size: 2.5rem;
    font-family: Georgia, 'Times New Roman', serif;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1;
    display: block;
    margin-bottom: 0.25rem;
}

.quote-text {
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 350;
    color: #e5e5e5;
    font-style: normal;
    transition: opacity 0.2s ease;
}

.process-note {
    margin: 2rem 0 1.5rem 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.process-note p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
}

.footer-note {
    margin-top: 2rem;
    font-size: 0.7rem;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.25);
    text-align: left;
}

/* adaptive */
@media (max-width: 550px) {
    body {
        padding: 1rem;
    }
    
    main {
        padding: 2rem 1.5rem;
    }
    
    h1 {
        font-size: 2.8rem;
    }
    
    .quote-text {
        font-size: 1rem;
    }
    
    .subhead {
        font-size: 0.7rem;
        letter-spacing: 1.5px;
    }
}

.quote-text {
    opacity: 1;
}