.tmf-fmc {
    --fmc-bg: #151515;
    --fmc-surface: #1d1d1d;
    --fmc-surface-2: #242424;
    --fmc-surface-3: #2a2a2a;
    --fmc-border: #3c3c3c;
    --fmc-border-soft: #303030;
    --fmc-text: #f4f4f4;
    --fmc-muted: #aaa;
    --fmc-dim: #7d7d7d;
    --fmc-accent: #f05454;
    --fmc-accent-bright: #ff7777;
    --fmc-accent-soft: rgba(240, 84, 84, .13);
    width: min(1240px, calc(100% - 32px));
    max-width: 1240px;
    margin: 0 auto;
    padding: 26px 0 54px;
    color: var(--fmc-text);
}

.tmf-fmc *,
.tmf-fmc *::before,
.tmf-fmc *::after {
    box-sizing: border-box;
}

.tmf-fmc [hidden],
.tmf-fmc-loading[hidden],
.tmf-fmc-results[hidden],
.tmf-fmc-layout[hidden],
.tmf-fmc-progress[hidden] {
    display: none !important;
}

.tmf-fmc-eyebrow {
    margin: 0 0 8px;
    color: var(--fmc-accent-bright);
    font-size: .73rem;
    font-weight: 900;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.tmf-fmc-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 270px;
    align-items: center;
    gap: 34px;
    overflow: hidden;
    min-height: 320px;
    padding: 42px 46px;
    border: 1px solid var(--fmc-border);
    border-radius: 22px;
    background:
        radial-gradient(circle at 78% 22%, rgba(240, 84, 84, .18), transparent 31%),
        linear-gradient(135deg, #202020 0%, #171717 58%, #121212 100%);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .26);
}

.tmf-fmc-hero::after {
    content: "";
    position: absolute;
    right: -90px;
    bottom: -145px;
    width: 350px;
    height: 350px;
    border: 1px solid rgba(240, 84, 84, .16);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(240, 84, 84, .025), 0 0 0 86px rgba(240, 84, 84, .018);
    pointer-events: none;
}

.tmf-fmc-hero__copy {
    position: relative;
    z-index: 2;
}

.tmf-fmc-hero h1 {
    max-width: 820px;
    margin: 0;
    color: #fff;
    font-size: clamp(2.25rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: -.045em;
    line-height: .98;
}

.tmf-fmc-hero__lead {
    max-width: 790px;
    margin: 20px 0 0;
    color: #c5c5c5;
    font-size: clamp(.98rem, 1.5vw, 1.08rem);
    line-height: 1.68;
}

.tmf-fmc-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.tmf-fmc-trust span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 10px;
    border: 1px solid #3d3d3d;
    border-radius: 999px;
    background: rgba(255, 255, 255, .035);
    color: #cfcfcf;
    font-size: .75rem;
    font-weight: 750;
}

.tmf-fmc-trust span::before {
    content: "✓";
    margin-right: 6px;
    color: var(--fmc-accent-bright);
    font-weight: 900;
}

.tmf-fmc-hero__mark {
    position: relative;
    z-index: 2;
    display: grid;
    align-content: center;
    justify-items: end;
    min-height: 190px;
    padding-right: 6px;
    color: #fff;
    font-size: 1.65rem;
    font-weight: 900;
    letter-spacing: .08em;
    line-height: .9;
    text-align: right;
    text-transform: uppercase;
    transform: rotate(-4deg);
}

.tmf-fmc-hero__mark strong {
    color: var(--fmc-accent);
    font-size: 6.7rem;
    letter-spacing: -.08em;
    line-height: .82;
    text-shadow: 0 16px 34px rgba(240, 84, 84, .16);
}

.tmf-fmc-progress {
    margin: 27px 2px 20px;
}

.tmf-fmc-progress__copy {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 9px;
    color: var(--fmc-muted);
    font-size: .78rem;
}

.tmf-fmc-progress__copy span:first-child {
    color: #ececec;
    font-weight: 850;
}

.tmf-fmc-progress__track {
    height: 7px;
    overflow: hidden;
    border: 1px solid #313131;
    border-radius: 999px;
    background: #101010;
}

#tmfCommanderProgressBar {
    display: block;
    width: 20%;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #d84242, #ff7777);
    box-shadow: 0 0 18px rgba(240, 84, 84, .3);
    transition: width .24s ease;
}

