/* Enhanced Zen Titanium CSS for Wesley "The Titanium Monk" */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Orbitron:wght@400;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.1/css/all.min.css');

:root {
    --titanium-orange: #ff8c00;
    --titanium-orange-dark: #e67e00;
    --titanium-orange-light: #ffa500;
    --titanium-dark: #1a1a1a;
    --titanium-gray: #444;
    --titanium-light: #0f0f0f;
    --white: #ffffff;
    --light-gray: #f5f5f5;
    --medium-gray: #cccccc;
    --text-gray: #666;
    --glass-bg: rgba(26, 26, 26, 0.85);
    --glass-border: rgba(139, 69, 19, 0.3);
    --earth-tone: #8B4513;
    --muted-green: #6B705C;
    --titanium-shadow: 0 1px 4px rgba(176, 176, 176, 0.1);
    --alt-bg: #f9f9f9;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--titanium-dark);
    background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 50%, var(--light-gray) 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5px;
    position: relative;
    z-index: 1;
}

/* Header */
header {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border-bottom: 0.3px solid var(--glass-border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--titanium-shadow);
    transition: transform 0.15s ease;
    width: 100%;
    margin-bottom: 0;
}

header:hover {
    transform: translateY(-0.5px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.2rem 10px;
    min-height: 30px;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--titanium-dark);
    gap: 5px;
    flex-shrink: 0;
    max-width: 50%;
}

.logo img {
    height: 25px;
    width: 25px;
    object-fit: contain;
    transition: transform 0.15s ease, filter 0.15s ease;
    background: transparent;
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.05) drop-shadow(0 0 2px var(--titanium-gray));
    border-radius: 50%;
    padding: 1px;
}

.logo:hover img {
    transform: scale(1.03);
    filter: brightness(1.2) contrast(1.2) drop-shadow(0 0 5px var(--titanium-gray));
}

.logo-text h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--titanium-orange);
    -webkit-text-stroke: 0.03px var(--titanium-dark);
    text-shadow: 0 0 0.2px rgba(139, 69, 19, 0.05);
    margin: 0;
    letter-spacing: -0.3px;
}

.logo-text .subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.5rem;
    color: var(--muted-green);
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-shadow: 0 0 1px rgba(107, 112, 92, 0.2);
}

nav {
    flex-shrink: 0;
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 101;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 0.3rem;
    margin: 0;
    padding: 0.1rem 0;
    background: var(--glass-bg);
    border-radius: 10px;
    padding: 0.1rem 0.3rem;
    backdrop-filter: blur(5px);
}

nav a {
    text-decoration: none;
    color: var(--white);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    padding: 0.4rem 0.6rem;
    border-radius: 10px;
    transition: all 0.15s ease;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1), rgba(176, 176, 176, 0.1));
    backdrop-filter: blur(5px);
    border: 0.5px solid var(--titanium-gray);
    box-shadow: var(--titanium-shadow), inset 0 0 3px rgba(176, 176, 176, 0.1);
    font-size: 0.6rem;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    overflow: hidden;
    pointer-events: auto;
}

nav a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(176, 176, 176, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease;
    z-index: 0;
}

nav a:hover::before {
    width: 100px;
    height: 100px;
}

nav a:hover {
    color: var(--titanium-orange);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.15), rgba(176, 176, 176, 0.15));
    border-color: var(--titanium-orange);
    box-shadow: 0 2px 5px rgba(255, 140, 0, 0.2), inset 0 0 5px rgba(176, 176, 176, 0.2);
    transform: translateY(-0.5px);
}

nav a.active {
    color: var(--titanium-orange);
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.2), rgba(176, 176, 176, 0.2));
    border-color: var(--titanium-orange);
    box-shadow: 0 2px 5px rgba(255, 140, 0, 0.2), inset 0 0 5px rgba(176, 176, 176, 0.2);
}

/* Main Content */
main {
    min-height: calc(100vh - 60px);
    padding: 0;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 1rem 0;
    margin: 0;
    position: relative;
    overflow: hidden;
    background: var(--alt-bg);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(107, 112, 92, 0.02) 0%, transparent 70%);
    pointer-events: none;
    animation: pulse 4s infinite;
}

