:root {
    /* Brand Colors */
    --color-bg-dark: #050505;
    /* Rich Black Base */
    --color-accent: #CCFF00;
    /* Electric Lime - Key Data/CTA Only */

    /* Text Colors */
    --color-text-main: #FFFFFF;
    --color-text-muted: #B0B0B0;
    --color-text-dark: #000000;

    /* Glassmorphism System */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    /* Faint white border */
    --glass-highlight: rgba(255, 255, 255, 0.15);
    /* Hover state */
    --glass-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --glass-blur: blur(20px);

    /* Glow Effects */
    --glow-accent: 0 0 20px rgba(204, 255, 0, 0.5);
    --glow-text: 0 0 12px rgba(204, 255, 0, 0.4);
    /* Softer, subtler glow */

    /* Typography */
    --font-main: 'Inter', sans-serif;

    /* Transitions */
    --transition-slow: 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-dark);
    /* Subtle Grain Texture Overlay */
    background-image:
        radial-gradient(circle at 15% 50%, rgba(20, 20, 20, 0.8) 0%, transparent 25%),
        radial-gradient(circle at 85% 30%, rgba(30, 30, 30, 0.5) 0%, transparent 30%);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    word-break: keep-all;
    /* GLOBAL FIX: Prevents awkward mid-word breaks in Korean */
}

/* Utility: Text Glow */
/* Utility: Text Glow */
.text-glow {
    color: var(--color-accent);
    text-shadow: var(--glow-text);
}

/* Utility: Light Section -> Now just Dark Section with slight variation if needed */
.section-light {
    background: transparent;
    color: var(--color-text-main);
}

.section-light .section-title {
    color: var(--color-text-main);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.section-light .subsection-title {
    color: var(--color-text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.7);
    /* Darker, translucent */
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 2.5rem 0;
    /* Significantly Increased padding for premium feel */
    transition: all 0.3s ease;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 26px;
    /* Slightly larger */
    letter-spacing: 0.1em;
    /* Widened as requested */
    color: #ffffff;
    text-decoration: none;
    text-transform: uppercase;
}

.logo-text span {
    color: #CCFF00;
    /* Neon Green */
}

.logo-accent {
    color: var(--color-accent);
    text-shadow: var(--glow-text);
}

.nav ul {
    display: flex;
    gap: 2rem;
}

.nav a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

.nav a:hover {
    color: #fff;
}

.header-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 800px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 80px;
    /* Offset fixed header */
}

/* Abstract Background - placeholder for a more complex bio-tech visual */
.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('C:/Users/user/.gemini/antigravity/brain/64694411-310d-4542-bf95-127c596d8d30/hero_backlight_clove_1770094251786.png') no-repeat center center/cover;
    z-index: -1;
}

/* FAQ Section */
.faq-section {
    background: var(--color-bg-dark);
}

.faq-layout {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.faq-visual-side {
    flex: 1;
    position: sticky;
    top: 6rem;
    /* Sticky while scrolling the FAQs */
    min-width: 300px;
}

.faq-image {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
}

.faq-visual-caption {
    margin-top: 1rem;
    color: var(--color-primary-light);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

.faq-grid {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* FAQ Section - Stripe Style */
.faq-section {
    background: transparent;
    padding-bottom: 8rem;
}

.faq-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(255, 255, 255, 0.3);
    background: transparent;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-main);
}

.faq-icon {
    font-size: 1.2rem;
    font-weight: 300;
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: #fff;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    background: transparent;
}

.faq-answer-content {
    padding: 0 0 1.5rem 0;
    color: var(--color-text-muted);
    line-height: 1.7;
    font-size: 1rem;
    border-top: none;
    max-width: 90%;
}

.faq-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.4rem 1rem;
    border: 1px solid var(--color-primary-light);
    color: var(--color-primary-light);
    font-size: 0.8rem;
    border-radius: 4px;
    transition: all 0.2s ease;
}

.faq-link:hover {
    background: var(--color-primary-light);
    color: var(--color-bg-dark);
}

@media (max-width: 900px) {
    .faq-layout {
        flex-direction: column;
    }

    .faq-visual-side {
        position: static;
        width: 100%;
        max-width: 500px;
        margin: 0 auto 2rem;
    }
}

.hero-content {
    z-index: 10;
    max-width: 900px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    font-size: 0.85rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    backdrop-filter: blur(5px);
}

.hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    /* Reduced by 20% */
    /* Fluid Typography */
    /* Inter Black Scale */
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: #fff;
    letter-spacing: -0.02em;
    word-break: keep-all;
    /* Prevent word splitting in Korean */
}

