:root {
    --mc-bg: #0f1214;
    --mc-bg-deep: #080b0d;
    --mc-surface: #171d20;
    --mc-surface-2: #20282b;
    --mc-ink: #f3f7f6;
    --mc-muted: #aab7b8;
    --mc-soft: #d7e1df;
    --mc-line: rgba(215, 225, 223, 0.16);
    --mc-accent: #d6b36a;
    --mc-accent-2: #b98b42;
    --mc-accent-3: #8fa7ff;
    --mc-heading-font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    --mc-max: 1180px;
    --mc-radius: 8px;
    --mc-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--mc-bg-deep);
}

body {
    margin: 0;
    background:
        linear-gradient(180deg, rgba(9, 10, 10, 0.1), var(--mc-bg) 720px),
        var(--mc-bg);
    color: var(--mc-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 17px;
    line-height: 1.65;
}

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

a {
    color: inherit;
    text-decoration-color: rgba(214, 179, 106, 0.56);
    text-underline-offset: 0.18em;
}

a:hover {
    text-decoration-color: var(--mc-accent);
}

.skip-link,
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.skip-link:focus {
    z-index: 20;
    width: auto;
    height: auto;
    padding: 0.6rem 0.8rem;
    clip: auto;
    background: var(--mc-accent);
    color: #17120a;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid var(--mc-line);
    background: rgba(9, 10, 10, 0.88);
    backdrop-filter: blur(18px);
}

.site-header__inner,
.site-footer__inner,
.mc-section,
.mc-article,
.mc-page {
    width: min(var(--mc-max), calc(100% - 32px));
    margin-inline: auto;
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 72px;
    gap: 24px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-weight: 850;
    text-decoration: none;
    min-width: max-content;
}

.site-brand__logo {
    display: block;
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
}

.site-brand__text {
    color: var(--mc-ink);
    font-size: 1.02rem;
}

.site-nav__list,
.site-footer__links {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.site-nav a,
.site-footer a {
    color: var(--mc-muted);
    font-size: 0.88rem;
    font-weight: 760;
    text-decoration: none;
}

.site-nav a:hover,
.site-footer a:hover {
    color: var(--mc-accent);
}

.mc-hero {
    min-height: min(610px, calc(100vh - 120px));
    display: grid;
    align-items: center;
    margin-bottom: 8px;
    padding: 68px 0 64px;
    background:
        linear-gradient(90deg, rgba(9, 10, 10, 0.96) 0%, rgba(9, 10, 10, 0.78) 40%, rgba(9, 10, 10, 0.24) 100%),
        linear-gradient(0deg, rgba(9, 10, 10, 0.88), rgba(9, 10, 10, 0.04) 42%),
        url("../images/studio-lab-hero.webp") center right / cover no-repeat;
    border-bottom: 1px solid var(--mc-line);
}

.mc-hero__inner {
    width: min(var(--mc-max), calc(100% - 32px));
    margin-inline: auto;
}

.mc-hero h1,
.mc-page__header h1,
.mc-article__header h1,
.mc-section__header h1 {
    max-width: 850px;
    margin: 0;
    font-family: var(--mc-heading-font);
    font-size: clamp(2.35rem, 4.9vw, 4.8rem);
    line-height: 1.02;
    font-weight: 850;
}

.mc-hero p {
    max-width: 660px;
    margin: 20px 0 0;
    color: var(--mc-soft);
    font-size: 1.1rem;
}

.eyebrow {
    margin: 0 0 14px;
    color: var(--mc-accent);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mc-hero__trust {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.mc-hero__trust span,
.mc-card__meta span,
.mc-category span {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 9px;
    border: 1px solid rgba(214, 179, 106, 0.3);
    color: var(--mc-accent);
    background: rgba(214, 179, 106, 0.08);
    font-size: 0.74rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mc-search {
    display: flex;
    align-items: stretch;
    width: min(100%, 620px);
    margin-top: 30px;
    border: 1px solid rgba(244, 239, 230, 0.22);
    background: rgba(15, 16, 16, 0.82);
    border-radius: var(--mc-radius);
    overflow: hidden;
    box-shadow: var(--mc-shadow);
}

.mc-search input {
    flex: 1;
    min-width: 0;
    border: 0;
    padding: 15px 16px;
    color: var(--mc-ink);
    font: inherit;
    background: transparent;
}

.mc-search input::placeholder {
    color: rgba(244, 239, 230, 0.48);
}

.mc-search button,
.mc-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    border: 0;
    padding: 0 18px;
    background: var(--mc-accent);
    color: #17120a;
    font: inherit;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
}

.mc-search button:hover,
.mc-button:hover {
    background: #e3c27f;
}

.mc-section {
    padding: 58px 0;
}

.mc-section--alt {
    width: 100%;
    max-width: none;
    padding-inline: max(16px, calc((100% - var(--mc-max)) / 2));
    background: #141414;
    border-block: 1px solid var(--mc-line);
}

.mc-section--compact {
    padding-block: 34px;
}

.mc-section__header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 430px);
    gap: 28px;
    align-items: end;
    margin-bottom: 26px;
}

.mc-section__header .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: -12px;
}

.mc-section__header h1,
.mc-section__header h2 {
    margin: 0;
    font-family: var(--mc-heading-font);
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.04;
}

.mc-section__header p:not(.eyebrow) {
    margin: 0;
    color: var(--mc-muted);
}

.mc-category-grid,
.mc-card-grid,
.mc-path-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.mc-card-grid--featured .mc-card:first-child {
    grid-column: span 2;
}

.mc-category,
.mc-card,
.mc-empty-state,
.mc-product-card,
.mc-quick-verdict,
.mc-disclosure,
.mc-testing-note,
.mc-path-card,
.mc-testing-band {
    border: 1px solid var(--mc-line);
    border-radius: var(--mc-radius);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)), var(--mc-surface);
}

.mc-category {
    display: block;
    min-height: 190px;
    padding: 22px;
    text-decoration: none;
}

.mc-category:hover,
.mc-card:hover,
.mc-path-card:hover {
    border-color: rgba(214, 179, 106, 0.55);
}

