body[data-theme="trafficchaser"] {
    --font-body: "Inter", "Segoe UI", Arial, sans-serif;
    --font-heading: "Space Grotesk", "Inter", "Segoe UI", Arial, sans-serif;
    --tc-bg: #f5f8fd;
    --tc-ink: #071936;
    --tc-muted: #5c6b82;
    --tc-line: rgba(9, 31, 66, 0.12);
    --tc-soft-line: rgba(9, 31, 66, 0.08);
    --tc-surface: #ffffff;
    --tc-surface-2: #edf5ff;
    --tc-navy: #071936;
    --tc-blue: #1268f3;
    --tc-blue-2: #18a2ff;
    --tc-teal: #11a987;
    --tc-green: #17a34a;
    --tc-amber: #f59e0b;
    --tc-red: #e05252;
    --tc-shadow: 0 22px 52px rgba(9, 31, 66, 0.14);
    --tc-shadow-soft: 0 12px 30px rgba(9, 31, 66, 0.075);
    --color-bg: var(--tc-bg);
    --color-text: var(--tc-ink);
    --color-muted: var(--tc-muted);
    --color-surface: var(--tc-surface);
    --color-accent: var(--tc-blue);
    --color-accent-contrast: #ffffff;
    --radius-nav: 8px;
    --radius-chip: 8px;
    --radius-form: 8px;
    --radius-button: 8px;
    --radius-panel: 8px;
    --radius-card: 8px;
    --radius-media: 8px;
    background: var(--tc-bg);
    color: var(--tc-ink);
    font-family: var(--font-body);
}

body[data-theme="trafficchaser"] *,
body[data-theme="trafficchaser"] *::before,
body[data-theme="trafficchaser"] *::after {
    box-sizing: border-box;
}

body[data-theme="trafficchaser"] img {
    max-width: 100%;
    height: auto;
}

body[data-theme="trafficchaser"] a {
    color: var(--tc-blue);
    text-underline-offset: 0.18em;
}

body[data-theme="trafficchaser"] h1,
body[data-theme="trafficchaser"] h2,
body[data-theme="trafficchaser"] h3,
body[data-theme="trafficchaser"] h4 {
    font-family: var(--font-heading);
    color: var(--tc-ink);
    letter-spacing: 0;
    line-height: 1.08;
}

body[data-theme="trafficchaser"] .site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--tc-soft-line);
    box-shadow: 0 8px 26px rgba(9, 31, 66, 0.07);
    backdrop-filter: blur(14px);
}

body[data-theme="trafficchaser"] .site-header__inner {
    width: min(1220px, calc(100% - 32px));
    min-height: 78px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 28px;
}

body[data-theme="trafficchaser"] .logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: max-content;
    color: var(--tc-ink);
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
}

body[data-theme="trafficchaser"] .logo::before {
    content: "";
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-block;
    background: url("/site-assets/image/trafficchaser/trafficchaser-mark-transparent.png") center / contain no-repeat;
}

body[data-theme="trafficchaser"] .logo::first-letter {
    color: var(--tc-blue);
}

body[data-theme="trafficchaser"] .site-nav {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 18px;
    position: static;
    width: auto;
    max-width: none;
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
    transform: none;
    visibility: visible;
    opacity: 1;
    overflow: visible;
}

body[data-theme="trafficchaser"] .site-nav__list {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

body[data-theme="trafficchaser"] .nav-link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    padding: 0;
    color: var(--tc-ink);
    font-size: 0.95rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    white-space: nowrap;
    border-radius: 0;
    position: relative;
}

body[data-theme="trafficchaser"] .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    border-radius: 999px;
    background: var(--tc-blue);
    opacity: 0;
    transform: translateY(4px);
    transition: opacity 0.18s ease, transform 0.18s ease;
}

body[data-theme="trafficchaser"] .nav-link:hover,
body[data-theme="trafficchaser"] .nav-link:focus-visible,
body[data-theme="trafficchaser"] .site-nav__item.is-active > .nav-link {
    color: var(--tc-blue);
    background: transparent;
}

body[data-theme="trafficchaser"] .site-nav__item.is-active > .nav-link::after,
body[data-theme="trafficchaser"] .nav-link:hover::after,
body[data-theme="trafficchaser"] .nav-link:focus-visible::after {
    opacity: 1;
    transform: translateY(0);
}

body[data-theme="trafficchaser"] .site-nav__footer {
    margin-left: 18px;
    width: auto;
}

body[data-theme="trafficchaser"] .language-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 6px;
    border: 1px solid var(--tc-line);
    border-radius: 999px;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(9, 31, 66, 0.08);
}

body[data-theme="trafficchaser"] .language-switch__flag {
    width: 22px;
    height: 16px;
    flex: 0 0 22px;
    display: inline-block;
    border-radius: 3px;
    box-shadow: 0 0 0 1px rgba(9, 31, 66, 0.15);
    background: #dbe7f5 center / cover no-repeat;
}

body[data-theme="trafficchaser"] .language-switch__flag--en {
    background-image: url("/site-assets/image/flags/en.svg");
}

body[data-theme="trafficchaser"] .language-switch__flag--de {
    background-image: url("/site-assets/image/flags/de.svg");
}

body[data-theme="trafficchaser"] .language-switch__select {
    min-height: 32px;
    padding: 0 24px 0 6px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: var(--tc-ink);
    font: inherit;
    font-size: 0.82rem;
    font-weight: 800;
    cursor: pointer;
}

body[data-theme="trafficchaser"] .menu-toggle {
    display: none;
}

body[data-theme="trafficchaser"] .content-area {
    background:
        linear-gradient(180deg, #f7fbff 0, #f4f8fd 520px, #ffffff 521px, #ffffff 100%);
    padding: 0;
}

body[data-theme="trafficchaser"] .content-grid,
body[data-theme="trafficchaser"] .content-grid--full {
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0;
}

body[data-theme="trafficchaser"] .content-block,
body[data-theme="trafficchaser"] .content-block--hero,
body[data-theme="trafficchaser"] .content-panel {
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

body[data-theme="trafficchaser"] .content-body {
    margin: 0;
}

.tc-shell {
    width: 100%;
    overflow: hidden;
}

.tc-band {
    border-bottom: 1px solid var(--tc-soft-line);
    background: #ffffff;
}

.tc-band--soft {
    background: #f7fbff;
}

.tc-container {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
}

.tc-hero {
    position: relative;
    padding: 34px 0 0;
    background:
        radial-gradient(circle at 16% 16%, rgba(24, 162, 255, 0.16), transparent 290px),
        radial-gradient(circle at 88% 18%, rgba(17, 169, 135, 0.13), transparent 310px),
        linear-gradient(180deg, #f9fcff, #eef6ff);
    border-bottom: 1px solid var(--tc-soft-line);
    overflow: hidden;
}

.tc-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.78;
    background: url("/site-assets/image/trafficchaser/design/hero-network-bg.webp") center bottom / cover no-repeat;
    pointer-events: none;
}

.tc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 90px;
    opacity: 0.55;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.72));
    pointer-events: none;
}

