@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;700&display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background-color: #000000;
    color: #ffffff;
}

.m-stripe {
    height: 4px;
    background: linear-gradient(to right, #0066b1 33.33%, #1c69d4 33.33%, #1c69d4 66.66%, #e22718 66.66%);
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    border: 1px solid #ffffff;
    background: transparent;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s;
    border-radius: 0;
    text-decoration: none;
}

.btn-primary:hover {
    background: #ffffff;
    color: #000000;
}

.section-divider {
    height: 1px;
    background: #3c3c3c;
    margin: 96px 0;
}

.hero-band {
    background: #000000;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-band img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
}

.spec-cell {
    background: #0d0d0d;
    padding: 24px;
    border: 1px solid #3c3c3c;
}

.spec-cell .value {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.15;
}

.spec-cell .label {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #7e7e7e;
    margin-top: 4px;
}

details summary {
    cursor: pointer;
    list-style: none;
    user-select: none;
}

details summary::-webkit-details-marker {
    display: none;
}

details summary::after {
    content: '+';
    float: right;
    font-weight: 700;
    color: #7e7e7e;
    transition: transform 0.2s;
}

details[open] summary::after {
    content: '−';
}

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    background: #000000;
    border: 1px solid #3c3c3c;
    padding: 24px;
    z-index: 9999;
}

@media (max-width: 767px) {
    .cookie-banner {
        width: calc(100% - 32px);
        right: 16px;
        bottom: 16px;
    }

    .hero-band img {
        height: 280px;
    }
}