.mc-category h3,
.mc-card h2,
.mc-product-card h3 {
    margin: 14px 0 0;
    font-size: 1.12rem;
    line-height: 1.25;
}

.mc-category p,
.mc-card p,
.mc-empty-state p,
.mc-path-card strong,
.mc-testing-band p {
    color: var(--mc-muted);
}

.mc-category p,
.mc-card p,
.mc-empty-state p {
    margin: 10px 0 0;
}

.mc-card {
    overflow: hidden;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.18);
}

.mc-card__media {
    position: relative;
    display: grid;
    place-items: end start;
    aspect-ratio: 4 / 3;
    padding: 18px;
    color: var(--mc-accent);
    font-weight: 850;
    text-decoration: none;
    background:
        linear-gradient(135deg, rgba(214, 179, 106, 0.22), transparent 44%),
        linear-gradient(180deg, #252421, #141414);
}

.mc-card__media::before {
    content: "";
    position: absolute;
    right: 28px;
    top: 30px;
    width: 118px;
    height: 68px;
    border-block: 2px solid rgba(214, 179, 106, 0.44);
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.6) 0 8px, transparent 8px 18px),
        linear-gradient(90deg, rgba(244, 239, 230, 0.22) 0 2px, transparent 2px 18px);
}

.mc-card__media::after {
    content: "";
    position: absolute;
    right: 34px;
    bottom: 28px;
    width: 118px;
    height: 40px;
    border: 2px solid rgba(244, 239, 230, 0.2);
    border-radius: 8px;
}

.mc-card__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mc-card__media span {
    position: relative;
    z-index: 1;
}

.mc-card__media--image::before {
    display: none;
}

.mc-card__media--image::after {
    z-index: 1;
    inset: 0;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(8, 9, 9, 0.06), rgba(8, 9, 9, 0.74)),
        linear-gradient(90deg, rgba(8, 9, 9, 0.42), transparent 58%);
}

.mc-card__media--image img {
    z-index: 0;
    filter: saturate(0.94) contrast(1.04);
}

.mc-card__media--image span {
    z-index: 2;
}

.mc-card__body {
    padding: 18px;
}

.mc-card__meta,
.mc-byline {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    color: var(--mc-muted);
    font-size: 0.84rem;
    font-weight: 760;
}

.mc-card h2 a {
    text-decoration: none;
}

.mc-card__cta {
    display: inline-flex;
    margin-top: 16px;
    color: var(--mc-accent);
    font-size: 0.86rem;
    font-weight: 850;
}

.mc-card__decision {
    display: grid;
    gap: 7px;
    margin: 16px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--mc-line);
}

.mc-card__decision div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px;
}

.mc-card__decision dt {
    color: var(--mc-accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-card__decision dd {
    margin: 0;
    color: var(--mc-soft);
    font-size: 0.82rem;
    line-height: 1.35;
}

.mc-empty-state {
    grid-column: 1 / -1;
    padding: 28px;
}

.mc-category {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.mc-category::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 9, 9, 0.24), rgba(8, 9, 9, 0.88)),
        linear-gradient(90deg, rgba(8, 9, 9, 0.72), rgba(8, 9, 9, 0.18));
}

.mc-category img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.72;
    filter: saturate(0.9) contrast(1.03);
}

.mc-category span,
.mc-category h3,
.mc-category p {
    position: relative;
    z-index: 2;
}

.mc-path-card {
    display: grid;
    gap: 14px;
    min-height: 185px;
    padding: 24px;
    text-decoration: none;
}

.mc-path-card span {
    color: var(--mc-accent);
    font-size: 0.8rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mc-path-card strong {
    font-size: 1.1rem;
    line-height: 1.38;
}

.mc-testing-band {
    padding: 30px;
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.15), rgba(156, 119, 54, 0.08)),
        var(--mc-surface-2);
}

.mc-testing-band h2,
.mc-newsletter-band h2 {
    max-width: 860px;
    margin: 0;
    font-family: var(--mc-heading-font);
    font-size: clamp(1.8rem, 3vw, 3rem);
    line-height: 1.05;
}

.mc-testing-band .mc-button {
    margin-top: 20px;
}

.mc-newsletter-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
    gap: 28px;
    align-items: center;
    border: 1px solid rgba(214, 179, 106, 0.42);
    border-radius: var(--mc-radius);
    padding: 30px;
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.18), rgba(184, 93, 50, 0.08)),
        var(--mc-surface);
}

.mc-newsletter-band p {
    color: var(--mc-muted);
}

.mc-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
}

.mc-newsletter-form input {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(244, 239, 230, 0.2);
    border-radius: 8px;
    padding: 0 14px;
    background: rgba(9, 10, 10, 0.82);
    color: var(--mc-ink);
}

.mc-newsletter-form button {
    min-height: 48px;
    border: 0;
    border-radius: 8px;
    padding: 0 18px;
    background: var(--mc-accent);
    color: #111;
    cursor: pointer;
    font-weight: 850;
}

.mc-article,
.mc-page {
    padding: 56px 0 74px;
}

.mc-archive-hero {
    padding-top: 70px;
}

.mc-library-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.78fr);
    gap: 34px;
    align-items: stretch;
}

.mc-library-hero .mc-section__header {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: end;
    margin-bottom: 0;
}

.mc-quick-paths--inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
}

.mc-quick-paths--inline a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: var(--mc-radius);
    padding: 8px 12px;
    background: rgba(8, 9, 9, 0.52);
    color: var(--mc-soft);
    font-size: 0.86rem;
    font-weight: 820;
    text-decoration: none;
}

.mc-quick-paths--inline a:hover {
    border-color: rgba(214, 179, 106, 0.55);
    color: var(--mc-accent);
}

.mc-archive-visual,
.mc-page__visual,
.mc-hub-visual,
.mc-featured-image {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    border: 1px solid var(--mc-line);
    border-radius: var(--mc-radius);
    background: var(--mc-surface);
}

.mc-archive-visual,
.mc-page__visual,
.mc-hub-visual {
    min-height: 420px;
    margin: 0;
}