/* Niche Gradient Text for Hybrid Bio-Matrix */
.text-niche-gradient {
    background: linear-gradient(135deg, #E0E0E0 30%, var(--color-accent) 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.15em;
    /* Wide Spacing */
    text-transform: uppercase;
    font-weight: 800;
    display: inline-block;
    /* Ensure gradient works */
}

.hero-title-kr {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text-muted);
    margin-top: 0.5rem;
    -webkit-text-fill-color: var(--color-text-muted);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle-kr {
    display: block;
    font-size: 1rem;
    margin-top: 0.5rem;
    opacity: 0.8;
}

.hero-cta-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

/* Ghost Button with Neon Border Hover */
.btn-primary {
    background: rgba(255, 255, 255, 0.03);
    /* Glass */
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    box-shadow: 0 0 20px rgba(204, 255, 0, 0.4), inset 0 0 10px rgba(204, 255, 0, 0.1);
    transform: translateY(-2px);
    background: rgba(204, 255, 0, 0.05);
    /* Slight tint */
}

/* Optional: Neon shimmer effect moving across border */
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(204, 255, 0, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-secondary:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

/* Sections */
/* Sections */
/* Sections */
.section {
    padding: 10rem 0;
    /* Double Padding */
}

/* Mobile Box Model Optimization */
.section {
    padding: 10rem 0;
    width: 100%;
    /* Ensure no overflow */
}

/* Fluid Typography for Section Titles */
.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-align: center;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 1.5rem;
    text-align: center;
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, border-color 0.3s ease;
    height: 100%;
    /* Force Equal Height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stat-card:hover {
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

/* Fluid Typography for Stats */
.stat-value {
    font-size: clamp(3rem, 6vw, 4rem);
    font-weight: 700;
    white-space: nowrap;
    /* Prevent numbers breaking */
    color: var(--color-accent);
    margin-bottom: 0.5rem;
    text-shadow: var(--glow-text);
}

.stat-desc {
    color: var(--color-text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta-group {
        flex-direction: column;
    }
}

/* Technology Section */
.tech-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.tech-content {
    flex: 1;
    min-width: 300px;
}

.tech-title {
    text-align: left;
    color: #fff;
    font-weight: 800;
}

.tech-desc {
    font-size: 1.1rem;
    color: var(--color-text-main);
    margin-bottom: 1rem;
}

.tech-desc-kr {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-weight: 300;
}

/* Hide manual line breaks on mobile */
@media (max-width: 768px) {
    br {
        content: ' ';
    }

    br:not(.always-break) {
        display: none;
    }

    .section {
        padding: 5rem 0;
        /* Create smaller sections on mobile */
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .text-niche-gradient {
        display: block;
        /* Ensure gradient text forces a new line if needed or flow properly */
    }
}

.tech-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-width: 300px;
    height: 400px;
    position: relative;
    /* Prevent overflow on mobile */
    max-width: 100%;
}

/* Abstract Molecule Animation */
.encapsulation-core {
    position: relative;
    width: 300px;
    height: 300px;
}

.molecule-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle at 30% 30%, #4caf50, #1b5e20);
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(76, 175, 80, 0.6);
    z-index: 2;
}

.molecule-shell {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.1) inset;
    animation: pulse-shell 3s infinite ease-in-out;
}

.molecule-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 220px;
    height: 220px;
    border: 1px dashed rgba(76, 175, 80, 0.5);
    border-radius: 50%;
    animation: rotate-orbit 10s linear infinite;
}

.molecule-orbit::before {
    content: '';
    position: absolute;
    top: -5px;
    left: 50%;
    width: 10px;
    height: 10px;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 0 10px #fff;
}

@keyframes pulse-shell {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 0.8;
    }
}

@keyframes rotate-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 768px) {
    .tech-container {
        flex-direction: column;
    }

    .tech-title {
        text-align: center;
    }
}

/* Highlights Section */
.highlights-section .stat-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.01));
    border-color: rgba(76, 175, 80, 0.2);
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.highlights-section .stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Applications Section */
.app-section {
    background: transparent;
}

.app-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 5rem;
}

.app-card {
    background: transparent;
    border: none;
    padding: 2rem 1rem;
    transition: all 0.4s ease;
    border-radius: 1rem;
    position: relative;
}

.app-card:hover {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.03) 0%, transparent 100%);
    transform: translateY(-5px);
}

.app-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 1.5rem;
    /* Monochrome by default */
    fill: none;
    stroke: rgba(255, 255, 255, 0.4);
    stroke-width: 1.5;
    transition: all 0.4s ease;
}

