:root {
    /* Design System - Light/Clean Theme */
    --c-void: #ffffff;
    /* Clean White */
    --c-space: #f8fafc;
    /* Very Light Blue/Gray */
    --c-text-main: #0f172a;
    /* Dark Slate */
    --c-text-muted: #64748b;
    /* Slate Gray */
    --c-accent: #ff6600;
    /* Brand Orange */
    --c-accent-glow: rgba(255, 102, 0, 0.2);
    --c-gold: #ff8800;
    /* Slightly lighter orange for gold accents */
    --c-grid: rgba(148, 163, 184, 0.15);
    /* Slate tint for grid */

    --f-display: 'Space Grotesk', sans-serif;
    --f-mono: 'Fira Code', monospace;
    --f-body: 'Inter', sans-serif;

    --s-container: 1200px;
    --s-gap: 2rem;

    --ease-math: cubic-bezier(0.19, 1, 0.22, 1);
    /* Exponential out */
    --anim-slow: 1.2s var(--ease-math);
    --anim-fast: 0.6s var(--ease-math);
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--c-void);
    color: var(--c-text-main);
    font-family: var(--f-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Fluid Light Effect Background */
.fluid-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    background:
        radial-gradient(circle at 50% 50%, var(--c-space) 0%, var(--c-void) 100%);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--c-grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--c-grid) 1px, transparent 1px);
    background-size: 50px 50px;
    /* Inverted mask for light theme grid visibility */
    mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
    opacity: 1;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--f-display);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--c-text-main);
}

.mono {
    font-family: var(--f-mono);
    font-size: 0.85rem;
    color: var(--c-accent);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Layout */
.container {
    max-width: var(--s-container);
    margin: 0 auto;
    padding: 4rem 2rem;
}

section {
    padding: 10rem 0;
    position: relative;
}

/* Navigation */
.nav-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    pointer-events: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.8);
}

.nav-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
    z-index: -1;
    pointer-events: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
}

.logo {
    color: var(--c-text-main);
    font-size: 1.5rem;
    font-weight: 700;
}

.desktop-nav {
    display: flex;
    gap: 3rem;
    pointer-events: auto;
}

.nav-item {
    color: var(--c-text-muted);
    text-decoration: none;
    font-family: var(--f-mono);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
    transition: color 0.3s ease;
}

.nav-item:hover {
    color: var(--c-accent);
}

.nav-item::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 1px;
    background: var(--c-accent);
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-item:hover::after {
    width: 100%;
    left: 0;
}

.nav-item.highlight {
    color: var(--c-accent);
    border: 1px solid var(--c-accent);
    padding: 0.5rem 1rem;
    border-radius: 2px;
}

.nav-item.highlight:hover {
    background: var(--c-accent);
    color: #fff;
}

.nav-item.highlight::after {
    display: none;
}

.nav-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: auto;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #0f0;
    border-radius: 50%;
    box-shadow: 0 0 5px #0f0;
}

.status-text {
    font-size: 0.7rem;
    color: var(--c-text-muted);
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    pointer-events: auto;
    width: 25px;
    position: relative;
    z-index: 102;
    display: none;
    /* Hidden on desktop */
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--c-text-main);
    margin-bottom: 6px;
    transition: 0.3s ease;
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.mobile-menu {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: auto;
    max-height: 30vh;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    transform: translateY(-200%);
    transition: transform 0.6s var(--ease-math);
    pointer-events: auto;
    z-index: 99;
    border-bottom: 2px solid var(--c-accent);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.mobile-menu.active {
    transform: translateY(0);
}

.menu-link {
    color: var(--c-text-main);
    font-family: var(--f-display);
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
    padding: 0.5rem 1.5rem;
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.menu-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 102, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.menu-link:hover::before {
    left: 100%;
}

.mobile-menu.active .menu-link {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}

.mobile-menu.active .menu-link:nth-child(2) {
    transition-delay: 0.25s;
}

.mobile-menu.active .menu-link:nth-child(3) {
    transition-delay: 0.35s;
}

.menu-link:hover {
    color: var(--c-accent);
    background: rgba(255, 102, 0, 0.05);
    transform: translateX(5px);
}

.menu-link:active {
    transform: scale(0.98);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 4rem;
    opacity: 0;
    /* JS will handle entry */
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--c-text-main);
}

.hero-role {
    display: block;
    margin-bottom: 1rem;
    color: var(--c-accent);
    font-weight: 600;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    clip-path: polygon(10% 0, 100% 0, 100% 90%, 90% 100%, 0 100%, 0 10%);
    transition: transform var(--anim-slow);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.1) saturate(1.1);
    transition: transform 1s ease;
}

