﻿:root {
    --ink: #12141C;
    --ink-dim: #5B6172;
    --ink-faint: #8A90A2;
    --bg-light: #F5F6FA;
    --bg-white: #FFFFFF;
    --bg-dark: #0A0D18;
    --bg-dark-2: #10142280;
    --line: rgba(18,20,28,0.09);
    --line-strong: rgba(18,20,28,0.15);
    --line-dark: rgba(255,255,255,0.1);
    --line-dark-strong: rgba(255,255,255,0.18);
    --text-on-dark: #F3F5FA;
    --text-on-dark-dim: #9AA2B8;
    --text-on-dark-faint: #5C6377;
    --cyan: #22C7DE;
    --blue: #3B6BFF;
    --violet: #8A4DFF;
    --magenta: #E23FD1;
    --grad-prism: linear-gradient(115deg, var(--cyan) 0%, var(--blue) 32%, var(--violet) 64%, var(--magenta) 100%);
    --up: #16A34A;
    --down: #DC2626;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-light);
    color: var(--ink);
    font-family: 'Inter',sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Space Grotesk',sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

.mono {
    font-family: 'JetBrains Mono',monospace;
    letter-spacing: 0.02em;
}

.wrap {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 32px;
}

img {
    max-width: 100%;
    display: block;
}

@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .6s ease, transform .6s ease;
}

    .reveal.in {
        opacity: 1;
        transform: translateY(0);
    }

/* ============ TICKER ============ */
.ticker-bar {
    background: #050710;
    border-bottom: 1px solid var(--line-dark);
    overflow: hidden;
    white-space: nowrap;
    height: 36px;
    display: flex;
    align-items: center;
}

.ticker-track {
    display: inline-flex;
    align-items: center;
    animation: scroll-left 38s linear infinite;
}

@keyframes scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.ticker-item {
    font-size: 12px;
    color: var(--text-on-dark-dim);
    padding: 0 26px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    white-space: nowrap;
}

    .ticker-item .tag {
        color: var(--cyan);
        font-weight: 600;
    }

    .ticker-item .up {
        color: var(--up);
    }

    .ticker-item .down {
        color: var(--down);
    }

    .ticker-item .dot {
        color: var(--text-on-dark-faint);
    }

/* ============ HEADER ============ */
header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255,255,255,0.86);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    transition: box-shadow .25s ease;
}

    header.scrolled {
        box-shadow: 0 6px 24px rgba(18,20,40,0.06);
    }

.nav-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.brand-logo-img {
    height: 59px;
    width: auto;
    display: block;
}

.brand-logo-img-footer {
    height: 89px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

    .nav-links a {
        font-size: 13.5px;
        font-weight: 500;
        color: var(--ink-dim);
        position: relative;
        padding: 4px 0;
        transition: color .2s ease;
    }

        .nav-links a::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -4px;
            height: 2px;
            background: var(--grad-prism);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .25s ease;
        }

        .nav-links a:hover {
            color: var(--ink);
        }

        .nav-links a.active {
            color: var(--ink);
        }

            .nav-links a:hover::after, .nav-links a.active::after {
                transform: scaleX(1);
            }

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.icon-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ink-dim);
    border: 1px solid var(--line-strong);
    transition: all .2s ease;
    cursor: pointer;
}

    .icon-btn:hover {
        color: var(--ink);
        border-color: var(--blue);
        background: var(--bg-light);
    }

.btn-primary {
    background: var(--grad-prism);
    color: #fff;
    font-weight: 600;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 3px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: transform .2s ease, box-shadow .2s ease;
    border: none;
    cursor: pointer;
}

    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 0 8px 20px rgba(138,77,255,0.28);
    }

.btn-ghost {
    border: 1px solid var(--line-strong);
    color: var(--ink);
    font-weight: 500;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 3px;
    transition: all .2s ease;
}

    .btn-ghost:hover {
        border-color: var(--blue);
        color: var(--blue);
    }

