﻿:root {
    --black: #0d0d0d;
    --black-warm: #141414;
    --black-card: #1a1a1a;
    --black-elevated: #222222;
    --white: #f5f5f5;
    --gray-300: #b3b3b3;
    --gray-400: #808080;
    --gray-500: #666666;
    --corsair-yellow: #f1c40f;
    --corsair-yellow-hover: #f7d52e;
    --corsair-yellow-dim: rgba(241, 196, 15, 0.10);
    --intel-blue: #00BBF6;
    --intel-blue-dim: rgba(0, 104, 181, 0.10);
    --intel-blue-hover: #0078D4;
    --radius: 12px;
    --radius-lg: 20px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

#main {
    padding: 0;
    position: relative;
}

    #main .title {
        text-align: center;
        padding: 3.75rem 0 3.75rem 0;
    }

@media screen and (min-width: 992px) {
    #main .title {
        text-align: left;
        top: 16%;
        position: absolute;
        width: 33%;
        height: 100%;
    }
}

@media screen and (min-width: 2493px) {
    #main .title {
        width: 24%;
    }
}

@media screen and (min-width: 2772px) {
    #main .title {
        width: 20%;
    }
}

.content .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--intel-blue);
    margin-bottom: 12px;
}

    .section-label.yellow {
        color: var(--corsair-yellow);
    }

.section-title {
    font-size: clamp(28px, 3vw, 40px);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 16px;
    max-width: 680px;
    margin-bottom: 48px;
}

/* ══════════ HERO ══════════ */
.hero {
    position: relative;
    padding: 110px 0 90px;
    overflow: hidden;
    background: var(--black);
}

    .hero::before {
        content: '';
        position: absolute;
        top: -200px;
        right: -120px;
        width: 650px;
        height: 650px;
        background: radial-gradient(circle, rgba(0,104,181,0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero::after {
        content: '';
        position: absolute;
        bottom: -150px;
        left: -100px;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(241,196,15,0.03) 0%, transparent 60%);
        pointer-events: none;
    }

    .hero .container {
        display: grid;
        grid-template-columns: 1.1fr 0.9fr;
        gap: 60px;
        align-items: center;
    }

.hero-text {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--intel-blue);
    background: var(--intel-blue-dim);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
    border: 1px solid rgba(0,104,181,0.2);
}

.hero h1 {
    font-size: clamp(32px, 4vw, 50px);
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
}

    .hero h1 span {
        background: linear-gradient(135deg, var(--intel-blue), var(--intel-blue-hover));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.5);
    max-width: 520px;
    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-logo-area {
    width: 100%;
    max-width: 420px;
    aspect-ratio: 4/3;
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    overflow: hidden;
}

    .hero-logo-area img {
        max-width: 200px;
    }

    .hero-logo-area .placeholder-label {
        font-family: 'Outfit', sans-serif;
        font-size: 13px;
        font-weight: 500;
        color: rgba(255,255,255,0.12);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

/* ══════════ STAT BAR ══════════ */
.stat-bar {
    padding: 0 0 80px;
    background: var(--black);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-box {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 28px 24px;
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--intel-blue);
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-delta {
    font-size: 11px;
    font-weight: 600;
    color: rgba(0,200,120,1);
    margin-top: 4px;
}

/* ══════════ WHAT'S NEW CARDS ══════════ */
.whats-new {
    padding: 100px 0;
    background: var(--black-warm);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.wn-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.wn-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    padding: 36px 28px;
    transition: all 0.3s ease;
}

    .wn-card:hover {
        border-color: rgba(0,104,181,0.2);
        background: var(--black-elevated);
    }

.wn-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--intel-blue-dim);
    border: 1px solid rgba(0,104,181,0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

    .wn-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--intel-blue);
        fill: none;
        stroke-width: 1.8;
        stroke-linecap: round;
        stroke-linejoin: round;
    }

.wn-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.wn-card p {
    font-size: 14px;
    line-height: 1.65;
}

.wn-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 3px 10px;
    border-radius: 100px;
    margin-bottom: 14px;
}

    .wn-tag.new {
        color: rgba(0,200,120,0.8);
        background: rgba(0,200,120,0.08);
        border: 1px solid rgba(0,200,120,0.15);
    }

    .wn-tag.improved {
        color: var(--intel-blue);
        background: var(--intel-blue-dim);
        border: 1px solid rgba(0,104,181,0.15);
    }