.hero-image-wrapper:hover .hero-image {
    transform: scale(1.05);
}

/* Philosophy Section */
.philosophy {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    padding: 6rem 0;
}

.philosophy-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.philosophy h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--c-text-main);
}

.philosophy p {
    font-size: 1.25rem;
    color: var(--c-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.news {
    padding: 5rem 2rem !important;
}

/* News Grid & Card Updates */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.news-card {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, border-color 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 0;
}

.news-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.news-card:hover .news-card-image img {
    transform: scale(1.1);
}

.news-card-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-date {
    display: block;
    font-size: 0.8rem;
    color: var(--c-accent);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.news-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--c-text-main);
    margin-bottom: 1rem;
    line-height: 1.4;
    flex-grow: 0;
}

.news-excerpt {
    color: var(--c-text-muted);
    font-size: 0.9rem;
    margin-top: auto;
    padding-top: 1rem;
    font-family: var(--f-mono);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.news-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--c-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-math);
    z-index: 10;
}

.news-card:hover {
    transform: translateY(-5px);
    border-color: var(--c-accent);
    background: #fff;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.news-card:hover::before {
    transform: scaleX(1);
}

/* Article Page */
.article-container {
    padding-top: 4rem;
    padding-bottom: 6rem;
    min-height: 80vh;
    margin: 0 auto;
    /* Ensure centering */
}

.article-header {
    margin-bottom: 3rem;
    padding-top: 2rem;
    /* Add breathing room from top */
}

.article-meta {
    color: var(--c-accent);
    margin-bottom: 1rem;
    display: block;
    font-size: 0.9rem;
    /* Refine font size */
    letter-spacing: 0.05em;
}

.article-title {
    font-size: 3.5rem;
    /* Increased size for impact */
    line-height: 1.1;
    margin-bottom: 2rem;
    background: none;
    color: var(--c-text-main);
}

.article-image {
    width: 100%;
    height: 500px;
    /* Increased height */
    object-fit: cover;
    border-radius: 12px;
    /* Softer corners */
    margin-bottom: 4rem;
    /* More space below image */
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    /* Softer shadow */
}

.article-body {
    font-size: 1.25rem;
    /* Slightly larger for readability */
    line-height: 1.9;
    /* More relaxed line height */
    color: var(--c-text-main);
    /* Constrain width for reading comfort */
    margin: 0 auto;
    /* Center text column */
}

.article-body p {
    margin-bottom: 2rem;
    /* More space between paragraphs */
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--c-text-muted);
    text-decoration: none;
    margin-bottom: 2rem;
    font-family: var(--f-mono);
    transition: color 0.3s;
}

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

/* Footer Styles */
.footer-section {
    position: relative;
    padding: 0 2rem;
    background: #f1f5f9;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    color: var(--c-text-main);
}

.footer-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    align-items: center;
}

.footer-col.brand p {
    color: var(--c-text-muted);
    margin-top: 1.5rem;
    max-width: 400px;
    font-size: 0.95rem;
}

.footer-heading {
    display: block;
    color: var(--c-text-main);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
}

.newsletter-input {
    display: flex;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    max-width: 400px;
}

.newsletter-input input {
    background: transparent;
    border: none;
    padding: 0.8rem 1rem;
    color: var(--c-text-main);
    width: 100%;
    outline: none;
    font-family: var(--f-body);
}

