:root {
    --cs-green: #46CE84;
    --cs-aqua: #46CEC8;
    --cs-dark: #07100C;
    --cs-grey: #666D69;
    --cs-light: #F1F4F1;
    --cs-white: #FFFFFF;
    --cs-purple: #7F42FD;
    --cs-purple-hover: #6114FF;
    --cs-red: #EF4444;
    --cs-radius: 16px;
    --cs-radius-sm: 12px;
}

* { box-sizing: border-box; }

/* ─── Skeleton Loaders ─── */
@keyframes cs-shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

.cs-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 25%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0.3) 75%);
    background-size: 200% 100%;
    animation: cs-shimmer 1.5s ease-in-out infinite;
    border-radius: 8px;
}

.cs-skeleton--number { width: 80px; height: 36px; display: inline-block; }

.cs-hero-stat .cs-skeleton {
    background: linear-gradient(90deg, rgba(255,255,255,0.2) 25%, rgba(255,255,255,0.4) 50%, rgba(255,255,255,0.2) 75%);
    background-size: 200% 100%;
    animation: cs-shimmer 1.5s ease-in-out infinite;
}
.cs-skeleton--text { height: 16px; display: inline-block; }
.cs-skeleton--block { width: 100%; height: 80px; }

/* ─── HERO SECTION — full-width pink gradient + sparkles ─── */
.cs-hero-section {
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #fdf2f8 0%, #fce7f3 30%, #f5d0fe 60%, #e9d5ff 100%);
    width: 100% !important;
    max-width: 100% !important;
    flex: none !important;
}

.cs-sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: #f59e0b;
    opacity: 1;
    animation: cs-float 6s ease-in-out infinite;
}

.cs-sparkle:nth-child(2) { animation-delay: -1s; opacity: 0.85; }
.cs-sparkle:nth-child(3) { animation-delay: -2.5s; opacity: 0.75; }
.cs-sparkle:nth-child(4) { animation-delay: -4s; opacity: 0.9; }
.cs-sparkle:nth-child(5) { animation-delay: -3s; opacity: 0.7; }
.cs-sparkle:nth-child(6) { animation-delay: -5s; opacity: 0.8; }
.cs-sparkle:nth-child(7) { animation-delay: -1.5s; opacity: 0.65; }
.cs-sparkle:nth-child(8) { animation-delay: -3.5s; opacity: 0.6; }

@keyframes cs-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(10deg); }
}

.cs-hero-inner {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
    text-align: center;
}

/* ─── Hero Badge (like Bruqi "Honest Comparison") ─── */
.cs-hero-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 28px;
    margin-bottom: 16px;
    justify-content: center;
}

.cs-hero-badge-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.cs-hero-badge-text {
    font-family: "Matter Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    background-image: linear-gradient(0deg, rgb(127, 66, 253) 0%, rgb(97, 20, 255) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-avatar-wrap {
    position: relative;
    display: block;
    margin: 0 auto 20px;
    width: 130px;
}

.cs-avatar-shimmer {
    position: absolute;
    inset: 0;
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background: linear-gradient(90deg, rgba(255,255,255,0.3) 25%, rgba(255,255,255,0.6) 50%, rgba(255,255,255,0.3) 75%);
    background-size: 200% 100%;
    animation: cs-shimmer 1.5s ease-in-out infinite;
    z-index: 3;
    transition: opacity 0.3s;
}

.cs-avatar-wrap:not(.cs-avatar-wrap--loading) .cs-avatar-shimmer { opacity: 0; pointer-events: none; }

.cs-avatar {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--cs-white);
    box-shadow: 0 12px 40px rgba(127, 66, 253, 0.2), 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cs-avatar--loaded { opacity: 1; }

.cs-avatar-splash {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 240px;
    height: 240px;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 0;
    opacity: 0.5;
}

.cs-name {
    font-family: "Matter Medium", sans-serif;
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 500;
    color: var(--cs-dark);
    margin: 0 0 20px;
    line-height: 1.15;
    letter-spacing: -0.5px;
}

