@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&display=swap');

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&display=swap');



:root {
    --font-primary: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-secondary: 'Space Grotesk', monospace, sans-serif;
    --font-mono: 'Space Grotesk', 'Courier New', monospace;
}

body {
    font-family: var(--font-primary);
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}



h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
}

h4 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.8;
}

.text-large {
    font-size: 1.25rem;
    line-height: 1.7;
}

.text-small {
    font-size: 0.875rem;
    line-height: 1.6;
}

.text-tiny {
    font-size: 0.75rem;
    line-height: 1.5;
}
.text-bold {
    font-weight: 700;
}

.text-semibold {
    font-weight: 600;
}

.text-medium {
    font-weight: 500;
}

.text-light {
    font-weight: 300;
}

.text-uppercase {
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}
.tech-font {
    font-family: var(--font-secondary);
}

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

.gradient-text {
    background: linear-gradient(135deg, #0D5C63 0%, #FFB347 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    position: relative;
    display: inline-block;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 30%;
    background: linear-gradient(135deg, rgba(255, 179, 71, 0.3), rgba(255, 140, 66, 0.3));
    z-index: -1;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

a {
    font-weight: 500;
    transition: all 0.3s ease;
}

blockquote {
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    border-left: 4px solid #FFB347;
    background: linear-gradient(135deg, rgba(13, 92, 99, 0.05) 0%, rgba(255, 179, 71, 0.05) 100%);
    border-radius: 0 12px 12px 0;
    font-style: italic;
    font-size: 1.125rem;
    line-height: 1.8;
}

blockquote p:last-child {
    margin-bottom: 0;
}

code {
    font-family: var(--font-mono);
    background: rgba(13, 92, 99, 0.1);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.9em;
}

pre {
    font-family: var(--font-mono);
    background: #1A2332;
    color: #FFB347;
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
}

pre code {
    background: none;
    padding: 0;
    color: inherit;
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }
    
    h1 {
        letter-spacing: -0.02em;
    }
    
    h2 {
        letter-spacing: -0.02em;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }
}

@media print {
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: #000;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
    
    p, li {
        orphans: 3;
        widows: 3;
    }
}