.btn-ghost-dark {
    border: 1px solid var(--line-dark-strong);
    color: var(--text-on-dark);
    font-weight: 500;
    font-size: 13.5px;
    padding: 10px 20px;
    border-radius: 3px;
    transition: all .2s ease;
}

    .btn-ghost-dark:hover {
        border-color: var(--cyan);
        color: var(--cyan);
    }

.mobile-toggle {
    display: none;
}

/* ============ HERO (dark) ============ */
.hero {
    position: relative;
    background: var(--bg-dark);
    overflow: hidden;
    padding: 64px 0 0;
}

.hero-shard {
    position: absolute;
    top: -220px;
    right: -260px;
    width: 900px;
    height: 900px;
    background: conic-gradient(from 200deg, var(--cyan), var(--blue), var(--violet), var(--magenta), var(--cyan));
    clip-path: polygon(38% 0%, 100% 22%, 78% 100%, 0% 62%);
    opacity: 0.16;
    filter: blur(2px);
    pointer-events: none;
}

.eyebrow {
    font-family: 'JetBrains Mono',monospace;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cyan);
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

    .eyebrow::before {
        content: '';
        width: 20px;
        height: 1px;
        background: var(--cyan);
    }

    .eyebrow.dark-on-light {
        color: var(--blue);
    }

        .eyebrow.dark-on-light::before {
            background: var(--blue);
        }

.hero-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: start;
    padding-bottom: 36px;
}

.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--text-on-dark);
}

    .hero-title .grad {
        background: var(--grad-prism);
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
    }

.hero-desc {
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-on-dark-dim);
    max-width: 480px;
    margin-bottom: 30px;
}

.hero-cta {
    display: flex;
    gap: 14px;
    margin-bottom: 38px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
}

.hstat .num {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-on-dark);
}

.hstat .lbl {
    font-size: 11px;
    color: var(--text-on-dark-faint);
    margin-top: 4px;
}

.lead-card {
    position: relative;
    background: #12162A;
    border: 1px solid var(--line-dark);
}

.lead-media {
    height: 210px;
    position: relative;
    overflow: hidden;
}

    /* Real photo sits on this element via inline style="background-image:url(...)"
       in the markup. The gradient below becomes a color-wash overlay on top of it
       so the brand palette still reads through the photograph. */
    .lead-media .ph {
        position: absolute;
        inset: 0;
        background-color: #1a2340;
        background-size: cover;
        background-position: center;
    }

        .lead-media .ph::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(10,13,24,0.18) 0%, rgba(10,13,24,0.55) 55%, rgba(10,13,24,0.88) 100%);
        }

        .lead-media .ph::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 25% 25%, rgba(34,199,222,0.4), transparent 55%), radial-gradient(circle at 78% 72%, rgba(226,63,209,0.35), transparent 55%);
            mix-blend-mode: overlay;
        }

    .lead-media .cat {
        position: absolute;
        top: 14px;
        left: 14px;
        font-family: 'JetBrains Mono',monospace;
        font-size: 10px;
        letter-spacing: 0.1em;
        background: rgba(5,7,16,0.75);
        backdrop-filter: blur(6px);
        border: 1px solid var(--line-dark-strong);
        padding: 5px 10px;
        color: var(--cyan);
        z-index: 2;
    }

.lead-body {
    padding: 20px 22px 22px;
}

    .lead-body h3 {
        font-size: 19px;
        line-height: 1.3;
        margin-bottom: 9px;
        color: var(--text-on-dark);
    }

    .lead-body p {
        font-size: 13px;
        color: var(--text-on-dark-dim);
        line-height: 1.6;
        margin-bottom: 14px;
    }

.lead-meta {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 11px;
    color: var(--text-on-dark-faint);
}

    .lead-meta .dot {
        width: 3px;
        height: 3px;
        background: var(--text-on-dark-faint);
        border-radius: 50%;
    }