.cs-name-highlight {
    background: linear-gradient(135deg, #7f42fd, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cs-membership {
    display: inline-flex;
    align-items: center;
    margin-bottom: 10px;
}

.cs-membership img {
    height: 40px;
    width: auto;
    object-fit: contain;
    border-radius: 8px;
}

.cs-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #07100c;
    color: #fff;
    font-family: "Matter Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 24px;
    margin-bottom: 8px;
}

.cs-badge i { font-size: 13px; }

.cs-since {
    font-family: "Matter Regular", sans-serif;
    font-size: 14px;
    color: var(--cs-grey);
    margin-top: 8px;
    margin-bottom: 32px;
}

/* ─── Hero Stats (inside the gradient) ─── */
.cs-hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 680px;
    margin: 0 auto;
}

.cs-hero-stat {
    position: relative;
    background: linear-gradient(180deg, #7f42fd 0%, #6114ff 100%);
    border-radius: var(--cs-radius);
    padding: 28px 16px 24px;
    text-align: center;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(127, 66, 253, 0.3);
    overflow: hidden;
}

.cs-hero-stat__icon {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
}

.cs-hero-stat:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(127, 66, 253, 0.4); }

.cs-hero-stat__value {
    font-family: "Matter Medium", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 6px;
}

.cs-hero-stat__label {
    font-family: "Matter Regular", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.75);
}

/* ─── Improvement Card ─── */
.cs-improvement-card {
    background: linear-gradient(180deg, #46ce84 0%, #2ea865 100%);
    border-radius: var(--cs-radius);
    padding: 20px 24px;
    text-align: center;
    max-width: 400px;
    margin: 16px auto 0;
    box-shadow: 0 4px 16px rgba(46, 168, 101, 0.35);
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

.cs-improvement-card:hover { transform: translateY(-3px); }

.cs-improvement-card__icon {
    position: absolute;
    top: -2px;
    right: -2px;
    font-size: 48px;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
}

.cs-improvement-card__value {
    font-family: "Matter Medium", sans-serif;
    font-size: 28px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 4px;
}

.cs-improvement-card__label {
    font-family: "Matter Regular", sans-serif;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.8);
}

/* ─── Trust Strip ─── */
.cs-trust-strip {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.cs-trust-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 24px;
    background: linear-gradient(180deg, #7f42fd 0%, #6114ff 100%);
    color: #fff;
    font-family: "Matter Medium", sans-serif;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.15s, box-shadow 0.15s;
    box-shadow: 0 4px 16px rgba(127, 66, 253, 0.3);
}

.cs-trust-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127, 66, 253, 0.4); text-decoration: none; color: #fff; }

.cs-trust-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cs-trust-avatars {
    display: flex;
    align-items: center;
}

.cs-trust-avatars img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    object-fit: cover;
    margin-left: -8px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.cs-trust-avatars img:first-child { margin-left: 0; }

.cs-trust-avatar-count {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #fff;
    background: linear-gradient(180deg, #7f42fd 0%, #6114ff 100%);
    color: #fff;
    font-family: "Matter Medium", sans-serif;
    font-size: 9px;
    font-weight: 600;
    margin-left: -8px;
}

.cs-trust-item {
    font-family: "Matter Regular", sans-serif;
    font-size: 13px;
    color: #666d69;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cs-trust-item strong { font-family: "Matter Medium", sans-serif; color: #07100c; }

/* ─── TL;DR ─── */
.cs-tldr {
    max-width: 960px;
    margin: 0 auto;
    padding: 60px 24px;
}

.cs-tldr__inner {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.cs-tldr__left { flex-shrink: 0; }

.cs-tldr__label {
    font-family: "Matter Medium", sans-serif;
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 500;
    color: #07100c;
    line-height: 1;
    letter-spacing: -1px;
}

.cs-tldr__right { flex: 1; }

.cs-tldr__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cs-tldr__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Matter Medium", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #46CE84;
    line-height: 1.5;
}

.cs-tldr__list li i {
    color: #46CE84;
    flex-shrink: 0;
    font-size: 20px;
}

.cs-tldr__list li b {
    font-family: "Matter Medium", sans-serif;
    font-weight: 600;
    color: #46CE84;
}

/* ─── Article Paywall ─── */
.cs-article-paywall {
    position: relative;
    max-height: 400px;
    overflow: hidden;
    transition: max-height 0.6s ease;
}

.cs-article-paywall.cs-paywall--open {
    max-height: none;
}

.cs-paywall__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent 0%, rgb(241, 244, 241) 70%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    z-index: 10;
}

.cs-paywall__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(180deg, #7f42fd 0%, #6114ff 100%);
    color: #fff;
    font-family: "Matter Medium", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 24px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(127, 66, 253, 0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}

.cs-paywall__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(127, 66, 253, 0.4);
}

.cs-paywall__btn i { font-size: 14px; }

/* ─── Content Area ─── */
.cs-content {
    background: var(--cs-light);
    position: relative;
    padding-bottom: 1px;
}

.cs-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, rgb(245, 248, 245));
    pointer-events: none;
}

