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

html, body {
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #fff;
}

body {
    min-height: 100vh;
    background: var(--bg) center center / cover no-repeat;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 24, 40, 0.25) 0%, rgba(20, 24, 40, 0.85) 100%);
    z-index: 0;
}

.logo {
    position: absolute;
    top: 28px;
    left: 28px;
    z-index: 2;
}

.logo img {
    width: 36px;
    height: 36px;
    display: block;
    border-radius: 50%;
    object-fit: cover;
}

main {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    padding: 48px 24px 8vh;
}

.stack {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 18px;
    max-width: 340px;
    width: 100%;
}

h1 {
    font-family: 'Instrument Serif', 'Times New Roman', serif;
    font-size: clamp(1.6rem, 3.6vw, 2.2rem);
    font-weight: 400;
    letter-spacing: -0.02em;
    line-height: 0.95;
}

h1 .dot {
    font-style: italic;
    opacity: 0.85;
}

.quote {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    max-width: 420px;
}

.quote-body {
    font-size: clamp(0.78rem, 1.2vw, 0.92rem);
    font-weight: 300;
    font-style: italic;
    line-height: 1.5;
    opacity: 0.92;
}

.quote-cite {
    font-size: 0.58rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    opacity: 0.6;
}

.sep {
    width: 44px;
    height: 1px;
    background: rgba(255, 255, 255, 0.35);
    border: 0;
}

.contact {
    font-size: 0.72rem;
    line-height: 1.7;
    letter-spacing: 0.01em;
    opacity: 0.88;
}

.contact a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.35);
    transition: border-color 0.2s ease;
}

.contact a:hover {
    border-bottom-color: #fff;
}

.btn {
    --btn-bg: rgba(255, 255, 255, 0.06);
    --btn-fg: #fff;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 22px 11px 26px;
    background: var(--btn-bg);
    color: var(--btn-fg);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.btn .arrow {
    display: inline-block;
    transition: transform 0.3s ease;
}

.btn:hover {
    --btn-bg: #fff;
    --btn-fg: #141828;
    border-color: #fff;
}

.btn:hover .arrow {
    transform: translate(2px, -2px);
}

@media (max-width: 600px) {
    .logo { top: 18px; left: 18px; }
    .logo img { width: 32px; height: 32px; }
    main { padding: 32px 20px 5vh; }
    .stack { gap: 12px; }
    .sep { width: 32px; }
    h1 { font-size: 1.35rem; }
    .quote-body { font-size: 0.78rem; }
    .quote { gap: 6px; }
}

