/* Zed-inspired minimalist portfolio CSS */
/* ========================================== */

/* CSS Custom Properties (CSS Variables) */
:root {
    /* Color palette - inspired by zed.dev */
    --color-bg-primary: hsl(0, 0%, 98%);
    --color-bg-secondary: hsl(0, 0%, 100%);
    --color-bg-tertiary: hsl(0, 0%, 96%);

    --color-text-primary: hsl(218, 13%, 15%);
    --color-text-secondary: hsl(218, 13%, 30%);
    --color-text-tertiary: hsl(218, 13%, 45%);

    --color-border: hsl(0, 0%, 90%);
    --color-border-light: hsl(0, 0%, 95%);

    --color-accent: hsl(214, 100%, 50%);
    --color-accent-hover: hsl(214, 100%, 40%);
    --color-accent-rgb: 0, 122, 255;

    --color-success: hsl(142, 76%, 36%);
    --color-success-rgb: 34, 197, 94;
    --color-warning: hsl(38, 92%, 50%);
    --color-warning-rgb: 234, 179, 8;
    --color-error: hsl(0, 84%, 60%);
    --color-error-rgb: 239, 68, 68;

    /* Spacing scale */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-size-xs: 0.75rem; /* 12px */
    --font-size-sm: 0.875rem; /* 14px */
    --font-size-base: 1rem; /* 16px */
    --font-size-lg: 1.125rem; /* 18px */
    --font-size-xl: 1.25rem; /* 20px */
    --font-size-2xl: 1.5rem; /* 24px */
    --font-size-3xl: 1.875rem; /* 30px */
    --font-size-4xl: 2.25rem; /* 36px */
    --font-size-5xl: 3rem; /* 48px */

    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark mode colors */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-primary: hsl(218, 13%, 7.5%);
        --color-bg-secondary: hsl(218, 13%, 10%);
        --color-bg-tertiary: hsl(218, 13%, 12%);

        --color-text-primary: hsl(0, 0%, 98%);
        --color-text-secondary: hsl(0, 0%, 80%);
        --color-text-tertiary: hsl(0, 0%, 65%);

        --color-border: hsl(218, 13%, 20%);
        --color-border-light: hsl(218, 13%, 15%);

        --color-accent: hsl(214, 100%, 65%);
        --color-accent-hover: hsl(214, 100%, 75%);
        --color-accent-rgb: 102, 179, 255;
        --color-success-rgb: 34, 197, 94;
        --color-warning-rgb: 234, 179, 8;
        --color-error-rgb: 239, 68, 68;

        --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
        --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
        --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4);
    }
}

/* CSS Reset and Base Styles */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
}

body {
    font-family: var(--font-agrandir);
    font-weight: 400;
    line-height: var(--line-height-normal);
    color: var(--color-text-primary);
    background-color: var(--color-bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-lora);
    font-weight: 500;
    line-height: var(--line-height-tight);
    margin-bottom: var(--space-md);
    color: var(--color-text-primary);
}

h1 {
    font-size: var(--font-size-5xl);
    font-weight: 600;
    margin-bottom: var(--space-lg);
}

h2 {
    font-size: var(--font-size-4xl);
    font-weight: 600;
    margin-bottom: var(--space-xl);
    position: relative;
}

h2.section-title::after {
    content: "";
    position: absolute;
    bottom: calc(var(--space-sm) * -1);
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

h3 {
    font-size: var(--font-size-2xl);
    font-weight: 500;
    margin-bottom: var(--space-sm);
}

p {
    margin-bottom: var(--space-md);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

ul,
ol {
    margin-bottom: var(--space-md);
    padding-left: var(--space-lg);
}

li {
    margin-bottom: var(--space-xs);
    color: var(--color-text-secondary);
}

/* Layout Components */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-lg);
    }
}

.section {
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.section:last-of-type {
    border-bottom: none;
}

/* Header & Navigation */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: var(--color-bg-secondary);
    border-bottom: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
}

.nav-logo .logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--color-text-primary);
    transition: transform var(--transition-normal);
}

.nav-logo .logo:hover {
    transform: scale(1.1);
    color: var(--color-accent);
}

.nav-links {
    display: flex;
    gap: var(--space-xl);
}

.nav-links a {
    font-family: var(--font-writer);
    font-weight: 400;
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    padding: var(--space-xs) 0;
}

.nav-links a:hover {
    color: var(--color-text-primary);
}

.nav-links a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-accent);
    transition: width var(--transition-normal);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links .lang-switch {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: var(--space-xs) var(--space-sm);
    margin-left: var(--space-sm);
    transition: all var(--transition-fast);
}

.nav-links .lang-switch::after {
    display: none;
}