.side-list {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
}

.side-item {
    display: flex;
    gap: 13px;
    padding: 14px 0;
    border-top: 1px solid var(--line-dark);
}

    .side-item .idx {
        font-family: 'JetBrains Mono',monospace;
        font-size: 11px;
        color: var(--text-on-dark-faint);
        padding-top: 2px;
    }

    .side-item .body h4 {
        font-size: 13.5px;
        font-weight: 600;
        line-height: 1.4;
        margin-bottom: 5px;
        color: var(--text-on-dark);
    }

    .side-item .body span {
        font-size: 11px;
        color: var(--text-on-dark-faint);
        font-family: 'JetBrains Mono',monospace;
    }

        .side-item .body span.tag {
            color: var(--violet);
        }

/* Facet divider between dark hero and light body */
.facet-divider {
    position: relative;
    height: 46px;
    background: var(--bg-dark);
}

    .facet-divider svg {
        position: absolute;
        bottom: -1px;
        left: 0;
        width: 100%;
        height: 48px;
        display: block;
    }

/* ============ LIVE MARKETS STRIP (light) ============ */
.markets-strip {
    background: var(--bg-white);
    border-bottom: 1px solid var(--line);
    padding: 18px 0;
}

.markets-row {
    display: flex;
    gap: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

    .markets-row::-webkit-scrollbar {
        display: none;
    }

.mkt-item {
    flex: 0 0 auto;
    padding: 0 26px;
    border-right: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 140px;
}

    .mkt-item:first-child {
        padding-left: 0;
    }

    .mkt-item .mkt-name {
        font-size: 11px;
        color: var(--ink-faint);
        font-family: 'JetBrains Mono',monospace;
        letter-spacing: 0.04em;
    }

    .mkt-item .mkt-val {
        font-size: 17px;
        font-weight: 700;
        font-family: 'Space Grotesk',sans-serif;
        color: var(--ink);
    }

    .mkt-item .mkt-chg {
        font-size: 11.5px;
        font-family: 'JetBrains Mono',monospace;
        display: flex;
        align-items: center;
        gap: 3px;
    }

        .mkt-item .mkt-chg.up {
            color: var(--up);
        }

        .mkt-item .mkt-chg.down {
            color: var(--down);
        }

/* ============ SECTION SHELL ============ */
section {
    padding: 76px 0;
}

    section.tight {
        padding: 56px 0;
    }

.sec-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 38px;
    gap: 24px;
    flex-wrap: wrap;
}

.sec-eyebrow {
    font-family: 'JetBrains Mono',monospace;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ink-faint);
    margin-bottom: 9px;
}

.sec-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--ink);
}

    .sec-title.on-dark {
        color: var(--text-on-dark);
    }

.sec-desc {
    font-size: 14px;
    color: var(--ink-dim);
    max-width: 400px;
    text-align: right;
}

    .sec-desc.on-dark {
        color: var(--text-on-dark-dim);
    }

.sec-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

    .sec-link svg {
        width: 12px;
        height: 12px;
    }

/* ============ CAROUSEL ============ */
.carousel-wrap {
    position: relative;
}

.carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 8px;
    scrollbar-width: none;
}

    .carousel::-webkit-scrollbar {
        display: none;
    }

.car-card {
    flex: 0 0 320px;
    scroll-snap-align: start;
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .car-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(18,20,40,0.09);
    }

.car-media {
    height: 180px;
    position: relative;
}

    .car-media .cat {
        position: absolute;
        top: 12px;
        left: 12px;
        font-family: 'JetBrains Mono',monospace;
        font-size: 9.5px;
        letter-spacing: 0.08em;
        background: rgba(255,255,255,0.92);
        padding: 4px 9px;
        color: var(--ink);
        z-index: 2;
        border-radius: 2px;
    }