.app-card:hover .app-icon {
    stroke: #fff;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.app-card-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-card-subtitle {
    font-size: 1rem;
    color: var(--color-accent);
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.app-card-desc {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Verification & ESG Section */
.verify-section {
    background: transparent;
    /* Seamless dark */
    padding-bottom: 0;
}

.subsection-title {
    font-size: 2rem;
    color: #fff;
    margin: 4rem 0 2rem;
    text-align: center;
    border-bottom: none;
    padding-bottom: 0;
    display: block;
}

.cert-gallery {
    text-align: center;
    margin-bottom: 5rem;
}

.cert-logos {
    display: flex;
    justify-content: center;
    gap: 4rem;
    /* Spaced out */
    flex-wrap: wrap;
    background: transparent;
    /* No box background */
    padding: 2rem;
    border: none;
    align-items: center;
}

.cert-logo-svg {
    height: 40px;
    width: auto;
    fill: rgba(255, 255, 255, 0.3);
    /* Dark Grey/Translucent */
    transition: all 0.3s ease;
}

.cert-logo-svg:hover {
    fill: #fff;
    transform: scale(1.05);
}

.cert-image {
    max-width: 100%;
    height: auto;
    max-height: 80px;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.cert-image:hover {
    opacity: 1;
}

/* Agency Text Logo (Replaces SVG) */
.agency-text-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    opacity: 0.9;
    letter-spacing: -0.02em;
    font-family: var(--font-main);
}

/* Small Slogan above Hero Title */
.hero-slogan-small {
    font-size: 1.6rem;
    /* Reduced to ~26px */
    color: var(--color-text-muted);
    margin-bottom: 2rem;
    font-weight: 300;
    /* Light for minimalism */
    opacity: 0.9;
    letter-spacing: 0.05em;
}

.roadmap-block {
    text-align: center;
    margin-bottom: 5rem;
}

.roadmap-grid {
    display: flex;
    justify-content: center;
}

.roadmap-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 1.5rem;
    max-width: 700px;
    position: relative;
    backdrop-filter: var(--glass-blur);
}

.roadmap-year {
    display: inline-block;
    background: transparent;
    border: 1px solid var(--color-accent);
    color: var(--color-accent);
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 10px rgba(204, 255, 0, 0.2);
}

.roadmap-title {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0.5rem;
}

.roadmap-desc {
    color: var(--color-text-muted);
}

/* Download Center */
.download-center {
    text-align: center;
}

.download-grid {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Report/Download Section - Dashboard Style */
.download-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0;
    /* Seamless grid */
    margin-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.report-card {
    background: transparent;
    border: none;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    /* Vertical dividers */
    border-radius: 0;
    /* Square / Dashboard look */
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 3rem 2rem;
    transition: background 0.3s ease;
    height: 100%;
}

.report-card:last-child {
    border-right: none;
}

.report-card:hover {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.1);
    transform: none;
    /* Stable dashboard feel */
}

/* Mobile fix for grid borders */
@media (max-width: 768px) {
    .download-grid {
        border: none;
        gap: 1rem;
    }

    .report-card {
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 8px;
    }
}

.report-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.agency-logo-svg {
    height: 40px;
    width: auto;
    fill: #fff;
    opacity: 0.7;
    /* Monochrome Greyish */
    transition: opacity 0.3s ease;
}

.report-card:hover .agency-logo-svg {
    opacity: 1;
    /* White on hover */
}

/* White on hover */
}

.report-data-headline {
    font-size: clamp(2rem, 4vw, 2.5rem);
    /* Fluid */
    font-weight: 800;
    color: #fff;
    margin-bottom: 0.5rem;
    line-height: 1;
    letter-spacing: -0.02em;
    white-space: nowrap;
}

.report-title {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 500;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.dl-link-text {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.dl-arrow {
    transition: transform 0.3s ease;
}

.report-card:hover .dl-arrow {
    transform: translateX(5px);
}

/* Removed Thumbnail Styles */

.report-thumb-wrapper:hover {
    border-color: var(--color-accent);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Removed CSS Thumb Styles */

.css-doc-thumb::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 80%;
    height: 2px;
    background: #eee;
    box-shadow: 0 10px 0 #eee, 0 20px 0 #eee, 0 30px 0 #eee;
}

.download-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

/* Removed Thumb Meta Styles */

/* Updated Header Logo */
.logo-img {
    height: 40px;
    /* Adjust based on generated image */
    width: auto;
    display: block;
}

/* Footer - Vercel Style (Seamless) */
.footer {
    background: transparent;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Very subtle separator */
    font-size: 0.9rem;
    color: var(--color-text-muted);
    scroll-margin-top: 80px;
    /* Fix for sticky header obscuring content */
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.footer-info p {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-info strong {
    color: #fff;
}

.footer-note {
    font-size: 0.85rem;
    opacity: 0.7;
    display: block;
}

.footer-links {
    display: flex;
    gap: 4rem;
    justify-content: flex-end;
}

.footer-links h4 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.footer-links a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.6;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
        flex-direction: column;
        gap: 2rem;
    }
}