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

        :root {
            --bg: #ffffff;
            --text: #000000;
            --text-muted: rgba(0, 0, 0, 0.4);
            --accent: #000000;
            --text-body: rgba(0, 0, 0, 0.65);
            --border: rgba(0, 0, 0, 0.08);
        }

        html {
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-y: scroll;
            scrollbar-gutter: stable;
            -ms-overflow-style: none;
            scrollbar-width: none;
        }

        html::-webkit-scrollbar {
            display: none;
        }

        body {
            background-color: var(--bg);
            color: var(--text);
            font-family: 'Inter', sans-serif;
            font-weight: 400;
            letter-spacing: -0.015em;
            min-height: 100vh;
        }

        .page {
            max-width: 500px;
            margin: 0;
            padding: 50px 24px 48px 30px;
            margin-right: 420px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }

        /* Photo */
        .photo-wrapper {
            display: none;
            width: 70px;
            height: 88px;
            border-radius: 0;
            overflow: hidden;
            flex-shrink: 0;
            background: #000000;
        }

        .photo-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 30%;
        }

        .photo-placeholder {
            width: 100%;
            height: 100%;
            background: linear-gradient(145deg, #333 0%, #2a2a2a 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #555;
            font-size: 48px;
            font-weight: 500;
        }

        /* Bio */
        .bio {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .bio-greeting {
            font-size: 36px;
            font-weight: 400;
            letter-spacing: -0.032em;
            line-height: 1.2em;
            color: var(--text);
            margin-bottom: 24px;
            text-wrap: balance;
        }

        .bio p {
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.016em;
            line-height: 1.38em;
            color: var(--text-body);
            margin-bottom: 20px;
            max-width: 40ch;
            text-wrap: pretty;
        }

        .bio p:last-child {
            margin-bottom: 0;
        }

        .bio a {
            color: var(--accent);
            text-decoration: none;
            transition: text-decoration 0.15s ease;
        }

        .bio a:hover {
            text-decoration: underline;
        }

        .green {
            color: inherit;
        }

        /* Accordions */
        .accordions {
            display: flex;
            flex-direction: column;
            margin-top: 20px;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .accordion + .accordion {
            border-top: 1px solid var(--border);
        }

        .accordion-trigger {
            display: flex;
            align-items: center;
            justify-content: space-between;
            width: 100%;
            padding: 18px 0;
            background: none;
            border: none;
            color: var(--text-body);
            font-family: 'Inter', sans-serif;
            font-size: 17px;
            font-weight: 400;
            letter-spacing: -0.016em;
            line-height: 1.38em;
            cursor: pointer;
            transition: opacity 0.2s ease;
            text-align: left;
        }

        .accordion-trigger:hover {
            opacity: 0.7;
        }

        .accordion-icon {
            color: var(--text-body);
            font-size: 18px;
            font-weight: 300;
            transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
            width: 24px;
            text-align: center;
            flex-shrink: 0;
            user-select: none;
            line-height: 1;
        }

        .accordion.open .accordion-icon {
            transform: rotate(45deg);
        }

        .accordion-content {
            overflow: hidden;
            max-height: 0;
            transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                        opacity 0.3s ease;
            opacity: 0;
        }

        .accordion.open .accordion-content {
            opacity: 1;
        }

        .accordion-inner {
            padding-bottom: 20px;
            color: var(--text-body);
            font-size: 14px;
            line-height: 1.42em;
            font-weight: 400;
            letter-spacing: -0.012em;
        }

        .accordion-inner a {
            color: #000;
            text-decoration: none;
            border-bottom: none;
            transition: text-decoration-color 0.2s ease;
        }

        .accordion-inner a:hover {
            color: #000;
            text-decoration: underline;
        }

        .accordion-inner p + p {
            margin-top: 12px;
        }

        .tag-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px 32px;
        }

        .tag {
            display: block;
            padding: 0;
            background: none;
            border: none;
            border-radius: 0;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-body);
            letter-spacing: -0.012em;
            line-height: 1.42em;
        }

        .thoughts-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .thoughts-list li {
            list-style: none;
            position: relative;
            font-size: 14px;
            font-weight: 400;
            color: var(--text-body);
            letter-spacing: -0.012em;
            line-height: 1.38em;
            padding-left: 12px;
        }

        .thoughts-list li::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0.62em;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.28);
        }

        .setup-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .setup-item {
            display: flex;
            align-items: baseline;
            gap: 12px;
        }

        .setup-label {
            color: var(--text-muted);
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.03em;
            flex-shrink: 0;
        }

        .setup-dots {
            flex: 1;
            border-bottom: 1px dotted rgba(0, 0, 0, 0.15);
            min-width: 20px;
            margin-bottom: 4px;
        }

        .setup-value {
            color: var(--text);
            font-size: 14px;
        }

        /* Two-column layout */
        .page-wrapper {
            display: flex;
            min-height: 100vh;
        }
        .photo-column {
            position: fixed;
            right: 30px;
            bottom: 30px;
            display: flex;
            flex-direction: column;
            align-items: flex-end;
            justify-content: flex-end;
        }
        .photo-main {
            max-width: 330px;
            width: 100%;
            object-fit: cover;
            object-position: center 20%;
        }
        .photo-caption {
            color: var(--text-body);
            font-size: 12px;
            font-weight: 400;
            line-height: 1.6em;
            text-align: right;
            margin-bottom: 13px;
        }

        .footer {
            position: fixed;
            top: 50px;
            right: 30px;
            color: var(--text-body);
            font-size: 12px;
            line-height: 1.6em;
            z-index: 10;
        }

        .footer-mobile {
            display: none;
        }

        .socials {
            position: fixed;
            bottom: 30px;
            right: 30px;
            font-size: 12px;
            line-height: 1.6em;
            z-index: 10;
            transition: opacity 0.3s ease;
        }

        .socials.hidden {
            opacity: 0 !important;
            visibility: hidden;
            pointer-events: none;
        }

        .socials a {
            color: var(--text-body);
            text-decoration: none;
            transition: opacity 0.2s ease;
        }

        .socials a:hover {
            opacity: 0.6;
        }

        .socials-separator {
            color: var(--text-body);
        }

        /* Now Playing - Last.fm */
        .now-playing {
            position: fixed;
            bottom: 30px;
            left: 30px;
            color: var(--text-body);
            font-size: 12px;
            line-height: 1.6em;
            transition: opacity 0.3s ease;
            z-index: 10;
        }

        .now-playing.hidden,
        .footer.hidden {
            opacity: 0 !important;
            visibility: hidden;
            pointer-events: none;
        }

        /* Entrance animations */
        .fade-up {
            opacity: 0;
            transform: translateY(14px);
            animation: fadeUp 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
        }

        @keyframes fadeUp {
            to { opacity: 1; transform: translateY(0); }
        }

        .delay-1 { animation-delay: 0.06s; }
        .delay-2 { animation-delay: 0.14s; }
        .delay-3 { animation-delay: 0.22s; }
        .delay-4 { animation-delay: 0.30s; }
        .delay-5 { animation-delay: 0.38s; }
        .delay-6 { animation-delay: 0.44s; }

        @media (max-width: 1100px) {
            .page-wrapper {
                flex-direction: column;
            }
            .photo-column {
                display: none !important;
            }
            .page {
                margin-right: 0;
                padding: 50px 24px calc(10px + env(safe-area-inset-bottom)) 30px;
                gap: 27px;
                max-width: 500px;
            }
            .photo-wrapper {
                width: 70px;
                height: 88px;
            }
            .bio-greeting {
                font-size: 36px;
                line-height: 1.2em;
                letter-spacing: -0.032em;
                margin-bottom: 19px;
            }
            .bio p {
                font-size: 17px;
                font-weight: 400;
                letter-spacing: -0.016em;
                line-height: 1.38em;
                color: var(--text-body);
                max-width: 40ch;
                margin-bottom: 15px;
            }
            .accordions {
                margin-top: 15px;
            }
            .accordion-trigger {
                padding: 16px 0;
            }
            .accordion-inner {
                padding-bottom: 18px;
                font-size: 14px;
                line-height: 1.42em;
            }
            .thoughts-list {
                gap: 11px;
            }
            .footer {
                display: block !important;
                position: static;
                top: auto;
                right: auto;
                bottom: auto;
                left: auto;
                text-align: left;
                margin: 16px 0 calc(4px + env(safe-area-inset-bottom));
                padding: 0;
                width: 100%;
            }
            .footer-mobile {
                display: block !important;
            }
            .footer-desktop {
                display: none !important;
            }
            .now-playing {
                display: none !important;
            }
        }