.car-body {
    padding: 18px 20px 20px;
}

    .car-body h4 {
        font-size: 15.5px;
        line-height: 1.35;
        margin-bottom: 10px;
        color: var(--ink);
    }

    .car-body .meta {
        font-size: 11px;
        color: var(--ink-faint);
        font-family: 'JetBrains Mono',monospace;
    }

.car-nav {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    justify-content: flex-end;
}

    .car-nav button {
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--line-strong);
        background: var(--bg-white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all .2s ease;
    }

        .car-nav button:hover {
            border-color: var(--blue);
            color: var(--blue);
        }

/* ============================================================
   PHOTO PLACEHOLDER CLASSES (.ph1–.ph4)
   Each element carrying one of these classes ALSO gets a real
   photo via inline style="background-image:url(...)" in the
   markup. The gradients below no longer paint an opaque flat
   background — they sit on ::before/::after as a translucent
   brand-color wash (mix-blend-mode) on top of that photo, so
   every image still reads as "on-brand" instead of a raw stock
   photo, while staying attractive and legible.
   ============================================================ */
.car-media, .desk-media, .video-thumb .ph, .news-media,
.news-side-item .thumb, .video-list-item .vt, .shop-media {
    position: relative;
    background-color: #e7eaf5;
    background-size: cover;
    background-position: center;
}

.ph1::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,199,222,.55), rgba(59,107,255,.4) 55%, rgba(138,77,255,.3));
    mix-blend-mode: color;
}

.ph1::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(34,199,222,.45), transparent 55%), radial-gradient(circle at 78% 75%, rgba(138,77,255,.35), transparent 55%);
    mix-blend-mode: overlay;
}

.ph2::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(138,77,255,.5), rgba(226,63,209,.4) 60%);
    mix-blend-mode: color;
}

.ph2::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 25%, rgba(226,63,209,.4), transparent 55%), radial-gradient(circle at 20% 80%, rgba(59,107,255,.32), transparent 55%);
    mix-blend-mode: overlay;
}

.ph3::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(34,199,222,.42), rgba(59,107,255,.34) 55%);
    mix-blend-mode: color;
}

.ph3::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 25% 75%, rgba(22,163,74,.28), transparent 55%), radial-gradient(circle at 80% 20%, rgba(34,199,222,.35), transparent 55%);
    mix-blend-mode: overlay;
}

.ph4::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,140,60,.35), rgba(226,63,209,.4) 55%);
    mix-blend-mode: color;
}

.ph4::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 75% 70%, rgba(226,63,209,.32), transparent 55%), radial-gradient(circle at 20% 20%, rgba(255,140,60,.3), transparent 55%);
    mix-blend-mode: overlay;
}

/* ============ DESKS ============ */
.desk-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 20px;
}

.desk-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .desk-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(18,20,40,0.09);
    }

.desk-media {
    height: 150px;
}

    .desk-media .cat {
        position: absolute;
        top: 12px;
        left: 12px;
        font-family: 'JetBrains Mono',monospace;
        font-size: 9.5px;
        letter-spacing: 0.08em;
        background: rgba(255,255,255,0.92);
        padding: 4px 9px;
        z-index: 2;
        border-radius: 2px;
    }

.desk-body {
    padding: 20px 22px 22px;
}

    .desk-body .edge {
        width: 26px;
        height: 3px;
        margin-bottom: 14px;
        background: var(--edge, var(--grad-prism));
    }

    .desk-body h3 {
        font-size: 18px;
        margin-bottom: 8px;
        color: var(--ink);
    }

    .desk-body p {
        font-size: 13px;
        color: var(--ink-dim);
        line-height: 1.6;
        margin-bottom: 16px;
    }