.cs-container {
    max-width: 960px;
    margin: 0 auto;
    padding: 48px 24px 60px;
}

/* ─── AI Summary ─── */
.cs-summary {
    background: var(--cs-white);
    border-radius: var(--cs-radius);
    padding: 28px;
    margin-bottom: 32px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.05);
    border-left: 4px solid var(--cs-purple);
    min-height: 60px;
}

.cs-summary--loaded { animation: cs-fadeIn 0.6s ease-out; }

@keyframes cs-fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

.cs-summary__text {
    font-family: "Matter Regular", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #374151;
}

.cs-summary__text b { color: var(--cs-dark); font-weight: 600; }

/* ─── Section Title ─── */
.cs-section-title {
    font-family: "Matter Medium", sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--cs-dark);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-section-title i { color: var(--cs-purple); font-size: 16px; }

/* ─── Protection Grid ─── */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 28px;
}

.cs-card {
    background: var(--cs-white);
    border-radius: var(--cs-radius-sm);
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.cs-card__icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 12px;
}

.cs-card__icon--purple { background: rgba(127, 66, 253, 0.1); color: var(--cs-purple); }
.cs-card__icon--green { background: rgba(70, 206, 132, 0.1); color: #46CE84; }
.cs-card__icon--red { background: rgba(239, 68, 68, 0.1); color: var(--cs-red); }

.cs-card__value {
    font-family: "Matter Medium", sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--cs-dark);
    line-height: 1.1;
    margin-bottom: 2px;
}