.nav-links .lang-switch:hover {
    background-color: var(--color-bg-tertiary);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

@media (max-width: 768px) {
    .nav-links {
        gap: var(--space-md);
    }

    .nav-links a {
        font-size: var(--font-size-xs);
    }

    .nav-links .lang-switch {
        padding: calc(var(--space-xs) / 2) var(--space-xs);
        margin-left: var(--space-xs);
    }
}

/* Hero Section */
.hero {
    padding: var(--space-3xl) 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-size: var(--font-size-5xl);
    margin-bottom: var(--space-sm);
}

.hero-subtitle {
    font-family: var(--font-writer);
    font-size: var(--font-size-xl);
    font-weight: 400;
    color: var(--color-text-secondary);
    margin-bottom: var(--space-xl);
    letter-spacing: 0.05em;
}

.hero-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-2xl);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: var(--line-height-relaxed);
}

@keyframes keyword-pulse-once {
    0% {
        transform: scale(1);
        color: var(--color-text-primary);
    }
    50% {
        transform: scale(1.05);
        color: var(--color-accent);
    }
    100% {
        transform: scale(1);
        color: var(--color-text-primary);
    }
}

.keyword-highlight {
    font-weight: 600;
    color: var(--color-text-primary);
    position: relative;
    display: inline-block;
    border-bottom: 2px solid transparent;
    transition: all var(--transition-fast);
    animation: keyword-pulse-once 0.8s ease-in-out 1;
    animation-fill-mode: both;
}

.keyword-highlight:hover {
    border-bottom-color: var(--color-accent);
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Staggered animation delays for keyword highlights */
.hero-description .keyword-highlight:nth-of-type(1) {
    animation-delay: 1s;
}
.hero-description .keyword-highlight:nth-of-type(2) {
    animation-delay: 1.2s;
}
.hero-description .keyword-highlight:nth-of-type(3) {
    animation-delay: 1.4s;
}
.hero-description .keyword-highlight:nth-of-type(4) {
    animation-delay: 1.6s;
}
.hero-description .keyword-highlight:nth-of-type(5) {
    animation-delay: 1.8s;
}
.hero-description .keyword-highlight:nth-of-type(6) {
    animation-delay: 2s;
}
.hero-description .keyword-highlight:nth-of-type(7) {
    animation-delay: 2.2s;
}
.hero-description .keyword-highlight:nth-of-type(8) {
    animation-delay: 2.4s;
}
.hero-description .keyword-highlight:nth-of-type(9) {
    animation-delay: 2.6s;
}
.hero-description .keyword-highlight:nth-of-type(10) {
    animation-delay: 2.8s;
}
.hero-description .keyword-highlight:nth-of-type(11) {
    animation-delay: 3s;
}
.hero-description .keyword-highlight:nth-of-type(12) {
    animation-delay: 3.2s;
}
.hero-description .keyword-highlight:nth-of-type(13) {
    animation-delay: 3.4s;
}
.hero-description .keyword-highlight:nth-of-type(14) {
    animation-delay: 3.6s;
}
.hero-description .keyword-highlight:nth-of-type(15) {
    animation-delay: 3.8s;
}
.hero-description .keyword-highlight:nth-of-type(16) {
    animation-delay: 4s;
}
.hero-description .keyword-highlight:nth-of-type(17) {
    animation-delay: 4.2s;
}
.hero-description .keyword-highlight:nth-of-type(18) {
    animation-delay: 4.4s;
}
.hero-description .keyword-highlight:nth-of-type(19) {
    animation-delay: 4.6s;
}
.hero-description .keyword-highlight:nth-of-type(20) {
    animation-delay: 4.8s;
}

@media (prefers-reduced-motion: reduce) {
    .keyword-highlight {
        animation: none;
        transform: none;
    }
}

.hero-links {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
}

/* Buttons */
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-md) var(--space-xl);
    font-family: var(--font-writer);
    font-weight: 500;
    font-size: var(--font-size-sm);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-normal);
    background-color: var(--color-accent);
    color: white;
}

.button:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.button-outline {
    background-color: transparent;
    border-color: var(--color-border);
    color: var(--color-text-secondary);
}

.button-outline:hover {
    background-color: var(--color-bg-tertiary);
    border-color: var(--color-text-tertiary);
    color: var(--color-text-primary);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-links {
        flex-direction: column;
        gap: var(--space-md);
    }

    .button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: var(--space-2xl);
    padding-left: 80px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    position: absolute;
    left: 0;
    top: 0;
    width: 60px;
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
    text-align: right;
    padding-right: var(--space-md);
}

.timeline-content {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow var(--transition-normal),
        border-color var(--transition-normal);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-light);
}

.timeline-role {
    font-family: var(--font-writer);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.timeline-company {
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-md);
}

.timeline-description {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-md);
}

.timeline-description li {
    margin-bottom: var(--space-sm);
    color: var(--color-text-secondary);
    line-height: var(--line-height-relaxed);
}

.timeline-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
    margin-top: var(--space-md);
}

.tech-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-xs);
    color: var(--color-text-tertiary);
    background-color: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    white-space: nowrap;
}

