* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
    background:#000;
}
body {
    margin:0;
    padding:0;
    background:#000;
    color:#fff;
    font-family: "Inter", sans-serif;
    overflow-x:hidden;
    -webkit-font-smoothing:antialiased;
    transition: all 300ms;
    opacity: 1;
    transition: all 300ms;
}
body.is-loaded {
    opacity:1;
}
body.is-leaving {
    opacity:0;
}
@media (prefers-reduced-motion: reduce){
    body {
        opacity:1;
        transition: none;
    }
}
a {
    color:inherit;
    text-decoration: none;
}
button, input {
    font-family: inherit;
}
button {
    border:none;
    cursor: pointer;
}
img {
    display:block;
    max-width: 100%;
}
.visually-hidden {
    position:absolute;
    width:1px;
    height: 1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border:0;
}

#header {
    position:fixed;
    top:0;
    left:0;
    z-index:100;
    width:100%;
    height:72px;
    background:rgba(0,0,0,0.94);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid #222;
    display:flex;
    align-items: center;
    justify-content: space-between;
    padding:0 18px;
}

#brand {
    font-size:24px;
    font-weight:900;
    letter-spacing: -0.035em;
    margin:0;
    color:#ef6f6c;
}

#desktop-nav {
    display:none;
    align-items: center;
    gap:26px;
}
#desktop-nav a {
    font-size:14px;
    font-weight: 800;
    letter-spacing: -0.015em;
}
#desktop-nav a:hover {
    border-bottom: 2px solid #000;
}

#header-actions {
    display:flex;
    align-items: center;
    gap:10px;
}
.black-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background:#ef6f6c;
    color:#fff;
    border-radius: 999px;
    padding:10px 16px;
    font-size:13px;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.black-button:active {
    transform: scale(0.97);
}

#menu-toggle {
    width:42px;
    height:42px;
    background:#000;
    color:#fff;
    border-radius: 999px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:4px;
}

#menu-toggle span {
    width:17px;
    height:2px;
    background:#ef6f6c;
    border-radius: 2px;
    display:block;
}

#mobile-menu {
    position:fixed;
    top:72px;
    left:0;
    z-index:90;
    width:100%;
    background:#000;
    border-bottom:1px solid #e8e8e8;
    padding:20px 18px 24px;
    transform: translateY(-130%);
    transition: transform 0.28s ease;
    box-shadow: 0 5px 5px rgba(0,0,0,0.8);
}
#mobile-menu.open {
    transform: translateY(0);
}

#search-box {
    width:100%;
    height:48px;
    border:1px solid #222;
    color:#fff;
    background:rgba(0,0,0,1);
    border-radius: 999px;
    padding:0 18px;
    font-size:15px;
    outline: none;
    margin-bottom: 20px;
}

#search-box:focus, .sidebar-search input:focus, .desktop-search input:focus {
    border-color: #222;
}

#mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap:4px;
}
#mobile-menu nav a {
    font-size:22px;
    font-weight: 800;
    letter-spacing: -0.035em;
    padding:13px 0;
    border-bottom: 1px solid #eee;
}

main {
    width:100%;
    max-width: 1240px;
    margin:0 auto;
    padding:96px 18px 40px;
}


.article-label {
    display:inline-flex;
    align-items: center;
    background: #000;
    color:#fff;
    border-radius: 999px;
    padding:7px 12px;
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 16px;
}

.section-title {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin: 8px 0 16px;
}

.section-title h2 {
    margin:0;
    font-size: 30px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.section-title a {
    font-size: 13px;
    font-weight: 800;
    border-bottom: 1px solid #000;
}

footer {
    margin-top:48px;
    padding-top:24px;
    border-top:1px solid #222;
    color:#666;
    font-size:13px;
    line-height: 1.5;
}

.home-page #hero-article {
    position:relative;
    width:100%;
    min-height:480px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 28px;
    box-shadow: 0 5px 5px rgba(0,0,0,0.16);
    background:#111;
}
.home-page .hero-image {
    position:absolute;
    inset: 0;
    width:100%;
    height:100%;
    object-fit: cover;
}
.home-page .hero-overlay {
    position:absolute;
    inset:0;
    background:
        linear-gradient(
            to bottom,
            rgba(0,0,0,0.05) 0%,
            rgba(0,0,0,0.16) 42%,
            rgba(0,0,0,0.84) 100%
        );
}
.home-page .hero-content {
    position: absolute;
    left:20px;
    right:20px;
    bottom:22px;
    color:#fff;
}

.home-page #hero-article .article-label {
    background:#ef6f6c;
    color:#fff;
}

.home-page #hero-article h1 {
    margin:0 0 14px;
    font-size: clamp(34px, 10vw, 56px);
    line-height: 1.02;
    font-weight: 850;
    letter-spacing: -0.05em;
    max-width: 780px;
}

.home-page #hero-article p {
    margin:0 0 20px;
    font-size:15px;
    line-height: 1.5;
    color: rgba(255,255,255,0.88);
    max-width: 92%;
}

.read-button {
    display:inline-flex;
    background: #fff;
    color:#000;
    border-radius: 999px;
    padding:12px 17px;
    font-size:13px;
    font-weight: 800;
}

.home-page #article-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}