.tmf-fmc-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 310px;
    gap: 22px;
    align-items: start;
}

.tmf-fmc-panel,
.tmf-fmc-profile {
    border: 1px solid var(--fmc-border);
    border-radius: 18px;
    background: var(--fmc-surface);
    box-shadow: 0 15px 35px rgba(0, 0, 0, .16);
}

.tmf-fmc-quiz {
    overflow: hidden;
    border-radius: inherit;
}

.tmf-fmc-step {
    min-width: 0;
    margin: 0;
    padding: 30px;
    border: 0;
}

.tmf-fmc-step__number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-top: 1px;
    border: 1px solid rgba(240, 84, 84, .38);
    border-radius: 11px;
    background: var(--fmc-accent-soft);
    color: #ff8a8a;
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.tmf-fmc-step legend {
    width: 100%;
    padding: 0;
    color: #fafafa;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    font-weight: 900;
    letter-spacing: -.02em;
    line-height: 1.2;
}

.tmf-fmc-step legend:focus,
.tmf-fmc-results h2:focus {
    outline: none;
}

.tmf-fmc-field {
    display: grid;
    gap: 8px;
    max-width: 650px;
    color: #e6e6e6;
    font-size: .88rem;
    font-weight: 800;
}

.tmf-fmc-field > span em {
    color: var(--fmc-dim);
    font-size: .78rem;
    font-style: normal;
    font-weight: 600;
}

.tmf-fmc-field select,
.tmf-fmc-field input[type="text"] {
    width: 100%;
    min-height: 50px;
    padding: 11px 13px;
    border: 1px solid #484848;
    border-radius: 11px;
    background: #262626;
    color: #f7f7f7;
    font: inherit;
    font-weight: 650;
}

.tmf-fmc-field small {
    color: #888;
    font-size: .75rem;
    font-weight: 500;
    line-height: 1.45;
}

.tmf-fmc-field select:focus-visible,
.tmf-fmc-field input[type="text"]:focus-visible,
.tmf-fmc-button:focus-visible,
.tmf-fmc-card-link:focus-visible,
.tmf-fmc-choice-grid input:focus-visible + span,
.tmf-fmc-mechanics input:focus-visible + span,
.tmf-fmc-segmented input:focus-visible + span,
.tmf-fmc-originality input:focus-visible + span {
    outline: 3px solid rgba(240, 84, 84, .5);
    outline-offset: 2px;
}

.tmf-fmc-choice-grid {
    display: grid;
    gap: 10px;
}

