:root {
    --bg-color: #080808;
    --text-main: #f0f0f0;
    --text-muted: #666666;
    --accent: #d4af37;
    /* Subtle gold tint option, mostly used white though */
    --line-color: rgba(255, 255, 255, 0.1);

    --font-display: 'Helvetica', 'Arial', sans-serif;
    --font-body: 'Helvetica', 'Arial', sans-serif;
}

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

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    min-height: 100vh;
    overflow-x: hidden;
}



.main-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.header {
    margin-bottom: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    animation: fadeInDown 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.brand-identity {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.avatar-small {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-muted);
    border: 1px solid var(--line-color);
}

.brand-text h1 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 0.25rem;
    letter-spacing: -0.03em;
}

.brand-text .role {
    color: var(--text-muted);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.75rem;
    font-weight: 500;
    display: block;
    margin-bottom: 1rem;
}

.bio {
    font-size: 0.9rem;
    line-height: 1.5;
    color: #cccccc;
    max-width: 400px;
    margin-bottom: 1rem;
}

.inquiries-container {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.email-link,
.bio a {
    font-size: 0.9rem;
    color: var(--text-main);
    text-decoration: none;
    border-bottom: 1px solid var(--line-color);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.email-link:hover,
.bio a:hover {
    color: #fff;
    border-color: #fff;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    padding-top: 0.5rem;
}

.dot {
    width: 6px;
    height: 6px;
    background-color: #2ed573;
    border-radius: 50%;
    box-shadow: 0 0 8px rgba(46, 213, 115, 0.4);
    animation: pulse 2s infinite;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.dot.closed {
    background-color: #ff4757;
    box-shadow: 0 0 8px rgba(255, 71, 87, 0.4);
}

.emoji-font {
    font-family: 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

@keyframes pulse {
    0% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }

    100% {
        opacity: 1;
    }
}

/* Link Directory */
.link-directory {
    display: flex;
    flex-direction: column;
    border-top: 1px solid var(--line-color);
}

.link-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    text-decoration: none;
    color: var(--text-main);
    border-bottom: 1px solid var(--line-color);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) backwards;
}

/* Stagger animations */
.link-row:nth-child(1) {
    animation-delay: 0.1s;
}

.link-row:nth-child(2) {
    animation-delay: 0.2s;
}

.link-row:nth-child(3) {
    animation-delay: 0.3s;
}

.link-row:nth-child(4) {
    animation-delay: 0.4s;
}

.link-content {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.link-number {
    font-family: var(--font-display);
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 300;
}

.link-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    /* Larger, editorial size */
    font-weight: 400;
    letter-spacing: -0.02em;
}

.link-arrow {
    width: 24px;
    height: 24px;
    color: var(--text-muted);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(0);
}

/* Hover States */
.link-row:hover {
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.03), transparent);
}

.link-row:hover .link-content {
    transform: translateX(5px);
}

.link-row:hover .link-title {
    color: #fff;
}

.link-row:hover .link-arrow {
    color: #fff;
    transform: translateX(-5px) scale(1.1);
}

/* Featured Link Override */
.link-row.featured .link-title {
    font-weight: 600;
}

/* Footer */
.footer {
    margin-top: auto;
    padding-top: 3rem;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.5;
    animation: fadeIn 1s ease-out 0.8s backwards;
}

/* Responsive adjustments */
@media (max-width: 400px) {
    .brand-text h1 {
        font-size: 2rem;
    }

    .link-title {
        font-size: 1.25rem;
    }
}

/* Global Keyframes */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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