/* ══════════ DETAIL SECTIONS ══════════ */
.detail-section {
    padding: 80px 0;
}

    .detail-section.alt {
        background: var(--black-warm);
        border-top: 1px solid rgba(255,255,255,0.05);
    }

.detail-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

    .detail-row.reverse {
        direction: rtl;
    }

        .detail-row.reverse > * {
            direction: ltr;
        }

.detail-content h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.detail-content p {
    font-size: 15px;
    line-height: 1.75;
    margin-bottom: 16px;
}

    .detail-content p:last-child {
        margin-bottom: 0;
    }

/* ══════════ SKU TABLE ══════════ */
.sku-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

.sku-table-wrap {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
}

.sku-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
}

    .sku-table thead th {
        background: var(--black-elevated);
        padding: 14px 16px;
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: rgba(255,255,255,0.5);
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }

    .sku-table tbody td {
        padding: 12px 16px;
        color: rgba(255,255,255,0.55);
        border-bottom: 1px solid rgba(255,255,255,0.03);
    }

    .sku-table tbody tr:hover {
        background: var(--black-elevated);
    }

    .sku-table tbody tr:last-child td {
        border-bottom: none;
    }

    .sku-table .sku-name {
        color: #fff;
        font-weight: 600;
    }

    .sku-table .sku-highlight {
        color: var(--intel-blue);
        font-weight: 600;
    }

    .sku-table .sku-oc {
        font-size: 10px;
        font-weight: 600;
        color: rgba(0,200,120,0.7);
        background: rgba(0,200,120,0.08);
        padding: 2px 8px;
        border-radius: 100px;
        margin-left: 6px;
    }

/* ══════════ SYSTEM CARD ══════════ */
.system-section {
    padding: 100px 0;
    background: var(--black);
    border-top: 1px solid rgba(255,255,255,0.05);
}

    .system-section .container {
        max-width: 900px;
    }

.system-card {
    background: var(--black-card);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
}

.system-card-image {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .system-card-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 24px;
    }

    .system-card-image .placeholder-label {
        font-size: 12px;
        font-weight: 500;
        color: rgba(0,0,0,0.15);
        text-transform: uppercase;
        letter-spacing: 2px;
    }

.system-card-body {
    padding: 40px 36px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.system-card-tier {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--corsair-yellow);
    margin-bottom: 8px;
}

.system-card h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
}

.system-card-sub {
    font-size: 14px;
    color: rgba(255,255,255,0.35);
    margin-bottom: 24px;
}

.system-card-specs {
    list-style: none;
    margin-bottom: 28px;
}

    .system-card-specs li {
        font-size: 14px;
        color: rgba(255,255,255,0.5);
        padding: 7px 0;
        display: flex;
        gap: 8px;
    }

        .system-card-specs li .label {
            font-weight: 600;
            color: rgba(255,255,255,0.65);
            min-width: 36px;
        }

.system-card-actions {
    display: flex;
    gap: 10px;
}

/* ══════════ CTA ══════════ */
.cta {
    padding: 80px 0 100px;
    background: var(--black);
}

.cta-box {
    background: linear-gradient(135deg, var(--black-warm) 0%, var(--black-card) 100%);
    border-radius: var(--radius-lg);
    padding: 72px 64px;
    text-align: center;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.06);
}

    .cta-box::before {
        content: '';
        position: absolute;
        top: -100px;
        left: 50%;
        transform: translateX(-50%);
        width: 500px;
        height: 400px;
        background: radial-gradient(circle, rgba(0,104,181,0.08) 0%, transparent 60%);
        pointer-events: none;
    }

    .cta-box h2 {
        font-size: clamp(26px, 3vw, 38px);
        letter-spacing: -0.5px;
        margin-bottom: 16px;
        position: relative;
    }

    .cta-box p {
        color: rgba(255,255,255,0.55);
        font-size: 16px;
        max-width: 560px;
        margin: 0 auto 36px;
        position: relative;
    }

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ══════════ RESPONSIVE ══════════ */
@media (max-width: 1024px) {
    .stat-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wn-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        order: -1;
    }

    .detail-row, .detail-row.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .detail-image {
        order: -1;
    }

    .system-card {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 24px;
    }

    .cta-box {
        padding: 48px 28px;
    }

    .sku-table-wrap {
        overflow-x: auto;
    }
}

@media (max-width: 600px) {
    .stat-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero {
        padding: 80px 0 60px;
    }
}

/*.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }
*/