.article-card {
    display:grid;
    grid-template-columns: 112px 1fr;
    gap:15px;
    padding:12px;
    border:1px solid #222;
    border-radius: 10px;
    background:#000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor:pointer;
}

.article-card:active {
    transform: scale(0.985);
}
.article-card:hover {
    box-shadow: 0 5px 5px rgba(0,0,0,0.08);
}
.article-image {
    width:112px;
    height:112px;
    border-radius: 7px;
    object-fit: cover;
    background:#eee;
}
.article-copy {
    display:flex;
    flex-direction: column;
    justify-content: space-between;
    min-width: 0;
}
.article-meta {
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color:#777;
    margin-bottom: 8px;
}
.article-card h3 {
    margin:0;
    font-size:19px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.article-card p {
    margin:9px 0 0;
    font-size:13px;
    line-height: 1.35;
    color:#666;
}
.article-link {
    margin-top: 13px;
    font-size:12px;
    font-weight: 800;
}
.desktop-search {
    margin-top:28px;
}
.desktop-search input {
    width:100%;
    height:52px;
    border:1px solid #d8d8d8;
    border-radius: 999px;
    padding:0 18px;
    font-size:15px;
    outline:none;
    background:#fff;
}

.desktop-tag-list {
    display:flex;
    flex-wrap: wrap;
    gap:10px;
    margin-top:26px;
}

.desktop-tag-list a {
    background:#ef6f6c;
    color:#fff;
    border-radius: 999px;
    padding:9px 13px;
    font-size:12px;
    font-weight: 800;
}

.article-page .article-shell {
    display:grid;
    grid-template-columns: 1fr;
    gap:26px;
}

.article-page .article-header {
    min-width: 0;
}

.breadcrumb {
    display:flex;
    flex-wrap: wrap;
    gap:7px;
    margin-bottom: 24px;
    color:#666;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
}

.breadcrumb a {
    border-bottom: 1px solid #bbb;
}

.article-page .article-header h1 {
    margin:0;
    max-width: 100%;
    font-size: clamp(38px, 12vw, 58px);
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.055em;
    overflow-wrap: anywhere;
    word-break: normal;
}

.article-standfirst {
    margin:18px 0 0;
    max-width: 760px;
    color:#222;
    font-size:18px;
    line-height: 1.42;
    letter-spacing: -0.02em;
    font-weight: 500;
}

.article-meta-row span {
    display:inline-flex;
    align-items: center;
    white-space: nowrap;
}
.hero-media {
    overflow:hidden;
    border-radius: 10px;
    background:#111;
    box-shadow:0 5px 5px rgba(0,0,0,0.14);
}
.hero-media img {
    width:100%;
    height:330px;
    object-fit: cover;
}
.image-caption {
    margin:10px 0 0;
    color:#777;
    font-size:12px;
    line-height: 1.4;
}
.content-layout {
    display:grid;
    grid-template-columns: 1fr;
    gap:34px;
    margin-top: 4px;
}

.article-body {
    max-width: 760px;
    min-width: 0;
}

.article-body p {
    margin:0 0 23px;
    color:#151515;
    font-size:17px;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.article-body h2 {
    margin:42px 0 16px;
    font-size:31px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -0.05em;
}

.article-body h3 {
    margin:34px 0 14px;
    font-size:23px;
    line-height:1.08;
    font-weight:850;
    letter-spacing: -0.04em;
}

.article-body blockquote {
    margin:38px 0;
    padding:22px;
    border-left:5px solid #000;
    background:#fafafa;
    border-radius: 10px;
    color:#000;
    font-size:22px;
    line-height:1.24;
    font-weight:800;
    letter-spacing: -0.035em;
}

.article-body ul, 
.article-body ol {
    margin:0 0 28px;
    padding-left:22px;
    color:#151515;
    font-size:17px;
    line-height: 1.65;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body a {
    font-weight:800;
    border-bottom: 2px solid #000;
}

.article-divider {
    height:1px;
    background:#e8e8e8;
    margin:42px 0;
}

.article-tags a {
    display:inline-flex;
    background:#000;
    color:#fff;
    border-radius: 999px;
    padding:9px 13px;
    font-size:12px;
    font-weight: 800;
}

.article-sidebar {
    display:none;
}

.sidebar-card {
    border-radius: 10px;
    padding:22px;
    background: #000;
}

.sidebar-card + .sidebar-card {
    margin-top:16px;
}

.sidebar-card h2 {
    margin:0 0 14px;
    font-size:22px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.sidebar-card p {
    margin:0;
    color:#555;
    font-size:14px;
    line-height: 1.5;
}

.sidebar-search {
    margin-top: 16px;
}

.sidebar-search input {
    width:100%;
    height:48px;
    border:1px solid #222;
    border-radius: 999px;
    padding:0 16px;
    font-size:14px;
    outline:none;
    background:#000;
}

.related-list {
    display:grid;
    gap:14px;
}

.related-item {
    display:grid;
    grid-template-columns: 78px 1fr;
    gap:12px;
    align-items: start;
}

.related-item img {
    width:78px;
    height:78px;
    object-fit: cover;
    border-radius: 7px;
}

.related-item h3 {
    margin:0;
    font-size:15px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.related-item span {
    display: block;
    margin-top:6px;
    color:#777;
    font-size:11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.more-section {
    margin-top:48px;
    padding-top:28px;
    border-top:1px solid #e8e8e8;
}

.more-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}
.more-card {
    display: grid;
    grid-template-columns: 112px 1fr;
    gap:15px;
    padding:12px;
    border:1px solid #e9e9e9;
    border-radius: 10px;
    background:#fff;
}

.more-card img {
    width:112px;
    height:112px;
    border-radius: 7px;
    object-fit: cover;
    background:#eee;
}

.more-card h3 {
    margin:0;
    font-size:12px;
    line-height: 1.12;
    font-weight: 800;
    letter-spacing: -0.035em;
}

.more-card p {
    margin:9px 0 0;
    font-size:12px;
    line-height: 1.35;
    color:#666;
}
.more-meta {
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color:#777;
    margin-bottom:8px;
}
@media (max-width:400px){
    body {
        background: #000;
    }
    .desktop-side-panel h2 {
        display:none;
    }  
    
    #subline {
        display: none;
    }  

    .desktop-tag-list {
        display:none;
    }
    #latest-research {
        display:none;
    }
}
@media (max-width:390px) {
    .desktop-side-panel h2 {
        display:none;
    }
    body {
        background:#000;
    }
    main {
        padding-left:14px;
        padding-right:14px;
    }
    #subline {
        display: none;
    }
    .desktop-tag-list {
        display:none;
    }
    .article-page .article-header h1 {
        font-size: clamp(34px, 11vw, 44px);
        letter-spacing: -0.05em;
    }
    .article-standfirst {
        font-size:17px;
    }
    .hero-media img {
        height:300px;
    }
    .more-card {
        grid-template-columns: 96px 1fr;
    }
    .more-card img {
        width: 96px;
        height:96px;
    }
}
@media (min-width:720px){
    #header {
        padding:0 28px;
    }
    main {
        padding:108px 28px 56px;
    }
    .home-page #hero-article {
        min-height:580px;
    }
    .home-page .hero-content {
        left:34px;
        right:34px;
        bottom:34px;
    }
    .home-page #hero-article p {
        max-width: 560px;
        font-size:17px;
    }
    .home-page #article-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .article-card {
        grid-template-columns: 132px 1fr;
    }
    .article-image {
        width:132px;
        height:132px;
    }
    .article-page .article-header h1 {
        font-size:clamp(62px, 9vw, 104px);
        line-height: 0.96;
    }
    .article-standfirst {
        font-size:24px;
    }
    .hero-media img {
        height:min(70vh, 720px);
    }
    .more-grid {
        grid-template-columns: repeat(2,1fr);
    }
}














