:root {
    --canvas: #000000;
    --surface-soft: #0d0d0d;
    --surface-card: #1a1a1a;
    --surface-elevated: #262626;
    --carbon-gray: #2b2b2b;
    --hairline: #3c3c3c;
    --on-dark: #ffffff;
    --body: #bbbbbb;
    --body-strong: #e6e6e6;
    --muted: #7e7e7e;
    --m-blue-light: #0066b1;
    --m-blue-dark: #1c69d4;
    --m-red: #e22718;
    --electric-blue: #0653b6;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    background: var(--canvas);
    color: var(--on-dark);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 300;
    line-height: 1.5;
}

.m-stripe-divider {
    height: 4px;
    background: linear-gradient(to right, var(--m-blue-light) 33%, var(--m-blue-dark) 33% 66%, var(--m-red) 66%);
    width: 100%;
}

.m-stripe-logo {
    width: 32px;
    height: 4px;
    background: linear-gradient(to right, var(--m-blue-light) 33%, var(--m-blue-dark) 33% 66%, var(--m-red) 66%);
    display: inline-block;
    margin-bottom: 2px;
}

h1, h2, h3, h4 { font-weight: 700; color: var(--on-dark); text-transform: uppercase; letter-spacing: 0; }
h1 { font-size: 80px; line-height: 1.0; }
h2 { font-size: 56px; line-height: 1.05; }
h3 { font-size: 40px; line-height: 1.1; }
h4 { font-size: 32px; line-height: 1.15; }

@media (max-width: 768px) {
    h1 { font-size: 48px; }
    h2 { font-size: 36px; }
    h3 { font-size: 28px; }
}

p { color: var(--body); font-weight: 300; line-height: 1.5; }

.hero-band {
    position: relative;
    background: var(--canvas);
    overflow: hidden;
}

.hero-band img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.hero-band .hero-content {
    position: absolute;
    bottom: 64px;
    left: 0;
    right: 0;
    padding: 0 40px;
}

.spec-cell {
    background: var(--surface-soft);
    padding: 24px;
    border: 1px solid var(--hairline);
}

.spec-cell .value {
    font-size: 32px;
    font-weight: 700;
    color: var(--on-dark);
    display: block;
    text-transform: uppercase;
}

.spec-cell .label {
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 8px;
}

.feature-card {
    background: var(--surface-card);
    border: 1px solid var(--hairline);
}

.feature-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.btn-primary {
    display: inline-block;
    background: transparent;
    color: var(--on-dark);
    border: 1px solid var(--on-dark);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.2s;
    border-radius: 0;
}

.btn-primary:hover { background: var(--surface-card); }

.btn-electric {
    display: inline-block;
    background: var(--electric-blue);
    color: var(--on-dark);
    border: 1px solid var(--electric-blue);
    padding: 16px 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    cursor: pointer;
    border-radius: 0;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th {
    background: var(--surface-card);
    color: var(--on-dark);
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: 1px solid var(--hairline);
    text-align: left;
}

.compare-table td {
    background: var(--surface-soft);
    color: var(--body);
    padding: 14px 24px;
    font-size: 15px;
    font-weight: 300;
    border: 1px solid var(--hairline);
    vertical-align: top;
}

.compare-table tr.expandable { cursor: pointer; }
.compare-table tr.expand-row { display: none; }
.compare-table tr.expand-row.open { display: table-row; }
.compare-table tr.expandable td:first-child::after { content: ' ▼'; font-size: 10px; }
.compare-table tr.expandable.open td:first-child::after { content: ' ▲'; }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 0;
    font-size: 12px;
    color: var(--muted);
}

.breadcrumb a { color: var(--muted); text-decoration: none; }
.breadcrumb a:hover { color: var(--on-dark); }
.breadcrumb span { color: var(--hairline); }

.disclaimer-box {
    background: var(--surface-card);
    border-left: 4px solid var(--electric-blue);
    padding: 16px 20px;
    margin: 24px 0;
}

.disclaimer-box p { font-size: 13px; color: var(--muted); }

.cookie-banner {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 320px;
    background: var(--canvas);
    border: 1px solid var(--hairline);
    padding: 24px;
    z-index: 9999;
    display: none;
}

.cookie-banner.show { display: block; }

.faq-item { border-bottom: 1px solid var(--hairline); }
.faq-question {
    padding: 16px 0;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    color: var(--on-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-transform: none;
}

.faq-answer {
    padding: 0 0 16px 0;
    color: var(--body);
    font-weight: 300;
    display: none;
}

.faq-answer.open { display: block; }

.related-content {
    background: var(--surface-soft);
    border: 1px solid var(--hairline);
    padding: 24px;
    margin-top: 40px;
}

.section-band { padding: 96px 0; }

.tag-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--electric-blue);
    display: block;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .hero-band img { height: 300px; }
    .hero-band .hero-content { bottom: 24px; padding: 0 20px; }
    .section-band { padding: 48px 0; }
    .cookie-banner { width: calc(100vw - 48px); left: 24px; right: 24px; }
}