.tc-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.88fr 1.12fr;
    gap: 48px;
    align-items: center;
    min-height: 532px;
}

.tc-kicker {
    margin: 0 0 12px;
    color: var(--tc-blue);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0;
}

.tc-hero h1 {
    max-width: 590px;
    margin: 0;
    font-size: 3.05rem;
    font-weight: 850;
}

.tc-hero__copy {
    max-width: 520px;
    margin: 22px 0 0;
    color: #31425d;
    font-size: 1.05rem;
    line-height: 1.62;
}

.tc-actions,
.tc-inline-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.tc-button {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 0 18px;
    border: 1px solid rgba(18, 104, 243, 0.22);
    border-radius: 8px;
    background: #ffffff;
    color: var(--tc-ink);
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(9, 31, 66, 0.07);
}

.tc-button--primary {
    border-color: var(--tc-blue);
    background: var(--tc-blue);
    color: #ffffff;
    box-shadow: 0 14px 26px rgba(18, 104, 243, 0.26);
}

.tc-button:hover,
.tc-button:focus-visible {
    transform: translateY(-1px);
}

.tc-proof {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 13px;
    max-width: 560px;
    margin-top: 34px;
}

.tc-proof span {
    display: grid;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 9px;
    min-height: 44px;
    color: #334966;
    font-size: 0.82rem;
    line-height: 1.2;
}

.tc-proof span::before {
    content: "";
    width: 34px;
    height: 34px;
    border: 1px solid rgba(18, 104, 243, 0.18);
    border-radius: 8px;
    background-color: #eaf4ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 29px 29px;
}

.tc-proof span:nth-child(1)::before { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-rankings.webp"); }
.tc-proof span:nth-child(2)::before { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-updates.webp"); }
.tc-proof span:nth-child(3)::before { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-launch.webp"); }
.tc-proof span:nth-child(4)::before { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-action.webp"); }

.tc-ranking-panel {
    border: 1px solid var(--tc-line);
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--tc-shadow);
}

.tc-panel-head {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0 18px;
    background: var(--tc-navy);
    color: #ffffff;
}

.tc-panel-head h2,
.tc-panel-head h3 {
    margin: 0;
    color: #ffffff;
    font-size: 0.96rem;
    line-height: 1.2;
}

.tc-panel-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #d7e6ff;
    font-size: 0.7rem;
    font-weight: 750;
}

.tc-select-look {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.06);
}

.tc-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.74rem;
}

.tc-table th,
.tc-table td {
    padding: 8px 12px;
    border-bottom: 1px solid rgba(9, 31, 66, 0.08);
    text-align: left;
    vertical-align: middle;
}

.tc-table th {
    color: #6b7a92;
    font-size: 0.62rem;
    font-weight: 850;
    text-transform: uppercase;
}

.tc-channel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--tc-ink);
    font-weight: 850;
}

.tc-channel__icon {
    width: 27px;
    height: 27px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(18, 104, 243, 0.15);
    border-radius: 8px;
    background-color: #f4f8ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px 23px;
    color: transparent;
    font-size: 0;
    font-weight: 850;
    overflow: hidden;
}