@keyframes pulse {
    0% { opacity: 0.03; }
    50% { opacity: 0.08; }
    100% { opacity: 0.03; }
}

.hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--titanium-orange) 0%, var(--titanium-dark) 50%, var(--earth-tone) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.hero .subtitle {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.7rem;
    color: var(--muted-green);
    font-style: italic;
    margin-bottom: 0.5rem;
    font-weight: 400;
    text-shadow: 0 0 1px rgba(107, 112, 92, 0.1);
}

.hero .value-proposition {
    font-size: 1rem;
    font-weight: 500;
    color: var(--titanium-gray);
    margin-bottom: 1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 0.85rem;
    max-width: 700px;
    margin: 0 auto 1rem auto;
    line-height: 1.5;
    color: var(--titanium-gray);
}

/* Titanium Story */
.titanium-story {
    padding: 0.8rem 0.5rem;
    margin: 1rem 0;
    background: var(--alt-bg);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 0.3px solid var(--glass-border);
    box-shadow: var(--titanium-shadow);
}

.titanium-story h2 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--titanium-orange) 0%, var(--titanium-dark) 70%, var(--earth-tone) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.4px;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.titanium-story ul {
    list-style: none;
    padding-left: 1.2rem;
}

.titanium-story li {
    font-size: 0.85rem;
    color: var(--titanium-gray);
    line-height: 1.5;
    margin-bottom: 0.3rem;
    position: relative;
}

.titanium-story li::before {
    content: "•";
    color: var(--titanium-orange);
    font-weight: bold;
    position: absolute;
    left: -1rem;
}

/* Glass Card */
.glass-card {
    background: var(--white);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 0.3px solid var(--glass-border);
    padding: 0.8rem;
    margin-bottom: 1rem;
    transition: all 0.15s ease;
    box-shadow: var(--titanium-shadow);
    display: block !important;
}

.glass-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 10px rgba(176, 176, 176, 0.1);
    border-color: var(--titanium-gray);
}

.glass-card h2.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--titanium-orange);
    margin-bottom: 0.7rem;
    position: relative;
    padding-bottom: 4px;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.glass-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--titanium-orange);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.glass-card p {
    font-size: 0.85rem;
    color: var(--titanium-gray);
    line-height: 1.5;
    margin-bottom: 0.6rem;
}

.glass-card ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
}

.glass-card li {
    font-size: 0.85rem;
    color: var(--titanium-gray);
    line-height: 1.5;
    margin-bottom: 0.3rem;
}

.content-section.volunteer {
    border-left: 3px solid var(--titanium-orange);
    padding-left: 1rem;
}

.content-section:first-child h3 {
    font-size: 1.3rem;
    background: linear-gradient(135deg, var(--titanium-orange) 0%, var(--earth-tone) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.content-card {
    background: var(--alt-bg);
    backdrop-filter: blur(5px);
    border-radius: 10px;
    border: 0.3px solid var(--glass-border);
    padding: 0.8rem;
    transition: all 0.15s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--titanium-shadow);
    display: block !important;
}

.content-card.experience-card {
    display: block !important;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(107, 112, 92, 0.02) 0%, rgba(139, 69, 19, 0.03) 100%);
    opacity: 0;
    transition: opacity 0.15s ease;
}

.content-card:hover {
    transform: translateY(-3px);
    border-color: var(--titanium-gray);
    box-shadow: 0 10px 20px rgba(176, 176, 176, 0.1);
}

.content-card:hover::before {
    opacity: 1;
}

.content-card h4 {
    color: var(--titanium-orange);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.content-card p {
    font-size: 0.85rem;
    color: var(--titanium-gray);
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: var(--white);
    backdrop-filter: blur(10px);
    padding: 2rem 0.8rem;
    border-radius: 12px;
    border: 0.3px solid var(--glass-border);
    margin: 1.5rem 0;
    position: relative;
    overflow: hidden;
    box-shadow: var(--titanium-shadow);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(107, 112, 92, 0.02) 0%, transparent 70%);
    pointer-events: none;
}

.cta-section h3 {
    color: var(--titanium-orange);
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    text-shadow: 0 0 2px rgba(139, 69, 19, 0.1);
}