.desk-sub {
    border-top: 1px solid var(--line);
    padding-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

    .desk-sub a {
        font-size: 12.5px;
        color: var(--ink-dim);
        display: flex;
        gap: 8px;
        transition: color .2s ease;
    }

        .desk-sub a:hover {
            color: var(--blue);
        }

        .desk-sub a::before {
            content: '—';
            color: var(--ink-faint);
        }

.desk-link {
    font-size: 12.5px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--blue);
    margin-top: 16px;
}

    .desk-link svg {
        width: 12px;
        height: 12px;
        transition: transform .2s ease;
    }

.desk-card:hover .desk-link svg {
    transform: translateX(3px);
}

/* ============ VIDEO / STUDIO (dark band) ============ */
.studio {
    background: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.studio-shard {
    position: absolute;
    bottom: -160px;
    left: -160px;
    width: 600px;
    height: 600px;
    background: conic-gradient(from 40deg, var(--magenta), var(--violet), var(--blue), var(--cyan));
    clip-path: polygon(30% 0%,100% 30%,70% 100%,0% 70%);
    opacity: .12;
    filter: blur(3px);
}

.studio-grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 56px;
    align-items: center;
}

.video-thumb {
    position: relative;
    border-radius: 4px;
    overflow: hidden;
    aspect-ratio: 16/10;
    border: 1px solid var(--line-dark-strong);
}

    /* Real studio photo goes on this element via inline background-image.
       Kept dark so the white play button and duration chip stay legible. */
    .video-thumb .ph {
        position: absolute;
        inset: 0;
        background-color: #141a30;
        background-size: cover;
        background-position: center;
    }

        .video-thumb .ph::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(20,26,48,.6), rgba(42,20,64,.5) 55%, rgba(22,15,40,.6));
        }

        .video-thumb .ph::after {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(34,199,222,.32), transparent 55%), radial-gradient(circle at 75% 75%, rgba(226,63,209,.3), transparent 55%);
            mix-blend-mode: overlay;
        }

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    cursor: pointer;
    transition: transform .2s ease;
}

    .play-btn:hover {
        transform: translate(-50%,-50%) scale(1.08);
    }

    .play-btn svg {
        width: 22px;
        height: 22px;
        margin-left: 3px;
    }

.video-dur {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(5,7,16,0.8);
    color: #fff;
    font-family: 'JetBrains Mono',monospace;
    font-size: 11px;
    padding: 4px 8px;
    border-radius: 2px;
    z-index: 3;
}

.video-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    margin-top: 20px;
}

.video-list-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-top: 1px solid var(--line-dark);
    cursor: pointer;
}

    .video-list-item .vt {
        width: 70px;
        height: 46px;
        border-radius: 3px;
        position: relative;
        overflow: hidden;
        flex-shrink: 0;
    }

        .video-list-item .vt::before {
            content: '▶';
            position: absolute;
            inset: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 11px;
            z-index: 2;
            background: rgba(5,7,16,0.35);
        }

    .video-list-item h5 {
        font-size: 13px;
        color: var(--text-on-dark);
        line-height: 1.35;
        font-weight: 500;
    }

    .video-list-item span {
        font-size: 10.5px;
        color: var(--text-on-dark-faint);
        font-family: 'JetBrains Mono',monospace;
    }

/* ============ NEWS GRID (light, masonry-like) ============ */
.news-main-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 24px;
}