.tmf-fmc-choice-grid--strategy {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tmf-fmc-choice-grid label,
.tmf-fmc-mechanics label,
.tmf-fmc-segmented label,
.tmf-fmc-originality label {
    position: relative;
    min-width: 0;
    cursor: pointer;
}

.tmf-fmc-choice-grid input,
.tmf-fmc-mechanics input,
.tmf-fmc-segmented input,
.tmf-fmc-originality input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.tmf-fmc-choice-grid label > span {
    display: grid;
    align-content: start;
    gap: 5px;
    min-height: 92px;
    padding: 14px;
    border: 1px solid #3d3d3d;
    border-radius: 12px;
    background: #252525;
    transition: border-color .15s ease, background .15s ease, transform .15s ease, opacity .15s ease;
}

.tmf-fmc-choice-grid label:hover > span,
.tmf-fmc-mechanics label:hover > span,
.tmf-fmc-segmented label:hover > span,
.tmf-fmc-originality label:hover > span {
    border-color: #626262;
    transform: translateY(-1px);
}

.tmf-fmc-choice-grid input:checked + span,
.tmf-fmc-mechanics input:checked + span,
.tmf-fmc-segmented input:checked + span,
.tmf-fmc-originality input:checked + span {
    border-color: var(--fmc-accent);
    background: var(--fmc-accent-soft);
    box-shadow: inset 0 0 0 1px rgba(240, 84, 84, .14);
}

.tmf-fmc-choice-grid input:disabled + span {
    cursor: not-allowed;
    opacity: .42;
}

.tmf-fmc-choice-grid strong,
.tmf-fmc-segmented strong,
.tmf-fmc-originality strong {
    color: #f3f3f3;
    font-size: .93rem;
}

.tmf-fmc-choice-grid small,
.tmf-fmc-segmented small,
.tmf-fmc-originality small {
    color: #9d9d9d;
    font-size: .74rem;
    line-height: 1.4;
}

.tmf-fmc-selection-note {
    margin: 13px 0 0;
    color: #8c8c8c;
    font-size: .76rem;
}

.tmf-fmc-subsection {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #343434;
}

.tmf-fmc-subsection__heading {
    margin-bottom: 14px;
}

.tmf-fmc-subsection__heading h3,
.tmf-fmc-feel-group__copy h3,
.tmf-fmc-review h3,
.tmf-fmc-alternatives__head h3 {
    margin: 0;
    color: #f1f1f1;
    font-size: 1rem;
    font-weight: 850;
}

.tmf-fmc-subsection__heading p,
.tmf-fmc-feel-group__copy p {
    margin: 5px 0 0;
    color: #8f8f8f;
    font-size: .77rem;
    line-height: 1.45;
}

.tmf-fmc-mechanics {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 8px;
}

.tmf-fmc-mechanics label > span {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 10px;
    border: 1px solid #3d3d3d;
    border-radius: 10px;
    background: #242424;
    color: #d7d7d7;
    font-size: .76rem;
    font-weight: 750;
    line-height: 1.25;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.tmf-fmc-feel-group {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    gap: 20px;
    align-items: center;
    padding: 17px 0;
    border-bottom: 1px solid #333;
}

.tmf-fmc-feel-group:last-of-type {
    border-bottom: 0;
}

.tmf-fmc-segmented,
.tmf-fmc-originality {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.tmf-fmc-segmented label > span,
.tmf-fmc-originality label > span {
    display: grid;
    gap: 4px;
    min-height: 70px;
    padding: 12px;
    border: 1px solid #3e3e3e;
    border-radius: 11px;
    background: #242424;
    transition: border-color .15s ease, background .15s ease, transform .15s ease;
}

.tmf-fmc-originality label > span {
    min-height: 92px;
    padding: 15px;
}

.tmf-fmc-review {
    margin-top: 24px;
    padding: 20px;
    border: 1px solid #3d3d3d;
    border-radius: 14px;
    background: linear-gradient(145deg, #222, #1a1a1a);
}

.tmf-fmc-review > p:last-child {
    margin: 13px 0 0;
    color: #969696;
    font-size: .78rem;
    line-height: 1.5;
}

.tmf-fmc-step__error {
    margin: 16px 0 0;
    padding: 10px 12px;
    border: 1px solid rgba(255, 120, 120, .34);
    border-radius: 9px;
    background: rgba(130, 32, 32, .16);
    color: #ffb1b1;
    font-size: .82rem;
    line-height: 1.45;
}

.tmf-fmc-quiz__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 30px;
    border-top: 1px solid #343434;
    background: #191919;
}

.tmf-fmc-button {
    min-height: 44px;
    padding: 10px 17px;
    border: 1px solid var(--fmc-accent);
    border-radius: 9px;
    background: var(--fmc-accent);
    color: #fff;
    font: inherit;
    font-size: .84rem;
    font-weight: 850;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease, transform .15s ease;
}

.tmf-fmc-button:hover {
    border-color: #d94242;
    background: #d94242;
    transform: translateY(-1px);
}

.tmf-fmc-button--ghost,
.tmf-fmc-button--subtle {
    border-color: #484848;
    background: #282828;
    color: #e6e6e6;
}

.tmf-fmc-button--ghost:hover,
.tmf-fmc-button--subtle:hover {
    border-color: #666;
    background: #333;
}

.tmf-fmc-button--subtle {
    border-color: transparent;
    background: transparent;
    color: #9c9c9c;
}

.tmf-fmc-profile {
    position: sticky;
    top: 20px;
    overflow: hidden;
}

.tmf-fmc-profile__top {
    padding: 22px 22px 17px;
    border-bottom: 1px solid #343434;
}

.tmf-fmc-profile__top h2 {
    margin: 0;
    color: #f3f3f3;
    font-size: 1.2rem;
    font-weight: 900;
}

.tmf-fmc-profile__top > p:last-child {
    margin: 7px 0 0;
    color: #919191;
    font-size: .77rem;
    line-height: 1.45;
}

.tmf-fmc-profile__count {
    display: grid;
    gap: 3px;
    padding: 16px 22px;
    border-bottom: 1px solid #343434;
    background: rgba(240, 84, 84, .055);
}

.tmf-fmc-profile__count strong {
    color: #fff;
    font-size: 1.05rem;
}

.tmf-fmc-profile__count span {
    color: #8e8e8e;
    font-size: .69rem;
    line-height: 1.35;
}

.tmf-fmc-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.tmf-fmc-chip-list--stacked {
    display: flex;
    margin: 0;
    padding: 18px 22px;
}

.tmf-fmc-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 5px 8px;
    border: 1px solid #414141;
    border-radius: 999px;
    background: #282828;
    color: #d3d3d3;
    font-size: .7rem;
    font-weight: 700;
    line-height: 1.2;
}

.tmf-fmc-chip--color,
.tmf-fmc-chip--strategy {
    border-color: rgba(240, 84, 84, .36);
    background: rgba(240, 84, 84, .09);
    color: #ffb0b0;
}

.tmf-fmc-chip--empty {
    border-style: dashed;
    color: #767676;
}

.tmf-fmc-profile__note {
    margin: 0 16px 16px;
    padding: 14px;
    border: 1px solid #363636;
    border-radius: 11px;
    background: #191919;
}

.tmf-fmc-profile__note strong {
    color: #d8d8d8;
    font-size: .76rem;
}

.tmf-fmc-profile__note p {
    margin: 6px 0 0;
    color: #808080;
    font-size: .7rem;
    line-height: 1.5;
}

.tmf-fmc-loading {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 24px;
    padding: 25px;
    border: 1px solid var(--fmc-border);
    border-radius: 16px;
    background: var(--fmc-surface);
}

.tmf-fmc-loading__spinner {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 3px solid #464646;
    border-top-color: var(--fmc-accent);
    border-radius: 50%;
    animation: tmf-fmc-spin .72s linear infinite;
}

.tmf-fmc-loading div {
    display: grid;
    gap: 3px;
}

.tmf-fmc-loading div > span {
    color: #929292;
    font-size: .78rem;
}

@keyframes tmf-fmc-spin {
    to { transform: rotate(360deg); }
}

.tmf-fmc-results {
    margin-top: 30px;
}

.tmf-fmc-results__intro {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 22px;
    margin-bottom: 15px;
}

.tmf-fmc-results__intro h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(1.85rem, 4vw, 2.8rem);
    font-weight: 900;
    letter-spacing: -.035em;
    line-height: 1.05;
}

.tmf-fmc-results__intro > div:first-child > p:last-child {
    max-width: 760px;
    margin: 10px 0 0;
    color: #999;
    font-size: .85rem;
    line-height: 1.5;
}

.tmf-fmc-results__actions {
    display: flex;
    flex: 0 0 auto;
    gap: 8px;
}

.tmf-fmc-result-profile {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    padding: 11px 14px;
    border: 1px solid #343434;
    border-radius: 12px;
    background: #181818;
}

.tmf-fmc-result-profile > strong {
    flex: 0 0 auto;
    color: #929292;
    font-size: .72rem;
    text-transform: uppercase;
    letter-spacing: .07em;
}

.tmf-fmc-result-profile .tmf-fmc-chip-list {
    margin: 0;
}

.tmf-fmc-featured-card {
    position: relative;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 27px;
    overflow: hidden;
    padding: 22px;
    border: 1px solid rgba(240, 84, 84, .48);
    border-radius: 20px;
    background:
        radial-gradient(circle at 82% 8%, rgba(240, 84, 84, .10), transparent 30%),
        linear-gradient(145deg, #232323, #191919);
    box-shadow: 0 22px 52px rgba(0, 0, 0, .24), inset 0 0 0 1px rgba(255, 255, 255, .015);
}

.tmf-fmc-featured-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--fmc-accent), #ff8d8d 45%, transparent 85%);
}

