.press-page {
    padding-top: 180px;
    padding-bottom: 120px;
}

/* --- Hero Section --- */
.press-hero {
    padding: 0 var(--padding-side);
    margin-bottom: 100px;
    position: relative;
}

.press-title-main {
    font-size: clamp(60px, 12vw, 180px);
    line-height: 0.85;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: -0.02em;
    display: flex;
    flex-direction: column;
}

.press-title-sub {
    font-family: 'Cascadia Code', monospace;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--cf);
    letter-spacing: 0.4em;
    margin-bottom: 20px;
    display: block;
    opacity: 0.8;
}

.press-hero-description {
    max-width: 600px;
    font-size: 18px;
    color: var(--tx2);
    margin-top: 40px;
    line-height: 1.5;
}

/* --- Navigation Pill --- */
.press-nav-container {
    padding: 0 var(--padding-side);
    margin-bottom: 80px;
    position: sticky;
    top: 100px;
    z-index: 50;
    display: flex;
    justify-content: flex-start;
}

.press-nav-pills {
    display: flex;
    gap: 8px;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    padding: 6px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.press-nav-link {
    padding: 12px 24px;
    border-radius: 100px;
    color: var(--tx2);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.press-nav-link:hover {
    color: var(--tx);
    background: rgba(255, 255, 255, 0.05);
}

.press-nav-link.active {
    background: var(--tx);
    color: var(--bg);
}

/* --- Fixed Floating Nav (Clone) --- */
.press-nav-fixed {
    position: fixed;
    bottom: -100px;
    /* Initially hidden below screen */
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    padding: 0;
    margin: 0;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: none;
    /* Hidden by default, shown via JS on PC */
}

.press-nav-fixed.is-visible {
    bottom: 40px;
}

@media (min-width: 1025px) {
    .press-nav-fixed {
        display: flex;
    }
}

/* --- Section Heads --- */
.section-meta {
    font-family: 'Cascadia Code', monospace;
    font-size: 12px;
    color: var(--cf);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title-premium {
    font-size: 48px;
    text-transform: uppercase;
    font-weight: 800;
    margin-bottom: 40px;
}

/* --- Biography Section --- */
.bio-editorial-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    padding: 0 var(--padding-side);
    margin-bottom: 180px;
    align-items: start;
}

.bio-editorial-image {
    position: sticky;
    top: 180px;
    aspect-ratio: 4/5;
    overflow: hidden;
    border-radius: 4px;
}

.bio-editorial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.4) contrast(1.1);
}

.bio-text-wrapper {
    position: relative;
}

.bio-toggle-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 20px;
}

.bio-length-selector {
    display: flex;
    gap: 20px;
}

.bio-length-btn {
    background: none;
    border: none;
    color: var(--tx2);
    font-family: var(--f-main);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    padding: 0;
    transition: color 0.3s ease;
}

.bio-length-btn.active {
    color: var(--tx);
}

.bio-body-text {
    font-size: clamp(18px, 1.5vw, 22px);
    line-height: 1.6;
    color: var(--tx2);
    transition: all 0.5s ease;
}

.bio-body-text p {
    margin-bottom: 30px;
}

.bio-body-text p:first-of-type {
    color: var(--tx);
}

/* --- Press Clippings --- */
.press-clippings-editorial {
    padding: 0 var(--padding-side);
    margin-bottom: 180px;
}

.quotes-staggered-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 40px;
}

.press-card-large {
    grid-column: span 8;
    background: rgba(255, 255, 255, 0.03);
    padding: 80px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.press-card-small {
    grid-column: span 4;
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.press-card-medium {
    grid-column: span 6;
    background: rgba(255, 255, 255, 0.03);
    padding: 60px;
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.press-card-large .quote-text {
    font-size: 32px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
}

.press-card-small .quote-text {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.press-card-medium .quote-text {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 25px;
}

.quote-source-editorial {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--cf);
    font-family: 'Cascadia Code', monospace;
    font-size: 12px;
    text-transform: uppercase;
}

.quote-source-editorial::before {
    content: '';
    width: 30px;
    height: 1px;
    background: currentColor;
}

/* --- Assets Section --- */
.assets-editorial {
    background: #080808;
    padding: 140px var(--padding-side);
    margin-bottom: 120px;
}

.assets-header-editorial {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 80px;
}

.assets-editorial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.asset-editorial-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #111;
    transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.asset-editorial-preview {
    aspect-ratio: 1/1;
    overflow: hidden;
}

.asset-editorial-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.asset-editorial-info {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.asset-meta-text {
    display: flex;
    flex-direction: column;
}

.asset-name {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}

.asset-details {
    font-family: 'Cascadia Code', monospace;
    font-size: 10px;
    color: var(--tx2);
}

.btn-download-minimal {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-download-minimal:hover {
    background: var(--tx);
    color: var(--bg);
}

.asset-editorial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.asset-editorial-card:hover img {
    transform: scale(1.08);
}

/* --- Technical Riders --- */
.technical-curated {
    padding: 0 var(--padding-side);
}

.tech-curated-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.tech-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 50px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 280px;
    transition: all 0.4s ease;
    text-decoration: none;
    color: inherit;
}

.tech-card-premium:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--cf);
    transform: scale(1.02);
}

.tech-card-icon {
    width: 24px;
    height: 24px;
    color: var(--cf);
    margin-bottom: 30px;
}

.tech-card-title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.tech-card-subtitle {
    font-size: 14px;
    color: var(--tx2);
    margin-bottom: 30px;
}

.tech-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: 'Cascadia Code', monospace;
    font-size: 10px;
    color: var(--tx2);
}

.tech-card-cta {
    color: var(--tx);
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 1024px) {
    .bio-editorial-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .bio-editorial-image {
        position: relative;
        top: 0;
        height: 500px;
    }

    .quotes-staggered-grid {
        grid-template-columns: 1fr;
    }

    .press-card-large,
    .press-card-small,
    .press-card-medium {
        grid-column: span 1;
        padding: 40px;
    }

    .assets-editorial-grid {
        grid-template-columns: 1fr 1fr;
    }

    .tech-curated-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .press-title-main {
        font-size: 16vw;
    }

    .assets-header-editorial {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .assets-editorial-grid {
        grid-template-columns: 1fr;
    }

    .press-nav-container {
        top: 80px;
    }
}