.cta-section p {
    font-size: 0.85rem;
    color: var(--titanium-gray);
    margin-bottom: 0.8rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
    position: relative;
    z-index: 2;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 100;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--titanium-orange) 0%, var(--earth-tone) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    transition: all 0.2s ease;
    border: 1.5px solid var(--titanium-gray);
    cursor: pointer;
    box-shadow: var(--titanium-shadow), inset 0 0 3px rgba(176, 176, 176, 0.1);
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 5px 15px rgba(255, 140, 0, 0.3), inset 0 0 5px rgba(176, 176, 176, 0.1);
    background: var(--titanium-orange);
    border-color: var(--titanium-orange-dark);
}

.btn-outline {
    background: transparent;
    color: var(--muted-green);
    border: 1.5px solid var(--muted-green);
    box-shadow: none;
}

.btn-outline:hover {
    background: var(--muted-green);
    color: var(--titanium-dark);
    box-shadow: 0 0 5px rgba(107, 112, 92, 0.2);
}

/* Footer */
footer {
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    border-top: 0.3px solid var(--glass-border);
    color: var(--medium-gray);
    text-align: center;
    padding: 1rem 0;
    margin-top: 1.5rem;
}

footer p {
    font-size: 0.85rem;
    margin-bottom: 0.1rem;
}