.tmf-fmc-featured__image,
.tmf-fmc-alt__image {
    overflow: hidden;
    border-radius: 13px;
    background: #111;
    box-shadow: 0 14px 32px rgba(0, 0, 0, .32);
}

.tmf-fmc-featured__image img,
.tmf-fmc-alt__image img {
    display: block;
    width: 100%;
    height: auto;
}

.tmf-fmc-featured__image > span,
.tmf-fmc-alt__image > span {
    display: grid;
    place-items: center;
    min-height: 220px;
    padding: 20px;
    color: #777;
    font-size: .75rem;
    text-align: center;
}

.tmf-fmc-featured__body {
    min-width: 0;
    padding: 3px 3px 3px 0;
}

.tmf-fmc-featured__top,
.tmf-fmc-alt__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.tmf-fmc-role {
    min-width: 0;
}

.tmf-fmc-role > span {
    display: inline-flex;
    padding: 6px 9px;
    border: 1px solid rgba(240, 84, 84, .43);
    border-radius: 999px;
    background: rgba(240, 84, 84, .12);
    color: #ff9b9b;
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.tmf-fmc-role > p {
    max-width: 540px;
    margin: 8px 0 0;
    color: #949494;
    font-size: .76rem;
    line-height: 1.45;
}

.tmf-fmc-role--compact > span {
    padding: 5px 8px;
    font-size: .62rem;
}

.tmf-fmc-score {
    --score: 0;
    position: relative;
    display: grid;
    place-items: center;
    width: 76px;
    height: 76px;
    flex: 0 0 76px;
    border-radius: 50%;
    background: conic-gradient(var(--fmc-accent) calc(var(--score) * 1%), #383838 0);
    isolation: isolate;
}

.tmf-fmc-score::before {
    content: "";
    position: absolute;
    inset: 5px;
    z-index: -1;
    border-radius: inherit;
    background: #1d1d1d;
}

.tmf-fmc-score strong,
.tmf-fmc-score span {
    position: absolute;
}

.tmf-fmc-score strong {
    top: 18px;
    color: #fff;
    font-size: 1.18rem;
    line-height: 1;
}

.tmf-fmc-score span {
    bottom: 16px;
    color: #858585;
    font-size: .48rem;
    font-weight: 900;
    letter-spacing: .08em;
}

.tmf-fmc-score--compact {
    width: 55px;
    height: 55px;
    flex-basis: 55px;
}

.tmf-fmc-score--compact::before {
    inset: 4px;
}

.tmf-fmc-score--compact strong {
    top: 12px;
    font-size: .91rem;
}

.tmf-fmc-score--compact span {
    bottom: 10px;
    font-size: .39rem;
}

.tmf-fmc-featured__body > h3 {
    margin: 6px 0 0;
    color: #fff;
    font-size: clamp(1.55rem, 3vw, 2.25rem);
    font-weight: 900;
    letter-spacing: -.03em;
    line-height: 1.1;
}

.tmf-fmc-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 11px;
}

.tmf-fmc-badge {
    padding: 5px 8px;
    border: 1px solid #404040;
    border-radius: 999px;
    background: #292929;
    color: #c8c8c8;
    font-size: .65rem;
    font-weight: 700;
}

.tmf-fmc-badge--identity {
    border-color: #555;
    color: #eee;
}

.tmf-fmc-featured__analysis {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(260px, 1.1fr);
    gap: 24px;
    margin-top: 22px;
    padding-top: 19px;
    border-top: 1px solid #353535;
}

.tmf-fmc-featured__analysis h4 {
    margin: 0 0 10px;
    color: #e8e8e8;
    font-size: .79rem;
    font-weight: 850;
    letter-spacing: .02em;
}

.tmf-fmc-reasons {
    display: grid;
    gap: 7px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.tmf-fmc-reasons li {
    position: relative;
    padding-left: 16px;
    color: #bebebe;
    font-size: .79rem;
    line-height: 1.5;
}

.tmf-fmc-reasons li::before {
    content: "";
    position: absolute;
    top: .62em;
    left: 1px;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--fmc-accent);
}

.tmf-fmc-dimensions {
    display: grid;
    gap: 8px;
}

.tmf-fmc-dimension {
    display: grid;
    gap: 4px;
}

.tmf-fmc-dimension__label {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    color: #9d9d9d;
    font-size: .67rem;
}

.tmf-fmc-dimension__label strong {
    color: #cfcfcf;
    font-size: inherit;
}

.tmf-fmc-dimension__track {
    height: 5px;
    overflow: hidden;
    border-radius: 999px;
    background: #333;
}

.tmf-fmc-dimension__track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #bf3d3d, #f05454 68%, #ff7b7b);
}