.cs-card__value--green { color: #46CE84; }

.cs-card__label {
    font-family: "Matter Regular", sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: #718096;
}

/* ─── Leaderboard ─── */
.cs-leaderboard {
    background: var(--cs-white);
    border-radius: var(--cs-radius);
    padding: 20px 24px;
    margin-top: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.cs-leaderboard__title {
    font-family: "Matter Medium", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--cs-dark);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cs-leaderboard__title i { color: #f59e0b; }

.cs-leaderboard__list { display: flex; flex-direction: column; gap: 6px; }

.cs-lb__row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f8fafc;
    transition: background 0.15s;
}

.cs-lb__row:hover { background: #f1f5f9; }

.cs-lb__row--gold {
    background: linear-gradient(135deg, #fef9c3 0%, #fef3c7 100%);
    border: 1px solid rgba(245, 158, 11, 0.15);
}

.cs-lb__row--gold:hover { background: linear-gradient(135deg, #fef08a 0%, #fde68a 100%); }

.cs-lb__medal { font-size: 20px; width: 28px; text-align: center; flex-shrink: 0; }

.cs-lb__rank {
    font-family: "Matter Medium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #94a3b8;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.cs-lb__favicon {
    width: 20px;
    height: 20px;
    border-radius: 4px;
    object-fit: contain;
    flex-shrink: 0;
}

.cs-lb__domain {
    font-family: "Matter Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--cs-dark);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.cs-lb__count {
    font-family: "Matter Medium", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--cs-purple);
    flex-shrink: 0;
    white-space: nowrap;
}

/* ─── Traffic Green Headline ─── */
.cs-traffic-headline {
    font-family: "Matter Medium", sans-serif;
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 500;
    color: #46CE84;
    text-align: center;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.cs-traffic-headline__value {
    font-weight: 600;
    font-size: 1.1em;
}


/* ─── Doxing Danger Card ─── */
.cs-dox-danger {
    background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--cs-radius);
    padding: 20px 24px;
    margin-bottom: 16px;
}

.cs-danger__header {
    font-family: "Matter Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #991b1b;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
}

.cs-danger__header i { color: #dc2626; }

.cs-danger__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.cs-danger__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.6);
}

.cs-danger__item > i {
    color: #dc2626;
    font-size: 14px;
    margin-top: 2px;
    flex-shrink: 0;
}

.cs-danger__item b {
    font-family: "Matter Medium", sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: #991b1b;
    display: block;
}

.cs-danger__item span {
    font-family: "Matter Regular", sans-serif;
    font-size: 11px;
    color: #b91c1c;
    display: block;
    margin-top: 2px;
}

/* ─── Most Wanted Threat Card ─── */
.cs-most-wanted {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #fef2f2 100%);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: var(--cs-radius);
    padding: 24px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.cs-mw__label {
    font-family: "Matter Medium", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #dc2626;
    margin-bottom: 16px;
}

.cs-mw__body { display: flex; align-items: center; gap: 20px; }

.cs-mw__favicon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    object-fit: contain;
    background: var(--cs-white);
    padding: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-shrink: 0;
}

.cs-mw__info { flex: 1; }

.cs-mw__domain {
    font-family: "Matter Medium", sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--cs-dark);
    margin-bottom: 6px;
}

.cs-mw__skulls {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
    font-size: 18px;
    color: #dc2626;
}

.cs-mw__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.cs-mw__count {
    font-family: "Matter Medium", sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #991b1b;
    background: rgba(239, 68, 68, 0.1);
    padding: 3px 10px;
    border-radius: 6px;
}

.cs-mw__cat {
    font-family: "Matter Regular", sans-serif;
    font-size: 12px;
    color: #718096;
    background: #f1f5f9;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: capitalize;
}

.cs-mw__status {
    font-family: "Matter Medium", sans-serif;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.cs-mw__status--compliant { background: rgba(70, 206, 132, 0.1); color: #46CE84; }
.cs-mw__status--delisting { background: rgba(59, 130, 246, 0.1); color: #1d4ed8; }
.cs-mw__status--resistant { background: rgba(239, 68, 68, 0.1); color: #991b1b; }

/* ─── Traffic / SERP ─── */
.cs-traffic {
    background: var(--cs-white);
    border-radius: var(--cs-radius);
    padding: 24px;
    margin-bottom: 28px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}

.cs-traffic__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.cs-traffic__title-group { display: flex; align-items: center; gap: 10px; }

.cs-traffic__google-icon {
    width: 36px; height: 36px; border-radius: 10px;
    background: rgba(70, 206, 132, 0.1);
    display: flex; align-items: center; justify-content: center;
}

.cs-traffic__google-icon i { font-size: 18px; color: #46CE84; }

.cs-traffic__title { font-family: "Matter Medium", sans-serif; font-size: 16px; font-weight: 500; color: var(--cs-dark); margin: 0; }

.cs-traffic__improvement {
    display: inline-flex; align-items: center; gap: 4px;
    background: rgba(70, 206, 132, 0.1); color: #46CE84;
    font-family: "Matter Medium", sans-serif; font-size: 13px; font-weight: 600;
    padding: 4px 10px; border-radius: 8px;
}

.cs-traffic__kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 16px; }

.cs-kpi {
    background: #f8fafc;
    border-radius: var(--cs-radius-sm);
    padding: 16px;
    position: relative;
    overflow: hidden;
}

.cs-kpi__label { font-family: "Matter Medium", sans-serif; font-size: 13px; font-weight: 500; color: var(--cs-dark); margin-bottom: 4px; }

.cs-kpi__value {
    font-family: "Matter Medium", sans-serif;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.1;
    margin-bottom: 10px;
    transition: color 0.5s;
}

.cs-kpi__bar-header { display: flex; justify-content: space-between; margin-bottom: 4px; }

.cs-kpi__bar-label {
    font-family: "Matter Regular", sans-serif;
    font-size: 10px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cs-kpi__bar-dot { width: 6px; height: 6px; border-radius: 50%; display: inline-block; }

.cs-kpi__bar {
    height: 8px;
    border-radius: 4px;
    background: rgba(253, 66, 99, 0.15);
    overflow: hidden;
}

.cs-kpi__bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1.5s ease-out;
    width: 0%;
}

.cs-kpi__watermark {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 18px;
    color: rgba(0, 0, 0, 0.05);
}

/* ─── Brand Score Tags ─── */
.cs-traffic__brands { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 12px; border-top: 1px solid #f1f5f9; }

.cs-brand {
    display: inline-flex; align-items: center; gap: 6px;
    padding: 6px 12px; border-radius: 8px;
    font-family: "Matter Regular", sans-serif; font-size: 13px; font-weight: 500;
}

.cs-brand__name { opacity: 0.8; }
.cs-brand__score { font-family: "Matter Medium", sans-serif; font-weight: 600; }
.cs-brand--good { background: rgba(70, 206, 132, 0.1); color: #46CE84; }
.cs-brand--warn { background: rgba(251, 188, 4, 0.1); color: #92400e; }
.cs-brand--bad { background: rgba(239, 68, 68, 0.1); color: #991b1b; }

/* ─── Doxing ─── */
.cs-dox {
    background: linear-gradient(135deg, #fef2f2 0%, #fff5f5 50%, #fef2f2 100%);
    border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: var(--cs-radius);
    padding: 24px;
    margin-bottom: 28px;
}

.cs-dox__header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }

.cs-dox__shield {
    width: 44px; height: 44px; border-radius: 12px;
    background: linear-gradient(135deg, #ef4444, #dc2626);
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 20px; flex-shrink: 0;
}

.cs-dox__title { font-family: "Matter Medium", sans-serif; font-size: 16px; font-weight: 500; color: #991b1b; margin: 0; }
.cs-dox__subtitle { font-family: "Matter Regular", sans-serif; font-size: 12px; color: #b91c1c; margin: 2px 0 0; }

.cs-dox__pills { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 14px; }

.cs-dox__pill {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(239, 68, 68, 0.08); border: 1px solid rgba(239, 68, 68, 0.15);
    border-radius: 8px; padding: 6px 12px;
    font-family: "Matter Regular", sans-serif; font-size: 13px; font-weight: 500; color: #991b1b;
}

.cs-dox__pill i { font-size: 11px; opacity: 0.7; }
.cs-dox__pill span { font-family: "Matter Medium", sans-serif; font-weight: 600; }
.cs-dox__footer { font-family: "Matter Regular", sans-serif; font-size: 13px; color: #6b7280; line-height: 1.5; }
.cs-dox__footer strong { color: #46CE84; }

/* ─── Top Threats ─── */
.cs-threats { margin-bottom: 28px; }
.cs-threats__list { display: flex; flex-direction: column; gap: 10px; }

.cs-threat {
    background: var(--cs-white);
    border-radius: var(--cs-radius-sm);
    padding: 16px 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.04);
    border-left: 3px solid var(--cs-red);
    transition: transform 0.2s;
}

.cs-threat:hover { transform: translateX(4px); }
.cs-threat__domain { font-family: "Matter Medium", sans-serif; font-size: 15px; font-weight: 500; color: var(--cs-dark); margin-bottom: 6px; }
.cs-threat__domain i { color: var(--cs-red); margin-right: 4px; font-size: 13px; }
.cs-threat__meta { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }

.cs-threat__links {
    font-family: "Matter Medium", sans-serif; font-size: 12px; font-weight: 600;
    color: #991b1b; background: rgba(239, 68, 68, 0.08);
    padding: 3px 8px; border-radius: 6px;
}

.cs-threat__cat {
    font-family: "Matter Regular", sans-serif; font-size: 12px; font-weight: 500;
    color: #718096; background: #f1f5f9;
    padding: 3px 8px; border-radius: 6px; text-transform: capitalize;
}

.cs-threat__status {
    font-family: "Matter Medium", sans-serif; font-size: 11px; font-weight: 600;
    padding: 3px 8px; border-radius: 6px; text-transform: uppercase; letter-spacing: 0.3px;
}

.cs-threat__status--compliant { background: rgba(70, 206, 132, 0.1); color: #46CE84; }
.cs-threat__status--delisting { background: rgba(59, 130, 246, 0.1); color: #1d4ed8; }
.cs-threat__status--resistant { background: rgba(239, 68, 68, 0.08); color: #991b1b; }


/* ─── CTA Rotating Icons (independent from hero) ─── */
.cs-cta-rotating-icon { transition: none; }
.cs-cta-rotating-icon.active { animation: cta-icon-in 0.35s ease forwards; }
.cs-cta-rotating-icon.exiting { animation: cta-icon-out 0.35s ease forwards; }

/* ─── CTA ─── */
.cs-cta {
    background: linear-gradient(135deg, #fdf2f8 0%, #fce7f3 30%, #f5d0fe 65%, #e9d5ff 100%);
    border-radius: var(--cs-radius);
    padding: 48px 24px;
    text-align: center;
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.cs-cta__sparkle {
    position: absolute;
    pointer-events: none;
    z-index: 0;
    color: #f59e0b;
    animation: cs-cta-float 6s ease-in-out infinite;
}

.cs-cta__sparkle:nth-child(2) { animation-delay: -1.5s; opacity: 0.85; }
.cs-cta__sparkle:nth-child(3) { animation-delay: -3s; opacity: 0.75; }
.cs-cta__sparkle:nth-child(4) { animation-delay: -4.5s; opacity: 0.7; }
.cs-cta__sparkle:nth-child(5) { animation-delay: -2s; opacity: 0.8; }

@keyframes cs-cta-float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(10deg); }
}

.cs-cta__title, .cs-cta__sub, .cs-cta__btn { position: relative; z-index: 1; }

.cs-cta__title { font-family: "Matter Medium", sans-serif; font-size: 24px; font-weight: 500; color: var(--cs-dark); margin: 0 0 8px; }
.cs-cta__sub { font-family: "Matter Regular", sans-serif; font-size: 15px; color: var(--cs-grey); margin: 0 0 24px; }

.cs-cta__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(180deg, #7f42fd 0%, #6114ff 100%); color: #fff;
    font-family: "Matter Medium", sans-serif; font-size: 16px; font-weight: 500;
    padding: 14px 32px; border-radius: 24px;
    text-decoration: none; transition: all 0.2s;
    border: none; cursor: pointer;
    box-shadow: 0 4px 16px rgba(127, 66, 253, 0.3);
}

.cs-cta__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(127, 66, 253, 0.4); color: #fff; text-decoration: none; }
.cs-cta__btn i { font-size: 14px; }

/* ─── Share ─── */
.cs-share { text-align: center; margin-bottom: 32px; }

.cs-share__btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--cs-white); color: var(--cs-dark);
    font-family: "Matter Regular", sans-serif; font-size: 14px; font-weight: 500;
    padding: 12px 24px; border-radius: 12px;
    border: 1px solid #e2e8f0; cursor: pointer; transition: all 0.2s;
}

.cs-share__btn:hover { border-color: var(--cs-purple); color: var(--cs-purple); }
.cs-share__btn i { font-size: 14px; }

.cs-share__copied { display: none; font-family: "Matter Medium", sans-serif; font-size: 13px; color: #46CE84; font-weight: 500; margin-top: 8px; }

/* ─── Article Section Layout (stacked) ─── */
.cs-article-section {
    margin-bottom: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    animation: cs-fadeIn 0.5s ease-out;
}

.cs-article-section:last-of-type { border-bottom: none; }

.cs-article-section__narrative {
    margin-bottom: 28px;
}

.cs-narrative-text {
    font-family: "Matter Regular", sans-serif;
    font-size: 17px;
    line-height: 1.75;
    color: #374151;
    border-left: 3px solid var(--cs-purple);
    padding-left: 20px;
}

.cs-narrative-text b {
    color: var(--cs-dark);
    font-family: "Matter Medium", sans-serif;
    font-weight: 600;
}

.cs-narrative-text h3 {
    font-family: "Matter Medium", sans-serif;
    font-size: 24px;
    font-weight: 500;
    background: linear-gradient(135deg, #7f42fd 0%, #a78bfa 50%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 16px;
    line-height: 1.3;
    letter-spacing: -0.3px;
}

.cs-article-section__visual {
    min-width: 0;
}

/* ─── Cyberlocker Collage ─── */
.cs-cyberlockers {
    background: linear-gradient(145deg, #4a154b 0%, #3b1a5e 40%, #2e1648 100%);
    border-radius: var(--cs-radius);
    padding: 28px;
    box-shadow: 0 8px 32px rgba(74, 21, 75, 0.3);
}

.cs-cyber-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-family: "Matter Medium", sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
}

.cs-cyber-header i { color: rgba(255, 255, 255, 0.4); font-size: 16px; }
.cs-cyber-header span b { color: #fff; }

.cs-cyber-collage {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    padding: 8px 0;
}

.cs-cyber-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    font-family: "Matter Medium", sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 16px;
    border-radius: 24px;
    transition: transform 0.2s, background 0.2s;
    cursor: default;
}

.cs-cyber-pill:hover { transform: scale(1.05) rotate(0deg) !important; background: rgba(255, 255, 255, 0.18); }

.cs-cyber-pill i { font-size: 11px; opacity: 0.5; }

.cs-cyber-pill__count {
    font-size: 11px;
    font-weight: 600;
    background: rgba(253, 66, 99, 0.3);
    color: #fca5a5;
    padding: 2px 8px;
    border-radius: 12px;
}

/* ─── Threat Atlas Links ─── */
.cs-threat__domain-link {
    color: var(--cs-dark);
    text-decoration: none;
    transition: color 0.2s;
}

.cs-threat__domain-link:hover { color: var(--cs-purple); text-decoration: none; }
.cs-threat__ext { font-size: 10px; opacity: 0.4; margin-left: 4px; }

/* ─── Responsive ─── */
@media (max-width: 640px) {
    .cs-hero-section { padding: 80px 0 48px; }
    .cs-hero-inner { padding: 0 16px; }
    .cs-avatar, .cs-avatar-shimmer { width: 100px; height: 100px; }
    .cs-avatar-wrap { width: 100px; }
    .cs-avatar-splash { width: 180px; height: 180px; }
    .cs-name { font-size: 28px; }
    .cs-hero-stats { grid-template-columns: 1fr; gap: 12px; max-width: 100%; }
    .cs-hero-stat { padding: 20px 16px; }
    .cs-hero-stat__value { font-size: 28px; }
    .cs-container { padding: 32px 16px 40px; }
    .cs-tldr { padding: 32px 16px; }
    .cs-tldr__inner { flex-direction: column; gap: 16px; }
    .cs-tldr__left { display: none; }
    .cs-tldr__right::before {
        content: 'TL;DR:';
        display: block;
        font-family: "Matter Medium", sans-serif;
        font-size: 24px;
        font-weight: 500;
        color: #07100c;
        margin-bottom: 12px;
    }
    .cs-tldr__list li { font-size: 14px; }
    .cs-article-paywall { max-height: 300px; }
    .cs-grid { grid-template-columns: 1fr; }
    .cs-traffic__kpis { grid-template-columns: 1fr; }
    .cs-kpi__value { font-size: 22px; }
    .cs-danger__grid { grid-template-columns: 1fr; }
    .cs-mw__body { flex-direction: column; align-items: flex-start; gap: 12px; }
    .cs-mw__favicon { width: 44px; height: 44px; }
    .cs-traffic-headline { font-size: 28px; }
    .cs-cta { padding: 28px 20px; }
    .cs-cta__title { font-size: 20px; }
    .cs-threat__meta { gap: 6px; }
    .cs-narrative-text { font-size: 15px; }
}

@media (min-width: 641px) and (max-width: 900px) {
    .cs-hero-section { padding: 100px 0 60px; }
    .cs-hero-stat__value { font-size: 28px; }
}