.news-feature {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

    .news-feature .news-media {
        height: 280px;
    }

    .news-feature .body {
        padding: 24px 26px;
    }

    .news-feature h3 {
        font-size: 23px;
        line-height: 1.3;
        margin-bottom: 10px;
    }

    .news-feature p {
        font-size: 14px;
        color: var(--ink-dim);
        line-height: 1.65;
    }

.news-side-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.news-side-item {
    display: flex;
    gap: 14px;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
}

    .news-side-item:first-child {
        padding-top: 0;
    }

    .news-side-item .thumb {
        width: 88px;
        height: 66px;
        border-radius: 3px;
        flex-shrink: 0;
        position: relative;
        overflow: hidden;
    }

    .news-side-item h4 {
        font-size: 14px;
        line-height: 1.4;
        margin-bottom: 6px;
        color: var(--ink);
    }

    .news-side-item .meta {
        font-size: 10.5px;
        color: var(--ink-faint);
        font-family: 'JetBrains Mono',monospace;
    }

        .news-side-item .meta .tag {
            color: var(--violet);
        }

/* ============ TRENDING ============ */
.trend-wrap {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
}

.trend-row {
    display: grid;
    grid-template-columns: 52px 1fr auto auto;
    gap: 18px;
    align-items: center;
    padding: 18px 26px;
    border-bottom: 1px solid var(--line);
    transition: background .2s ease;
}

    .trend-row:last-child {
        border-bottom: none;
    }

    .trend-row:hover {
        background: var(--bg-light);
    }

.trend-rank {
    font-family: 'Space Grotesk',sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--ink-faint);
}

.trend-row:nth-child(1) .trend-rank, .trend-row:nth-child(2) .trend-rank, .trend-row:nth-child(3) .trend-rank {
    background: var(--grad-prism);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.trend-title {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
}

    .trend-title .tag {
        font-family: 'JetBrains Mono',monospace;
        font-size: 10px;
        color: var(--violet);
        display: block;
        margin-bottom: 5px;
        letter-spacing: 0.06em;
    }

.trend-reads {
    font-family: 'JetBrains Mono',monospace;
    font-size: 11.5px;
    color: var(--ink-faint);
    text-align: right;
}

/* ============ MARKETS DATA TABLE ============ */
.data-table {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
}

.dt-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 14px;
    align-items: center;
    padding: 15px 24px;
    border-bottom: 1px solid var(--line);
    font-size: 13px;
}

    .dt-row.head {
        background: var(--bg-light);
        font-family: 'JetBrains Mono',monospace;
        font-size: 10.5px;
        color: var(--ink-faint);
        letter-spacing: 0.06em;
        text-transform: uppercase;
    }

    .dt-row:last-child {
        border-bottom: none;
    }

.dt-name {
    font-weight: 600;
    color: var(--ink);
}

    .dt-name span {
        display: block;
        font-size: 11px;
        color: var(--ink-faint);
        font-weight: 400;
        font-family: 'JetBrains Mono',monospace;
    }

.dt-val {
    font-family: 'JetBrains Mono',monospace;
    font-weight: 600;
}

.dt-chg {
    font-family: 'JetBrains Mono',monospace;
    display: flex;
    align-items: center;
    gap: 5px;
}

    .dt-chg.up {
        color: var(--up);
    }

    .dt-chg.down {
        color: var(--down);
    }

.spark {
    width: 90px;
    height: 26px;
}

/* ============ SHOP / REPORTS (ecommerce) ============ */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 18px;
}

.shop-card {
    background: var(--bg-white);
    border: 1px solid var(--line);
    border-radius: 4px;
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

    .shop-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 16px 32px rgba(18,20,40,0.09);
    }

.shop-media {
    height: 140px;
    position: relative;
}

.shop-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    font-family: 'JetBrains Mono',monospace;
    font-size: 9px;
    background: var(--grad-prism);
    color: #fff;
    padding: 3px 8px;
    border-radius: 2px;
    z-index: 2;
    letter-spacing: .06em;
}

.shop-body {
    padding: 16px 18px 18px;
}

    .shop-body h5 {
        font-size: 14px;
        margin-bottom: 8px;
        line-height: 1.35;
    }

.shop-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 10px;
}

    .shop-price .now {
        font-family: 'Space Grotesk',sans-serif;
        font-weight: 700;
        font-size: 16px;
    }

    .shop-price .was {
        font-size: 12px;
        color: var(--ink-faint);
        text-decoration: line-through;
    }

