/* LINEUP SECTION PREMIUM BACKGROUND */
#lineup_selector {
    position: relative;
    background: linear-gradient(175deg, #050505 0%, #0a0a0a 40%, #060608 100%);
    overflow: hidden;
    padding: 0;
}

#lineup_selector::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 800px 500px at 10% 20%, rgba(206, 254, 70, 0.03) 0%, transparent 70%),
        radial-gradient(ellipse 600px 400px at 90% 80%, rgba(206, 254, 70, 0.02) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

/* Grain texture — matching О KARTEL */
#lineup_selector::after {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0.025;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 0;
}

/* Wide container — matching brand-wide (1600px) */
.lineup-wide {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 clamp(20px, 4vw, 80px) 80px;
}

/* Lineup header — premium style */
.lineup-header {
    padding: 100px 0 48px;
    text-align: center;
}

.lineup-label {
    font-family: 'Courier New', Courier, monospace;
    font-size: 12px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}

.lineup-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 400;
    letter-spacing: 0.03em;
    color: #fff;
    margin-bottom: 12px;
}

.lineup-title .year-highlight {
    color: var(--accent);
    font-weight: 600;
}

.lineup-divider {
    width: 48px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 0 auto 24px;
}

.lineup-lead {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.lineup-lead strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

/* --- BENTO GRID RESTORED (CLASSIC PROPORTIONS) --- */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: var(--spacing-card);
    margin-top: 40px;
}

.card {
    background-color: var(--bg-card);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 48px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    text-decoration: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    min-height: 500px;
    overflow: hidden;
}

/* Accent top line */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent 60%);
    opacity: 0.4;
    transition: opacity 0.4s ease;
    z-index: 3;
}

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

.card:hover {
    border-color: rgba(206, 254, 70, 0.4);
    transform: translateY(-6px);
    background-color: #1a1a1a;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.7);
}

.card-large { grid-column: span 12; }
.card-medium { grid-column: span 12; }

@media (min-width: 900px) {
    /* Balanced Grid for Better Visibility */
    .card-large { grid-column: span 6; }
    .card-medium { grid-column: span 6; }
}

.card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.5;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.card:hover .card-bg {
    opacity: 0.65;
    transform: scale(1.05);
}

.bg-flybridge { 
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url('../images/cards/t-rex-flybridge-card.jpg');
    opacity: 0.9;
    background-position: center center;
}

.bg-cruiser { 
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.15)), url('../images/cards/t-rex-cruiser-card.jpg'); 
    opacity: 0.9;
    background-position: center 35%;
    background-size: cover;
}

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

.badge {
    display: inline-block;
    background-color: rgba(206, 254, 70, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
    border: 2px solid var(--accent);
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 0 20px rgba(206, 254, 70, 0.2);
}

.badge-accent {
    background-color: rgba(0, 71, 187, 0.15);
    color: #5B9BD5;
    border-color: #5B9BD5;
    box-shadow: 0 0 20px rgba(0, 71, 187, 0.2);
}

.model-label {
    display: inline-block;
    padding: 6px 14px;
    background-color: #b36bff;
    color: #000000;
    font-weight: 700;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 999px;
    margin-bottom: 12px;
}

.model-name {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 400;
    letter-spacing: -0.01em;
    margin-bottom: 16px;
    color: #fff;
    text-transform: none;
}

.model-desc {
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 300;
    max-width: 500px;
}

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

/* EXPEDITION 65 LUX BANNER — Premium cinematic, taller */
.expedition-preview {
    margin-top: 56px;
    border: 1px solid rgba(206, 254, 70, 0.15);
    background-color: #0a0a0a;
    overflow: hidden;
    position: relative;
    height: clamp(420px, 55vw, 650px);
    width: 100%;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.expedition-preview::before {
    content: 'EXPEDITION 65 LUX';
    position: absolute;
    top: 24px;
    left: 32px;
    z-index: 10;
    font-size: 11px;
    letter-spacing: 0.2em;
    color: var(--accent);
    font-weight: 600;
    font-family: 'Courier New', Courier, monospace;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border: 1px solid rgba(206, 254, 70, 0.3);
}

.expedition-preview::after {
    content: '19.6M · СТАЛЬ + АМГ5М · 5 КАЮТ · АВТОНОМНОЕ СУДНО';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    font-family: 'Courier New', Courier, monospace;
    font-size: 9px;
    letter-spacing: 0.2em;
    color: rgba(206, 254, 70, 0.3);
    text-align: right;
    padding: 20px 32px;
    background: linear-gradient(to top, rgba(5,5,5,0.9) 0%, transparent 100%);
}

.expedition-slider {
    position: absolute;
    inset: 0;
}

.expedition-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0;
    transition: opacity 0.6s ease;
    filter: brightness(0.85) contrast(1.1);
}

.expedition-slide.active {
    opacity: 1;
}

/* Expedition arrows */
.expedition-nav {
    position: absolute;
    inset: 0;
    z-index: 15;
    pointer-events: none;
}
.expedition-arrow {
    width: 48px;
    height: 48px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.55);
    color: var(--accent);
    font-size: 24px;
    font-weight: 700;
    cursor: pointer;
    user-select: none;
    transition: var(--transition);
    backdrop-filter: blur(8px);
    pointer-events: auto;
}
.expedition-arrow:hover {
    background: rgba(0,0,0,0.8);
    border-color: var(--accent);
}
.expedition-arrow--prev { left: 16px; }
.expedition-arrow--next { right: 16px; }

/* Slide counter - hidden, replaced by progress dots */
.expedition-counter {
    display: none;
}

/* Slide progress dots */
.expedition-dots {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 15;
    display: flex;
    gap: 3px;
    padding: 0 32px;
}

.expedition-dot {
    flex: 1;
    height: 3px;
    background: rgba(255,255,255,0.2);
    cursor: pointer;
    transition: background 0.3s ease;
}

.expedition-dot:hover {
    background: rgba(255,255,255,0.5);
}

.expedition-dot.active {
    background: var(--accent);
}

.expedition-overlay {
    position: absolute;
    bottom: 40px;
    left: 32px;
    z-index: 10;
}

.expedition-overlay h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(22px, 3.5vw, 36px);
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.expedition-overlay p {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 300;
    max-width: 480px;
}

.expedition-badge {
    display: inline-block;
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent);
    border: 2px solid var(--accent);
    padding: 6px 14px;
    margin-bottom: 12px;
    font-weight: 600;
    background-color: rgba(206, 254, 70, 0.15);
    box-shadow: 0 0 20px rgba(206, 254, 70, 0.2);
}

@media (max-width: 767px) {
    .expedition-preview {
        height: clamp(280px, 70vw, 420px);
    }
    .expedition-overlay h3 {
        font-size: 20px;
    }
    .expedition-overlay {
        bottom: 30px;
        left: 20px;
    }
}

/* CONCEPT BANNER — Full-width cinematic */