.tmf-fmc-tradeoff {
    display: flex;
    gap: 9px;
    margin-top: 17px;
    padding: 10px 12px;
    border: 1px solid #3a3a3a;
    border-radius: 9px;
    background: #181818;
    color: #909090;
    font-size: .72rem;
    line-height: 1.45;
}

.tmf-fmc-tradeoff strong {
    color: #d1d1d1;
}

.tmf-fmc-card-link {
    display: inline-flex;
    margin-top: 16px;
    color: #ff9090;
    font-size: .78rem;
    font-weight: 850;
    text-decoration: none;
}

.tmf-fmc-card-link:hover {
    text-decoration: underline;
}

.tmf-fmc-alternatives__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
    margin: 32px 2px 14px;
}

.tmf-fmc-alternatives__head h3 {
    font-size: 1.25rem;
}

.tmf-fmc-alternatives__head > p {
    max-width: 440px;
    margin: 0;
    color: #858585;
    font-size: .75rem;
    line-height: 1.45;
    text-align: right;
}

.tmf-fmc-alternatives {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.tmf-fmc-alt {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 16px;
    min-width: 0;
    padding: 15px;
    border: 1px solid #3a3a3a;
    border-radius: 15px;
    background: #202020;
    box-shadow: 0 11px 26px rgba(0, 0, 0, .16);
}

.tmf-fmc-alt__image {
    align-self: start;
    border-radius: 9px;
}

.tmf-fmc-alt__body {
    min-width: 0;
}

.tmf-fmc-alt__body > h3 {
    margin: 5px 0 0;
    color: #f5f5f5;
    font-size: 1.08rem;
    font-weight: 850;
    line-height: 1.2;
}

.tmf-fmc-alt__role-description {
    margin: 6px 0 0;
    color: #858585;
    font-size: .69rem;
    line-height: 1.4;
}

.tmf-fmc-dimensions--compact {
    gap: 5px;
    margin-top: 13px;
}

.tmf-fmc-dimensions--compact .tmf-fmc-dimension:nth-child(n+4) {
    display: none;
}

.tmf-fmc-alt .tmf-fmc-reasons {
    gap: 4px;
    margin-top: 13px;
}

.tmf-fmc-alt .tmf-fmc-reasons li {
    font-size: .7rem;
}

.tmf-fmc-alt__tradeoff {
    margin: 10px 0 0;
    color: #797979;
    font-size: .66rem;
    line-height: 1.4;
}

.tmf-fmc-results__data-note {
    margin: 16px 2px 0;
    color: #747474;
    font-size: .69rem;
    line-height: 1.45;
}

@media (max-width: 1040px) {
    .tmf-fmc-hero {
        grid-template-columns: minmax(0, 1fr) 210px;
        padding: 38px;
    }

    .tmf-fmc-hero__mark {
        font-size: 1.35rem;
    }

    .tmf-fmc-hero__mark strong {
        font-size: 5.3rem;
    }

    .tmf-fmc-layout {
        grid-template-columns: minmax(0, 1fr) 270px;
    }

    .tmf-fmc-choice-grid--strategy {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tmf-fmc-mechanics {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .tmf-fmc-featured-card {
        grid-template-columns: 220px minmax(0, 1fr);
    }

    .tmf-fmc-alternatives {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 840px) {
    .tmf-fmc {
        width: min(100% - 24px, 1240px);
    }

    .tmf-fmc-hero {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 32px;
    }

    .tmf-fmc-hero__mark {
        display: none;
    }

    .tmf-fmc-layout {
        grid-template-columns: 1fr;
    }

    .tmf-fmc-profile {
        position: static;
        grid-row: 1;
    }

    .tmf-fmc-chip-list--stacked {
        padding-bottom: 12px;
    }

    .tmf-fmc-profile__note {
        display: none;
    }

    .tmf-fmc-featured-card {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 20px;
    }

    .tmf-fmc-featured__analysis {
        grid-template-columns: 1fr;
        gap: 17px;
    }
}

@media (max-width: 660px) {
    .tmf-fmc {
        width: min(100% - 18px, 1240px);
        padding-top: 15px;
    }

    .tmf-fmc-hero {
        padding: 26px 20px;
        border-radius: 16px;
    }

    .tmf-fmc-hero h1 {
        font-size: clamp(2rem, 11vw, 3rem);
    }

    .tmf-fmc-trust {
        gap: 6px;
    }

    .tmf-fmc-trust span {
        font-size: .67rem;
    }

    .tmf-fmc-step {
        padding: 22px 17px;
    }

    .tmf-fmc-step__number {
        width: 34px;
        height: 34px;
        border-radius: 9px;
    }

    .tmf-fmc-choice-grid--strategy,
    .tmf-fmc-mechanics {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tmf-fmc-feel-group {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .tmf-fmc-segmented,
    .tmf-fmc-originality {
        grid-template-columns: 1fr;
    }

    .tmf-fmc-segmented label > span {
        min-height: 58px;
    }

    .tmf-fmc-quiz__actions {
        padding: 15px 17px;
    }

    .tmf-fmc-results__intro,
    .tmf-fmc-alternatives__head {
        display: grid;
        align-items: start;
    }

    .tmf-fmc-results__actions {
        flex-wrap: wrap;
    }

    .tmf-fmc-result-profile {
        display: grid;
    }

    .tmf-fmc-featured-card {
        grid-template-columns: 118px minmax(0, 1fr);
        gap: 14px;
        padding: 13px;
    }

    .tmf-fmc-featured__body > h3 {
        font-size: 1.25rem;
    }

    .tmf-fmc-featured__top {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 58px;
        gap: 8px;
    }

    .tmf-fmc-role > p {
        display: none;
    }

    .tmf-fmc-featured__analysis,
    .tmf-fmc-tradeoff,
    .tmf-fmc-featured__body > .tmf-fmc-card-link,
    .tmf-fmc-featured__body > .tmf-fmc-badges {
        grid-column: 1 / -1;
    }

    .tmf-fmc-featured__analysis {
        margin-top: 16px;
    }

    .tmf-fmc-alt {
        grid-template-columns: 102px minmax(0, 1fr);
        gap: 12px;
        padding: 12px;
    }

    .tmf-fmc-alternatives__head > p {
        text-align: left;
    }
}

@media (max-width: 430px) {
    .tmf-fmc-choice-grid--strategy,
    .tmf-fmc-mechanics {
        grid-template-columns: 1fr;
    }

    .tmf-fmc-choice-grid label > span {
        min-height: 76px;
    }

    .tmf-fmc-featured-card,
    .tmf-fmc-alt {
        grid-template-columns: 1fr;
    }

    .tmf-fmc-featured__image,
    .tmf-fmc-alt__image {
        width: min(210px, 72vw);
        justify-self: center;
    }
}

@media (prefers-reduced-motion: reduce) {
    #tmfCommanderProgressBar,
    .tmf-fmc-choice-grid label > span,
    .tmf-fmc-mechanics label > span,
    .tmf-fmc-segmented label > span,
    .tmf-fmc-originality label > span,
    .tmf-fmc-button {
        transition: none;
    }

    .tmf-fmc-loading__spinner {
        animation-duration: 1.5s;
    }
}