/* ============ NEWSLETTER (dark gradient band) ============ */
.news-cta {
    position: relative;
    background: var(--bg-dark);
    padding: 70px 0;
    overflow: hidden;
    text-align: center;
}

    .news-cta::before {
        content: '';
        position: absolute;
        left: 50%;
        top: 50%;
        width: 640px;
        height: 640px;
        background: var(--grad-prism);
        clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
        opacity: 0.14;
        transform: translate(-50%,-50%);
    }

    .news-cta h2 {
        font-size: 32px;
        margin-bottom: 12px;
        position: relative;
        color: var(--text-on-dark);
    }

    .news-cta p {
        color: var(--text-on-dark-dim);
        font-size: 14.5px;
        margin-bottom: 30px;
        position: relative;
    }

.news-form {
    display: flex;
    justify-content: center;
    gap: 10px;
    position: relative;
    max-width: 440px;
    margin: 0 auto;
}

    .news-form input {
        flex: 1;
        background: #12162A;
        border: 1px solid var(--line-dark-strong);
        color: var(--text-on-dark);
        padding: 13px 16px;
        font-size: 13.5px;
        font-family: 'Inter',sans-serif;
        border-radius: 3px;
    }

        .news-form input::placeholder {
            color: var(--text-on-dark-faint);
        }

.news-fine {
    font-family: 'JetBrains Mono',monospace;
    font-size: 10px;
    color: var(--text-on-dark-faint);
    margin-top: 16px;
    position: relative;
    letter-spacing: .04em;
}

/* ============ FOOTER (dark) ============ */
footer {
    background: var(--bg-dark);
    border-top: 1px solid var(--line-dark);
    padding: 60px 0 28px;
}

.foot-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(4,1fr);
    gap: 36px;
    margin-bottom: 48px;
}

.foot-brand p {
    font-size: 13px;
    color: var(--text-on-dark-dim);
    line-height: 1.6;
    margin: 14px 0 18px;
    max-width: 250px;
}

.foot-social {
    display: flex;
    gap: 10px;
}

    .foot-social .icon-btn {
        border-color: var(--line-dark-strong);
        color: var(--text-on-dark-dim);
    }

        .foot-social .icon-btn:hover {
            color: var(--cyan);
            border-color: var(--cyan);
            background: transparent;
        }

.foot-col h5 {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-on-dark-faint);
    margin-bottom: 14px;
    font-family: 'JetBrains Mono',monospace;
    font-weight: 500;
}

.foot-col a {
    display: block;
    font-size: 13px;
    color: var(--text-on-dark-dim);
    margin-bottom: 11px;
    transition: color .2s ease;
}

    .foot-col a:hover {
        color: var(--text-on-dark);
    }

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
    border-top: 1px solid var(--line-dark);
    font-size: 11.5px;
    color: var(--text-on-dark-faint);
    flex-wrap: wrap;
    gap: 12px;
}

/* ============ RESPONSIVE ============ */
@media (max-width:1080px) {
    .desk-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(2,1fr);
    }

    .studio-grid {
        grid-template-columns: 1fr;
    }

    .news-main-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width:960px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .sec-desc {
        display: none;
    }

    .dt-row {
        grid-template-columns: 1.6fr 1fr 1fr;
    }

        .dt-row .spark {
            display: none;
        }
}

@media (max-width:720px) {
    .wrap {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero-title {
        font-size: 34px;
    }

    .hero-stats {
        flex-wrap: wrap;
        row-gap: 16px;
    }

    .desk-grid {
        grid-template-columns: 1fr;
    }

    .shop-grid {
        grid-template-columns: 1fr 1fr;
    }

    .trend-row {
        grid-template-columns: 32px 1fr;
        row-gap: 6px;
    }

    .trend-reads {
        grid-column: 2;
        text-align: left;
    }

    .foot-grid {
        grid-template-columns: 1fr 1fr;
    }

    .news-form {
        flex-direction: column;
    }

    .car-card {
        flex: 0 0 82vw;
    }
}