.newsletter-input button {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    color: var(--c-accent);
    padding: 0 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-input button:hover {
    background: var(--c-accent);
    color: #000;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--c-text-muted);
    text-decoration: none;
    border-radius: 50%;
    font-family: var(--f-mono);
    font-size: 0.8rem;
    transition: all 0.3s;
}

.social-icon:hover {
    border-color: var(--c-accent);
    color: var(--c-accent);
    box-shadow: 0 0 10px rgba(0, 243, 255, 0.2);
}

.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--c-text-muted);
    font-size: 0.85rem;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-legal a:hover {
    color: var(--c-text-muted);
}

/* Animation Classes (for JS) */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--anim-fast);
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* Buttons */
.btn-sci {
    background: transparent;
    border: 1px solid var(--c-accent);
    color: var(--c-accent);
    padding: 1rem 2rem;
    font-family: var(--f-mono);
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-top: 2rem;
    display: inline-block;
    text-decoration: none;
}

.btn-sci:hover {
    background: var(--c-accent);
    color: #fff;
    box-shadow: 0 0 20px var(--c-accent-glow);
}

/* Particle Canvas */
#particle-canvas {
    position: fixed;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: 9998;
    mix-blend-mode: multiply;
}

.main_box {
    padding-top: 60px;
}

/* Mobile Responsive */