.mc-archive-visual::after,
.mc-page__visual::after,
.mc-hub-visual::after,
.mc-featured-image::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        linear-gradient(180deg, rgba(8, 9, 9, 0.02), rgba(8, 9, 9, 0.54)),
        linear-gradient(90deg, rgba(8, 9, 9, 0.26), transparent 58%);
}

.mc-archive-visual img,
.mc-page__visual img,
.mc-hub-visual img,
.mc-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.94) contrast(1.04);
}

.mc-archive-visual figcaption,
.mc-featured-image figcaption {
    position: absolute;
    inset: auto 18px 18px;
    z-index: 2;
    display: grid;
    gap: 7px;
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: var(--mc-radius);
    padding: 14px;
    background: rgba(8, 9, 9, 0.76);
    backdrop-filter: blur(16px);
}

.mc-archive-visual figcaption span,
.mc-featured-image figcaption {
    color: var(--mc-accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-archive-visual figcaption strong {
    color: var(--mc-ink);
    font-family: var(--mc-heading-font);
    font-size: 1.14rem;
    line-height: 1.25;
}

.mc-listing-section {
    padding-top: 34px;
}

.mc-hub-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 34px;
    align-items: center;
    padding-top: 48px;
    padding-bottom: 46px;
}

.mc-hub-copy {
    display: flex;
    min-height: 342px;
    flex-direction: column;
    justify-content: center;
}

.mc-hub-copy .eyebrow {
    margin: 0 0 14px;
}

.mc-hub-copy h1 {
    max-width: 760px;
    margin: 0;
    font-family: var(--mc-heading-font);
    font-size: clamp(2.55rem, 5vw, 4.75rem);
    line-height: 1.01;
}

.mc-hub-description {
    max-width: 640px;
    margin: 18px 0 0;
    color: var(--mc-muted);
    font-size: 1.08rem;
    line-height: 1.65;
}

.mc-hub-side {
    display: grid;
    gap: 16px;
    align-self: center;
}

.mc-hub-side .mc-hub-answer {
    margin-top: 0;
}

.mc-hub-side .mc-hub-visual {
    min-height: 300px;
    aspect-ratio: 4 / 3;
}

.mc-hub-answer {
    border: 1px solid rgba(214, 179, 106, 0.42);
    border-radius: var(--mc-radius);
    padding: 20px;
    background:
        linear-gradient(145deg, rgba(214, 179, 106, 0.14), rgba(156, 119, 54, 0.08)),
        var(--mc-surface);
}

.mc-hub-copy .mc-hub-answer {
    max-width: 640px;
    margin-top: 24px;
}

.mc-hub-answer span {
    display: block;
    margin-bottom: 10px;
    color: var(--mc-accent);
    font-size: 0.78rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mc-hub-answer strong {
    display: block;
    color: var(--mc-ink);
    font-family: var(--mc-heading-font);
    font-size: clamp(1.06rem, 1.65vw, 1.32rem);
    font-weight: 700;
    line-height: 1.25;
}

.mc-hub-section {
    padding-top: 34px;
}

.mc-faq-index-section {
    padding-top: 26px;
}

.mc-faq-hub-hero + .mc-faq-index-section {
    padding-top: 18px;
}

.mc-article__header,
.mc-page__header {
    margin-bottom: 34px;
}

.mc-article__hero,
.mc-page__hero {
    display: grid;
    grid-template-columns: minmax(0, 0.98fr) minmax(340px, 0.82fr);
    gap: 34px;
    align-items: stretch;
}

.mc-article__headline,
.mc-page__hero > div {
    display: flex;
    min-height: 420px;
    flex-direction: column;
    justify-content: end;
}

.mc-article__dek {
    max-width: 680px;
    margin: 22px 0 0;
    color: var(--mc-soft);
    font-size: 1.08rem;
}

.mc-article__summary {
    display: grid;
    gap: 9px;
    max-width: 680px;
    margin: 24px 0 0;
    border: 1px solid rgba(214, 179, 106, 0.28);
    border-radius: var(--mc-radius);
    padding: 14px;
    background: rgba(214, 179, 106, 0.06);
}

.mc-article__summary div {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 12px;
}

.mc-article__summary dt {
    color: var(--mc-accent);
    font-size: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-article__summary dd {
    margin: 0;
    color: var(--mc-soft);
    font-size: 0.88rem;
    line-height: 1.4;
}

.mc-article__hero .mc-featured-image {
    min-height: 420px;
    margin: 0;
}

.mc-article__layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 760px);
    gap: 48px;
    align-items: start;
}

.mc-article__meta {
    position: sticky;
    top: 96px;
}

.mc-article__decision-card {
    border: 1px solid rgba(214, 179, 106, 0.35);
    border-radius: var(--mc-radius);
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(214, 179, 106, 0.11), rgba(156, 119, 54, 0.06)),
        var(--mc-surface);
}

