/* RxOracle.ai "Vision" Design System - 2026 Edition */
:root {
    --bg-body: #000000;
    --bg-panel: #1c1c1e;
    --text-primary: #ffffff;
    --text-secondary: #86868b;
    --accent-blue: #2997ff;
    --accent-teal: #30d158;
    --accent-purple: #bf5af2;

    --font-stack: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --header-height: 52px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-body);
    color: var(--text-primary);
    font-family: var(--font-stack);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.5;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* Prevent horizontal scroll */
html, body {
    max-width: 100%;
    overflow-x: hidden;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Typography --- */
h1,
h2,
h3,
h4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

p {
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.text-gradient {
    background: linear-gradient(135deg, #2997ff 0%, #bf5af2 50%, #ff375f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientFlow 8s ease infinite;
}

@keyframes gradientFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Layout Utilities --- */
.section-full {
    min-height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 120px 20px;
    overflow: hidden;
}

.container-fluid {
    width: 100%;
    max-width: 1440px;
    /* Wider standard */
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Navigation --- */
.nav-blur {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    color: #f5f5f7;
    font-size: 12px;
    opacity: 0.8;
    text-decoration: none;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-btn {
    background: white;
    color: black !important;
    padding: 6px 16px;
    border-radius: 99px;
    font-weight: 500;
    opacity: 1 !important;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

/* Mobile menu toggle button */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: transform 0.3s ease;
    position: relative;
}

@media (max-width: 768px) {
    #mobile-menu-toggle {
        display: block;
    }
}

#mobile-menu-toggle:hover {
    transform: scale(1.1);
}

#mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* --- Hero Section --- */
.hero-masterpiece {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 80vh;
    background: radial-gradient(circle, rgba(41, 151, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(80px);
    z-index: -1;
    animation: pulseGlow 10s ease-in-out infinite alternate;
}

@keyframes pulseGlow {
    0% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero-title {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.05;
    font-weight: 700;
    margin-bottom: 24px;
    background: linear-gradient(180deg, #fff 0%, #86868b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: clamp(20px, 3vw, 28px);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* --- Scroll Sticky Section --- */
.sticky-wrapper {
    height: 300vh;
    /* Long scroll area */
    position: relative;
    background: #000;
}

.sticky-content {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.sticky-text {
    font-size: clamp(40px, 6vw, 80px);
    font-weight: 700;
    text-align: center;
    color: white;
    opacity: 0;
    transform: translateY(50px);
    transition: all 1s var(--ease-out-expo);
}

.sticky-text.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Bento Grid Full --- */
.bento-master {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    padding: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

.bento-box {
    background: #1c1c1e;
    border-radius: 30px;
    padding: 50px;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    transition: transform 0.5s var(--ease-out-expo);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-box:hover {
    transform: scale(1.02);
    background: #2c2c2e;
}

.bento-box.wide {
    grid-column: span 2;
}

.bento-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    margin-top: 30px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* --- Animations --- */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s var(--ease-out-expo);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Buttons --- */
.btn-glow {
    display: inline-block;
    padding: 16px 32px;
    background: white;
    color: black;
    border-radius: 99px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.btn-glow:hover {
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(255, 255, 255, 0.5);
}

/* --- Forms --- */
.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-group {
    margin-bottom: 25px;
}

.form-label {
    display: block;
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.02em;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 16px;
    font-family: var(--font-stack);
    transition: all 0.3s ease;
    outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(41, 151, 255, 0.1);
}

.form-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%2386868b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    padding-right: 50px;
}

.form-select option {
    background: #1a1a2e;
    color: var(--text-primary);
    padding: 10px;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.form-submit {
    width: 100%;
    padding: 18px 40px;
    background: linear-gradient(135deg, var(--accent-blue) 0%, var(--accent-purple) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 10px 30px rgba(41, 151, 255, 0.3);
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(41, 151, 255, 0.5);
}

.form-submit:active {
    transform: translateY(0);
}

.form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Screenshot Showcase Animations */
.reveal-on-scroll img[src*="screenshots"] {
    transition: transform 0.5s var(--ease-out-expo), box-shadow 0.5s var(--ease-out-expo);
}

.reveal-on-scroll:hover img[src*="screenshots"] {
    transform: scale(1.02) translateY(-5px);
}

/* Rotating screenshots on hover */
.reveal-on-scroll [style*="rotate(2deg)"] {
    transition: transform 0.5s var(--ease-out-expo);
}

.reveal-on-scroll [style*="rotate(2deg)"]:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

.reveal-on-scroll [style*="rotate(-2deg)"] {
    transition: transform 0.5s var(--ease-out-expo);
}

.reveal-on-scroll [style*="rotate(-2deg)"]:hover {
    transform: rotate(0deg) scale(1.05) !important;
}

/* 3D perspective screenshots */
.reveal-on-scroll [style*="rotateY(-5deg)"] {
    transition: transform 0.5s var(--ease-out-expo);
}

.reveal-on-scroll [style*="rotateY(-5deg)"]:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05) !important;
}

.reveal-on-scroll [style*="rotateY(5deg)"] {
    transition: transform 0.5s var(--ease-out-expo);
}

.reveal-on-scroll [style*="rotateY(5deg)"]:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.05) !important;
}

/* Laptop frame hover effect */
.reveal-on-scroll:has([style*="Linear-gradient(to bottom, #2a2a3e"]) {
    transition: transform 0.3s var(--ease-out-expo);
}

.reveal-on-scroll:has([style*="linear-gradient(to bottom, #2a2a3e"]):hover {
    transform: translateY(-10px);
}

/* Mobile */
@media (max-width: 768px) {
    .bento-box.wide {
        grid-column: span 1;
    }

    .hero-title {
        font-size: 48px;
    }

    .container-fluid {
        padding: 0 20px;
    }
    
    /* Disable 3D transforms on mobile for performance */
    .reveal-on-scroll [style*="rotate"],
    .reveal-on-scroll [style*="perspective"] {
        transform: none !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN - COMPREHENSIVE MOBILE/TABLET
   ============================================ */

/* Tablet & below (768px) */
@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .nav-links {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: rgba(0, 0, 0, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 40px 20px;
        transition: left 0.3s ease;
        overflow-y: auto;
        z-index: 1000;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 18px;
        text-align: center;
    }
    
    /* Center nav buttons in mobile menu */
    .nav-links .nav-btn {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        max-width: 350px;
        margin: 0 auto !important;
        padding: 15px 30px !important;
        text-align: center;
    }
    
    /* Hero section */
    .hero-masterpiece {
        padding: 80px 20px 40px !important;
        min-height: auto !important;
    }
    
    .hero-title {
        font-size: clamp(32px, 8vw, 48px) !important;
        line-height: 1.2 !important;
        margin-bottom: 20px !important;
    }
    
    .hero-subtitle {
        font-size: 16px !important;
        padding: 0 10px !important;
        line-height: 1.6 !important;
    }
    
    /* Buttons */
    .btn-glow {
        padding: 14px 28px;
        font-size: 16px;
        width: 100%;
        max-width: 300px;
        text-align: center;
        display: inline-block;
    }
    
    /* Hero CTA section - Make buttons stack vertically */
    div[style*="display: flex"][style*="gap: 20px"] {
        flex-direction: column !important;
        gap: 15px !important;
        width: 100% !important;
        align-items: center !important;
    }
    
    div[style*="display: flex"][style*="gap: 20px"] a,
    div[style*="display: flex"][style*="gap: 20px"] button {
        width: 100% !important;
        max-width: 350px !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
    
    /* Icon showcase - Ensure icons are visible and not hidden */
    div[style*="gap: 40px"][style*="justify-content: center"] {
        flex-wrap: wrap !important;
        gap: 25px !important;
        justify-content: center !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] > div {
        width: 140px !important;
        height: 140px !important;
        min-width: 140px !important;
        padding: 20px !important;
        flex-shrink: 0 !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] i {
        font-size: 48px !important;
        margin-bottom: 12px !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] p,
    div[style*="gap: 40px"][style*="justify-content: center"] span {
        font-size: 13px !important;
        line-height: 1.4 !important;
    }
    
    /* Bento Grid */
    .bento-master {
        grid-template-columns: 1fr !important;
        padding: 20px !important;
        gap: 20px !important;
    }
    
    .bento-box {
        padding: 30px 20px !important;
        min-height: auto !important;
    }
    
    .bento-box.wide {
        grid-column: span 1 !important;
    }
    
    .bento-box h3 {
        font-size: 22px !important;
    }
    
    .bento-box p {
        font-size: 15px !important;
        line-height: 1.6 !important;
    }
    
    /* All grid layouts - Force single column */
    section[style*="grid-template-columns"],
    div[style*="grid-template-columns"],
    [style*="display: grid"][style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* Specific grid patterns - 2 column grids */
    div[style*="grid-template-columns: repeat(2"],
    div[style*="grid-template-columns: 1fr 1fr"],
    [style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    /* 3+ column grids collapse to 1 column - SDOH blocks fix */
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns: repeat(5"],
    div[style*="grid-template-columns: repeat(auto-fit"],
    [style*="grid-template-columns: repeat(3"],
    [style*="grid-template-columns: repeat(4"],
    [style*="grid-template-columns: repeat(5"] {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
        display: grid !important;
    }
    
    /* Statistics grid */
    section[style*="grid-template-columns"] > div {
        padding: 30px 20px !important;
    }
    
    section div[style*="font-size: 56px"],
    div[style*="font-size: 56px"] {
        font-size: 36px !important;
        line-height: 1.2 !important;
    }
    
    section div[style*="font-size: 64px"],
    div[style*="font-size: 64px"] {
        font-size: 40px !important;
        line-height: 1.2 !important;
    }
    
    section div[style*="font-size: 72px"],
    div[style*="font-size: 72px"] {
        font-size: 44px !important;
        line-height: 1.2 !important;
    }
    
    /* Section padding */
    .section-full {
        padding: 60px 20px !important;
        min-height: auto !important;
    }
    
    .container-fluid {
        padding: 0 20px !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Section titles - All heading sizes */
    h1[style*="font-size"],
    section h1[style*="font-size"],
    div h1[style*="font-size"] {
        font-size: clamp(28px, 7vw, 48px) !important;
        line-height: 1.2 !important;
    }
    
    h2[style*="font-size: 48px"],
    h2[style*="font-size: 56px"],
    h2[style*="font-size: 64px"],
    h2[style*="font-size: 72px"],
    section h2[style*="font-size"],
    div h2[style*="font-size"] {
        font-size: clamp(24px, 6vw, 36px) !important;
        line-height: 1.3 !important;
    }
    
    h3[style*="font-size"],
    section h3[style*="font-size"],
    div h3[style*="font-size"] {
        font-size: clamp(18px, 4vw, 24px) !important;
        line-height: 1.4 !important;
    }
    
    p[style*="font-size: 20px"],
    p[style*="font-size: 24px"],
    p[style*="font-size: 18px"],
    section p[style*="font-size"],
    div p[style*="font-size"] {
        font-size: 16px !important;
        line-height: 1.6 !important;
    }
    
    /* Prevent horizontal overflow */
    body {
        overflow-x: hidden !important;
    }
    
    section,
    .container-fluid,
    .section-full {
        overflow-x: hidden !important;
    }
    
    img,
    video {
        max-width: 100% !important;
        height: auto !important;
    }
    
    /* Screenshot showcases */
    section[style*="display: grid"][style*="grid-template-columns: repeat(2"] {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    
    /* Pricing cards */
    section div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
        padding: 0 20px !important;
    }
    
    /* Cards with padding */
    div[style*="padding: 50px"],
    div[style*="padding: 60px"],
    div[style*="padding: 40px"] {
        padding: 30px 20px !important;
    }
    
    /* Icon cards */
    i[style*="font-size: 64px"],
    i[style*="font-size: 72px"],
    i[style*="font-size: 80px"] {
        font-size: 48px !important;
    }
    
    /* Footer */
    footer div[style*="display: flex"][style*="justify-content: space-between"] {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    footer div[style*="display: flex"][style*="gap: 60px"] {
        flex-direction: column !important;
        gap: 25px !important;
    }
    
    /* Trust badges */
    div[style*="Trusted & Compliant"] + div {
        gap: 15px !important;
        justify-content: center !important;
        flex-wrap: wrap !important;
    }
    
    div[style*="Trusted & Compliant"] + div > div {
        flex: 0 1 auto !important;
    }
    
    div[style*="Trusted & Compliant"] + div > div > div {
        padding: 10px 12px !important;
        font-size: 10px !important;
    }
    
    /* Forms - Mobile responsive */
    .contact-form {
        padding: 30px 20px;
        margin: 0 15px;
    }
    
    .contact-form h2 {
        font-size: 28px !important;
    }
    
    .contact-form form > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .form-input,
    .form-select,
    .form-textarea {
        font-size: 16px;
        padding: 14px 16px;
    }
    
    .form-submit {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Small mobile (480px and below) */
@media (max-width: 480px) {
    :root {
        --header-height: 48px;
    }
    
    .hero-title {
        font-size: clamp(28px, 8vw, 36px) !important;
        line-height: 1.1 !important;
    }
    
    .hero-subtitle {
        font-size: 15px !important;
        line-height: 1.5 !important;
    }
    
    h1 {
        font-size: clamp(24px, 7vw, 32px) !important;
    }
    
    h2 {
        font-size: clamp(22px, 6vw, 28px) !important;
    }
    
    h3 {
        font-size: clamp(18px, 5vw, 22px) !important;
    }
    
    .bento-box {
        padding: 25px 15px !important;
    }
    
    .bento-master {
        padding: 15px !important;
        gap: 15px !important;
    }
    
    /* Make icon showcase single column on very small screens */
    div[style*="gap: 40px"][style*="justify-content: center"] {
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] > div {
        width: 100% !important;
        max-width: 200px !important;
        height: auto !important;
        min-height: 120px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] i {
        font-size: 40px !important;
        margin-bottom: 10px !important;
    }
    
    div[style*="gap: 40px"][style*="justify-content: center"] p,
    div[style*="gap: 40px"][style*="justify-content: center"] span {
        font-size: 14px !important;
        text-align: center !important;
    }
    
    /* Statistics cards */
    section div[style*="font-size: 56px"],
    div[style*="font-size: 56px"] {
        font-size: 28px !important;
    }
    
    section div[style*="font-size: 64px"],
    div[style*="font-size: 64px"] {
        font-size: 32px !important;
    }
    
    section div[style*="font-size: 72px"],
    div[style*="font-size: 72px"] {
        font-size: 36px !important;
    }
    
    /* Therapeutic class grid - 2 columns max */
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns: repeat(5"],
    div[style*="grid-template-columns: repeat(6"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    /* Pill badges for disease conditions */
    div[style*="display: flex"][style*="flex-wrap: wrap"] > div,
    div[style*="display: flex"][style*="flex-wrap: wrap"] > span {
        font-size: 12px !important;
        padding: 8px 12px !important;
    }
    
    /* Trust badges - stack vertically */
    div[style*="Trusted & Compliant"] + div {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    div[style*="Trusted & Compliant"] + div > div {
        width: 100% !important;
        max-width: 250px !important;
    }
    
    /* Reduce all padding for very small screens */
    div[style*="padding: 50px"],
    div[style*="padding: 60px"],
    div[style*="padding: 40px"] {
        padding: 25px 15px !important;
    }
    
    .section-full {
        padding: 40px 15px !important;
    }
    
    /* Contact form */
    .contact-form {
        padding: 25px 15px !important;
        margin: 0 10px !important;
    }
}

/* Tablet landscape and desktop small (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
    .bento-master {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px;
    }
    
    .container-fluid {
        padding: 0 30px;
    }
    
    section h2 {
        font-size: 44px !important;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-links a {
        font-size: 11px;
    }
}

/* Large desktop (1920px and above) */
@media (min-width: 1920px) {
    .container-fluid {
        max-width: 1800px;
    }
    
    .bento-master {
        max-width: 1800px;
    }
    
    .hero-title {
        font-size: 110px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        max-width: 900px;
    }
}

/* Orientation: Landscape on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-masterpiece {
        min-height: auto;
        padding: 60px 20px 40px;
    }
    
    .section-full {
        min-height: auto;
        padding: 60px 20px;
    }
    
    .hero-subtitle {
        margin-bottom: 20px;
    }
}

/* Print styles */
@media print {
    .nav-blur,
    .btn-glow,
    footer {
        display: none;
    }
    
    .section-full {
        page-break-inside: avoid;
    }
}