.tc-channel__icon--g { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-search.webp"); }
.tc-channel__icon--yt { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-video.webp"); }
.tc-channel__icon--tk { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-shorts.webp"); }
.tc-channel__icon--rd { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-community.webp"); }
.tc-channel__icon--ph { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-launch.webp"); }
.tc-channel__icon--as { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-appstore.webp"); }
.tc-channel__icon--st { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-game-market.webp"); }
.tc-channel__icon--em { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-email.webp"); }
.tc-channel__icon--cr { background-image: url("/site-assets/image/trafficchaser/channel-icons/channel-creator.webp"); }

.tc-bars {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 3px;
    min-width: 82px;
}

.tc-bars span {
    height: 8px;
    border-radius: 2px;
    background: #dfe6ef;
}

.tc-bars[data-score="8"] span:nth-child(-n + 8),
.tc-bars[data-score="7"] span:nth-child(-n + 7),
.tc-bars[data-score="6"] span:nth-child(-n + 6),
.tc-bars[data-score="5"] span:nth-child(-n + 5),
.tc-bars[data-score="4"] span:nth-child(-n + 4),
.tc-bars[data-score="3"] span:nth-child(-n + 3) {
    background: linear-gradient(90deg, var(--tc-green), var(--tc-teal));
}

.tc-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #eef5ff;
    color: var(--tc-blue);
    font-size: 0.66rem;
    font-weight: 850;
    white-space: nowrap;
}

.tc-pill--green { background: #e9f9ef; color: #11823a; }
.tc-pill--teal { background: #e7fbf7; color: #087a65; }
.tc-pill--amber { background: #fff4df; color: #b36a00; }
.tc-pill--red { background: #fff0f0; color: #c23a3a; }
.tc-pill--dark { background: #eaf0fa; color: #27415f; }

.tc-score {
    width: 34px;
    height: 34px;
    display: inline-grid;
    place-items: center;
    border: 2px solid var(--tc-green);
    border-radius: 999px;
    color: #107c35;
    font-size: 0.76rem;
    font-weight: 900;
}

.tc-panel-foot {
    min-height: 39px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top: 1px solid var(--tc-soft-line);
    background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.tc-panel-foot a {
    color: var(--tc-blue);
    font-size: 0.76rem;
    font-weight: 900;
    text-decoration: none;
}

.tc-score--amber {
    border-color: var(--tc-amber);
    color: #b36a00;
}

.tc-stars {
    color: var(--tc-green);
    font-size: 0.9rem;
    letter-spacing: 0;
    white-space: nowrap;
}

.tc-stars span {
    color: #c7d0de;
}

.tc-product-strip {
    padding: 20px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--tc-soft-line);
}

.tc-strip-title {
    margin: 0 0 12px;
    color: var(--tc-ink);
    font-size: 0.95rem;
    font-weight: 850;
}

.tc-product-grid {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 14px;
}

.tc-product-card,
.tc-measure-card,
.tc-case-card,
.tc-directory-card,
.tc-guide-card,
.tc-plan-card,
.tc-template-card {
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--tc-shadow-soft);
}

.tc-product-card {
    min-height: 86px;
    display: grid;
    grid-template-columns: 54px 1fr;
    align-items: center;
    gap: 11px;
    padding: 12px;
    text-decoration: none;
}

.tc-product-card strong {
    display: block;
    margin-bottom: 2px;
    color: var(--tc-ink);
    font-size: 0.88rem;
}

.tc-product-copy {
    display: block;
    color: var(--tc-muted);
    font-size: 0.72rem;
    line-height: 1.25;
}

.tc-product-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(18, 104, 243, 0.2);
    border-radius: 8px;
    background: linear-gradient(145deg, #f7fbff, #eaf3ff);
    color: var(--tc-blue);
    font-weight: 900;
    overflow: hidden;
}

.tc-product-icon img {
    width: 49px;
    height: 49px;
    display: block;
    object-fit: contain;
}

.tc-section {
    padding: 34px 0 40px;
}

.tc-section--split {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 44px;
    align-items: start;
}

.tc-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.tc-section-head h2 {
    margin: 0;
    font-size: 1.35rem;
}

.tc-section-head p {
    max-width: 700px;
    margin: 8px 0 0;
    color: var(--tc-muted);
}

.tc-text-link {
    color: var(--tc-blue);
    font-size: 0.84rem;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
}

.tc-measure-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tc-measure-card {
    min-height: 232px;
    padding: 17px;
    position: relative;
}

.tc-measure-logo {
    width: 62px;
    height: 62px;
    display: grid;
    place-items: center;
    margin-bottom: 16px;
    border: 1px solid rgba(18, 104, 243, 0.14);
    border-radius: 8px;
    background-color: #f7fbff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 54px 54px;
    color: transparent;
    font-size: 0;
    font-weight: 950;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.72);
}

.tc-measure-card .tc-score {
    position: absolute;
    top: 14px;
    right: 14px;
}

.tc-measure-card h3 {
    margin: 0 0 8px;
    font-size: 1rem;
}

.tc-measure-card p {
    margin: 0 0 14px;
    color: var(--tc-muted);
    font-size: 0.88rem;
    line-height: 1.45;
}

.tc-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 12px 0 0;
}

.tc-best {
    margin-top: 16px;
    color: #334966;
    font-size: 0.78rem;
}

.tc-matrix {
    --tc-matrix-bg: #f8fbff;
    --tc-matrix-line: rgba(9, 31, 66, 0.13);
    min-height: 336px;
    position: relative;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: var(--tc-matrix-bg);
    overflow: hidden;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.tc-matrix::before,
.tc-matrix::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.tc-matrix::before {
    top: 0;
    bottom: 36px;
    left: 50%;
    width: 3px;
    transform: translateX(-50%);
    background: var(--tc-matrix-line);
}

.tc-matrix::after {
    top: 50%;
    right: 0;
    left: 42px;
    height: 3px;
    transform: translateY(-50%);
    background: var(--tc-matrix-line);
}

.tc-axis {
    position: absolute;
    z-index: 2;
    padding: 2px 6px;
    border-radius: 6px;
    background: var(--tc-matrix-bg);
    box-shadow: 0 0 0 5px var(--tc-matrix-bg);
    color: #53637a;
    font-size: 0.72rem;
    font-weight: 800;
    line-height: 1.2;
    white-space: nowrap;
}

.tc-axis--y {
    left: 12px;
    top: 50%;
    transform: rotate(-90deg) translateX(-50%);
    transform-origin: left top;
}

.tc-axis--x {
    left: 50%;
    bottom: 8px;
    transform: translateX(-50%);
}

.tc-quadrant {
    position: absolute;
    z-index: 2;
    padding: 3px 6px;
    border-radius: 6px;
    background: color-mix(in srgb, var(--tc-matrix-bg) 92%, transparent);
    box-shadow: 0 0 0 6px var(--tc-matrix-bg);
    color: #6b7a92;
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.25;
}

.tc-quadrant strong {
    display: block;
    color: var(--tc-green);
}

.tc-quadrant--br strong {
    color: var(--tc-red);
}

.tc-quadrant--tl { left: 54px; top: 42px; }
.tc-quadrant--tr { right: 42px; top: 42px; text-align: right; }
.tc-quadrant--bl { left: 54px; bottom: 40px; }
.tc-quadrant--br { right: 42px; bottom: 40px; text-align: right; }

.tc-point {
    position: absolute;
    z-index: 3;
    display: block;
    width: 12px;
    height: 12px;
    color: var(--tc-ink);
    font-size: 0;
    transition: opacity 0.18s ease, transform 0.18s ease;
}

.tc-point::before {
    content: "";
    position: absolute;
    z-index: 1;
    inset: 0;
    width: 12px;
    height: 12px;
    display: block;
    border-radius: 50%;
    background: var(--point-color, var(--tc-blue));
    box-shadow: 0 0 0 5px rgba(18, 104, 243, 0.08);
}

.tc-point::after {
    content: attr(aria-label);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: max-content;
    max-width: 150px;
    padding: 2px 5px;
    border-radius: 6px;
    background: var(--tc-matrix-bg);
    box-shadow: 0 0 0 4px var(--tc-matrix-bg);
    color: var(--tc-ink);
    font-size: 0.74rem;
    font-weight: 800;
    line-height: 1.15;
    white-space: nowrap;
}

.tc-point.is-muted {
    opacity: 0.25;
    transform: scale(0.96);
}

.tc-focus-controls {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.tc-focus-controls button {
    min-height: 32px;
    padding: 0 10px;
    border: 1px solid var(--tc-line);
    border-radius: 999px;
    background: #ffffff;
    color: var(--tc-muted);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    cursor: pointer;
}

.tc-focus-controls button.is-active {
    border-color: var(--tc-blue);
    background: #e9f3ff;
    color: var(--tc-blue);
}

.tc-matrix-legend {
    display: none;
}

.tc-timeline {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0;
    position: relative;
    margin-top: 28px;
}

.tc-timeline::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    top: 31px;
    height: 2px;
    background: #b8d4ff;
}

.tc-step {
    position: relative;
    text-align: center;
    padding: 0 12px;
}

.tc-step__icon {
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    margin: 0 auto 12px;
    border: 2px solid #73a9ff;
    border-radius: 50%;
    background: #ffffff center / 50px 50px no-repeat;
    color: transparent;
    font-size: 0;
    font-weight: 900;
    position: relative;
    z-index: 1;
}

.tc-step:nth-child(1) .tc-step__icon { background-image: url("/site-assets/image/trafficchaser/launch-icons/launch-research.webp"); }
.tc-step:nth-child(2) .tc-step__icon { background-image: url("/site-assets/image/trafficchaser/launch-icons/launch-setup.webp"); }
.tc-step:nth-child(3) .tc-step__icon { background-image: url("/site-assets/image/trafficchaser/launch-icons/launch-content.webp"); }
.tc-step:nth-child(4) .tc-step__icon { background-image: url("/site-assets/image/trafficchaser/launch-icons/launch-distribution.webp"); }
.tc-step:nth-child(5) .tc-step__icon { background-image: url("/site-assets/image/trafficchaser/launch-icons/launch-optimize.webp"); }

.tc-step h3 {
    margin: 0 0 8px;
    font-size: 0.92rem;
}

.tc-step p {
    margin: 0;
    color: var(--tc-muted);
    font-size: 0.8rem;
    line-height: 1.45;
}

.tc-case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.tc-case-card {
    overflow: hidden;
}

.tc-case-card figure {
    margin: 0;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #e7eef8;
    position: relative;
}

.tc-case-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.tc-case-card__body {
    padding: 15px;
}

.tc-case-card h3 {
    margin: 0 0 10px;
    font-size: 0.98rem;
    line-height: 1.2;
}

.tc-case-card p {
    margin: 0 0 12px;
    color: var(--tc-muted);
    font-size: 0.84rem;
    line-height: 1.45;
}

.tc-card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    display: inline-flex;
    min-height: 24px;
    align-items: center;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--tc-green);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 900;
}

.tc-stats-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) 1.45fr;
    gap: 0;
    margin: 24px 0 0;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--tc-shadow-soft);
}

.tc-mini-icon {
    width: 38px;
    height: 38px;
    display: block;
    border: 1px solid rgba(18, 104, 243, 0.18);
    border-radius: 8px;
    background-color: #eaf4ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 32px 32px;
}

.tc-stat:nth-child(1) .tc-mini-icon { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-rankings.webp"); }
.tc-stat:nth-child(2) .tc-mini-icon { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-launch.webp"); }
.tc-stat:nth-child(3) .tc-mini-icon { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-updates.webp"); }
.tc-stat:nth-child(4) .tc-mini-icon { background-image: url("/site-assets/image/trafficchaser/proof-icons/proof-action.webp"); }

.tc-stat {
    min-height: 98px;
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
    gap: 12px;
    padding: 18px;
    border-right: 1px solid var(--tc-soft-line);
}

.tc-stat strong {
    display: block;
    color: var(--tc-blue);
    font-size: 1.45rem;
    line-height: 1;
}

.tc-stat span {
    display: block;
    color: #31425d;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
}

.tc-testimonial {
    padding: 18px 22px;
}

.tc-testimonial p {
    margin: 0;
    color: #31425d;
    font-size: 0.9rem;
    line-height: 1.45;
}

.tc-testimonial strong {
    color: var(--tc-amber);
}

.tc-pagehead {
    padding: 52px 0 32px;
    background:
        radial-gradient(circle at 18% 22%, rgba(24, 162, 255, 0.13), transparent 260px),
        linear-gradient(180deg, #f7fbff, #ffffff);
    border-bottom: 1px solid var(--tc-soft-line);
}

.tc-pagehead h1 {
    max-width: 860px;
    margin: 0;
    font-size: 2.45rem;
}

.tc-pagehead p:not(.tc-kicker) {
    max-width: 760px;
    margin: 16px 0 0;
    color: #31425d;
    font-size: 1.02rem;
    line-height: 1.6;
}

.tc-content-section {
    padding: 34px 0;
    background: #ffffff;
    border-bottom: 1px solid var(--tc-soft-line);
}

.tc-prose {
    max-width: 860px;
}

.tc-prose h2 {
    margin: 0 0 14px;
    font-size: 1.55rem;
}

.tc-prose h3 {
    margin: 24px 0 10px;
    font-size: 1.05rem;
}

.tc-prose p,
.tc-prose li {
    color: #31425d;
    line-height: 1.7;
}

.tc-prose ul,
.tc-prose ol {
    padding-left: 1.2rem;
}

.tc-grid-2,
.tc-grid-3,
.tc-grid-4 {
    display: grid;
    gap: 18px;
}

.tc-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.tc-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.tc-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.tc-guide-card,
.tc-plan-card,
.tc-template-card {
    padding: 18px;
}

.tc-guide-card h3,
.tc-plan-card h3,
.tc-template-card h3 {
    margin: 0 0 10px;
    font-size: 1.05rem;
}

.tc-guide-card p,
.tc-plan-card p,
.tc-template-card p {
    margin: 0 0 12px;
    color: var(--tc-muted);
    line-height: 1.55;
}

.tc-guide-card ul,
.tc-plan-card ul,
.tc-template-card ul {
    margin: 0;
    padding-left: 1.1rem;
    color: #31425d;
}

.tc-directory-tools {
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr;
    gap: 12px;
    margin: 20px 0 18px;
    padding: 14px;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    box-shadow: var(--tc-shadow-soft);
}

.tc-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tc-field label {
    color: #31425d;
    font-size: 0.76rem;
    font-weight: 850;
}

.tc-field input,
.tc-field select,
.tc-contact-form textarea,
.tc-newsletter input {
    min-height: 44px;
    width: 100%;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--tc-ink);
    font: inherit;
    padding: 0 12px;
}

.tc-contact-form {
    display: grid;
    gap: 14px;
}

.tc-contact-form textarea {
    min-height: 170px;
    padding: 12px;
    resize: vertical;
}

.tc-contact-form button {
    justify-self: start;
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: var(--tc-blue);
    color: #ffffff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

.tc-consent {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--tc-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.tc-consent input {
    width: auto;
    min-height: 0;
    margin-top: 0.2em;
}

.tc-directory-meta {
    margin: 0 0 14px;
    color: var(--tc-muted);
    font-size: 0.88rem;
}

.tc-directory-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.tc-directory-card {
    padding: 18px;
}

.tc-directory-card[hidden] {
    display: none;
}

.tc-directory-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
}

.tc-directory-card h3 {
    margin: 0;
    font-size: 1.05rem;
}

.tc-directory-card p {
    margin: 0 0 12px;
    color: var(--tc-muted);
    line-height: 1.55;
}

.tc-hero--planner .tc-hero__grid {
    grid-template-columns: 0.96fr 1.04fr;
}

.tc-start-panel,
.tc-stack-card,
.tc-week-card {
    border: 1px solid var(--tc-line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: var(--tc-shadow);
}

.tc-start-panel {
    padding: 24px;
}

.tc-start-panel h2,
.tc-week-card h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
    line-height: 1.2;
}

.tc-start-options {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
}

.tc-start-option {
    display: grid;
    grid-template-columns: 58px 1fr;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 10px;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    color: var(--tc-ink);
    text-decoration: none;
    box-shadow: 0 8px 18px rgba(9, 31, 66, 0.05);
}

.tc-start-option:hover,
.tc-start-option:focus-visible,
.tc-resource-list a:hover,
.tc-resource-list a:focus-visible {
    transform: translateY(-1px);
}

.tc-start-option .tc-product-icon {
    width: 48px;
    height: 48px;
}

.tc-start-option strong,
.tc-resource-list strong {
    display: block;
    margin-bottom: 3px;
    color: var(--tc-ink);
    font-size: 0.94rem;
}

.tc-start-option > span:last-child,
.tc-resource-list span {
    color: var(--tc-muted);
    font-size: 0.83rem;
    line-height: 1.35;
}

.tc-section-head--wide {
    align-items: flex-end;
}

.tc-stack-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.tc-stack-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    padding: 20px;
}

.tc-stack-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
    border: 1px solid rgba(18, 104, 243, 0.18);
    border-radius: 10px;
    background-color: #eef6ff;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 42px 42px;
}

.tc-stack-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.tc-stack-card p {
    margin: 0 0 12px;
    color: var(--tc-muted);
    line-height: 1.55;
}

.tc-stack-card ul {
    margin: 0 0 18px;
    padding-left: 1.05rem;
    color: #31425d;
    line-height: 1.5;
}

.tc-stack-card .tc-text-link {
    margin-top: auto;
}

.tc-action-list {
    display: grid;
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
    counter-reset: tc-action;
}

.tc-action-list li {
    counter-increment: tc-action;
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
}

.tc-action-list li::before {
    content: counter(tc-action);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #eaf4ff;
    color: var(--tc-blue);
    font-weight: 850;
}

.tc-action-list strong {
    display: block;
    grid-column: 2;
    color: var(--tc-ink);
}

.tc-action-list span {
    display: block;
    grid-column: 2;
    margin-top: 3px;
    color: var(--tc-muted);
    line-height: 1.45;
}

.tc-week-card {
    align-self: start;
    padding: 24px;
    background:
        radial-gradient(circle at 92% 10%, rgba(24, 162, 255, 0.16), transparent 180px),
        #ffffff;
}

.tc-week-steps {
    display: grid;
    gap: 12px;
    margin: 18px 0 22px;
}

.tc-week-steps div {
    padding: 13px;
    border: 1px solid var(--tc-soft-line);
    border-radius: 8px;
    background: #f8fbff;
}

.tc-week-steps strong,
.tc-week-steps span {
    display: block;
}

.tc-week-steps strong {
    color: var(--tc-ink);
    margin-bottom: 3px;
}

.tc-week-steps span {
    color: var(--tc-muted);
    line-height: 1.45;
}

.tc-resource-list {
    display: grid;
    gap: 12px;
}

.tc-resource-list a {
    display: block;
    padding: 16px;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    background: #ffffff;
    color: inherit;
    text-decoration: none;
    box-shadow: var(--tc-shadow-soft);
}

.tc-directory-card__head .tc-score {
    display: none;
}

.tc-metric-list {
    display: grid;
    gap: 8px;
    margin: 14px 0 0;
}

.tc-metric-list div {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 10px;
    font-size: 0.82rem;
}

.tc-metric-list dt {
    color: var(--tc-muted);
    font-weight: 800;
}

.tc-metric-list dd {
    margin: 0;
    color: #233a57;
    font-weight: 750;
}

.tc-wide-table {
    width: 100%;
    border: 1px solid var(--tc-line);
    border-radius: 8px;
    border-collapse: separate;
    border-spacing: 0;
    overflow: hidden;
    background: #ffffff;
    box-shadow: var(--tc-shadow-soft);
}

.tc-wide-table th,
.tc-wide-table td {
    padding: 13px 14px;
    border-bottom: 1px solid var(--tc-soft-line);
    text-align: left;
    vertical-align: top;
}

.tc-wide-table th {
    background: #f1f6fd;
    color: #53637a;
    font-size: 0.76rem;
    text-transform: uppercase;
}

.tc-wide-table tr:last-child td {
    border-bottom: 0;
}

.tc-newsletter {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: center;
    margin-top: 26px;
    padding: 24px;
    border-radius: 8px;
    background: var(--tc-navy);
    color: #ffffff;
}

.tc-section--split > .tc-newsletter {
    grid-template-columns: 1fr;
    align-self: start;
    margin-top: 0;
}

.tc-newsletter h2,
.tc-newsletter h3 {
    margin: 0 0 10px;
    color: #ffffff;
}

.tc-newsletter p {
    margin: 0;
    color: #d8e6f8;
}

.tc-newsletter form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
}

.tc-newsletter label {
    color: #ffffff;
}

.tc-newsletter input[type="checkbox"] {
    width: auto;
    min-height: 0;
}

.tc-newsletter .tc-consent {
    grid-column: 1 / -1;
    display: block;
    color: #d8e6f8;
    font-size: 0.78rem;
    line-height: 1.4;
}

.tc-newsletter .tc-consent input {
    margin: 0 8px 0 0;
    vertical-align: -2px;
}

.tc-newsletter button {
    min-height: 44px;
    padding: 0 16px;
    border: 0;
    border-radius: 8px;
    background: var(--tc-blue);
    color: #ffffff;
    font: inherit;
    font-weight: 850;
    cursor: pointer;
}

body[data-theme="trafficchaser"] .site-footer {
    background: var(--tc-navy);
    color: #d8e6f8;
    border-top: 0;
}

body[data-theme="trafficchaser"] .footer-utility {
    display: none;
}

body[data-theme="trafficchaser"] .footer-highlight__title,
body[data-theme="trafficchaser"] .footer-highlight__subtitle,
body[data-theme="trafficchaser"] .footer-highlight__legal {
    color: #d8e6f8;
}

body[data-theme="trafficchaser"] .footer-links a,
body[data-theme="trafficchaser"] .site-footer a {
    color: #eaf3ff;
}

body[data-theme="trafficchaser"] .footer-content {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 34px 0 26px;
}

body[data-theme="trafficchaser"] .footer-content__block {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.tc-footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3, 0.7fr) 1.3fr;
    gap: 30px;
}

.tc-footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 850;
}

.tc-footer-brand::before {
    content: "";
    width: 38px;
    height: 38px;
    display: inline-block;
    background: url("/site-assets/image/trafficchaser/trafficchaser-mark-transparent.png") center / contain no-repeat;
}

.tc-footer-grid h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 0.9rem;
}

.tc-footer-grid p,
.tc-footer-grid li {
    color: #b9c9dd;
    font-size: 0.86rem;
    line-height: 1.55;
}

.tc-footer-grid ul {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tc-footer-grid form {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 8px;
    margin-top: 14px;
}

.tc-footer-grid input {
    min-height: 42px;
    min-width: 0;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    padding: 0 12px;
    background: #ffffff;
    color: var(--tc-ink);
}

.tc-footer-grid button {
    min-height: 42px;
    border: 0;
    border-radius: 8px;
    padding: 0 12px;
    background: var(--tc-blue);
    color: #ffffff;
    font-weight: 850;
}

.tc-footer-consent {
    grid-column: 1 / -1;
    display: block;
    color: #b9c9dd;
    font-size: 0.74rem;
    line-height: 1.35;
}

.tc-footer-consent input {
    width: auto;
    min-height: 0;
    margin: 0 8px 0 0;
    vertical-align: -2px;
}

body[data-theme="trafficchaser"] .site-footer__bar {
    width: min(1220px, calc(100% - 32px));
    margin: 0 auto;
    padding: 0 0 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #9fb0c5;
}

@media (max-width: 1060px) {
    body[data-theme="trafficchaser"] .site-header {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    body[data-theme="trafficchaser"] .site-header__inner {
        min-height: 68px;
    }

    body[data-theme="trafficchaser"] .menu-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    body[data-theme="trafficchaser"] .site-nav {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        left: auto;
        width: min(360px, calc(100vw - 28px));
        height: 100vh;
        height: 100dvh;
        max-height: none;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: max(18px, env(safe-area-inset-top)) 18px max(22px, env(safe-area-inset-bottom));
        border-left: 1px solid var(--tc-line);
        border-radius: 0;
        background: #ffffff;
        box-shadow: -18px 0 42px rgba(9, 31, 66, 0.16);
        transform: none;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        overflow-x: hidden;
        overflow-y: auto;
        overscroll-behavior: contain;
        -webkit-overflow-scrolling: touch;
        transition: opacity 0.22s ease, visibility 0.22s ease;
        z-index: 1500;
    }

    body[data-theme="trafficchaser"] .site-nav.is-open {
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    body[data-theme="trafficchaser"] .site-nav__mobile-header,
    body[data-theme="trafficchaser"] .site-nav__close {
        display: flex;
    }

    body[data-theme="trafficchaser"] .site-nav__mobile-header {
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
    }

    body[data-theme="trafficchaser"] .site-nav__list {
        flex-direction: column;
        align-items: stretch;
        gap: 6px;
        flex: 0 0 auto;
        overflow: visible;
        padding-right: 0;
    }

    body[data-theme="trafficchaser"] .nav-link {
        min-height: 46px;
        padding: 0 8px;
    }

    body[data-theme="trafficchaser"] .site-nav__footer {
        margin: 22px 0 0;
        flex: 0 0 auto;
    }

    body[data-theme="trafficchaser"] .site-nav__overlay {
        z-index: 1490;
    }

    body[data-theme="trafficchaser"] .site-nav__close--proxy,
    body[data-theme="trafficchaser"].nav-open .site-nav__close--proxy {
        display: none !important;
        pointer-events: none !important;
    }

    .tc-hero__grid,
    .tc-section--split,
    .tc-newsletter,
    .tc-footer-grid {
        grid-template-columns: 1fr;
    }

    .tc-hero--planner .tc-hero__grid {
        grid-template-columns: 1fr;
    }

    .tc-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tc-measure-grid,
    .tc-stack-grid,
    .tc-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tc-directory-grid,
    .tc-case-grid,
    .tc-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tc-stats-band {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    body[data-theme="trafficchaser"] .site-header__inner,
    .tc-container,
    body[data-theme="trafficchaser"] .footer-utility,
    body[data-theme="trafficchaser"] .footer-content,
    body[data-theme="trafficchaser"] .site-footer__bar {
        width: min(100% - 32px, 1220px);
    }

    body[data-theme="trafficchaser"] .site-header__inner {
        min-height: 60px;
    }

    body[data-theme="trafficchaser"] .logo {
        gap: 8px;
        font-size: 1.04rem;
    }

    body[data-theme="trafficchaser"] .logo::before {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    body[data-theme="trafficchaser"] .menu-toggle {
        width: 42px;
        height: 42px;
        border-width: 1px;
        box-shadow: 0 10px 24px rgba(18, 104, 243, 0.22);
    }

    body[data-theme="trafficchaser"] .menu-toggle span {
        width: 18px;
    }

    body[data-theme="trafficchaser"] .site-nav {
        width: min(330px, calc(100vw - 28px));
        padding: 16px 16px max(20px, env(safe-area-inset-bottom));
    }

    body[data-theme="trafficchaser"] .site-nav__mobile-header {
        margin-bottom: 16px;
    }

    body[data-theme="trafficchaser"] .site-nav__mobile-kicker {
        font-size: 0.66rem;
        letter-spacing: 0.18em;
    }

    body[data-theme="trafficchaser"] .site-nav__mobile-home {
        font-size: 1.08rem;
    }

    body[data-theme="trafficchaser"] .site-nav__close {
        --nav-close-size: 42px;
    }

    body[data-theme="trafficchaser"] .nav-link {
        min-height: 40px;
        font-size: 0.9rem;
    }

    body[data-theme="trafficchaser"] .site-nav__footer {
        margin-top: 16px;
    }

    body[data-theme="trafficchaser"] .site-nav__footer .language-switch {
        padding: 6px 8px;
    }

    body[data-theme="trafficchaser"] .language-switch__select {
        min-height: 30px;
        font-size: 0.78rem;
    }

    .tc-hero {
        padding-top: 18px;
    }

    .tc-hero__grid {
        min-height: 0;
        gap: 20px;
        padding-bottom: 22px;
    }

    .tc-hero h1,
    .tc-pagehead h1 {
        font-size: clamp(1.72rem, 7.4vw, 1.96rem);
        line-height: 1.12;
    }

    .tc-hero__copy,
    .tc-pagehead p:not(.tc-kicker) {
        font-size: 0.94rem;
        line-height: 1.5;
    }

    .tc-pagehead {
        padding: 34px 0 24px;
    }

    .tc-pagehead p:not(.tc-kicker) {
        margin-top: 12px;
    }

    .tc-content-section {
        padding: 26px 0;
    }

    .tc-prose h2 {
        font-size: 1.28rem;
    }

    .tc-prose p,
    .tc-prose li {
        font-size: 0.94rem;
        line-height: 1.55;
    }

    .tc-proof,
    .tc-product-grid,
    .tc-measure-grid,
    .tc-stack-grid,
    .tc-grid-2,
    .tc-grid-3,
    .tc-grid-4,
    .tc-directory-grid,
    .tc-case-grid,
    .tc-stats-band {
        grid-template-columns: 1fr;
    }

    .tc-ranking-panel {
        overflow: visible;
    }

    .tc-table {
        min-width: 0;
    }

    .tc-product-card {
        min-height: 66px;
    }

    .tc-start-panel,
    .tc-stack-card,
    .tc-week-card {
        padding: 16px;
    }

    .tc-start-panel h2,
    .tc-week-card h2 {
        font-size: 1.15rem;
    }

    .tc-start-option {
        grid-template-columns: 52px 1fr;
        min-height: 68px;
    }

    .tc-stack-card ul {
        padding-left: 1rem;
    }

    .tc-action-list li {
        grid-template-columns: 36px 1fr;
        padding: 12px;
    }

    .tc-section {
        padding: 28px 0;
    }

    .tc-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .tc-section--split {
        gap: 24px;
    }

    .tc-directory-tools {
        grid-template-columns: 1fr;
    }

    .tc-ranking-panel .tc-table,
    .tc-wide-table {
        display: block;
        width: 100%;
        min-width: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
        overflow: visible;
        white-space: normal;
    }

    .tc-ranking-panel .tc-table thead,
    .tc-wide-table thead {
        display: none;
    }

    .tc-ranking-panel .tc-table tbody,
    .tc-wide-table tbody {
        display: grid;
        gap: 10px;
        width: 100%;
    }

    .tc-ranking-panel .tc-table tr,
    .tc-wide-table tr {
        display: grid;
        gap: 7px;
        width: 100%;
        padding: 12px;
        border: 1px solid var(--tc-line);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: var(--tc-shadow-soft);
    }

    .tc-ranking-panel .tc-table td,
    .tc-wide-table td {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: start;
        gap: 8px;
        min-width: 0;
        padding: 0;
        border: 0;
        color: var(--tc-ink);
        font-size: 0.9rem;
        line-height: 1.42;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: normal;
    }

    .tc-ranking-panel .tc-table td::before,
    .tc-wide-table td::before {
        color: #5f6f86;
        font-size: 0.6rem;
        font-weight: 900;
        line-height: 1.25;
        letter-spacing: 0;
        text-transform: uppercase;
    }

    .tc-ranking-panel .tc-channel,
    .tc-wide-table strong {
        font-size: 0.95rem;
        line-height: 1.28;
    }

    .tc-ranking-panel .tc-bars {
        width: min(100%, 190px);
        min-width: 0;
        gap: 4px;
    }

    .tc-ranking-panel .tc-pill {
        width: min(100%, 190px);
        min-height: 22px;
        font-size: 0.68rem;
    }

    .tc-ranking-panel .tc-score {
        width: 34px;
        height: 34px;
        font-size: 0.72rem;
    }

    .tc-ranking-panel .tc-stars {
        font-size: 0.84rem;
    }

    .tc-hero .tc-ranking-panel .tc-table tbody {
        gap: 0;
    }

    .tc-hero .tc-ranking-panel .tc-table tr {
        grid-template-columns: 30px minmax(0, 1fr) 40px;
        align-items: center;
        gap: 10px;
        padding: 10px 12px;
        border-width: 0 0 1px;
        border-radius: 0;
        box-shadow: none;
    }

    .tc-hero .tc-ranking-panel .tc-table tr:nth-child(n + 6) {
        display: none;
    }

    .tc-hero .tc-ranking-panel .tc-table td {
        display: block;
        padding: 0;
        font-size: 0.78rem;
        line-height: 1.25;
    }

    .tc-hero .tc-ranking-panel .tc-table td::before {
        display: none;
    }

    .tc-hero .tc-ranking-panel .tc-table td:nth-child(1) {
        grid-column: 1;
    }

    .tc-hero .tc-ranking-panel .tc-table td:nth-child(2) {
        grid-column: 2;
    }

    .tc-hero .tc-ranking-panel .tc-table td:nth-child(6) {
        grid-column: 3;
        justify-self: end;
    }

    .tc-hero .tc-ranking-panel .tc-table td:nth-child(3),
    .tc-hero .tc-ranking-panel .tc-table td:nth-child(4),
    .tc-hero .tc-ranking-panel .tc-table td:nth-child(5),
    .tc-hero .tc-ranking-panel .tc-table td:nth-child(7) {
        display: none;
    }

    .tc-ranking-panel,
    .tc-wide-table {
        scroll-margin-top: 72px;
    }

    .tc-case-card figure {
        aspect-ratio: auto;
        overflow: visible;
        background: transparent;
    }

    .tc-case-card img {
        aspect-ratio: 16 / 9;
        border-bottom: 1px solid var(--tc-soft-line);
    }

    .tc-card-badge {
        position: static;
        width: max-content;
        max-width: calc(100% - 24px);
        margin: 10px 12px 0;
    }

    .tc-ranking-panel .tc-table td:nth-child(1)::before { content: "#"; }
    .tc-ranking-panel .tc-table td:nth-child(2)::before { content: "Channel"; }
    .tc-ranking-panel .tc-table td:nth-child(3)::before { content: "Potential"; }
    .tc-ranking-panel .tc-table td:nth-child(4)::before { content: "Cost"; }
    .tc-ranking-panel .tc-table td:nth-child(5)::before { content: "Speed"; }
    .tc-ranking-panel .tc-table td:nth-child(6)::before { content: "Newcomer"; }
    .tc-ranking-panel .tc-table td:nth-child(7)::before { content: "ROI"; }

    html[lang="de"] body[data-theme="trafficchaser"] .tc-ranking-panel .tc-table td:nth-child(2)::before { content: "Kanal"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-ranking-panel .tc-table td:nth-child(3)::before { content: "Potenzial"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-ranking-panel .tc-table td:nth-child(4)::before { content: "Kosten"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-ranking-panel .tc-table td:nth-child(5)::before { content: "Tempo"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-ranking-panel .tc-table td:nth-child(6)::before { content: "Newcomer"; }

    .tc-wide-table td:nth-child(1)::before { content: "Rank"; }
    .tc-wide-table td:nth-child(2)::before { content: "Channel"; }
    .tc-wide-table td:nth-child(3)::before { content: "Role"; }
    .tc-wide-table td:nth-child(4)::before { content: "Why"; }
    .tc-wide-table td:nth-child(5)::before { content: "Risk"; }

    html[lang="de"] body[data-theme="trafficchaser"] .tc-wide-table td:nth-child(1)::before { content: "Rang"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-wide-table td:nth-child(2)::before { content: "Kanal"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-wide-table td:nth-child(3)::before { content: "Rolle"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-wide-table td:nth-child(4)::before { content: "Warum"; }
    html[lang="de"] body[data-theme="trafficchaser"] .tc-wide-table td:nth-child(5)::before { content: "Achtung"; }

    .tc-ranking-panel .tc-table td:nth-child(1),
    .tc-wide-table td:nth-child(1) {
        align-items: center;
    }

    .tc-timeline {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .tc-timeline::before {
        display: none;
    }

    .tc-step {
        display: grid;
        grid-template-columns: 64px 1fr;
        gap: 14px;
        text-align: left;
        padding: 0;
    }

    .tc-step__icon {
        margin: 0;
    }

    .tc-matrix {
        min-height: 400px;
        overflow: hidden;
    }

    .tc-point {
        width: 12px;
        height: 12px;
    }

    .tc-point::after {
        display: none;
    }

    .tc-matrix-legend {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px 12px;
        margin-top: 12px;
        padding: 12px;
        border: 1px solid var(--tc-line);
        border-radius: 8px;
        background: #ffffff;
        box-shadow: var(--tc-shadow-soft);
    }

    .tc-matrix-legend span {
        display: inline-flex;
        align-items: center;
        min-width: 0;
        gap: 7px;
        color: var(--tc-ink);
        font-size: 0.74rem;
        font-weight: 800;
        line-height: 1.2;
    }

    .tc-matrix-legend span::before {
        content: "";
        width: 10px;
        height: 10px;
        flex: 0 0 10px;
        border-radius: 999px;
        background: var(--legend-color, var(--tc-blue));
        box-shadow: 0 0 0 4px color-mix(in srgb, var(--legend-color, var(--tc-blue)) 12%, transparent);
    }

    .tc-newsletter form,
    .tc-footer-grid form {
        grid-template-columns: 1fr;
    }
}

body[data-theme="trafficchaser"] a.tc-button.tc-button--primary,
body[data-theme="trafficchaser"] .tc-button.tc-button--primary,
body[data-theme="trafficchaser"] .tc-footer-grid button {
    color: #ffffff;
}

body[data-theme="trafficchaser"] .tc-panel-head h2,
body[data-theme="trafficchaser"] .tc-panel-head h3,
body[data-theme="trafficchaser"] .tc-newsletter h2,
body[data-theme="trafficchaser"] .tc-newsletter h3,
body[data-theme="trafficchaser"] .tc-footer-brand,
body[data-theme="trafficchaser"] .tc-footer-grid h3 {
    color: #ffffff;
}

body[data-theme="trafficchaser"] .tc-newsletter p,
body[data-theme="trafficchaser"] .tc-newsletter label,
body[data-theme="trafficchaser"] .tc-newsletter .tc-consent,
body[data-theme="trafficchaser"] .footer-highlight__title,
body[data-theme="trafficchaser"] .footer-highlight__subtitle,
body[data-theme="trafficchaser"] .footer-highlight__legal {
    color: #d8e6f8;
}

body[data-theme="trafficchaser"] .tc-footer-grid,
body[data-theme="trafficchaser"] .footer-content,
body[data-theme="trafficchaser"] .footer-utility,
body[data-theme="trafficchaser"] .footer-highlight {
    background: var(--tc-navy);
}

body[data-theme="trafficchaser"] .tc-footer-grid p,
body[data-theme="trafficchaser"] .tc-footer-grid li,
body[data-theme="trafficchaser"] .tc-footer-consent {
    color: #b9c9dd;
}

body[data-theme="trafficchaser"] .tc-footer-grid a,
body[data-theme="trafficchaser"] .tc-footer-consent a {
    color: #eaf3ff;
}

body[data-theme="trafficchaser"] .tc-kicker {
    color: #094aa8;
}

body[data-theme="trafficchaser"] .tc-pill--green,
body[data-theme="trafficchaser"] .tc-quadrant strong {
    color: #0b6f38;
}

body[data-theme="trafficchaser"] .tc-pill--amber {
    color: #7b4300;
    background: #fff1d7;
}

body[data-theme="trafficchaser"] .tc-pill--red,
body[data-theme="trafficchaser"] .tc-quadrant--br strong {
    color: #a51f2e;
}

body[data-theme="trafficchaser"] .tc-quadrant,
body[data-theme="trafficchaser"] .tc-table th {
    color: #526276;
}

body[data-theme="trafficchaser"] .tc-focus-controls button.is-active {
    color: #094aa8;
}

body[data-theme="trafficchaser"] .tc-score--amber {
    color: #8a4a00;
}

body[data-theme="trafficchaser"] .tc-card-badge[style*="#f59e0b"] {
    background: #9a4f00 !important;
}

body[data-theme="trafficchaser"] strong {
    color: inherit;
}

body[data-theme="trafficchaser"] .tc-testimonial strong {
    color: #8a4a00;
}

body[data-theme="trafficchaser"] .tc-newsletter a {
    color: #ffffff;
}

body[data-theme="trafficchaser"] .tc-stars {
    color: #087536;
}

body[data-theme="trafficchaser"] .tc-stars span {
    color: #64748b;
}

body[data-theme="trafficchaser"] .tc-channel__icon--g { background-color: #eef6ff; }
body[data-theme="trafficchaser"] .tc-channel__icon--yt { background-color: #fff2f4; }
body[data-theme="trafficchaser"] .tc-channel__icon--rd { background-color: #fff3ec; }
body[data-theme="trafficchaser"] .tc-channel__icon--ph { background-color: #fff3ec; }
body[data-theme="trafficchaser"] .tc-channel__icon--as { background-color: #eef6ff; }
body[data-theme="trafficchaser"] .tc-channel__icon--cr { background-color: #ecfbf7; }

body[data-theme="trafficchaser"] .tc-card-badge {
    background: #0b6f38;
}

body[data-theme="trafficchaser"] .site-nav__close--proxy {
    display: none;
    pointer-events: none;
}

body[data-theme="trafficchaser"].nav-open .site-nav__close--proxy {
    display: inline-flex;
    pointer-events: auto;
}