/*#################### this is where you got up to≈ line 576 */

@media (min-width:1024px){
    #header {
        height:82px;
        padding:0 48px;
    }
    #brand {
        font-size:21px;
    }
    #desktop-nav {
        display:flex;
    }
    #menu-toggle {
        display: none;
    }
    .black-button {
        padding:12px 20px;
        font-size:14px;
    }
    main {
        max-width: 1320px;
        padding:124px 48px 72px;
    }
    .section-title {
        margin-bottom: 22px;
    }
    .section-title h2 {
        font-size:42px;
    }
    .home-page .desktop-lead-layout {
        display:grid;
        grid-template-columns: minmax(0,1.45fr) minmax(320px, 0.75fr);
        gap:24px;
        align-items: stretch;
        margin-bottom: 44px;
    }
    .home-page #hero-article {
        min-height: 680px;
        margin-bottom: 0;
    }
    .home-page .hero-content {
        left:44px;
        right:44px;
        bottom:44px;
    }
    .home-page #hero-article h1 {
        font-size:clamp(58px, 6vw, 86px);
        line-height: 1;
        letter-spacing: -0.055em;
        max-width: 880px;
    }
    .home-page #hero-article p {
        font-size:18px;
        max-width: 620px;
    }
    .home-page .desktop-side-panel {
        display:flex;
        flex-direction: column;
        justify-content: space-between;
        border:1px solid #222;
        border-radius: 10px;
        padding:28px;
        background:#010101;
    }
    .home-page .desktop-side-panel h2 {
        margin:0;
        font-size:48px;
        line-height: 1;
        font-weight: 850;
        letter-spacing: -0.055em;
    }
    .home-page .desktop-side-panel p {
        margin:18px 0 0;
        color:#555;
        font-size:16px;
        line-height: 1.5;
    }
    .home-page #article-grid {
        grid-template-columns: repear(4,1fr);
        gap:18px;
    }
    .article-card {
        display:flex;
        flex-direction: column;
        gap:16px;
        padding:14px;
        border-radius: 10px;
    }
    .article-image {
        width:100%;
        height:220px;
        border-radius: 7px;
    }
    .article-card h3 {
        font-size:24px;
        line-height: 1.08;
    }
    .article-card p {
        font-size:14px;
        line-height: 1.45;;
    }
    .article-page, .article-shell {
        gap:34px;
    }
    .article-page .article-header {
        display:grid;
        grid-template-columns: minmax(0,1.35fr) minmax(300px, 0.65fr);
        gap:40px;
        align-items: end;
    }
    .article-page .article-header h1 {
        max-width: 960px;
        font-size:clamp(76px, 7.4vw, 122px);
        line-height: 0.94;
    }
    .article-standfirst {
        margin-top:0;
        font-size:22px;
        line-height: 1.45;
    }
    .article-meta-row {
        grid-column: 1 / -1;
        font-size:13px;
    }
    .content-layout {
        grid-template-columns: minmax(0, 760px) 320px;
        gap:72px;
        align-items: start;
    }
    .article-sidebar {
        display: block;
        position:sticky;
        top:110px;
    }
    .article-body p {
        font-size:19px;
    }
    .article-body h2 {
        font-size:42px;
    }
    .article-body blockquote {
        font-size:30px;
        padding:30px;
    }
    .more-section {
        margin-top:68px;
    }
    .more-grid {
        grid-template-columns: repeat(3,1fr);
        gap:18px
    }
    .more-card {
        display:flex;
        flex-direction: column;
        gap:16px;
        padding:14px;
    }
    .more-card img {
        width:100%;
        height:220px;
    }
    .more-card h3 {
        font-size:24px;
        line-height: 1.08;
    }
    .more-card p {
        font-size:14px;
        line-height: 1.45;
    }
    footer {
        margin-top:64px;
    }
}

