/* Apple/Tesla Premium Showcase Core */

.hero-premium {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-premium::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 38, 39, 0.4);
    z-index: 1;
}

.hero-premium .container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-premium .kicker {
    font-family: var(--font-display);
    color: var(--text-on-brand);
    background-color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: var(--border-radius);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-size: var(--text-base);
    margin-bottom: var(--space-md);
    box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.hero-premium h1 {
    font-size: clamp(4rem, 8vw, 6rem);
    color: var(--text-on-dark);
    text-transform: uppercase;
    line-height: 0.85;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
    text-wrap: balance;
}

.hero-premium .tagline {
    font-size: var(--text-xl);
    color: var(--text-on-dark);
    max-width: 700px;
    font-weight: 400;
    opacity: 0.9;
}

/* Macro Science Reveal Section */
.macro-reveal {
    background-image: url('../../assets/viscolok_macro.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-md);
}

.macro-reveal::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(33, 38, 39, 0.6); /* Slightly darker for ViscoLok contrast */
    z-index: 1;
}

.macro-reveal .text-block {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.macro-reveal h2 {
    font-size: var(--text-hero);
    line-height: 1;
    margin-bottom: var(--space-lg);
    text-transform: uppercase;
    color: var(--text-on-dark);
    text-shadow: 0 4px 20px rgba(0,0,0,0.6);
}

.macro-reveal p {
    font-size: var(--text-xl);
    color: var(--text-on-dark);
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

/* Stark Daylight Data Sections */
.daylight-data {
    background-color: var(--bg);
    padding: var(--space-3xl) 0;
    border-bottom: 1px solid var(--border-subtle);
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-2xl);
}
@media (min-width: 900px) {
    .stat-grid:not(.varied-grid) {
        grid-template-columns: 1.5fr 1fr;
        grid-template-rows: auto auto;
    }
    .stat-grid:not(.varied-grid) > *:nth-child(1) {
        grid-column: 1;
        grid-row: 1 / span 2;
        border-right: 1px solid var(--border-subtle);
        padding-right: var(--space-2xl);
        align-self: center;
    }
}

.huge-stat {
    display: flex;
    flex-direction: column;
}

.huge-stat .number {
    font-family: var(--font-display);
    font-size: clamp(4rem, 6vw, 6rem);
    line-height: 0.8;
    color: var(--color-secondary);
    margin-bottom: var(--space-sm);
    letter-spacing: -0.04em;
}

.huge-stat .label {
    font-family: var(--font-display);
    font-size: var(--text-xl);
    color: var(--text-primary);
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
}

.huge-stat .desc {
    font-size: var(--text-base);
    color: var(--text-primary);
    opacity: 0.8;
}

/* Logistics / Bag Section */
.logistics-section {
    background-color: var(--bg-alt);
    padding: var(--space-3xl) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.bag-render {
    max-width: 400px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.15));
    transform: translateY(20px);
    transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.logistics-content {
    padding-left: var(--space-2xl);
    max-width: 500px;
}

/* Impeccable Animate: Micro-interactions */
.btn {
    transition: transform 150ms cubic-bezier(0.25, 1, 0.5, 1), box-shadow 150ms cubic-bezier(0.25, 1, 0.5, 1) !important;
}
.btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0,0,0,0.1) !important;
}
.btn:active {
    transform: scale(0.97);
}
