:root {
    --bg: #1e1e1e;
    --bg-page: rgba(30, 30, 30, 0.85);
    --text: #d0d0d0;
    --text-muted: #999;
    --accent: #e88aab;
    --accent-hover: #f0b0c8;
    --border: rgba(233, 138, 171, 0.156);
    --grid-dot: rgba(232, 138, 171, 0.12);
}

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

body {
    font-family: "Roboto Mono", monospace;
    font-size: 9pt;
    line-height: 1.5;
    color: var(--text);
    background: var(--bg);
}

#mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
}

.page {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 40px auto;
    padding: 60px 72px;
    background:
        radial-gradient(circle, var(--grid-dot) 1px, transparent 1px),
        var(--bg-page);
    background-size: 20px 20px, auto;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.contact-info {
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-info .line {
    display: block;
}

.contact-info .accent {
    color: var(--accent);
}

.hero-title {
    width: 100%;
    margin-bottom: 26px;
    margin-top: 26px;
}

h2 {
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text);
    margin-bottom: 20px;
    margin-top: 36px;
    display: flex;
    align-items: center;
    gap: 16px;
}

h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: linear-gradient(to right, var(--accent), transparent);
}

h2:first-of-type {
    margin-top: 0;
}

.grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 32px;
}

.skills-group {
    margin-bottom: 10px;
}

.skills-group .label {
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
}

.grid .entry {
    margin-bottom: 0;
}

.entry {
    margin-bottom: 24px;
}

.entry-title-line {
    margin-bottom: 2px;
}

.entry-name {
    font-weight: 700;
    font-size: 15px;
    color: var(--accent);
    text-decoration: underline;
}

.entry-name.no-link {
    text-decoration: none;
}

a.entry-name:hover {
    color: var(--accent-hover);
}

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

.entry-role {
    font-style: italic;
    color: var(--text);
}

.entry-date {
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 8px;
}

ul {
    list-style: disc;
    padding-left: 40px;
    margin-top: 6px;
}

ul li {
    margin-bottom: 4px;
}

.entry p {
    margin-top: 4px;
}

section {
    margin-bottom: 42px;
}

.section-arrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.section-arrow .pulse {
    font-size: 0.9em;
    line-height: 1;
}

@media (max-width: 700px) {
    .page {
        padding: 32px 24px;
    }

    .hero-title {
        max-height: 80px;
    }

    .grid {
        grid-template-columns: 1fr;
    }
}

@media print {
    #mesh-bg {
        display: none;
    }
}

.pulse {
    animation: pulse 1s ease-in-out infinite;
}

@keyframes pulse {
    0%   { opacity: 1; }
    50%  { opacity: 0.2; }
    100% { opacity: 1; }
}