@media (min-width: 1440px){
    main {
        max-width: 1440px;
    }
    .home-page #hero-article {
        min-height: 720px;
    }
    .home-page #article-grid {
        gap:22px;
    }
    .content-layout {
        grid-template-columns: minmax(0, 780px) 340px;
    }
}

.report-page main {
    max-width: 1320px;
}
.report-hero {
    display:grid;
    grid-template-columns: 1fr;
    gap:24px;
    margin-bottom: 28px;
}

.company-kicker {
    display:flex;
    flex-wrap: wrap;
    gap:10px;
    margin-bottom: 18px;
}

.company-kicker span {
    display:inline-flex;
    align-items: center;
    background:#ef6f6c;
    color:#fff;
    border-radius: 999px;
    padding:7px 12px;
    font-size:11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.company-title-block h1 {
    margin:0;
    font-size:clamp(46px, 13vw, 76px);
    line-height: 0.96;
    font-weight:850;
    letter-spacing: -0.065em;
}

.company-title-block p {
    margin:18px 0 0;
    max-width: 760px;
    color:#fff;
    font-size:18px;
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.company-meta-grid {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:12px;
}

.company-meta-card {
    border:1px solid #222;
    border-radius: 10px;
    padding:16px;
    background: #000;
}

.company-meta-card span {
    display:block;
    margin-bottom:7px;
    color:#fff;
    font-size:11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.company-meta-card strong {
    display:block;
    color:#fff;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.report-nav-wrapper {
    position:sticky;
    top:72px;
    z-index:80;
    margin:0 -18px 28px;
    padding:12px 18px 10px;
    background:rgba(0,0,0,0.94);
    backdrop-filter: blur(18px);
    border-top:1px solid #222;
    border-bottom: 1px solid #222;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

.report-nav-wrapper::-webkit-scrollbar {
    height:4px;
}
.report-nav-wrapper::-webkit-scrollbar-track {
    background:transparent;
}

.report-nav-wrapper::-webkit-scrollbar-thumb {
    background:#000;
    border-radius: 999px;
}
.report-nav-wrapper::-webkit-scrollbar-thumb:hover {
    background:#333;
}
.report-nav {
    display:flex;
    gap:8px;
    min-width: max-content;
    padding-bottom: 4px;
}

.report-nav a {
    display:inline-flex;
    align-items: center;
    border:1px solid #222;
    border-radius: 999px;
    padding:9px 13px;
    font-size:12px;
    font-weight:800;
    color:#fff;
    background:#010101;
}

.report-nav a.active,
.report-nav a:hover {
    background:#ef6f6c;
    color:#fff;
    border-color: #ef6f6c;
}
.report-layout {
    display:grid;
    grid-template-columns: 1fr;
    gap:24px;
}

.report-main {
    min-width:0;
}

.report-sidebar {
    display:none;
}

.report-section {
    border-radius: 10px;
    padding:18px;
    background:#000;
    margin-bottom: 18px;
}
.report-section.black {
    background:#000;
    color:#fff;
}

.report-section-header {
    display:flex;
    align-items: end;
    justify-content: space-between;
    gap:16px;
    margin-bottom:16px;
}

.report-section-header h2 {
    margin:0;
    font-size:28px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.report-section-header a {
    font-size:13px;
    font-weight: 800;
    border-bottom:1px solid currentColor;
}

.report-section p {
    color:#fff;
    font-size:15px;
    line-height:1.55;
    margin:0 0 16px;
    text-align: justify;
    display: inline-block;
}

.report-section.black p {
    color:#fff;
}

.metric-grid {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:12px;
}
.metric-card {
    border:1px solid #222;
    border-radius: 10px;
    padding:16px;
    background:#000;
}
.metric-grid span {
    display:block;
    margin-bottom:8px;
    color:#777;
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    width:100%;
}
.metric-card strong {
    display:block;
    font-size:28px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: -0.055em;
}

.metric-card small {
    display:block;
    margin-top:7px;
    color:#666;
    font-size:12px;
    line-height: 1.35;
}

.chart-placeholder {
    min-height:260px;
    border:1px solid #e8e8e8;
    border-radius:10px;
    background:
        linear-gradient(to right, #f4f4f4 1px, transparent 1px),
        linear-gradient(to bottom, #f4f4f4 1px, transparent 1px);
    background-size:42px 42px;
    position:relative;
    overflow: hidden;
}

.chart-placeholder::after {
    content: "";
    position:absolute;
    left:24px;
    right:24px;
    bottom:40px;
    height:46%;
    background:
        linear-gradient(135deg, transparent 0%, transparent 12%, #000 12%, #000 15%, transparent 15%),
        linear-gradient(45deg, transparent 0%, transparent 22%, #000 22%, #000 25%, transparent 25%);
    opacity:0.9;
}

.chart-caption {
    margin-top:10px;
    color:#777;
    font-size:12px;
    line-height: 1.4;
}

.module-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
}

.module-card {
    display:block;
    border:1px solid #222;
    border-radius: 10px;
    padding:18px;
    background:#000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.module-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 5px rgba(0,0,0,0.08);
}

.module-card span {
    display:block;
    margin-bottom:10px;
    color:#777;
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.module-card h3 {
    margin:0;
    font-size:22px;
    line-height: 1.06;
    font-weight: 850;
    letter-spacing: -0.045em;
}
.module-card p {
    margin:10px 0 0;
    color:#555;
    font-size:14px;
    line-height: 1.45;
}

.report-table-wrapper {
    overflow-x:auto;
    border:1px solid #222;
    border-radius: 10px;
}
.report-table {
    width:100%;
    border-collapse: collapse;
    min-width: 620px;
}
.report-table th,
.report-table td {
    padding:13px 14px;
    border-bottom: 1px solid #222;
    text-align: left;
    font-size: 13px;
}

.report-table th {
    background:#000;
    font-size:11px;
    font-weight:800;
    color:#fff;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.report-table td {
    color:#fff;
    font-weight: 650;
}

.report-table tr:last-child td {
    border-bottom: none;
}

.news-list {
    display:grid;
    grid-template-columns: 1fr;
    gap:14px
}
.news-card {
    display:grid;
    grid-template-columns: 96px 1fr;
    gap:14px;
    padding:12px;
    border:1px solid #222;
    border-radius:10px;
    background:#000;
}
.news-card img {
    width:96px;
    height:96px;
    object-fit: cover;
    border-radius: 7px;
}
.news-card span {
    display:block;
    margin-bottom:8px;
    color:#777;
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.news-card h3 {
    margin:0;
    font-size:18px;
    line-height: 1.12;
    font-weight: 850;
    letter-spacing: -0.035em;
}
.news-card p {
    margin:8px 0 0;
    color:#555;
    font-size:13px;
    line-height: 1.4;
}
.sidebar-link-list {
    display:grid;
    gap:10px;
}
.sidebar-link-list a {
    display:flex;
    justify-content: space-between;
    gap:14px;
    padding:12px 0;
    border-bottom: 1px solid #e8e8e8;
    font-size:14px;
    font-weight:800;
}

.sidebar-link-list a:last-child {
    border-bottom: none;
}
.sidebar-link-list span {
    color:#777;
}

.disclaimer-note {
    margin-top:18px;
    color: #777;
    font-size:12px;
    line-height: 1.45;
}

@media(min-width:720px) {
    .company-meta-grid {
        grid-template-columns: repeat(4,1fr);
    }
    .metric-grid {
        grid-template-columns: repeat(4,1fr);
    }
    .module-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .news-list {
        grid-template-columns: repeat(2,1fr);
    }
    .report-nav-wrapper {
        margin-left:-28px;
        margin-right:-28px;
        padding-left:28px;
        padding-right:28px;
    }
}
@media(min-width:1024px){
    .report-page main {
        padding-top:124px;
    }
    .report-hero {
        grid-template-columns: minmax(0,1.35fr) minmax(360px, 0.65fr);
        gap:34px;
        align-items: end;
        margin-bottom: 34px;
    }
    .company-title-block h1 {
        font-size: clamp(76px, 7vw, 118px);
        line-height: 0.92;
    }
    .company-title-block p {
        font-size:21px;
        line-height: 1.45;
    }
    .report-nav-wrapper {
        top:82px;
        margin-left:-48px;
        margin-right:-48px;
        padding-left:48px;
        padding-right:48px;
    }
    .report-layout {
        grid-template-columns: minmax(0,1fr) 320px;
        gap:24px;
        align-items: start;
    }
    .report-sidebar {
        display:block;
        position:sticky;
        top:152px;
    }
    .report-section {
        padding:18px;
        margin-bottom:24px;
    }
    .report-section-header h2 {
        font-size:38px;
    }
    .module-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .news-list {
        grid-template-columns: repeat(3,1fr);
    }
    .news-card {
        display:flex;
        flex-direction: column;
    }
    .news-card img {
        width:100%;
        height:170px;
    }
}
/* line 1615 */
.report-module-page main {
    max-width: 1320px;
}
.module-hero {
    display:grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 28px;
}

.module-title-block {
    min-width: 0;
}
.module-title-block h1 {
    margin:0;
    font-size: clamp(42px,12vw,72px);
    line-height: 0.96;
    font-weight: 850;
    letter-spacing: -0.065em;
    overflow-wrap: anywhere;
}
.module-title-block p {
    margin:18px 0 0;
    max-width: 760px;
    color:#fff;
    font-size:18px;
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.module-context-panel {
    border-radius: 10px;
    padding:18px;
    background:#000;
}

.module-context-panel h2 {
    margin:0 0 14px;
    font-size:24px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.module-context-panel p {
    margin:0;
    color:#555;
    font-size:14px;
    line-height: 1.5;
}

.module-meta-list {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:11px;
    margin-top: 18px;
}

.module-meta-item {
    border:1px solid #222;
    border-radius:10px;
    padding:13px;
    background:#000;
}
.module-meta-item span {
    display:block;
    margin-bottom: 6px;
    color:#fff;
    font-size:10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.module-meta-item strong {
    display:block;
    color:#fff;
    font-size:16px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.03em;
}

.module-content-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:24px;
}

.module-main {
    min-width: 0;
}

.module-sidebar {
    display: none;
}
.insight-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:12px;
}

.insight-card {
    border:1px solid #222;
    border-radius: 10px;
    padding:16px;
    background:#000;
}

.insight-card span {
    display:block;
    margin-bottom: 8px;
    color:#fff;
    font-size:11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.insight-card strong {
    display:block;
    color:#fff;
    font-size:22px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.insight-card p {
    margin:9px 0 0;
    color:#555;
    font-size:13px;
    line-height: 1.45;
}

.report-copy {
    max-width: 820px;
}

.report-copy p {
    margin:0 0 20px;
    color:#fff;
    font-size:17px;
    line-height: 1.68;
    letter-spacing: -0.01em;
}

.report-copy h3 {
    margin:34px 0 14px;
    font-size:25px;
    line-height: 1.08;
    font-weight: 850;
    letter-spacing:  -0.045em;
}

.report-copy ul,
.report-copy ol {
    margin:0 0 24px;
    padding-left:22px;
    color:#151515;
    font-size:16px;
    line-height: 1.6;
}

.report-copy li {
    margin-bottom: 9px;
}

.report-callout {
    margin:24px;
    padding:20px;
    border-left: 5px solid #000;
    border-radius: 10px;
    background:#000;
}

.report-callout strong {
    display:block;
    margin-bottom: 8px;
    font-size:18px;
    line-height: 1.1;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.report-callout p {
    margin:0;
    color:#fff;
    font-size:15px;
    line-height: 1.5;
}

.chart-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}
.chart-card {
    border:1px solid #222;
    border-radius: 10px;
    padding:16px;
    background:#000;
}
.chart-card h3 {
    margin:0 0 14px;
    font-size:22px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.045em;
    color:#fff;
}

.chart-card .chart-placeholder {
    min-height: 260px;
}

.chart-card p {
    margin:10px 0 0;
    color:#fff;
    font-size:12px;
    line-height: 1.4;
}

.chart-placeholder.bar-chart::after {
    content: "";
    position:absolute;
    left:26px;
    right:26px;
    bottom:34px;
    height:58%;
    background:
        linear-gradient(to top, #000 0 58%, transparent 58%),
        linear-gradient(to top, #000 0 72%, transparent 72%),
        linear-gradient(to top, #000 0 46%, transparent 46%),
        linear-gradient(to top, #000 0 84%, transparent 84%),
        linear-gradient(to top, #000 0 66%, transparent 66%);
    background-size: 15% 100%;
    background-position: 0 0, 24% 0, 48% 0, 72% 0, 96% 0;
    background-repeat: no-repeat;
    opacity: 1;
}

.chart-placeholder.line-chart::after {
    content:"";
    position:absolute;
    left:24px;
    right:24px;
    bottom:40px;
    height:50%;
    background:
        linear-gradient(135deg, transparent 0%, transparent 14%, #000 14%, #000 17%, transparent 17%),
        linear-gradient(45deg, transparent 0%, transparent 28%, #000 28%,  #000 31%, transparent 31%),
        linear-gradient(135deg, transparent 0%, transparent 48%, #000 48%, #000 51%, transparent 51%);
    opacity: 0.9;
}

.chart-placeholder.donut-chart::after {
    content:"";
    position:absolute;
    width:140px;
    height:140px;
    left:50%;
    top:50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle, #fff 0 45%, transparent 46%),
        conic-gradient(#000 0 52% #555 52% 74% #999 74% 88%, #ddd 88% 100%);
}

.table-section {
    overflow-x:auto;
}

.module-pagination {
    display:grid;
    grid-template-columns: 1fr;
    gap:12px;
    margin-top:24px;
}

.module-page-link {
    display:block;
    border:1px solid #e8e8e8;
    border-radius: 10px;
    padding:18px;
    background:#fafafa;
}

.module-page-link span {
    display:block;
    margin-bottom: 8px;
    color:#777;
    font-size:11px;
    font-weight:800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.module-page-link strong {
    display:block;
    color:#000;
    font-size:22px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.module-page-link:hover {
    background:#000;
    color:#fff;
    border-color: #000;
}

.module-page-link:hover span,
.module-page-link:hover strong {
    color:#fff;
}

.module-sidebar-card {
    border:1px solid #222;
    border-radius: 10px;
    padding:22px;
    background:#000;
}

.module-sidebar-card + .module-sidebar-card {
    margin-top:16px;
}

.module-sidebar-card h2 {
    margin:0 0 14px;
    font-size:22px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.module-sidebar-card p {
    margin:0 0 14px;
    color:#555;
    font-size:14px;
    line-height: 1.5;
}

.module-sidebar-card p:last-child {
    margin-bottom:0;
}

.module-mini-nav {
    display:grid;
    gap:0;
}

.module-mini-nav a {
    display:flex;
    justify-content: space-between;
    gap:12px;
    padding:11px 0;
    border-bottom: 1px solid #e8e8e8;
    color:#fff;
    font-size:14px;
    font-weight: 800;
}

.module-mini-nav a:last-child {
    border-bottom:none;
}

.module-mini-nav a.active {
    color:#777;
}

.source-list {
    display: grid;
    gap:9px;
}

.source-list li {
    color:#555;
    font-size:13px;
    line-height: 1.45;
}

@media (min-width: 720px) {
    .module-meta-list {
        grid-template-columns: repeat(4,1fr);
    }
    .insight-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .chart-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .module-pagination {
        grid-template-columns: repeat(2,1fr);
    }
}
@media (min-width:1024px){
    .module-hero {
        grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
        gap:34px;
        align-items: end;
        margin-bottom: 34px;
    }
    .module-title-block h1 {
        font-size: clamp(72px, 6.6vw, 112px);
        line-height: 0.92;
    }
    .module-title-block p {
        font-size:21px;
        line-height: 1.45;
    }
    .module-content-grid {
        grid-template-columns: minmax(0,1fr) 320px;
        gap:24px;
        align-items: start;
    }
    .module-sidebar {
        display:block;
        position: sticky;
        top:152px;
    }
    .report-copy p {
        font-size:18px;
        color:#fff;
    }
    .report-copy ul,
    .report-copy ol {
        font-size: 17px;
    }
    .insight-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .chart-card .chart-placeholder {
        min-height: 320px;
    }
}
.chart-canvas-wrap {
    position:relative;
    width:100%;
    height:280px;
    border:1px solid var(--line, #e8e8e8);
    border-radius: var(--radius, 10px);
    padding:16px;
    background:#000;
    background-size:42px 42px;
    overflow: hidden;
}
.chart-canvas-wrap canvas {
    width:100% !important;
    height:100% !important;
}

@media (min-width: 1024px){
    .chart-canvas-wrap {
        height:320px;
    }
}
.chart-canvas-wrap {
    position:relative;
    width:100%;
    height:280px;
    border:1px solid var(--line, #222);
    padding:16px;
    background:#000;
    background-size:42px 42px;
    overflow: hidden;
}
.overview-chart-wrap {
    height:330px;
}

@media (min-width:1024px){
    .chart-canvas-wrap {
        height:320px;
    }
    .overview-chart-wrap {
        height:380px;
    }
}

.companies-page main {
    max-width:var(--max-page, 1320px);
}
.companies-hero {
    display:grid;
    grid-template-columns: 1fr;
    gap:24px;
    margin-bottom: 28px;
}

.companies-title-block h1 {
    margin:0;
    font-size:clamp(48px, 13vw, 88px);
    line-height: 0.94;
    font-weight: 850;
    letter-spacing: -0.065em;
}

.companies-title-block p {
    margin:18px 0 0;
    max-width: 760px;
    color:#333;
    font-size:18px;
    line-height: 1.5;
    letter-spacing: -0.018em;
}

.companies-search-panel {
    border:1px solid var(--line, #222);
    border-radius: var(--radius, 10px);
    padding:18px;
    background:var(--panel, #000);
}

.companies-search-panel h2 {
    margin:0 0 14px;
    font-size:24px;
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.companies-search-panel p {
    margin:0 0 18px;
    color:#555;
    font-size:14px;
    line-height:1.5;
}
.company-search-form {
    display:grid;
    gap:12px;
}

.company-search-form input,
.company-search-form select {
    width:100%;
    height:50px;
    border:1px solid #d8d8d8;
    border-radius:var(--radius,10px);
    padding:0 15px;
    background:#fff;
    color:#000;
    font-size:14px;
    outline:none;
}

.company-search-form input:focus,
.company-search-form select:focus {
    border-color:#000;
    box-shadow: 0 0 0 4px rgba(0,0,0,0.06);
}

.company-filter-row {
    display:grid;
    grid-template-columns: 1fr;
    gap:12px;
}

.company-directory-grid {
    display:grid;
    grid-template-columns: 1fr;
    gap:16px;
}

.company-card {
    display:grid;
    grid-template-columns: 1fr;
    gap:14px;
    border:1px solid var(--line, #222);
    border-radius:var(--radius, 10px);
    padding:16px;
    background:#000;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.company-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft, 0 5px 5px rgba(0,0,0,0.08));
}

.company-card-top {
    display:flex;
    justify-content: space-between;
    gap:14px;
    align-items: flex-start;
}

.company-card h3 {
    margin:0;
    font-size:24px;
    line-height: 1.04;
    font-weight: 850;
    letter-spacing: -0.045em;
}

.company-card p {
    margin:9px 0 0;
    color:#555;
    font-size: 14px;
    line-height: 1.45;
}

.company-ticker {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding:7px 11px;
    background: #ef6f6c;
    color:#fff;
    font-size:11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    white-space: nowrap;
}

.company-card-meta {
    display:grid;
    grid-template-columns: repeat(2,1fr);
    gap:11px;
}

.company-card-meta div {
    border:1px solid var(--line, #222);
    border-radius: var(--radius, 10px);
    padding:12px;
    background: var(--panel, #000);
}
.company-card-meta span {
    display:block;
    margin-bottom: 6px;
    color:#777;
    font-size:10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.company-card-meta strong {
    display: block;
    font-size:16px;
    line-height:1.05;
    font-weight: 850;
    letter-spacing: -0.035em;
}

.company-card-actions {
    display:flex;
    flex-wrap: wrap;
    gap:9px;
}

.company-card-actions a {
    display:inline-flex;
    align-items: center;
    border-radius: 999px;
    padding:9px 13px;
    font-size:12px;
    font-weight: 800;
    border:1px solid #e5e5e5;
}

.company-card-actions a.primary {
    background:#ef6f6c;
    color:#fff;
    border-color: #ef6f6c;
}

.company-card-actions a:hover {
    background:#000;
    color:#fff;
    border-color: #000;
}

.company-index-strip {
    display:flex;
    gap:7px;
    overflow-x:auto;
    padding:12px 0 4px;
    margin-bottom:22px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(0,0,0,0.2) transparent;
}

.company-index-strip a {
    display:inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height:34px;
    border:1px solid var(--line, #222);
    border-radius: 999px;
    background:#000;
    font-size:12px;
    font-weight: 800;
}

.company-index-strip a:hover,
.company-index-strip a.active {
    background:#ef6f6c;
    color:#fff;
    border-color: #ef6f6c;
}

.companies-note {
    margin-top: 18px;
    color:#777;
    font-size:12px;
    line-height: 1.45;
}


@media (min-width:720px) {
    .company-filter-row {
        grid-template-columns: repeat(2,1fr);
    }
    .company-directory-grid {
        grid-template-columns: repeat(2,1fr);
    }
    .company-card-meta {
        grid-template-columns: repeat(4,1fr);
    }
}

@media (min-width:1024px){
    .companies-hero {
        grid-template-columns: minmax(0,1.25fr) minmax(360px, 0.75fr);
        gap:34px;
        align-items: end;
        margin-bottom: 34px;
    }
    .companies-title-block h1 {
        font-size:clamp(76px, 7vw, 118px);
        line-height: 0.92;
    }
    .companies-title-block p {
        font-size:21px;
        line-height: 1.45;
    }
    .company-directory-grid {
        grid-template-columns: repeat(3,1fr);
    }
    .company-card-meta {
        grid-template-columns: repeat(2,1fr);
    }
}

.typing-summary {
    position:relative;
}
.typing-summary.is-preparing .type-line {
    visibility: hidden;
}

.typing-summary.is-typing .type-line,
.typing-summary.is-complete .type-line {
    visibility: visible;
}

.type-line.typing-active::after {
    content:"";
    display:inline-block;
    width:7px;
    height:1em;
    margin-left: 4px;
    background:#000;
    vertical-align: -0.12em;
    animation: typingCursorBlink 0.85s steps(2,start) infinite;
}

@keyframes typingCursorBlink {
    0%, 45% {
        opacity:1;
    }
    46%, 100% {
        opacity:0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .typing-summary.is-preparing .type-line {
        visibility: visible;
    }
    .type-line.typing-active::after {
        display:none;
    }
}

.typing-summary {
    position:relative;
}

.typing-summary.typing-summary.is-preparing .type-line,
.typing-summary.is-thinking .type-line {
    visibility: visible;
}

.thinking-indicator {
    display:inline-flex;
    align-items: center;
    gap:5px;
    margin:2px 0 16px;
    color:#555;
    font-size:12px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity:0;
    transform: translateY(4px);
    transition: 
        opacity 260ms ease,
        transform 260ms ease;
}

.typing-summary.typing-summary.is-typing .thinking-indicator,
.typing-summary.typing-summary.is-complete .thinking-indicator,
.typing-summary.typing-summary.is-preparing .thinking-indicator {
    pointer-events: none;
    opacity:0;
    transform: translateY(-2px);
}
.thinking-indicator span {
    margin-right: 3px;
}

.thinking-indicator i {
    display: block;
    width:5px;
    height:5px;
    border-radius: 999px;
    background:#000;
    opacity:0.25;
    animation: thinkingPulse 900ms ease-in-out infinite;
}

.thinking-indicator i:nth-child(2) {
    animation-delay: 120ms;
}

.thinking-indicator i:nth-child(3) {
    animation-delay: 240ms;
}

.thinking-indicator i:nth-child(4) {
    animation-delay: 360ms;
}

.type-line {
    min-height: 1.55em;
}

.type-line.typing-active::after {
    content:"";
    display:inline-block;
    width:2px;
    height:1em;
    margin-left:4px;
    background:#000;
    vertical-align: -0.12em;
    animation: typingCursorBlink 0.95s steps(2, start) infinite;
}

@keyframes thinkingPulse {
    0%, 100% {
        opacity: 0.25;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-2px);
    }
}

@keyframes typingCursorBlink {
    0%, 46% {
        opacity: 1;
    }
    47%, 100% {
        opacity: 0;
    }
}

@media (prefers-reduced-motion: reduce){
    .typing-summary.is-preparing .type-line,
    .typing-summary.is-thinking .type-line {
        visibility: visible;
    }
    .thinking-indicator,
    .type-line.typing-active::after {
        display:none !important;
    }
}
.low-opacity {
    opacity:0;
}