.mc-article__decision-card > span {
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    margin-bottom: 14px;
    border: 1px solid rgba(214, 179, 106, 0.34);
    border-radius: var(--mc-radius);
    padding: 4px 9px;
    color: var(--mc-accent);
    background: rgba(214, 179, 106, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-affiliate-cta,
.mc-related-paths {
    border: 1px solid rgba(214, 179, 106, 0.35);
    border-radius: var(--mc-radius);
    padding: 18px;
    background:
        linear-gradient(145deg, rgba(214, 179, 106, 0.12), rgba(156, 119, 54, 0.06)),
        var(--mc-surface);
}

.mc-affiliate-cta {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.mc-affiliate-cta span {
    color: var(--mc-accent);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.mc-affiliate-cta .mc-button {
    width: 100%;
    border-radius: var(--mc-radius);
}

.mc-affiliate-cta p {
    margin: 0;
    color: var(--mc-muted);
    font-size: 0.82rem;
    line-height: 1.45;
}

.mc-article__meta dl,
.mc-product-card dl {
    margin: 0 0 16px;
}

.mc-article__meta dt,
.mc-product-card dt {
    color: var(--mc-accent);
    font-size: 0.76rem;
    font-weight: 850;
    text-transform: uppercase;
}

.mc-article__meta dd,
.mc-product-card dd {
    margin: 0 0 12px;
}

.mc-disclosure,
.mc-quick-verdict,
.mc-testing-note,
.mc-product-card {
    padding: 18px;
}

.mc-disclosure {
    color: var(--mc-muted);
    font-size: 0.92rem;
}

.mc-quick-verdict {
    border-left: 5px solid var(--mc-accent);
    margin: 0 0 24px;
}

.mc-search-hero .mc-search {
    margin-top: 22px;
}

.mc-featured-image {
    margin: 28px 0 0;
}

.mc-featured-image img {
    width: 100%;
    border-radius: var(--mc-radius);
}

.mc-article__content,
.mc-page__content {
    color: var(--mc-soft);
    font-size: 1.08rem;
}

.mc-article__content h2,
.mc-page__content h2 {
    margin-top: 2.15em;
    color: var(--mc-ink);
    font-family: var(--mc-heading-font);
    font-size: 2rem;
    line-height: 1.15;
}

.mc-article__content ul,
.mc-page__content ul {
    padding-left: 1.2rem;
}

.mc-article__content table,
.mc-page__content table {
    width: 100%;
    margin: 18px 0 28px;
    border-collapse: collapse;
    border: 1px solid var(--mc-line);
    background: rgba(255, 255, 255, 0.025);
}

.mc-article__content th,
.mc-article__content td,
.mc-page__content th,
.mc-page__content td {
    border-bottom: 1px solid var(--mc-line);
    padding: 13px 14px;
    text-align: left;
    vertical-align: top;
}

.mc-article__content th,
.mc-page__content th {
    color: var(--mc-accent);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.mc-required-framework {
    margin-bottom: 34px;
}

.mc-related-paths {
    margin-top: 36px;
}

.mc-faq-navigation {
    border-left: 4px solid var(--mc-accent);
    border-radius: var(--mc-radius);
    padding: 20px;
    background: rgba(214, 179, 106, 0.06);
}

.mc-related-paths h2 {
    margin: 0 0 16px;
}

.mc-related-paths div {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.mc-related-paths a {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: var(--mc-radius);
    padding: 8px 12px;
    color: var(--mc-soft);
    background: rgba(8, 9, 9, 0.42);
    font-size: 0.86rem;
    font-weight: 820;
    text-decoration: none;
}

.mc-related-paths a:hover {
    border-color: rgba(214, 179, 106, 0.55);
    color: var(--mc-accent);
}

.mc-table-scroll {
    overflow-x: auto;
    margin: 16px 0 26px;
}

.mc-scorecard {
    width: 100%;
    min-width: 560px;
    border-collapse: collapse;
    border: 1px solid var(--mc-line);
    background: rgba(255, 255, 255, 0.025);
}

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

.mc-scorecard th {
    color: var(--mc-accent);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.mc-procon-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin: 16px 0 24px;
}

.mc-procon-grid > div {
    border: 1px solid var(--mc-line);
    border-radius: var(--mc-radius);
    padding: 18px;
    background: var(--mc-surface);
}

.mc-procon-grid h3 {
    margin-top: 0;
    color: var(--mc-accent);
}

.mc-required-list {
    margin-bottom: 24px;
}

.mc-faq-grid {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

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

.mc-faq-card {
    border: 1px solid var(--mc-line);
    border-radius: var(--mc-radius);
    padding: 20px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
        var(--mc-surface);
}

.mc-faq-card h3 {
    margin: 0;
    color: var(--mc-ink);
    font-family: var(--mc-heading-font);
    font-size: 1.28rem;
    line-height: 1.2;
}

.mc-faq-card p {
    margin: 12px 0 0;
    color: var(--mc-muted);
}

.mc-faq-topic-link {
    display: inline-flex;
    margin-top: 20px;
    color: var(--mc-accent);
    font-weight: 850;
}

.mc-faq-item {
    border: 1px solid var(--mc-line);
    border-radius: 8px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.035);
}

.mc-faq-item summary {
    cursor: pointer;
    color: var(--mc-ink);
    font-weight: 850;
}

.mc-faq-item p {
    margin: 12px 0 0;
    color: var(--mc-muted);
}

.site-footer {
    border-top: 1px solid var(--mc-line);
    padding: 34px 0;
    background: #0b0c0d;
}

.site-footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.site-footer p {
    margin: 4px 0 0;
    color: var(--mc-muted);
}

.pagination {
    margin-top: 28px;
}

.mc-breadcrumb {
    width: min(var(--mc-max), calc(100% - 32px));
    margin: 0 auto;
    padding-top: 24px;
    color: var(--mc-muted);
    font-size: 0.78rem;
    font-weight: 800;
}

.mc-breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mc-breadcrumb li {
    display: inline-flex;
    gap: 8px;
    align-items: center;
}

.mc-breadcrumb li:not(:last-child)::after {
    content: "/";
    color: rgba(244, 239, 230, 0.32);
}

.mc-breadcrumb a {
    color: var(--mc-muted);
    text-decoration: none;
}

.mc-breadcrumb a:hover {
    color: var(--mc-accent);
}

@media (max-width: 980px) {
    .site-header__inner,
    .site-footer__inner,
    .mc-article__layout,
    .mc-article__hero,
    .mc-page__hero,
    .mc-library-hero,
    .mc-hub-hero,
    .mc-newsletter-band {
        display: block;
    }

    .mc-library-hero .mc-section__header,
    .mc-hub-copy,
    .mc-article__headline,
    .mc-page__hero > div {
        min-height: auto;
    }

    .mc-archive-visual,
    .mc-page__visual,
    .mc-article__hero .mc-featured-image {
        min-height: 330px;
        margin-top: 24px;
    }

    .mc-hub-answer {
        margin-top: 0;
    }

    .mc-hub-side {
        margin-top: 16px;
    }

    .mc-newsletter-form {
        margin-top: 20px;
    }

    .site-nav__list,
    .site-footer__links {
        flex-wrap: wrap;
        margin-top: 14px;
    }

    .mc-section__header,
    .mc-category-grid,
    .mc-card-grid,
    .mc-path-grid,
    .mc-procon-grid,
    .mc-faq-card-grid {
        grid-template-columns: 1fr;
    }

    .mc-card-grid--featured .mc-card:first-child {
        grid-column: auto;
    }

    .mc-section__header .eyebrow {
        margin-bottom: -6px;
    }

    .mc-article__meta {
        position: static;
        margin-bottom: 24px;
    }

    .mc-article__layout {
        display: flex;
        flex-direction: column;
    }

    .mc-article__content {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        order: 1;
    }

    .mc-article__meta {
        order: 2;
    }
}

@media (max-width: 680px) {
    body {
        font-size: 16px;
    }

    .mc-article__content table,
    .mc-page__content table {
        display: block;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .mc-article__content th,
    .mc-article__content td,
    .mc-page__content th,
    .mc-page__content td {
        min-width: 150px;
    }

    .mc-hero {
        min-height: auto;
        padding: 54px 0 48px;
        background-position: center;
    }

    .mc-hero h1,
    .mc-page__header h1,
    .mc-article__header h1,
    .mc-section__header h1 {
        font-size: 2.55rem;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .mc-table-scroll {
        overflow-x: visible;
    }

    .mc-scorecard {
        display: block;
        width: 100%;
        min-width: 0;
        border: 0;
        background: transparent;
    }

    .mc-scorecard thead {
        display: none;
    }

    .mc-scorecard tbody,
    .mc-scorecard tr,
    .mc-scorecard td {
        display: block;
        width: 100%;
    }

    .mc-scorecard tr {
        margin: 0 0 14px;
        border: 1px solid var(--mc-line);
        border-radius: var(--mc-radius);
        background: rgba(255, 255, 255, 0.035);
        overflow: hidden;
    }

    .mc-scorecard td {
        min-width: 0;
        border-bottom: 1px solid var(--mc-line);
        padding: 12px 13px 13px;
    }

    .mc-scorecard td:last-child {
        border-bottom: 0;
    }

    .mc-scorecard td::before {
        content: attr(data-label);
        display: block;
        margin-bottom: 5px;
        color: var(--mc-accent);
        font-size: 0.72rem;
        font-weight: 820;
        letter-spacing: 0.04em;
        text-transform: uppercase;
    }

    .mc-article,
    .mc-page {
        padding: 36px 0 54px;
    }

    .mc-archive-hero {
        padding-top: 42px;
    }

    .mc-library-hero {
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .mc-library-hero .mc-section__header {
        align-items: flex-start;
        justify-content: flex-start;
    }

    .mc-library-hero .mc-section__header .eyebrow {
        margin-bottom: 8px;
    }

    .mc-library-hero .mc-section__header h1 {
        width: 100%;
        font-size: 2.32rem;
        line-height: 1.02;
        text-align: left;
    }

    .mc-library-hero .mc-section__header p:not(.eyebrow) {
        margin-top: 12px;
        line-height: 1.5;
    }

    .mc-library-hero .mc-quick-paths--inline {
        margin-top: 16px;
    }

    .mc-hub-hero {
        padding-top: 22px;
        padding-bottom: 18px;
    }

    .mc-hub-copy h1 {
        font-size: 2.08rem;
        line-height: 1.03;
    }

    .mc-hub-description {
        margin-top: 9px;
        font-size: 0.96rem;
        line-height: 1.42;
    }

    .mc-archive-visual,
    .mc-page__visual,
    .mc-hub-side .mc-hub-visual,
    .mc-article__hero .mc-featured-image {
        min-height: 248px;
    }

    .mc-article__hero .mc-featured-image {
        display: block;
        margin-top: 18px;
    }

    .mc-hub-side .mc-hub-visual {
        min-height: 92px;
        max-height: 106px;
        aspect-ratio: 16 / 5;
    }

    .mc-hub-answer {
        padding: 12px;
    }

    .mc-hub-copy .mc-hub-answer {
        margin-top: 12px;
    }

    .mc-hub-answer span {
        margin-bottom: 6px;
        font-size: 0.7rem;
    }

    .mc-hub-answer strong {
        font-size: 0.98rem;
        line-height: 1.18;
    }

    .mc-hub-side {
        margin-top: 10px;
    }

    .mc-hub-section {
        padding-top: 18px;
    }

    .mc-hub-section .mc-section__header {
        gap: 8px;
        margin-bottom: 12px;
    }

    .mc-hub-section .mc-section__header .eyebrow {
        margin-bottom: 0;
    }

    .mc-hub-section .mc-section__header h2 {
        font-size: 1.84rem;
        line-height: 1.05;
    }

    .mc-hub-section .mc-section__header p:not(.eyebrow) {
        display: none;
    }

    .mc-archive-visual figcaption,
    .mc-featured-image figcaption {
        inset: auto 12px 12px;
        padding: 11px;
    }

    .mc-archive-visual figcaption strong {
        font-size: 0.98rem;
    }

    .mc-library-hero .mc-archive-visual {
        min-height: 148px;
        aspect-ratio: 16 / 7;
        margin-top: 16px;
    }

    .mc-library-hero .mc-archive-visual figcaption {
        inset: auto 10px 10px;
        padding: 10px;
    }

    .mc-library-hero .mc-archive-visual figcaption span {
        font-size: 0.64rem;
    }

    .mc-library-hero .mc-archive-visual figcaption strong {
        font-size: 0.86rem;
        line-height: 1.2;
    }

    .mc-listing-section {
        padding-top: 22px;
    }

    .mc-quick-paths--inline {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 2px;
        scrollbar-width: none;
    }

    .mc-quick-paths--inline::-webkit-scrollbar {
        display: none;
    }

    .mc-quick-paths--inline a {
        flex: 0 0 auto;
        min-height: 34px;
        font-size: 0.8rem;
    }

    .mc-card {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
    }

    .mc-card__media {
        min-height: 138px;
        aspect-ratio: auto;
    }

    .mc-card__body {
        padding: 13px;
    }

    .mc-card h2 {
        font-size: 1.02rem;
    }

    .mc-card__body > p {
        display: none;
    }

    .mc-card__decision {
        gap: 5px;
        margin-top: 10px;
        padding-top: 8px;
    }

    .mc-card__decision div {
        grid-template-columns: 62px 1fr;
        gap: 7px;
    }

    .mc-card__decision dt {
        font-size: 0.6rem;
    }

    .mc-card__decision dd {
        font-size: 0.74rem;
    }

    .mc-faq-card {
        padding: 16px;
    }

    .mc-breadcrumb {
        padding-top: 14px;
        font-size: 0.72rem;
    }

    .mc-article__summary div {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 8px;
    }

    .mc-article__summary dd {
        font-size: 0.8rem;
    }

    .mc-affiliate-cta {
        margin-bottom: 16px;
    }

    .mc-search {
        display: grid;
    }

    .mc-search button {
        min-height: 48px;
    }

    .mc-newsletter-form {
        grid-template-columns: 1fr;
    }

    .mc-section {
        padding-block: 42px;
    }

    .site-header__inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        min-height: 64px;
        gap: 14px;
        padding-block: 8px;
    }

    .site-brand {
        min-width: 0;
    }

    .site-brand__logo {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .site-brand__text {
        display: none;
    }

    .site-nav {
        min-width: 0;
        width: 100%;
        overflow: visible;
    }

    .site-nav::-webkit-scrollbar {
        display: none;
    }

    .site-nav__list {
        flex-wrap: wrap;
        gap: 8px 14px;
        margin-top: 0;
        white-space: normal;
    }

    .site-nav a {
        display: block;
        font-size: 0.78rem;
        line-height: 1.25;
    }
}

/* Homepage V1 fidelity pass */
body.home {
    background:
        radial-gradient(circle at 80% 18%, rgba(214, 179, 106, 0.11), transparent 30%),
        linear-gradient(180deg, rgba(9, 10, 10, 0), var(--mc-bg) 720px),
        var(--mc-bg);
}

body.home .site-header {
    position: sticky;
    border-bottom-color: var(--mc-line);
    background: rgba(9, 10, 10, 0.92);
}

body.home .site-header__inner,
body.home .site-footer__inner,
body.home .mc-section {
    width: min(var(--mc-max), calc(100% - 80px));
}

body.home .site-header__inner {
    min-height: 78px;
    gap: 28px;
}

body.home .site-nav__list {
    gap: 15px;
    white-space: nowrap;
}

body.home .site-nav a {
    font-size: 0.82rem;
    font-weight: 800;
}

body.home .site-nav .current-menu-item > a,
body.home .site-nav .current_page_item > a,
body.home .site-nav .menu-item-faq > a:hover {
    color: var(--mc-accent);
}

body.home .mc-hero {
    position: relative;
    min-height: 590px;
    margin-bottom: 0;
    padding: 0;
    overflow: hidden;
    background:
        linear-gradient(90deg, rgba(8, 9, 9, 0.98) 0%, rgba(8, 9, 9, 0.78) 43%, rgba(8, 9, 9, 0.28) 100%),
        linear-gradient(0deg, rgba(8, 9, 9, 0.92), rgba(8, 9, 9, 0.08) 45%),
        url("../images/gear/hero-gear-studio.webp") center right / cover no-repeat;
}

body.home .mc-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 220px;
    background: linear-gradient(180deg, transparent, rgba(15, 18, 20, 0.94));
    pointer-events: none;
}

body.home .mc-hero__inner {
    position: relative;
    z-index: 1;
    width: min(var(--mc-max), calc(100% - 80px));
    padding: 68px 0 72px;
}

body.home .mc-hero h1 {
    max-width: 820px;
    font-size: clamp(2.55rem, 4.65vw, 4.7rem);
    line-height: 1.02;
}

body.home .mc-hero p:not(.eyebrow) {
    max-width: 650px;
    margin-top: 26px;
    font-size: 1.14rem;
}

body.home .mc-search {
    width: min(100%, 650px);
    margin-top: 34px;
    border-radius: 8px;
    overflow: visible;
}

body.home .mc-search input {
    min-height: 64px;
    padding: 0 24px;
}

body.home .mc-search button {
    min-width: 116px;
    min-height: auto;
    margin: 8px;
    border-radius: 8px;
}

body.home .mc-quick-paths {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    max-width: 760px;
    margin-top: 18px;
}

body.home .mc-quick-paths a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    border: 1px solid rgba(244, 239, 230, 0.18);
    border-radius: 8px;
    padding: 8px 12px;
    background: rgba(8, 9, 9, 0.52);
    color: var(--mc-soft);
    font-size: 0.88rem;
    font-weight: 820;
    text-decoration: none;
}

body.home .mc-quick-paths a:hover {
    border-color: rgba(214, 179, 106, 0.55);
    color: var(--mc-accent);
}

body.home .mc-section {
    padding: 70px 0;
}

body.home .mc-section--trust {
    padding: 22px 0 0;
}

body.home .mc-home-trust-strip {
    display: flex;
    gap: 12px;
    align-items: center;
    border: 1px solid rgba(214, 179, 106, 0.34);
    border-radius: 8px;
    padding: 14px 18px;
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.13), rgba(156, 119, 54, 0.06)),
        rgba(25, 26, 25, 0.86);
    color: var(--mc-muted);
}

body.home .mc-home-trust-strip strong {
    color: var(--mc-accent);
    white-space: nowrap;
}

body.home .mc-section--compact {
    padding-block: 48px;
}

body.home .mc-section--alt {
    width: 100%;
    max-width: none;
    padding-inline: max(16px, calc((100% - var(--mc-max)) / 2));
    border-block: 1px solid var(--mc-line);
    background: rgba(255, 255, 255, 0.025);
}

body.home .mc-section__header {
    grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.72fr);
    gap: 44px;
    margin-bottom: 24px;
}

body.home .mc-section__header .eyebrow {
    grid-column: 1 / -1;
}

body.home .mc-section__header h2 {
    font-size: clamp(2.25rem, 3vw, 2.48rem);
    line-height: 1.05;
}

body.home .mc-card-grid,
body.home .mc-category-grid,
body.home .mc-path-grid {
    gap: 18px;
}

body.home .mc-card-grid--latest {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.home .mc-card,
body.home .mc-category,
body.home .mc-path-card,
body.home .mc-decision-card,
body.home .mc-testing-band,
body.home .mc-faq-home-panel,
body.home .mc-newsletter-band {
    border: 1px solid var(--mc-line);
    border-radius: var(--mc-radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
        var(--mc-surface);
}

body.home .mc-card {
    min-height: 420px;
    box-shadow: 0 18px 56px rgba(0, 0, 0, 0.22);
}

body.home .mc-card:hover,
body.home .mc-category:hover,
body.home .mc-path-card:hover,
body.home .mc-decision-card:hover {
    border-color: rgba(214, 179, 106, 0.36);
}

body.home .mc-card__media {
    height: 180px;
    aspect-ratio: auto;
    background:
        linear-gradient(135deg, rgba(214, 179, 106, 0.24), transparent 48%),
        linear-gradient(180deg, #292824, #151515);
}

body.home .mc-card__media img {
    z-index: 0;
    filter: saturate(0.92) contrast(1.04);
}

body.home .mc-card__media::before {
    display: none;
}

body.home .mc-card__media::after {
    z-index: 1;
    inset: 0;
    right: auto;
    bottom: auto;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background:
        linear-gradient(180deg, rgba(8, 9, 9, 0.12), rgba(8, 9, 9, 0.78)),
        linear-gradient(90deg, rgba(8, 9, 9, 0.46), transparent 58%);
}

body.home .mc-card__media span {
    position: relative;
    z-index: 2;
}

body.home .mc-card-grid--featured .mc-card:first-child .mc-card__media {
    height: 220px;
}

body.home .mc-card__body {
    padding: 20px;
}

body.home .mc-card h2,
body.home .mc-category h3,
body.home .mc-decision-card h3 {
    margin: 14px 0 0;
    font-family: var(--mc-heading-font);
    font-size: 1.35rem;
    line-height: 1.18;
}

body.home .mc-card-grid--latest .mc-card h2,
body.home .mc-card-grid--latest .mc-category h3 {
    font-size: 1.18rem;
}

body.home .mc-card-grid--latest .mc-card {
    min-height: 330px;
}

body.home .mc-card-grid--latest .mc-card__media {
    height: 136px;
}

body.home .mc-category {
    position: relative;
    min-height: 188px;
    padding: 22px;
    overflow: hidden;
    isolation: isolate;
}

body.home .mc-category::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(8, 9, 9, 0.28), rgba(8, 9, 9, 0.9)),
        linear-gradient(90deg, rgba(8, 9, 9, 0.76), rgba(8, 9, 9, 0.24));
}

body.home .mc-category img {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    filter: saturate(0.9) contrast(1.02);
}

body.home .mc-category span,
body.home .mc-category h3,
body.home .mc-category p {
    position: relative;
    z-index: 2;
}

body.home .mc-path-card {
    min-height: 190px;
    padding: 24px;
    background:
        linear-gradient(145deg, rgba(156, 119, 54, 0.12), rgba(214, 179, 106, 0.07)),
        var(--mc-surface);
}

body.home .mc-decision-card {
    display: grid;
    gap: 16px;
    min-height: 420px;
    padding: 24px;
}

body.home .mc-card__decision {
    display: grid;
    gap: 7px;
    margin: 16px 0 0;
    padding-top: 12px;
    border-top: 1px solid var(--mc-line);
}

body.home .mc-card__decision div {
    display: grid;
    grid-template-columns: 82px 1fr;
    gap: 10px;
}

body.home .mc-card__decision dt {
    color: var(--mc-accent);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.home .mc-card__decision dd {
    margin: 0;
    color: var(--mc-soft);
    font-size: 0.82rem;
    line-height: 1.35;
}

body.home .mc-card-grid--latest .mc-card__decision {
    display: none;
}

body.home .mc-decision-card > span,
body.home .mc-faq-home-list a,
body.home .mc-card__meta span,
body.home .mc-category span,
body.home .mc-hero__trust span {
    border: 1px solid rgba(214, 179, 106, 0.35);
    color: var(--mc-accent);
    background: rgba(214, 179, 106, 0.08);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

body.home .mc-decision-card > span {
    display: inline-flex;
    width: fit-content;
    min-height: 30px;
    align-items: center;
    padding: 5px 10px;
}

body.home .mc-decision-card p {
    margin: 0;
    color: var(--mc-muted);
}

body.home .mc-decision-card div {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 14px;
    border-top: 1px solid var(--mc-line);
    padding-top: 14px;
    color: var(--mc-muted);
    font-style: normal;
    font-size: 0.92rem;
}

body.home .mc-decision-card strong {
    color: var(--mc-accent);
    font-size: 0.72rem;
    text-transform: uppercase;
}

body.home .mc-decision-card em {
    color: var(--mc-muted);
    font-style: normal;
}

body.home .mc-testing-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 28px;
    align-items: center;
    padding: 30px;
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.16), rgba(184, 93, 50, 0.08)),
        var(--mc-surface);
}

body.home .mc-testing-band .eyebrow,
body.home .mc-newsletter-band .eyebrow {
    grid-column: auto;
}

body.home .mc-testing-band h2,
body.home .mc-newsletter-band h2,
body.home .mc-faq-home-panel h2 {
    margin: 0;
    font-family: var(--mc-heading-font);
    line-height: 1.05;
}

body.home .mc-testing-band h2,
body.home .mc-newsletter-band h2 {
    font-size: clamp(2rem, 3vw, 2.58rem);
}

body.home .mc-testing-band p:not(.eyebrow),
body.home .mc-newsletter-band p,
body.home .mc-faq-home-panel p {
    color: var(--mc-muted);
}

body.home .mc-testing-band .mc-button {
    margin-top: 0;
    border-radius: 8px;
    white-space: nowrap;
}

body.home .mc-faq-home-panel {
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(360px, 0.52fr);
    gap: 30px;
    align-items: center;
    padding: 34px;
    border-color: rgba(214, 179, 106, 0.44);
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.17), rgba(156, 119, 54, 0.09)),
        var(--mc-surface-2);
    box-shadow: var(--mc-shadow);
}

body.home .mc-faq-home-panel h2 {
    max-width: 620px;
    font-size: clamp(2rem, 3vw, 2.58rem);
}

body.home .mc-faq-home-list {
    display: grid;
    gap: 10px;
}

body.home .mc-faq-home-list a {
    display: block;
    border-color: var(--mc-line);
    border-radius: 8px;
    padding: 12px 14px;
    background: rgba(8, 9, 9, 0.42);
    color: var(--mc-soft);
    text-decoration: none;
    text-transform: none;
    font-size: 0.88rem;
}

body.home .mc-newsletter-band {
    grid-template-columns: minmax(0, 1fr) auto;
    padding: 30px;
    border-color: var(--mc-line);
    background:
        linear-gradient(90deg, rgba(214, 179, 106, 0.16), rgba(184, 93, 50, 0.08)),
        var(--mc-surface);
}

body.home .mc-newsletter-form {
    width: 420px;
}

body.home .mc-newsletter-form button {
    color: #12100c;
    font-weight: 900;
}

@media (max-width: 1100px) {
    body.home .site-header__inner,
    body.home .site-footer__inner,
    body.home .mc-section,
    body.home .mc-hero__inner {
        width: min(var(--mc-max), calc(100% - 32px));
    }

    body.home .site-header__inner {
        align-items: flex-start;
        flex-direction: column;
        padding-block: 14px;
    }

    body.home .site-nav__list {
        flex-wrap: wrap;
        gap: 10px 14px;
        white-space: normal;
    }

    body.home .mc-section--alt {
        padding-inline: 16px;
    }
}

@media (max-width: 980px) {
    body.home .mc-section__header,
    body.home .mc-category-grid,
    body.home .mc-card-grid,
    body.home .mc-card-grid--latest,
    body.home .mc-path-grid,
    body.home .mc-faq-home-panel,
    body.home .mc-testing-band,
    body.home .mc-newsletter-band {
        grid-template-columns: 1fr;
    }

    body.home .mc-card-grid--featured .mc-card:first-child {
        grid-column: auto;
    }

    body.home .mc-newsletter-form {
        width: 100%;
    }
}

@media (max-width: 680px) {
    body.home .site-header__inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        align-items: center;
        min-height: 64px;
        gap: 14px;
        padding-block: 8px;
    }

    body.home .site-brand {
        min-width: 0;
    }

    body.home .site-brand__logo {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    body.home .site-brand__text {
        display: none;
    }

    body.home .site-nav {
        min-width: 0;
        width: 100%;
        overflow: visible;
    }

    body.home .site-nav::-webkit-scrollbar {
        display: none;
    }

    body.home .site-nav__list {
        flex-wrap: wrap;
        gap: 8px 14px;
        margin-top: 0;
        white-space: normal;
    }

    body.home .site-nav a {
        display: block;
        font-size: 0.78rem;
        line-height: 1.25;
    }

    body.home .mc-hero {
        min-height: auto;
        background-position: 72% center;
    }

    body.home .mc-hero__inner {
        padding: 28px 0 24px;
    }

    body.home .mc-hero h1 {
        max-width: 350px;
        font-size: 2.12rem;
        line-height: 1.02;
    }

    body.home .mc-hero p:not(.eyebrow) {
        max-width: 350px;
        margin-top: 14px;
        font-size: 0.96rem;
        line-height: 1.55;
    }

    body.home .mc-search {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 82px;
        margin-top: 18px;
    }

    body.home .mc-search input {
        min-height: 52px;
        padding: 0 13px;
        font-size: 0.88rem;
    }

    body.home .mc-search button {
        min-width: 0;
        min-height: 44px;
        margin: 4px;
        padding: 0 10px;
        font-size: 0.86rem;
    }

    body.home .mc-quick-paths {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        overflow: visible;
        margin-top: 12px;
        padding-bottom: 2px;
    }

    body.home .mc-quick-paths a {
        width: 100%;
        min-height: 34px;
        justify-content: center;
        font-size: 0.8rem;
        text-align: center;
    }

    body.home .mc-hero__trust {
        gap: 8px;
        margin-top: 12px;
    }

    body.home .mc-hero__trust span:nth-child(n+3) {
        display: none;
    }

    body.home .mc-section--trust {
        display: none;
    }

    body.home .mc-section {
        padding-block: 34px;
    }

    body.home .mc-section__header {
        gap: 12px;
        margin-bottom: 18px;
    }

    body.home .mc-section__header h2 {
        font-size: 1.8rem;
    }

    body.home .mc-section__header p:not(.eyebrow) {
        font-size: 0.92rem;
    }

    body.home .mc-card,
    body.home .mc-decision-card {
        min-height: auto;
    }

    body.home .mc-card {
        display: grid;
        grid-template-columns: 116px minmax(0, 1fr);
    }

    body.home .mc-card__media,
    body.home .mc-card-grid--featured .mc-card:first-child .mc-card__media,
    body.home .mc-card-grid--latest .mc-card__media {
        height: auto;
        min-height: 138px;
    }

    body.home .mc-card__body {
        padding: 13px;
    }

    body.home .mc-card h2,
    body.home .mc-card-grid--latest .mc-card h2 {
        font-size: 1.02rem;
    }

    body.home .mc-card__body > p {
        display: none;
    }

    body.home .mc-card__decision {
        gap: 5px;
        margin-top: 10px;
        padding-top: 8px;
    }

    body.home .mc-card__decision div {
        grid-template-columns: 62px 1fr;
        gap: 7px;
    }

    body.home .mc-card__decision dt {
        font-size: 0.6rem;
    }

    body.home .mc-card__decision dd {
        font-size: 0.74rem;
    }

    body.home .mc-category {
        min-height: 172px;
    }

    body.home .mc-decision-card div {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}