.tech-tag:hover {
    background-color: var(--color-border-light);
    color: var(--color-text-secondary);
}

@media (max-width: 768px) {
    .timeline::before {
        left: 15px;
    }

    .timeline-item {
        padding-left: 60px;
    }

    .timeline-date {
        width: 40px;
        font-size: 0.7rem;
        padding-right: var(--space-sm);
    }

    .timeline-content {
        padding: var(--space-md);
    }

    .timeline-tech {
        gap: var(--space-xs);
    }
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.skill-category {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: box-shadow var(--transition-normal);
}

.skill-category:hover {
    box-shadow: var(--shadow-md);
}

.skill-category-title {
    font-family: var(--font-writer);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-md);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-accent);
}

.skill-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.skill-tag {
    display: inline-block;
    padding: var(--space-xs) var(--space-sm);
    font-family: var(--font-plexSans);
    font-size: var(--font-size-sm);
    color: var(--color-text-secondary);
    background-color: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.skill-tag:hover {
    background-color: var(--color-border-light);
    color: var(--color-text-primary);
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .skills-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Projects Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.project-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.project-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.project-title {
    font-family: var(--font-writer);
    font-weight: 600;
    font-size: var(--font-size-xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
}

.project-company {
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-md);
}

.project-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.project-tech {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Writing Section */
.writing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.story-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.story-card {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-normal);
}

.story-link:hover .story-card {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-border-light);
}

.story-title {
    font-family: var(--font-writer);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-xs);
    line-height: var(--line-height-tight);
}

.story-meta {
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
    margin-bottom: var(--space-md);
}

.story-description {
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--line-height-relaxed);
}

.story-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-xs);
}

.writing-footer {
    margin-top: var(--space-2xl);
    text-align: center;
}

.writing-read-more {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
}

.medium-link {
    font-family: var(--font-writer);
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.medium-link:hover {
    color: var(--color-accent-hover);
}

.link-arrow {
    display: inline-block;
    margin-left: var(--space-xs);
    transition: transform var(--transition-fast);
}

.medium-link:hover .link-arrow {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .writing-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

/* Contact Section */
.contact-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.contact-description {
    font-size: var(--font-size-lg);
    color: var(--color-text-secondary);
    margin-bottom: var(--space-3xl);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-xl);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-item-link-wrapper {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.contact-item {
    background-color: var(--color-bg-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    text-align: center;
    transition: all var(--transition-normal);
    height: 100%;
}

.contact-item-link-wrapper:hover .contact-item {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-border-light);
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-bg-tertiary);
    border-radius: var(--radius-full);
    color: var(--color-accent);
    transition: all var(--transition-normal);
}

.contact-item-link-wrapper:hover .contact-icon-wrapper {
    background-color: var(--color-accent);
    color: white;
}

.contact-icon {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

.contact-item-title {
    font-family: var(--font-writer);
    font-weight: 600;
    font-size: var(--font-size-lg);
    color: var(--color-text-primary);
    margin-bottom: var(--space-sm);
}

.contact-item-text {
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-base);
    color: var(--color-text-secondary);
    transition: color var(--transition-fast);
}

.contact-item-link-wrapper:hover .contact-item-text {
    color: var(--color-accent-hover);
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
        max-width: 400px;
    }

    .contact-item {
        padding: var(--space-lg);
    }
}

/* Footer */
.footer {
    padding: var(--space-2xl) 0;
    background-color: var(--color-bg-tertiary);
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-3xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer-copyright {
    font-family: var(--font-zed-mono);
    font-size: var(--font-size-sm);
    color: var(--color-text-tertiary);
}

.footer-note {
    font-family: var(--font-writer);
    font-size: var(--font-size-sm);
    font-style: italic;
    color: var(--color-text-tertiary);
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-mono {
    font-family: var(--font-zed-mono);
}

.text-writer {
    font-family: var(--font-writer);
}

.text-serif {
    font-family: var(--font-lora);
}

.mb-xs {
    margin-bottom: var(--space-xs);
}
.mb-sm {
    margin-bottom: var(--space-sm);
}
.mb-md {
    margin-bottom: var(--space-md);
}
.mb-lg {
    margin-bottom: var(--space-lg);
}
.mb-xl {
    margin-bottom: var(--space-xl);
}
.mb-2xl {
    margin-bottom: var(--space-2xl);
}

.mt-xs {
    margin-top: var(--space-xs);
}
.mt-sm {
    margin-top: var(--space-sm);
}
.mt-md {
    margin-top: var(--space-md);
}
.mt-lg {
    margin-top: var(--space-lg);
}
.mt-xl {
    margin-top: var(--space-xl);
}
.mt-2xl {
    margin-top: var(--space-2xl);
}

/* Print Styles */
@media print {
    .nav,
    .hero-links,
    .footer {
        display: none;
    }

    .section {
        padding: var(--space-xl) 0;
        border-bottom: 1px solid #ccc;
    }

    body {
        color: #000;
        background: #fff;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}