/* Tablet & iPad (Portrait and Landscape) */
@media (max-width: 1024px) {
    .container {
        padding: 3rem 2rem;
    }

    /* Hero adjustments for tablet */
    .hero {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 4rem;
    }

    .hero-image-wrapper {
        height: 450px;
    }

    /* News grid for tablet - 2 columns */
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Article page tablet optimization */
    .article-container {
        max-width: 800px;
        padding: 3rem 2rem 5rem;
    }

    .article-title {
        font-size: 2.8rem;
    }

    .article-image {
        height: 400px;
    }

    .article-body {
        font-size: 1.15rem;
        line-height: 1.8;
    }

    /* Footer adjustments */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

/* Large Phone / Small Tablet (below 900px) */
@media (max-width: 900px) {
    .nav-status {
        display: none;
    }

    .desktop-nav {
        gap: 2rem;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-image-wrapper {
        height: 380px;
    }

    .philosophy h2 {
        font-size: 2.5rem;
    }

    .philosophy p {
        font-size: 1.15rem;
    }

    /* Article page adjustments */
    .article-title {
        font-size: 2.5rem;
    }

    .article-image {
        height: 350px;
    }
}

/* Mobile & Phone (below 768px) */
@media (max-width: 768px) {
    /* Navigation & Layout */
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .main_box {
        padding-top: 60px;
    }

    .container {
        padding: 2rem 1.5rem;
    }

    .footerbox-content {
        padding: 0 !important;
    }
    
    .desktop-nav,
    .nav-status {
        display: none;
    }

    .hamburger {
        display: block;
    }

    section {
        padding: 5rem 0;
    }

    /* Typography Scaling */
    h1 { 
        font-size: 2.5rem;
        line-height: 1.2;
    }
    h2 { 
        font-size: 2rem;
        line-height: 1.3;
    }
    h3 { 
        font-size: 1.5rem;
        line-height: 1.4;
    }

    .mono {
        font-size: 0.75rem;
    }

    /* Hero Section */
    .hero {
        grid-template-columns: 1fr;
        padding-top: 8rem;
        padding-bottom: 3rem;
        gap: 2.5rem;
        min-height: auto;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content p {
        font-size: 1rem;
        margin-top: 1.5rem !important;
    }

    .hero-title {
        font-size: 3rem;
        margin-bottom: 1rem;
    }

    .hero-image-wrapper {
        height: 300px;
        width: 100%;
    }

    /* Philosophy Section */
    .philosophy {
        padding: 4rem 0;
    }

    .philosophy h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }

    .philosophy p {
        font-size: 1rem;
    }

    /* News Section */
    .news {
        padding: 3rem 1.5rem !important;
    }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-top: 2rem;
    }

    .news-card {
        border-radius: 6px;
    }

    .news-card-image {
        height: 200px;
    }

    .news-card-content {
        padding: 1.5rem;
    }

    .news-card-content h3 {
        font-size: 1.25rem;
        margin: 0.75rem 0;
    }

    .news-date {
        font-size: 0.7rem;
    }

    /* Article Page - Mobile Optimized */
    .article-container {
        padding: 1.5rem 1.5rem 3rem;
        max-width: 100%;
    }

    .article-header {
        margin-bottom: 2rem;
        padding-top: 1rem;
    }

    .article-meta {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }

    .article-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .article-image {
        height: 220px;
        margin-bottom: 2rem;
        border-radius: 8px;
    }

    .article-body {
        font-size: 1rem;
        line-height: 1.7;
    }

    .article-body p {
        margin-bottom: 1.5rem;
    }

    .back-link {
        font-size: 0.85rem;
        margin-bottom: 0.85rem;
    }

    /* Buttons */
    .btn-sci {
        padding: 0.8rem 1.5rem;
        font-size: 0.75rem;
        margin-top: 1.5rem;
    }

    /* Footer */
    .footer-section {
        padding: 3rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
        margin-bottom: 2rem;
    }

    .footer-col.brand p {
        margin: 1rem auto 0;
        font-size: 0.9rem;
    }

    .footer-col.brand .logo {
        justify-content: center;
    }

    .newsletter-input {
        margin: 0 auto 1rem;
        max-width: 100%;
    }

    .social-icons {
        justify-content: center;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.85rem;
    }

    .footer-nav .nav-item {
        font-size: 0.85rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
    }

    .footer-copyright .mono {
        font-size: 0.7rem;
    }
}

/* Small Mobile Devices (below 480px) */
@media (max-width: 480px) {
    .container {
        padding: 1.5rem 1rem;
    }

    .nav-container {
        padding: 0.8rem 1rem;
    }

    .logo {
        font-size: 1.2rem;
    }

    section {
        padding: 4rem 0;
    }

    /* Hero for very small screens */
    .hero {
        padding-top: 6rem;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-image-wrapper {
        height: 250px;
    }

    /* Philosophy */
    .philosophy h2 {
        font-size: 1.75rem;
    }

    .philosophy p {
        font-size: 0.95rem;
    }

    /* News Grid */
    .news {
        padding: 2.5rem 1rem !important;
    }

    .news h2 {
        font-size: 1.75rem;
    }

    .news-card-image {
        height: 180px;
    }

    .news-card-content {
        padding: 1.25rem;
    }

    .news-card-content h3 {
        font-size: 1.1rem;
    }

    /* Article Page - Extra Small Screens */
    .article-container {
        padding: 1rem 1rem 2.5rem;
    }

    .article-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .article-image {
        height: 200px;
        border-radius: 6px;
    }

    .article-body {
        font-size: 0.95rem;
        line-height: 1.65;
    }

    .article-body p {
        margin-bottom: 1.25rem;
    }

    /* Mobile menu */
    .mobile-menu {
        top: 55px;
        padding: 1.5rem;
        gap: 0.85rem;
    }
    
    .menu-link {
        font-size: 1.3rem;
        padding: 0.4rem 1.25rem;
    }

    /* Footer */
    .footer-section {
        padding: 2.5rem 1rem 1.5rem;
    }

    .footer-col.brand p {
        font-size: 0.85rem;
    }

    .btn-sci {
        padding: 0.7rem 1.25rem;
        font-size: 0.7rem;
    }
}

/* Landscape Mobile Optimization */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 4rem 0 2rem;
    }

    .hero-image-wrapper {
        height: 280px;
    }

    section {
        padding: 3rem 0;
    }

    .mobile-menu {
        top: 50px;
        max-height: 40vh;
        padding: 1rem;
        gap: 1rem;
    }

    .menu-link {
        font-size: 1.2rem;
        padding: 0.3rem 1rem;
    }
}