footer a {
    color: var(--titanium-orange);
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

.footer-brand {
    color: var(--muted-green);
    font-family: 'Orbitron', sans-serif;
    font-weight: 600;
    text-shadow: 0 0 2px rgba(107, 112, 92, 0.1);
}

/* Icon Styling */
h3::before {
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    margin-right: 0.5rem;
    color: var(--titanium-orange);
}

/* Testimonial Carousel Styles */
.testimonial-carousel {
    position: relative;
    margin: 2rem 0;
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.testimonial-slide {
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    padding: 1.5rem;
}

.testimonial-quote {
    position: relative;
    margin-bottom: 1rem;
}

.quote-icon {
    color: var(--titanium-orange);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.quote-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--titanium-gray);
    line-height: 1.6;
}

.testimonial-context {
    margin: 1rem 0;
    padding: 0.5rem;
    background: var(--alt-bg);
    border-radius: 5px;
    border-left: 3px solid var(--titanium-orange);
}

.testimonial-strengths {
    margin: 1rem 0;
}

.strength-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.strength-tag {
    background: var(--titanium-orange);
    color: var(--white);
    padding: 0.25rem 0.5rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.testimonial-author {
    text-align: right;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
}

.testimonial-date {
    display: block;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.carousel-btn {
    background: var(--titanium-orange);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--titanium-orange-dark);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    border: 2px solid var(--titanium-orange);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--titanium-orange);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.skill-category h3 {
    margin-bottom: 1rem;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.skill-tag {
    background: var(--alt-bg);
    color: var(--titanium-gray);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.skill-tag:hover {
    background: var(--titanium-orange);
    color: var(--white);
    border-color: var(--titanium-orange-dark);
}

.skill-tag strong {
    color: var(--titanium-orange);
}

.skill-bar {
    height: 5px;
    background: var(--light-gray);
    border-radius: 5px;
    margin-top: 5px;
}

.skill-level {
    height: 100%;
    background: var(--titanium-orange);
    border-radius: 5px;
    transition: width 0.5s ease;
}

.experience-date {
    color: var(--text-gray);
    font-style: italic;
    margin-bottom: 0.5rem;
}

.achievements-list {
    margin-top: 1rem;
}

.achievement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0.8rem;
    margin: 1.5rem 0;
}

.achievement-item {
    background: var(--alt-bg);
    padding: 0.8rem;
    border-radius: 10px;
    border: 0.3px solid var(--glass-border);
    text-align: center;
}

.hero-location {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.hero-contact {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.content-section.languages ul li {
    font-size: 0.9rem;
    color: var(--titanium-gray);
}

.content-section.languages ul li strong {
    color: var(--titanium-orange);
}

/* Print Styles */
@media print {
    body {
        background: none;
        color: #000;
        font-size: 12pt;
        line-height: 1.4;
        margin: 0;
    }

    .container {
        max-width: 100%;
        padding: 0 1cm;
    }

    header, nav, .hero-contact .btn, .sticky-cta, .carousel-controls, .cta-section, footer {
        display: none !important;
    }

    .hero {
        padding: 1cm 0;
        text-align: center;
    }

    .hero h1 {
        font-size: 16pt;
        color: #000;
        -webkit-background-clip: none;
        -webkit-text-fill-color: #000;
        text-shadow: none;
    }

    .hero .subtitle, .hero .value-proposition, .hero-location {
        font-size: 12pt;
        color: #000;
        text-shadow: none;
    }

    .titanium-story {
        margin: 0.5cm 0;
        padding: 0.5cm;
        border: none;
        box-shadow: none;
        background: none;
    }

    .titanium-story h2 {
        font-size: 14pt;
        color: #000;
        -webkit-background-clip: none;
        -webkit-text-fill-color: #000;
        text-shadow: none;
        text-align: left;
    }

    .glass-card, .content-card, .content-section {
        border: none;
        box-shadow: none;
        background: none;
        padding: 0.5cm;
        display: block !important;
    }

    .content-section.volunteer {
        border-left: 2px solid #000;
    }

    .glass-card h3, .content-card h4 {
        font-size: 12pt;
        color: #000;
        -webkit-background-clip: none;
        -webkit-text-fill-color: #000;
        text-shadow: none;
    }

    .glass-card p, .content-card p, .titanium-story li {
        font-size: 10pt;
        color: #000;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 0.5cm;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 0.5cm;
    }

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

    .skill-bar, .skill-level {
        display: none;
    }

    .skill-tag {
        border: none;
        padding: 0.2cm;
        font-size: 10pt;
        background: none;
        color: #000;
    }

    .testimonial-slide {
        display: block !important;
        opacity: 1 !important;
        margin-bottom: 0.5cm;
    }

    .testimonial-carousel {
        margin: 0.5cm 0;
    }

    .testimonial-quote, .testimonial-context, .testimonial-strengths, .testimonial-author {
        font-size: 10pt;
        color: #000;
    }

    .strength-tag {
        background: none;
        color: #000;
        border: 1px solid #000;
        padding: 0.1cm 0.3cm;
    }

    @page {
        size: A4;
        margin: 1cm;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.3rem;
        padding: 0.1rem 10px;
        min-height: 25px;
    }

    .logo {
        gap: 3px;
        max-width: 45%;
    }

    .logo img {
        height: 20px;
        width: 20px;
    }

    .logo-text h1 {
        font-size: 0.9rem;
    }

    .logo-text .subtitle {
        font-size: 0.4rem;
    }

    nav {
        right: 10px;
    }

    nav ul {
        gap: 0.2rem;
    }

    nav a {
        padding: 0.2rem 0.4rem;
        font-size: 0.5rem;
    }

    .hero {
        padding: 0.8rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero .value-proposition {
        font-size: 0.9rem;
    }

    .hero p {
        font-size: 0.8rem;
    }

    .titanium-story {
        padding: 0.6rem 0.4rem;
        margin: 0.8rem 0;
    }

    .glass-card {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .content-grid, .achievement-grid {
        grid-template-columns: 1fr;
    }

    .cta-section {
        padding: 1.5rem 0.6rem;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}

@media (max-width: 480px) {
    .header-content {
        gap: 0.2rem;
        padding: 0.1rem 8px;
        min-height: 20px;
    }

    .logo {
        gap: 2px;
        max-width: 40%;
    }

    .logo img {
        height: 15px;
        width: 15px;
    }

    .logo-text h1 {
        font-size: 0.7rem;
    }

    .logo-text .subtitle {
        font-size: 0.3rem;
    }

    nav {
        right: 8px;
    }

    nav ul {
        gap: 0.1rem;
    }

    nav a {
        padding: 0.1rem 0.3rem;
        font-size: 0.4rem;
    }

    .hero h1 {
        font-size: 1.2rem;
    }

    .hero .value-proposition {
        font-size: 0.8rem;
    }

    .hero p {
        font-size: 0.7rem;
    }

    .titanium-story {
        padding: 0.5rem 0.3rem;
        margin: 0.6rem 0;
    }

    .glass-card {
        padding: 0.5rem;
    }
}